From 45104d2328f466e909c7d3e373a887c0fca1d219 Mon Sep 17 00:00:00 2001 From: Cort Buffington Date: Mon, 10 Oct 2016 20:11:50 -0500 Subject: [PATCH 01/38] add basic tests --- hb_router.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/hb_router.py b/hb_router.py index e5373f0..d879e1b 100755 --- a/hb_router.py +++ b/hb_router.py @@ -22,6 +22,7 @@ from twisted.internet import task # Things we import from the main hblink module from hblink import CONFIG, HBMASTER, HBCLIENT, logger, systems, hex_str_3, int_id +import dmr_decon # Import Bridging rules # Note: A stanza *must* exist for any MASTER or CLIENT configured in the main @@ -71,6 +72,12 @@ class routerMASTER(HBMASTER): def dmrd_received(self, _radio_id, _rf_src, _dst_id, _seq, _slot, _call_type, _frame_type, _dtype_vseq, _stream_id, _data): _bits = int_id(_data[15]) if _call_type == 'group': + + if _frame_type == 'data_sync' and (_dtype_vseq == 1 or _dtype_vseq == 2): + print(dmr_decon.voice_head_term(_data[20:53])) + elif _frame_type == 'voice' or _frame_type == 'voice_sync': + print(dmr_decon.voice_burst(_data[20:53])) + _routed = False for rule in RULES[self._master]['GROUP_VOICE']: _target = rule['DST_NET'] From 9b6a071cee6bd9bf2263c1f5cf97f0be5d0cd231 Mon Sep 17 00:00:00 2001 From: Cort Buffington Date: Mon, 10 Oct 2016 20:49:51 -0500 Subject: [PATCH 02/38] Moving towards complete DMR rebuild for re-write --- dmr_decon.py | 57 ++++++++++++++++++++++++---------------------------- hb_router.py | 28 +++++++++++++++++++++----- 2 files changed, 49 insertions(+), 36 deletions(-) diff --git a/dmr_decon.py b/dmr_decon.py index e14fb4b..be3c86d 100755 --- a/dmr_decon.py +++ b/dmr_decon.py @@ -39,38 +39,33 @@ def voice_head_term(_string): info = burst[0:98] + burst[166:264] de_int_info = bptc19696.deinterleave(info) slot_type = burst[98:108] + burst[156:166] - sync = burst[108:156] - if sync == const.BS_DATA_SYNC: - sync = True - else: - sync = False lc = to_bytes(lc_data_9(de_int_info)) cc = to_bytes(slot_type[0:4]) dtype = to_bytes(slot_type[4:8]) - return (lc, cc, dtype, sync) + return (lc, cc, dtype) -def voice_burst(_string): +def voice_sync(_string): burst = to_bits(_string) ambe = [0,0,0] ambe[0] = burst[0:72] ambe[1] = burst[72:108] + burst[156:192] ambe[2] = burst[192:264] - sync = burst [108:156] - if sync == const.BS_VOICE_SYNC: - cc = bitarray('00') - lcss = bitarray('00') - sync = True - else: - emb = burst[108:116] + burst[148:156] - embeded = burst[116:148] - cc = (emb[0:4]) - # pi = (emb[4:5]) - lcss = (emb[5:7]) - sync = False - if not sync and lcss == const.LCSS_FIRST_FRAG or lcss == const.LCSS_CONT_FRAG or lcss == const.LCSS_LAST_FRAG: - pass - return (ambe, cc, lcss, sync) + return (ambe) + + +def voice(_string): + burst = to_bits(_string) + ambe = [0,0,0] + ambe[0] = burst[0:72] + ambe[1] = burst[72:108] + burst[156:192] + ambe[2] = burst[192:264] + emb = burst[108:116] + burst[148:156] + embeded = burst[116:148] + cc = (emb[0:4]) + # pi = (emb[4:5]) + lcss = (emb[5:7]) + return (ambe, cc, lcss, embeded) def to_bytes(_bits): @@ -107,47 +102,47 @@ if __name__ == '__main__': t0 = time() lc = voice_head_term(data_head) t1 = time() - print(h(lc[0]), h(lc[1]), h(lc[2]), lc[3]) + print(h(lc[0]), h(lc[1]), h(lc[2])) print(t1-t0, '\n') print('Voice Burst A Validation:') t0 = time() - lc = voice_burst(voice_a) + lc = voice_sync(voice_a) t1 = time() - print(lc[0], h(lc[1]), h(lc[2]), lc[3]) + print(lc[0]) print(t1-t0, '\n') print('Voice Burst B Validation:') t0 = time() - lc = voice_burst(voice_b) + lc = voice(voice_b) t1 = time() print(lc[0], h(lc[1]), h(lc[2]), lc[3]) print(t1-t0, '\n') print('Voice Burst C Validation:') t0 = time() - lc = voice_burst(voice_c) + lc = voice(voice_c) t1 = time() print(lc[0], h(lc[1]), h(lc[2]), lc[3]) print(t1-t0, '\n') print('Voice Burst D Validation:') t0 = time() - lc = voice_burst(voice_d) + lc = voice(voice_d) t1 = time() print(lc[0], h(lc[1]), h(lc[2]), lc[3]) print(t1-t0, '\n') print('Voice Burst E Validation:') t0 = time() - lc = voice_burst(voice_e) + lc = voice(voice_e) t1 = time() print(lc[0], h(lc[1]), h(lc[2]), lc[3]) print(t1-t0, '\n') print('Voice Burst F Validation:') t0 = time() - lc = voice_burst(voice_f) + lc = voice(voice_f) t1 = time() print(lc[0], h(lc[1]), h(lc[2]), lc[3]) print(t1-t0, '\n') @@ -156,5 +151,5 @@ if __name__ == '__main__': t0 = time() lc = voice_head_term(voice_term) t1 = time() - print(h(lc[0]), h(lc[1]), h(lc[2]), lc[3]) + print(h(lc[0]), h(lc[1]), h(lc[2])) print(t1-t0) \ No newline at end of file diff --git a/hb_router.py b/hb_router.py index d879e1b..cd92bf0 100755 --- a/hb_router.py +++ b/hb_router.py @@ -11,6 +11,7 @@ from __future__ import print_function # Python modules we need import sys from binascii import b2a_hex as h +from bitarray import bitarray # Debugging functions from pprint import pprint @@ -22,7 +23,7 @@ from twisted.internet import task # Things we import from the main hblink module from hblink import CONFIG, HBMASTER, HBCLIENT, logger, systems, hex_str_3, int_id -import dmr_decon +import dmr_decon, crc # Import Bridging rules # Note: A stanza *must* exist for any MASTER or CLIENT configured in the main @@ -68,15 +69,28 @@ __status__ = 'pre-alpha' class routerMASTER(HBMASTER): + + def __init__(self, *args, **kwargs): + HBMASTER.__init__(self, *args, **kwargs) + self.lc_fragments = {'B': '', 'C': '', 'D': '', 'E': '', 'F': ''} def dmrd_received(self, _radio_id, _rf_src, _dst_id, _seq, _slot, _call_type, _frame_type, _dtype_vseq, _stream_id, _data): _bits = int_id(_data[15]) if _call_type == 'group': - if _frame_type == 'data_sync' and (_dtype_vseq == 1 or _dtype_vseq == 2): - print(dmr_decon.voice_head_term(_data[20:53])) - elif _frame_type == 'voice' or _frame_type == 'voice_sync': - print(dmr_decon.voice_burst(_data[20:53])) + if _frame_type == 'data_sync': + lc = dmr_decon.voice_head_term(_data[20:53])[0] + print(h(lc)) + if _dtype_vseq == 1: + lc_bits = bitarray() + lc_bits.frombytes(lc) + embedded_lc = lc_bits + crc.csum5(lc) + print('SHIT IS TEH SHIT:', lc_bits) + print('THIS IS THE SHIT:', embedded_lc) + elif _frame_type == 'voice_sync': + print(dmr_decon.voice_sync(_data[20:53])) + elif _frame_type == 'voice': + print(dmr_decon.voice(_data[20:53])) _routed = False for rule in RULES[self._master]['GROUP_VOICE']: @@ -98,6 +112,10 @@ class routerMASTER(HBMASTER): class routerCLIENT(HBCLIENT): + def __init__(self, *args, **kwargs): + HBCLIENT.__init__(self, *args, **kwargs) + self.lc_fragments = {'B': '', 'C': '', 'D': '', 'E': '', 'F': ''} + def dmrd_received(self, _radio_id, _rf_src, _dst_id, _seq, _slot, _call_type, _frame_type, _dtype_vseq, _stream_id, _data): _bits = int_id(_data[15]) if _call_type == 'group': From 67d18bbfdda6c2d810f817bbb9bb902458d37696 Mon Sep 17 00:00:00 2001 From: Cort Buffington Date: Thu, 20 Oct 2016 06:34:38 -0500 Subject: [PATCH 03/38] Embedded LC Progress --- bptc.py | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/bptc.py b/bptc.py index a1b63cc..410c689 100755 --- a/bptc.py +++ b/bptc.py @@ -163,9 +163,19 @@ def encode_emblc(_lc, _csum5): for hindex,hbit in zip(xrange(index+11,index+16), hamming.enc_16114(_binlc[index:index+11])): _binlc.insert(hindex,hbit) + # Insert the column parity bits at the right location in the matrix for index in xrange(0,16): _binlc.insert(index+112, _binlc[index+0] ^ _binlc[index+16] ^ _binlc[index+32] ^ _binlc[index+48] ^ _binlc[index+64] ^ _binlc[index+80] ^ _binlc[index+96]) + t0 = time() + emblc_a = bitarray(endian='big') + emblc_a.extend([_binlc[0],_binlc[16],_binlc[32],_binlc[48],_binlc[64],_binlc[80],_binlc[96],_binlc[112]]) + emblc_a.extend([_binlc[1],_binlc[17],_binlc[33],_binlc[49],_binlc[65],_binlc[81],_binlc[97],_binlc[113]]) + emblc_a.extend([_binlc[2],_binlc[18],_binlc[34],_binlc[50],_binlc[66],_binlc[82],_binlc[98],_binlc[114]]) + emblc_a.extend([_binlc[3],_binlc[19],_binlc[35],_binlc[51],_binlc[67],_binlc[83],_binlc[99],_binlc[115]]) + t1 = time() + print(t1-t0) + # TO DO NEXT: # INTERLEAVE, RETURN A TUPLE OR LIBRARY OR EACH SEGMENT OF THE LC # EACH SEGMENT IS 4 COLUMNS, TOP TO BOTTOM, LEFT TO RIGHT (PAGE 124 ETSI) From 6fb92d0808ca49d25162df3905a55d04f11cdb24 Mon Sep 17 00:00:00 2001 From: Cort Buffington Date: Thu, 20 Oct 2016 17:28:21 -0500 Subject: [PATCH 04/38] MAJOR PROGRESS with LCs --- bptc.py | 210 +++++++++++++++++++++++++-------------------------- dmr_decon.py | 21 ++---- 2 files changed, 108 insertions(+), 123 deletions(-) diff --git a/bptc.py b/bptc.py index 410c689..5b5b43f 100755 --- a/bptc.py +++ b/bptc.py @@ -8,8 +8,7 @@ from __future__ import print_function from bitarray import bitarray -import hamming -from time import time +import hamming, crc, rs129 # Does anybody read this stuff? There's a PEP somewhere that says I should do this. __author__ = 'Cortney T. Buffington, N0MJS' @@ -42,46 +41,21 @@ INDEX_181 = ( # BPTC(196,96) Decoding Routings #------------------------------------------------------------------------------ -# Converts a DMR frame using 98-68-98 (info-sync/EMB-info) into 196 bit array -# Applies interleave indecies de-interleave 196 bit array -def deinterleave_19696(_data): - deint = bitarray(196, endian='big') - for index in xrange(196): - deint[index] = _data[INDEX_181[index]] # the real math is slower: deint[index] = _data[(index * 181) % 196] - return deint - -# Applies BTPC error detection/correction routines -# This routine, in practice, will not be used in HBlink or DMRlink - it's only usefull for OTA direct data -def error_check_19696(_data): - count = 0 - column = bitarray(13, endian='big') - - while True: - errors = False - for col in xrange(15): - pos = col + 1 - for index in xrange(13): - column[index] = _data[pos] - pos += 15 - - result_1393 = hamming.dec_1393(column) - if result_1393[1]: - pos = col + 1 - for index in xrange(13): - _data[pos] = result_1393[0][index] - pos += 15 - errors = True - - for index in xrange(9): - pos = (index*15) + 1 - result_15113 = hamming.dec_15113(_data[pos:(pos+15)]) - if result_15113[1]: - errors = True - _data[pos:(pos+15)] = result_15113[0] - - count += 1 - if not errors or count > 4: break - return (errors) +def decode_full_lc(_data): + binlc = bitarray(endian='big') + binlc.extend([_data[136],_data[121],_data[106],_data[91], _data[76], _data[61], _data[46], _data[31]]) + binlc.extend([_data[152],_data[137],_data[122],_data[107],_data[92], _data[77], _data[62], _data[47], _data[32], _data[17], _data[2] ]) + binlc.extend([_data[123],_data[108],_data[93], _data[78], _data[63], _data[48], _data[33], _data[18], _data[3], _data[184],_data[169]]) + binlc.extend([_data[94], _data[79], _data[64], _data[49], _data[34], _data[19], _data[4], _data[185],_data[170],_data[155],_data[140]]) + binlc.extend([_data[65], _data[50], _data[35], _data[20], _data[5], _data[186],_data[171],_data[156],_data[141],_data[126],_data[111]]) + binlc.extend([_data[36], _data[21], _data[6], _data[187],_data[172],_data[157],_data[142],_data[127],_data[112],_data[97], _data[82] ]) + binlc.extend([_data[7], _data[188],_data[173],_data[158],_data[143],_data[128],_data[113],_data[98], _data[83]]) + ''' + This is the rest of the Full LC data -- the RS1293 FEC that we don't need + _data[68],_data[53],_data[174],_data[159],_data[144],_data[129],_data[114],_data[99],_data[84],_data[69],_data[54],_data[39], + _data[24],_data[145],_data[130],_data[115],_data[100],_data[85],_data[70],_data[55],_data[40],_data[25],_data[10],_data[191] + ''' + return binlc #------------------------------------------------------------------------------ # BPTC(196,96) Encoding Routings @@ -133,11 +107,31 @@ def encode_19696(_data): return _bdata - +def encode_header_lc(_lc): + full_lc = _lc + rs129.lc_header_encode(_lc) + full_lc = encode_19696(full_lc) + full_lc = interleave_19696(full_lc) + return full_lc + +def encode_terminator_lc(_lc): + lc_rs = _lc + rs129.lc_terminator_encode(_lc) + #------------------------------------------------------------------------------ # BPTC Embedded LC Decoding Routines #------------------------------------------------------------------------------ +def decode_emblc(_elc_b, _elc_c, _elc_d, _elc_e): + + _binlc = bitarray(endian='big') + _binlc.extend([_elc_b[0],_elc_b[8], _elc_b[16],_elc_b[24],_elc_c[0],_elc_c[8], _elc_c[16],_elc_c[24],_elc_d[0],_elc_d[8] ,_elc_d[16]]) + _binlc.extend([_elc_b[1],_elc_b[9], _elc_b[17],_elc_b[25],_elc_c[1],_elc_c[9], _elc_c[17],_elc_c[25],_elc_d[1],_elc_d[9] ,_elc_d[17]]) + _binlc.extend([_elc_b[2],_elc_b[10],_elc_b[18],_elc_b[26],_elc_c[2],_elc_c[10],_elc_c[18],_elc_c[26],_elc_d[2],_elc_d[10]]) + _binlc.extend([_elc_b[3],_elc_b[11],_elc_b[19],_elc_b[27],_elc_c[3],_elc_c[11],_elc_c[19],_elc_c[27],_elc_d[3],_elc_d[11]]) + _binlc.extend([_elc_b[4],_elc_b[12],_elc_b[20],_elc_b[28],_elc_c[4],_elc_c[12],_elc_c[20],_elc_c[28],_elc_d[4],_elc_d[12]]) + _binlc.extend([_elc_b[5],_elc_b[13],_elc_b[21],_elc_b[29],_elc_c[5],_elc_c[13],_elc_c[21],_elc_c[29],_elc_d[5],_elc_d[13]]) + _binlc.extend([_elc_b[6],_elc_b[14],_elc_b[22],_elc_b[30],_elc_c[6],_elc_c[14],_elc_c[22],_elc_c[30],_elc_d[6],_elc_d[14]]) + + return(_binlc.tobytes()) #------------------------------------------------------------------------------ # BPTC Embedded LC Encoding Routines @@ -146,17 +140,21 @@ def encode_19696(_data): # Accepts 12 byte LC header + 5-bit checksum, converts to binary and builts out the BPTC # encoded result with hamming(16,11,4) and parity. -def encode_emblc(_lc, _csum5): +def encode_emblc(_lc): + + # Get the 5-bit checksum for the Embedded LC + _csum = crc.csum5(_lc) + # Create a bitarray from the 4 bytes of LC data (includes 5-bit checksum). _binlc = bitarray(endian='big') _binlc.frombytes(_lc) # Insert the checksum bits at the right location in the matrix (this is actually faster than with a for loop) - _binlc.insert(32,_csum5[0]) - _binlc.insert(43,_csum5[1]) - _binlc.insert(54,_csum5[2]) - _binlc.insert(65,_csum5[3]) - _binlc.insert(76,_csum5[4]) + _binlc.insert(32,_csum[0]) + _binlc.insert(43,_csum[1]) + _binlc.insert(54,_csum[2]) + _binlc.insert(65,_csum[3]) + _binlc.insert(76,_csum[4]) # Insert the hamming bits at the right location in the matrix for index in xrange(0,112,16): @@ -167,85 +165,81 @@ def encode_emblc(_lc, _csum5): for index in xrange(0,16): _binlc.insert(index+112, _binlc[index+0] ^ _binlc[index+16] ^ _binlc[index+32] ^ _binlc[index+48] ^ _binlc[index+64] ^ _binlc[index+80] ^ _binlc[index+96]) - t0 = time() - emblc_a = bitarray(endian='big') - emblc_a.extend([_binlc[0],_binlc[16],_binlc[32],_binlc[48],_binlc[64],_binlc[80],_binlc[96],_binlc[112]]) - emblc_a.extend([_binlc[1],_binlc[17],_binlc[33],_binlc[49],_binlc[65],_binlc[81],_binlc[97],_binlc[113]]) - emblc_a.extend([_binlc[2],_binlc[18],_binlc[34],_binlc[50],_binlc[66],_binlc[82],_binlc[98],_binlc[114]]) - emblc_a.extend([_binlc[3],_binlc[19],_binlc[35],_binlc[51],_binlc[67],_binlc[83],_binlc[99],_binlc[115]]) - t1 = time() - print(t1-t0) + # Create Embedded LC segments in 48 bit blocks + emblc_b = bitarray(endian='big') + emblc_b.extend([_binlc[0], _binlc[16],_binlc[32],_binlc[48],_binlc[64],_binlc[80],_binlc[96], _binlc[112]]) + emblc_b.extend([_binlc[1], _binlc[17],_binlc[33],_binlc[49],_binlc[65],_binlc[81],_binlc[97], _binlc[113]]) + emblc_b.extend([_binlc[2], _binlc[18],_binlc[34],_binlc[50],_binlc[66],_binlc[82],_binlc[98], _binlc[114]]) + emblc_b.extend([_binlc[3], _binlc[19],_binlc[35],_binlc[51],_binlc[67],_binlc[83],_binlc[99], _binlc[115]]) - # TO DO NEXT: - # INTERLEAVE, RETURN A TUPLE OR LIBRARY OR EACH SEGMENT OF THE LC - # EACH SEGMENT IS 4 COLUMNS, TOP TO BOTTOM, LEFT TO RIGHT (PAGE 124 ETSI) + emblc_c = bitarray(endian='big') + emblc_c.extend([_binlc[4], _binlc[20],_binlc[36],_binlc[52],_binlc[68],_binlc[84],_binlc[100],_binlc[116]]) + emblc_c.extend([_binlc[5], _binlc[21],_binlc[37],_binlc[53],_binlc[69],_binlc[85],_binlc[101],_binlc[117]]) + emblc_c.extend([_binlc[6], _binlc[22],_binlc[38],_binlc[54],_binlc[70],_binlc[86],_binlc[102],_binlc[118]]) + emblc_c.extend([_binlc[7], _binlc[23],_binlc[39],_binlc[55],_binlc[71],_binlc[87],_binlc[103],_binlc[119]]) + + emblc_d = bitarray(endian='big') + emblc_d.extend([_binlc[8], _binlc[24],_binlc[40],_binlc[56],_binlc[72],_binlc[88],_binlc[104],_binlc[120]]) + emblc_d.extend([_binlc[9], _binlc[24],_binlc[41],_binlc[57],_binlc[73],_binlc[89],_binlc[105],_binlc[121]]) + emblc_d.extend([_binlc[10],_binlc[26],_binlc[42],_binlc[58],_binlc[74],_binlc[90],_binlc[106],_binlc[122]]) + emblc_d.extend([_binlc[11],_binlc[27],_binlc[43],_binlc[59],_binlc[75],_binlc[91],_binlc[107],_binlc[123]]) + + emblc_e = bitarray(endian='big') + emblc_e.extend([_binlc[12],_binlc[28],_binlc[44],_binlc[60],_binlc[76],_binlc[92],_binlc[108],_binlc[124]]) + emblc_e.extend([_binlc[13],_binlc[29],_binlc[45],_binlc[61],_binlc[77],_binlc[93],_binlc[109],_binlc[125]]) + emblc_e.extend([_binlc[14],_binlc[30],_binlc[46],_binlc[62],_binlc[78],_binlc[94],_binlc[110],_binlc[126]]) + emblc_e.extend([_binlc[15],_binlc[31],_binlc[47],_binlc[63],_binlc[79],_binlc[95],_binlc[111],_binlc[127]]) + + return([emblc_b, emblc_c, emblc_d, emblc_e]) #------------------------------------------------------------------------------ # Used to execute the module directly to run built-in tests #------------------------------------------------------------------------------ if __name__ == '__main__': - from binascii import b2a_hex as h from time import time - import crc - - def to_bytes(_bits): - #add_bits = 8 - (len(_bits) % 8) - #if add_bits < 8: - # for bit in xrange(add_bits): - # _bits.insert(0,0) - _string = _bits.tobytes() - return _string # Validation Example - orig_data = '\x00\x10\x20\x00\x0c\x30\x2f\x9b\xe5\xda\xd4\x5a' + + # Header LC -- Terminator similar + lc = '\x00\x10\x20\x00\x0c\x30\x2f\x9b\xe5' # \xda\xd4\x5a t0 = time() - enc_data = encode_19696(orig_data) - inter_data = interleave_19696(enc_data) + full_lc_encode = encode_header_lc(lc) t1 = time() encode_time = t1-t0 - # Good Data - dec_data = '\x2b\x60\x04\x10\x1f\x84\x2d\xd0\x0d\xf0\x7d\x41\x04\x6d\xff\x57\xd7\x5d\xf5\xde\x30\x15\x2e\x20\x70\xb2\x0f\x80\x3f\x88\xc6\x95\xe2' - # Bad Data - #dec_data = '\x2b\x60\xff\xff\xff\x85\x2d\xd0\x0d\xf0\x7d\x41\x04\x6d\xff\x57\xd7\x5d\xf5\xde\x30\x15\x2e\x20\x70\xb2\x0f\x80\x3f\x88\xc6\x95\xe2' + t0 = time() + full_lc_dec = decode_full_lc(full_lc_encode) + t1 = time() + lc_decode_time = t1-t0 - dec_bits = bitarray(endian='big') - dec_bits.frombytes(dec_data) - dec_bits = dec_bits[0:98] + dec_bits[166:264] + print('VALIDATION ROUTINES:') + print('Original Data: {}, {} bytes'.format(h(lc), len(lc))) + print() + print('BPTC(196,96):') + print('Encoded data: {}, {} bytes'.format(h(full_lc_encode.tobytes()), len(full_lc_encode.tobytes()))) + print('Encoding time: {} seconds'.format(encode_time)) + print('Fast Decode: {}'.format(h(full_lc_dec))) + print('Fast Decode Time: {} seconds'.format(lc_decode_time)) + + # Embedded LC + t0 = time() + emblc = encode_emblc(lc) + t1 = time() + encode_time = t1 -t0 t0 = time() - deint_data = deinterleave_19696(dec_bits) - err_corrected = error_check_19696(deint_data) # This corrects deint_data in place -- it does not return a new array!!! - ext_data = to_bytes(deint_data) + decemblc = decode_emblc(emblc[0], emblc[1], emblc[2], emblc[3]) t1 = time() - decode_time = t1-t0 + decode_time = t1 -t0 + + print('\nEMBEDDED LC:') + print('Encoded Embedded LC: Burst B:{}, Burst C:{}, Burst D:{}, Burst E:{}'.format(h(emblc[0].tobytes()), h(emblc[1].tobytes()), h(emblc[2].tobytes()), h(emblc[3].tobytes()))) + print('Endoder Time:', encode_time) + print('Decoded Embedded LC:', h(decemblc)) + print('Decoder Time:', decode_time) - print('VALIDATION ROUTINE:') - print() - print('ENCODER TEST:') - print('Original Data: {}, {} bytes'.format(h(orig_data), len(orig_data))) - print('Encoding time: {} seconds'.format(encode_time)) - print('Encoded data: {}, {} bits'.format(enc_data, len(enc_data))) - print() - print('DECODER TEST:') - print('Encoded data: {}, {} bytes'.format(h(dec_data), len(dec_data))) - print('Decoding Time: {} seconds'.format(t1-t0)) - if err_corrected: - print('WARNING DATA COULD NOT BE CORRECTED') - else: - print('Decoded Data: {}, {} bytes'.format(h(ext_data), len(ext_data))) - print() - - print('ENCODED vs. DECODED:') - print('enc:', enc_data) - print('dec:', deint_data) - print(enc_data == deint_data) - - orig_data = '\x00\x10\x20\x00\x0c\x30\x2f\x9b\xe5' - orig_csum = crc.csum5(orig_data) - emblc = encode_emblc(orig_data, orig_csum) \ No newline at end of file diff --git a/dmr_decon.py b/dmr_decon.py index 241a136..33396fe 100755 --- a/dmr_decon.py +++ b/dmr_decon.py @@ -25,21 +25,12 @@ def to_bits(_string): _bits.frombytes(_string) return _bits -# Returns useable LC data - 9 bytes info + 3 bytes RS(12,9) ECC -def lc_data_12(_data): - return _data[4:12]+_data[16:27]+_data[31:42]+_data[46:57]+_data[61:72]+_data[76:87]+_data[91:102]+_data[106:117]+_data[121:132] - -# Returns useable LC data - 9 bytes info, no ECC -def lc_data_9(_data): - return _data[4:12]+_data[16:27]+_data[31:42]+_data[46:57]+_data[61:72]+_data[76:87]+_data[91:100] - def voice_head_term(_string): burst = to_bits(_string) info = burst[0:98] + burst[166:264] - de_int_info = bptc.deinterleave_19696(info) slot_type = burst[98:108] + burst[156:166] - lc = to_bytes(lc_data_9(de_int_info)) + lc = bptc.decode_full_lc(info).tobytes() cc = to_bytes(slot_type[0:4]) dtype = to_bytes(slot_type[4:8]) return (lc, cc, dtype) @@ -116,35 +107,35 @@ if __name__ == '__main__': t0 = time() lc = voice(voice_b) t1 = time() - print(lc[0], h(lc[1]), h(lc[2]), lc[3]) + print(lc[0], h(lc[1]), h(lc[2]), h(lc[3].tobytes())) print(t1-t0, '\n') print('Voice Burst C Validation:') t0 = time() lc = voice(voice_c) t1 = time() - print(lc[0], h(lc[1]), h(lc[2]), lc[3]) + print(lc[0], h(lc[1]), h(lc[2]), h(lc[3].tobytes())) print(t1-t0, '\n') print('Voice Burst D Validation:') t0 = time() lc = voice(voice_d) t1 = time() - print(lc[0], h(lc[1]), h(lc[2]), lc[3]) + print(lc[0], h(lc[1]), h(lc[2]), h(lc[3].tobytes())) print(t1-t0, '\n') print('Voice Burst E Validation:') t0 = time() lc = voice(voice_e) t1 = time() - print(lc[0], h(lc[1]), h(lc[2]), lc[3]) + print(lc[0], h(lc[1]), h(lc[2]), h(lc[3].tobytes())) print(t1-t0, '\n') print('Voice Burst F Validation:') t0 = time() lc = voice(voice_f) t1 = time() - print(lc[0], h(lc[1]), h(lc[2]), lc[3]) + print(lc[0], h(lc[1]), h(lc[2]), h(lc[3].tobytes())) print(t1-t0, '\n') print('Terminator Validation:') From 7a1aeeea437f6ebc62a75de45dc46a82599ca2aa Mon Sep 17 00:00:00 2001 From: Cort Buffington Date: Thu, 20 Oct 2016 20:56:19 -0500 Subject: [PATCH 05/38] DMR Voice Packet Decoding Completed! --- bptc.py | 42 +- dmr_decon.py | 58 ++- hamming.py | 134 +---- hb_router.py | 6 +- peer_ids.csv | 1177 ++++++++++++++++++++++++++------------------ subscriber_ids.csv | 1068 +++++++++++++++++++++++++++++++++++----- 6 files changed, 1690 insertions(+), 795 deletions(-) diff --git a/bptc.py b/bptc.py index 5b5b43f..2dcd88c 100755 --- a/bptc.py +++ b/bptc.py @@ -120,16 +120,16 @@ def encode_terminator_lc(_lc): # BPTC Embedded LC Decoding Routines #------------------------------------------------------------------------------ -def decode_emblc(_elc_b, _elc_c, _elc_d, _elc_e): +def decode_emblc(_elc): _binlc = bitarray(endian='big') - _binlc.extend([_elc_b[0],_elc_b[8], _elc_b[16],_elc_b[24],_elc_c[0],_elc_c[8], _elc_c[16],_elc_c[24],_elc_d[0],_elc_d[8] ,_elc_d[16]]) - _binlc.extend([_elc_b[1],_elc_b[9], _elc_b[17],_elc_b[25],_elc_c[1],_elc_c[9], _elc_c[17],_elc_c[25],_elc_d[1],_elc_d[9] ,_elc_d[17]]) - _binlc.extend([_elc_b[2],_elc_b[10],_elc_b[18],_elc_b[26],_elc_c[2],_elc_c[10],_elc_c[18],_elc_c[26],_elc_d[2],_elc_d[10]]) - _binlc.extend([_elc_b[3],_elc_b[11],_elc_b[19],_elc_b[27],_elc_c[3],_elc_c[11],_elc_c[19],_elc_c[27],_elc_d[3],_elc_d[11]]) - _binlc.extend([_elc_b[4],_elc_b[12],_elc_b[20],_elc_b[28],_elc_c[4],_elc_c[12],_elc_c[20],_elc_c[28],_elc_d[4],_elc_d[12]]) - _binlc.extend([_elc_b[5],_elc_b[13],_elc_b[21],_elc_b[29],_elc_c[5],_elc_c[13],_elc_c[21],_elc_c[29],_elc_d[5],_elc_d[13]]) - _binlc.extend([_elc_b[6],_elc_b[14],_elc_b[22],_elc_b[30],_elc_c[6],_elc_c[14],_elc_c[22],_elc_c[30],_elc_d[6],_elc_d[14]]) + _binlc.extend([_elc[0],_elc[8], _elc[16],_elc[24],_elc[32],_elc[40],_elc[48],_elc[56],_elc[64],_elc[72] ,_elc[80]]) + _binlc.extend([_elc[1],_elc[9], _elc[17],_elc[25],_elc[33],_elc[41],_elc[49],_elc[57],_elc[65],_elc[73] ,_elc[81]]) + _binlc.extend([_elc[2],_elc[10],_elc[18],_elc[26],_elc[34],_elc[42],_elc[50],_elc[58],_elc[66],_elc[74]]) + _binlc.extend([_elc[3],_elc[11],_elc[19],_elc[27],_elc[35],_elc[43],_elc[51],_elc[59],_elc[67],_elc[75]]) + _binlc.extend([_elc[4],_elc[12],_elc[20],_elc[28],_elc[36],_elc[44],_elc[52],_elc[60],_elc[68],_elc[76]]) + _binlc.extend([_elc[5],_elc[13],_elc[21],_elc[29],_elc[37],_elc[45],_elc[53],_elc[61],_elc[69],_elc[77]]) + _binlc.extend([_elc[6],_elc[14],_elc[22],_elc[30],_elc[38],_elc[46],_elc[54],_elc[62],_elc[70],_elc[78]]) return(_binlc.tobytes()) @@ -202,6 +202,10 @@ if __name__ == '__main__': # Validation Example + voice_h = '\x2b\x60\x04\x10\x1f\x84\x2d\xd0\x0d\xf0\x7d\x41\x04\x6d\xff\x57\xd7\x5d\xf5\xde\x30\x15\x2e\x20\x70\xb2\x0f\x80\x3f\x88\xc6\x95\xe2' + voice_hb = bitarray(endian='big') + voice_hb.frombytes(voice_h) + voice_hb = voice_hb[0:98] + voice_hb[166:264] # Header LC -- Terminator similar lc = '\x00\x10\x20\x00\x0c\x30\x2f\x9b\xe5' # \xda\xd4\x5a @@ -213,16 +217,17 @@ if __name__ == '__main__': t0 = time() full_lc_dec = decode_full_lc(full_lc_encode) t1 = time() - lc_decode_time = t1-t0 + decode_time = t1-t0 print('VALIDATION ROUTINES:') - print('Original Data: {}, {} bytes'.format(h(lc), len(lc))) + print('Orig Data: {}, {} bytes'.format(h(lc), len(lc))) + print('Orig Encoded: {}, {} bytes'.format(h(voice_hb), len(voice_hb.tobytes()))) print() print('BPTC(196,96):') print('Encoded data: {}, {} bytes'.format(h(full_lc_encode.tobytes()), len(full_lc_encode.tobytes()))) print('Encoding time: {} seconds'.format(encode_time)) - print('Fast Decode: {}'.format(h(full_lc_dec))) - print('Fast Decode Time: {} seconds'.format(lc_decode_time)) + print('Decoded data: {}'.format(h(full_lc_dec))) + print('Decode Time: {} seconds'.format(decode_time)) # Embedded LC t0 = time() @@ -231,15 +236,12 @@ if __name__ == '__main__': encode_time = t1 -t0 t0 = time() - decemblc = decode_emblc(emblc[0], emblc[1], emblc[2], emblc[3]) + decemblc = decode_emblc(emblc[0] + emblc[1] + emblc[2] + emblc[3]) t1 = time() decode_time = t1 -t0 print('\nEMBEDDED LC:') - print('Encoded Embedded LC: Burst B:{}, Burst C:{}, Burst D:{}, Burst E:{}'.format(h(emblc[0].tobytes()), h(emblc[1].tobytes()), h(emblc[2].tobytes()), h(emblc[3].tobytes()))) - print('Endoder Time:', encode_time) - print('Decoded Embedded LC:', h(decemblc)) - print('Decoder Time:', decode_time) - - - \ No newline at end of file + print('Encoded Data: Burst B:{} Burst C:{} Burst D:{} Burst E:{}'.format(h(emblc[0].tobytes()), h(emblc[1].tobytes()), h(emblc[2].tobytes()), h(emblc[3].tobytes()))) + print('Endoding Time: {}'.format(encode_time)) + print('Decoded data: {}'.format(h(decemblc))) + print('Decoding Time: {}'.format(decode_time)) \ No newline at end of file diff --git a/dmr_decon.py b/dmr_decon.py index 33396fe..52cfece 100755 --- a/dmr_decon.py +++ b/dmr_decon.py @@ -10,7 +10,7 @@ from __future__ import print_function from bitarray import bitarray import bptc -import constants as const +#import constants as const # Does anybody read this stuff? There's a PEP somewhere that says I should do this. __author__ = 'Cortney T. Buffington, N0MJS' @@ -42,7 +42,8 @@ def voice_sync(_string): ambe[0] = burst[0:72] ambe[1] = burst[72:108] + burst[156:192] ambe[2] = burst[192:264] - return (ambe) + sync = burst[108:156] + return (ambe, sync) def voice(_string): @@ -52,11 +53,10 @@ def voice(_string): ambe[1] = burst[72:108] + burst[156:192] ambe[2] = burst[192:264] emb = burst[108:116] + burst[148:156] - embeded = burst[116:148] - cc = (emb[0:4]) - # pi = (emb[4:5]) - lcss = (emb[5:7]) - return (ambe, cc, lcss, embeded) + embedded = burst[116:148] + cc = (to_bytes(emb[0:4])) + lcss = (to_bytes(emb[5:7])) + return (ambe, cc, lcss, embedded) def to_bytes(_bits): @@ -88,59 +88,67 @@ if __name__ == '__main__': voice_f = '\xee\xe7\x81\x75\x74\x61\x4d\xf2\xff\xcc\xf4\xa0\x55\x11\x10\x00\x00\x00\x0e\x24\x30\x59\xe7\xf9\xe9\x08\xa0\x75\x62\x02\xcc\xd6\x22' voice_term = '\x2b\x0f\x04\xc4\x1f\x34\x2d\xa8\x0d\x80\x7d\xe1\x04\xad\xff\x57\xd7\x5d\xf5\xd9\x65\x01\x2d\x18\x77\xd2\x03\xc0\x37\x88\xdf\x95\xd1' + embedded_lc = bitarray() - print('Header Validation:') + print('DMR PACKET DECODER VALIDATION\n') + print('Header:') t0 = time() lc = voice_head_term(data_head) t1 = time() - print(h(lc[0]), h(lc[1]), h(lc[2])) - print(t1-t0, '\n') + print('LC: OPT-{} SRC-{} DST-{}, SLOT TYPE: CC-{} DTYPE-{}'.format(h(lc[0][0:3]),h(lc[0][3:6]),h(lc[0][6:9]),h(lc[1]),h(lc[2]))) + print('Decode Time: {}\n'.format(t1-t0)) - print('Voice Burst A Validation:') + print('Voice Burst A:') t0 = time() lc = voice_sync(voice_a) t1 = time() - print(lc[0]) + print('VOICE SYNC: {}'.format(h(lc[1]))) print(t1-t0, '\n') - print('Voice Burst B Validation:') + print('Voice Burst B:') t0 = time() lc = voice(voice_b) + embedded_lc += lc[3] t1 = time() - print(lc[0], h(lc[1]), h(lc[2]), h(lc[3].tobytes())) + print('EMB: CC-{} LCSS-{}, EMBEDDED LC: {}'.format(h(lc[1]), h(lc[2]), h(lc[3].tobytes()))) print(t1-t0, '\n') - print('Voice Burst C Validation:') + print('Voice Burst C:') t0 = time() lc = voice(voice_c) + embedded_lc += lc[3] t1 = time() - print(lc[0], h(lc[1]), h(lc[2]), h(lc[3].tobytes())) + print('EMB: CC-{} LCSS-{}, EMBEDDED LC: {}'.format(h(lc[1]), h(lc[2]), h(lc[3].tobytes()))) print(t1-t0, '\n') - print('Voice Burst D Validation:') + print('Voice Burst D:') t0 = time() lc = voice(voice_d) + embedded_lc += lc[3] t1 = time() - print(lc[0], h(lc[1]), h(lc[2]), h(lc[3].tobytes())) + print('EMB: CC-{} LCSS-{}, EMBEDDED LC: {}'.format(h(lc[1]), h(lc[2]), h(lc[3].tobytes()))) print(t1-t0, '\n') - print('Voice Burst E Validation:') + print('Voice Burst E:') t0 = time() lc = voice(voice_e) + embedded_lc += lc[3] + embedded_lc = bptc.decode_emblc(embedded_lc) t1 = time() - print(lc[0], h(lc[1]), h(lc[2]), h(lc[3].tobytes())) + print('EMB: CC-{} LCSS-{}, EMBEDDED LC: {}'.format(h(lc[1]), h(lc[2]), h(lc[3].tobytes()))) + print('COMPLETE EMBEDDED LC: {}'.format(h(embedded_lc))) print(t1-t0, '\n') - print('Voice Burst F Validation:') + print('Voice Burst F:') t0 = time() lc = voice(voice_f) t1 = time() - print(lc[0], h(lc[1]), h(lc[2]), h(lc[3].tobytes())) + print('EMB: CC-{} LCSS-{}, EMBEDDED LC: {}'.format(h(lc[1]), h(lc[2]), h(lc[3].tobytes()))) print(t1-t0, '\n') - print('Terminator Validation:') + print('Terminator:') t0 = time() lc = voice_head_term(voice_term) t1 = time() - print(h(lc[0]), h(lc[1]), h(lc[2])) - print(t1-t0) \ No newline at end of file + print('LC: OPT-{} SRC-{} DST-{} SLOT TYPE: CC-{} DTYPE-{}'.format(h(lc[0][0:3]),h(lc[0][3:6]),h(lc[0][6:9]),h(lc[1]),h(lc[2]))) + print('Decode Time: {}\n'.format(t1-t0)) \ No newline at end of file diff --git a/hamming.py b/hamming.py index 5bfb54f..2d3f7e6 100755 --- a/hamming.py +++ b/hamming.py @@ -31,40 +31,6 @@ def enc_15113(_data): csum[3] = _data[0] ^ _data[1] ^ _data[2] ^ _data[4] ^ _data[6] ^ _data[7] ^ _data[10] return csum -# DECODER - Returns a tuple of (decoded data, True if an error was corrected) -def dec_15113(_data): - chk0 = _data[0] ^ _data[1] ^ _data[2] ^ _data[3] ^ _data[5] ^ _data[7] ^ _data[8] - chk1 = _data[1] ^ _data[2] ^ _data[3] ^ _data[4] ^ _data[6] ^ _data[8] ^ _data[9] - chk2 = _data[2] ^ _data[3] ^ _data[4] ^ _data[5] ^ _data[7] ^ _data[9] ^ _data[10] - chk3 = _data[0] ^ _data[1] ^ _data[2] ^ _data[4] ^ _data[6] ^ _data[7] ^ _data[10] - - n = 0 - error = False - - n |= 0x01 if chk0 != _data[11] else 0x00 - n |= 0x02 if chk1 != _data[12] else 0x00 - n |= 0x04 if chk2 != _data[13] else 0x00 - n |= 0x08 if chk3 != _data[14] else 0x00 - - if n == 0x01: _data[11] = not _data[11]; return (_data, True) - if n == 0x02: _data[12] = not _data[12]; return (_data, True) - if n == 0x04: _data[13] = not _data[13]; return (_data, True) - if n == 0x08: _data[14] = not _data[14]; return (_data, True) - - if n == 0x09: _data[0] = not _data[0]; return (_data, True) - if n == 0x0b: _data[1] = not _data[1]; return (_data, True) - if n == 0x0f: _data[2] = not _data[2]; return (_data, True) - if n == 0x07: _data[3] = not _data[3]; return (_data, True) - if n == 0x0e: _data[4] = not _data[4]; return (_data, True) - if n == 0x05: _data[5] = not _data[5]; return (_data, True) - if n == 0x0a: _data[6] = not _data[6]; return (_data, True) - if n == 0x0d: _data[7] = not _data[7]; return (_data, True) - if n == 0x03: _data[8] = not _data[8]; return (_data, True) - if n == 0x06: _data[9] = not _data[9]; return (_data, True) - if n == 0x0c: _data[10] = not _data[10]; return (_data, True) - - return (_data, False) - #------------------------------------------------------------------------------ # Hamming 13,9,3 routines @@ -79,38 +45,7 @@ def enc_1393(_data): csum[3] = _data[0] ^ _data[2] ^ _data[4] ^ _data[5] ^ _data[8] return csum -# DECODER - Returns a tuple of (decoded data, True if an error was corrected) -def dec_1393(_data): - chk0 = _data[0] ^ _data[1] ^ _data[3] ^ _data[5] ^ _data[6] - chk1 = _data[0] ^ _data[1] ^ _data[2] ^ _data[4] ^ _data[6] ^ _data[7] - chk2 = _data[0] ^ _data[1] ^ _data[2] ^ _data[3] ^ _data[5] ^ _data[7] ^ _data[8] - chk3 = _data[0] ^ _data[2] ^ _data[4] ^ _data[5] ^ _data[8] - - n = 0 - error = False - - n |= 0x01 if chk0 != _data[9] else 0x00 - n |= 0x02 if chk1 != _data[10] else 0x00 - n |= 0x04 if chk2 != _data[11] else 0x00 - n |= 0x08 if chk3 != _data[12] else 0x00 - - if n == 0x01: _data[9] = not _data[9]; return (_data, True) - if n == 0x02: _data[10] = not _data[10]; return (_data, True) - if n == 0x04: _data[11] = not _data[11]; return (_data, True) - if n == 0x08: _data[12] = not _data[12]; return (_data, True) - - if n == 0x0f: _data[0] = not _data[0]; return (_data, True) - if n == 0x07: _data[1] = not _data[1]; return (_data, True) - if n == 0x0e: _data[2] = not _data[2]; return (_data, True) - if n == 0x05: _data[3] = not _data[3]; return (_data, True) - if n == 0x0a: _data[4] = not _data[4]; return (_data, True) - if n == 0x0d: _data[5] = not _data[5]; return (_data, True) - if n == 0x03: _data[6] = not _data[6]; return (_data, True) - if n == 0x06: _data[7] = not _data[7]; return (_data, True) - if n == 0x0c: _data[8] = not _data[8]; return (_data, True) - - return (_data, False) - + #------------------------------------------------------------------------------ # Hamming 16,11,4 routines #------------------------------------------------------------------------------ @@ -124,69 +59,4 @@ def enc_16114(_data): csum[2] = _data[2] ^ _data[3] ^ _data[4] ^ _data[5] ^ _data[7] ^ _data[9] ^ _data[10] csum[3] = _data[0] ^ _data[1] ^ _data[2] ^ _data[4] ^ _data[6] ^ _data[7] ^ _data[10] csum[4] = _data[0] ^ _data[2] ^ _data[5] ^ _data[6] ^ _data[8] ^ _data[9] ^ _data[10] - return csum - -# DECODER - Returns a tuple of (decoded data, True if an error was corrected) -def dec_16114(_data): - chk0 = _data[0] ^ _data[1] ^ _data[2] ^ _data[3] ^ _data[5] ^ _data[7] ^ _data[8] - chk1 = _data[1] ^ _data[2] ^ _data[3] ^ _data[4] ^ _data[6] ^ _data[8] ^ _data[9] - chk2 = _data[2] ^ _data[3] ^ _data[4] ^ _data[5] ^ _data[7] ^ _data[9] ^ _data[10] - chk3 = _data[0] ^ _data[1] ^ _data[2] ^ _data[4] ^ _data[6] ^ _data[7] ^ _data[10] - chk4 = _data[0] ^ _data[2] ^ _data[5] ^ _data[6] ^ _data[8] ^ _data[9] ^ _data[10] - - n = 0 - error = False - - n |= 0x01 if chk0 != _data[11] else 0x00 - n |= 0x02 if chk1 != _data[12] else 0x00 - n |= 0x04 if chk2 != _data[13] else 0x00 - n |= 0x08 if chk3 != _data[14] else 0x00 - n |= 0x10 if chk4 != _data[15] else 0x00 - - if n == 0x01: _data[11] = not _data[11]; return (_data, True) - if n == 0x02: _data[12] = not _data[12]; return (_data, True) - if n == 0x04: _data[13] = not _data[13]; return (_data, True) - if n == 0x08: _data[14] = not _data[14]; return (_data, True) - if n == 0x10: _data[15] = not _data[15]; return (_data, True) - - if n == 0x19: _data[0] = not _data[0]; return (_data, True) - if n == 0x0b: _data[1] = not _data[1]; return (_data, True) - if n == 0x1f: _data[2] = not _data[2]; return (_data, True) - if n == 0x07: _data[3] = not _data[3]; return (_data, True) - if n == 0x0e: _data[4] = not _data[4]; return (_data, True) - if n == 0x15: _data[5] = not _data[5]; return (_data, True) - if n == 0x1a: _data[6] = not _data[6]; return (_data, True) - if n == 0x0d: _data[7] = not _data[7]; return (_data, True) - if n == 0x13: _data[8] = not _data[8]; return (_data, True) - if n == 0x16: _data[9] = not _data[9]; return (_data, True) - if n == 0x1c: _data[10] = not _data[10]; return (_data, True) - - return (_data, False) - - -#------------------------------------------------------------------------------ -# Used to execute the module directly to run built-in tests -#------------------------------------------------------------------------------ - -if __name__ == '__main__': - - # Validation Example - good_data_15113 = bitarray('0000000000000000000100000011101000000000000000000000110001110011000000100100111110011010110111100101111001011010110101101100010110100110000110000111100111010011101101000010101001110000100101010100') - bad_data_15113 = bitarray('0000000000000000000110000011101000000000000000000000110001110011000000100100111110011010110111100101111001011010110101101100010110100110000110000111100111010011101101000010101001110000100101010100') - - def check_15113(_data): - rows = (_data[1:16],_data[16:31],_data[31:46],_data[46:61],_data[61:76],_data[76:91],_data[91:106],_data[106:121],_data[121:136]) - print('Processing New Integrity Check') - for row in rows: - print('original data:', row[0:11], 'original parity:', row[11:15]) - - hamming_dec = dec_15113(row[0:15]) - code = hamming_dec[0] - error = hamming_dec[1] - - print('\tDECODE: data: ', code[0:11], 'parity: ', code[11:15], 'error:', error) - print('\tENCODE: calculated parity:', enc_15113(row[0:11])) - print() - - check_15113(good_data_15113) - check_15113(bad_data_15113) \ No newline at end of file + return csum \ No newline at end of file diff --git a/hb_router.py b/hb_router.py index cd92bf0..c728d32 100755 --- a/hb_router.py +++ b/hb_router.py @@ -72,7 +72,8 @@ class routerMASTER(HBMASTER): def __init__(self, *args, **kwargs): HBMASTER.__init__(self, *args, **kwargs) - self.lc_fragments = {'B': '', 'C': '', 'D': '', 'E': '', 'F': ''} + self.embeddec_lc_rx = {'B': '', 'C': '', 'D': '', 'E': '', 'F': ''} + self.embeddec_lc_tx = {'B': '', 'C': '', 'D': '', 'E': '', 'F': ''} def dmrd_received(self, _radio_id, _rf_src, _dst_id, _seq, _slot, _call_type, _frame_type, _dtype_vseq, _stream_id, _data): _bits = int_id(_data[15]) @@ -114,7 +115,8 @@ class routerCLIENT(HBCLIENT): def __init__(self, *args, **kwargs): HBCLIENT.__init__(self, *args, **kwargs) - self.lc_fragments = {'B': '', 'C': '', 'D': '', 'E': '', 'F': ''} + self.embeddec_lc_rx = {'B': '', 'C': '', 'D': '', 'E': '', 'F': ''} + self.embeddec_lc_tx = {'B': '', 'C': '', 'D': '', 'E': '', 'F': ''} def dmrd_received(self, _radio_id, _rf_src, _dst_id, _seq, _slot, _call_type, _frame_type, _dtype_vseq, _stream_id, _data): _bits = int_id(_data[15]) diff --git a/peer_ids.csv b/peer_ids.csv index 1a6f0fc..e1b2777 100644 --- a/peer_ids.csv +++ b/peer_ids.csv @@ -21,431 +21,533 @@ 113615,K2JRC,oakland gardens,New York,United States,438.58750,3,-5.000,Peer,TS1 TS2,K2JRC,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 3 = U.S. / English Speaking Countries
Time Slot #1 - Group Call 3172 = Northeast
Time Slot #2 - Group Call 2 = NY-NJ Metro

You Must Have [ARS] Disabled Within Your Radi

Coverage Area:

Contact Name: Jerry, K2JRC
Email: jerrycudmore@pobox.com,1,NJ TRBO
113616,K2JRC,Brooklyn NY,New York,United States,443.70000,3,+5.000,Master,TS1 TS2,K2JRC,,1,Bronx Trbo
113618,KB2LFH,York Town Hts,New York,United States,441.56250,3,+5.000,Peer,TS1 TS2,KB2LFH,,0,BrandMeister
-113619,K2ATY,Newburgh,New York,United States,448.37500,10,-5.000,Peer,TS1 TS2,K2ATY,,0,NE-TRBO
+113619,K2ATY,Newburgh,New York,United States,441.01875,10,-5.000,Peer,TS1 TS2,K2ATY,,0,NE-TRBO
113620,K2JRC,Glen Oaks,New York,United States,438.61250,3,-5.000,Master,TS1 TS2,K2JRC,,1,Bronx Trbo
113621,NY4Z,Manhattan,New York,United States,445.62500,1,-5.000,Peer,TS1 TS2,NY4Z,,1,Bronx TRBO
113622,W2WCR,North Creek,New York,United States,442.25000,1,+5.000,Peer,TS1 TS2,N2LBT,,0,BrandMeister
+113623,NY4Z,Briarcliff Manor,New York,United States,443.80000,3,+5.000,Master,TS1 TS2,NY4Z,,0,Bronx TRBO
113702,W4GG,Greensboro,North Carolina,United States,444.22500,1,+5.000,Peer,TS1 TS2,W4JLH,,0,PRN
+200001,IPSC_EU1,,,Europe,,1,,,,DL5DI,,0,DMR-plus
+200002,IPSC_EU2,,,Europe,,1,,,,DL5DI,,0,DMR-plus
+200003,IPSC_EU3,,,Europe,,1,,,,DL5DI,,0,DMR-plus
+200004,IPSC_EU4,,,Europe,,1,,,,DL5DI,,0,DMR-plus
+200005,IPSC_EU5,,,Europe,,1,,,,DL5DI,,0,DMR-plus
202100,SV1U,Athens,Attica,Greece,439.00000,1,-7.600,Master,None,SV1NZP,,0,
-202101,SW1F,Moschato / Athens,Attica,Greece,438.81250,1,-7.600,Peer,TS1 TS2,SV1GFH,Time Slot#1 - Group Call 1 = Worldwide Calling (2 min max)
Time Slot#1 - Group Call 2 = Europe
Time Slot#2 - Group Call 8 = Regional
Time Slot#2 - Group Call 9 = Local

You must DISABLE ARS on all time slots

Contact: Dimitris, SV1EDZ
Email: sv1edz@gmail.com,1,DMR-MARC
+202101,SW1F,Moschato / Athens,Attica,Greece,438.81250,1,-7.600,Peer,TS1 TS2,SV1GFH,Time Slot#1 - Group Call 1 = Worldwide Calling (2 min max)
Time Slot#1 - Group Call 2 = Europe
Time Slot#2 - Group Call 8 = Regional
Time Slot#2 - Group Call 9 = Local

You must DISABLE ARS on all time slots

Contact: Dimitris, SV1EDZ
Email: sv1edz@gmail.com,1,BM
202102,SV1I,Penteli,Pennsylvania,Greece,439.32500,1,-7.600,Peer,TS1 TS2,SZ1GRC,,0,None
202103,SV1M,KM17VW / Athen,Attiki,Greece,439.17500,1,-7.600,Peer,TS1 TS2,SZ1GRC,,0,None
-204101,PI1AMS,Amsterdam,,Netherlands,438.40000,1,-7.600,PEER,TS1 TS2,PA3PM,,0,N/A
-204103,PI1WFR,Obdam,Noord-Holland,Netherlands,438.01250,1,-7.600,PEER,TS1 TS2,PE1BMM,,0,N/A
+202601,SV6G,Ioannina,Ipeiros,Greece,438.75000,1,-7.600,,,SV6DBG,,0,BrandMeister
+204101,PI1AMS,Amsterdam,,Netherlands,438.40000,1,-7.600,PEER,TS1 TS2,PA3PM,,0,BM
+204103,PI1WFR,Obdam,Noord-Holland,Netherlands,438.01250,1,-7.600,PEER,TS1 TS2,PE1BMM,,0,BM
204200,PI1RTD,Rotterdam,,Netherlands,438.20000,1,-7.600,PEER,TS1 TS2,PA0HTW,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 22 = NL Speaking
Time Slot #1 - Group Call 204 = PA 1
Time Slot #1 - Group Call 9 = Local 1
Time Slot #2 - Group Call 204 = PA 2
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio


Contact: Henk Post,PA0HTW Email:
Web:,1,DMR-MARC
-204204,PI1DFT,Delft,Zuid-Holland,Netherlands,438.37500,1,-7.600,PEER,TS1 TS2,PD4TH,,0,N/A
-204300,PI1UTR,Ijsselstein,Utrecht,Netherlands,438.35000,1,-7.600,PEER,TS1 TS2,PE1RJV,,0,N/A
+204204,PI1DFT,Delft,Zuid-Holland,Netherlands,438.37500,1,-7.600,PEER,TS1 TS2,PD4TH,,0,BM
+204300,PI1UTR,Ijsselstein,Utrecht,Netherlands,438.35000,1,-7.600,PEER,TS1 TS2,PE1RJV,,0,BM
204311,PI1AMF,Amersfoort,,Netherlands,438.33750,1,-7.600,PEER,TS1 TS2,PA1GF,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 22 = NL Speaking
Time Slot #1 - Group Call 204 = PA 1
Time Slot #1 - Group Call 9 = Local 1
Time Slot #2 - Group Call 204 = PA 2
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio


Contact: Gerjan Faber,PA1GF Email: pa1gf@amsat.org
Web: http://www.d-star.nu,1,DMR-MARC
-204342,PI1SPA,Spakenburg,Utrecht,Netherlands,438.30000,1,-7.600,PEER,TS1 TS2,PD0RAF,,0,N/A
-204400,PI1HRL,Heerlen,,Netherlands,438.26250,2,-7.600,PEER,TS1 TS2,PD4RS,,0,N/A
-204401,PI1ZLD,Zierikzee,Zeeland,Netherlands,438.40000,2,-7.600,PEER,TS1 TS2,PA9KM,,0,N/A
-204402,PI1ZLB,Maastricht,,Netherlands,438.15000,3,-7.600,PEER,TS1 TS2,PD3R,,0,N/A
-204403,PI1NLB,Gennep,Limburg,Netherlands,438.02500,1,-7.600,PEER,TS1 TS2,PA3ETC,,0,N/A
-204500,PI1ZOB,Eindhoven,,Netherlands,438.25000,3,-7.600,PEER,TS1 TS2,PE1DGW,,0,N/A
+204342,PI1SPA,Spakenburg,Utrecht,Netherlands,438.30000,1,-7.600,PEER,TS1 TS2,PD0RAF,,0,BM
+204400,PI1HRL,Heerlen,,Netherlands,438.26250,2,-7.600,PEER,TS1 TS2,PD4RS,,0,BM
+204401,PI1ZLD,Zierikzee,Zeeland,Netherlands,438.40000,2,-7.600,PEER,TS1 TS2,PA9KM,,0,BM
+204402,PI1ZLB,Maastricht,,Netherlands,438.15000,3,-7.600,PEER,TS1 TS2,PD3R,,0,BM
+204403,PI1NLB,Gennep,Limburg,Netherlands,438.02500,1,-7.600,PEER,TS1 TS2,PA3ETC,,0,BM
+204500,PI1ZOB,Eindhoven,,Netherlands,438.10000,1,-7.600,PEER,TS1 TS2,PE1DGW,,0,BM
204501,PI1TBG,Tilburg,Noord-Brabant,Netherlands,438.23750,1,-7.600,PEER,TS1 TS2,PE1RJV,,0,N/A
-204555,PI1TDT,Not fixed / various,Noord-Brabant,Netherlands,438.00000,2,-7.600,PEER,TS1 TS2,PE1DGW,,0,N/A
-204600,PI1APD,Apeldoorn,,Netherlands,438.38750,1,-7.600,PEER,TS1 TS2,PE1RJV,,0,N/A
-204601,PI1ZHM,Zelhem,Gelderland,Netherlands,438.28750,1,-7.600,PEER,TS1 TS2,PA3ANB,,0,N/A
-204602,PI1ANH,Oosterbeek,Gelderland,Netherlands,438.06250,1,-7.600,PEER,TS1 TS2,PA1PAS,,0,N/A
+204555,PI1TDT,Not fixed / various,Noord-Brabant,Netherlands,0.00000,2,0.000,PEER,TS1 TS2,PE1DGW,,0,BM
+204600,PI1APD,Apeldoorn,,Netherlands,438.38750,1,-7.600,PEER,TS1 TS2,PE1RJV,,0,BM
+204601,PI1ZHM,Zelhem,Gelderland,Netherlands,438.28750,1,-7.600,PEER,TS1 TS2,PA3ANB,,0,BM
+204602,PI1ANH,Oosterbeek,Gelderland,Netherlands,438.06250,1,-7.600,PEER,TS1 TS2,PA1PAS,,0,BM
204612,PD0JAC,Arnhem,Gelderland,Netherlands,430.06250,1,7.600,PEER,TS1 TS2,PD0JAC,,0,N/A
204666,PI1GRL,Groenlo,Gelderland,Netherlands,438.32500,1,-7.600,Peer,TS1 TS2,PC2KY,,0,BM
204700,PI1DAF,Almere,,Netherlands,438.96250,1,-7.600,PEER,TS1 TS2,PD0POH,,0,N/A
-204701,PI1KMP,Kampen,Overijssel,Netherlands,438.28750,2,-7.600,PEER,TS1 TS2,PD0HF,,0,N/A
-204702,PI1SHA,Almere,Flevoland,Netherlands,438.31250,1,-7.600,PEER,TS1 TS2,PA2SHA,,0,N/A
+204701,PI1KMP,Kampen,Overijssel,Netherlands,438.28750,2,-7.600,PEER,TS1 TS2,PD0HF,,0,BM
+204702,PI1SHA,Almere,Flevoland,Netherlands,438.13750,1,-7.600,PEER,TS1 TS2,PA2SHA,,0,BM
204710,PI1ZWL,Zwolle,Overijssel,Netherlands,438.16250,1,-7.600,PEER,TS1 TS2,PD0ZWL,,0,Motorola
-204711,PI1TWE,Hengelo,Overijssel,Netherlands,438.27500,1,-7.600,PEER,TS1 TS2,PE1SCX,,0,N/A
-204720,PI1NIJ,Nijverdal,Overijssel,Netherlands,438.03750,1,-7.600,PEER,TS1 TS2,PI1NIJ,,0,N/A
+204711,PI1TWE,Hengelo,Overijssel,Netherlands,438.27500,1,-7.600,PEER,TS1 TS2,PE1SCX,,0,BM
+204720,PI1NIJ,Nijverdal,Overijssel,Netherlands,438.03750,1,-7.600,PEER,TS1 TS2,PI1NIJ,,0,BM
204777,PI1KPH,Zwolle,Overijssel,Netherlands,438.15000,2,-7.600,PEER,TS1 TS2,PA4DEN,,0,DMR-MARC
-204778,PI1KPH,Zwolle,Overijssel,Netherlands,438.15000,4,-7.600,PEER,TS1 TS2,PA4DEN,,0,N/A
+204778,PI1KPH,Zwolle,Overijssel,Netherlands,438.15000,4,-7.600,PEER,TS1 TS2,PA4DEN,,0,BM
204800,PI1NOG,Delfzijl,,Netherlands,438.15000,1,-7.600,PEER,TS1 TS2,PA3GAZ,,0,DMR-MARC
-204801,PI1DRA,Drachten,,Netherlands,438.00000,1,-7.600,PEER,TS1 TS2,PD0SDO,,0,N/A
-204802,PI1CVD,Coevorden,Drenthe,Netherlands,438.25000,1,-7.600,PEER,TS1 TS2,PD0ADC,,0,N/A
-204844,PI1FRL,Burgwerd,Friesland,Netherlands,438.36250,1,-7.600,PEER,TS1 TS2,PA3GFY,,0,N/A
-206001,ON0CK,Kortrijk,West-Vlaanderen,Belgium,439.16250,1,-7.600,PEER,TS1 TS2,ON4TOP,,0,DMR-plus
-206002,ON0SEA,Knokke-Heist,West-Vlaanderen,Belgium,438.93750,1,-7.600,Peer,TS1 TS2,ON4UK,,0,DMR-plus
-206003,ON0VRN,Veurne,West-Vlaanderen,Belgium,439.45000,1,-7.600,Peer,TS1 TS2,ON8SD,,0,DMR-plus
-206004,ON0MSD,Moorslede,West-Vlaanderen,Belgium,439.18750,1,-7.600,PEER,TS1 TS2,ON4AIM,,0,DMR-plus
+204801,PI1DRA,Drachten,,Netherlands,438.00000,1,-7.600,PEER,TS1 TS2,PD0SDO,,0,BM
+204802,PI1CVD,Coevorden,Drenthe,Netherlands,438.25000,2,-7.600,PEER,TS1 TS2,PD0ADC,,0,BM
+204844,PI1FRL,Burgwerd,Friesland,Netherlands,438.36250,1,-7.600,PEER,TS1 TS2,PA3GFY,,0,BM
+206001,ON0CK,Kortrijk,West-Vlaanderen,Belgium,439.16250,1,-7.600,PEER,TS1 TS2,ON4TOP,,0,BM
+206002,ON0SEA,Knokke-Heist,West-Vlaanderen,Belgium,438.93750,1,-7.600,Peer,TS1 TS2,ON4UK,,0,BM
+206003,ON0VRN,Veurne,West-Vlaanderen,Belgium,439.21250,1,-7.600,Peer,TS1 TS2,ON8SD,,0,BM
+206004,ON0MSD,Moorslede,West-Vlaanderen,Belgium,439.18750,1,-7.600,PEER,TS1 TS2,ON4AIM,,0,BM
+206005,ON3DHC,Brugge,West-Vlaanderen,Belgium,439.00000,1,-7.600,,,ON3DHC,,0,BM
+206006,ON4TOP,Bavikhove,West-Vlaanderen,Belgium,438.07500,1,-7.600,,,ON4TOP,,0,Hytera
+206007,ON0DXK,Kortrijk,West-Vlaanderen,Belgium,439.00000,1,-7.600,,,ON4TOP,,0,Hytera
206008,ON0AIM,Oostende,West-Vlaanderen,Belgium,439.56250,1,-7.600,Peer,TS1 TS2,ON4AIM,,0,Hytera
-206010,ON0OST,Oostende,West-Vlaanderen,Belgium,439.41250,1,-7.600,Peer,None,ON4AIM,,0,DMR-plus
+206010,ON0OST,Oostende,West-Vlaanderen,Belgium,439.41250,1,-7.600,Peer,None,ON4AIM,,0,BM
206011,ON0OS,Oostende,West-Vlaanderen,Belgium,439.36250,1,-7.600,Peer,TS1 TS2,ON4AIM,,0,HYTERA
-206012,ON0WV,Brugge,West-Vlaanderen,Belgium,439.58750,1,-7.600,Peer,TS1 TS2,ON3DHC,,0,DMR-plus
+206012,ON0WV,Brugge,West-Vlaanderen,Belgium,439.58750,1,-7.600,Peer,TS1 TS2,ON3DHC,,0,BM
206100,ON0VA,Zulzeke,Oost-Vlaanderen,Belgium,438.22500,1,-7.600,Peer,TS1 TS2,ON4PN,,0,HYTERA
-206101,ON0GRC,Gent,Oost-Vlaanderen,Belgium,439.08750,1,-7.6,Peer,TS2,ON4AKH,,0,DMR-plus
-206102,ON0DEN,Dendermonde,Oost-Vlaanderen,Belgium,439.03750,1,-7.6,Peer,TS1 TS2,ON1DGR,,0,DMR-plus
-206103,ON0WRA,Oudenaarde,Oost-Vlaanderen,Belgium,438.81250,1,-7.600,Peer,TS1 TS2,ON4RW,,0,DMR-plus
-206104,ON0LED,LEDE,Oost-Vlaanderen,Belgium,438.73750,1,-7.6,Peer,TS1 TS2,ON1DGR,,0,DMR-plus
-206105,ON0APS,Appels ,Oost-Vlaanderen ,Belgium ,438.36250,1,-7.6,PEER,TS1 TS2,ON1DGR,,0,DMR-plus
-206106,ON0HAM,Hamme ,Oost-Vlaanderen ,Belgium ,438.33750,1,-7.600,Peer,TS1 TS2,ON1DGR,,0,DMR-plus
-206200,ON0DP,Boom,Antwerp,Belgium,439.46250,1,-7.600,Master,TS1 TS2,ON7DS,,0,DMR-plus
-206201,ON7FQ,Antwerp,Antwerp,Belgium,438.36250,1,-7.6,Peer,TS1 TS2,EA7IYR,,0,DMR-plus
-206202,ON0KB,Bornem,Antwerp,Belgium,438.92500,1,-7.6,PEER,TS1 TS2,ON1DGR,,0,Hytera
-206210,ON0AND,Antwerp,Antwerp,Belgium,438.98750,1,-7.6,Master,TS1 TS2,ON7FQ,,0,DMR-plus
-206300,ON0ESB,Essenbeek,Vlaams Brabant,Belgium,438.91250,1,-7.6,Master,TS1 TS2,ON1DGR,,0,DMR-plus
-206301,ON0DIL,Dilbeek,Vlaams Brabant,Belgium,439.26250,1,-7.6,Peer,TS1 ,ON1DGR,,0,DMR-plus
-206302,ON0NWR,Nieuwrode,Vlaams Brabant,Belgium,438.88750,1,-7.6,Peer,TS1 TS2,ON9CJX,,0,DMR-plus
+206101,ON0GRC,Gent,Oost-Vlaanderen,Belgium,439.08750,1,-7.600,Peer,TS2,ON4AKH,,0,BM
+206102,ON0DEN,Dendermonde,Oost-Vlaanderen,Belgium,438.33750,1,-7.600,Peer,TS1 TS2,ON1DGR,,0,BM
+206103,ON0WRA,Oudenaarde,Oost-Vlaanderen,Belgium,438.81250,1,-7.600,Peer,TS1 TS2,ON4RW,,0,BM
+206104,ON0LED,LEDE,Oost-Vlaanderen,Belgium,438.73750,1,-7.600,Peer,TS1 TS2,ON1DGR,,0,BM
+206105,ON0APS,Appels,Oost-Vlaanderen,Belgium,438.36250,1,-7.600,PEER,TS1 TS2,ON1DGR,,0,BM
+206106,ON0HAM,Hamme,Oost-Vlaanderen,Belgium,438.33750,1,-7.600,Peer,TS1 TS2,ON1DGR,,0,BM
+206200,ON0DP,Boom,Antwerp,Belgium,439.46250,1,-7.600,Master,TS1 TS2,ON7DS,,0,BM
+206201,ON7FQ,Antwerp,Antwerp,Belgium,438.36250,1,-7.600,Peer,TS1 TS2,EA7IYR,,0,DMR-plus
+206202,ON0KB,Bornem,Antwerp,Belgium,438.92500,1,-7.600,PEER,TS1 TS2,ON1DGR,,0,BM
+206210,ON0AND,Antwerp,Antwerp,Belgium,438.98750,1,-7.600,Master,TS1 TS2,ON7FQ,,0,DMR-plus
+206300,ON0ESB,Essenbeek,Vlaams Brabant,Belgium,438.91250,1,-7.600,Master,TS1 TS2,ON1DGR,,0,DMR-plus
+206301,ON0DIL,Dilbeek,Vlaams Brabant,Belgium,439.26250,1,-7.600,Peer,TS1 ,ON1DGR,,0,BM
+206302,ON0NWR,Nieuwrode,Vlaams Brabant,Belgium,438.88750,1,-7.600,Peer,TS1 TS2,ON9CJX,,0,DMR-plus
206303,ON0EPN,Lummen,Vlaams Brabant,Belgium,439.38750,1,-7.600,Peer,TS1 TS2,ON4VRT,,0,Hytera
-206310,ON0GAL,Galmaarden,Vlaams Brabant,Belgium,438.83750,1,-7.6,Master,TS1 TS2,ON1DGR,,0,DMR-plus
+206310,ON0GAL,Galmaarden,Vlaams Brabant,Belgium,438.83750,1,-7.600,Master,TS1 TS2,ON1DGR,,0,BM
206320,ON0TLW,Tielt-Winge,Vlaams Brabant,Belgium,438.88750,1,-7.600,Peer,TS1 TS2,ON1DGR,,0,DMR-plus
-206401,ON4BAF,Sint-Truiden,Limburg,Belgium,439.00000,1,-7.600,Peer,TS1 TS2,ON5ARE,,0,DMR-plus
-206402,ON0MLB,Genk,Limburg,Belgium,438.96250,1,-7.600,Peer,TS1 TS2,ON3MID,,0,DMR-plus
-206404,ON0BAF,Sint-Truiden,Limburg,Belgium,145.58850,1,-0.600,Peer,TS1 TS2,ON5ARE,,0,Hytera
+206401,ON4BAF,Sint-Truiden,Limburg,Belgium,439.00000,1,-7.600,Peer,TS1 TS2,ON5ARE,,0,BM
+206402,ON0MLB,Genk,Limburg,Belgium,438.96250,1,-7.600,Peer,TS1 TS2,ON3MID,,0,BM
+206403,ON2HB,Leopoldsburg-Heppen,Limburg,Belgium,439.50000,1,-7.600,,,ON7FQ,,0,None
+206404,ON0BAF,Sint-Truiden,Limburg,Belgium,145.58750,1,-0.600,Peer,TS1 TS2,ON5ARE,,0,BM
206405,ON0LN,Gruitrode,Limburg,Belgium,439.18750,1,-7.600,PEER,TS1 TS2,ON6ZG,,0,Hytera
-206410,ON0BAF,Sint-Truiden,Limburg,Belgium,439.06250,1,-7.600,Peer,TS1 TS2,ON5ARE,,0,DMR-plus
+206410,ON0BAF,Sint-Truiden,Limburg,Belgium,439.06250,1,-7.600,Peer,TS1 TS2,ON5ARE,,0,BM
+206501,ON0HOP,Vloesberg-Flobecq,Wal. Brabant,Belgium,438.91250,1,-7.600,PEER,TS1 TS2,ON1DGR,,0,BM
+206601,ON0MON,Rouveroy,Hainaut,Belgium,439.20000,2,-7.600,,,ON8CB,,0,None
206602,ON0LLV,La Hestre,Hainaut,Belgium,438.87500,2,-7.600,PEER,TS1 TS2,ON7FI,,0,None
-206700,ON0NR,Wepion,Namur,Belgium,439.53750,1,-7.600,Peer,TS1 TS2,ON4PB,,0,DMR-plus
-206800,ON0LGE,Retinne,,Belgium,438.93750,1,-7.600,PEER,TS1 TS2,ON5VDK,,0,DMR-plus
-206801,ON0LRG,Clavier (Bois-et-Bor,Liege,Belgium,439.16250,1,-7.600,Peer,TS1 TS2,ON4LRG,,0,DMR-plus
+206700,ON0NR,Wepion,Namur,Belgium,439.53750,2,-7.600,Peer,TS1 TS2,ON4PB,,0,BM
+206800,ON0LGE,Retinne,,Belgium,438.93750,2,-7.600,PEER,TS1 TS2,ON5VDK,,0,BM
+206801,ON0LRG,Clavier (Bois-et-Bor,Liege,Belgium,439.16250,2,-7.600,Peer,TS1 TS2,ON4LRG,,0,BM
+206802,ON0TB,SignalBotrange,Liege,Belgium,439.01250,1,-7.600,,,ON6GPS,,0,Hytera
206901,ON0BXL,Brussels,Brussels,Belgium,439.33750,1,-7.600,Peer,Mixed Mode,ON7PC,,0,HYTERA
-206902,ON0PRX,Brussel,Brussels,Belgium,438.41250,1,-7.6,Peer,TS1 TS2,ON1DGR,,0,DMR-plus
-208000,F1ZEI,Les Lilas,,France,430.17500,1,9.400,PEER,TS1 TS2,F1TDI,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 9 = Local Secondary
Time Slot #1 - Group Call 11 = Worldwide French
Time Slot #1 - Group Call 21 = European French

Time Slot #2 - Group Call 9 = Local Primary

Time Slot #2 - Group Call 208 = France

You Must Have [ARS] Disabled Within Your Radio.


Contact: Daniel , F1TDI
Email: f1tdi@yahoo.com
WWW: http://f1zei.repeteur.com,1,DMR-MARC
+206902,ON0PRX,Brussel,Brussels,Belgium,438.41250,1,-7.600,Peer,TS1 TS2,ON1DGR,,0,BM
+208000,F1ZEI,Les Lilas,,France,430.17500,1,9.400,PEER,TS1 TS2,F1TDI,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 9 = Local Secondary
Time Slot #1 - Group Call 11 = Worldwide French
Time Slot #1 - Group Call 21 = European French

Time Slot #2 - Group Call 9 = Local Primary

Time Slot #2 - Group Call 208 = France

You Must Have [ARS] Disabled Within Your Radio.


Contact: Daniel , F1TDI
Email: f1tdi@yahoo.com
WWW: http://f1zei.repeteur.com,1,DMRF
208002,F1ZPL,Paris 10e,Île-de-France,France,430.26250,1,9.400,PEER,TS1 TS2,F1SHS,,0,DMR-France
-208003,F5ZDO,Fontenay-Tresigny,Île-de-France,France,430.35000,1,9.4,PEER,TS1 TS2,F4GQK,,0,DMR-plus
+208003,F5ZDO,Fontenay-Tresigny,Île-de-France,France,430.35000,1,9.400,PEER,TS1 TS2,F4GQK,,0,BM
208004,F1ZDW,Fontenay-Tresigny,Ile-de-France,France,430.35000,1,9.400,PEER,TS1 TS2,F4GQK,,0,DMR-plus
-208005,F5ZJV,PARIS ,Île-de-France ,France ,430.40000,3,9.400,PEER,TS1 TS2,F8FJH,,0,Hytera
+208005,F5ZJV,PARIS,Île-de-France,France,430.40000,3,9.400,PEER,TS1 TS2,F8FJH,,0,Hytera
208006,F5ZIW,BURES SUR YVETTE,le-de-France,France,430.20000,1,9.400,Peer,TS1 TS2,F6CNB,,0,None
-208007,F1ZGI,Rueil Malmaison,Île-de-France,France,430.57500,1,9.4,PEER,TS1 TS2,F1TUV,,0,DMR-plus
+208007,F1ZGI,Rueil Malmaison,Île-de-France,France,430.57500,1,9.400,PEER,TS1 TS2,F1TUV,,0,BM
208008,F1ZGO,Meudon,Île-de-France,France,430.05000,1,9.400,PEER,TS1 TS2,F1TDI,,0,DMRF
-208010,F1ZWD,Paris,Île-de-France,France,430.15000,1,9.400,PEER,TS1 TS2,F1HBG,,0,DMR-France
+208010,F1ZWD,Paris,Île-de-France,France,430.15000,1,9.400,PEER,TS1 TS2,F1HBG,,0,BM
208025,F1ZPQ,Parvis de la Defense,Île-de-France,France,430.23750,1,9.400,PEER,TS1 TS2,F1SHS,,0,Motorola
-208065,F1SHS,La Garenne Colombes,Île-de-France,France,430.23750,1,9.4,PEER,TS1 TS2,F1SHS,,0,DMR-France
-208075,F1ZTC,Paris,,France,145.72500,1,-0.600,Peer,TS1 TS2,F1HBG,,0,DMR-plus
+208065,F1SHS,,Île-de-France,France,430.23750,1,9.400,PEER,TS1 TS2,F1SHS,,0,DMR-plus
+208075,F1ZTC,Paris,,France,145.77500,1,-0.600,Peer,TS1 TS2,F1HBG,,0,BM
+208077,F1ZHK,NANGIS,le-de-France,France,145.76250,1,-0.600,PEER,TS1 TS2,F4DFJ,,0,BM
208078,F1ZPK,Magnanville,Île-de-France,France,430.27500,1,9.400,PEER,TS1 TS2,F1IKD,,0,DMR-France
208080,F5ZDR,Linas,,France,430.20000,1,9.400,PEER,TS1 TS2,F4CQA,,0,DMRF
208091,F5ZIP,La Ville-du-bois,Île-de-France,France,430.01250,1,9.400,PEER,TS1 TS2,F6MPN,,0,DMR-France
208092,F1ZOI,Puteaux,Île-de-France,France,430.28750,1,9.400,PEER,TS1 TS2,F1SHS,,0,DMR-France
208093,F5ZIO,Montreuil,Île-de-France,France,430.45000,1,9.400,Peer,TS1 TS2,F6MPN,,0,Motorola
-208099,F1ZHW,Montfermeil,le-de-France,France,430.58750,1,9.400,PEER,TS1 TS2,F1TUV,,0,DMR-plus
-208201,F1ZIC,Combe belle et cote,Rhne-Alpes,France,430.03750,1,9.4,PEER,TS1 TS2,F4AII,,0,DMR-plus
+208099,F1ZHW,Montfermeil,le-de-France,France,430.07500,1,1.600,PEER,TS1 TS2,F1TUV,,0,BM
+208102,F1ZDF,Briancon (05),Provence-Alpes-Cte d,France,439.35000,1,-7.600,PEER,TS1 TS2,F4EGG,,0,Hytera
+208103,F1ZYI,Col du Galibier,Provence-Alpes-Cte d,France,439.50000,1,-7.600,PEER,TS1 TS2,F4EGG,,0,Hytera
+208104,F1ZYH,Gap (05),Provence-Alpes-Cte d,France,439.35000,1,-7.600,PEER,TS1 TS2,F4EGG,,0,Hytera
+208105,F1ZDH,Forcalquier,Provence-Alpes-Cte d,France,439.35000,1,-7.600,PEER,TS1 TS2,F4EGG,,0,Hytera
+208201,F1ZIC,Combe belle et cote,Rhne-Alpes,France,430.03750,1,9.400,PEER,TS1 TS2,F4AII,,0,BM
+208202,F1ZJI,Villard st christoph,Rhne-Alpes,France,430.06250,1,9.400,PEER,TS1 TS2,F4AII,,0,Hytera
+208203,F1ZJJ,Villard st christoph,Rhne-Alpes,France,430.06750,1,9.400,PEER,TS1 TS2,F4AII,,0,Hytera
+208204,F1ZCK,Planfoy,Rhne-Alpes,France,430.28750,1,9.600,,,F4EED,,0,None
208205,F1ZJL,L esrre de chavas,Rhne-Alpes,France,439.40000,1,-7.600,Peer,TS1 TS2,F4FAA,,0,None
-208238,F4CZX,Saint Bernard,Rhône-Alpes,France,430.56250,1,9.4,PEER,TS1 TS2,F4CZX,,0,DMR-MARC-IPSC2
+208206,F1ZEM,VALENCE,Rhne-Alpes,France,433.15000,1,-1.600,,,F4FAA,,0,BrandMeister
+208208,F1ZDI,Lyon (69),Rhne-Alpes,France,439.35000,1,-7.600,PEER,TS1 TS2,F1JMN,,0,Hytera
+208209,F1ZJH,Les Andrieux (05),Rhne-Alpes,France,439.35000,1,-7.600,PEER,TS1 TS2,F1JMN,,0,Hytera
+208218,F1ZFG,Relais du Beaujolais,Rhône-Alpes,France,439.80000,1,-9.400,PEER,TS1 TS2,F4HIN,,0,BM
+208238,F4CZX,Saint Bernard,Rhône-Alpes,France,430.56250,1,9.400,PEER,TS1 TS2,F4CZX,,0,DMR-plus
+208248,F1ZJQ,Chartreuse,Rhne-Alpes,France,430.56250,1,9.400,,,F4CZX,,0,Motorola
208273,F1ZIQ,MERIBEL,Rhne-Alpes,France,431.70000,1,7.600,Peer,TS1 TS2,F1SLP,,0,BrandMeister
-208301,F1ZJD,La Tour du Crieu ,Midi-Pyrnes ,France ,439.77500,1,-9.4,Peer,TS1 TS2,F1IZL,,0,BrandMeister
+208301,F1ZJD,La Tour du Crieu,Midi-Pyrnes,France,439.77500,1,-9.400,Peer,TS1 TS2,F1IZL,,0,DMR-plus
208302,F1ZIM,L herm,Midi-Pyrénées,France,144.98750,1,0.000,Peer,TS1 TS2,F1ZIM,,0,None
208303,F5ZJP,CARBONNE,Midi-Pyrénées,France,145.03750,2,0.000,Peer,TS1 TS2,F5BYL,,0,None
-208304,F1ZHZ,TARASCON SUR ARIEGE ,Midi-Pyrnes ,France ,439.85000,1,-9.400,PEER,TS1 TS2,F1BBG,,0,None
-208401,F1ZGC,Mutzig,Alsace,France,430.26250,1,9.4,PEER,TS1 TS2,F4AVI,,0,DMRF
-208402,F5ZAV,Bischoffsheim,Alsace,France,430.26250,1,9.4,PEER,TS1 TS2,F4AVI,,0,DMR-plus
+208304,F1ZHZ,TARASCON SUR ARIEGE,Midi-Pyrnes,France,439.85000,1,-9.400,PEER,TS1 TS2,F1BBG,,0,None
+208401,F1ZGC,Mutzig,Alsace,France,430.26250,1,9.4,PEER,TS1 TS2,F4AVI,,0,DMR-plus
+208402,F5ZAV,Bischoffsheim,Alsace,France,430.26250,1,9.400,PEER,TS1 TS2,F4AVI,,0,DMR-plus
208403,F1ZDD,Dangolsheim,Alsace,France,430.23750,1,9.400,PEER,TS1 TS2,F4AVI,,0,DMRF
-208500,F1ZTD,Tours,,France,145.72500,1,-0.6,PEER,TS1 TS2,F1HBG,,0,DMRF
-208501,F5ZJH,NANTES ,Pays de la Loire ,France ,430.35000,1,9.400,PEER,TS1 TS2,F5BCB,,0,DMR-plus
+208405,F1ZDD,Dangolsheim,Alsace,France,430.28750,1,9.400,PEER,TS1 TS2,F4AVI,,0,BM
+208500,F1ZTD,Tours,,France,145.72500,1,-0.600,PEER,TS1 TS2,F1HBG,,0,BM
+208501,F5ZJH,NANTES,Pays de la Loire,France,430.35000,1,9.400,PEER,TS1 TS2,F5BCB,,0,DMR-plus
208617,F1ZIS,LA ROCHELLE,Aquitaine,France,430.40000,1,9.400,Peer,TS1 TS2,F1UGZ,,0,BM
-208766,F5ZJA,Pic Neulos,Languedoc-Roussillon,France,439.82500,1,-9.400,PEER,TS1 TS2,F8BSY,,0,DMR-plus
-208799,F5ZJT,Perpignan,Languedoc-Roussillon,France,439.95000,1,-9.4,PEER,TS1 TS2,F8BSY,,0,BM
+208766,F5ZJA,Pic Neulos,Languedoc-Roussillon,France,439.82500,1,-9.400,PEER,TS1 TS2,F8BSY,,0,BM
+208799,F5ZJT,Perpignan,Languedoc-Roussillon,France,439.95000,1,-9.400,PEER,TS1 TS2,F8BSY,,0,BM
208829,F5ZJK,Relais Dstar du Bout,Brittany,France,439.35000,1,-7.600,Peer,TS1 TS2,F8FKD,,0,None
-208835,F1ZHH,DINARD,Brittany,France,430.03750,1,9.4,Peer,TS1 TS2,F1TZO,,0,Motorola
+208835,F1ZHH,DINARD,Brittany,France,430.03750,1,9.4,Peer,TS1 TS2,F1TZO,,0,DMR-plus
+208849,F1ZJT,Laz,Brittany,France,439.50000,1,-9.400,,,F1NNI,,0,BrandMeister
208900,F1ZCY,Auneuil,Oise,France,430.27500,1,9.4,PEER,TS1 TS2,F1PRY,,0,DMR-plus
208902,F4EWI,LES FOURGS,All Others,France,439.95000,1,9.400,PEER,TS1 TS2,F4EWI,,0,Hytera
-208904,F1ZIY,SAINTE GENEVIEVE ,All Others ,France ,430.06250,1,9.4,PEER,TS1 TS2,F1SFY,,0,BM
+208903,F1ZDN,JO10VE,All Others,France,438.17500,1,-1.600,,,F1IWQ,,0,Motorola
+208904,F1ZIY,SAINTE GENEVIEVE,All Others,France,430.06250,1,9.4,PEER,TS1 TS2,F1SFY,,0,DMR-plus
208905,F1ZTK,LILLE,All Others,France,430.07500,1,1.600,Peer,TS1 TS2,F1FPC,,0,BM
+208910,F1ZHY,Montmarault,All Others,France,430.40000,1,9.400,,,F4ARJ,,0,BrandMeister
208917,F1ZCY,Auneuil,All Others,France,430.25000,1,9.400,PEER,TS1 TS2,F1PRY,,0,DMRF
208918,F1ZIE,Saint-Palais,All Others,France,430.10000,1,9.400,PEER,TS1 TS2,F1ZIE,,0,DMRF
208919,F1ZGY,BOUCHAIN ( 59 ),All Others,France,145.78750,1,-0.600,PEER,TS1 TS2,F1MIJ,,0,DMR-France
-208922,F1ZHT,Mesnil sur bulles,All Others,France,430.58750,1,9.4,PEER,TS1 TS2,F4FSD,,0,DMR-plus
+208921,F1ZJP,CHENOVE,All Others,France,430.58750,1,-9.400,,,F4ALM,,0,BrandMeister
+208922,F1ZHT,Mesnil sur bulles,All Others,France,430.58750,15,9.400,PEER,TS1 TS2,F4FSD,,0,BM
+208939,F1ZJR,MOIRANS-EN-MONTAGNE,All Others,France,430.40000,1,9.400,,,F4ALM,,0,BrandMeister
208953,F1ZHJ,TOURS,All Others,France,439.90000,1,-9.400,Peer,TS1 TS2,F1GXY,,0,None
-208954,F1ZET,Nancy (54),All Others,France,439.40000,1,-7.6,PEER,TS1 TS2,F4GEN,,0,DMR-plus
+208954,F1ZET,Nancy (54),All Others,France,439.40000,1,-7.600,PEER,TS1 TS2,F4GEN,,0,BM
208955,F1ZGK,Nancy (54),All Others,France,439.35000,1,-7.600,Peer,TS1 TS2,F4GEN,,0,None
208957,F1ZZF,Thionville,All Others,France,439.70000,1,0.000,Peer,TS1 TS2,F8ARO,,0,None
208959,F1ZBE,Valenciennes,All Others,France,433.02500,1,-1.600,PEER,TS1 TS2,F1MIJ,,0,Motorola
-208962,F1ZVV,Wimereux,All Others,France,430.35000,1,9.4,PEER,TS1 TS2,F1CWQ,,0,DMR-plus
+208962,F1ZVV,Wimereux,All Others,France,430.35000,1,9.400,PEER,TS1 TS2,F1CWQ,,0,BM
208966,F4GEN,Villers les Nancy,All Others,France,433.65000,1,0.000,Peer,TS1 TS2,F4GEN,,0,None
-208990,F1ZIF,Pontarlier,All Others,France,439.90000,1,-9.400,PEER,TS1 TS2,F4EWI,,0,DMRF
+208990,F1ZIF,Pontarlier,All Others,France,439.90000,1,-9.400,PEER,TS1 TS2,F4EWI,,0,BM
214100,EB1TK,Gijon,Asturias,Spain,145.78750,1,-0.6,Master,TS1 TS2,EB1TK,,0,HYTERA
-214101,ED1ZAE,Gijon,Principado de Asturi,Spain,438.30000,1,-7.6,PEER,TS1 TS2,EB1TK,,0,BM
-214102,ED1ZAS,Gijon,Principado de Asturias,Spain,438.22500,1,-7.600,PEER,TS1 TS2,EB1TK,,0,
-214104,ED1ZAU,Monte Naranco Oviedo,Principado de Asturi,Spain,438.50000,1,-7.600,PEER,TS1 TS2,EB1TK,,0,None
-214105,ED1ZAW,LEON ,Castile and Len ,Spain ,438.40000,1,-7.600,Peer,TS1 TS2,EA1YC,,0,BM
-214106,ED1ZAK,Repetidor Dstar Burg,Castilla y Leon ,Spain ,438.65000,1,7.600,Peer,TS1 TS2,EA1IDU,,0,BrandMeister
-214112,ED1ZAR,Monte Fontardion,Galicia,Spain,438.50000,1,7.600,PEER,TS1 TS2,EA1RKF,,0,None
-214201,ED2ZAD,Monte Sollube,Pais Vasco,Spain,438.22500,1,-7.6,PEER,TS1 TS2,EA2IP,,0,DMR-plus
+214101,ED1ZAE,Gijon,Principado de Asturi,Spain,438.30000,1,-7.600,PEER,TS1 TS2,EB1TK,,0,DMR-plus
+214102,ED1ZAS,Pico San Martín, Gi,,Spain,438.22500,1,-7.600,PEER,TS1 TS2,EB1TK,,0,BM
+214103,ED1YBQ,Bejar,Castilla y Leuan,Spain,438.65000,1,-7.600,PEER,TS1 TS2,EA1EZ,,0,None
+214104,ED1ZAU,Monte Naranco Oviedo,Principado de Asturi,Spain,438.50000,1,-7.600,PEER,TS1 TS2,EB1TK,,0,BM
+214105,ED1ZAW,LEON,Castile and Len,Spain,438.40000,1,-7.600,Peer,TS1 TS2,EA1YC,,0,BM
+214106,ED1ZAK,Repetidor Dstar Burg,Castilla y Leon,Spain,438.65000,1,7.600,Peer,TS1 TS2,EA1IDU,,0,BrandMeister
+214110,ED1YBK,Ourense,Galicia,Spain,438.50000,1,-7.600,,,EA1CI,,0,BrandMeister
+214111,ED1YBY,IN62IG,Galicia,Spain,438.20000,1,-7.600,PEER,TS1 TS2,EA1CI,,0,BrandMeister
+214112,ED1ZAR,Monte Fontardion,Galicia,Spain,438.50000,1,-7.600,PEER,TS1 TS2,EA1RKF,,0,BM
+214120,ED1ZAS,Gijon,Principado de Asturi,Spain,438.30000,1,-7.600,,,EB1TK,,0,BrandMeister
+214201,ED2ZAD,Monte Sollube,Pais Vasco,Spain,438.22500,1,-7.600,PEER,TS1 TS2,EA2IP,,0,BM
214202,ED2ZAC,BILBAO,Basque Country,Spain,438.20000,1,-7.6,PEER,TS1 TS2,EA2IP,,0,DMR-plus
+214203,ED2YAO,Bilbao,Basque Country,Spain,438.95000,1,-7.600,PEER,TS1 TS2,EB2DJB,,0,None
214204,ED2YAR,La Higa de Monreal,Navarra,Spain,438.30000,1,-7.600,PEER,TS1 TS2,EA2DDW,,0,BM
214210,ED2YAA,Laudio,Basque Country,Spain,439.97500,1,0.000,PEER,TS1 TS2,EB2EMZ,,0,None
-214214,ED2ZAE,Vitoria-Gasteiz,Basque Country,Spain,438.67500,1,-7.6,PEER,TS1 TS2,EA2CQ,,0,DMR-plus
-214300,EA3DKP,Roses,,Spain,439.00000,1,-7.600,PEER,TS1 TS2,EA3DKP,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 214 = Spain 1
Time Slot #1 - Group Call 9 = Local 1

Time Slot #2 - Group Call 214 = Spain 2
Time Slot #2 - Group Call 8 = Regional > DF0MOT+DB0AFZ in Germany
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio.


Contact: Ricardo N. Solis, EA3DKP
Email: ea3dkp@yahoo.com,1,DMR-MARC
+214213,ED2YAQ,Urdingain,Massachusetts,Spain,438.45000,1,-7.600,,,EA2CQ,,0,BrandMeister
+214214,ED2ZAE,Vitoria-Gasteiz,Basque Country,Spain,438.50000,1,-7.600,PEER,TS1 TS2,EA2CQ,,0,BM
+214215,ED2ZAF,Arnotegi - Bilbao,Pais Vasco,Spain,438.52500,1,-7.600,,,EB2DJB,,0,BM
+214222,ED2YAV,Bilbao,Basque Country,Spain,439.15000,1,-7.600,,,EA2IP,,0,BrandMeister
+214300,EA3DKP,Roses,,Spain,439.00000,1,-7.600,PEER,TS1 TS2,EA3DKP,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 214 = Spain 1
Time Slot #1 - Group Call 9 = Local 1

Time Slot #2 - Group Call 214 = Spain 2
Time Slot #2 - Group Call 8 = Regional > DF0MOT+DB0AFZ in Germany
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio.


Contact: Ricardo N. Solis, EA3DKP
Email: ea3dkp@yahoo.com,1,DMR-DL
214301,ED3ZAQ,Castellar del Valles,Cataluna,Spain,438.52500,1,-7.600,PEER,TS1 TS2,EA3ABN,,0,BM
214302,ED3YAC,Castellar del Valles,Cataluna,Spain,438.80000,1,-7.6,PEER,TS1 TS2,EA3ABN,,0,DMR-plus
214303,ED3ZAK,Barcelona Tibidabo,Cataluna,Spain,438.41250,1,-7.600,PEER,TS1 TS2,EA3ABN,,0,BM
214304,ED3ZAN,Rocacorba (Girona),Cataluna,Spain,438.31250,1,-7.600,Peer,TS1 TS2,EA3ABN,,0,DMR-plus
-214305,ED3ZAH,Barcelona,Cataluna,Spain,439.41250,1,-7.6,PEER,TS1 TS2,EA3IK,,0,DMR-plus
+214305,ED3ZAH,Barcelona,Cataluna,Spain,439.00000,1,-7.600,PEER,TS1 TS2,EA3IK,,0,DMR-plus
214306,ED3YAI,GIRONA,Cataluna,Spain,439.37500,1,-7.600,PEER,TS1 TS2,EA3IK,,0,DMR-plus
214307,ED3YAY,Lleida,Cataluna,Spain,439.17500,1,-7.600,PEER,TS1 TS2,EA3HKB,,0,Hytera
-214308,ED3ZAG,Barcelona,Cataluna,Spain,438.31250,1,-7.6,PEER,TS1 TS2,EA3ABN,,0,BM
+214308,ED3ZAG,Barcelona,Cataluna,Spain,438.31250,1,-7.6,PEER,TS1 TS2,EA3ABN,,0,DMR-plus
+214309,ED3YAK,Montjuic - Barcelona,Cataluna,Spain,438.36250,1,-7.600,PEER,TS1 TS2,EA3FRB,,0,DMR-plus
214310,ED3YAH,Caro,Cataluna,Spain,439.27500,1,-7.600,PEER,TS1 TS2,EB3TC,,0,Hytera
214311,ED3YAM,Collsuspina,Cataluna,Spain,438.77500,1,-7.600,PEER,TS1 TS2,EB3TC,,0,Hytera
-214401,ED4ZAC,In60xa ,excluding Albacete ,Spain ,438.30000,1,-7.600,PEER,TS1 TS2,EA4HL,,0,BM
-214402,ED4ZAD,CUENCA ,excluding Albacete ,Spain ,438.42500,1,-7.600,PEER,TS1 TS2,EA4XA,,0,BM
-214501,ED5ZAH,Chinchilla,Castile-La Mancha,Spain,438.50000,1,-7.600,PEER,TS1 TS2,EA5IJC,,0,None
+214312,ED3ZAA,Montseny,Cataluna,Spain,438.20000,1,-7.600,,,EA3GFS,,0,BrandMeister
+214314,ED3ZAR,Almoster-Tarragona,Cataluna,Spain,438.45000,1,-7.6,,,EA3ES,,0,DMR-plus
+214319,ED3YAN,BADALONA,Cataluna,Spain,438.46250,1,-7.600,,,EB3GHN,,0,BrandMeister
+214333,ED3YAB,Montserrat - BCN,Cataluna,Spain,439.41250,1,-7.6,PEER,TS1 TS2,EA3IK,,0,DMR-plus
+214401,ED4ZAC,In60xa,excluding Albacete,Spain,438.30000,1,-7.600,PEER,TS1 TS2,EA4HL,,0,BM
+214402,ED4ZAD,CUENCA,excluding Albacete,Spain,438.42500,1,-7.600,PEER,TS1 TS2,EA4XA,,0,BM
+214403,ED4ZAC,In60xa,excluding Albacete,Spain,438.67500,8,-7.600,PEER,TS1 TS2,EA4HL,,0,Hytera
+214404,ED4YAO,Plasencia,excluding Albacete,Spain,145.62500,1,0.600,,,EA1EZ,,0,BrandMeister
+214501,ED5ZAH,Chinchilla,Castile-La Mancha,Spain,438.50000,1,-7.600,PEER,TS1 TS2,EA5IJC,,0,BM
214502,ED5ZAE,MURCIA-CARRASCOY,Regiuan de Murcia,Spain,438.30000,1,-7.600,PEER,TS1 TS2,EA5GVK,,0,Hytera
-214503,ED5ZAJ,Alicante ,Valencian Community ,Spain ,438.90000,1,7.600,PEER,TS1 TS2,EA5IHI,,0,BrandMeister
-214555,ED5ZAD,Cid, Petrer Alicante,Comunidad Valenciana,Spain,439.17500,1,-7.600,PEER,TS1 TS2,EA5GF,,0,
-214701,ED7ZAJ,CCMD/Gibalbin-Cadiz ,Andalucia ,Spain ,438.30000,1,-7.6,PEER,TS1 TS2,EA7DYY,,0,DMR-plus
+214503,ED5ZAJ,Alicante,Valencian Community,Spain,438.50000,1,-7.600,PEER,TS1 TS2,EA5IHI,,0,BM
+214504,EA5ERC,Chert, Castellon,Valencian Community,Spain,438.43750,1,-7.600,,,EB3GHN,,0,BrandMeister
+214555,ED5ZAD,Cid, Petrer Alicante,Comunidad Valenciana,Spain,439.17500,1,-7.600,PEER,TS1 TS2,EA5GF,,0,BM
+214601,ED6ZAA,FELANITX - MALLORCA,Islas Baleares,Spain,430.65000,1,7.600,,,EA6QJ,,0,DMR-plus
+214602,ED6ZAB,Randa - Mallorca,Islas Baleares,Spain,438.45000,1,-7.600,,,EA6QJ,,0,BrandMeister
+214701,ED7ZAJ,CCMD/Gibalbin-Cadiz,Andalucia,Spain,438.30000,1,-7.600,PEER,TS1 TS2,EA7DYY,,0,DMR-plus
214702,ED7ZAC,Malaga,Andalucia,Spain,438.45000,1,-7.600,PEER,TS1 TS2,EA7BJ,,0,Hytera
214703,ED7YAU,CMD(S.Gibalbin),Andalucia,Spain,439.35000,1,-7.600,PEER,TS1 TS2,EA7DYY,,0,Hytera
214704,ED7ZAE,Granada,Andalucia,Spain,438.30000,1,-7.600,PEER,TS1 TS2,EA7UU,,0,BrandMeister
-214708,ED7ZAI,Sevilla ,Andalucia ,Spain ,439.00000,1,-7.600,Peer,TS1 TS2,EA7KE,,0,BrandMeister
+214705,ED7YAF,Los Reales-Estepona,Andalucia,Spain,438.87500,1,-7.600,,,EA7FQB,,0,BrandMeister
+214707,ED7ZAK,Granada,Andalucia,Spain,438.00000,1,-7.600,,,EA7JOE,,0,None
+214708,ED7ZAI,Sevilla,Andalucia,Spain,439.00000,1,-7.600,Peer,TS1 TS2,EA7KE,,0,BrandMeister
214711,ED7YAV,CERRO CEUTA (CADIZ),Andalucia,Spain,438.95000,1,-7.600,PEER,TS1 TS2,EA7DYY,,0,Hytera
-214848,ED8ZAB,Vecindario,Islas Canarias,Spain,438.46250,2,-7.600,Peer,TS1 TS2,EA8EE,,0,None
+214848,ED8ZAB,Vecindario,Islas Canarias,Spain,438.50000,1,-7.600,Peer,TS1 TS2,EA8EE,,0,BM
216000,HG5RUD,Budapest,,Hungary,438.47500,1,-7.600,,None,HA5CBW,,0,HYTERA
216001,HG7RUC,Dobogoko,,Hungary,438.32500,1,-7.6,PEER,TS1 TS2,HA3KZ,,0,DMR-plus
-216101,HG2RUE,Kabhegy,Veszprum,Hungary,438.30000,1,-7.6,PEER,TS1 TS2,HA5ZF,,0,DMR-plus
-216502,HG5RUC,Budapest,Budapest,Hungary,438.50000,1,-7.6,PEER,TS1 TS2,HA2NON,,0,DMR-plus
+216101,HG2RUE,Kabhegy,Veszprum,Hungary,438.30000,1,-7.600,PEER,TS1 TS2,HA5ZF,,0,BM
+216102,HG1RUE,Gyor,Gyor-Moson-Sopron,Hungary,438.25000,1,-7.600,,,HG2EBH,,0,BM
+216103,HG1RUD,Gyor,Gyor-Moson-Sopron,Hungary,439.25000,1,-7.600,,,HG2EBH,,0,BrandMeister
+216301,HG3RUG,Tubes,Baranya,Hungary,438.32500,1,-7.600,,,HA3KZ,,0,BM
+216502,HG5RUC,Budapest,Budapest,Hungary,438.50000,1,-7.600,PEER,TS1 TS2,HA2NON,,0,BM
216701,HG7RUC,Dobogoko,,Hungary,439.35000,1,0.000,Peer,TS1 TS2,HA3KZ,,0,HYTERA
-216702,HG7RUG,Dobogoko,Pest County,Hungary,438.52500,1,-7.6,PEER,TS1 TS2,HA3KZ,,0,DMR-plus
-216790,HG9RUE,Kis-Kohat,Borsod-Abauj-Zemplen,Hungary,438.55000,1,-7.6,PEER,TS1 TS2,HA3KZ,,0,DMR-plus
-222000,IR0DU,Rome Center,,Italy,430.96250,1,5.000,PEER,TS1 TS2,IK0YYY,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 222 = Italy 1
Time Slot #1 - Group Call 9 = Local 1

Time Slot #2 - Group Call 222 = Italy 2
Time Slot #2 - Group Call 8 = Regional
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio


Contact: Luca Ferrara, IKYYY
Email: ik0yyy@libero.it,1,DMR-Italia
-222001,IK0YYY,S.Marinella,,Italy,430.93750,1,5.000,PEER,TS1 TS2,IK0YYY,,0,DMR-Italia
-222002,IR0UEJ,Mt. San Biagio,Lazio,Italy,430.32500,1,5.000,Peer,TS1,IZ0CZW,,0,IT-DMR-Network
+216702,HG7RUG,Dobogoko,Pest County,Hungary,438.52500,1,-7.600,PEER,TS1 TS2,HA3KZ,,0,BM
+216790,HG9RUE,Kis-Kohat,Borsod-Abauj-Zemplen,Hungary,438.55000,1,-7.600,PEER,TS1 TS2,HA3KZ,,0,BM
+219001,9A0DSK,Cepelis, Petrinja,,Croatia,438.25000,1,-7.600,,,9A6NVI,,0,BrandMeister
+222000,IR0DU,Rome Center,,Italy,430.96250,1,5.000,PEER,TS1 TS2,IK0YYY,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 222 = Italy 1
Time Slot #1 - Group Call 9 = Local 1

Time Slot #2 - Group Call 222 = Italy 2
Time Slot #2 - Group Call 8 = Regional
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio


Contact: Luca Ferrara, IKYYY
Email: ik0yyy@libero.it,1,DMR-plus
+222001,IK0YYY,S.Marinella,,Italy,430.93750,1,5.000,PEER,TS1 TS2,IK0YYY,,0,DMR-plus
+222002,IR0UEJ,Mt. San Biagio,Lazio,Italy,430.42500,1,5.000,Peer,TS1,IZ0CZW,,0,BM
222003,IR0CAG,Formia,Lazio,Italy,430.15000,1,5.000,Master,TS1,IW0EBM,,0,IT-DMR-Network
-222004,IW0DSR,Rome,Lazio,Italy,430.60000,1,5.000,Peer,TS1 TS2,IW0DSR,,0,IT-DMR-Network
-222005,IR0UGN,Sutri (vt),Lazio,Italy,430.07500,1,5.000,PEER,TS1 TS2,IZ0QWM,,0,DMR-plus
+222004,IW0DSR,Rome,Lazio,Italy,430.60000,1,5.000,Peer,TS1 TS2,IW0DSR,,0,BM
+222005,IR0UGN,Sutri (vt),Lazio,Italy,430.07500,1,5.000,PEER,TS1 TS2,IZ0QWM,,0,BM
222006,IR0UCA,Scandriglia(RI),Lazio,Italy,430.40000,1,5.000,Peer,TS1 TS2,IZ0QWM,,0,Hytera
-222007,IR0CO,Rome Center,,Italy,439.93750,1,-9.4,PEER,TS1 TS2,IK0YYY,,0,DMR-Italia
+222007,IR0CO,Rome Center,,Italy,439.93750,1,-9.400,PEER,TS1 TS2,IK0YYY,,0,DMR-plus
222008,IR0UGJ,ROCCADARCE,Lazio,Italy,430.22500,1,5.000,PEER,TS1 TS2,IZ0ZIP,,0,Motorola
222009,IR0AAZ,Sutri (VT),Lazio,Italy,430.91250,1,5.000,PEER,TS1 TS2,IZ0XBM,,0,DMR-plus
-222010,IR0DR,Rome M.te Cavo,,Italy,430.98750,1,5.000,PEER,TS1 TS2,IK0YYY,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 222 = Italy 1
Time Slot #1 - Group Call 9 = Local 1

Time Slot #2 - Group Call 222 = Italy 2
Time Slot #2 - Group Call 8 = Regional
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio

Contact: Luca Ferrara, IKYYY
Email: ik0yyy@libero.it,1,DMR-Italia
+222010,IR0DR,Rome M.te Cavo,,Italy,430.98750,1,5.000,PEER,TS1 TS2,IK0YYY,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 222 = Italy 1
Time Slot #1 - Group Call 9 = Local 1

Time Slot #2 - Group Call 222 = Italy 2
Time Slot #2 - Group Call 8 = Regional
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio

Contact: Luca Ferrara, IKYYY
Email: ik0yyy@libero.it,1,DMR-plus
222011,IR0EF,Perugia,Umbria,Italy,430.01250,1,1.600,PEER,TS1 TS2,IW0QMN,,0,BM
222012,IR0UFZ,M. Orlando - Gaeta,Lazio,Italy,430.45000,1,5.000,PEER,TS1 TS2,IW0CPK,,0,BM
222013,IR0AAC,Bettona,Umbria,Italy,431.43750,1,1.600,PEER,TS1 TS2,IW0RED,,0,None
-222014,IR0UGF,Assisi,Umbria,Italy,431.43750,1,1.600,PEER,TS1 TS2,IW0RED,,0,None
-222015,IR0UAJ,Castelli Romani , ,Italy ,430.72500,1,5.000,PEER,TS1 TS2,IW0HRF,,0,BM
-222016,IR0CQ,Assisi ,Umbria ,Italy ,145.57500,1,-0.600,PEER,TS1 TS2,IW0RED,,0,None
+222014,IR0UGF,Assisi,Umbria,Italy,431.43750,1,1.600,PEER,TS1 TS2,IW0RED,,0,DMR-plus
+222015,IR0UAJ,Castelli Romani,,Italy,430.72500,1,5.000,PEER,TS1 TS2,IW0HRF,,0,BM
+222016,IR0CQ,Assisi,Umbria,Italy,145.57500,1,-0.600,PEER,TS1 TS2,IW0RED,,0,None
222017,IS0BZC,Senorbi,$cnty,Italy,430.85000,1,5.000,Peer,TS1 TS2,IS0BZC,,0,IT-DMR-Network
-222020,IK0HKA,M.te Cassino,Lazio,Italy,430.40000,1,5.000,PEER,TS1 TS2,IZ0ZIP,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 222 = Italy 1
Time Slot #1 - Group Call 9 = Local 1

Time Slot #2 - Group Call 222 = Italy 2
Time Slot #2 - Group Call 8 = Regional
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio,1,DMR-MARC
+222020,IK0HKA,M.te Cassino,Lazio,Italy,430.40000,1,5.000,PEER,TS1 TS2,IZ0ZIP,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 222 = Italy 1
Time Slot #1 - Group Call 9 = Local 1

Time Slot #2 - Group Call 222 = Italy 2
Time Slot #2 - Group Call 8 = Regional
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio,1,DMR-Italia
222022,IR0AAB,Mt. Cavo Vetta,Lazio,Italy,145.57500,1,-0.600,Peer,TS1 TS2,I0OJJ,,0,None
-222025,IR0UFF,Castelli Romani,Lazio,Italy,430.72500,1,5.000,PEER,TS1 TS2,IQ0OT,,0,DMR-plus
+222024,IR0UCY,Rocca Priora,Lazio,Italy,430.42500,1,1.600,PEER,TS1 TS2,I0NLV,,0,BrandMeister
+222025,IR0UFF,Castelli Romani,Lazio,Italy,430.72500,1,5.000,PEER,TS1 TS2,IQ0OT,,0,BM
222030,IZ0ZIP,MONTECASSINO,,Italy,430.42500,1,5.000,PEER,TS1 TS2,IZ0ZIP,,0,DMR-plus
+222034,IR0UGZ,Campocatino,Lazio,Italy,430.57500,1,1.600,PEER,TS1 TS2,I0NLV,,0,BrandMeister
222040,IR0UIB,MONTECASSINO,Lazio,Italy,430.35000,1,5.000,PEER,TS1 TS2,IZ0ZIP,,0,DMR-plus
222050,IR0UGM,M.te Cosce,Lazio,Italy,430.17500,1,1.600,PEER,TS1 TS2,IW0REF,,0,None
-222051,I0KMJ,Terni,Umbria,Italy,430.93750,1,5.000,Peer,TS1 TS2,I0KMJ,,0,Hytera
+222051,I0KMJ,Terni,Umbria,Italy,430.93750,1,5.000,Peer,TS1 TS2,I0KMJ,,0,BM
222067,IK2OVD,Genna Gonnesa,Lombardy,Italy,430.93750,1,5.000,PEER,TS1 TS2,IK2OVD,,0,Motorola
222068,IW0RQJ,Assisi,Umbria,Italy,430.42500,1,5.000,PEER,TS1 TS2,IW0RQJ,,0,DMR-plus
-222069,IR0UAS,Monte Serano (PG),Umbria,Italy,430.21250,1,5.600,Peer,TS1 TS2,IW0RED,,0,DMR-plus
+222069,IR0UAS,Monte Serano (PG),Umbria,Italy,430.21250,1,5.600,Peer,TS1 TS2,IW0RED,,0,BM
222070,IR0AY,Assisi,Umbria,Italy,431.43750,1,1.600,Peer,TS1 TS2,IW0RED,,0,None
-222090,IR0UGL,Villacidro,Sardinia,Italy,431.56250,1,1.600,Peer,TS1 TS2,IW0UIF,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 222 = Italy 1
Time Slot #1 - Group Call 9 = Local 1

Time Slot #2 - Group Call 222 = Italy 2
Time Slot #2 - Group Call 8 = Regional - IR2CM
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio



Contact: Natale, IW0UIF
Email: natale.sardo@tiscali.it,1,DMR-MARC
+222090,IR0UGL,Villacidro,Sardinia,Italy,431.56250,1,1.600,Peer,TS1 TS2,IW0UIF,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 222 = Italy 1
Time Slot #1 - Group Call 9 = Local 1

Time Slot #2 - Group Call 222 = Italy 2
Time Slot #2 - Group Call 8 = Regional - IR2CM
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio



Contact: Natale, IW0UIF
Email: natale.sardo@tiscali.it,1,BM
222092,IS0AYI,Bruncu Simioni,cnty,Italy,430.70000,1,5.000,PEER,TS1 TS2,IS0AYI,,0,Motorola
+222093,IR0UDB,Villaputzu,Sardegna,Italy,430.73750,1,5.000,PEER,TS1 TS2,IW0UQF,,0,BM
222099,IR0UGO,Ciampino (RM),Lazio,Italy,431.37500,1,1.600,PEER,TS1 TS2,IW0BEC,,0,Motorola
222100,IW1BZH,Domodossola,Piedmont,Italy,430.12500,1,1.000,Master,TS1 TS2,IW1BZH,,0,IT-DMR-Network
222101,I1HJP,Nizza Monferrato,Piedmont,Italy,430.85000,1,5.000,Peer,TS1 TS2,I1HJP,,0,IT-DMR-Network
-222102,I1YRB,Torino,Piedmont,Italy,430.96250,1,5.000,PEER,TS1 TS2,I1YRB,,0,DMR-Italia
-222103,IZ1EZN,Frabosa Soprana,,Italy,430.91250,1,5.000,PEER,TS1 TS2,IZ1EZN,,0,DMR-Italia
+222102,I1YRB,Torino,Piedmont,Italy,430.96250,1,5.000,PEER,TS1 TS2,I1YRB,,0,DMR-plus
+222103,IZ1EZN,Frabosa Soprana,,Italy,430.98750,1,5.000,PEER,TS1 TS2,IZ1EZN,,0,DMR-Italia
222105,IR1UBR,Aquila,Piemonte,Italy,430.52500,1,5.000,Peer,TS1 TS2,IK1JNS,,0,None
222106,IR1UHC,Monte Fasce,Liguria,Italy,430.45000,1,5.000,Peer,TS1 TS2,IZ1MLT,,0,None
-222107,IR1DA,Genova,Liguria,Italy,430.92500,1,5.000,PEER,TS1 TS2,IZ1HIQ,,0,BM
-222108,IW1PPB,Loano (SV),Liguria,Italy,430.95000,1,5.000,Peer,TS1 TS2,IW1PPB,,0,Motorola
-222109,IR1UHO,Poggio - Sanremo,Pennsylvania,Italy,430.13750,1,1.600,PEER,TS1 TS2,IK1MVX,,0,BM
+222107,IR1DA,Genova,Liguria,Italy,430.90000,1,5.000,PEER,TS1 TS2,IZ1HIQ,,0,BM
+222108,IW1PPB,Loano (SV),Liguria,Italy,430.95000,1,5.000,Peer,TS1 TS2,IW1PPB,,0,DMR-plus
+222109,IR1UHO,Poggio - Sanremo,Pennsylvania,Italy,431.05000,1,2.000,PEER,TS1 TS2,IK1MVX,,0,BM
222110,IK1JTD,Mongardino,Liguria,Italy,430.96250,1,5.000,PEER,TS1 TS2,IK1JTD,,0,DMR-Italia
-222111,IX1VKK,Sarre,Aosta,Italy,430.30000,1,5.000,Peer,TS1 TS2,IX1VKK,,0,IT-DMR-Network
-222115,IR1UGE,Mt.Grande, Carpasio ,Liguria ,Italy ,430.28750,1,1.600,PEER,TS1 TS2,IK1MVX,,0,BrandMeister
-222118,IR1UDT,Rivoli,Piedmont,Italy,430.50000,1,5.000,PEER,TS1 TS2,IK1JNS,,0,BrandMeister
+222111,IX1VKK,Sarre,Aosta,Italy,430.30000,1,5.000,Peer,TS1 TS2,IX1VKK,,0,BM
+222112,IR1UBY,Casarza ligure,Liguria,Italy,430.60000,1,5.000,PEER,TS1 TS2,IZ1WIY,,0,None
+222113,IR1UB,Mt. Bignone, Sanremo,Liguria,Italy,430.05000,1,1.600,PEER,TS1 TS2,IK1MVX,,0,BM
+222114,IR1UHT,CASTIGLIONE CHIAVARE,Liguria,Italy,430.92500,1,5.000,PEER,TS1 TS2,IW1RIM,,0,None
+222115,IR1UGE,Mt.Grande, Carpasio,Liguria,Italy,430.28750,1,1.600,PEER,TS1 TS2,IK1MVX,,0,BM
+222116,IR1DT,Castellamonte,Piedmont,Italy,145.76200,1,-0.600,PEER,TS1 TS2,IK1BQD,,0,None
+222117,IR1UIO,Castellamonte,Piemonte,Italy,430.61250,1,5.000,PEER,TS1 TS2,IK1BQD,,0,None
+222118,IR1UDT,Rivoli,Piedmont,Italy,430.50000,1,5.000,PEER,TS1 TS2,IK1JNS,,0,DMR-plus
+222119,IR1UIU,CASTELLAMONTE,Piemonte,Italy,435.61250,1,-5.000,PEER,TS1 TS2,IK1BQD,,0,None
222120,IR1UIQ,Monte Mottarone,Piedmont,Italy,430.58750,1,5.000,Peer,TS1 TS2,IW1BZH,,0,Motorola
222121,IR1UIP,Domodossola,Piemonte,Italy,430.12500,1,1.600,Peer,TS1 TS2,IW1BZH,,0,Motorola
222122,IR1DF,Tigullio,Liguria,Italy,430.96250,1,5.000,PEER,TS1 TS2,IK1WHN,,0,None
222123,IR1CT,Levanto,Liguria,Italy,430.92500,1,5.000,PEER,TS1 TS2,IK1YPD,,0,None
-222137,IZ1HIQ,Genova,Liguria,Italy,430.92500,1,5.000,PEER,TS1 TS2,IZ1HIQ,,0,BM
-222200,IR2CM,Mt.Canto/Bergamo,,Italy,145.57500,0,-0.600,Peer,TS1 TS2,IW2DCK,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 222 = Italy 1
Time Slot #1 - Group Call 9 = Local 1

Time Slot #2 - Group Call 222 = Italy 2
Time Slot #2 - Group Call 8 = Regional - IRUGL
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio



Contact: Germano, IW2DCK
Email: iw2dck@yahoo.it,1,DMR-MARC
+222124,IR1UHD,Sanremo,Liguria,Italy,430.93750,1,5.000,PEER,TS1 TS2,IK1MVX,,0,BM
+222137,IZ1HIQ,Genova,Liguria,Italy,430.90000,1,5.000,PEER,TS1 TS2,IZ1HIQ,,0,BM
+222200,IR2CM,Mt.Canto/Bergamo,,Italy,431.41250,1,1.600,Peer,TS1 TS2,IW2DCK,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 222 = Italy 1
Time Slot #1 - Group Call 9 = Local 1

Time Slot #2 - Group Call 222 = Italy 2
Time Slot #2 - Group Call 8 = Regional - IRUGL
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio



Contact: Germano, IW2DCK
Email: iw2dck@yahoo.it,1,BM
222201,IR2CT,Mt. Valcava,Lombardy,Italy,145.57500,1,-0.600,Peer,TS1,IZ2JGB,,0,DMR-CISARNET
222202,IR2CO,Campo dei Fiori,Lombardy,Italy,430.93750,1,5.000,PEER,TS1 TS2,I2HUM,,0,DMR-Italia
-222203,IR2UFH,Gambolo,,Italy,430.13750,1,5.000,PEER,TS1 TS2,IK2XYP,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 222 = Italy 1
Time Slot #1 - Group Call 9 = Local 1
Time Slot #2 - Group Call 222 = Italy 2
Time Slot #2 - Group Call 8 = Regional
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio

Contact: Armando Accardo , IK2XYP
Email: ik2xyp@ik2xyp.it,1,DMR-MARC
-222204,IR2UDS,Mt. Penice,Lombardy,Italy,431.37500,1,1.600,Master,TS1 TS2,IW2MIL,,0,IT-DMR-Network
-222205,IR2UDM,Valcava,Lombardy,Italy,144.62500,1,1.362,Peer,TS1 TS2,IW2DCK,,0,Motorola
-222206,IR2UFO,Sulzano ,Lombardy ,Italy ,430.35000,1,5.500,PEER,TS1 TS2,IW2KPM,,0,BrandMeister
+222203,IR2UFH,Gambolo,,Italy,430.13750,1,5.000,PEER,TS1 TS2,IK2XYP,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 222 = Italy 1
Time Slot #1 - Group Call 9 = Local 1
Time Slot #2 - Group Call 222 = Italy 2
Time Slot #2 - Group Call 8 = Regional
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio

Contact: Armando Accardo , IK2XYP
Email: ik2xyp@ik2xyp.it,1,IT-DMR-Network
+222204,IR2UDS,Mt. Penice,Lombardy,Italy,431.37500,1,1.600,Master,TS1 TS2,IW2MIL,,0,BM
+222205,IR2UDM,Valcava,Lombardy,Italy,144.62500,1,1.363,Peer,TS1 TS2,IW2DCK,,0,BM
+222206,IR2UFO,Sulzano,Lombardy,Italy,430.35000,1,5.500,PEER,TS1 TS2,IW2KPM,,0,BM
222210,IW2JXY,Vedano Olona (Va),Lombardy,Italy,145.63750,1,-0.600,PEER,TS1 TS2,IW2JXY,,0,DMR-ITALIA
-222215,IR2CL,Gravedona ed Uniti,Lombardy,Italy,145.63750,1,-0.600,PEER,TS1 TS2,IK2ZLJ,,0,Motorola
+222215,IR2CL,Gravedona ed Uniti,Lombardy,Italy,430.06250,1,5.000,PEER,TS1 TS2,IK2ZLJ,,0,BM
222216,IR2UGK,Gravedona ed Uniti,Lombardy,Italy,430.18750,1,1.600,Peer,TS1 TS2,IK2ZLJ,,0,Motorola
-222260,IZ2FTR,Monte Quarone,Lombardy,Italy,145.58750,1,-0.600,PEER,TS1 TS2,IZ2FTR,,0,IT-DMR-Network
+222260,IZ2FTR,Monte Quarone,Lombardy,Italy,145.58600,1,-0.599,PEER,TS1 TS2,IZ2FTR,,0,BM
222267,IK2OVD,VENEGONO SUPERIORE,Lombardy,Italy,145.77500,1,-0.600,PEER,TS1 TS2,IK2OVD,,0,DMR-Italia
-222300,IR3UN,M.te Paganella,Trentino-Alto Adige/,Italy,430.96250,1,5.000,PEER,TS1 TS2,IW3BYL,,0,DMR-Italia
+222300,IR3UN,M.te Paganella,Trentino-Alto Adige/,Italy,430.96250,1,5.000,PEER,TS1 TS2,IW3BYL,,0,BM
222301,IK3HHG,Col Visentin,Veneto,Italy,430.70000,1,5.000,Peer,TS1 TS2,IK3HHG,,0,DMR-CISARNET
-222303,IR3UDD,Monte Cesen,Veneto,Italy,430.70000,1,5.000,Peer,TS1 TS2,IW3IBG,,0,Motorola
-222304,IW3BTS,M.te Penegal,Tennessee,Italy,430.98750,1,5.000,PEER,TS1 TS2,IW3BTS,,0,DMR-Italia
-222305,IN3CBN,Polsa di Brentonico,Trentino-Alto Adige,Italy,430.93750,1,5.000,Peer,TS1 TS2,IN3CBN,,0,Motorola
+222303,IR3UDD,Monte Cesen,Veneto,Italy,430.70000,1,5.000,Peer,TS1 TS2,IW3IBG,,0,BM
+222304,IW3BTS,M.te Penegal,Tennessee,Italy,430.98750,1,5.000,PEER,TS1 TS2,IW3BTS,,0,BM
+222305,IN3CBN,Polsa di Brentonico,Trentino-Alto Adige,Italy,430.93750,1,5.000,Peer,TS1 TS2,IN3CBN,,0,BM
+222306,IW3BTS,PLAN DE CORONES,Tennessee,Italy,430.92500,1,5.000,PEER,TS1 TS2,IW3BUA,,0,BM
+222307,IN3ELZ,Val di Fassa,Trentino-Alto Adige,Italy,430.92500,1,5.000,PEER,TS1 TS2,IW3BYL,,0,BrandMeister
222308,IR3UGT,Monte Ricco (PD),Veneto,Italy,430.85000,1,5.000,Peer,TS1 TS2,IZ3CLG,,0,BM
-222310,IR3DB,Peschiera del Garda,Veneto,Italy,145.57500,1,-0.600,Peer,TS1 TS2,IK3ITU,,0,BM
-222311,IZ3VBY,Col Visentin,Veneto,Italy,430.98750,1,5.000,PEER,TS1 TS2,IZ3VBY,,0,Motorola
+222310,IR3DB,Peschiera del Garda,Veneto,Italy,145.79350,1,-0.600,Peer,TS1 TS2,IK3ITU,,0,BM
+222311,IZ3VBY,Col Visentin,Veneto,Italy,430.98750,2,5.000,PEER,TS1 TS2,IZ3VBY,,0,BM
222312,IR3UHL,Peschiera del Garda,Veneto,Italy,430.72500,1,5.000,Peer,TS1 TS2,IZ3CLG,,0,Hytera
222315,IR3UGZ,Chioggia Venice,Veneto,Italy,430.87500,1,5.000,Peer,TS1 TS2,IZ3CLG,,0,Hytera
-222337,IQ3VO,Verona,Veneto,Italy,430.90000,1,5.000,Peer,TS1 TS2,IZ3ATU,,0,DMR-plus
-222374,IW3BTS,M.te Plose,Tennessee,Italy,430.91250,1,5.000,Peer,TS1 TS2,IW3BTS,,0,Motorola
+222337,IQ3VO,Verona,Veneto,Italy,430.90000,1,5.000,Peer,TS1 TS2,IZ3ATU,,0,BM
+222374,IW3BTS,M.te Plose,Tennessee,Italy,430.91250,1,5.000,Peer,TS1 TS2,IW3BTS,,0,BM
222377,IR3UDX,Polsa di Brentonico,Trentino-Alto Adige,Italy,430.93750,1,5.000,Peer,TS1 TS2,IN3CBN,,0,Motorola
-222393,IQ3DD,Monte Rite 2183 m,,Italy,431.46250,1,1.600,PEER,TS1 TS2,IZ3ZUJ,,0,
+222393,IQ3DD,Monte Rite 2183 m,,Italy,431.46250,1,1.600,PEER,TS1 TS2,IZ3ZUJ,,0,BM
222399,IQ3ZB,Zero Branco TV,Veneto,Italy,430.70000,1,5.000,PEER,TS1 TS2,IW3IBG,,0,None
-222400,IR4UX,Mt. Cimone,Emilia Romagna,Italy,430.13750,1,5.000,Master,TS1 TS2,IK4UPB,,0,IT-DMR-Network
+222400,IR4UX,Mt. Cimone,Emilia Romagna,Italy,430.13750,1,5.000,Master,TS1 TS2,IK4UPB,,0,BM
222401,IR4LM,Monte Cimone,Emilia-Romagna,Italy,145.76250,1,-0.600,PEER,TS1 TS2,IK4UPB,,0,IT-DMR-Network
222402,IR4MO,Mt.Cimone (MO),Emilia-Romagna,Italy,431.47500,1,1.600,Peer,TS1 TS2,IK4UPB,,0,Hytera
222403,IR4UCJ,Monte Cavallo - Cese,Emilia-Romagna,Italy,431.41250,1,1.600,PEER,TS1 TS2,IW4BPO,,0,BrandMeister
-222410,IR4UBK,Montefiore Conca RN,Emilia-Romagna,Italy,430.20000,1,1.600,PEER,TS1 TS2,IZ4ISN,,0,DMR-Italia
-222500,IR5UP,Pisa,Tuscany,Italy,430.60000,1,5.000,Master,TS1 TS2,IW5EDX,,0,IT-DMR-Network
-222501,IK5XMK,Sesto Fiorentino,Tuscany,Italy,430.18750,1,1.600,Peer,TS1 TS2,IK5XMK,,0,DMR-plus
+222410,IR4UBK,Montefiore Conca RN,Emilia-Romagna,Italy,430.20000,1,1.6,PEER,TS1 TS2,IZ4ISN,,0,DMR-plus
+222411,IR4UBW,Monte Falco-Campigna,Emilia-Romagna,Italy,430.91250,1,5.000,PEER,TS1 TS2,IZ4YMS,,0,DMR-plus
+222420,IR4UCK,Nibbiano (PC),Emilia-Romagna,Italy,430.53750,1,5.000,PEER,TS1 TS2,IW4BSG,,0,BrandMeister
+222444,IR4S,Monte Canate,Emilia-Romagna,Italy,430.62500,1,4.413,PEER,TS1 TS2,IW4DAT,,0,BM
+222500,IR5UP,Pisa,Tuscany,Italy,430.57500,1,5.000,Master,TS1 TS2,IW5EDX,,0,BM
+222501,IK5XMK,Sesto Fiorentino,Tuscany,Italy,430.18750,1,1.600,Peer,TS1 TS2,IK5XMK,,0,BM
222502,IK5BNG,Marina di Massa,Tuscany,Italy,430.57500,1,5.000,Peer,TS1 TS2,IK5BNG,,0,BM
222503,IR5UCU,Siena,Tuscany,Italy,430.28750,1,1.600,PEER,TS1 TS2,IW5CWB,,0,None
222504,IR5UCL,Montecarlo,Tuscany,Italy,431.56250,1,1.600,PEER,TS1 TS2,I5NOD,,0,Hytera
-222600,IR6UCU,Silvi,Teramo,Italy,430.33750,1,5.000,Peer,TS1 TS2,IK6PUO,,0,IT-DMR-Network
-222601,IR6UCX,Ortona (CH) - Italy,Abruzzo,Italy,430.23750,1,5.000,PEER,TS1 TS2,IZ6FGP,,0,
-222602,IR6UCD,Monte Pallano (CH),Abruzzo,Italy,430.13750,1,1.600,PEER,TS1 TS2,IZ6FGP,,0,Motorola
+222505,IR5UDK,Monte Cascetto (Lu),Tuscany,Italy,430.62500,1,5.000,PEER,TS1 TS2,I5NOD,,0,BM
+222600,IR6UCU,Silvi,Teramo,Italy,430.33750,1,5.000,Peer,TS1 TS2,IK6PUO,,0,BM
+222601,IR6UCX,Ortona (CH) - Italy,Abruzzo,Italy,430.23750,1,5.000,PEER,TS1 TS2,IZ6FGP,,0,BM
+222602,IR6UCD,Monte Pallano (CH),Abruzzo,Italy,430.13750,1,1.600,PEER,TS1 TS2,IZ6FGP,,0,BM
+222603,IR6UDM,Monte Majelletta,Kansas,Italy,430.38750,1,5.000,PEER,TS1 TS2,IK6TTE,,0,BM
222604,IR6UF,JN62RD,Abruzzo,Italy,430.17500,1,1.600,PEER,TS1 TS2,IK6JDQ,,0,Hytera
-222605,IR6UDA,Monte Palazzolo,,Italy,430.98750,1,5.000,PEER,TS1 TS2,IZ4ISN,,0,DMR-Italia
-222610,IR6UDH,Mt. Majella,Abruzzo,Italy,430.03750,1,5.000,PEER,TS1 TS2,IZ6FGP,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 222 = Italy 1
Time Slot #1 - Group Call 9 = Local 1
Time Slot #2 - Group Call 222 = Italy 2
Time Slot #2 - Group Call 8 = Regional
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio

Contact: Mario Ranni, IZ6FGP
Email: iz6fgp@gmail.com,1,DMR-MARC
-222611,IR6UDB,Monte Pallano,Abruzzo,Italy,430.35000,1,5.000,PEER,TS1 TS2,IZ6FGP,,0,IT-DMR-Network
-222612,IR6UDE,Mt. la Selva,Abruzzo,Italy,430.35000,1,5.000,PEER,TS1 TS2,IZ6FGP,,0,IT-DMR-Network
-222613,IR6UBA,L Aquila,Abruzzo,Italy,430.06250,1,1.600,Peer,TS1 TS2,IZ6BGQ,,0,IT-DMR Network
+222605,IR6UDA,Monte Palazzolo,,Italy,430.98750,1,5.000,PEER,TS1 TS2,IZ4ISN,,0,DMR-plus
+222606,IR6UDG,Monte Midia,Abruzzo,Italy,431.57500,1,1.600,PEER,TS1 TS2,IZ6UDS,,0,BrandMeister
+222610,IR6UDH,Mt. Majella,Abruzzo,Italy,430.03750,1,5.000,PEER,TS1 TS2,IZ6FGP,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 222 = Italy 1
Time Slot #1 - Group Call 9 = Local 1
Time Slot #2 - Group Call 222 = Italy 2
Time Slot #2 - Group Call 8 = Regional
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio

Contact: Mario Ranni, IZ6FGP
Email: iz6fgp@gmail.com,1,BM
+222611,IR6UDB,Monte Pallano,Abruzzo,Italy,430.36250,1,5.000,PEER,TS1 TS2,IZ6FGP,,0,BM
+222612,IR6UDE,Mt. la Selva,Abruzzo,Italy,430.35000,2,5.000,PEER,TS1 TS2,IZ6FGP,,0,BM
+222613,IR6UBA,L Aquila,Abruzzo,Italy,430.06250,1,5.000,Peer,TS1 TS2,IZ6BGQ,,0,BM
222614,IR6UBJ,Ortona,Abruzzo,Italy,430.31250,1,5.000,PEER,TS1 TS2,IZ6FGP,,0,IT-DMR-Network
-222615,IR6UDL,VASTO NORD,Abruzzo,Italy,430.06250,1,5.000,PEER,TS1 TS2,IK6TTE,,0,IT-DMR-Network
-222616,IR6UDF,Avezzano,Abruzzo,Italy,430.27500,1,1.600,PEER,TS1 TS2,IZ6UDS,,0,IT-DMR-Network
+222615,IR6UDL,VASTO NORD,Abruzzo,Italy,430.06250,1,5.000,PEER,TS1 TS2,IK6TTE,,0,BM
+222616,IR6UDF,Avezzano,Abruzzo,Italy,430.27500,1,1.600,PEER,TS1 TS2,IZ6UDS,,0,BM
222617,IR6UBJ,Monte Fultrone,Abruzzo,Italy,430.31250,1,5.000,PEER,TS1 TS2,IZ6FGP,,0,BM
+222666,IR6UI,M La Croce,Veneto,Italy,430.95000,1,5.000,PEER,TS1 TS2,IU6DGD,,0,BrandMeister
+222676,IR6UCP,Fano,Marche,Italy,431.43750,1,1.600,PEER,TS1 TS2,IW6BFE,,0,BrandMeister
222677,IR6UJ,Fano,Marche,Italy,431.36250,1,1.600,Peer,TS1 TS2,IW6BFE,,0,None
222698,IR6UCH,M.te Patalecchia,cnty,Italy,430.32500,1,5.000,Peer,TS1 TS2,IW6MKC,,0,BM
222699,IR6UCG,Castel di Sangro AQ,Abruzzo,Italy,430.22500,1,5.000,Peer,TS1 TS2,IW6MKC,,0,BM
-222700,IR7BH,Castelnuovo d Daunia,Puglia,Italy,431.40000,1,1.600,PEER,TS1 TS2,IW7DZR,,0,DMR-plus
-222701,IR7BU,Bari,,Italy,145.58750,1,-0.600,PEER,TS1 TS2,IZ0QWM,,0,DMR-plus
-222702,IR7AZ,Montenero, Foggia,Apulia,Italy,431.53750,1,1.600,PEER,TS1 TS2,IW7DZR,,0,DMR-plus
+222700,IR7BH,Castelnuovo d Daunia,Puglia,Italy,431.40000,1,1.600,PEER,TS1 TS2,IW7DZR,,0,BM
+222701,IR7BU,Bari,,Italy,145.58750,1,-0.600,PEER,TS1 TS2,IZ0QWM,,0,BM
+222702,IR7AZ,Montenero, Foggia,Apulia,Italy,430.42500,1,5.000,PEER,TS1 TS2,IW7DZR,,0,BM
+222710,IR7UBX,BARI,Apulia,Italy,430.00000,1,5.000,PEER,TS1 TS2,IZ7OIX,,0,BrandMeister
222736,IR7UCC,Bari (BA),Puglia,Italy,430.12500,1,5.000,Peer,TS1 TS2,IZ7GLL,,0,DMR-plus
222800,IZ0ZIP,Roccamonfina,Campania,Italy,430.32500,1,5.000,PEER,TS1 TS2,IZ0ZIP,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 222 = Italy 1
Time Slot #1 - Group Call 9 = Local 1

Time Slot #2 - Group Call 222 = Italy 2
Time Slot #2 - Group Call 8 = Regional
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio


Contact: Luca Grandi, IZZTL
Email: luca@grandisub.com,1,BM
222801,IT9LRZ,Vibo Valenzia,Calabria,Italy,430.96250,1,5.000,PEER,TS1 TS2,IT9LRZ,,0,DMR-Italia
-222802,IC8EWW,Monte Epomeo Ischia,,Italy,430.05000,1,5.000,PEER,TS1 TS2,IC8EWW,,0,DMR-Italia
+222802,IC8EWW,Monte Epomeo Ischia,,Italy,430.05000,1,5.000,PEER,TS1 TS2,IC8EWW,,0,DMR-plus
222803,IU8FCQ,S. Croce Di Magliano,Molise,Italy,430.52500,1,5.000,PEER,TS1 TS2,IU8FCQ,,0,BM
222804,IR8UCV,Capua,Campania,Italy,430.02500,1,5.000,PEER,TS1 TS2,IK8TMD,,0,None
+222805,IR8UAK,Roccamonfina,Campania,Italy,431.33750,1,1.600,PEER,TS1 TS2,IW0CPK,,0,BM
222806,IR8UCE,Monte Virgo,Lazio,Italy,430.28750,1,5.000,PEER,TS1 TS2,IK8AUC,,0,None
-222810,IR8UDB,Monte Patalecchia,Toscana,Italy,435.32500,1,5.000,Peer,TS1 TS2,IZ0ZIP,,0,Motorola
-222877,IZ8QIG,Nusco,Campania,Italy,430.01250,1,5.000,Peer,TS1 TS2,IZ8QIG,,0,DMR-plus
-222899,IR8UCF,Diamante,,Italy,430.25000,1,5.000,PEER,TS1 TS2,IW0BEC,,0,DMR-Italia
-222900,IT9UUT,DEMO/TEST,,Italy,430.98750,1,5.000,PEER,TS1 TS2,IT9UUT,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 222 = Italy 1
Time Slot #1 - Group Call 9 = Local 1

Time Slot #2 - Group Call 222 = Italy 2
Time Slot #2 - Group Call 8 = Regional
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio


Contact: Salvo Santoro, IT9UUT
Email: salvosantoro@hotmail.com,1,DMR-Italia
+222810,IR8UDB,Monte Patalecchia,Toscana,Italy,430.32500,1,5.000,Peer,TS1 TS2,IZ0ZIP,,0,BM
+222877,IZ8QIG,Nusco,Campania,Italy,430.01250,1,5.000,Peer,TS1 TS2,IZ8QIG,,0,BM
+222899,IR8UCF,Diamante,,Italy,430.25000,1,5.000,PEER,TS1 TS2,IW0BEC,,0,DMR-plus
+222900,IT9UUT,DEMO/TEST,,Italy,430.98750,1,5.000,PEER,TS1 TS2,IT9UUT,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 222 = Italy 1
Time Slot #1 - Group Call 9 = Local 1

Time Slot #2 - Group Call 222 = Italy 2
Time Slot #2 - Group Call 8 = Regional
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio


Contact: Salvo Santoro, IT9UUT
Email: salvosantoro@hotmail.com,1,DMR-plus
222901,IR9UBO,Catania,Sicily,Italy,430.57500,1,5.000,Master,TS1 TS2,IT9ZON,,0,IT-DMR-Network
222902,IR9UBN,Mt. Etna,Sicily,Italy,430.60000,1,5.000,Peer,TS1 TS2,IT9ZON,,0,IT-DMR-Network
222903,IT9ZON,Catania/DEMO,Sicily,Italy,430.98750,1,5.000,Peer,TS1 TS2,IT9ZON,,0,IT-DMR-Network
-222904,IR9UBV,Ispica,Sicily,Italy,430.96250,1,5.000,PEER,TS1 TS2,IT9UUT,,0,Motorola
+222904,IR9UBV,Ispica,Sicily,Italy,439.92500,1,-9.4,PEER,TS1 TS2,IT9UUT,,0,DMR-plus
222905,IR9UNZ,Cava Giumenta (RG),Sicily,Italy,430.37500,1,5.000,PEER,TS1 TS2,IT9CGN,,0,Hytera
222906,IR9UBT,Mascalucia,Sicily,Italy,430.20000,1,5.000,,,IW9GTR,,0,BrandMeister
+222907,IW9HGZ,Catania,Sicily,Italy,430.22500,1,5.000,PEER,TS1 TS2,I9HGZ,,0,DMR-plus
222916,IR9BR,Siracusa,Sicily,Italy,430.35000,4,5.000,PEER,TS1 TS2,IT9CVO,,0,None
222918,IR9BR,Siracusa,Sicily,Italy,430.30000,4,5.000,Peer,TS1 TS2,IT9CVO,,0,Motorola
222999,IR9UX,Catania,Sicily,Italy,430.25000,1,1.600,PEER,TS1 TS2,IT9CUX,,0,DMR-ITALIA
-226300,YO3D,Bucharest,Bucharest,Romania,438.77500,1,-7.600,Master,TS1,YO3HJV,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 226 = Romnia 1
Time Slot #1 - Group Call 9 = Local 1

Time Slot #2 - Group Call 226 = Romnia 2
Time Slot #2 - Group Call 9 = Local 2

You Must Have [ARS] Disabled Within Your Radio

Coverage Map (http://dmr-marc.net/images/yo3d-coverage.jpg),1,DMR-MARC
+226201,YO2KQT,Dumbravita, Timis,Judeoul Timi,Romania,439.02500,1,-7.600,,,YO2LLQ,,0,BrandMeister
+226300,YO3D,Bucharest,Bucharest,Romania,438.77500,1,-7.600,Master,TS1,YO3HJV,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 226 = Romnia 1
Time Slot #1 - Group Call 9 = Local 1

Time Slot #2 - Group Call 226 = Romnia 2
Time Slot #2 - Group Call 9 = Local 2

You Must Have [ARS] Disabled Within Your Radio

Coverage Map (http://dmr-marc.net/images/yo3d-coverage.jpg),1,DMR-EUROPE
226601,YO6D,Brasov,Braov County,Romania,145.72500,1,-0.600,Peer,TS1 TS2,YO6HEG,,0,Motorola
-226602,YO6OFL,Targu Mures ,Mure County ,Romania ,439.80000,1,-9.4,Peer,TS1 TS2,YO6OFL,,0,BM
-226603,YO6NAM,Tampa,Brasov,Romania,145.72500,1,-0.600,Peer,TS1 TS2,YO6OSC,,0,Hytera
-226901,YO9D,Ploiesti,Prahova,Romania,439.80000,1,-9.400,Master,TS1 TS2,YO3HJV,,0,DMR-EUROPE
-228001,HB9DR,HAM-RADIO,,Switzerland,439.02500,2,-7.6,PEER,TS1 TS2,HB9SDB,,0,DMR-plus
-228101,HB9GE,Geneva/City,Geneva,Switzerland,438.67500,1,-7.600,Peer,TS1 TS2,HB9IBG,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 11 = Worldwide French

Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 21 = European French
Time Slot #1 - Group Call 228 = Switzerland 1
Time Slot #1 - Group Call 9 = Local HB9 1


Time Slot #2 - Group Call 228 = Switzerland 2
Time Slot #2 - Group Call 8 = Regional Lake Geneva French-speaking
Time Slot #2 - Group Call 9 = Local HB9 2

You Must Have [ARS] Disabled Within Your Radio.




Contact: Hipo Tournier, HB9IBG
Email: hb9ge@bluewin.ch,1,DMR-MARC
-228102,HB9GE,Meyrin,,Switzerland,438.55000,1,-7.600,PEER,TS1 TS2,HB9IBG,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 11 = Worldwide French

Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 21 = European French
Time Slot #1 - Group Call 228 = Switzerland 1
Time Slot #1 - Group Call 9 = Local HB9 1


Time Slot #2 - Group Call 228 = Switzerland 2
Time Slot #2 - Group Call 8 = Regional Lake Geneva French-speaking
Time Slot #2 - Group Call 9 = Local HB9 2

You Must Have [ARS] Disabled Within Your Radio.





Contact: Hipo Tournier, HB9IBG
Email: hb9ge@bluewin.ch,1,DMR-MARC
-228103,HB9AE,Lutry,Vaud,Switzerland,439.20000,1,-7.600,Peer,TS1 TS2,HB9DBB,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 228 = Switzerland 1
Time Slot #1 - Group Call 9 = Local HB9 1

Time Slot #2 - Group Call 228 = Switzerland 2
Time Slot #2 - Group Call 8 = Regional Lake Geneva French-speaking
Time Slot #2 - Group Call 9 = Local HB9 2
You Must Have [ARS] Disabled Within Your Radio.


Contact: Jean Michel Clerc , HB9DBB
Email: HB9DBB@uska.ch,1,DMR-MARC
+226602,YO6OFL,Targu Mures,Mure County,Romania,439.80000,1,-9.400,Peer,TS1 TS2,YO6OFL,,0,BM
+226603,YO6NAM,Tampa,Brasov,Romania,145.72500,1,-0.600,Peer,TS1 TS2,YO6OSC,,0,BM
+226901,YO9D,Ploiesti,Prahova,Romania,439.80000,1,-9.400,Master,TS1 TS2,YO3HJV,,0,BM
+228001,HB9DR,HAM-RADIO,,Switzerland,438.22500,2,-7.600,PEER,TS1 TS2,HB9SDB,,0,BM
+228101,HB9GE,Geneva/City,Geneva,Switzerland,438.67500,1,-7.600,Peer,TS1 TS2,HB9IBG,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 11 = Worldwide French

Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 21 = European French
Time Slot #1 - Group Call 228 = Switzerland 1
Time Slot #1 - Group Call 9 = Local HB9 1


Time Slot #2 - Group Call 228 = Switzerland 2
Time Slot #2 - Group Call 8 = Regional Lake Geneva French-speaking
Time Slot #2 - Group Call 9 = Local HB9 2

You Must Have [ARS] Disabled Within Your Radio.




Contact: Hipo Tournier, HB9IBG
Email: hb9ge@bluewin.ch,1,BM
+228102,HB9GE,Meyrin,,Switzerland,438.55000,1,-7.600,PEER,TS1 TS2,HB9IBG,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 11 = Worldwide French

Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 21 = European French
Time Slot #1 - Group Call 228 = Switzerland 1
Time Slot #1 - Group Call 9 = Local HB9 1


Time Slot #2 - Group Call 228 = Switzerland 2
Time Slot #2 - Group Call 8 = Regional Lake Geneva French-speaking
Time Slot #2 - Group Call 9 = Local HB9 2

You Must Have [ARS] Disabled Within Your Radio.





Contact: Hipo Tournier, HB9IBG
Email: hb9ge@bluewin.ch,1,BM
+228103,HB9AE,Lutry,Vaud,Switzerland,439.20000,1,-7.600,Peer,TS1 TS2,HB9DBB,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 228 = Switzerland 1
Time Slot #1 - Group Call 9 = Local HB9 1

Time Slot #2 - Group Call 228 = Switzerland 2
Time Slot #2 - Group Call 8 = Regional Lake Geneva French-speaking
Time Slot #2 - Group Call 9 = Local HB9 2
You Must Have [ARS] Disabled Within Your Radio.


Contact: Jean Michel Clerc , HB9DBB
Email: HB9DBB@uska.ch,1,BM
228104,HB9RD,Châtonnaye,Westschweiz-Sud,Switzerland,438.56250,1,-7.600,PEER,TS1 TS2,HB9PCF,,0,SwissDMR
-228105,HB9RAR,Morlon,,Switzerland,438.73750,1,-7.6,PEER,TS1 TS2,HB9HFF,,0,DMR-plus
+228105,HB9RAR,Morlon,,Switzerland,438.73750,1,-7.600,PEER,TS1 TS2,HB9HFF,,0,DMR-plus
228106,HB9PE,Pays-d Enhaut VD,,Switzerland,438.66250,2,-7.600,PEER,TS1 TS2,HB9FMF,,0,DMR-plus
228107,HB9PE,Pays-d Enhaut VD,Westschweiz-Sud,Switzerland,145.78750,5,-0.6,PEER,TS1 TS2,HB9FMF,,0,DMR-plus
228108,HB9RD,Chatonnaye,Westschweiz-Sud,Switzerland,145.58750,1,-0.600,PEER,TS1 TS2,HB9PCF,,0,SwissDMR
228109,HB9IAC,La Barillette 1520 M,Westschweiz-Sud,Switzerland,438.10000,1,-7.600,PEER,TS1 TS2,HB9DRX,,0,Motorola
-228110,HB9IAP,La Barillette,Westschweiz-Sud,Switzerland,438.25000,1,-7.600,PEER,TS1 TS2,HB9DRX,,0,SwissDMR
-228111,HB9VSD,Verbier / VS,Westschweiz-Sud,Switzerland,439.53750,2,-7.6,PEER,TS1 TS2,HB3YRB,,0,DMR-plus
-228112,HB9RD,Chatonnaye,Westschweiz-Sud,Switzerland,438.66250,1,-7.6,PEER,TS1 TS2,HB9PCF,,0,DMR-plus
+228110,HB9IAP,La Barillette,Westschweiz-Sud,Switzerland,438.25000,1,-7.600,PEER,TS1 TS2,HB9DRX,,0,BM
+228111,HB9VSD,Verbier / VS,Westschweiz-Sud,Switzerland,439.53750,2,-7.600,PEER,TS1 TS2,HB3YRB,,0,BM
+228112,HB9RD,Chatonnaye,Westschweiz-Sud,Switzerland,438.66250,1,-7.600,PEER,TS1 TS2,HB9PCF,,0,BM
228113,HB9PE,Pays-d Enhaut VD,Westschweiz-Sud,Switzerland,439.66250,1,-7.600,PEER,TS1 TS2,HB9FMF,,0,BM
228114,HB9RAR,Morlon,Westschweiz-Sud,Switzerland,438.73750,1,-7.600,PEER,TS1 TS2,HB9HFF,,0,Motorola
228115,HB9PE,Pays-d Enhaut VD,Westschweiz-Sud,Switzerland,438.23750,4,-7.600,PEER,TS1 TS2,HB9FMF,,0,Motorola
228116,HB9RD,Chatonnaye,Westschweiz-Sud,Switzerland,438.66250,1,-7.600,PEER,TS1 TS2,HB9PCF,,0,DMR-plus
228117,HB9GE,Genve,Westschweiz-Sud,Switzerland,438.55000,1,7.600,PEER,TS1 TS2,HB9IBG,,0,DMR-plus
-228118,HB4FL,AIGUILLE,Westschweiz-Sud,Switzerland,439.25000,1,-7.600,Peer,TS1 TS2,HB9ADJ,,0,Motorola
+228118,HB4FL,AIGUILLE,Westschweiz-Sud,Switzerland,439.25000,2,-7.600,Peer,TS1 TS2,HB9ADJ,,0,BM
228119,HB9PE,Pays-d Enhaut VD,Westschweiz-Sud,Switzerland,438.66250,2,-7.600,PEER,TS1 TS2,HB9FMF,,0,Motorola
228120,HB9PE,Pays-d Enhaut VD,Westschweiz-Sud,Switzerland,438.66250,2,-7.600,PEER,TS1 TS2,HB9FMF,,0,Motorola
-228300,HB9BO,Interlaken,Bern,Switzerland,439.56250,1,-7.600,Master,TS1 TS2,HB9DUU,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 228 = Switzerland 1
Time Slot #1 - Group Call 9 = Local HB9 1

Time Slot #2 - Group Call 228 = Switzerland 2
Time Slot #2 - Group Call 8 = Regional
German-speaking
Time Slot #2 - Group Call 9 = Local HB9 2
You Must Have [ARS] Disabled Within Your Radio.


Contact: Christian, HB9DUU
Email: hb9duu@gmx.net,1,DMR-MARC
-228301,HB9F,Brienzer-Rothorn,Bern,Switzerland,439.50000,1,-7.600,Peer,TS1 TS2,HB9DUU,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 228 = Switzerland 1
Time Slot #1 - Group Call 9 = Local HB9 1

Time Slot #2 - Group Call 228 = Switzerland 2
Time Slot #2 - Group Call 8 = Regional
German-speaking
Time Slot #2 - Group Call 9 = Local HB9 2
You Must Have [ARS] Disabled Within Your Radio.


Contact: Christian, HB9DUU
Email: hb9duu@gmx.net,1,DMR-MARC
-228302,HB9F,Schilth./Piz Gloria,Bern und Oberwallis,Switzerland,438.21250,1,-7.600,PEER,TS1 TS2,HB9DUU,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 228 = Switzerland 1
Time Slot #1 - Group Call 9 = Local HB9 1

Time Slot #2 - Group Call 228 = Switzerland 2
Time Slot #2 - Group Call 8 = Regional
German-speaking
Time Slot #2 - Group Call 9 = Local HB9 2
You Must Have [ARS] Disabled Within Your Radio.


Contact: Christian, HB9DUU
Email: hb9duu@gmx.net,1,DMR-MARC
-228303,HB9BO,Brienzer-Rothorn,Bern,Switzerland,145.61250,1,-0.600,Peer,TS1 TS2,HB9DUU,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 228 = Switzerland 1
Time Slot #1 - Group Call 9 = Local HB9 1

Time Slot #2 - Group Call 228 = Switzerland 2
Time Slot #2 - Group Call 8 = Regional German-speaking
Time Slot #2 - Group Call 9 = Local HB9 2
You Must Have [ARS] Disabled Within Your Radio.


Contact: Christian, HB9DUU
Email: hb9duu@gmx.net,1,DMR-MARC
-228304,HB9BO,Interlaken,,Switzerland,145.68750,1,-0.600,Peer,TS1 TS2,HB9DUU,,0,SwissDMR
-228305,HB9F,Bern-City,Bern und Oberwallis,Switzerland,438.58750,1,-7.600,PEER,TS1 TS2,HB9DUU,,0,SwissDMR
+228121,HB9VSD,Verbier,Westschweiz-Sud,Switzerland,438.56250,2,-7.6,,,HB3YRB,,0,DMR-plus
+228122,HB9MM,Les Pliades/Blonay,Westschweiz-Sud,Switzerland,439.56250,1,-7.600,,,HB9MBP,,0,BM
+228123,HB9PE,Pays-d Enhaut VD,Westschweiz-Sud,Switzerland,439.66250,1,-7.600,,,HB9FMF,,0,BM
+228124,HB4FL,LA BERNEUSE,Westschweiz-Sud,Switzerland,439.57500,2,-7.600,,,HB9ADJ,,0,BM
+228125,HB9VD,Le Chasseron,Westschweiz-Sud,Switzerland,145.73750,1,-0.600,,,HB9TJU,,0,BM
+228300,HB9BO,Interlaken,Bern,Switzerland,439.56250,1,-7.600,Master,TS1 TS2,HB9DUU,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 228 = Switzerland 1
Time Slot #1 - Group Call 9 = Local HB9 1

Time Slot #2 - Group Call 228 = Switzerland 2
Time Slot #2 - Group Call 8 = Regional
German-speaking
Time Slot #2 - Group Call 9 = Local HB9 2
You Must Have [ARS] Disabled Within Your Radio.


Contact: Christian, HB9DUU
Email: hb9duu@gmx.net,1,SwissDMR
+228301,HB9F,Brienzer-Rothorn,Bern,Switzerland,0.00000,1,0.000,Peer,TS1 TS2,HB9DUU,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 228 = Switzerland 1
Time Slot #1 - Group Call 9 = Local HB9 1

Time Slot #2 - Group Call 228 = Switzerland 2
Time Slot #2 - Group Call 8 = Regional
German-speaking
Time Slot #2 - Group Call 9 = Local HB9 2
You Must Have [ARS] Disabled Within Your Radio.


Contact: Christian, HB9DUU
Email: hb9duu@gmx.net,1,BM
+228302,HB9F,Schilth./Piz Gloria,Bern und Oberwallis,Switzerland,438.21250,1,-7.600,PEER,TS1 TS2,HB9DUU,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 228 = Switzerland 1
Time Slot #1 - Group Call 9 = Local HB9 1

Time Slot #2 - Group Call 228 = Switzerland 2
Time Slot #2 - Group Call 8 = Regional
German-speaking
Time Slot #2 - Group Call 9 = Local HB9 2
You Must Have [ARS] Disabled Within Your Radio.


Contact: Christian, HB9DUU
Email: hb9duu@gmx.net,1,BM
+228303,HB9BO,Brienzer-Rothorn,Bern,Switzerland,145.61250,1,-0.600,Peer,TS1 TS2,HB9DUU,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 228 = Switzerland 1
Time Slot #1 - Group Call 9 = Local HB9 1

Time Slot #2 - Group Call 228 = Switzerland 2
Time Slot #2 - Group Call 8 = Regional German-speaking
Time Slot #2 - Group Call 9 = Local HB9 2
You Must Have [ARS] Disabled Within Your Radio.


Contact: Christian, HB9DUU
Email: hb9duu@gmx.net,1,SwissDMR
+228304,HB9BO,Interlaken,,Switzerland,145.68750,2,-0.600,Peer,TS1 TS2,HB9DUU,,0,BM
+228305,HB9F,Bern-City,Bern und Oberwallis,Switzerland,438.58750,1,-7.600,PEER,TS1 TS2,HB9DUU,,0,BM
228306,HB9BG,Belp (BE),Bern und Oberwallis,Switzerland,438.23750,1,-7.600,PEER,TS1 TS2,HB9DTZ,,0,DMR-plus
228307,HB9BG,Falkenfluh (BE),Bern und Oberwallis,Switzerland,438.32500,1,-7.600,PEER,TS1 TS2,HB9DTZ,,0,DMR-plus
228308,HB9AK,Landstuhl / BE,Bern und Oberwallis,Switzerland,438.30000,1,-7.6,PEER,TS1 TS2,HB9RNS,,0,DMR-plus
228309,HB9F,Test / Entwicklung,Bern und Oberwallis,Switzerland,439.15000,1,-7.600,Peer,TS1 TS2,HB9DUU,,0,BM
-228310,HB9DC,Muenster VS,Bern und Oberwallis,Switzerland,439.07500,3,-7.600,PEER,TS1 TS2,HB9DRX,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 228 = Switzerland 1
Time Slot #1 - Group Call 9 = Local HB9 1

Time Slot #2 - Group Call 228 = Switzerland 2
Time Slot #2 - Group Call 8 = Regional
German-speaking
Time Slot #2 - Group Call 9 = Local HB9 2
You Must Have [ARS] Disabled Within Your Radio.


Contact: Nick, HB9DRX
Email: sysop@hb9dc.ch (https://3c.web.de/mail/client/mail/mailto;jsessionid=CA4A7F9CA7C3416A0B0BA4ACBE8A6843-n3.bs51a?to=sysop%40hb9dc.ch&selection=tfol11a5e69aed60d300),1,DMR-MARC
+228310,HB9DC,Muenster VS,Bern und Oberwallis,Switzerland,438.57500,5,-7.600,PEER,TS1 TS2,HB9DRX,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 228 = Switzerland 1
Time Slot #1 - Group Call 9 = Local HB9 1

Time Slot #2 - Group Call 228 = Switzerland 2
Time Slot #2 - Group Call 8 = Regional
German-speaking
Time Slot #2 - Group Call 9 = Local HB9 2
You Must Have [ARS] Disabled Within Your Radio.


Contact: Nick, HB9DRX
Email: sysop@hb9dc.ch (https://3c.web.de/mail/client/mail/mailto;jsessionid=CA4A7F9CA7C3416A0B0BA4ACBE8A6843-n3.bs51a?to=sysop%40hb9dc.ch&selection=tfol11a5e69aed60d300),1,BM
228311,HB9F,Bern-Wankdorf,Bern und Oberwallis,Switzerland,145.68750,1,-0.600,Peer,TS1 TS2,HB9DUU,,0,BM
-228313,HB9Y,Moosalp ,Bern und Oberwallis ,Switzerland ,439.57500,3,-7.600,Peer,TS1 TS2,HB9UQC,,0,BM
-228314,HB9Y,Cry dErr ,Bern und Oberwallis ,Switzerland ,439.45000,3,-7.600,Peer,TS1 TS2,HB9UQC,,0,BM
-228315,HB9Y,Zermatt ,Bern und Oberwallis ,Switzerland ,439.45000,3,-7.600,Peer,TS1 TS2,HB9UQC,,0,BM
-228391,HB9BO,Niesen,Bern und Oberwallis,Switzerland,439.41250,1,-7.6,PEER,TS1 TS2,HB9DUU,,0,DMR-plus
-228402,HB9BA,Weissenstein,Basel,Switzerland,438.22500,1,-7.600,Peer,TS1 TS2,HB9FND,,0,SwissDMR
-228403,HB9FX,Oftringen,Basel/Solothurn,Switzerland,439.15000,1,-7.600,PEER,TS1 TS2,HB9BHU,,0,BRANDMEISTER
-228404,HB9DM,Murenberg,Basel/Solothurn,Switzerland,438.43750,1,-7.600,PEER,TS1 TS2,HB9FEF,,0,SwissDMR
+228312,HB9BO,Niesen,Bern und Oberwallis,Switzerland,439.41250,2,-7.600,,,HB9DUU,,0,BM
+228313,HB9Y,Moosalp,Bern und Oberwallis,Switzerland,439.57500,3,-7.600,Peer,TS1 TS2,HB9UQC,,0,BM
+228314,HB9Y,Cry dErr,Bern und Oberwallis,Switzerland,439.45000,3,-7.600,Peer,TS1 TS2,HB9UQC,,0,BM
+228315,HB9Y,Zermatt,Bern und Oberwallis,Switzerland,439.50000,3,-7.600,Peer,TS1 TS2,HB9UQC,,0,BM
+228316,HB9Y,Oberwald,Bern und Oberwallis,Switzerland,439.47500,3,-7.400,,,HB9UQC,,0,BrandMeister
+228391,HB9BO,Niesen,Bern und Oberwallis,Switzerland,439.41250,1,-7.600,PEER,TS1 TS2,HB9DUU,,0,DMR-plus
+228401,HB9EAS,Bruderholz,Basel/Solothurn,Switzerland,438.57500,1,-7.600,,,HB9EXT,,0,BM
+228402,HB9BA,Weissenstein,Basel,Switzerland,438.22500,1,-7.600,Peer,TS1 TS2,HB9FND,,0,BM
+228403,HB9FX,Oftringen,Basel/Solothurn,Switzerland,439.15000,1,-7.600,PEER,TS1 TS2,HB9BHU,,0,BM
+228404,HB9DM,Murenberg,Basel/Solothurn,Switzerland,438.43750,1,-7.600,PEER,TS1 TS2,HB9FEF,,0,BM
228405,HB9CSR,Basel / BS,Basel/Solothurn,Switzerland,438.55000,1,-7.6,PEER,TS1 TS2,HB9TVW,,0,DMR-plus
-228406,HB9EAS,Pfeffingen,Basel/Solothurn,Switzerland,438.35000,1,-7.600,PEER,TS1 TS2,HB9TQJ,,0,BrandMeister
+228406,HB9EAS,Pfeffingen,Basel/Solothurn,Switzerland,438.35000,1,-7.600,PEER,TS1 TS2,HB9TQJ,,0,BM
228407,HB9DR,Langendorf / SO,Basel/Solothurn,Switzerland,438.50000,3,-7.6,PEER,TS1 TS2,HB9SDB,,0,DMR-plus
228408,HB9NFB,Reinach (BL),Basel/Solothurn,Switzerland,438.37500,1,-7.600,Peer,TS1 TS2,HB9FWC,,0,None
228409,HB9DM,Langenbruck,Basel/Solothurn,Switzerland,438.38750,1,-7.600,Peer,TS1 TS2,HB9FEF,,0,BM
228501,HB9DR,Wohlen / AG,Aargau,Switzerland,438.20000,1,-7.6,PEER,TS1 TS2,HB9DQY,,0,DMR-plus
-228601,HB9DD,Mt. Generoso,Zentralschweiz und T,Switzerland,438.48750,1,-7.600,PEER,TS1 TS2,HB9ODP,,0,IT-DMR-Network
-228602,HB9DD,Mt. Tamaro,Zentralschweiz und T,Switzerland,438.46250,1,-7.600,PEER,TS1 TS2,HB9ODP,,0,IT-DMR-Network
-228604,HB9DD,V. Scura-Biasca,Zentralschweiz und T,Switzerland,438.43750,1,-7.600,PEER,TS1 TS2,HB9ODP,,0,IT-DMR-Network
-228605,HB9DD,Castel San Pietro,Zentralschweiz und T,Switzerland,439.87500,1,-9.400,PEER,TS1 TS2,HB9ODP,,0,IT-DMR-Network
-228607,HB9DD,San Bernardino,Zentralschweiz und T,Switzerland,439.30000,1,-7.600,PEER,TS1 TS2,HB9ODP,,0,IT-DMR-Network
-228608,HB9RF,Rigi-Scheidegg / SZ,Zentralschweiz und Tessin,Switzerland,439.53750,1,-7.6,PEER,TS1 TS2,HB9SDB,,0,DMR+
-228609,HB9DD,Mendrisio - Test,Zentralschweiz und T,Switzerland,438.51250,1,-7.600,Peer,TS1 TS2,HB9ODP,,0,Motorola
-228610,HB9DD,Capanna Cimetta,Zentralschweiz und T,Switzerland,438.51250,1,-7.600,Peer,TS1 TS2,HB9ODP,,0,Motorola
+228601,HB9DD,Mt. Generoso,Zentralschweiz und T,Switzerland,438.48750,1,-7.600,PEER,TS1 TS2,HB9ODP,,0,BM
+228602,HB9DD,Mt. Tamaro,Zentralschweiz und T,Switzerland,438.46250,1,-7.600,PEER,TS1 TS2,HB9ODP,,0,BM
+228603,HB9DD,Airolo,Zentralschweiz und T,Switzerland,438.48750,1,-7.600,,,HB9ODP,,0,BM
+228604,HB9DD,V. Scura-Biasca,Zentralschweiz und T,Switzerland,438.43750,1,-7.600,PEER,TS1 TS2,HB9ODP,,0,BM
+228605,HB9DD,Castel San Pietro,Zentralschweiz und T,Switzerland,438.43750,1,-7.600,PEER,TS1 TS2,HB9ODP,,0,BM
+228607,HB9DD,San Bernardino,Zentralschweiz und T,Switzerland,438.51250,1,-7.600,PEER,TS1 TS2,HB9ODP,,0,BM
+228608,HB9RF,Rigi-Scheidegg / SZ,Zentralschweiz und T,Switzerland,439.53750,1,-7.6,PEER,TS1 TS2,HB9SDB,,0,DMR-plus
+228609,HB9DD,Mendrisio - Test,Zentralschweiz und T,Switzerland,0.00000,1,0.000,Peer,TS1 TS2,HB9ODP,,0,BM
+228610,HB9DD,Capanna Cimetta,Zentralschweiz und T,Switzerland,438.51250,1,-7.600,Peer,TS1 TS2,HB9ODP,,0,BM
228611,HB9RL,Avegno (Cimetta),Zentralschweiz und T,Switzerland,438.77500,1,-7.600,Peer,TS1 TS2,HB9TUO,,0,None
228612,HB9CF,Gotthard / UR,Zentralschweiz und T,Switzerland,438.22500,3,-7.6,PEER,TS1 TS2,HB9SDB,,0,DMR-plus
228693,HB9DS,Grosswangen / LU,Zentralschweiz und T,Switzerland,439.51250,1,-7.6,PEER,TS1 TS2,HB9TRT,,0,DMR-plus
-228701,HB9DD-6,Poschiavo / GR,Graubuenden,Switzerland,438.48750,1,-7.6,PEER,TS1 TS2,HB9FPO,,0,DMR-plus
+228701,HB9DD,Poschiavo / GR,Graubuenden,Switzerland,438.48750,1,-7.6,PEER,TS1 TS2,HB9FPO,,0,DMR-plus
228702,HB9HAI,Weissfluh GR,Graubuenden,Switzerland,439.47500,7,-7.600,Peer,TS1 TS2,HB9DRX,,0,Motorola
228703,HB9DR,Chur / GR,Graubuenden,Switzerland,438.26250,1,-7.6,PEER,TS1 TS2,HB9SDB,,0,DMR-plus
228704,HB9OK,Viano / GR,Graubuenden,Switzerland,439.56250,1,-7.6,PEER,TS1 TS2,HB9FPO,,0,DMR-plus
-228706,HB9DR-8,Hinterrhein / GR,Graubuenden,Switzerland,439.56250,2,-7.6,PEER,TS1 TS2,HB9SDB,,0,DMR-plus
-228801,HB9DC,Lake of Zuerich,,Switzerland,439.07500,5,-7.600,PEER,TS1 TS2,HB9DRX,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 228 = Switzerland 1
Time Slot #1 - Group Call 9 = Local HB9 1

Time Slot #2 - Group Call 228 = Switzerland 2
Time Slot #2 - Group Call 8 = Regional
German-speaking
Time Slot #2 - Group Call 9 = Local HB9 2
You Must Have [ARS] Disabled Within Your Radio.


Contact: Nick, HB9DRX
Email: sysop@hb9dc.ch (https://3c.web.de/mail/client/mail/mailto;jsessionid=CA4A7F9CA7C3416A0B0BA4ACBE8A6843-n3.bs51a?to=sysop%40hb9dc.ch&selection=tfol11a5e69aed60d300),1,DMR-MARC - Lake of Zuerich - Switzerland
-228802,HB9DC,Test/Entwicklung,Zuerich und Thurgau,Switzerland,439.10000,5,-7.600,PEER,TS1 TS2,HB9DRX,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 228 = Switzerland 1
Time Slot #1 - Group Call 9 = Local HB9 1

Time Slot #2 - Group Call 228 = Switzerland 2
Time Slot #2 - Group Call 8 = Regional
German-speaking
Time Slot #2 - Group Call 9 = Local HB9 2
You Must Have [ARS] Disabled Within Your Radio.



Contact: Nick, HB9DRX
Email: sysop@hb9dc.ch (https://3c.web.de/mail/client/mail/mailto;jsessionid=CA4A7F9CA7C3416A0B0BA4ACBE8A6843-n3.bs51a?to=sysop%40hb9dc.ch&selection=tfol11a5e69aed60d300),1,DMR-MARC
-228803,HB9DC,Zuerichsee / Test,Zuerich und Thurgau,Switzerland,438.57500,5,-7.600,PEER,TS1 TS2,HB9DRX,,0,SwissDMR
-228804,HB9SP,Zuerich/City,,Switzerland,439.00000,5,-7.600,PEER,TS1 TS2,HB9DRX,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 228 = Switzerland 1
Time Slot #1 - Group Call 9 = Local HB9 1

Time Slot #2 - Group Call 228 = Switzerland 2
Time Slot #2 - Group Call 8 = Regional
German-speaking
Time Slot #2 - Group Call 9 = Local HB9 2
You Must Have [ARS] Disabled Within Your Radio.


Contact: Dany, HB9ZIC
Email: hb9zic@uska.ch,1,DMR-MARC
+228706,HB9DR,Hinterrhein / GR,Graubuenden,Switzerland,439.56250,2,-7.6,PEER,TS1 TS2,HB9SDB,,0,DMR-plus
+228801,HB9DC,Lake of Zuerich,,Switzerland,439.07500,5,-7.600,PEER,TS1 TS2,HB9DRX,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 228 = Switzerland 1
Time Slot #1 - Group Call 9 = Local HB9 1

Time Slot #2 - Group Call 228 = Switzerland 2
Time Slot #2 - Group Call 8 = Regional
German-speaking
Time Slot #2 - Group Call 9 = Local HB9 2
You Must Have [ARS] Disabled Within Your Radio.


Contact: Nick, HB9DRX
Email: sysop@hb9dc.ch (https://3c.web.de/mail/client/mail/mailto;jsessionid=CA4A7F9CA7C3416A0B0BA4ACBE8A6843-n3.bs51a?to=sysop%40hb9dc.ch&selection=tfol11a5e69aed60d300),1,SwissDMR
+228802,HB9DC,Test/Entwicklung,Zuerich und Thurgau,Switzerland,438.33750,5,-7.600,PEER,TS1 TS2,HB9DRX,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 228 = Switzerland 1
Time Slot #1 - Group Call 9 = Local HB9 1

Time Slot #2 - Group Call 228 = Switzerland 2
Time Slot #2 - Group Call 8 = Regional
German-speaking
Time Slot #2 - Group Call 9 = Local HB9 2
You Must Have [ARS] Disabled Within Your Radio.



Contact: Nick, HB9DRX
Email: sysop@hb9dc.ch (https://3c.web.de/mail/client/mail/mailto;jsessionid=CA4A7F9CA7C3416A0B0BA4ACBE8A6843-n3.bs51a?to=sysop%40hb9dc.ch&selection=tfol11a5e69aed60d300),1,BM
+228803,HB9DC,Zuerichsee / Test,Zuerich und Thurgau,Switzerland,438.57500,5,-7.600,PEER,TS1 TS2,HB9DRX,,0,BM
+228804,HB9SP,Zuerich/City,,Switzerland,439.00000,5,-7.600,PEER,TS1 TS2,HB9DRX,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 228 = Switzerland 1
Time Slot #1 - Group Call 9 = Local HB9 1

Time Slot #2 - Group Call 228 = Switzerland 2
Time Slot #2 - Group Call 8 = Regional
German-speaking
Time Slot #2 - Group Call 9 = Local HB9 2
You Must Have [ARS] Disabled Within Your Radio.


Contact: Dany, HB9ZIC
Email: hb9zic@uska.ch,1,SwissDMR
228805,HB9DR,Immenberg / TG,Zuerich und Thurgau,Switzerland,439.43750,1,-7.6,PEER,TS1 TS2,HB9EIY,,0,DMR-plus
228806,HB9DC,Limmernsee GL,Zuerich und Thurgau,Switzerland,145.68750,5,-0.600,PEER,TS1 TS2,HB9DRX,,0,SwissDMR
228807,HB9ZF,Bachtel / ZH,Zuerich und Thurgau,Switzerland,439.10000,1,-7.6,PEER,TS1 TS2,HB9MNP,,0,DMR-plus
-228808,HB9DC,Maennedorf ZH,Zuerich und Thurgau,Switzerland,438.57500,1,-7.600,PEER,TS1 TS2,HB9DRX,,0,DMR-plus
+228808,HB9DC,Maennedorf ZH,Zuerich und Thurgau,Switzerland,438.48750,5,-7.600,PEER,TS1 TS2,HB9DRX,,0,BM
228809,HB9AK,Hoernli / ZH,Zuerich und Thurgau,Switzerland,438.60000,1,-7.6,PEER,TS1 TS2,HB9PAE,,0,DMR-plus
228810,HB9DR,Sulgen / TG,Zuerich und Thurgau,Switzerland,439.57500,1,-7.6,PEER,TS1 TS2,HB9KOQ,,0,DMR-plus
228811,HB9ZF,Uetliberg / ZH,Zuerich und Thurgau,Switzerland,438.26250,2,-7.6,PEER,TS1 TS2,HB9MNP,,0,DMR-plus
-228812,HB9SP,Siblinger Randen ,Zuerich und Thurgau ,Switzerland ,438.46250,5,-7.600,Peer,TS1 TS2,HB9DRX,,0,Motorola
+228812,HB9SP,Siblinger Randen,Zuerich und Thurgau,Switzerland,438.46250,5,-7.600,Peer,TS1 TS2,HB9DRX,,0,Motorola
228891,HB9DR,Waedenswil / ZH,,Switzerland,438.50000,2,-7.6,PEER,TS1 TS2,HB9SDB,,0,DMR-plus
228892,HB9DR,IT-DMR,,Switzerland,439.48750,1,-7.6,PEER,TS1 TS2,HB9SDB,,0,IPSC
228893,HB9DR,FR-DMR,Zuerich und Thurgau,Switzerland,439.92500,1,-9.4,PEER,TS1 TS2,HB9SDB,,0,IPSC
228901,HB9DR,St.Gallen-City / SG,Ostschweiz,Switzerland,438.22500,2,-7.6,PEER,TS1 TS2,HB9ASF,,0,DMR-plus
230101,OK0DBY,Praha 6,Hlavni mesto Praha,Czech Republic,439.32500,1,-7.600,Peer,TS1 TS2,OK1MDX,,0,Hytera
230110,OK0DRB,Plavec, Jesenice,Central Bohemian Reg,Czech Republic,439.48750,1,-7.600,Peer,TS1 TS2,OK7RB,,0,BrandMeister
-230199,OK0OMX,Praha,ustu nad Labem Regio,Czech Republic,439.52500,1,-7.6,PEER,TS1 TS2,OK1MX,,0,DMR-plus
-230401,OK0BCA,Lisci Hora,Kralovehradecki,Czech Republic,438.87500,1,-7.6,Peer,TS1 TS2,OK1MX,,0,DMR-plus
+230199,OK0OMX,Praha,ustu nad Labem Regio,Czech Republic,439.52500,1,-7.600,PEER,TS1 TS2,OK1MX,,0,BM
+230401,OK0BCA,Lisci Hora,Kralovehradecki,Czech Republic,438.87500,1,-7.600,Peer,TS1 TS2,OK1MX,,0,BM
230403,OK0DAS,Snezka - Krkonose,Kralovehradecki,Czech Republic,438.30000,1,-7.600,PEER,TS1 TS2,OK2JIB,,0,Hytera
-230501,OK0Q,Zandov,Liberec Region,Czech Republic,439.37500,1,-7.600,Peer,TS1 TS2,OK1FWG,,0,Motorola
+230501,OK0Q,Zandov,Liberec Region,Czech Republic,439.37500,1,-7.600,Peer,TS1 TS2,OK1FWG,,0,BM
230510,OK0BS,Pardubice,Pardubice Region,Czech Republic,438.75000,1,-7.600,Peer,TS1 TS2,OK1FWG,,0,Motorola
-230555,OK0DBF,Suchy vrch,Pardubicky,Czech Republic,438.35000,1,-7.600,Peer,TS1 TS2,OK2JIB,,0,Hytera
-230601,OK0Z,Kelcsky Javornik,Zlinsky,Czech Republic,439.40000,1,-7.6,PEER,TS1 TS2,OK4PS,,0,Hytera
-230602,OK0KOP,Kopanky,Zlin Region,Czech Republic,439.52500,1,-7.6,PEER,TS1 TS2,OK4PS,,0,DMR-plus
-230603,OK0CHB,Kostelany,Zlin Region,Czech Republic,439.15000,1,-7.600,Peer,TS1 TS2,OK4PS,,0,Hytera
+230555,OK0DBF,Suchy vrch,Pardubicky,Czech Republic,438.35000,1,-7.600,Peer,TS1 TS2,OK2JIB,,0,BM
+230586,OK0BAJ,Jihlava,Vysocina Region,Czech Republic,439.32500,1,-7.600,,,OK2CNI,,0,None
+230601,OK0Z,Kelcsky Javornik,Zlinsky,Czech Republic,439.50000,1,-7.600,PEER,TS1 TS2,OK4PS,,0,BM
+230602,OK0KOP,Kopanky,Zlin Region,Czech Republic,439.52500,1,-7.600,PEER,TS1 TS2,OK4PS,,0,BM
+230603,OK0CHB,Kostelany,Zlin Region,Czech Republic,438.27500,1,-7.600,Peer,TS1 TS2,OK4PS,,0,BM
230604,OK0TST,Rozhledna Dripek,Jihomoravsky,Czech Republic,439.32500,4,-7.600,Peer,TS1 TS2,OK7JHD,,0,Motorola
-230605,OK0OZL,Zlin ,Zlinsky ,Czech Republic ,438.72500,1,-7.600,Peer,TS1 TS2,OK2VQO,,0,BrandMeister
-230701,OK0PVD,Drahany,Olomouc Region,Czech Republic,439.22500,1,-7.6,Peer,TS1 TS2,OK4PS,,0,BM
-230777,OK0X,Praded - Jeseniky,Olomouc Region,Czech Republic,439.35000,1,-7.600,Peer,TS1 TS2,OK2JIB,,0,Hytera
-231301,OM0OAA,Zilina, Hradisko,Zilinsky,Slovakia,438.62500,1,-7.6,PEER,TS1 TS2,OM6AXE,,0,DMR-plus
+230605,OK0OZL,Zlin,Zlinsky,Czech Republic,438.72500,1,-7.600,Peer,TS1 TS2,OK2VQO,,0,BrandMeister
+230666,OK0DIT,Lesni Hluboke,South Moravian Regio,Czech Republic,438.63750,1,-7.600,,,OK2IT,,0,BrandMeister
+230701,OK0PVD,Drahany,Olomouc Region,Czech Republic,439.22500,1,-7.600,Peer,TS1 TS2,OK4PS,,0,DMR-plus
+230702,OK0DSK,Ostrava-Kubankov,Moravian-Silesian Re,Czech Republic,438.23750,1,-7.600,,,OK2ULQ,,0,Hytera
+230703,OK0DSJ,Velky Javornik,South Moravian Regio,Czech Republic,438.62500,1,-7.600,,,OK2ULQ,,0,BM
+230777,OK0X,Praded - Jeseniky,Olomouc Region,Czech Republic,439.35000,1,-7.600,Peer,TS1 TS2,OK2JIB,,0,BM
+231111,OM0ODB,Bratislava,Bratislavsky,Slovakia,438.32500,1,-7.600,,,OM1AEG,,0,BrandMeister
+231301,OM0OAA,Zilina, Hradisko,Zilinsky,Slovakia,438.62500,1,-7.600,PEER,TS1 TS2,OM6AXE,,0,DMR-plus
+231302,OM0OUA,Martin - Velka Luka,cnty,Slovakia,439.12500,1,-7.600,,,OM6AR,,0,BM
+231303,OM0ODC,Chopok,Zilinsky,Slovakia,438.51250,1,-7.600,,,OM3WIM,,0,BrandMeister
+231401,OM0ODM,Kosice,,Slovakia,438.22500,1,-7.600,PEER,TS1 TS2,OM8AKX,,0,
+231402,OM0OUK,Kojsovska hola,Kosicky,Slovakia,439.05000,1,-7.600,,,OM8KT,,0,BrandMeister
231403,OM0OUE,Kosice,Kosicky,Slovakia,439.15000,1,7.600,Peer,TS1 TS2,OM8KT,,0,None
+231404,OM0ODP,Strbske Pleso,Preiov Region,Slovakia,438.27500,1,-7.600,,,OM3WIM,,0,BM
232069,OE0XMP,Wien,- exterritorial -,Oesterreich/Austria,438.50000,1,-7.600,PEER,TS1 TS2,OE1KBC,,0,DMR-plus
-232100,OE1XAR,Wien/Bisamberg,Wien,Oesterreich/Austria,438.50000,1,-7.6,PEER,TS1 TS2,OE1KBC,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #2 - Group Call 232 = Austria

You Must Have [ARS] Disabled Within Your Radio.

Coverage Map (http://wiki.oevsv.at/images/8/80/DMR-footprint_oe1xar_Bisamberg.jpg),1,DMR-MARC
-232101,OE3XDB,Bad Voeslau/Harzberg,Niederoesterreich,Austria,438.47500,1,-7.6,PEER,TS1 TS2,OE3DNW,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9

Time Slot #2 - Group Call 232 = Austria

You Must Have [ARS] Disabled Within Your Radio.

Coverage Map (http://wiki.oevsv.at/images/6/6f/DMR-footprint_oe3xdb_Harzberg.jpg),1,DMR-MARC
-232102,OE1XQU,Wien/Wienerberg,Wien,Oesterreich/Austria,438.82500,1,-7.6,PEER,TS1 TS2,OE1KBC,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #2 - Group Call 232 = Austria

You Must Have [ARS] Disabled Within Your Radio.

Coverage Map (http://wiki.oevsv.at/images/8/8e/DMR-footprint_oe1xqu_Wienerberg.jpg),1,DMR-MARC- Wienerberg
-232103,OE3XWU,Hochwechsel,Niederoesterreich,Austria,439.07500,1,-7.600,Peer,TS1 TS2,OE4KMU,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #2 - Group Call 232 = Austria

You Must Have [ARS] Disabled Within Your Radio.

Coverage Map (http://wiki.oevsv.at/images/f/fa/DMR-footprint_oe3xwu_Hochwechsel.jpg),1,DMR-MARC- Hochwechsel
-232104,OE3XQA,Exelberg,,Oesterreich/Austria,438.67500,1,-7.6,PEER,TS1 TS2,OE1KBC,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #2 - Group Call 232 = Austria

You Must Have [ARS] Disabled Within Your Radio.

Coverage Map (http://wiki.oevsv.at/images/6/68/DMR-footprint_oe3xqa_Exelberg.jpg),1,DMR-MARC
-232108,OE8XKK,Pyramidenkogel,Kaernten,Oesterreich/Austria,438.60000,1,-7.6,PEER,TS1 TS2,OE8HJK,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #2 - Group Call 232 = Austria

You Must Have [ARS] Disabled Within Your Radio.

Coverage Map (http://wiki.oevsv.at/images/6/6f/DMR-footprint_oe8xkk_Pyramidenkogel.jpg),1,DMR-MARC
+232100,OE1XAR,Wien/Bisamberg,Wien,Oesterreich/Austria,438.50000,1,-7.6,PEER,TS1 TS2,OE1KBC,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #2 - Group Call 232 = Austria

You Must Have [ARS] Disabled Within Your Radio.

Coverage Map (http://wiki.oevsv.at/images/8/80/DMR-footprint_oe1xar_Bisamberg.jpg),1,DMR-plus
+232101,OE3XDB,Bad Voeslau/Harzberg,Niederoesterreich,Austria,438.47500,1,-7.6,PEER,TS1 TS2,OE3DNW,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9

Time Slot #2 - Group Call 232 = Austria

You Must Have [ARS] Disabled Within Your Radio.

Coverage Map (http://wiki.oevsv.at/images/6/6f/DMR-footprint_oe3xdb_Harzberg.jpg),1,DMR-plus
+232102,OE1XQU,Wien/Wienerberg,Wien,Oesterreich/Austria,438.82500,1,-7.6,PEER,TS1 TS2,OE1KBC,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #2 - Group Call 232 = Austria

You Must Have [ARS] Disabled Within Your Radio.

Coverage Map (http://wiki.oevsv.at/images/8/8e/DMR-footprint_oe1xqu_Wienerberg.jpg),1,DMR-plus
+232103,OE3XWU,Hochwechsel,Niederoesterreich,Austria,439.07500,1,-7.600,Peer,TS1 TS2,OE4KMU,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #2 - Group Call 232 = Austria

You Must Have [ARS] Disabled Within Your Radio.

Coverage Map (http://wiki.oevsv.at/images/f/fa/DMR-footprint_oe3xwu_Hochwechsel.jpg),1,OE-DMR
+232104,OE3XQA,Exelberg,,Oesterreich/Austria,438.67500,1,-7.6,PEER,TS1 TS2,OE1KBC,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #2 - Group Call 232 = Austria

You Must Have [ARS] Disabled Within Your Radio.

Coverage Map (http://wiki.oevsv.at/images/6/68/DMR-footprint_oe3xqa_Exelberg.jpg),1,DMR-plus
+232108,OE8XKK,Pyramidenkogel,Kaernten,Oesterreich/Austria,438.60000,1,-7.6,PEER,TS1 TS2,OE8HJK,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #2 - Group Call 232 = Austria

You Must Have [ARS] Disabled Within Your Radio.

Coverage Map (http://wiki.oevsv.at/images/6/6f/DMR-footprint_oe8xkk_Pyramidenkogel.jpg),1,DMR-plus
+232110,OE1XIK,Wien 22,Wien,Oesterreich/Austria,438.50000,1,-7.600,,,OE1KBC,,0,Motorola
+232112,OE1XIK,Wien 22,Wien,Oesterreich/Austria,438.50000,1,-7.600,,,OE1KBC,,0,Motorola
232169,OE0XMP,Wien,Wien,Oesterreich/Austria,438.40000,1,-7.6,PEER,TS1 TS2,OE1KBC,,0,DMR-plus
232191,OE1XIK,Wien 22,Wien,Austria,438.42500,1,-7.600,PEER,TS1 TS2,OE1KBC,,0,DMR-plus
232192,OE1XQU,Wienerberg,Wien,Austria,438.45000,1,-7.6,PEER,TS1 TS2,OE1KBC,,0,DMR-plus
232193,OE1XQU,Laaerberg,Wien,Austria,145.58750,1,-0.6,PEER,TS1 TS2,OE1KBC,,0,DMR-plus
232197,OE1XAR,Wien/Bisamberg,Wien,Oesterreich/Austria,438.33750,1,-7.6,PEER,TS1 TS2,OE1CMW,,0,DMR-plus
-232201,OE2XSV,Sonnblick,,Oesterreich/Austria,439.08750,1,-7.6,PEER,TS1 TS2,OE7JTK,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #2 - Group Call 232 = Austria

You Must Have [ARS] Disabled Within Your Radio.

Coverage Map (http://wiki.oevsv.at/images/d/d2/DMR-footprint_oe2xsv_Sonnblick.jpg),1,DMR-MARC
+232201,OE2XSV,Sonnblick,,Oesterreich/Austria,439.08750,1,-7.6,PEER,TS1 TS2,OE7JTK,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #2 - Group Call 232 = Austria

You Must Have [ARS] Disabled Within Your Radio.

Coverage Map (http://wiki.oevsv.at/images/d/d2/DMR-footprint_oe2xsv_Sonnblick.jpg),1,DMR-plus
232301,OE3XNR,St Martin,Niederoesterreich,Oesterreich/Austria,430.72500,1,7.600,Peer,TS1 TS2,OE3FPA,,0,None
-232302,OE3XRB,Sonntagberg,,Oesterreich/Austria,438.55000,1,-7.6,PEER,TS1 TS2,OE3NRS,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #2 - Group Call 232 = Austria

You Must Have [ARS] Disabled Within Your Radio.

Coverage Map (http://wiki.oevsv.at/images/7/70/DMR-footprint_oe3xrb_Sonntagberg.jpg),1,DMR-MARC
-232303,OE3XHB,Jauerling,Niederoesterreich,Austria,438.42500,1,-7.6,Master,TS1 TS2,OE3NRS,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #2 - Group Call 232 = Austria

You Must Have [ARS] Disabled Within Your Radio.

Coverage Map (http://wiki.oevsv.at/images/9/9d/DMR-footprint_oe3xhb_Jauerling.jpg),1,DMR-MARC
-232304,OE3XKC,Kirchberg/Pielach,,Oesterreich/Austria,438.50000,1,-7.6,PEER,TS1 TS2,OE3ICU,,0,OE-DMR
+232302,OE3XRB,Sonntagberg,,Oesterreich/Austria,438.55000,1,-7.6,PEER,TS1 TS2,OE3NRS,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #2 - Group Call 232 = Austria

You Must Have [ARS] Disabled Within Your Radio.

Coverage Map (http://wiki.oevsv.at/images/7/70/DMR-footprint_oe3xrb_Sonntagberg.jpg),1,DMR-plus
+232303,OE3XHB,Jauerling,Niederoesterreich,Austria,438.42500,1,-7.6,Master,TS1 TS2,OE3NRS,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #2 - Group Call 232 = Austria

You Must Have [ARS] Disabled Within Your Radio.

Coverage Map (http://wiki.oevsv.at/images/9/9d/DMR-footprint_oe3xhb_Jauerling.jpg),1,DMR-plus
+232304,OE3XKC,Kirchberg/Pielach,,Oesterreich/Austria,438.50000,1,-7.6,PEER,TS1 TS2,OE3ICU,,0,DMR-plus
232305,OE3XNR,St Martin,Niederoesterreich,Oesterreich/Austria,438.87500,1,-7.600,Peer,TS1 TS2,OE3GWU,,0,None
232306,OE3XNK,Hohe Wand,Niederoesterreich,Oesterreich/Austria,438.30000,1,-7.6,PEER,TS1 TS2,OE3RPU,,0,DMR-plus
-232307,OE3XWW,Moenichkirchen MMDVM,Niederoesterreich,Oesterreich/Austria,430.97500,1,7.6,PEER,TS1 TS2,OE3RPU,,0,DMR-plus
+232307,OE3XWW,Moenichkirchen MMDVM,Niederoesterreich,Oesterreich/Austria,430.97500,1,7.600,PEER,TS1 TS2,OE3RPU,,0,DMR-plus
232391,OE3XTR,Hohe Wand,,Oesterreich/Austria,438.40000,1,-7.6,Peer,TS1 TS2,OE3KLU,,0,DMR-plus
-232392,OE3XYR,HTL St. Poelten,Niederoesterreich,Oesterreich/Austria,438.37500,1,-7.600,PEER,TS1 TS2,OE3JOA,,0,DMR-plus
-232401,OE4XUB,Brentenriegl,Burgenland,Oesterreich/Austria,438.55000,1,-7.6,PEER,TS1 TS2,OE3DNW,,0,OE-DMR
-232501,OE5XLL,Lichtenberg,,Oesterreich/Austria,438.47500,1,-7.6,PEER,TS1 TS2,OE5RNL,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #2 - Group Call 232 = Austria

You Must Have [ARS] Disabled Within Your Radio.

Coverage Map (http://wiki.oevsv.at/images/e/e5/DMR-footprint_oe5xll-Lichtenberg.jpg),1,DMR-MARC
+232392,OE3XYR,HTL St. Poelten,Niederoesterreich,Oesterreich/Austria,438.37500,1,-7.600,PEER,TS1 TS2,OE3JOA,,0,BM
+232401,OE4XUB,Brentenriegl,Burgenland,Oesterreich/Austria,438.55000,1,-7.6,PEER,TS1 TS2,OE3DNW,,0,DMR-plus
+232501,OE5XLL,Lichtenberg,,Oesterreich/Austria,438.47500,1,-7.6,PEER,TS1 TS2,OE5RNL,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #2 - Group Call 232 = Austria

You Must Have [ARS] Disabled Within Your Radio.

Coverage Map (http://wiki.oevsv.at/images/e/e5/DMR-footprint_oe5xll-Lichtenberg.jpg),1,DMR-plus
232502,OE5XGL,Gmunden,Oberoesterreich,Oesterreich/Austria,438.80000,1,-7.6,PEER,TS1 TS2,OE5PON,,0,DMR-plus
232555,OE5XDN,Senftenbach, Wolfau,Oberoesterreich,Oesterreich/Austria,438.42500,1,7.600,Peer,TS1 TS2,OE5RLN,,0,None
-232601,OE6XAG,Schoeckl,Steiermark,Austria,438.60000,1,-7.6,PEER,TS1 TS2,OE6DJG,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #2 - Group Call 232 = Austria

You Must Have [ARS] Disabled Within Your Radio.

Coverage Map (http://wiki.oevsv.at/images/e/e8/DMR-footprint_oe6xsr_Schoeckl.jpg),1,DMR-MARC
-232602,OE6XBG,Rennfeld,,Oesterreich/Austria,438.92500,1,-7.6,PEER,TS1 TS2,OE6VHF,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #2 - Group Call 232 = Austria

You Must Have [ARS] Disabled Within Your Radio.

Coverage Map (http://wiki.oevsv.at/images/a/a7/DMR-footprint_oe6xbg_Rennfeld.jpg),1,DMR-MARC
+232601,OE6XAG,Schoeckl,Steiermark,Austria,438.60000,1,-7.6,PEER,TS1 TS2,OE6DJG,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #2 - Group Call 232 = Austria

You Must Have [ARS] Disabled Within Your Radio.

Coverage Map (http://wiki.oevsv.at/images/e/e8/DMR-footprint_oe6xsr_Schoeckl.jpg),1,DMR-plus
+232602,OE6XBG,Rennfeld,,Oesterreich/Austria,438.92500,1,-7.600,PEER,TS1 TS2,OE6VHF,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #2 - Group Call 232 = Austria

You Must Have [ARS] Disabled Within Your Radio.

Coverage Map (http://wiki.oevsv.at/images/a/a7/DMR-footprint_oe6xbg_Rennfeld.jpg),1,DMR-plus
232603,OE6XAR,Schoenbergkopf,,Oesterreich/Austria,438.42500,1,-7.6,PEER,TS1 TS2,OE6POD,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #2 - Group Call 232 = Austria

You Must Have [ARS] Disabled Within Your Radio.

Coverage Map (http://wiki.oevsv.at/images/d/d0/DMR-footprint_oe6xar-Schoenbergkopf.jpg),1,DMR-plus
232604,OE6XBF,Stradner Kogel,Steiermark,Austria,438.91250,1,-7.6,PEER,TS1 TS2,OE6JWD,,0,DMR-plus
232605,OE6XCD,Stuhleck/Test,Steiermark,Oesterreich/Austria,438.97500,1,-7.6,Peer,TS1 TS2,OE3KLU,,0,DMR-plus
@@ -453,35 +555,37 @@ 232607,OE6XAG,Schoeckl,Steiermark,Oesterreich/Austria,437.97500,1,-7.6,PEER,TS1 TS2,OE6DJG,,0,DMR-plus
232608,OE6XDG,Lachtal,Steiermark,Oesterreich/Austria,438.07500,1,-7.600,PEER,TS1 TS2,OE6POD,,0,None
232610,OE6XDG,Lachtal,Steiermark,Oesterreich/Austria,145.70000,1,-0.600,PEER,TS1 TS2,OE6POD,,0,None
-232701,OE7XZH,Bruckerberg/Zillert.,Tirol,Oesterreich/Austria,438.45000,1,-7.6,Peer,TS1 TS2,OE7FMI,,0,OE-DMR
-232702,OE7XBI,Rangger Koepfl,Tirol,Austria,439.07500,1,-7.6,Master,TS1 TS2,OE7WSH,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 232 = Austria

Time Slot #1 - Group Call 9 = Local 1
Time Slot #2 - Group Call 232 = Austria
Time Slot #2 - Group Call 8 = Regional
Time Slot #2 - Group Call 9 = Local 2

You Must Have [ARS] Disabled Within Your Radio.


Contact: Wolfgang Sentobe, OE7WSH
www: http://www.uhf-shf-club.at/,1,DMR-MARC
-232703,OE7XTT,Penken/Zillertal,Tirol,Austria,438.35000,1,-7.6,PEER,TS1 TS2,OE7FMI,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 232 = Austria

Time Slot #1 - Group Call 9 = Local 1
Time Slot #2 - Group Call 232 = Austria
Time Slot #2 - Group Call 8 = Regional
Time Slot #2 - Group Call 9 = Local 2

You Must Have [ARS] Disabled Within Your Radio.


Contact: Markus Frankhauser, OE7FMI
Email: oe7fmi@oevsv.at
www: http://www.oe7.oevsv.at/referate/digital/dmr/,1,OE-DMR
-232704,OE7XWJ,Mayrhofen ,Tirol ,Oesterreich/Austria ,438.50000,1,-7.6,PEER,TS1 TS2,OE7FMI,,0,DMR-plus
-232705,OE7XGR,Hintertuxergletscher,Tirol ,Oesterreich/Austria ,438.92500,1,-7.600,PEER,TS1 TS2,OE7FMI,,0,DMR-plus
-232708,OE7XLH,Lienz/Osttirol,Tirol,Oesterreich/Austria,438.87500,1,-7.6,PEER,TS1 TS2,OE7JTK,,0,DMR-plus
-232709,OE7XLI,Hochstein,Tirol,Oesterreich/Austria,438.27500,1,-7.6,Peer,TS1 TS2,OE7JTK,,0,Hytera
+232701,OE7XZH,Bruckerberg/Zillert.,Tirol,Oesterreich/Austria,438.45000,1,-7.6,Peer,TS1 TS2,OE7FMI,,0,DMR-plus
+232702,OE7XBI,Rangger Koepfl,Tirol,Austria,439.07500,1,-7.600,Master,TS1 TS2,OE7WSH,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 232 = Austria

Time Slot #1 - Group Call 9 = Local 1
Time Slot #2 - Group Call 232 = Austria
Time Slot #2 - Group Call 8 = Regional
Time Slot #2 - Group Call 9 = Local 2

You Must Have [ARS] Disabled Within Your Radio.


Contact: Wolfgang Sentobe, OE7WSH
www: http://www.uhf-shf-club.at/,1,DMR-plus
+232703,OE7XTT,Penken/Zillertal,Tirol,Austria,438.35000,1,-7.6,PEER,TS1 TS2,OE7FMI,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 232 = Austria

Time Slot #1 - Group Call 9 = Local 1
Time Slot #2 - Group Call 232 = Austria
Time Slot #2 - Group Call 8 = Regional
Time Slot #2 - Group Call 9 = Local 2

You Must Have [ARS] Disabled Within Your Radio.


Contact: Markus Frankhauser, OE7FMI
Email: oe7fmi@oevsv.at
www: http://www.oe7.oevsv.at/referate/digital/dmr/,1,DMR-plus
+232704,OE7XWJ,Mayrhofen,Tirol,Oesterreich/Austria,438.50000,1,-7.6,PEER,TS1 TS2,OE7FMI,,0,DMR-plus
+232705,OE7XGR,Hintertuxergletscher,Tirol,Oesterreich/Austria,438.92500,1,-7.600,PEER,TS1 TS2,OE7FMI,,0,DMR-plus
+232708,OE7XLH,Lienz/Osttirol,Tirol,Oesterreich/Austria,438.87500,1,-7.600,PEER,TS1 TS2,OE7JTK,,0,DMR-plus
+232709,OE7XLI,Hochstein,Tirol,Oesterreich/Austria,438.27500,1,-7.6,Peer,TS1 TS2,OE7JTK,,0,DMR-plus
+232710,OE7XLI,Hochstein,Tirol,Oesterreich/Austria,438.87500,1,-7.6,,,OE7JTK,,0,DMR-plus
232799,OE7XXX,Zillertal,Tirol,Oesterreich/Austria,438.50000,1,-7.6,Peer,TS1 TS2,OE7FMI,,0,DMR-plus
-232802,OE8XPK,Petzen,Kaernten,Austria,438.50000,1,-7.6,PEER,TS1 TS2,OE8HJK,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #2 - Group Call 232 Austria

You Must Have [ARS] Disabled Within Your Radio.

Coverage Map (http://wiki.oevsv.at/images/9/92/DMR-footprint_oe8xpk_Petzen.jpg),1,DMR-MARC
-232803,OE8XMK,Magdalensberg,Kaernten,Austria,145.62500,1,-0.6,PEER,TS1 TS2,OE8HJK,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #2 - Group Call 232 = Austria

You Must Have [ARS] Disabled Within Your Radio.

Coverage Map (http://wiki.oevsv.at/images/f/ff/DMR-footprint_oe8xmk-Magdalensberg.jpg),1,DMR-MARC
+232802,OE8XPK,Petzen,Kaernten,Austria,438.50000,1,-7.6,PEER,TS1 TS2,OE8HJK,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #2 - Group Call 232 Austria

You Must Have [ARS] Disabled Within Your Radio.

Coverage Map (http://wiki.oevsv.at/images/9/92/DMR-footprint_oe8xpk_Petzen.jpg),1,DMR-plus
+232803,OE8XMK,Magdalensberg,Kaernten,Austria,145.62500,1,-0.6,PEER,TS1 TS2,OE8HJK,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #2 - Group Call 232 = Austria

You Must Have [ARS] Disabled Within Your Radio.

Coverage Map (http://wiki.oevsv.at/images/f/ff/DMR-footprint_oe8xmk-Magdalensberg.jpg),1,DMR-plus
232822,OE8XVK,Kopein,Kaernten,Oesterreich/Austria,438.55000,1,-7.600,Peer,TS1 TS2,OE8PKR,,0,Hytera
-232893,OE8XIK,Saurachberg,Kaernten,Austria,438.45000,1,-7.6,PEER,TS1 TS2,OE1KBC,,0,DMR-plus
-232894,OE8XPK,Petzen,,Oesterreich/Austria,145.62500,1,-0.6,PEER,TS1 TS2,OE8HJK,,0,DMR-plus
-232895,OE8XFK,Dobratsch,Kaernten,Austria,438.90000,1,-7.6,PEER,TS1 TS2,OE8PKR,,0,DMR-plus
-232896,OE8XLK,Koralm,Kaernten,Oesterreich/Austria,438.70000,1,-7.6,PEER,TS1 TS2,OE8URQ,,0,DMR-plus
+232893,OE8XIK,Saurachberg,Kaernten,Austria,438.45000,1,-7.600,PEER,TS1 TS2,OE1KBC,,0,DMR-plus
+232894,OE8XPK,Petzen,,Oesterreich/Austria,145.62500,1,-0.600,PEER,TS1 TS2,OE8HJK,,0,DMR-plus
+232895,OE8XFK,Dobratsch,Kaernten,Austria,438.90000,1,-7.600,PEER,TS1 TS2,OE8PKR,,0,BM
+232896,OE8XLK,Koralm,Kaernten,Oesterreich/Austria,438.70000,1,-7.600,PEER,TS1 TS2,OE8URQ,,0,DMR-plus
232991,OE9XVJ,Pfaender / Bregenz,Vorarlberg,Oesterreich/Austria,438.50000,1,-7.6,PEER,TS1 TS2,OE9LTV,,0,DMR-plus
234127,GB3IP,Stafford,England,United Kingdom,145.76250,1,-0.600,PEER,TS1 TS2,G0RDI,,0,Motorola
+234504,GB7HB,Tandragee,Northern Ireland,United Kingdom,439.62500,1,-9.000,PEER,TS1 TS2,MI0MSO,,0,Motorola
234900,GB3TU,Tring,England,United Kingdom,433.22500,3,1.600,PEER,TS1 TS2,G0RDI,,0,DMR-plus
-235100,GB7TD,Wakefield,West Yorkshire,United Kingdom,439.16250,1,-9.000,Master,TS1 TS2,G1XCC,Time Slot#1 - Group Call 1 = Worldwide Calling (2 min max)
Time Slot#1 - Group Call 2 = Europe
Time Slot#1 - Group Call 13 = Worldwide English
Time Slot#2 - Group Call 235 = UK Repeater
Time Slot#2 - Group Call 8 = Regional
Time Slot#2 - Group Call 9 = Local

You must DISABLE ARS on all time slots

Contact: Michael Lockwood, G1XCC
Email: mailto: Michael@michaellockwood.orangehome.co.uk,1,DMR-MARC
+235100,GB7TD,Wakefield,West Yorkshire,United Kingdom,439.16250,1,-9.000,Master,TS1 TS2,G1XCC,Time Slot#1 - Group Call 1 = Worldwide Calling (2 min max)
Time Slot#1 - Group Call 2 = Europe
Time Slot#1 - Group Call 13 = Worldwide English
Time Slot#2 - Group Call 235 = UK Repeater
Time Slot#2 - Group Call 8 = Regional
Time Slot#2 - Group Call 9 = Local

You must DISABLE ARS on all time slots

Contact: Michael Lockwood, G1XCC
Email: mailto: Michael@michaellockwood.orangehome.co.uk,1,BM
235101,GB7FW,Birmingham,England,United Kingdom,439.66250,1,-9.000,Peer,TS1 TS2,G8VIQ,,0,None
235102,GB7AL,TEST,England,United Kingdom,439.46250,1,-9.000,PEER,TS1 TS2,G0RDI,,0,DMRUK
-235103,GB7HS,Batley,England,United Kingdom,439.42500,2,-9.000,Peer,TS1 TS2,G1XCC,,0,Motorola
-235104,GB7LE,Leeds,England,United Kingdom,439.66250,2,-9.000,Peer,TS1 TS2,G1XCC,,0,Motorola
-235105,GB7LP,Liverpool,Merseyside,United Kingdom,439.40000,1,-9.000,Peer,TS1 TS2,M1SWB,Time Slot#1 - Group Call 1 = Worldwide Calling (2 min max)
Time Slot#1 - Group Call 2 = Europe
Time Slot#1 - Group Call 13 = Worldwide English
Time Slot#2 - Group Call 235 = UK Repeater
Time Slot#2 - Group Call 8 = Regional
Time Slot#2 - Group Call 9 = Local

You must DISABLE ARS on all time slots

Contact: Steve Bainbridge, M1SWB
Email: steve.m1swb@tiscali.co.uk,1,DMR-MARC
+235103,GB7HS,Batley,England,United Kingdom,439.42500,2,-9.000,Peer,TS1 TS2,G1XCC,,0,BM
+235104,GB7LE,Leeds,England,United Kingdom,439.66250,2,-9.000,Peer,TS1 TS2,G1XCC,,0,BM
+235105,GB7LP,Liverpool,Merseyside,United Kingdom,439.40000,1,-9.000,Peer,TS1 TS2,M1SWB,Time Slot#1 - Group Call 1 = Worldwide Calling (2 min max)
Time Slot#1 - Group Call 2 = Europe
Time Slot#1 - Group Call 13 = Worldwide English
Time Slot#2 - Group Call 235 = UK Repeater
Time Slot#2 - Group Call 8 = Regional
Time Slot#2 - Group Call 9 = Local

You must DISABLE ARS on all time slots

Contact: Steve Bainbridge, M1SWB
Email: steve.m1swb@tiscali.co.uk,1,DMRUK
235106,GB7BS,Bristol,England,United Kingdom,439.16250,3,-9.000,Master,TS2,G4SDR,,0,DMRUK
235107,GB7AA,South Glos.,England,United Kingdom,430.67500,1,9.000,Peer,TS1 TS2,G4CJZ,,0,None
-235108,GB7SN,Sheffield,England,United Kingdom,439.67500,3,-9.000,PEER,TS1 TS2,M1ERS,,0,DMR-plus
+235108,GB7SN,Sheffield,England,United Kingdom,439.67500,1,-9.000,PEER,TS1 TS2,M1ERS,,0,BM
235109,GB7CK,Folkestone,England,United Kingdom,439.73750,3,-9.000,PEER,TS1 TS2,M1CMN,,0,Motorola
-235110,GB3GB,Birmingham,,United Kingdom,439.30000,1,-7.600,PEER,TS1 TS2,G8NDT,,0,DMR-plus
+235110,GB3GB,Birmingham,kd,United Kingdom,439.30000,1,-7.600,PEER,TS1 TS2,G8NDT,,0,DMR-plus
235111,GB7MP,Central London,England,United Kingdom,430.82500,3,7.600,PEER,TS1 TS2,G8WOY,,0,Motorola
235112,GB7LO,Bromley,England,United Kingdom,439.51250,3,-9.000,PEER,TS1 TS2,G1HIG,,0,Motorola
235113,GB7CL,Clacton on Sea,,United Kingdom,439.63750,3,9.000,PEER,TS1 TS2,G0MBA,,0,Motorola
@@ -495,96 +599,113 @@ 235121,GB7MB,Heysham,England,United Kingdom,439.70000,1,-9.000,Peer,TS1 TS2,G4TUZ,,0,Motorola
235122,GB7FO,Blackpool South,England,United Kingdom,439.43750,1,-9.000,PEER,TS1 TS2,G0WDA,,0,Motorola
235123,GB7BK,Reading,England,United Kingdom,439.73750,3,-9.000,PEER,TS1 TS2,G8DOR,,0,Motorola
-235125,GB7EL,Nelson, Lancashire,England,United Kingdom,439.71250,2,-9.000,Peer,TS1 TS2,G4MLB,,0,Motorola
-235126,GB7PK,Portsmouth,England,United Kingdom,439.52500,1,-9.000,PEER,TS1 TS2,G7RPG,,0,Hytera
+235124,GB7BJ,Herefordshire,England,United Kingdom,439.73750,13,-9.000,PEER,TS1 TS2,G1MAW,,0,Motorola
+235125,GB7EL,Nelson, Lancashire,England,United Kingdom,439.71250,2,-9.000,Peer,TS1 TS2,G4MLB,,0,BM
+235126,GB7PK,Portsmouth,England,United Kingdom,439.52500,1,-9.000,PEER,TS1 TS2,G7RPG,,0,BM
235127,GB3IP,Stafford,England,United Kingdom,145.76250,1,-0.600,PEER,TS1 TS2,G0RDI,,0,Motorola
235128,GB7LR,Leicester, UK,England,United Kingdom,439.47500,1,-9.000,PEER,TS1 TS2,M1FJB,,0,None
235129,GB7AK,Barking,England,United Kingdom,439.52500,3,-9.000,PEER,TS1 TS2,G8YPK,,0,Motorola
-235130,GB7NS,Caterham,,United Kingdom,439.16250,3,-9.000,PEER,TS1 TS2,G0OLX,Time Slot#1 - Group Call 1 = Worldwide Calling (2 min max)

Time Slot#1 - Group Call 2 = Europe
Time Slot#1 - Group Call 13 = Worldwide English
Time Slot#2 - Group Call 235 = UK Repeater
Time Slot#2 - Group Call 8 = Regional
Time Slot#2 - Group Call 9 = Local

You must DISABLE ARS on all time slots

Contact: Denis Stanton, G0OLX
Email: mailto:
denis.stanton@ntlworld.com,1,DMR-MARC
+235130,GB7NS,Caterham,,United Kingdom,439.16250,3,-9.000,PEER,TS1 TS2,G0OLX,Time Slot#1 - Group Call 1 = Worldwide Calling (2 min max)

Time Slot#1 - Group Call 2 = Europe
Time Slot#1 - Group Call 13 = Worldwide English
Time Slot#2 - Group Call 235 = UK Repeater
Time Slot#2 - Group Call 8 = Regional
Time Slot#2 - Group Call 9 = Local

You must DISABLE ARS on all time slots

Contact: Denis Stanton, G0OLX
Email: mailto:
denis.stanton@ntlworld.com,1,DMRUK
235131,GB7GF,Guildford,England,United Kingdom,439.68750,3,-9.000,Peer,TS1 TS2,G4EML,,0,Motorola
+235133,GB7OZ,Oswestry,England,United Kingdom,439.62500,8,-9.000,PEER,TS1 TS2,G0DNI,,0,None
235134,GB7FU,Pointon,England,United Kingdom,439.16250,3,-9.000,Peer,TS1 TS2,G0RDI,,0,Motorola
235135,GB7FR,IO90ST,England,United Kingdom,439.50000,4,-9.000,PEER,TS1 TS2,G7RZU,,0,Hytera
235136,GB7SU,Southampton,England,United Kingdom,439.45000,8,-9.000,Peer,TS1 TS2,G6IGA,,0,Motorola
-235137,GB7SE,Thurrock ,England ,United Kingdom ,439.47500,3,-9.000,Peer,TS1 TS2,M0PFX,,0,Motorola
+235137,GB7SE,Thurrock,England,United Kingdom,439.47500,3,-9.000,Peer,TS1 TS2,M0PFX,,0,DMR-plus
235138,GB7SK,Skeffington,England,United Kingdom,439.46250,1,-9.000,PEER,TS1 TS2,G0RDI,,0,Motorola
235139,GB7VS,Shropham,England,United Kingdom,439.41250,1,-9.000,PEER,TS1 TS2,M0ZAH,,0,Motorola
-235140,GB7HX,Huddersfield,West Yorkshire,United Kingdom,439.57500,1,-9.000,Peer,TS1 TS2,G0PRF,Time Slot#1 - Group Call 2 = Europe
Time Slot#1 - Group Call 13 = Worldwide English
Time Slot#2 - Group Call 235 = UK Repeater
Time Slot#2 - Group Call 8 = Regional
Time Slot#2 - Group Call 9 = Local

You must DISABLE ARS on all time slots

Contact: John Goodwin, G0PRF
Email: john.a.goodwin@btinternet.com,1,DMR-MARC
-235141,GB7TP,Keighley,,United Kingdom,439.68750,1,-9.000,PEER,TS1 TS2,G8ZMG,Time Slot#1 - Group Call 1 = Worldwide Calling (2 min max)

Time Slot#1 - Group Call 2 = Europe
Time Slot#1 - Group Call 13 = Worldwide English
Time Slot#2 - Group Call 235 = UK Repeater
Time Slot#2 - Group Call 8 = Regional
Time Slot#2 - Group Call 9 = Local

You must DISABLE ARS on all time slots

Contact: Steve Watson, G8ZMG
Email: steve.G8ZMG@crossley-watson.me.uk,1,DMR-MARC
+235140,GB7HX,Huddersfield,West Yorkshire,United Kingdom,439.57500,1,-9.000,Peer,TS1 TS2,G0PRF,Time Slot#1 - Group Call 2 = Europe
Time Slot#1 - Group Call 13 = Worldwide English
Time Slot#2 - Group Call 235 = UK Repeater
Time Slot#2 - Group Call 8 = Regional
Time Slot#2 - Group Call 9 = Local

You must DISABLE ARS on all time slots

Contact: John Goodwin, G0PRF
Email: john.a.goodwin@btinternet.com,1,BM
+235141,GB7TP,Keighley,,United Kingdom,439.68750,1,-9.000,PEER,TS1 TS2,G8ZMG,Time Slot#1 - Group Call 1 = Worldwide Calling (2 min max)

Time Slot#1 - Group Call 2 = Europe
Time Slot#1 - Group Call 13 = Worldwide English
Time Slot#2 - Group Call 235 = UK Repeater
Time Slot#2 - Group Call 8 = Regional
Time Slot#2 - Group Call 9 = Local

You must DISABLE ARS on all time slots

Contact: Steve Watson, G8ZMG
Email: steve.G8ZMG@crossley-watson.me.uk,1,BM
235142,GW1SYG,TEST/Chester,England,United Kingdom,439.68750,1,-9.000,Peer,TS1 TS2,GW1SYG,,0,DMRUK
-235143,GB7WI,Winterton,England,United Kingdom,439.41250,1,-9.000,Peer,TS1 TS2,G0UZJ,Time Slot#1 - Group Call 1 = Worldwide Calling (2 min max)
Time Slot#1 - Group Call 2 = Europe
Time Slot#1 - Group Call 13 = Worldwide English
Time Slot#2 - Group Call 235 = UK Repeater
Time Slot#2 - Group Call 8 = Regional
Time Slot#2 - Group Call 9 = Local

You must DISABLE ARS on all time slots

Contact: G0UZJ
Email: kevin.hogg@C-T-S.com,1,DMR-MARC
+235143,GB7WI,Winterton,England,United Kingdom,439.41250,1,-9.000,Peer,TS1 TS2,G0UZJ,Time Slot#1 - Group Call 1 = Worldwide Calling (2 min max)
Time Slot#1 - Group Call 2 = Europe
Time Slot#1 - Group Call 13 = Worldwide English
Time Slot#2 - Group Call 235 = UK Repeater
Time Slot#2 - Group Call 8 = Regional
Time Slot#2 - Group Call 9 = Local

You must DISABLE ARS on all time slots

Contact: G0UZJ
Email: kevin.hogg@C-T-S.com,1,BM
235144,GB7IT,Weston-super-Mare,England,United Kingdom,439.51250,1,-9.000,PEER,TS1 TS2,G4SZM,,0,Motorola
-235145,GB3WE,Weston-super-Mare,England,United Kingdom,145.68750,1,-0.600,Peer,TS1 TS2,G1VSX,,0,Motorola
+235145,GB3WE,Weston-super-Mare,England,United Kingdom,145.68750,2,-0.600,Peer,TS1 TS2,G1VSX,,0,BM
+235146,GB3WE,Weston-super-Mare,England,United Kingdom,145.68750,1,-0.600,PEER,TS1 TS2,G4SZM,,0,Motorola
+235147,GB7EG,East Grinstead,England,United Kingdom,439.76250,2,-9.000,PEER,TS1 TS2,G7KBR,,0,None
235148,GB7AS,Ashford Kent,England,United Kingdom,439.42500,3,-9.000,PEER,TS1 TS2,M1CMN,,0,Motorola
235149,GB7DJ,Northwich,England,United Kingdom,439.66250,3,-9.000,PEER,TS1 TS2,M0WTX,,0,None
235150,GB7SD,South Dorset SW Engl,England,United Kingdom,439.41250,1,-9.000,Peer,TS1 TS2,G0ECX,,0,Motorola
-235151,GB3XL,Shipley,England,United Kingdom,430.88750,1,7.600,PEER,TS1 TS2,M0IRK,,0,DMR-plus
-235152,GB7RV,North west ,England ,United Kingdom ,439.62500,2,-9.000,PEER,TS1 TS2,M0NWI,,0,None
-235153,GB7AL,Ipswich ,England ,United Kingdom ,439.40000,2,9.000,PEER,TS1 TS2,M1NIZ,,0,Motorola
-235154,GB7KH,Kelvedon Hatc, Essex,England ,United Kingdom ,439.61250,3,-9.000,PEER,TS1 TS2,M1GEO,,0,BrandMeister
-235155,GB7DO,Skellow, Doncaster ,England ,United Kingdom ,430.86250,5,7.600,PEER,TS1 TS2,G1ILF,,0,BrandMeister
-235160,GB7SR,Sheffield,England,United Kingdom,439.85000,2,-9.400,PEER,TS1 TS2,M0GAV,,0,Motorola
+235151,GB3XL,Shipley,England,United Kingdom,430.88750,1,7.600,PEER,TS1 TS2,M0IRK,,0,BM
+235152,GB7RV,North west,England,United Kingdom,439.62500,2,-9.000,PEER,TS1 TS2,M0NWI,,0,None
+235153,GB7AL,Ipswich,England,United Kingdom,439.40000,2,9.000,PEER,TS1 TS2,M1NIZ,,0,Motorola
+235154,GB7KH,Kelvedon Hatc, Essex,England,United Kingdom,439.61250,3,-9.000,PEER,TS1 TS2,M1GEO,,0,BrandMeister
+235155,GB7DO,Skellow, Doncaster,England,United Kingdom,430.86250,5,7.600,PEER,TS1 TS2,G1ILF,,0,BM
+235160,GB7SR,Sheffield,England,United Kingdom,439.63750,2,-9.000,PEER,TS1 TS2,M0GAV,,0,BM
235161,GB7EK,Whitstable,England,United Kingdom,439.62500,3,-9.000,PEER,TS1 TS2,G6MRI,,0,Motorola
-235165,GB7DS,Norwich,,United Kingdom,439.42500,1,-9.0,PEER,TS1 TS2,M0ZAH,,0,OpenDMR
+235165,GB7DS,Norwich,,United Kingdom,439.42500,1,-9.000,PEER,TS1 TS2,M0ZAH,,0,OpenDMR
+235166,GB7TA,Thorpe St Andrew,England,United Kingdom,430.82500,1,7.600,PEER,TS1 TS2,M0ZAH,,0,Motorola
235168,GB7XYZ,Demo Repeater,England,United Kingdom,439.16250,3,-9.000,Peer,TS1 TS2,G0RDI,,0,Motorola
235169,GB7WL,Amersham,England,United Kingdom,439.70000,3,-9.000,PEER,TS1 TS2,G0RDI,,0,DMRUK
235170,GB7HR,Heathrow Airport,England,United Kingdom,439.45000,3,-9.000,Peer,TS1 TS2,G0OXZ,,0,Motorola
235171,GB7IK,Rochester, Kent,England,United Kingdom,439.43750,3,-9.000,PEER,TS1 TS2,G0RDI,,0,Motorola
235172,GB7BK,BlueBell Hill, Kent,England,United Kingdom,439.57500,4,-9.000,Peer,TS1 TS2,2E1GTB,,0,Motorola
-235177,GB7CT,Tring,England,United Kingdom,439.01250,3,-7.600,PEER,TS1 TS2,G0RDI,GB7CT 145.6375 -0.6 MHz Color Code 3
Time Slot#1 - Group Call 1 = Worldwide Calling (2 min max)
Time Slot#1 - Group Call 13 = Worldwide English

Time Slot#1 - Group Call 2 = Europe
Time Slot#2 - Group Call 235 = UK Repeater
Time Slot#2 - Group Call 8 = Regional
Time Slot#2 - Group Call 9 = Local

You must DISABLE ARS on all time slots

Contact: Iain Philipps , G0RDI
Email: iain@77hz.net,1,DMR-MARC
-235180,GB7BH,Brighton,England,United Kingdom,439.57500,4,-9.000,PEER,TS1 TS2,G7TXU,,0,DMR-plus
+235175,GB3RF,Accrington, Lancashi,England,United Kingdom,145.77500,2,-0.600,PEER,TS1 TS2,G0BMH,,0,DMR-plus
+235176,GB3TU,Tring,England,United Kingdom,433.22500,3,1.600,,,G0RDI,,0,DMR-plus
+235177,GB7CT,Tring,England,United Kingdom,439.01250,3,-7.600,PEER,TS1 TS2,G0RDI,GB7CT 145.6375 -0.6 MHz Color Code 3
Time Slot#1 - Group Call 1 = Worldwide Calling (2 min max)
Time Slot#1 - Group Call 13 = Worldwide English

Time Slot#1 - Group Call 2 = Europe
Time Slot#2 - Group Call 235 = UK Repeater
Time Slot#2 - Group Call 8 = Regional
Time Slot#2 - Group Call 9 = Local

You must DISABLE ARS on all time slots

Contact: Iain Philipps , G0RDI
Email: iain@77hz.net,1,DMRUK
+235180,GB7BH,Brighton,England,United Kingdom,439.57500,4,-9.000,PEER,TS1 TS2,G7TXU,,0,BM
+235181,GB7UZ,Lancaster,England,United Kingdom,439.50000,1,-9.000,PEER,TS1 TS2,G4TUZ,,0,Motorola
235188,GB7FI,Cheddar Somerset,England,United Kingdom,430.88750,3,7.600,PEER,TS1 TS2,G4RKY,,0,Motorola
235189,GB3FI,Axbridge,England,United Kingdom,430.82500,3,7.600,PEER,TS1 TS2,G4RKY,,0,None
-235190,GB7RR,Notts,England,United Kingdom,439.60000,1,-9.000,PEER,TS1 TS2,G0LCG,,0,DMR-plus
+235190,GB7RR,Notts,England,United Kingdom,439.60000,1,-9.000,PEER,TS1 TS2,G0LCG,,0,BM
235191,GB7HUK,Newark, Notts,,England,United Kingdom,439.70000,1,-9.000,PEER,TS1 TS2,G0LCG,,0,DMR-plus
235192,GB3IN,Nr Matlock,England,United Kingdom,430.96250,1,7.600,PEER,TS1 TS2,G4TSN,,0,Hytera
-235199,GB7LN,Lincoln,England,United Kingdom,439.40000,1,-9.000,Peer,TS1 TS2,G0RZR,,0,Motorola
-235200,GB7FC,Blackpool,England,United Kingdom,430.97500,1,7.600,PEER,TS1 TS2,M0AUT,,0,DMR-plus
-235201,GB7FC,Test/Blackpool,England,United Kingdom,430.95000,1,7.600,PEER,TS1 TS2,M0AUT,,0,DMR-plus
+235199,GB7LN,Lincoln,England,United Kingdom,439.40000,1,-9.000,Peer,TS1 TS2,G0RZR,,0,BM
+235200,GB7FC,Blackpool,England,United Kingdom,430.97500,1,7.600,PEER,TS1 TS2,M0AUT,,0,BM
+235201,GB7FC,Test/Blackpool,England,United Kingdom,430.95000,1,7.600,PEER,TS1 TS2,M0AUT,,0,BM
235202,GB7MK,Ipswich,England,United Kingdom,439.60000,13,9.000,PEER,TS1 TS2,M1NIZ,,0,Motorola
-235203,GB7JL,Golborne,England,United Kingdom,430.96250,1,7.600,PEER,TS1 TS2,M0AUT,,0,DMR-plus
+235203,GB7JL,Golborne,England,United Kingdom,430.96250,1,7.600,PEER,TS1 TS2,M0AUT,,0,BM
235205,GB7KM,Cotswold Airport,England,United Kingdom,439.66250,3,9.000,Peer,TS1 TS2,GB7KM,,0,Motorola
-235210,GB7MR,Manchester,England,United Kingdom,439.73750,2,-9.000,PEER,TS1 TS2,G8UVC,,0,DMRUK
-235220,GB7XX,Felling,England,United Kingdom,439.46250,10,-9.000,PEER,TS1 TS2,G4MSF,,0,Motorola
+235210,GB7MR,Manchester,England,United Kingdom,439.73750,2,-9.000,PEER,TS1 TS2,G8UVC,,0,BM
+235220,GB7XX,Felling,England,United Kingdom,439.46250,10,-9.000,PEER,TS1 TS2,G4MSF,,0,BM
+235222,GB7EB,Beccles,England,United Kingdom,439.66250,2,-9.000,PEER,TS1 TS2,M0JGX,,0,OpenDMR
235230,GB7GB,Great Barr,,England,United Kingdom,439.42500,1,-9.000,PEER,TS1 TS2,G8NDT,,0,Motorola
235232,GB7DC,Derby,England,United Kingdom,438.40000,1,-7.600,PEER,TS1 TS2,G7NPW,,0,DMR-plus
235235,GB7ID,Redhill,England,United Kingdom,438.40000,3,-7.600,PEER,TS1 TS2,M0IDD,,0,Motorola
235236,GB7AU,Amersham,England,United Kingdom,439.70000,3,-9.000,PEER,TS1 TS2,G0RDI,,0,Motorola
235238,GB7FB,Blackpool,England,United Kingdom,439.43750,1,9.000,PEER,TS1 TS2,G0WDA,,0,Motorola
235240,GB7RE,Retford,England,United Kingdom,439.71250,1,-9.000,PEER,TS1 TS2,G0RDI,,0,BM
+235242,GB7NF,Newhaven Sussex UK,England,United Kingdom,439.48750,1,-9.000,PEER,TS1 TS2,G0TJH,,0,Hytera
235250,GB7TC,Swindon,,United Kingdom,439.52500,2,-9.000,PEER,TS1 TS2,G8VRI,,0,None
-235269,GB7FU,Pointon,,United Kingdom,439.16250,3,-9.000,PEER,TS1 TS2,M0PFX,,0,OpenDMR
+235252,GB7IQ,Stafford,England,United Kingdom,439.61250,1,-9.000,PEER,TS1 TS2,G7PFT,,0,Motorola
+235260,GB7MH,Turners Hill,England,United Kingdom,439.63750,2,-9.000,PEER,TS1 TS2,G3NZP,,0,BrandMeister
+235269,GB7FU,Pointon,,United Kingdom,439.16250,3,-9.000,PEER,TS1 TS2,G0RDI,,0,OpenDMR
235282,GB7DZ,Newcastle,England,United Kingdom,439.52500,7,-9.000,PEER,TS1 TS2,M0MBA,,0,BM
235290,GB7PE,Peterborough,,United Kingdom,439.50000,3,-9.000,PEER,TS1 TS2,M0ZPU,,0,Motorola
235298,GB7KT,ANDOVER, IO91GE,England,United Kingdom,439.50000,1,-9.000,Peer,TS1 TS2,G3ZXX,,0,Motorola
235299,GB7JB,Willoughby Hedge,England,United Kingdom,439.46250,1,9.000,PEER,TS1 TS2,G3ZXX,,0,Motorola
235300,GB7HM,Hope Mountain,Flintshire,United Kingdom,439.63750,1,-9.000,Peer,TS1 TS2,GW1SYG,,0,DMRUK
-235301,GB7HM,Hope Mountain,Wales,United Kingdom,439.63750,1,-9.000,Peer,TS1 TS2,GW1SYG,Time Slot#1 - Group Call 1 = Worldwide Calling (2 min max)

Time Slot#1 - Group Call 2 = Europe
Time Slot#1 - Group Call 13 = Worldwide English
Time Slot#2 - Group Call 235 = UK Repeater
Time Slot#2 - Group Call 8 = Regional
Time Slot#2 - Group Call 9 = Local

You must DISABLE ARS on all time slots

Contact: Andy Griffith , GW1SYG
Email: gw1syg@pobox.com,1,DMR-MARC
+235301,GB7HM,Hope Mountain,Wales,United Kingdom,439.63750,1,-9.000,Peer,TS1 TS2,GW1SYG,Time Slot#1 - Group Call 1 = Worldwide Calling (2 min max)

Time Slot#1 - Group Call 2 = Europe
Time Slot#1 - Group Call 13 = Worldwide English
Time Slot#2 - Group Call 235 = UK Repeater
Time Slot#2 - Group Call 8 = Regional
Time Slot#2 - Group Call 9 = Local

You must DISABLE ARS on all time slots

Contact: Andy Griffith , GW1SYG
Email: gw1syg@pobox.com,1,Motorola
235302,GB7PN,Prestatyn,Wales,United Kingdom,439.42500,1,-9.000,Peer,TS1 TS2,G4NOY,,0,Motorola
235303,GB7CW,Bridgend,Wales,United Kingdom,439.40000,3,9.000,PEER,TS1 TS2,2W0TRR,Time Slot#1 - Group Call 1 = Worldwide Calling (2 min max)
Time Slot#1 - Group Call 13 = Worldwide English
Time Slot#1 - Group Call 2 = Europe
Time Slot#2 - Group Call 235 = UK Repeaters
Time Slot#2 - Group Call 8 = Regional
Time Slot#2 - Group Call 9 = Local

You must DISABLE ARS on all time slots

Contact: Tom, 2W0TRR
Email: nantyrfc@hotmail.co.uk
Website: www.dmrsouthwales.co.uk,1,Motorola
+235401,GB7GG,Glasgow,Scotland,United Kingdom,439.62500,1,-9.000,PEER,TS1 TS2,GM4AUP,,0,BM
235402,GB7DE,Largo, Fife,Scotland,United Kingdom,439.60000,9,9.000,PEER,TS1 TS2,GM7HHB,,0,None
235403,GB7DE,Largo, Fife,Scotland,United Kingdom,145.63750,9,0.600,PEER,TS1 TS2,GM7HHB,,0,None
235404,GB7JD,NT650206,Scotland,United Kingdom,439.41250,1,-9.000,PEER,TS1 TS2,GM4UPX,,0,None
-235444,GB7EE,Edinburgh,Scotland,United Kingdom,439.57500,1,-9.000,Peer,TS1 TS2,GM7RYR,,0,Motorola
-235499,GB7DD,Dundee,Scotland,United Kingdom,439.66250,1,-9.000,Peer,TS1 TS2,MM0DUN,Time Slot#1 - Group Call 1 = Worldwide Calling (2 min max)
Time Slot#1 - Group Call 13 = Worldwide English

Time Slot#1 - Group Call 2 = Europe
Time Slot#2 - Group Call 235 = UK Repeater
Time Slot#2 - Group Call 8 = Regional
Time Slot#2 - Group Call 9 = Local

You must DISABLE ARS on all time slots

Contact: Martin Higgins, MM0DUN
Email: mm0dun@gb7dd.co.uk (https://3c.web.de/mail/client/mail/mailto;jsessionid=0D048E9DC299F131F356DEE44E910740-n3.bs41b?to=mm0dun%40gb7dd.co.uk&selection=tfol11a5e69aed60d300),1,DMR-MARC
+235405,GB7JD,NT650206,Scotland,United Kingdom,439.41250,1,-9.000,PEER,TS1 TS2,GM4UPX,,0,BrandMeister
+235444,GB7EE,Edinburgh,Scotland,United Kingdom,439.71250,1,-9.000,Peer,TS1 TS2,GM7RYR,,0,BM
+235499,GB7DD,Dundee,Scotland,United Kingdom,439.66250,1,-9.000,Peer,TS1 TS2,MM0DUN,Time Slot#1 - Group Call 1 = Worldwide Calling (2 min max)
Time Slot#1 - Group Call 13 = Worldwide English

Time Slot#1 - Group Call 2 = Europe
Time Slot#2 - Group Call 235 = UK Repeater
Time Slot#2 - Group Call 8 = Regional
Time Slot#2 - Group Call 9 = Local

You must DISABLE ARS on all time slots

Contact: Martin Higgins, MM0DUN
Email: mm0dun@gb7dd.co.uk (https://3c.web.de/mail/client/mail/mailto;jsessionid=0D048E9DC299F131F356DEE44E910740-n3.bs41b?to=mm0dun%40gb7dd.co.uk&selection=tfol11a5e69aed60d300),1,BM
235501,GB3OM,Omagh,Northern Ireland,United Kingdom,430.95000,1,7.600,PEER,TS1 TS2,GI4SXV,Time Slot#1 - Group Call 1 = Worldwide Calling (2 min max)
Time Slot#1 - Group Call 2 = Europe
Time Slot#1 - Group Call 13 = Worldwide English
Time Slot#2 - Group Call 235 = UK Repeater
Time Slot#2 - Group Call 8 = Regional
Time Slot#2 - Group Call 9 = Local

You must DISABLE ARS on all time slots

Contact:
Email:,1,DMR-MARC
235502,GB7UL,Carrickfergus,Northern Ireland,United Kingdom,439.52500,1,-9.000,PEER,TS1 TS2,GI6DKQ,,0,Motorola
-235503,GB7LY,Londonderry,Northern Ireland,United Kingdom,439.66250,1,-9.000,Peer,TS1 TS2,GI4BWM,Time Slot#1 - Group Call 1 = Worldwide Calling (2 min max)
Time Slot#1 - Group Call 2 = Europe
Time Slot#1 - Group Call 13 = Worldwide English
Time Slot#2 - Group Call 235 = UK Repeater
Time Slot#2 - Group Call 8 = Regional
Time Slot#2 - Group Call 9 = Local

You must DISABLE ARS on all time slots

Contact:
Email:,1,DMR-MARC
+235503,GB7LY,Londonderry,Northern Ireland,United Kingdom,439.66250,1,-9.000,Peer,TS1 TS2,GI4BWM,Time Slot#1 - Group Call 1 = Worldwide Calling (2 min max)
Time Slot#1 - Group Call 2 = Europe
Time Slot#1 - Group Call 13 = Worldwide English
Time Slot#2 - Group Call 235 = UK Repeater
Time Slot#2 - Group Call 8 = Regional
Time Slot#2 - Group Call 9 = Local

You must DISABLE ARS on all time slots

Contact:
Email:,1,Motorola
+235504,GB7HB,Tandragee,Northern Ireland,United Kingdom,439.62500,1,-9.000,PEER,TS1 TS2,MI0MSO,,0,Motorola
+235505,GB7KA,Kilrea, COLERAINE,Northern Ireland,United Kingdom,439.71250,3,-9.000,PEER,TS1 TS2,MI0AAZ,,0,BM
+235510,GB7NY,NEWRY,Northern Ireland,United Kingdom,439.68750,1,-9.000,PEER,TS1 TS2,MI0PYN,,0,BM
235601,GB7CA,Carnane, Douglas,Isle of Man,United Kingdom,430.92500,2,7.600,PEER,TS1 TS2,GD4HOZ,,0,Motorola
235602,GB7BR,Bride,Isle of Man,United Kingdom,430.92500,3,7.600,PEER,TS1 TS2,GD4HOZ,,0,Motorola
-235999,GB7DMR,TEST,DEMO,United Kingdom,0.00000,1,0.000,Peer,TS1 TS2,G1XCC,,0,DMRUK
+235999,GB7DMR,TEST,DEMO,United Kingdom,439.71250,5,-9.000,Peer,TS1 TS2,G1XCC,,0,BM
238101,OZ4REN,Stoevring,Nordjylland,Denmark,434.83750,11,-2.000,PEER,TS1 TS2,OZ1JEE,,0,DMR-plus
238102,OZ2DSD,BROENDERSLEV,Nordjylland,Denmark,461.17500,11,-10.000,PEER,TS1 TS2,OZ2NML,,0,DMR-plus
238103,OZ1REC,Vodskov,Nordjylland,Denmark,434.67500,11,-2.000,PEER,TS1 TS2,OZ2NML,,0,DMR-plus
238104,OZ9RET,Hurup Thy,Nordjylland,Denmark,434.55000,11,-2.000,PEER,TS1 TS2,OZ1IIO,,0,Hytera
238105,OZ8EVA,Frederikshavn,Nordjylland,Denmark,434.62500,11,-2.000,Peer,TS1 TS2,OZ1KDG,,0,DMR-plus
-238106,OZ9REW,Boddum ,Nordjylland ,Denmark ,145.78750,1,-0.600,PEER,TS1 TS2,OZ1IIO,,0,BrandMeister
+238106,OZ9REW,Boddum,Nordjylland,Denmark,145.78750,1,-0.600,PEER,TS1 TS2,OZ1IIO,,0,BrandMeister
238137,OZ99XXX,,,,0.00000,0,,PEER,TS1 TS2,,,0,
238201,OZ12DMR,Tophoej,Midtjylland,Denmark,434.78750,3,-2.000,PEER,TS1 TS2,OZ8ABB,Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 240 = Sweden 1
Time Slot #1 - Group Call 9 = Local 1

Time Slot #2 - Group Call 238 = Denmark 2
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio.,1,Motorola
238202,OZ1REL,Thyholm,Midtjylland,Denmark,434.70000,12,-2.000,PEER,TS1 TS2,OZ1NPL,,0,DMR-plus
238203,OZ0REE,Grenaa,Midtjylland,Denmark,434.70000,12,-2.000,PEER,TS1 TS2,OZ4KIM,,0,DMR-plus
238204,OZ1VIB,Viborg,Midtjylland,Denmark,434.61250,12,-2.000,PEER,TS1 TS2,OZ2HN,,0,DMR-plus
238207,OZ17DMR,Fredericia,Midtjylland,Denmark,434.00000,3,-2.000,PEER,TS1 TS2,OZ8ABB,,0,Motorola
-238210,OZ3REQ,Aarhus ,Midtjylland ,Denmark ,434.63750,12,-2.000,PEER,TS1 TS2,OZ1FAR,,0,DMR-plus
+238210,OZ3REQ,Aarhus,Midtjylland,Denmark,434.63750,12,-2.000,PEER,TS1 TS2,OZ1FAR,,0,DMR-plus
238211,OZ24REQ,Risskov,Midtjylland,Denmark,434.77500,2,-2.000,PEER,TS1 TS2,OZ1DOX,,0,Motorola
238220,OZ6REQ,Yding,Midtjylland,Denmark,434.67500,12,-2.000,PEER,TS1 TS2,OZ1FAR,,0,DMR-plus
238250,OZ5LLR,Herning,Midtjylland,Denmark,434.62500,12,-2.000,PEER,TS1 TS2,OZ5LLM,,0,DMR-plus
@@ -599,28 +720,32 @@ 238400,OZ4DMR,Roedovre,,Denmark,0.00000,1,0.000,Master,TS1 TS2,OZ3MAJ,,0,MOT
238401,OZ8DMR,Holte,Hovedstaden,Denmark,434.76250,4,-2.000,PEER,TS1 TS2,OZ8ABB,,0,MOT
238402,OZ7DMR,Vejby,Hovedstaden,Denmark,434.75000,4,-2.000,PEER,TS1 TS2,OZ8ABB,,0,MOT
-238410,OZ6DMR,Helsingoer,Hovedstaden,Denmark,434.63750,14,-2.000,PEER,TS1 TS2,OZ6NOR,,0,DMR-plus
+238403,OZ8HYT,Humlebaek,Hovedstaden,Denmark,434.68750,9,-2.000,PEER,TS1 TS2,OZ8D,,0,BM
+238404,OZ8REZ,Sengeloese,Hovedstaden,Denmark,434.00000,5,-2.000,PEER,TS1 TS2,OZ1BZJ,,0,DMR-plus
+238410,OZ6DMR,Helsingoer,Hovedstaden,Denmark,434.63750,14,-2.000,PEER,TS1 TS2,OZ6NOR,,0,BM
238411,OZ2RET,Helsingor D-Star/DMR,Hovedstaden,Denmark,434.56250,14,-2.000,PEER,TS1 TS2,OZ6NOR,,0,BrandMeister
238412,OZ2RES,Hillerod,Hovedstaden,Denmark,434.60000,14,-2.000,PEER,TS1 TS2,OZ6NOR,,0,BrandMeister
-238420,OZ0KAR,Herlev,Hovedstaden,Denmark,434.62500,14,-2.000,PEER,TS1 TS2,OZ2GRE,,0,DMR-plus
+238420,OZ0KAR,Herlev,Hovedstaden,Denmark,434.62500,14,-2.000,PEER,TS1 TS2,OZ2GRE,,0,BM
238421,OZ30DMR,JO65BS,Hovedstaden,Denmark,434.96250,14,-2.000,PEER,TS1 TS2,OZ3ACC,,0,DMR-plus
-238422,OZ0AMG,Kastrup,Hovedstaden,Denmark,434.68750,14,-2.000,PEER,TS1 TS2,OZ3ACC,,0,DMR-plus
+238422,OZ0AMG,Kastrup,Hovedstaden,Denmark,434.68750,14,-2.000,PEER,TS1 TS2,OZ3ACC,,0,BM
238430,OZ6HYT,Hillerd,Hovedstaden,Denmark,434.56250,14,-2.000,PEER,TS1 TS2,OZ6NOR,,0,DMR-plus
238440,OZ16DMR,Holte 2 test,Hovedstaden,Denmark,434.88750,1,-2.000,PEER,TS1 TS2,OZ8ABB,,0,Motorola
238444,OZ18DMR,Holte,Hovedstaden,Denmark,434.78750,4,-2.000,PEER,TS1 TS2,OZ8ABB,,0,Motorola
238450,OZ2REM,Copenhagen F.,Hovedstaden,Denmark,434.67500,14,-2.000,PEER,TS1 TS2,OZ5WU,,0,DMR-plus
+238455,OZ8HYT,Humlebaek,Hovedstaden,Denmark,434.68750,14,2.000,PEER,TS1 TS2,OZ8D,,0,DMR-plus
238466,OZ20REQ,Copenhagen GLX,Hovedstaden,Denmark,434.71250,4,-2.000,PEER,TS1 TS2,OZ1AFR,Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 238 = Denmark 1
Time Slot #1 - Group Call 9 = Local 1

Time Slot #2 - Group Call 240 = Sweden 2
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio. Contact: OZ1AFR,1,MOT
238467,OZ2REQ,Copenhagen TEST,Hovestaden,Denmark,434.91250,1,-2.000,,TS1 TS2,OZ1AFR,,0,MOT
238468,OZ21REQ,CITY,,Denmark,434.78750,4,-2.000,PEER,TS1 TS2,OZ1DOX,,0,MOT
238477,OZ0ABB,Avedre Test,Hovedstaden,Denmark,434.78750,1,-2.000,PEER,TS1 TS2,OZ8ABB,,0,Motorola
238499,OZ19DMR,Virum Test,Hovedstaden,Denmark,434.88750,1,-2.000,PEER,TS1 TS2,OZ8ABB,,0,Motorola
238500,OZ2DMR,Egebjerg Sj.,Sjaelland,Denmark,434.72500,5,-2.000,PEER,TS1 TS2,OZ5X,,0,MOT
-238501,OZ6REC,Soeby Test,,Denmark,434.88750,9,-2.000,PEER,TS1 TS2,OZ1BCG,,0,DMR+
+238501,OZ6REC,Soeby Test,Sjaelland,Denmark,434.88750,9,-2.000,PEER,TS1 TS2,OZ1BCG,,0,DMR+
238502,OZ3DMR,Nykoebing TEST,Sjaelland,Denmark,434.76250,5,-2.000,PEER,TS1 TS2,OZ5X,,0,DMR-plus
238503,OZ10DMR,Bandholm,Sjaelland,Denmark,434.52500,1,-2.000,Peer,TS1 TS2,OZ2BAP,,0,MOT
238504,OZ0DMR,Ebberup Sj.,Sjaelland,Denmark,434.73750,5,-2.000,PEER,TS1 TS2,OZ1BCG,,0,MOT
-238505,OZ5DMR,Sengeloese Test,,Denmark,0.00000,1,0.000,PEER,TS1 TS2,OZ1BZJ,,0,Motorola
+238505,OZ5DMR,Sengeloese Test,,Denmark,0.00000,5,-2.000,PEER,TS1 TS2,OZ1BZJ,,0,DMR-plus
238506,OZ2REN,Raadegaard,Sjaelland,Denmark,434.80000,5,-2.000,PEER,TS1 TS2,OZ3MAJ,,0,MOT
+238510,OZ25REQ,Bandholm,Sjaelland,Denmark,434.71250,5,-2.000,PEER,TS1 TS2,OZ1DOX,,0,Motorola
238511,OZ22REQ,Slagelse,Sjaelland,Denmark,434.75000,5,-2.000,PEER,TS1 TS2,OZ1DOX,,0,Motorola
238514,OZ14DMR,Helsingoer,Hovedstaden,Denmark,434.98750,4,-2.000,PEER,TS1 TS2,OZ8ABB,,0,Motorola
238515,OZ15DMR,Bregninge,Sjaelland,Denmark,434.71250,5,2.000,PEER,TS1 TS2,OZ1BZJ,,0,Motorola
@@ -628,13 +753,14 @@ 238540,OZ0REC,Vordingborg,Sjaelland,Denmark,434.70000,15,-2.000,PEER,TS1 TS2,OZ5WU,,0,DMR-plus
238542,OZ2BRS,Gilleleje,Sjaelland,Denmark,432.85000,2,2.000,PEER,TS1 TS2,OZ2BRS,,0,MOT
238550,OZ5KAR,Cbrdge TEST 2,Sjaelland,Denmark,434.80000,2,-2.000,Peer,TS1 TS2,OZ5X,,0,Motorola
-238554,OZ1REN,Nakskov,Sjaelland,Denmark,434.67500,15,-2.000,PEER,TS1 TS2,OZ2BAP,,0,Hytera
+238551,OZ8KAR,Snertinge,Sjaelland,Denmark,434.70000,15,-2.000,PEER,TS1 TS2,OZ1BZJ,,0,DMR-plus
+238554,OZ1REN,Nakskov,Sjaelland,Denmark,434.67500,15,-2.000,PEER,TS1 TS2,OZ2BAP,,0,DMR-plus
238555,OZ7REX,Hoejby,Sjaelland,Denmark,434.72500,5,-2.000,PEER,TS1 TS2,OZ5X,,0,Motorola
-238560,OZ3KAR,Gundsoemagle,Sjaelland,Denmark,434.70000,14,-2.000,PEER,TS1 TS2,OZ3ACC,,0,DMR-plus
-238564,OZ0REN,Nykoebing Falster,Sjaelland,Denmark,434.63750,15,-2.000,PEER,TS1 TS2,OZ2BAP,,0,Hytera
+238560,OZ3KAR,Gundsoemagle,Sjaelland,Denmark,434.70000,14,-2.000,PEER,TS1 TS2,OZ3ACC,,0,BM
+238564,OZ0REN,Nykoebing Falster,Sjaelland,Denmark,434.63750,15,-2.000,PEER,TS1 TS2,OZ2BAP,,0,DMR-plus
238570,OZ2KAR,Roskilde,Sjaelland,Denmark,434.66250,15,-2.000,PEER,TS1 TS2,OZ2GRE,,0,DMR-plus
238571,OZ2REF,Herfoelge,Sjaelland,Denmark,434.93750,15,-2.000,PEER,TS1 TS2,OZ1EIZ,,0,DMR-plus
-238572,OZ9REF,Stubbekoebing,Sjaelland,Denmark,434.61250,15,-2.000,PEER,TS1 TS2,OZ2GRE,,0,DMR-plus
+238572,OZ9REF,Stubbekoebing,Sjaelland,Denmark,434.61250,15,-2.000,PEER,TS1 TS2,OZ1EIZ,,0,BM
238573,OZ4REF,Slagelse,Sjaelland,Denmark,434.61250,15,-2.000,PEER,TS1 TS2,OZ1IEP,,0,DMR-plus
238574,OZ8REK,Bandholm,Sjaelland,Denmark,434.65000,15,-2.000,PEER,TS1 TS2,OZ2BAP,,0,DMR-plus
238575,OZ4REG,Regnemark,Sjaelland,Denmark,434.63750,9,-2.000,PEER,TS1 TS2,OZ2GRE,,0,BM
@@ -647,171 +773,224 @@ 238999,OZ0REX,CBridge,Sjaelland,Denmark,434.00000,1,0.000,PEER,TS1 TS2,5Q5XX,,0,DMR-plus
240001,SK0JS,Tyreso,Stockholm County,Sweden,434.00000,1,0.000,PEER,TS1 TS2,SM0TSC,,0,DMR-plus
240002,SG0SZK,Vaermdoe,Stockholms luon,Sweden,434.58750,1,-2.000,PEER,TS1 TS2,SM0SZK,,0,DMR-plus
-240010,SK0RMQ,Tyreso,Stockholm,Sweden,434.51250,12,-2.000,PEER,TS1 TS2,SM0TSC,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 240 = Sweden 1
Time Slot #1 - Group Call 9 = Local 1

Time Slot #2 - Group Call 240 = Sweden 2
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio.


Contact: Johan Hansson, SM0TSC
Email: sm0tsc@gmail.com,1,DMR-MARC
+240003,SM0WIU,Sodertorn,,Sweden,434.61250,1,-2.000,PEER,TS1 TS2,SM0TSC,,0,BrandMeister
+240010,SK0RMQ,Tyreso,Stockholm,Sweden,434.51250,12,-2.000,PEER,TS1 TS2,SM0TSC,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 240 = Sweden 1
Time Slot #1 - Group Call 9 = Local 1

Time Slot #2 - Group Call 240 = Sweden 2
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio.


Contact: Johan Hansson, SM0TSC
Email: sm0tsc@gmail.com,1,DMR-plus
240011,SK0RNQ,Tyreso,Stockholm,Sweden,439.38750,2,-7.6,Master,TS1 TS2,SM0TSC,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 240 = Sweden 1
Time Slot #1 - Group Call 9 = Local 1

Time Slot #2 - Group Call 240 = Sweden 2
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio.


Contact: Johan Hansson, SM0TSC
Email: sm0tsc@gmail.com,1,DMR-MARC
-240012,SK0NN,Tyreso/Haninge,Stockholm,Sweden,434.53750,1,-2.000,PEER,TS1 TS2,SM0TSC,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 240 = Sweden 1
Time Slot #1 - Group Call 9 = Local 1

Time Slot #2 - Group Call 240 = Sweden 2
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio.


Contact: Johan Hansson, SM0TSC
Email: sm0tsc@gmail.com,1,DMR-MARC
-240013,SK0MQ,Taby,Stockholm,Sweden,434.56250,1,-2.000,PEER,TS1 TS2,SM0TSC,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 240 = Sweden 1
Time Slot #1 - Group Call 9 = Local 1

Time Slot #2 - Group Call 240 = Sweden 2
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio.


Contact: Johan Hansson, SM0TSC
Email: sm0tsc@gmail.com,1,DMR-MARC
-240024,SK0RPF,Sigtuna ,Stockholm County ,Sweden ,434.88750,1,-2.000,PEER,TS1 TS2,SM0VKU,,0,DMR-plus
-240097,SK0RYG,Upplands Vasby,Stockholms luon,Sweden,434.76250,1,-2.000,PEER,TS1 TS2,SM0RGQ,,0,DMR-plus
+240012,SK0NN,Tyreso/Haninge,Stockholm,Sweden,434.53750,1,-2.000,PEER,TS1 TS2,SM0TSC,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 240 = Sweden 1
Time Slot #1 - Group Call 9 = Local 1

Time Slot #2 - Group Call 240 = Sweden 2
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio.


Contact: Johan Hansson, SM0TSC
Email: sm0tsc@gmail.com,1,BM
+240013,SK0MQ,Taby,Stockholm,Sweden,434.56250,1,-2.000,PEER,TS1 TS2,SM0TSC,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 240 = Sweden 1
Time Slot #1 - Group Call 9 = Local 1

Time Slot #2 - Group Call 240 = Sweden 2
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio.


Contact: Johan Hansson, SM0TSC
Email: sm0tsc@gmail.com,1,BM
+240015,SK0MM,Varmdoe,Stockholms laen,Sweden,434.97500,1,-2.000,PEER,TS1 TS2,SM0OAZ,,0,BM
+240024,SK0RPF,Sigtuna,Stockholm County,Sweden,434.88750,1,-2.000,PEER,TS1 TS2,SM0VKU,,0,DMR-plus
+240090,SK0SX,Upplands Vaesby,Stockholms luon,Sweden,434.57500,1,-2.000,PEER,TS1 TS2,SM0SHG,,0,Motorola
+240097,SK0RYG,Upplands Vasby,Stockholms luon,Sweden,434.76250,1,-2.000,PEER,TS1 TS2,SM0RGQ,,0,BM
240098,SG0DMR,Soedertaelje,Stockholm County,Sweden,434.50000,1,-2.000,Peer,TS1 TS2,SM0TSC,,0,DMR-plus
240099,SK0MG,Stockholm City,Stockholm County,Sweden,434.68750,1,-2.000,PEER,TS1 TS2,SM0TSC,,0,DMR-plus
-240201,SK2RGJ,Kiruna,Norrbotten County,Sweden,434.51250,2,-2.000,PEER,TS1 TS2,SA2CJG,,0,Motorola
+240201,SK2RGJ,Kiruna,Norrbotten County,Sweden,434.51250,2,-2.000,PEER,TS1 TS2,SA2CJG,,0,BM
240301,SK3RFG,Sundsvall,Jaemtlands laen,Sweden,434.80000,3,-2.000,PEER,TS1 TS2,SM3EFS,,0,DMR+
-240401,SK4BW,Borlange - Sweden,Dalarna County,Sweden,434.85000,12,-2.000,PEER,TS1 TS2,SM4XBL,,0,Motorola
-240501,SL5ZYT,FRO Norrkoping,ustergutland County,Sweden,434.95000,1,-2.000,PEER,TS1 TS2,SM5YLG,,0,DMR-plus
+240401,SK4BW,Borlange - Sweden,Dalarna County,Sweden,434.85000,12,-2.000,PEER,TS1 TS2,SM4XBL,,0,BM
+240501,SL5ZYT,FRO Norrkoping,ustergutland County,Sweden,434.95000,1,-2.000,PEER,TS1 TS2,SM5YLG,,0,BM
240502,SL5ZO,Finspng,ustergutland County,Sweden,434.92500,1,-2.000,PEER,TS1 TS2,SM5YLG,,0,DMR-plus
-240601,SL6ZAQ,Uddevalla,Vuostra Gutaland Cou,Sweden,145.63750,1,-0.6,PEER,TS1 TS2,SM6WZR,,0,DMR-plus
-240610,SM6TKT,Boras,,Sweden,434.55000,1,-2.000,PEER,TS1 TS2,SM6TKT,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 240 = Sweden 1
Time Slot #1 - Group Call 9 = Local 1

Time Slot #2 - Group Call 240 = Sweden 2
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio.


Contact: Claes Kylemark, SM6TKT
Email: info@multilocator.com,1,DMR-MARC
-240611,SK6DZ,Vargarda,,Sweden,434.57500,2,-2.000,PEER,TS1 TS2,SM6VUL,,0,SM-TRBOnet
-240612,SG6BNA,,Vuostra Gutaland County,Sweden,434.41250,1,0.000,PEER,TS1 TS2,,,0,None
+240601,SL6ZAQ,Uddevalla,Vuostra Gutaland Cou,Sweden,145.63750,1,-0.600,PEER,TS1 TS2,SM6WZR,,0,BM
+240610,SM6TKT,Boras,,Sweden,434.55000,6,-2.000,PEER,TS1 TS2,SM6TKT,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 240 = Sweden 1
Time Slot #1 - Group Call 9 = Local 1

Time Slot #2 - Group Call 240 = Sweden 2
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio.


Contact: Claes Kylemark, SM6TKT
Email: info@multilocator.com,1,BM
+240611,SK6DZ,Vargarda,,Sweden,434.57500,2,-2.000,PEER,TS1 TS2,SM6VUL,,0,BM
+240612,SK6DZ,Vargarda,Vaestra Goetaland Co,Sweden,434.22500,6,-2.000,PEER,TS1 TS2,SA6AUN,,0,BrandMeister
240666,SE6H,Gothenburg (Lunden),Vuostra Gutaland County,Sweden,433.52500,2,0.000,PEER,TS1 TS2,SA6CJN,,0,None
240699,SG6DMR,Goeteborg,Vuostra Gutaland Cou,Sweden,434.57500,1,-2.000,PEER,TS1 TS2,SM0TSC,,0,DMR-plus
-240700,SG7DMR,Skane,,Sweden,434.61250,7,-2.000,PEER,TS1 TS2,SM7SKI,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 240 = Sweden 1
Time Slot #1 - Group Call 9 = Local 1

Time Slot #2 - Group Call 240 = Sweden 2
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio.


Contact:Patrik Nilsson, SM7URN
Email: sm7urn@ssa.se,1,DMR-MARC
-240702,SK7REE,Kagerod,Skune luon,Sweden,434.65000,7,-2.000,PEER,TS1 TS2,SM0TSC,,0,DMR-plus
-240703,SK7REP,MALMOE,Skune County,Sweden,434.77500,7,-2.000,PEER,TS1 TS2,SM0TSC,,0,DMR-plus
-240704,SA7BIK,JO65QU,Malmoehus-M,Sweden,434.91250,7,-2.000,PEER,TS1 TS2,SA7BIK,,0,Hytera
-240706,SG7BNT,Bruzaholm,Jonkoping County,Sweden,434.60000,7,-2.000,PEER,TS1 TS2,SA7BNT,,0,Hytera
-242601,LD2HJ,JP50OW ,Hedmark ,Norway ,434.70000,1,-2.000,PEER,TS1 TS2,LB5JE,,0,BrandMeister
+240700,SG7DMR,Skane,,Sweden,434.61250,7,-2.000,PEER,TS1 TS2,SM7SKI,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 240 = Sweden 1
Time Slot #1 - Group Call 9 = Local 1

Time Slot #2 - Group Call 240 = Sweden 2
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio.


Contact:Patrik Nilsson, SM7URN
Email: sm7urn@ssa.se,1,BM
+240701,SK7RJL,Lund,,Sweden,434.58750,7,-2.000,PEER,TS1 TS2,SM7SKI,,0,BM
+240702,SK7REE,Kagerod,Skune luon,Sweden,434.65000,7,-2.000,PEER,TS1 TS2,SM0TSC,,0,BM
+240703,SK7REP,MALMOE,Skune County,Sweden,434.77500,7,-2.000,PEER,TS1 TS2,SM0TSC,,0,BM
+240704,SA7BIK,JO65QU,Malmoehus-M,Sweden,434.91250,7,-2.000,PEER,TS1 TS2,SA7BIK,,0,BM
+240706,SG7BNT,Bruzaholm,Jonkoping County,Sweden,434.60000,7,-2.000,PEER,TS1 TS2,SA7BNT,,0,DMR-plus
+240707,SG7RFH,Nassjo,Joenkoepings laen,Sweden,434.90000,7,-2.000,PEER,TS1 TS2,SM7LFA,,0,BrandMeister
+242101,LA1KRR,Brum,Akershus,Norway,434.92500,1,-2.000,PEER,TS1 TS2,LA8GKA,,0,BrandMeister
+242601,LD2HJ,JP50OW,Hedmark,Norway,434.70000,1,-2.000,PEER,TS1 TS2,LB5JE,,0,BrandMeister
+242801,LA9NR,Toensberg,Vestfold,Norway,434.95000,3,-2.000,PEER,TS1 TS2,LA7MHA,,0,BM
242901,LA6PR,Bodo,Nordland,Norway,434.67500,1,-2.000,Master,Mixed Mode,LA2GTA,,0,HYTERA
242902,LD8MK,Mosjoen,Nordland,Norway,434.82500,1,-2.000,Peer,TS1 TS2,LA9KY,,0,None
242903,LD8SA,Sandnessjoen,Nordland,Norway,434.80000,1,-2.000,PEER,TS1 TS2,LA5LIA,,0,Motorola
242904,LD8MR,Rana,Mo DV-rptr,Nordland,Norway,434.85000,1,-2.000,PEER,TS1 TS2,LA1PHA,,0,Motorola
+242910,LA7ZR,Harstad,Troms,Norway,434.62500,1,-2.000,PEER,TS1 TS2,LA9YBA,,0,BM
+242911,LA9HRR,Harstad,Troms,Norway,434.80000,1,2.000,PEER,TS1 TS2,LA9YBA,,0,BrandMeister
+242912,LA9HRR,Ldingen,Nordland,Norway,145.67500,1,0.600,PEER,TS1 TS2,LA9YBA,,0,BrandMeister
244001,OH0RUA,Jomala,Aland Is,Finland,439.92500,1,-9.4,PEER,TS1 TS2,SM0TSC,,0,DMR-plus
-244002,OH0RUB,Jomala,Aland Is,Finland,434.55000,1,-2.000,PEER,TS1 TS2,SM0TSC,,0,DMR-plus
-244200,OH2DMR,Helsinki,,Finland,434.57500,1,-2.000,PEER,TS1 TS2,OH2LAK,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 244 = Finland 1
Time Slot #1 - Group Call 9 = Local 1

Time Slot #2 - Group Call 244 = Finland 2
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio.


Contact: Erik Finskas, OH2LAK
Email: erik@finskas.net,1,DMR-MARC
+244002,OH0RUB,Jomala,Aland Is,Finland,434.55000,1,-2.000,PEER,TS1 TS2,SM0TSC,,0,BM
+244200,OH2DMR,Helsinki,,Finland,434.57500,1,-2.000,PEER,TS1 TS2,OH2LAK,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 244 = Finland 1
Time Slot #1 - Group Call 9 = Local 1

Time Slot #2 - Group Call 244 = Finland 2
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio.


Contact: Erik Finskas, OH2LAK
Email: erik@finskas.net,1,OHTRBO
244201,OH2DMRA,Espoo,Uudenmaa,Finland,434.51250,1,-2.000,PEER,TS1 TS2,OH2LAK,,0,Motorola
244202,OH2LAK,Espoo,Uudenmaa,Finland,434.56250,1,-2.000,PEER,TS1 TS2,OH2LAK,,0,Motorola
244203,OH2ERJ,Tilkantori,Uudenmaa,Finland,434.53750,1,-2.000,PEER,TS1 TS2,OH2ERJ,,0,Motorola
-244298,OH2CBR,Espoo,Uudenmaa,Finland,439.46250,1,-7.6,PEER,TS1 TS2,OH2LAK,,0,DMR-plus
+244298,OH2CBR,Espoo,Uudenmaa,Finland,439.46250,1,-7.600,PEER,TS1 TS2,OH2LAK,,0,DMR-plus
244299,OH2CH,Espoo,Uudenmaa,Finland,434.57500,1,-2.000,PEER,TS1 TS2,OH2LAK,,0,Motorola
-244300,OH3RNE,Tampere,,Finland,434.52500,1,-2.000,PEER,TS1 TS2,OH3KGR,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 244 = Finland 1
Time Slot #1 - Group Call 9 = Local 1

Time Slot #2 - Group Call 244 = Finland 2
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio.


Contact: ----------, OH3KGR
Email: ----------,1,DMR-MARC
+244300,OH3RNE,Tampere,,Finland,434.52500,1,-2.000,PEER,TS1 TS2,OH3KGR,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 244 = Finland 1
Time Slot #1 - Group Call 9 = Local 1

Time Slot #2 - Group Call 244 = Finland 2
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio.


Contact: ----------, OH3KGR
Email: ----------,1,OHTRBO
244310,OH3RNE,Tesoma,,Finland,434.55000,1,-2.000,PEER,TS1 TS2,OH3KGR,,0,OHTRBO
-244320,OH3DMRA,Lahti,,Finland,434.55000,1,-2.000,PEER,TS1 TS2,OH3LFQ,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 244 = Finland 1
Time Slot #1 - Group Call 9 = Local 1

Time Slot #2 - Group Call 244 = Finland 2
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio.


Contact: ----------, OH3LFQ
Email: ----------,1,DMR-MARC
+244320,OH3DMRA,Lahti,,Finland,434.55000,1,-2.000,PEER,TS1 TS2,OH3LFQ,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 244 = Finland 1
Time Slot #1 - Group Call 9 = Local 1

Time Slot #2 - Group Call 244 = Finland 2
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio.


Contact: ----------, OH3LFQ
Email: ----------,1,OHTRBO
244501,OH5RUD,Lappeenranta,Kymi,Finland,434.53750,1,-2.000,PEER,TS1 TS2,OH5HCJ,,0,Motorola
244599,OH5DMR,Lappeenranta,Kymi,Finland,434.53750,1,-2.000,PEER,TS1 TS2,OH5HCJ,,0,Motorola
244801,OH8RUA,Kempele, Finland,Oulu,Finland,434.75000,1,-2.000,PEER,TS1 TS2,OH6NVG,,0,Motorola
244802,OH8RMD,Radiotie, Kiiminki,Oulu,Finland,145.63750,1,-0.600,PEER,TS1 TS2,OH6NVG,,0,Motorola
+247004,YL3RCL,Riga,,Latvia,438.67500,1,-7.600,,,YL3CL,,0,BrandMeister
250001,RR3DAC,Moscow,,Russia,434.72500,1,5.100,Peer,TS1 TS2,R2DFR,,0,Motorola
250333,RR3DAB,Moscow,,Russia,434.65000,1,5.200,Peer,TS1 TS2,R2DDM,,0,Motorola
250777,RR3DT,Moscow (Podolsk),,Russia,145.67500,1,-0.600,Peer,TS1 TS2,R2DDS,,0,Motorola
+255002,UR0CUA,Chigirin city,,Ukraine,438.65000,1,7.600,,,UR3VKE,,0,None
255255,UT7NP,Vinnitsa,,Ukraine,145.60000,1,-0.600,Peer,TS1 TS2,UT7NP,,0,Hytera
-255555,UR0DMM,Polonyna Rivna mount,,Ukraine,438.65000,1,-7.6,Peer,TS1 TS2,UZ5DX,,0,DMR-plus
+255555,UR0DMM,Polonyna Rivna mount,,Ukraine,438.65000,1,-7.600,Peer,TS1 TS2,UZ5DX,,0,BM
+255984,UR0HUA,Poltava,,Ukraine,438.77500,1,-7.600,,,UZ5DX,,0,BrandMeister
255985,UR0UUB,Kyiv,,Ukraine,438.70000,1,-7.600,Peer,TS1 TS2,UZ5DX,,0,Hytera
255986,UR0EUB,Dnipropetrovsk,,Ukraine,439.60000,1,-7.600,Peer,TS1 TS2,UZ5DX,,0,
-255990,UR0UUA,Kyiv,,Ukraine,439.37500,1,-7.6,PEER,TS1 TS2,UZ5DX,,0,DMR-plus
-255991,UR0FUA,Odesa,,Ukraine,438.87500,1,-7.6,PEER,TS1 TS2,UZ5DX,,0,DMR-plus
-255992,UR0WUB,Lviv,,Ukraine,439.45000,1,-7.6,PEER,TS1 TS2,UZ5DX,,0,DMR-plus
-255993,UR0EUA,Dnipropetrovsk,,Ukraine,438.75000,1,-7.6,PEER,TS1 TS2,UZ5DX,,0,DMR-plus
-255994,UR0WUA,Trostyan, Slavske,,Ukraine,439.22500,1,-7.6,PEER,TS1 TS2,UZ5DX,,0,DMR-plus
-255995,UR0DMU,Mukachevo,,Ukraine,438.96250,1,-7.6,PEER,TS1 TS2,UZ5DX,,0,DMR-plus
-255996,UR0DMV,Vinogradov,,Ukraine,439.38750,1,-7.6,PEER,TS1 TS2,UZ5DX,,0,DMR-plus
-255997,UR0UVU,Kyiv,,Ukraine,438.65000,1,-7.6,PEER,TS1 TS2,UZ5DX,,0,DMR-plus
-255998,UR0DMS,Rokosovo,,Ukraine,439.32500,1,-7.6,PEER,TS1 TS2,UZ5DX,,0,DMR-plus
-255999,UR0DMR,Uschhorod,Transkarpatien,Ukraine,439.35000,1,-7.6,PEER,TS1 TS2,UZ5DX,,0,DMR-plus
-260102,SR1UVX,Stargard Szczecinski,Zachodniopomorskie,Poland,439.38750,1,-7.6,PEER,TS1 TS2,SQ9JTI,,0,DMR-plus
-260201,SR2GR,Grudziadz,Kuyavian-Pomeranian ,Poland,439.20000,4,-7.600,PEER,TS1 TS2,SP2OFR,,0,None
+255990,UR0UUA,Kyiv,,Ukraine,439.37500,1,-7.600,PEER,TS1 TS2,UZ5DX,,0,BM
+255991,UR0FUA,Odesa,,Ukraine,438.87500,1,-7.600,PEER,TS1 TS2,UZ5DX,,0,BM
+255992,UR0WUB,Lviv,,Ukraine,439.45000,1,-7.600,PEER,TS1 TS2,UZ5DX,,0,BM
+255993,UR0EUA,Dnipropetrovsk,,Ukraine,438.75000,1,-7.600,PEER,TS1 TS2,UZ5DX,,0,BM
+255994,UR0WUA,Trostyan, Slavske,,Ukraine,438.75000,1,-7.600,PEER,TS1 TS2,UZ5DX,,0,BM
+255995,UR0DMU,Mukachevo,,Ukraine,438.96250,1,-7.600,PEER,TS1 TS2,UZ5DX,,0,BM
+255996,UR0DMV,Vinogradov,,Ukraine,438.77500,1,-7.600,PEER,TS1 TS2,UZ5DX,,0,BM
+255997,UR0UVU,Kyiv,,Ukraine,438.65000,1,-7.600,PEER,TS1 TS2,UZ5DX,,0,DMR-plus
+255998,UR0DMS,Rokosovo,,Ukraine,438.67500,1,-7.600,PEER,TS1 TS2,UZ5DX,,0,BM
+255999,UR0DMR,Uschhorod,Transkarpatien,Ukraine,438.65000,1,-7.600,PEER,TS1 TS2,UZ5DX,,0,BM
+259001,ER1VOX,Chisinau,,Moldava,439.00000,10,-7.600,,,ER1IL,,0,Motorola
+260101,SR1SZ,Szczecin,Zachodniopomorskie,Poland,439.07500,1,-7.600,,,SP1XNA,,0,Hytera
+260102,SR1UVX,Stargard Szczecinski,Zachodniopomorskie,Poland,439.38750,1,-7.600,PEER,TS1 TS2,SQ9JTI,,0,BM
+260201,SR2GR,Grudziadz,Kuyavian-Pomeranian,Poland,439.20000,4,-7.600,PEER,TS1 TS2,SP2OFR,,0,None
260202,SR2VVV,Korfantowka Mountain,Kujawsko-Pomorskie,Poland,439.33750,2,-7.600,Peer,TS1 TS2,SP2GG,,0,None
260203,SR2UVV,Jablowo-Tower,Kujawsko-Pomorskie,Poland,439.31250,2,-7.600,Peer,TS1 TS2,SP2GG,,0,None
-260301,SR3DMR,Poznan,Greater Poland Voivo,Poland,145.61250,1,-0.6,PEER,TS1 TS2,SP3YOR,,0,DMR-plus
-260401,SR4ONT,Olsztyn,Warmian-Masurian Voi,Poland,438.50000,1,-7.600,Peer,TS1 TS2,SQ4BJA,,0,Hytera
-260402,SR4MID,Milki ,Maine ,Poland ,438.22500,1,-7.600,PEER,TS1 TS2,SQ4FXY,,0,BM
+260301,SR3DMR,Poznan,Greater Poland Voivo,Poland,145.61250,1,-0.600,PEER,TS1 TS2,SP3YOR,,0,BM
+260350,SR3UVP,Poznan Piatkowo,Greater Poland Voivo,Poland,439.43750,1,-7.600,,,SP3VSS,,0,BrandMeister
+260401,SR4ONT,Olsztyn,Warmian-Masurian Voi,Poland,438.50000,1,-7.600,Peer,TS1 TS2,SQ4BJA,,0,BM
+260402,SR4MID,Milki,Maine,Poland,438.22500,1,-7.600,PEER,TS1 TS2,SQ4FXY,,0,BM
260404,SR4KT,Ketrzyn,Warmian-Masurian Voi,Poland,439.27500,1,-7.600,Peer,TS1 TS2,SQ4AFJ,,0,Hytera
+260410,SR4DGD,Gora Dylewska,Warminsko-Mazurskie,Poland,438.25000,1,-7.600,,,SQ4LWO,,0,BM
260440,SR4UVE,Paslek,Warmian-Masurian Voi,Poland,438.60000,1,-7.600,Peer,TS1 TS2,SQ4KDK,,0,Motorola
260444,SR4MR,Mragowo/Mazury,warmisko-mazurskie,Poland,439.15000,1,7.600,Peer,TS1 TS2,SQ4FAE,,0,None
-260501,SR5WB,Warszawa / Pruszkow,Mazowieckie,Poland,438.55000,1,-7.6,PEER,TS1 TS2,SQ9JTI,,0,DMR-plus
+260501,SR5WB,Warszawa / Pruszkow,Mazowieckie,Poland,438.55000,1,-7.600,PEER,TS1 TS2,SQ9JTI,,0,BM
260502,SR5WZ,Moszna Parcela,Mazowieckie,Poland,439.00000,1,-7.600,PEER,TS1 TS2,SP5QWK,,0,Hytera
+260504,SR5C,Nasierowo-Dziurawien,Mazowieckie,Poland,438.72500,1,-7.600,,,SQ5OMZ,,0,BrandMeister
260510,SQ5H,Moszna-Parcela,Mazowieckie,Poland,438.60000,1,-7.600,Peer,TS1 TS2,SQ5H,,0,None
-260601,SR6DMR,JO81MC,Dolnoslaskie,Poland,438.26250,6,-7.6,Peer,TS1 TS2,SQ6NCJ,,0,Motorola
+260601,SR6DMR,JO81MC,Dolnoslaskie,Poland,438.48750,1,-7.600,Peer,TS1 TS2,SQ6NCJ,,0,BM
260602,SR6DMO,Olawa,Lower Silesian Voivo,Poland,438.62500,1,-7.600,PEER,TS1 TS2,SQ6NCJ,,0,Motorola
-260701,SR7DMR,Kamiensk Mountain,Lodzkie,Poland,439.56250,1,-7.6,Peer,TS1 TS2,SQ7LRX,,0,DMR-plus
+260603,SR6UVO,Brzezie k. Opola,Opole Voivodeship,Poland,439.38750,1,-7.600,,,SQ6IUB,,0,BrandMeister
+260604,SR6WB,Wroclaw,Lower Silesian Voivo,Poland,439.46250,1,-7.600,,,SQ6ROK,,0,BrandMeister
+260701,SR7DMR,Kamiensk Mountain,Lodzkie,Poland,438.27500,1,-7.600,Peer,TS1 TS2,SQ7LRX,,0,BM
260801,SR8UD,Ustrzyki Dolne,Wojewudztwo podkarpa,Poland,438.37500,1,-7.600,Peer,TS1 TS2,SP8WJS,,0,None
260802,SR8UD,Ustrzyki Dolne,Wojewudztwo podkarpa,Poland,145.57500,1,-0.600,Peer,TS1 TS2,SP8WJS,,0,None
+260803,SR8UWD,Wlodawa,Lublin Voivodeship,Poland,438.51250,1,-7.600,,,SP8NTH,,0,Hytera
+260808,SR8UVC,Chotylow,Lublin Voivodeship,Poland,439.55000,1,-7.600,,,SP8QEO,,0,BrandMeister
+260860,SR8MOT,Biala Podlaska,Lublin Voivodeship,Poland,145.58750,8,-0.600,,,SQ8ISJ,,0,Hytera
260888,SR8UVL,Lublin,Lublin Voivodeship,Poland,438.82500,1,7.600,Peer,TS1 TS2,SQ8OHR,,0,Motorola
-260901,SR9VDM,Tarnow,Lesser Poland,Poland,438.20000,1,-7.6,PEER,TS1 TS2,SQ9JTI,,0,DMR-plus
-260902,SR9RB,Rybnik,Silesian Voivodeship,Poland,438.50000,1,-7.600,PEER,TS1 TS2,SQ9VH,,0,HYTERA
-260903,SR9DMR,Katowice,Silesian Voivodeship,Poland,438.45000,1,-7.6,PEER,TS1 TS2,SQ9JTI,,0,DMR-plus
-260904,SR9DGC,Gliwice,Silesian Voivodeship,Poland,438.37500,1,-7.6,Peer,TS1 TS2,SP9UXY,,0,DMR-plus
-260905,SR9BSR,Bielsko-Biala,Silesian Voivodeship,Poland,438.25000,1,-7.6,PEER,TS1 TS2,SQ9JTI,,0,DMR-plus
+260901,SR9VDM,Tarnow,Lesser Poland,Poland,438.20000,1,-7.600,PEER,TS1 TS2,SQ9JTI,,0,BM
+260902,SR9RB,Rybnik,Silesian Voivodeship,Poland,438.50000,1,-7.600,PEER,TS1 TS2,SQ9VH,,0,BM
+260903,SR9DMR,Katowice,Silesian Voivodeship,Poland,438.45000,1,-7.600,PEER,TS1 TS2,SQ9JTI,,0,BM
+260904,SR9DGC,Gliwice,Silesian Voivodeship,Poland,438.37500,1,-7.600,Peer,TS1 TS2,SP9UXY,,0,BM
+260905,SR9BSR,Bielsko-Biala,Silesian Voivodeship,Poland,438.25000,1,-7.600,PEER,TS1 TS2,SQ9JTI,,0,BM
260906,SR9KR,Krakow,maeopolskie,Poland,439.27500,1,-7.600,PEER,TS1 TS2,SP9SVH,,0,Hytera
260907,SR9DV,Koniakow-Ochodzita,,Poland,438.32500,1,7.600,PEER,TS1 TS2,SQ9MYX,,0,BrandMeister
260908,SR9BN,Bedzin,Silesian Voivodeship,Poland,439.22500,1,-7.600,Peer,TS1 TS2,SQ9GIN,,0,Hytera
260909,SR9DBN,Bedzin,Silesian Voivodeship,Poland,438.47500,1,-7.600,Peer,TS1 TS2,SQ9GIN,,0,Hytera
+260910,SR9UVR,Raba Wyzna-Bukowina,Lesser Poland Voivod,Poland,439.30000,1,-7.600,,,SQ9OKR,,0,BrandMeister
+260911,SR9UVT,Gron-Lesnica,maeopolskie,Poland,439.23750,1,-7.600,,,SP9SVH,,0,BrandMeister
+260987,SR9TR,Lichwin,Lesser Poland Voivod,Poland,439.17500,1,-7.600,,,SQ9PCH,,0,BrandMeister
260997,SR9VVO,Lichwin / Tarnow,Malopolskie,Poland,439.43750,1,-7.600,Peer,TS1 TS2,SQ9PCH,,0,Hytera
-260998,SR9DRB,Rybnik,Silesian Voivodeship,Poland,438.50000,1,-7.6,PEER,TS1 TS2,SQ9JTI,,0,DMR-plus
+260998,SR9DRB,Rybnik,Silesian Voivodeship,Poland,438.50000,1,-7.600,PEER,TS1 TS2,SQ9JTI,,0,DMR-plus
260999,SR9SZ,Zawiercie, PL,Slaskie,Poland,439.15000,1,-7.600,Peer,TS1 TS2,SQ9NFI,,0,None
+262001,IPSC1,,,Germany,,,,,,DL5DI,,0,DMR-plus
+262002,DM0KWD,Halle/Saale,Saxony-Anhalt,Germany,438.45000,1,-7.600,,,DL1HRC,,0,None
262003,DB0BRO,Brocken/Harz,Saxony-Anhalt,Germany,439.13750,1,-7.6,Peer,TS1 TS2,DG0CBP,,0,DMR-plus
262004,DB0HAL,Petersberg,Saxony-Anhalt,Germany,438.51250,1,-7.600,PEER,TS1 TS2,DL1HRC,,0,BM
-262005,DB0AMK,Tangermuende,Saxony-Anhalt,Germany,439.45000,1,-7.6,PEER,TS1 TS2,DG0CCO,,0,Hytera
+262005,DB0AMK,Tangermuende,Saxony-Anhalt,Germany,439.45000,1,-7.600,PEER,TS1 TS2,DG0CCO,,0,DMR-plus
262006,DB0TGM,Tangermuende,Saxony-Anhalt,Germany,145.68750,1,-0.600,PEER,TS1 TS2,DG0CDC,,0,None
+262007,DM0LUE,Luedersdorf/MVP,Mecklenburg-Vorpomme,Germany,439.96250,1,-9.4,,,DL6HBQ,,0,DMR-plus
+262010,IPSCDE00,,,Germany,,,,,,DL5DI,,0,DMR-plus
+262011,IPSCDE01,,,Germany,,,,,,DL5DI,,0,DMR-plus
+262012,IPSCDE02,,,Germany,,,,,,DL5DI,,0,DMR-plus
+262013,IPSCDE03,,,Germany,,,,,,DL5DI,,0,DMR-plus
+262014,IPSCDE04,,,Germany,,,,,,DL5DI,,0,DMR-plus
+262015,IPSCDE05,,,Germany,,,,,,DL5DI,,0,DMR-plus
+262016,IPSCDE06,,,Germany,,,,,,DL5DI,,0,DMR-plus
+262017,IPSCDE07,,,Germany,,,,,,DL5DI,,0,DMR-plus
+262018,IPSCDE08,,,Germany,,,,,,DL5DI,,0,DMR-plus
+262019,IPSCDE09,,,Germany,,,,,,DL5DI,,0,DMR-plus
+262020,IPSCDE10,,,Germany,,,,,,DL5DI,,0,DMR-plus
+262021,IPSCDE11,,,Germany,,,,,,DL5DI,,0,DMR-plus
+262022,IPSCDE12,,,Germany,,,,,,DL5DI,,0,DMR-plus
+262023,IPSCDE13,,,Germany,,,,,,DL5DI,,0,DMR-plus
+262024,IPSCDE14,,,Germany,,,,,,DL5DI,,0,DMR-plus
+262025,IPSCDE15,,,Germany,,,,,,DL5DI,,0,DMR-plus
262055,DL1HRC,Bad Duerrenberg,Saxony-Anhalt,Germany,438.45000,1,-7.600,Peer,TS1 TS2,,,0,Hytera
-262100,DM0MOT,Berlin/Tegel,Berlin,Germany,439.52500,1,-7.600,PEER,TS1 TS2,DJ0WH,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 262 = Germany 1
Time Slot #1 - Group Call 9 = Local 1
Time Slot #2 - Group Call 262 = Germany 2
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio


Contact: Wayne Holmes, DJ0WH
Email: wayne.c.holmes@gmail.com,1,DMR-MARC
+262100,DM0MOT,Berlin/Tegel,Berlin,Germany,439.52500,1,-7.600,PEER,TS1 TS2,DJ0WH,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 262 = Germany 1
Time Slot #1 - Group Call 9 = Local 1
Time Slot #2 - Group Call 262 = Germany 2
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio


Contact: Wayne Holmes, DJ0WH
Email: wayne.c.holmes@gmail.com,1,DMR-DL
262101,DB0JSF,Frankfurt/Oder,Brandenburg,Germany,439.95000,1,-9.4,Peer,TS1 TS2,DF1JSF,,0,DMR-plus
262102,DG2BTR,Zechin,Brandenburg,Germany,439.55000,1,-9.400,Peer,TS1 TS2,,,0,Hytera
262110,DM0RD,Berlin/Tempelhof,,Germany,439.58750,1,-7.600,PEER,TS1 TS2,DG1TAL,,0,DMR-DL
-262111,DF1JSF,Frankfurt/Oder,Brandenburg,Germany,439.95000,1,-9.4,PEER,TS1 TS2,DF1JSF,,0,DMR-plus
-262120,DB0OUD,Berlin/City-West,Berlin,Germany,438.62500,1,-7.600,Peer,TS1 TS2,DL3OCK,,0,DMR-plus
+262111,DF1JSF,Frankfurt/Oder,Brandenburg,Germany,439.95000,1,-9.400,PEER,TS1 TS2,DF1JSF,,0,DMR-plus
+262120,DB0OUD,Berlin/City-West,Berlin,Germany,438.62500,1,-7.600,Peer,TS1 TS2,DL3OCK,,0,BM
262121,DB0LUD,Ludwigsfelde,Brandenburg,Germany,438.57500,1,-7.600,Peer,TS1 TS2,DG1RNN,,0,None
262123,DK0TU,TU Berlin,Berlin,Germany,438.95000,1,-7.600,Peer,TS1 TS2,DB9MAT,,0,None
262130,DB0SPN,Cottbus,Brandenburg,Germany,439.48750,1,-7.6,PEER,TS1 TS2,DM6MH,,0,DMR-plus
262200,DM0HMB,Hamburg,Hamburg,Germany,438.45000,1,-7.6,PEER,TS1 TS2,DG1HT,,0,DMR-plus
-262201,DB0PC,Schoenwalde,,Germany,438.38750,1,-7.600,PEER,TS1 TS2,DB5NU,,0,BrandMeister
+262201,DB0PC,Schoenwalde,,Germany,438.38750,1,-7.600,PEER,TS1 TS2,DB5NU,,0,BM
262202,DB0PC,Schoenwalde,Schleswig-Holstein,Germany,438.30000,1,-7.600,Peer,TS1 TS2,DG1HT,,0,DMR-plus
-262210,DB0SAT,Hamburg,Schleswig-Holstein,Germany,439.50000,1,-7.6,PEER,TS1 TS2,DG1HT,,0,DMR-plus
+262210,DB0SAT,Hamburg,Schleswig-Holstein,Germany,439.50000,1,-7.600,PEER,TS1 TS2,DG1HT,,0,DMR-plus
262211,DH4HAV,Hamburg,Hamburg,Germany,439.92500,1,-9.400,PEER,TS1 TS2,DH4HAV,,0,DMR-plus
-262220,DB0FS,Hamburg,,Germany,439.56250,1,-7.600,PEER,TS1 TS2,DL9DAK,,0,BrandMeister
+262220,DB0FS,Hamburg,,Germany,439.56250,1,-7.600,PEER,TS1 TS2,DL9DAK,,0,BM
262221,DL0FHH,Univ. Hamburg,Hamburg,Germany,438.30000,1,-7.6,PEER,TS1 TS2,DG1HT,,0,DMR-plus
-262222,DB0ZE,Hamburg,,Germany,438.92500,1,-7.600,PEER,TS1 TS2,DL9DAK,,0,BrandMeister
+262222,DB0ZE,Hamburg,,Germany,438.92500,1,-7.600,PEER,TS1 TS2,DL9DAK,,0,BM
262226,DB0PR,Armstedt,Niedersachsen,Germany,439.35000,1,-7.600,Peer,TS1 TS2,DG1HT,,0,DMR-plus
-262230,DB0BRV,Bremervoerde,Niedersachsen,Germany,438.46250,1,-7.600,PEER,TS1 TS2,DL4BBD,,0,DMR-plus
+262230,DB0BRV,Bremervoerde,Niedersachsen,Germany,438.46250,1,-7.600,PEER,TS1 TS2,DL4BBD,,0,BM
+262231,DO0TPB,Basedow,Schleswig-Holstein,Germany,438.83750,1,-7.600,,,DO7TPB,,0,DMR-plus
262240,DB0HPA,Laegerdorf,Schleswig-Holstein,Germany,439.51250,1,-7.6,Peer,TS1 TS2,DL9HPA,,0,DMR-plus
262250,DB0HHO,Grosshansdorf,Schleswig-Holstein,Germany,439.52500,1,-7.6,PEER,TS1 TS2,DL5KUA,,0,DMR-plus
+262260,DB0KUA,Luetjensee,Schleswig-Holstein,Germany,438.52500,1,-7.6,,,DL5KUA,,0,DMR-plus
262262,DO0SOC,Wandelwitz,Schleswig-Holstein,Germany,438.67500,1,-7.600,Peer,MM 88.5,DO2LMV,,0,HYTERA
+262290,DB0HEW,Geesthacht,Schleswig-Holstein,Germany,438.55000,1,-7.600,,,DK4HPA,,0,DMR-plus
+262295,DB0HUS,Husum,Schleswig-Holstein,Germany,438.42500,1,-7.6,,,DB5NU,,0,DMR-plus
262297,DB0XN,Stollberg Bredstedt,Schleswig-Holstein,Germany,438.38750,1,-7.600,PEER,TS1 TS2,DC9LR,,0,Motorola
+262298,DM0FL,Flensburg-Land,,Germany,439.82500,1,-9.400,PEER,TS1 TS2,DC9LR,,0,Motorola
262299,DM0SL,Schleswig,Schleswig-Holstein,Germany,438.53750,1,-7.600,Peer,TS1 TS2,DC9LR,,0,Motorola
262301,DB0OBO,Hameln,Niedersachsen,Germany,439.53750,1,-7.6,PEER,TS1 TS2,DL1OBO,,0,DMR-plus
-262302,DL1BH,Bremerhaven ,Bremen ,Germany ,439.00000,1,-7.6,PEER,TS1 TS2,DL1BH,,0,BM
+262302,DL1BH,Bremerhaven,Bremen,Germany,439.00000,1,-7.6,PEER,TS1 TS2,DL1BH,,0,DMR-plus
262303,DB0RVB,Ravensberg,Niedersachsen,Germany,439.45000,1,-7.6,PEER,TS1 TS2,DL8AAP,,0,DMR-plus
-262304,DO0SZ,Salzgitter,Niedersachsen,Germany,439.46250,1,-7.6,None,TS1 TS2,DO1OTD,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 262 = Germany 1
Time Slot #1 - Group Call 9 = Local 1
Time Slot #2 - Group Call 262 = Germany 2
Time Slot #2 - Group Call 8 = Regional
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio

Contact: Torsten Holz , DC9TH
Email: DB0SZ@icloud.com,1,DMR-MARC
+262304,DO0SZ,Salzgitter,Niedersachsen,Germany,439.46250,1,-7.600,None,TS1 TS2,DO1OTD,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 262 = Germany 1
Time Slot #1 - Group Call 9 = Local 1
Time Slot #2 - Group Call 262 = Germany 2
Time Slot #2 - Group Call 8 = Regional
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio

Contact: Torsten Holz , DC9TH
Email: DB0SZ@icloud.com,1,BM
262305,DB0JUI,Juist,Niedersachsen,Germany,439.27500,1,-7.6,PEER,TS1 TS2,DF6BT,,0,DMR-plus
262306,DB0XX,Helmstedt,Niedersachsen,Germany,439.50000,1,-7.6,PEER,TS1 TS2,DK2HP,,0,DMR-plus
-262307,DM0WL,Winsen (Luhe),Lower Saxony,Germany,439.03750,1,-7.6,PEER,TS1 TS2,DL7TJ,,0,Hytera
-262308,DB0DOS,Doerenberg,Nordrhein-Westfalen,Germany,145.71250,1,-0.6,Peer,TS1 TS2,DJ2QW,,0,DMR-plus
+262307,DM0WL,Winsen (Luhe),Lower Saxony,Germany,439.03750,1,-7.600,PEER,TS1 TS2,DL7TJ,,0,DMR-plus
+262308,DB0DOS,Doerenberg,Nordrhein-Westfalen,Germany,145.71250,2,-0.6,Peer,TS1 TS2,DJ2QW,,0,DMR-plus
262309,DL9AM,Osterode,Lower Saxony,Germany,438.37500,1,-7.6,PEER,TS1 TS2,DL9AM,,0,DMR-plus
-262310,DB0ZO,Doerenbg./Osnabrueck,,Germany,438.47500,1,-7.600,Peer,TS1 TS2,DL3GS,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 262 = Germany 1
Time Slot #1 - Group Call 9 = Local 1
Time Slot #2 - Group Call 262 = Germany 2
Time Slot #2 - Group Call 8 = Regional
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio


Contact:Peter Lampe, DL3GS
Email: dl3gs@db0zo.eu,1,DMR-MARC
-262311,DB0ZO,Doerenbg./Osnabrueck,,Germany,438.53750,1,-7.6,Peer,TS1 TS2,DL3GS,,0,DMR-plus
-262312,DB0HOL,Ottenstein,Lower Saxony,Germany,438.91250,1,-7.6,PEER,TS1 TS2,DG4KLK,,0,DMR-plus
+262310,DB0ZO,Doerenbg./Osnabrueck,Niedersachsen,Germany,438.47500,1,-7.600,Peer,TS1 TS2,DL3GS,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 262 = Germany 1
Time Slot #1 - Group Call 9 = Local 1
Time Slot #2 - Group Call 262 = Germany 2
Time Slot #2 - Group Call 8 = Regional
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio


Contact:Peter Lampe, DL3GS
Email: dl3gs@db0zo.eu,1,DMR-DL
+262311,DB0ZO,Doerenbg./Osnabrueck,Niedersachsen,Germany,438.53750,1,-7.6,Peer,TS1 TS2,DL3GS,,0,DMR-plus
+262312,DB0HOL,Ottenstein,Niedersachsen,Germany,438.91250,1,-7.6,PEER,TS1 TS2,DG4KLK,,0,DMR-plus
262313,DB0OHA,Herzberg am Harz,,Germany,439.07500,1,-7.6,PEER,TS1 TS2,DL9AM,,0,DMR-plus
-262314,DB0NDS,Zernien,Lower Saxony,Germany,438.65000,1,-7.600,Peer,TS1 TS2,DL6YEA,,0,None
+262314,DB0NDS,Zernien,Niedersachsen,Germany,438.65000,1,-7.600,Peer,TS1 TS2,DL6YEA,,0,None
262315,DB0BHN,Bremerhaven-Zentrum,Bremen,Germany,145.76250,1,-0.6,Peer,TS1 TS2,DH8BAT,,0,DMR-plus
262316,DB0BHV,Bremerhaven,Bremen,Germany,438.47500,1,-7.6,PEER,TS1 TS2,DL1BIR,,0,DMR-plus
-262317,DB0BNL,Bremen ,Bremen ,Germany ,438.51250,1,-7.6,Peer,TS1 TS2,DK2KL,,0,DMR-plus
+262317,DB0BNL,Bremen,Bremen,Germany,438.51250,1,-7.6,Peer,TS1 TS2,DK2KL,,0,DMR-plus
262318,DB0LAM,Hildesheim/Achtum,,Germany,439.47500,1,-7.6,PEER,TS1 TS2,DL1OFD,,0,DMR-plus
262319,DB0EIG,Gieboldehausen,,Germany,439.37500,1,-7.600,PEER,TS1 TS2,DL4OCH,,0,Brandmeister
-262320,DB0ATS,Hannover/Messe,Niedersachsen,Germany,439.97500,1,-9.400,Peer,TS1 TS2,DF6AS,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 3 = North Amerika
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 262 = Germany 1
Time Slot #1 - Group Call 9 = Local 1
Time Slot #2 - Group Call 262 = Germany 2
Time Slot #2 - Group Call 8 = Regional
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio

Contact: Andreas Schroth, DF6AS
Email: ----------,1,DMR-MARC
+262320,DB0ATS,Hannover/Messe,Niedersachsen,Germany,439.97500,1,-9.400,Peer,TS1 TS2,DF6AS,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 3 = North Amerika
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 262 = Germany 1
Time Slot #1 - Group Call 9 = Local 1
Time Slot #2 - Group Call 262 = Germany 2
Time Slot #2 - Group Call 8 = Regional
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio

Contact: Andreas Schroth, DF6AS
Email: ----------,1,BM
+262321,DB0FA,Fassberg,Niedersachsen,Germany,438.91250,1,-7.600,,,DG1JC,,0,DMR-plus
262322,DL9BDK,Bremerhaven,Bremen,Germany,438.32500,1,-7.6,PEER,TS1 TS2,DL9BDK,,0,DMR-plus
262323,DB0DAM,Dammer Berge,Niedersachsen,Germany,439.86250,1,-9.4,PEER,TS1 TS2,DJ2QW,,0,DMR-plus
262324,DL9OBD,Eilvese,Niedersachsen,Germany,439.93750,1,-9.400,Peer,TS1 TS2,DL9OBD,,0,BM
262325,DB0TVH,Hannover/Stadt,Niedersachsen,Germany,439.90000,1,-9.4,PEER,TS1 TS2,DL9OBD,,0,DMR-plus
-262326,DO1KBL,Osterholz-Scharmbeck,Lower Saxony,Germany,439.27500,1,-7.600,PEER,TS1 TS2,DO1KBL,,0,DMR-plus
-262327,DB0KRE,Einbeck ,Lower Saxony ,Germany ,438.38750,1,-7.6,PEER,TS1 TS2,DJ3OW,,0,DMR-plus
-262328,DB0OX,Norden,West Virginia,Germany,439.30000,1,-7.6,PEER,TS1 TS2,DG1BGS,,0,Hytera
-262329,DB0HHG,Goettingen,Lower Saxony,Germany,439.25000,1,-7.600,Peer,TS1 TS2,DG3ABY,,0,None
-262330,DB0TVH,Hannover/Stadt,,Germany,439.58750,1,-7.600,PEER,TS1 TS2,DL9OBD,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 262 = Germany 1
Time Slot #1 - Group Call 9 = Local 1
Time Slot #2 - Group Call 262 = Germany 2
Time Slot #2 - Group Call 8 = Regional
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio


Contact: Tomas Rose, DL9OBD
Email: dl9obd@darc.de,1,DMR-MARC
+262326,DO1KBL,Osterholz-Scharmbeck,Niedersachsen,Germany,439.27500,1,-7.6,PEER,TS1 TS2,DO1KBL,,0,DMR-plus
+262327,DB0KRE,Einbeck,Lower Saxony,Germany,438.38750,1,-7.6,PEER,TS1 TS2,DJ3OW,,0,DMR-plus
+262328,DB0OX,Norden,West Virginia,Germany,439.30000,1,-7.600,PEER,TS1 TS2,DG1BGS,,0,DMR-plus
+262329,DB0HHG,Goettingen,Niedersachsen,Germany,439.25000,1,-7.600,Peer,TS1 TS2,DG3ABY,,0,None
+262330,DB0TVH,Hannover/Stadt,Niedersachsen,Germany,439.58750,1,-7.600,PEER,TS1 TS2,DL9OBD,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 262 = Germany 1
Time Slot #1 - Group Call 9 = Local 1
Time Slot #2 - Group Call 262 = Germany 2
Time Slot #2 - Group Call 8 = Regional
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio


Contact: Tomas Rose, DL9OBD
Email: dl9obd@darc.de,1,BM
262331,DO0HB,Bremen,Bremen,Germany,438.32500,1,-7.6,Peer,TS1 TS2,DO6BCO,,0,DMR-plus
-262332,DJ2QW,Georgsmarienhuette,Niedersachsen,Germany,439.53750,1,-7.600,PEER,TS1 TS2,DJ2QW,,0,DMR-plus
+262332,DJ2QW,Georgsmarienhuette,Niedersachsen,Germany,438.40000,1,-7.600,PEER,TS1 TS2,DJ2QW,,0,DMR-plus
262333,DM0NGU,Isterberg,Niedersachsen,Germany,438.50000,1,-7.6,PEER,TS1 TS2,DF3BM,,0,DMR-plus
-262334,DB0NGU,Uelsen,Lower Saxony,Germany,438.50000,1,-7.600,Peer,TS1 TS2,DF3BM,,0,Hytera
-262335,DB0ROD,Hannover/Deister,,Germany,438.68750,1,-7.600,PEER,TS1 TS2,DG4OAE,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 262 = Germany 1
Time Slot #1 - Group Call 9 = Local 1
Time Slot #2 - Group Call 262 = Germany 2
Time Slot #2 - Group Call 8 = Regional
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio

Contact: Martin Sjuts, DG5BCM
Email: martin.sjuts@atsonline.de (https://3c.web.de/mail/client/mail/mailto;jsessionid=FD5BA33956A5DE2BBCD5461784268D0F-n1.bs20b?to=martin.sjuts%40atsonline.de&selection=tfol1310b3689a5dbfd2),1,DMR-MARC
-262336,DB0WL,Winsen,Lower Saxony,Germany,438.48750,1,-7.6,Peer,TS1 TS2,DL7TJ,,0,DMR-plus
+262334,DB0NGU,Uelsen,Niedersachsen,Germany,438.50000,1,-7.600,Peer,TS1 TS2,DF3BM,,0,Hytera
+262335,DB0ROD,Hannover/Deister,,Germany,438.68750,1,-7.600,PEER,TS1 TS2,DG4OAE,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 262 = Germany 1
Time Slot #1 - Group Call 9 = Local 1
Time Slot #2 - Group Call 262 = Germany 2
Time Slot #2 - Group Call 8 = Regional
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio

Contact: Martin Sjuts, DG5BCM
Email: martin.sjuts@atsonline.de (https://3c.web.de/mail/client/mail/mailto;jsessionid=FD5BA33956A5DE2BBCD5461784268D0F-n1.bs20b?to=martin.sjuts%40atsonline.de&selection=tfol1310b3689a5dbfd2),1,BM
+262336,DB0WL,Winsen,Niedersachsen,Germany,438.48750,1,-7.6,Peer,TS1 TS2,DL7TJ,,0,DMR-plus
262337,DB0AGM,Lueneburg,Niedersachsen,Germany,438.50000,1,-7.6,Peer,TS1 TS2,DC2HC,,0,DMR-plus
-262340,DB0CEL,Celle,Lower Saxony,Germany,439.27500,1,-7.6,PEER,TS1 TS2,DL3OBI,,0,DMR-plus
-262341,DB0FA,Fassberg,,Germany,438.71250,1,-7.6,PEER,TS1 TS2,DG1JC,,0,DMR-plus
+262338,DB0OHA,Herzberg am Harz,Niedersachsen,Germany,439.56250,1,-7.6,,,DL9AM,,0,DMR-plus
+262340,DB0CEL,Celle,Niedersachsen,Germany,439.27500,1,-7.600,PEER,TS1 TS2,DL3OBI,,0,BM
+262341,DB0FA,Fassberg,,Germany,438.71250,1,-7.600,PEER,TS1 TS2,DG1JC,,0,DMR-plus
+262343,DB0DOS,Doerenberg,Nordrhein-Westfalen,Germany,438.40000,1,-7.6,,,DJ2QW,,0,DMR-plus
262345,DB0EB,Einbeck,Niedersachsen,Germany,438.51250,1,-7.6,PEER,TS1 TS2,DH2OP,,0,DMR-plus
262347,DB0GOE,Bovenden,Lower Saxony,Germany,438.70000,1,-7.6,Peer,TS1 TS2,DL8OAI,,0,DMR-plus
-262350,DB0CHV,Cuxhaven,Niedersachsen,Germany,438.27500,1,-7.6,Peer,TS1 TS2 ,DH4HAN,,0,DMR-plus
-262354,DB0DEL,Delmenhorst,Lower Saxony,Germany,439.92500,2,-9.4,PEER,TS1 TS2,DG7BBU,,0,DMR-plus
+262350,DB0CHV,Cuxhaven,Niedersachsen,Germany,438.27500,1,-7.600,Peer,TS1 TS2 ,DH4HAN,,0,DMR-plus
+262354,DB0DEL,Delmenhorst,Niedersachsen,Germany,439.92500,2,-9.4,PEER,TS1 TS2,DG7BBU,,0,DMR-plus
262355,DB0VER,Verden,Niedersachsen,Germany,439.15000,1,-7.6,Peer,MM 67.0,DJ9BT,,0,DMR-plus
-262356,DB0AL,Langwedel,Lower Saxony,Germany,145.58750,1,-0.6,Peer,TS1 TS2,DB2XX,,0,DMR-plus
+262356,DB0AL,Langwedel,Niedersachsen,Germany,145.58750,1,-0.6,Peer,TS1 TS2,DB2XX,,0,DMR-plus
262360,DB0CWS,Steinau a.d. Strasse,Hessen,Germany,439.50000,1,-7.6,PEER,TS1 TS2,DG8FAC,,0,DMR-plus
262362,DB0RH,Wardboehmen / Bergen,Niedersachsen,Germany,438.81250,1,-7.6,PEER,TS1 TS2,DG1OW,,0,DMR-plus
262383,DB0ANT,Wolfenbuettel,Niedersachsen,Germany,439.86250,1,-9.4,PEER,TS1 TS2,DC2OS,,0,DMR-plus
@@ -820,7 +999,7 @@ 262394,DB0HYT,Bad Muender,Niedersachsen,Germany,439.35000,1,-7.600,Peer,TS1 TS2,DJ2VA,,0,DMR-plus
262395,DB0HYT,Bad Muender,Niedersachsen,Germany,434.83750,1,-2.000,Peer,TS1 TS2,DJ2VA,,0,Hytera
262396,DB0XY,Bocksberg/ Harz,Niedersachsen,Germany,439.87500,1,-9.4,Peer,TS1 TS2,DH1ALF,,0,DMR-plus
-262397,DB0ABZ,Salzgitter-Druette,Niedersachsen,Germany,439.82500,1,-9.4,PEER,TS1 TS2,DH1ALF,,0,DMR-plus
+262397,DB0ABZ,Salzgitter-Druette,Niedersachsen,Germany,439.82500,1,-9.400,PEER,TS1 TS2,DH1ALF,,0,DMR-plus
262398,DB0DLR,DLR Braunschweig,Niedersachsen,Germany,439.48750,1,-7.600,PEER,TS1 TS2,DH1ALF,,0,None
262399,DB0DVR,Braunschweig,Niedersachsen,Germany,438.57500,1,-7.6,PEER,TS1 TS2,DH1ALF,,0,DMR-plus
262400,DB0NG,Marl,NRW,Germany,438.90000,1,-7.6,PEER,TS1 TS2,DL1YBL,,0,DMR-plus
@@ -828,78 +1007,84 @@ 262402,DB0WA,Aachen,Nordrhein-Westfalen,Germany,438.68750,1,-7.6,PEER,TS1 TS2,DJ7LC,,0,DMR-plus
262403,DB0DW,Boenen,Nordrhein-Westfalen,Germany,145.57500,1,-0.6,PEER,TS1 TS2,DL7DW,,0,DMR-plus
262404,DB0YS,Kreuztal-Kindelsberg,Nordrhein-Westfalen,Germany,438.72500,1,-7.6,PEER,TS1 TS2,DF1DU,,0,DMR-plus
-262405,DB0BS,Bochum,Nordrhein-Westfalen,Germany,439.97500,4,-9.4,PEER,TS1 TS2,DL1YBL,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 262 = Germany 1
Time Slot #1 - Group Call 9 = Local 1
Time Slot #2 - Group Call 262 = Germany 2
Time Slot #2 - Group Call 8 = Regional
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio


Contact: Joachim Berns, DL1YBL
Email: dl1ybl@darc.de,1,DMR-DL
+262405,DB0BS,Bochum,Nordrhein-Westfalen,Germany,439.97500,4,-9.400,PEER,TS1 TS2,DL1YBL,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 262 = Germany 1
Time Slot #1 - Group Call 9 = Local 1
Time Slot #2 - Group Call 262 = Germany 2
Time Slot #2 - Group Call 8 = Regional
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio


Contact: Joachim Berns, DL1YBL
Email: dl1ybl@darc.de,1,DMR-plus
262406,DB0IUZ,Bochum/Sundern,NRW,Germany,438.25000,1,-7.6,PEER,TS1 TS2,DG3JKB,,0,DMR-plus
262407,DB0END,Ennepetal-Stueting,Nordrhein-Westfalen,Germany,439.27500,1,-7.6,PEER,TS1 TS2,DG8DCH,,0,DMR-plus
262409,DL1KJ,Pulheim,Nordrhein-Westfalen,Germany,439.51250,1,-7.6,PEER,TS1 TS2,DO1PA,,0,DMR-plus
-262410,DF0MHR,Muelheim/Ruhr,Nordrhein-Westfalen,Germany,438.76250,1,-7.600,PEER,TS1 TS2,DF2ER,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 262 = Germany 1
Time Slot #1 - Group Call 9 = Local 1
Time Slot #2 - Group Call 262 = Germany 2
Time Slot #2 - Group Call 8 = Regional
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio


Contact: Walter Mentzel, DF2ER
Email: df2er@yahoo.de,1,DMR-MARC
+262410,DF0MHR,Muelheim/Ruhr,Nordrhein-Westfalen,Germany,438.76250,1,-7.600,PEER,TS1 TS2,DF2ER,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 262 = Germany 1
Time Slot #1 - Group Call 9 = Local 1
Time Slot #2 - Group Call 262 = Germany 2
Time Slot #2 - Group Call 8 = Regional
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio


Contact: Walter Mentzel, DF2ER
Email: df2er@yahoo.de,1,DMR-DL
262411,DF0MHR,Muelheim/Ruhr,Nordrhein-Westfalen,Germany,439.03750,1,-7.6,PEER,TS1 TS2,DF2ER,,0,DMR-plus
262412,DJ7CM,Heiligenhaus,Nordrhein-Westfalen,Germany,439.41250,1,-7.600,PEER,TS1 TS2,DJ7CM,,0,BM
262414,DB0SYS,Dormagen,Nordrhein-Westfalen,Germany,438.46250,1,-7.600,PEER,TS1 TS2,DD3JI,,0,DMR-DL
262415,DB0RES,Rees,Nordrhein-Westfalen,Germany,438.42500,1,-7.600,Peer,TS1 TS2,DD9QP,,0,DMR-DL
-262420,DB0NG,Marl,,Germany,438.57500,1,-7.600,PEER,TS1 TS2,DL1YBL,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 262 = Germany 1
Time Slot #1 - Group Call 9 = Local 1
Time Slot #2 - Group Call 262 = Germany 2
Time Slot #2 - Group Call 8 = Regional
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio


Contact: Joachim Berns, DL1YBL
Email: dl1ybl@darc.de,1,DMR-MARC
+262420,DB0NG,Marl,,Germany,438.57500,1,-7.600,PEER,TS1 TS2,DL1YBL,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 262 = Germany 1
Time Slot #1 - Group Call 9 = Local 1
Time Slot #2 - Group Call 262 = Germany 2
Time Slot #2 - Group Call 8 = Regional
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio


Contact: Joachim Berns, DL1YBL
Email: dl1ybl@darc.de,1,DMR-DL
262424,DB0WT,Lemgo,NRW,Germany,439.92500,1,-9.4,Peer,TS1 TS2,DF2MM,,0,DMR-plus
262425,DF2MM,Detmold,Nordrhein-Westfalen,Germany,439.92500,1,-9.400,Peer,TS1 TS2,DF2MM,,0,Hytera
-262430,DB0AVR,Stolberg/Aachen,,Germany,439.83750,1,-9.400,PEER,TS1 TS2,DH6KQ,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 3 = North America
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 262 = Germany 1
Time Slot #1 - Group Call 9 = Local 1
Time Slot #2 - Group Call 262 = Germany 2
Time Slot #2 - Group Call 8 = Regional
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio


Contact: Andreas Fromm, DH6KQ
Email: dh6kq@t-online.de,1,DMR-MARC
+262430,DB0AVR,Stolberg/Aachen,,Germany,439.83750,1,-9.400,PEER,TS1 TS2,DH6KQ,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 3 = North America
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 262 = Germany 1
Time Slot #1 - Group Call 9 = Local 1
Time Slot #2 - Group Call 262 = Germany 2
Time Slot #2 - Group Call 8 = Regional
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio


Contact: Andreas Fromm, DH6KQ
Email: dh6kq@t-online.de,1,DMR-DL
262434,DO0FSE,Euskirchen,Nordrhein-Westfalen,Germany,438.71250,1,-7.600,Peer,TS1 TS2,DO1FSE,,0,DMR-plus
-262435,DB0II,Moenchengladbach,Nordrhein-Westfalen,Germany,439.31250,1,-7.600,PEER,TS1 TS2,DF6EF,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 262 = Germany 1
Time Slot #1 - Group Call 9 = Local 1
Time Slot #2 - Group Call 262 = Germany 2
Time Slot #2 - Group Call 8 = Regional
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio


Contact: Christian Jansen, DF6EF
Email: christian@df6ef.de,1,DMR-MARC
+262435,DB0II,Moenchengladbach,Nordrhein-Westfalen,Germany,439.31250,1,-7.600,PEER,TS1 TS2,DF6EF,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 262 = Germany 1
Time Slot #1 - Group Call 9 = Local 1
Time Slot #2 - Group Call 262 = Germany 2
Time Slot #2 - Group Call 8 = Regional
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio


Contact: Christian Jansen, DF6EF
Email: christian@df6ef.de,1,DMR-DL
262437,DB0MY,Juelich,Nordrhein-Westfalen,Germany,438.36250,1,-7.6,PEER,TS1 TS2,DG9KAF,,0,DMR-plus
-262440,DB0DDS,Dortmund,Nordrhein-Westfalen,Germany,439.85000,1,-9.4,PEER,TS1 TS2,DF1VB,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 262 = Germany 1
Time Slot #1 - Group Call 9 = Local 1
Time Slot #2 - Group Call 262 = Germany 2
Time Slot #2 - Group Call 8 = Regional
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio,1,DMR-MARC
+262440,DB0DDS,Dortmund,Nordrhein-Westfalen,Germany,439.85000,1,-9.4,PEER,TS1 TS2,DF1VB,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 262 = Germany 1
Time Slot #1 - Group Call 9 = Local 1
Time Slot #2 - Group Call 262 = Germany 2
Time Slot #2 - Group Call 8 = Regional
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio,1,DMR-plus
262442,DB0ACC,Haltern am See,Nordrhein-Westfalen,Germany,438.45000,1,-7.6,PEER,TS1 TS2,DL8YBL,,0,DMR-plus
+262444,DB0WQ,Espelkamp,Nordrhein-Westfalen,Germany,438.71250,1,-7.6,PEER,TS1 TS2,DL7JW,,0,DMR-plus
262450,DB0DRE,Recklinghausen,NRW,Germany,439.97500,1,-9.400,Peer,TS1 TS2,DL1YBL,,0,DMR-DL
262452,DB0KX,Viersen,Nordrhein-Westfalen,Germany,438.40000,1,-7.600,Peer,TS1 TS2,DL1ER,,0,None
262454,DB0CW,Gummersbach,Nordrhein-Westfalen,Germany,145.66250,1,-0.6,PEER,TS1 TS2,DJ3CW,,0,DMR-plus
262455,DB0CW,Gummersbach,NRW,Germany,439.48750,1,-7.6,PEER,TS1 TS2,DJ3CW,,0,DMR-plus
262456,DB0MON,Nordeifel/Kreis AC,Nordrhein-Westfalen,Germany,439.77500,1,-9.400,PEER,TS1 TS2,DH6KQ,,0,DMR-plus
-262460,DB0DBN,Oelberg/Bonn,,Germany,439.97500,2,-9.400,PEER,TS1 TS2,DL1YBL,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 262 = Germany 1
Time Slot #1 - Group Call 9 = Local 1
Time Slot #2 - Group Call 262 = Germany 2
Time Slot #2 - Group Call 8 = Regional
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio


Contact: Joachim Berns, DL1YBL
Email: dl1ybl@darc.de,1,DMR-MARC
+262460,DB0DBN,Oelberg/Bonn,,Germany,439.97500,2,-9.400,PEER,TS1 TS2,DL1YBL,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 262 = Germany 1
Time Slot #1 - Group Call 9 = Local 1
Time Slot #2 - Group Call 262 = Germany 2
Time Slot #2 - Group Call 8 = Regional
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio


Contact: Joachim Berns, DL1YBL
Email: dl1ybl@darc.de,1,DMR-DL
262461,DB0DBN,Oelberg/Bonn,Nordrhein-Westfalen,Germany,438.38750,1,-7.6,PEER,TS1 TS2,DL1YBL,,0,DMR-plus
-262462,DB0VEL,Velbert,Nordrhein-Westfalen,Germany,438.63750,1,7.600,Peer,TS1 TS2,DD5CX,,0,Motorola
+262462,DB0VEL,Velbert,Nordrhein-Westfalen,Germany,438.63750,1,-7.600,Peer,TS1 TS2,DD5CX,,0,Motorola
262465,DB0HAA,Hagen,NRW,Germany,439.82500,2,-9.4,Peer,TS1 TS2,DG1DS,,0,DMR-plus
-262467,DO3NF,Mettmann,Nordrhein-Westfalen,Germany,438.18750,1,-7.600,PEER,TS1 TS2,DO3NF,,0,Hytera
-262470,DB0VR,Nordhelle/Sauerland,,Germany,439.88750,1,-9.400,Peer,TS1 TS2,DL1YBL,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 262 = Germany 1
Time Slot #1 - Group Call 9 = Local 1
Time Slot #2 - Group Call 262 = Germany 2
Time Slot #2 - Group Call 8 = Regional
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio


Contact: Joachim Berns, DL1YBL
Email: dl1ybl@darc.de,1,DMR-MARC
-262473,DO0DMR,Ratingen,NRW,Germany,438.20000,1,-7.6,Peer,TS1 TS2,DO6ED,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 262 = Germany 1
Time Slot #1 - Group Call 9 = Local 1
Time Slot #2 - Group Call 262 = Germany 2
Time Slot #2 - Group Call 8 = Regional
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio


Contact: Dieter Wiesner, DO6ED
Email: do6ed@gmx.de,1,DMR-MARC
-262476,DM0ZIR,Straelen,Nordrhein-Westfalen,Germany,439.36250,1,-7.6,Peer,TS1 TS2,DK3HV,,0,DMR-plus
+262467,DO3NF,Mettmann,Nordrhein-Westfalen,Germany,438.18750,1,-7.600,PEER,TS1 TS2,DO3NF,,0,DMR-plus
+262470,DB0VR,Nordhelle/Sauerland,Nordrhein-Westfalen,Germany,439.88750,1,-9.400,Peer,TS1 TS2,DL1YBL,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 262 = Germany 1
Time Slot #1 - Group Call 9 = Local 1
Time Slot #2 - Group Call 262 = Germany 2
Time Slot #2 - Group Call 8 = Regional
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio


Contact: Joachim Berns, DL1YBL
Email: dl1ybl@darc.de,1,DMR-DL
+262473,DO0DMR,Ratingen,NRW,Germany,438.20000,1,-7.600,Peer,TS1 TS2,DO6ED,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 262 = Germany 1
Time Slot #1 - Group Call 9 = Local 1
Time Slot #2 - Group Call 262 = Germany 2
Time Slot #2 - Group Call 8 = Regional
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio


Contact: Dieter Wiesner, DO6ED
Email: do6ed@gmx.de,1,BM
+262476,DM0ZIR,Straelen,Nordrhein-Westfalen,Germany,439.36250,1,-7.600,Peer,TS1 TS2,DK3HV,,0,DMR-plus
262480,DB0HI,Heiligenhaus,,Germany,439.41250,1,-7.600,PEER,TS1 TS2,DF2ER,,0,
-262481,DB0HI,Heiligenhaus,,Germany,439.41250,1,-7.6,PEER,TS1 TS2,DF2ER,,0,
+262481,DB0HI,Heiligenhaus,,Germany,439.41250,1,-7.6,PEER,TS1 TS2,DF2ER,,0,DMR-plus
262485,DB0END,Ennepetal,NRW,Germany,439.27500,1,-7.6,Peer,MM 67.0,DG8DCH,,0,HYTERA
262490,DO0SRE,Recklinghausen,NRW,Germany,438.37500,1,-7.6,Peer,TS1 TS2 ,DO5YAM,,0,DMR-plus
262491,DB0CGN,Koeln,Nordrhein-Westfalen,Germany,438.78750,1,-7.600,PEER,TS1 TS2,DO2FMD,,0,Hytera
-262492,DB0DOS,Doerenberg ,Niedersachsen ,Germany ,439.87500,1,-9.4,PEER,TS1 TS2,DJ2QW,,0,DMR-plus
-262493,DB0SEN,Senden,NRW,Germany,438.52500,1,-7.6,PEER,TS1 TS2,DH2YBE,,0,DMR-plus
+262492,DB0DOS,Doerenberg,Niedersachsen,Germany,439.87500,1,-9.4,PEER,TS1 TS2,DJ2QW,,0,DMR-plus
+262493,DB0SEN,Senden,NRW,Germany,438.52500,1,-7.600,PEER,TS1 TS2,DH2YBE,,0,DMR-plus
262494,DB0SEN,Senden,Nordrhein-Westfalen,Germany,439.54370,1,-7.600,PEER,TS1 TS2,DH2YBE,,0,DMR-plus
262495,DB0HAT,Hamm,Nordrhein-Westfalen,Germany,438.35000,1,-7.6,PEER,TS1 TS2,DJ8TM,,0,DMR-plus
-262498,DO0ERK,Erkrath,Nordrhein-Westfalen,Germany,145.76250,1,0.600,Peer,TS1 TS2,DO2TW,,0,Hytera
-262499,DO0ERK,Erkrath,Nordrhein-Westfalen,Germany,145.71250,1,-0.6,PEER,TS1 TS2,DO2TW,,0,DMR-plus
-262500,DB0MYK,Mayen/Koblenz,Rheinland-Pfalz,Germany,438.30000,1,-7.6,PEER,TS1 TS2,DL5DI,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 262 = Germany 1
Time Slot #1 - Group Call 9 = Local 1
Time Slot #2 - Group Call 262 = Germany 2
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio


Contact: Hans-J. Barthen, DL5DI
Email: dl5di@darc.de,1,DMR-MARC
-262501,DB0MYK,Mayen/Koblenz,,Germany,438.30000,1,-7.600,PEER,TS1 TS2,DL5DI,,0,HYTERA
-262502,DO0NO,Nieder-Olm,Rhineland-Palatinate,Germany,438.31250,1,-7.6,PEER,TS1 TS2,DO1PM,,0,DMR-plus
+262498,DO0ERK,Erkrath,Nordrhein-Westfalen,Germany,439.06250,1,-7.600,Peer,TS1 TS2,DO2TW,,0,Hytera
+262499,DO0ERK,Erkrath,Nordrhein-Westfalen,Germany,145.71250,1,-0.600,PEER,TS1 TS2,DO2TW,,0,BM
+262500,DB0MYK,Mayen/Koblenz,Rheinland-Pfalz,Germany,438.30000,1,-7.6,PEER,TS1 TS2,DL5DI,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 262 = Germany 1
Time Slot #1 - Group Call 9 = Local 1
Time Slot #2 - Group Call 262 = Germany 2
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio


Contact: Hans-J. Barthen, DL5DI
Email: dl5di@darc.de,1,DMR-plus
+262501,DB0MYK,Mayen/Koblenz,Rheinland-Pfalz,Germany,438.30000,1,-7.600,PEER,TS1 TS2,DL5DI,,0,HYTERA
+262502,DO0NO,Nieder-Olm,Rheinland-Pfalz,Germany,438.31250,1,-7.6,PEER,TS1 TS2,DO1PM,,0,DMR-plus
262503,DB0FTC,Quirnheim/Pfalz,Rheinland-Pfalz,Germany,438.25000,1,-7.6,PEER,TS1 TS2,DD1WT,,0,DMR-plus
262504,DO0YF,Blieskastel Lautzki,Saarland,Germany,439.35000,1,-7.6,Peer,TS1 TS2,DO1VF,,0,DMR-plus
+262505,DB0HWR,Weiskirchen,Saarland,Germany,438.77500,1,-7.600,,,DH1VO,,0,DMR-plus
+262506,DB0ZT,Wasserturm Kaeshofen,Rheinland-Pfalz,Germany,439.10000,1,-7.6,,,DL8EB,,0,DMR-plus
+262507,DF5VL,Puettlingen,Saarland,Germany,438.60000,1,-7.600,,,,,0,DMR-plus
262508,DB0SR,Heusweiler - Holz,Saarland,Germany,438.60000,1,-7.6,PEER,TS1 TS2,DF5VL,,0,DMR-plus
-262509,DB0VV,Idar-Oberstein,Rhineland-Palatinate,Germany,438.85000,1,-7.6,Peer,TS1 TS2,DJ2QW,,0,DMR-plus
+262509,DB0VV,Idar-Oberstein,Rheinland-Pfalz,Germany,438.85000,1,-7.6,Peer,TS1 TS2,DJ2QW,,0,DMR-plus
262511,DB0LZ,Tholey,Saarland,Germany,439.27500,1,-7.6,PEER,TS1 TS2,DF5VL,,0,DMR-plus
-262512,DB0KL,Kaiserslautern,Rhineland-Palatinate,Germany,439.38750,1,-7.6,PEER,TS1 TS2,DG4MA,,0,None
-262513,DG9VH,Voelklingen,Saarland,Germany,438.35000,1,-7.6,Peer,TS1 TS2,,,0,Hytera
-262520,DB0LJ,Kruft/Mayen-Koblenz,,Germany,439.82500,1,-9.4,PEER,TS1 TS2,DL5DI,,0,DMR-plus
+262512,DB0KL,Kaiserslautern,Rheinland-Pfalz,Germany,439.38750,1,-7.600,PEER,TS1 TS2,DG4MA,,0,DMR-plus
+262513,DG9VH,Voelklingen,Saarland,Germany,438.35000,1,-7.6,Peer,TS1 TS2,,,0,DMR-plus
+262520,DB0LJ,Kruft/Mayen-Koblenz,Rheinland-Pfalz,Germany,439.82500,1,-9.4,PEER,TS1 TS2,DL5DI,,0,DMR-plus
262530,DB0RPL,Hoehr-Grenzhausen,Rheinland-Pfalz,Germany,438.52500,1,-7.600,PEER,TS1 TS2,DL5DI,,0,Hytera
+262540,DB0SAB,Saarburg Hosteberg,Rheinland-Pfalz,Germany,439.07500,1,-7.600,,,DF2OO,,0,DMR-plus
262550,DB0UT,Kahlheid,Rheinland-Pfalz,Germany,439.85000,1,-9.4,PEER,TS1 TS2,DJ2QW,,0,DMR-plus
262555,DB0DTR,Trier,Rheinland-Pfalz,Germany,439.53750,1,-7.6,PEER,TS1 TS2,DJ2QW,,0,DMR-plus
-262575,DB0EIF,Dreis-Brueck,Rhineland-Palatinate,Germany,438.50000,1,-7.6,PEER,TS1 TS2,DL8UE,,0,DMR-plus
+262575,DB0EIF,Dreis-Brueck,Rheinland-Pfalz,Germany,438.50000,1,-7.6,PEER,TS1 TS2,DL8UE,,0,DMR-plus
262588,DB0EW,Saarbruecken,Saarland,Germany,439.52500,1,-7.600,,,DB7VM,,0,BrandMeister
262592,DO0SMZ,Mainz,Rheinland-Pfalz,Germany,439.30000,1,-7.6,PEER,TS1 TS2,DO2FMD,,0,DMR-plus
-262600,DF0MOT,Gr.Feldberg/Ts.,,Germany,438.20000,1,-7.600,PEER,TS1 TS2,DF6RK,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 3 = North America
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 262 = Germany 1
Time Slot #1 - Group Call 9 = Local 1
Time Slot #2 - Group Call 262 = Germany 2
Time Slot #2 - Group Call 8 = Regional
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio

Contact: Ralf Klingler, DF6RK
Email: df6rk@df0mot.de,1,DMR-MARC
+262600,DF0MOT,Gr.Feldberg/Ts.,Hessen,Germany,438.20000,1,-7.600,PEER,TS1 TS2,DF6RK,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 3 = North America
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 262 = Germany 1
Time Slot #1 - Group Call 9 = Local 1
Time Slot #2 - Group Call 262 = Germany 2
Time Slot #2 - Group Call 8 = Regional
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio

Contact: Ralf Klingler, DF6RK
Email: df6rk@df0mot.de,1,DMR-DL
262601,DF0MOT,Gr.Feldberg/Ts.,Hessen,Germany,439.57500,1,-7.6,PEER,TS1 TS2,DF6RK,,0,DMR-plus
262602,DB0VA,Hohe Wurzel / Ts.,Hessen,Germany,438.18750,1,-7.600,PEER,TS1 TS2,DF6RK,,0,DMR-DL
262603,DB0BVO,Steinau a.d.Strasse,Hessen,Germany,438.40000,1,-7.6,Peer,TS1 TS2,DL7FN,,0,DMR-plus
-262610,DB0AFZ,Baunatal/DARC,,Germany,439.97500,1,-9.400,PEER,TS1 TS2,DL1YBL,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 262 = Germany 1
Time Slot #1 - Group Call 9 = Local 1
Time Slot #2 - Group Call 262 = Germany 2
Time Slot #2 - Group Call 8 = Regional
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio


Contact: Joachim Berns, DL1YBL
Email: dl1ybl@darc.de,1,DMR-MARC
-262611,DO2FMD,Gross-Gerau,Hessen,Germany,438.17500,1,-7.6,PEER,TS1 TS2,DO2FMD,,0,DMR-plus
+262610,DB0AFZ,Baunatal/DARC,,Germany,439.97500,1,-9.400,PEER,TS1 TS2,DL1YBL,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 262 = Germany 1
Time Slot #1 - Group Call 9 = Local 1
Time Slot #2 - Group Call 262 = Germany 2
Time Slot #2 - Group Call 8 = Regional
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio


Contact: Joachim Berns, DL1YBL
Email: dl1ybl@darc.de,1,DMR-DL
+262611,DO2FMD,Gross-Gerau,Hessen,Germany,438.17500,1,-7.600,PEER,TS1 TS2,DO2FMD,,0,DMR-plus
262620,DB0LDK,Wetzlar,Hessen,Germany,438.47500,1,-7.6,PEER,TS1 TS2,DD8AKA,,0,DMR-plus
262626,DB0FDA,Darmstadt,Hessen,Germany,438.27500,1,-7.6,PEER,TS1 TS2,DJ1US,,0,DMR-plus
-262630,DB0LM,Limburg / Lahn,Hessen,Germany,438.40000,1,-7.6,PEER,TS1 TS2,DL1MNU,,0,DMR-plus
+262630,DB0LM,Limburg / Lahn,Hessen,Germany,438.40000,1,-7.600,PEER,TS1 TS2,DL1MNU,,0,DMR-plus
+262636,DB0MW,Wippershain,Hessen,Germany,439.92500,1,9.400,,,DL2MI,,0,BrandMeister
262640,DM0PX,Eschborn,Hessen,Germany,439.52500,1,-7.6,PEER,TS1 TS2,DB5ZQ,,0,DMR-plus
-262650,DB0REI,Reinhardshain ,Hessen ,Germany ,439.81250,1,-9.4,PEER,TS1 TS2,DB4ZZ,,0,DMR-plus
+262650,DB0REI,Reinhardshain,Hessen,Germany,439.81250,1,-9.4,PEER,TS1 TS2,DB4ZZ,,0,DMR-plus
262660,DB0KH,Hessen Knuell,Hessen,Germany,439.95000,1,-9.4,Peer,TS1 TS2,DH1FR,,0,DMR-plus
-262661,DB0WK,Wasserkuppe ,Hessen ,Germany ,439.46250,1,-7.6,PEER,TS1 TS2,DG7FBS,,0,DMR-plus
+262661,DB0WK,Wasserkuppe,Hessen,Germany,439.46250,1,-7.6,PEER,TS1 TS2,DG7FBS,,0,DMR-plus
262666,DO0DXE,Kassel,Hessen,Germany,438.32500,1,-7.6,PEER,TS1 TS2,DO5WE,,0,DMR-plus
262667,DG1FFD,Fuldabrueck,Hessen,Germany,439.96250,1,-9.400,PEER,TS1 TS2,,,0,DMR-plus
262670,DB0RHN,Rhoen,Hessen,Germany,439.83750,1,-9.4,PEER,TS1 TS2,DG8FAC,,0,DMR-plus
@@ -912,125 +1097,140 @@ 262696,DB0LHF,Fernwald,Hessen,Germany,438.42500,1,7.600,Peer,TS1 TS2,DC3FB,,0,Hytera
262699,DJ1US,Darmstadt,Hessen,Germany,439.57500,1,-7.600,Peer,TS1 TS2,DJ1US,,0,DMR-plus
262701,DB0VSS,Villingen-Schwenning,Baden-Wuertt.,Germany,439.25000,1,-7.6,PEER,TS1 TS2,DC4GD,,0,DMR-plus
-262702,DD9GJ,Villingen-Schwenning,Baden-Wuertt.,Germany,439.02500,1,-7.600,Peer,TS1 TS2,DD9GJ,,0,Motorola
+262702,DD9GJ,Villingen-Schwenning,Baden-Wuertt.,Germany,439.83750,1,-9.400,Peer,TS1 TS2,DD9GJ,,0,BM
262703,DB0TN,Brandenkopf,Baden-Wuerttemberg,Germany,439.87500,1,-9.400,PEER,TS1 TS2,DD9GJ,,0,Motorola
262704,DB0TST,Leinfelden Echterd.,Baden-Wuerttemberg,Germany,438.50000,1,-7.6,PEER,TS1 TS2,DL6SEC,,0,DMR-plus
262705,DB0ARD,Dornstadt,Baden-Wuerttemberg,Germany,438.45000,1,-7.6,PEER,TS1 TS2,DC2WA,,0,DMR-plus
+262706,DM0VL,Villingen,Baden-Wuerttemberg,Germany,439.83750,1,-9.400,,,DD9GJ,,0,BM
262707,DM0KB,Konstanz,Baden-Wuerttemberg,Germany,439.30000,1,-7.6,PEER,TS1 TS2,DG8GL,,0,DMR-plus
-262708,DM0ZF,Lauf,Baden-Wuerttemberg,Germany,144.82500,1,0.000,PEER,TS1 TS2,DL1IK,,0,Hytera
+262708,DM0ZF,Lauf,Baden-Wuerttemberg,Germany,439.82500,1,-9.400,PEER,TS1 TS2,DL1IK,,0,BM
+262709,DB0VS,Moenchweiler,Baden-Wuerttemberg,Germany,438.30000,1,-7.600,,,DL1GFM,,0,None
262710,DL1YBL,HAM RADIO,,Germany,439.97500,1,-9.400,PEER,TS1 TS2,DL1YBL,,0,DMR-DL
262711,DB0RV,Ravensburg,Baden-Wuerttemberg,Germany,439.41250,1,-7.6,PEER,TS1 TS2,DC6MS,,0,DMR-plus
262712,DB0RB,Bruchsal,Baden-Wuerttemberg,Germany,439.81250,1,-9.400,PEER,TS1 TS2,DH2MD,,0,Hytera
262713,DB0ARH,Herrenberg AlterRain,Baden-Wuerttemberg,Germany,439.85000,1,-9.400,PEER,TS1 TS2,DL8SCU,,0,BM
262717,DM0KB,Konstanz,Baden-Wuerttemberg,Germany,145.60000,1,-0.6,Peer,TS1 TS2,DG8GL,,0,DMR-plus
262719,DB0SAA,Oberkochen,Baden-Wuerttemberg,Germany,438.47500,1,-7.600,PEER,TS1 TS2,DF7AJ,,0,DMR-DL
-262720,DB0FAA,Aalen/Braunenberg ,Baden-Wuerttemberg ,Germany ,439.48750,1,-7.6,PEER,TS1 TS2,DL8SFG,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 262 = Germany 1
Time Slot #1 - Group Call 8 = > DB0FHA-2m-DMR
Time Slot #1 - Group Call 9 = Local 1
Time Slot #2 - Group Call 9 = Local 2

You Must Have [ARS] Disabled Within Your Radio


Contact: Bjoern Buelow, DL8SFG
Email: dl8sfg@qslnet.de
Web: http://www.qslnet.de/db0faa,1,DMR-plus
-262721,DB0FHA,Aalen/Onatsfeld ,Baden-Wuerttemberg ,Germany ,438.58750,1,-7.6,PEER,TS1 TS2,DL8SFG,,0,DMR-plus
-262722,DB0FHA,Aalen/Onatsfeld ,Baden-Wuerttemberg ,Germany ,439.01250,1,-7.6,PEER,TS1 TS2,DL8SFG,,0,DMR-plus
+262720,DB0FAA,Aalen/Braunenberg,Baden-Wuerttemberg,Germany,439.48750,1,-7.6,PEER,TS1 TS2,DL8SFG,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 262 = Germany 1
Time Slot #1 - Group Call 8 = > DB0FHA-2m-DMR
Time Slot #1 - Group Call 9 = Local 1
Time Slot #2 - Group Call 9 = Local 2

You Must Have [ARS] Disabled Within Your Radio


Contact: Bjoern Buelow, DL8SFG
Email: dl8sfg@qslnet.de
Web: http://www.qslnet.de/db0faa,1,DMR-plus
+262721,DB0FHA,Aalen/Onatsfeld,Baden-Wuerttemberg,Germany,439.48750,1,-7.6,PEER,TS1 TS2,DL8SFG,,0,DMR-plus
+262722,DB0FHA,Aalen/Onatsfeld,Baden-Wuerttemberg,Germany,439.01250,1,-7.6,PEER,TS1 TS2,DL8SFG,,0,DMR-plus
262723,DB0CRA,Frankenhardt,Baden-Wuerttemberg,Germany,438.53750,1,-7.6,Peer,TS1 TS2,DG2SDW,,0,DMR-plus
-262724,DB0FAA,Aalen/Braunenberg ,Baden-Wuerttemberg ,Germany ,439.11250,1,-7.6,Peer,TS1 TS2,DL8SFG,,0,DMR-plus
+262724,DB0FAA,Aalen/Braunenberg,Baden-Wuerttemberg,Germany,439.11250,1,-7.6,Peer,TS1 TS2,DL8SFG,,0,DMR-plus
+262725,DB0BP,Ludwigsburg,Baden-Wuerttemberg,Germany,438.92500,1,-7.6,,,DD7SY,,0,DMR-plus
262726,DB0RZ,Bussen ,Baden-Wuertt.,Germany,439.47500,1,-7.600,Peer,TS1 TS2,DL8VA,,0,HYTERA
262727,DB0SDO,Urbach,Baden-Wuerttemberg,Germany,439.30000,1,-7.6,PEER,TS1 TS2,DG4SDO,,0,DMR-plus
262728,DG4SDO,Urbach,Baden-Wuerttemberg,Germany,439.80000,1,-9.4,PEER,TS1 TS2,DG4SDO,,0,DMR-plus
-262730,DB0VSS,Villingen/Schwenning,,Germany,439.45000,1,-7.600,PEER,TS1 TS2,DC4GD,,0,DMR-DL
+262730,DB0VSS,Villingen/Schwenning,,Germany,439.45000,1,-7.600,PEER,TS1 TS2,DC4GD,,0,BM
262731,DB0VSS,Villingen/Schwenning,Baden-Wuerttemberg,Germany,145.57500,1,-0.6,PEER,TS1 TS2,DC4GD,,0,DMR-plus
262733,DB0KLI,Klippeneck,Baden-Wuerttemberg,Germany,438.66250,1,-7.6,PEER,TS1 TS2,DL1TOB,,0,DMR-plus
-262736,DO0OKO,Oberkochen,Baden-Wuerttemberg,Germany,438.78750,1,-7.6,PEER,TS1 TS2,DO6STS,,0,DMR-plus
+262736,DO0OKO,Oberkochen,Baden-Wuerttemberg,Germany,438.78750,1,-7.600,PEER,TS1 TS2,DO6STS,,0,BM
262737,DG8GL,Konstanz,Baden-Wuerttemberg,Germany,439.90000,1,-9.400,PEER,TS1 TS2,DG8GL,,0,DMR-plus
262738,DM0MGN,Mengen,Baden-Wuerttemberg,Germany,438.35000,1,-7.6,PEER,TS1 TS2,DL3GWA,,0,DMR-plus
-262740,DB0ORT,Kappelrodeck,,Germany,439.96250,1,-9.400,Peer,TS1 TS2,DL5IAO,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 262 = Germany 1

Time Slot #1 - Group Call 9 = Local 1

Time Slot #2 - Group Call 262 = Germany 2

Time Slot #2 - Group Call 9 = Local 2


You Must Have [ARS] Disabled Within Your Radio


Contact: Thomas Kist, DL5IAO
Email: DL5IAO@t-online.de,0,DMR-MARC
+262740,DB0ORT,Kappelrodeck,Baden-Wuerttemberg,Germany,439.96250,1,-9.400,Peer,TS1 TS2,DL5IAO,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 262 = Germany 1

Time Slot #1 - Group Call 9 = Local 1

Time Slot #2 - Group Call 262 = Germany 2

Time Slot #2 - Group Call 9 = Local 2


You Must Have [ARS] Disabled Within Your Radio


Contact: Thomas Kist, DL5IAO
Email: DL5IAO@t-online.de,0,BM
262742,DB0HER,Herrenberg,Baden-Wuerttemberg,Germany,438.32500,1,-7.600,Peer,TS1 TS2,DL8SCU,,0,BM
262743,DB0ST,Stuttgart,Baden-Wuerttemberg,Germany,439.18750,1,-7.600,Peer,TS1 TS2,DL5SFI,,0,BM
-262750,DB0LEO,Leonberg,,Germany,439.53750,1,-7.600,PEER,TS1 TS2,DL2MT,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 262 = Germany 1
Time Slot #1- Group Call 8 = Regional 1
Time Slot #1 - Group Call 9 = Local 1

Time Slot #2 - Group Call 262 = Germany 2
Time Slot #2 - Group Call 8 = Regional 2
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio


Contact: Thomas Mansch , DL2MT
Email:,1,DMR-MARC
-262755,DO3HD,Heidelberg,Baden-Wuerttemberg,Germany,438.71250,1,-7.6,PEER,TS1 TS2,DM3HD,,0,DMR-plus
+262750,DB0LEO,Leonberg,,Germany,439.53750,1,-7.600,PEER,TS1 TS2,DL2MT,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 262 = Germany 1
Time Slot #1- Group Call 8 = Regional 1
Time Slot #1 - Group Call 9 = Local 1

Time Slot #2 - Group Call 262 = Germany 2
Time Slot #2 - Group Call 8 = Regional 2
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio


Contact: Thomas Mansch , DL2MT
Email:,1,DMR-DL
+262755,DO3HD,Heidelberg,Baden-Wuerttemberg,Germany,438.71250,1,-7.600,PEER,TS1 TS2,DM3HD,,0,DMR-plus
262760,DB0BH,Helmlingen,Baden-Wuerttemberg,Germany,439.07500,1,-7.600,PEER,TS1 TS2,DL2GCW,,0,BM
262763,DM0ODW,Mudau,Baden-Wuerttemberg,Germany,438.35000,1,-7.600,PEER,TS1 TS2,DM7RM,,0,DMR-DL
262765,DB0REU,Reutlingen,Baden-Wuerttemberg,Germany,439.57500,10,-7.600,Peer,TS1 TS2,DK6TE,,0,None
262769,DB0MGH,Bad Mergentheim,Baden-Wuerttemberg,Germany,439.81250,1,-9.4,PEER,TS1 TS2,DL4SDR,,0,DMR-plus
262777,DB0ODE,Obrigheim,Baden-Wuerttemberg,Germany,439.92500,1,-9.4,PEER,TS1 TS2,DM7RM,,0,DMR-plus
-262778,DM0ZF,Lauf,Baden-Wuerttemberg,Germany,439.82500,1,-9.400,PEER,TS1 TS2,DL1IK,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 262 = Germany 1

Time Slot #1 - Group Call 9 = Local 1

Time Slot #2 - Group Call 262 = Germany 2

Time Slot #2 - Group Call 9 = Local 2


You Must Have [ARS] Disabled Within Your Radio


Contact: Burkhard Decker , DL1IK
Email: info@dl1ik.de,1,DMR-MARC
+262778,DM0ZF,Lauf,Baden-Wuerttemberg,Germany,439.82500,1,-9.400,PEER,TS1 TS2,DL1IK,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 262 = Germany 1

Time Slot #1 - Group Call 9 = Local 1

Time Slot #2 - Group Call 262 = Germany 2

Time Slot #2 - Group Call 9 = Local 2


You Must Have [ARS] Disabled Within Your Radio


Contact: Burkhard Decker , DL1IK
Email: info@dl1ik.de,1,DMR-DL
262779,DB0MGH,Bad Mergentheim,Baden-Wuerttemberg,Germany,439.81250,1,-9.4,PEER,TS1 TS2,DL4SDR,,0,DMR-plus
262780,DB0SKF,Freudenstadt,Baden-Wuertt.,Germany,439.90000,1,-9.4,Peer,Mixed Mode,DJ2GZ,,0,DMR-plus
262787,DL8VA,Laupheim,Baden-Wuerttemberg,Germany,439.30000,1,-7.600,Peer,TS1 TS2,DL8VA,,0,DMR-plus
+262788,DB0ZRB,Gerlingen,Baden-Wuerttemberg,Germany,439.53750,1,-7.600,,,DL2GRC,,0,BrandMeister
262789,DB0MGH,Bad Mergentheim,Baden-Wuerttemberg,Germany,145.57500,1,-0.6,PEER,TS1 TS2,DL4SDR,,0,DMR-plus
-262790,DM0ZF,Lauf,Baden-Wuerttemberg,Germany,439.93750,1,-9.400,PEER,TS1 TS2,DL1IK,,0,DMR-plus
+262790,DM0ZF,Lauf,Baden-Wuerttemberg,Germany,439.93750,1,-9.400,PEER,TS1 TS2,DL1IK,,0,BM
262796,DB0UY,Karlsruhe,Baden-Wuerttemberg,Germany,439.88750,1,9.400,PEER,TS1 TS2,DL5IN,,0,Hytera
262797,DB0UZ,Karlsbad,Baden-Wuerttemberg,Germany,438.51250,1,-7.6,PEER,TS1 TS2,DL5IN,,0,DMR-plus
262798,DB0UX,Karlsbad,Baden-Wuerttemberg,Germany,439.88750,1,-9.400,PEER,TS1 TS2,DL5IN,,0,HYTERA
262799,DB0UX,Karlsruhe-Durlach,Baden-Wuerttemberg,Germany,439.88750,1,-9.4,PEER,TS1 TS2,DL5IN,,0,DMR-plus
-262801,DB0FUE,Fuerth,Bayern,Germany,439.85000,1,-9.4,Peer,TS1 TS2,DJ7ACM,,0,DMR-plus
+262801,DB0FUE,Fuerth,Bayern,Germany,439.85000,1,-9.400,Peer,TS1 TS2,DJ7ACM,,0,BM
262802,DM0FFL,Landshut,Bayern,Germany,439.87500,1,-9.4,PEER,TS1 TS2,DL4STE,,0,DMR-plus
-262803,DB0IN,Ingolstadt,Bayern,Germany,438.93750,1,-7.6,Peer,TS1 TS2,DL2MHB,,0,
-262805,DB0HLB,Hesselberg,Bayern,Germany,439.97500,1,-9.4,PEER,TS1 TS2,DC9NYC,,0,None
+262803,DB0IN,Ingolstadt,Bayern,Germany,438.93750,1,-7.600,Peer,TS1 TS2,DL2MHB,,0,DMR-plus
+262804,DB0OAL,Tegelberg,Bayern,Germany,438.93750,1,-7.600,,,DB7MJ,,0,DMR-plus
+262805,DB0HLB,Hesselberg,Bayern,Germany,439.97500,1,-9.4,PEER,TS1 TS2,DC9NYC,,0,DMR-plus
262807,DB0LC,Scheidegg,Bayern,Germany,439.37500,1,-7.6,Peer,TS1 TS2,DG6MDG,,0,DMR-plus
262808,DB0AAT,Hochberg/Traunstein,Bayern,Germany,439.55000,1,-7.6,PEER,TS1 TS2,DC5MC,,0,DMR-plus
-262809,DM0GER,Germering,Bayern,Germany,145.58750,1,-0.6,Peer,TS1 TS2,DL3MX,,0,Hytera
+262809,DM0GER,Germering,Bayern,Germany,145.58750,1,-0.600,Peer,TS1 TS2,DL3MX,,0,DMR-plus
262810,DB0FEU,Feuchtwangen,Bayern,Germany,439.57500,1,-7.6,PEER,TS1 TS2,DC9NYC,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 262 = Germany 1
Time Slot #1 - Group Call 9 = Local 1

Time Slot #2 - Group Call 262 = Germany 2
Time Slot #2 - Group Call 8 = Regional Bayern
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio


Contact: Ralf Schmidl, DC9NYC
Email: dc9nyc@db0feu.de,1,DMR-plus
262811,DB0MI,Moenchberg,Bayern,Germany,439.55000,1,-7.6,PEER,TS1 TS2,DH4FAJ,,0,DMR-plus
-262812,DM0AX,Neumarkt / Dillberg ,Bayern ,Germany ,438.38750,1,-7.600,Peer,TS1 TS2,DF1AX,,0,BrandMeister
-262815,DB0DMR,Feuchtwangen ,Bayern ,Germany ,439.47500,1,-7.6,PEER,TS1 TS2,DC9NYC,,0,DMR-plus
-262820,DF0ANN,Nuernberg,,Germany,439.95000,1,-9.400,PEER,TS1 TS2,DL5NBZ,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 262 = Germany 1
Time Slot #1 - Group Call 9 = Local 1

Time Slot #2 - Group Call 262 = Germany 2
Time Slot #2 - Group Call 8 = Regional Bayern
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio


Contact: Rainer Floesser, DL5NBZ
Email: dl5nbz@darc.ardf-r1.org,1,DMR-MARC
+262812,DM0AX,Neumarkt / Dillberg,Bayern,Germany,438.38750,1,-7.600,Peer,TS1 TS2,DF1AX,,0,BrandMeister
+262813,DB0ARB,Zwiesel,Bayern,Germany,439.22500,1,-7.6,,,DJ1RKS,,0,DMR-plus
+262815,DB0DMR,Feuchtwangen,Bayern,Germany,439.47500,1,-7.6,PEER,TS1 TS2,DC9NYC,,0,DMR-plus
+262820,DF0ANN,Nuernberg,,Germany,439.95000,1,-9.400,PEER,TS1 TS2,DL5NBZ,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 262 = Germany 1
Time Slot #1 - Group Call 9 = Local 1

Time Slot #2 - Group Call 262 = Germany 2
Time Slot #2 - Group Call 8 = Regional Bayern
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio


Contact: Rainer Floesser, DL5NBZ
Email: dl5nbz@darc.ardf-r1.org,1,DMR-DL
262826,DM0QN,Vaterstetten/MUC-Ost,Bayern,Germany,438.35000,1,-7.600,PEER,TS1 TS2,DK2PZ,,0,Hytera
+262827,DB0WBZ,Thalmaessing,Bayern,Germany,438.51250,1,-7.6,,,DL2NJM,,0,DMR-plus
262828,DB0THM,Thalmaessing,Bayern,Germany,438.58750,1,-7.6,PEER,TS1 TS2,DL2NJM,,0,DMR-plus
262829,DB0PV,Muenchen,Bayern,Germany,438.52500,7,7.600,,,DH8MO,,0,None
262830,DO0JG,Moorenweis,Bayern,Germany,438.37500,1,-7.6,Peer,TS1 TS2,DO1JG,,0,DMR-plus
-262840,DB0ADB,Bamberg,Bayern,Germany,439.30000,1,-7.6,Peer,TS1 TS2,DK2ET,,0,DMR-plus
+262835,DM0GER,Germering,Bayern,Germany,145.58750,1,-0.600,,,DL3MX,,0,DMR-plus
+262840,DB0ADB,Bamberg,Bayern,Germany,439.30000,1,-7.600,Peer,TS1 TS2,DK2ET,,0,BM
262844,DB0ABG,Amberg,Bayern,Germany,439.43750,1,-7.600,Peer,TS1 TS2,DC6RN,,0,BM
262848,DB0MSK,Solhoehe/Langenproze,Bayern,Germany,439.05000,1,-7.6,Peer,TS1 TS2,DL9NCY,,0,DMR-plus
+262849,DB0WZ,Wuerzburg,Bayern,Germany,439.47500,1,7.600,,,DG1NWW,,0,None
262851,DB0TVM,Muenchen,Bayern,Germany,439.80000,1,-9.4,Peer,TS1 TS2 ,DC5SL,,0,DMR-plus
262852,DB0MIC,Muenchen,Bayern,Germany,439.52500,1,-7.600,Peer,TS1 TS2,DL8MFW,,0,DMR-DL
-262853,DB0NJ,Muenchen,Bayern,Germany,439.43750,1,-7.600,PEER,TS1 TS2,DD5KI,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 262 = Germany 1
Time Slot #1 - Group Call 9 = Local 1

Time Slot #2 - Group Call 262 = Germany 2
Time Slot #2 - Group Call 8 = Regional Bayern
Time Slot #2 - Group Call 9 = Local >
You Must Have [ARS] Disabled Within Your Radio


Contact: Gunnar Sircar, DD5KI
Email: dd5ki@darc.de
Web: http://db0nj.de,1,DMR-MARC
-262854,DB0MIO,Michelau,Bayern,Germany,438.70000,1,-7.6,PEER,TS1 TS2,DG2NBJ,,0,DMR-plus
-262855,DB0PME,Schliersee/Tegernsee,Bayern,Germany,439.82500,1,-9.400,PEER,TS1 TS2,DD5KI,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 3 = North America
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 262 = Germany 1
Time Slot #1 - Group Call 9 = Local 1 > DB0HKN

Time Slot #2 - Group Call 262 = Germany 2
Time Slot #2 - Group Call 8 = Regional Bayern
Time Slot #2 - Group Call 9 = Local > DB0HKN
You Must Have [ARS] Disabled Within Your Radio


Contact: Andreas Stefan, DL5MGD
Email: ----------
Web: http://darc.de/c10/relais/db0pme/,1,DMR-MARC
-262856,DB0HKN,Holzkirchen,Bayern,Germany,438.30000,1,-7.600,PEER,TS1 TS2,DD5KI,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 262 = Germany 1
Time Slot #1 - Group Call 9 = Local 1 > DB0PME

Time Slot #2 - Group Call 262 = Germany 2
Time Slot #2 - Group Call 8 = Regional Bayern
Time Slot #2 - Group Call 9 = Local 2 > DBOPME
You Must Have [ARS] Disabled Within Your Radio


Contact: Gunnar Sircar, DD5KI
Email: dd5ki@darc.de
Web: http://darc.de/c10/relais/db0hkn/,1,DMR-MARC
+262853,DB0NJ,Muenchen,Bayern,Germany,439.43750,1,-7.600,PEER,TS1 TS2,DD5KI,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 262 = Germany 1
Time Slot #1 - Group Call 9 = Local 1

Time Slot #2 - Group Call 262 = Germany 2
Time Slot #2 - Group Call 8 = Regional Bayern
Time Slot #2 - Group Call 9 = Local >
You Must Have [ARS] Disabled Within Your Radio


Contact: Gunnar Sircar, DD5KI
Email: dd5ki@darc.de
Web: http://db0nj.de,1,DMR-DL
+262854,DB0MIO,Michelau,Bayern,Germany,438.70000,1,-7.600,PEER,TS1 TS2,DG2NBJ,,0,BM
+262855,DB0PME,Schliersee/Tegernsee,Bayern,Germany,439.82500,1,-9.400,PEER,TS1 TS2,DD5KI,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 3 = North America
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 262 = Germany 1
Time Slot #1 - Group Call 9 = Local 1 > DB0HKN

Time Slot #2 - Group Call 262 = Germany 2
Time Slot #2 - Group Call 8 = Regional Bayern
Time Slot #2 - Group Call 9 = Local > DB0HKN
You Must Have [ARS] Disabled Within Your Radio


Contact: Andreas Stefan, DL5MGD
Email: ----------
Web: http://darc.de/c10/relais/db0pme/,1,DMR-DL
+262856,DB0HKN,Holzkirchen,Bayern,Germany,438.30000,1,-7.600,PEER,TS1 TS2,DD5KI,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 262 = Germany 1
Time Slot #1 - Group Call 9 = Local 1 > DB0PME

Time Slot #2 - Group Call 262 = Germany 2
Time Slot #2 - Group Call 8 = Regional Bayern
Time Slot #2 - Group Call 9 = Local 2 > DBOPME
You Must Have [ARS] Disabled Within Your Radio


Contact: Gunnar Sircar, DD5KI
Email: dd5ki@darc.de
Web: http://darc.de/c10/relais/db0hkn/,1,DMR-DL
262857,DB0FSG,Langenbach,Bayern,Germany,439.93750,1,-9.4,PEER,TS1 TS2,DL2XP,,0,DMR-plus
262858,DB0UFO,Neubiberg,Bayern,Germany,438.31250,1,-7.6,Peer,TS1 TS2,DL2MEE,,0,DMR-plus
262860,DB0ESS,Gruenten/Allgaeu,Bayern,Germany,438.61250,1,-7.6,PEER,TS1 TS2,DB7MJ,,0,DMR-plus
-262861,DM0ESS,Sonthofen,Bayern,Germany,438.56250,1,-7.6,PEER,TS1 TS2,DB7MJ,,0,DMR-plus
-262862,DM0RDH,Wiesenfelden ,Bayern ,Germany ,439.52500,1,-7.6,PEER,TS1 TS2,DL2RDH,,0,DMR-plus
+262861,DM0ESS,Sonthofen,Bayern,Germany,438.56250,1,-7.600,PEER,TS1 TS2,DB7MJ,,0,BM
+262862,DM0RDH,Wiesenfelden,Bayern,Germany,439.52500,1,-7.6,PEER,TS1 TS2,DL2RDH,,0,DMR-plus
262863,DB0RDH,Grandsberg,Bayern,Germany,439.92500,1,-9.4,PEER,TS1 TS2,DL2RDH,,0,DMR-plus
262864,DB0OAL,Tegelberg,Bayern,Germany,439.91250,1,-9.4,PEER,TS1 TS2,DB7MJ,,0,DMR-plus
262865,DK5RTA,Gilching,Bayern,Germany,439.11250,1,-7.6,PEER,TS1 TS2,DK5RTA,,0,DMR-plus
262866,DB0RTA,Gilching,Bayern,Germany,438.36250,1,-7.6,PEER,TS1 TS2,DK5RTA,,0,DMR-plus
262867,DB0PUC,Puchheim,Bayern,Germany,439.95000,1,-9.4,PEER,TS1 TS2,DK5RTA,,0,DMR-plus
-262870,DB0TS,Moosbach,Bayern,Germany,439.16250,1,-7.6,Peer,TS1 TS2,DM3TS,,0,BM
-262873,DB0BAY,Schwandorf ,Bayern ,Germany ,438.25000,1,-7.6,Peer,TS1 TS2,DK5RQ,,0,DMR-plus
-262885,DM0RDT,Karlskron,Bayern,Germany,439.82500,1,-9.4,Peer,TS1 TS2,DH6MBT,,0,Hytera
+262870,DB0TS,Moosbach,Bayern,Germany,439.16250,1,-7.600,Peer,TS1 TS2,DM3TS,,0,BM
+262873,DB0BAY,Schwandorf,Bayern,Germany,438.25000,1,-7.6,Peer,TS1 TS2,DK5RQ,,0,DMR-plus
+262885,DM0RDT,Karlskron,Bayern,Germany,439.82500,1,-9.400,Peer,TS1 TS2,DH6MBT,,0,DMR-plus
262888,DB0RP,Regensburg,Bayern,Germany,439.10000,1,-7.6,PEER,TS1 TS2,DL5RDW,,0,DMR-plus
262890,DM0ET,Frensdorf/Bamberg,Bayern,Germany,439.41250,1,-7.6,PEER,TS1 TS2,DK2ET,,0,DMR-plus
-262898,DK6PX,Dietramszell,Bayern,Germany,439.85000,1,-9.4,PEER,TS1 TS2,DK6PX,,0,DMR-plus
-262899,DB0TTB,Hohenpeissenberg ,Bayern ,Germany ,439.58750,1,-7.6,PEER,TS1 TS2,DL4TTB,,0,DMR-plus
+262898,DK6PX,Dietramszell,Bayern,Germany,439.85000,1,-9.400,PEER,TS1 TS2,DK6PX,,0,DMR-plus
+262899,DB0TTB,Hohenpeissenberg,Bayern,Germany,439.58750,1,-7.6,PEER,TS1 TS2,DL4TTB,,0,DMR-plus
262901,DB0LE,Leipzig West,Saxony,Germany,439.57500,1,-7.600,Peer,TS1 TS2,DC8YM,,0,DMR-plus
262902,DO0ERZ,Thalheim / Erzgeb.,Saxony,Germany,439.43750,1,-7.600,PEER,TS1 TS2,DO8GT,,0,BM
+262911,DO0UH,Muehlhausen,Thuringia,Germany,430.37500,1,0.000,,,DO3JSM,,0,BrandMeister
262969,DO8GT,Zwoenitz,Saxony,Germany,439.43750,1,-7.600,Peer,TS1 TS2,DO8GT,,0,Motorola
262979,DB0ERZ,Auersberg - 1019m/NN,Sachsen,Germany,439.46250,1,-7.600,PEER,TS1 TS2,DL3YK,,0,BM
262985,DB0FTS,Suhl,Thuringia,Germany,438.50000,1,-7.600,,,DJ1JAY,,0,DMR-plus
-262999,DB0ERZ,Auersberg,Sachsen,Germany,439.46250,1,-7.600,PEER,TS1 TS2,DO8GT,,0,Motorola
+262999,IPSC2,Auersberg,Sachsen,Germany,439.46250,1,-7.600,PEER,TS1 TS2,DL5DI,,0,DMRplus
268101,CQ0DAM,Amarante,Porto,Portugal,438.22500,1,-7.600,Peer,TS1 TS2,CT2HMR,,0,None
+268102,CQ0DBO,Carvela,Vila Real,Portugal,438.40000,1,-7.600,,,CT1JIB,,0,BM
268103,CQ0DBA,Serra do Cruzeiro,Porto,Portugal,438.32500,1,-7.600,PEER,TS1 TS2,CT2IXP,,0,None
-268201,CQ0DTRZ,Serra do Arestal,Aveiro,Portugal,438.31250,1,-7.600,Peer,TS1 TS2,CT2JSS,,0,Hytera
+268104,CQ0DGM,Gondomar,Porto District,Portugal,438.25000,1,-7.600,,,CT2GNC,,0,BrandMeister
+268201,CQ0DTRZ,Serra do Arestal,Aveiro,Portugal,438.31250,1,-7.600,Peer,TS1 TS2,CT2JSS,,0,BM
268203,CQ0DFR,Serra da Freita,Aveiro,Portugal,438.50000,1,-7.600,PEER,TS1 TS2,CT2JCL,,0,None
268220,CQ0DVI,Viseu (REP),Viseu District,Portugal,438.22500,1,-7.600,Peer,TS1 TS2,CT2GXU,,0,Hytera
-268301,CQ0UCSC,Cascais,Lisboa,Portugal,438.72500,1,-7.600,Peer,TS1 TS2,CT1FHI,CQ0UCSC 438.725 -7.6 MHz, Color Code 1,1,MOTOROLA
+268301,CQ0UCSC,Cascais,Lisboa,Portugal,438.72500,1,-7.600,Peer,TS1 TS2,CT1FHI,CQ0UCSC 438.725 -7.6 MHz, Color Code 1,1,BM
268302,CQ0DRLA,Serra Arrbida,Setubal,Portugal,438.35000,1,-7.6,PEER,TS1 TS2,CT1JIB,,0,DMR-plus
-268303,CQ0DMA,S. Arrabida,Setuabal,Portugal,438.35000,1,-7.6,PEER,TS1 TS2,CT1JIB,,0,DMR-plus
+268303,CQ0DMA,S. Arrabida,Setuabal,Portugal,438.35000,1,-7.600,PEER,TS1 TS2,CT1JIB,,0,BM
+268304,CQ0DLX,Lisbon,Lisbon,Portugal,438.50000,1,-7.600,,,CT1JIB,,0,BrandMeister
268399,CQ0DS,Sintra,Lisbon,Portugal,438.22500,1,-7.600,,None,CT2GXU,,0,
270100,LX0RU,Rumelange,,Luxemburg,438.75000,1,-7.6,Peer,TS1 TS2,LX1US,,0,DMR-plus
270101,LX0RU,Hautcharage,,Luxemburg,438.80000,1,-7.600,PEER,TS1 TS2,LX1CK,,0,
-270102,LX0DRR,Rumelange,Luxemburg,Luxemburg,145.78750,1,-0.6,PEER,TS1 TS2,LX1US,,0,DMR-plus
+270102,LX0DRR,Rumelange,Luxemburg,Luxemburg,145.78750,1,-0.600,PEER,TS1 TS2,LX1US,,0,DMR-plus
270103,LX3X,Differdange,Luxemburg,Luxemburg,439.92500,1,-9.400,PEER,TS1 TS2,LX3X,,0,DMR-plus
270104,LX1MS,Luxemburg,Luxemburg,Luxemburg,439.50000,1,-9.400,PEER,TS1 TS2,LX1DUC,,0,Hytera
270106,LX0NSR,Ettelbruck,Luxemburg,Luxemburg,438.68750,1,-7.6,PEER,TS1 TS2,LX2CS,,0,DMR-plus
-270110,LX0DME,Eschdorf,Luxemburg,Luxemburg,439.51250,1,-7.6,Peer,TS1 TS2,LX1IQ,,0,Motorola
+270110,LX0DME,Eschdorf,Luxemburg,Luxemburg,439.51250,1,-7.6,Peer,TS1 TS2,LX1IQ,,0,DMR-plus
270111,LX0E,Luxembourg,Luxemburg,Luxemburg,439.90000,1,-9.400,PEER,TS1 TS2,LX1DUC,,0,Hytera
-270112,LX0E,Luxembourg,Luxemburg,Luxemburg,439.91250,1,-9.4,PEER,TS1 TS2,LX1DUC,,0,DMR-plus
-270113,LX0E,Luxembourg,Luxemburg,Luxemburg,439.92500,1,-9.4,PEER,TS1 TS2,LX1DUC,,0,DMR-plus
-270120,LX0DRB,Bourscheid,Luxemburg,Luxemburg,145.72500,1,-0.6,Peer,TS1 TS2,LX1IQ,,0,Motorola
+270112,LX0E,Luxembourg,Luxemburg,Luxemburg,439.91250,1,-9.400,PEER,TS1 TS2,LX1DUC,,0,DMR-plus
+270113,LX0E,Luxembourg,Luxemburg,Luxemburg,439.92500,1,-9.400,PEER,TS1 TS2,LX1DUC,,0,DMR-plus
+270120,LX0DRB,Bourscheid,Luxemburg,Luxemburg,145.72500,1,-0.600,Peer,TS1 TS2,LX1IQ,,0,DMR-plus
278001,9H1DMR,Naxxar,,Malta,430.92500,1,7.600,PEER,TS1 TS2,9H1US,,0,Motorola
-278002,9H1DMR,Naxxar,,Malta,430.92500,1,7.600,PEER,TS1 TS2,9H1US,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 13 = WW English
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 9 = Local 1

Time Slot #2 - Group Call 8 = Regional
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio

Contact: Antoine Debattista
Email: ant9h1us@gmail.com,1,DMR-Malta
+278002,9H1DMR,Naxxar,,Malta,430.92500,1,7.600,PEER,TS1 TS2,9H1US,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 13 = WW English
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 9 = Local 1

Time Slot #2 - Group Call 8 = Regional
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio

Contact: Antoine Debattista
Email: ant9h1us@gmail.com,1,Motorola
278100,9H1BBS,Naxxar,,Malta,430.41250,1,9.000,PEER,TS1 TS2,9H1IA,,0,Motorola
-284000,LZ0DMR,Sofia,,Bulgaria,439.10000,1,-7.6,PEER,TS1 TS2,LZ1LZN,,0,DMR-plus
+284000,LZ0DMR,Sofia,,Bulgaria,439.10000,1,-7.600,PEER,TS1 TS2,LZ1LZN,,0,DMR-plus
284002,LZ0HAM,Pk.Botev,,Bulgaria,439.50000,1,-7.600,PEER,TS1 TS2,LZ1LZN,,0,DMR-plus
+293001,S55DMR,Lisca,,Slovenia,439.07500,1,-7.600,,,S56CT,,0,None
+294001,Z35UIT,Skopje,,Macedonia,439.70000,1,-7.600,Master,Mixed Mode,Z32IT,,0,BrandMeister
302001,VE1CRA,Charlottetown,Prince Edward Island,Canada,441.95000,1,+5.000,Peer,TS2,VE1AIC,,0,BM
302200,VE2REX,Covey Hill,Quebec,Canada,448.52500,1,-5.000,Peer,TS1 TS2,VA2SPB,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 13 = WW English
Time Slot #1 - Group Call 11 = WW French
Time Slot #1 - Group Call 3 = North America
Time Slot #1 - Group Call 302 = Canada
Time Slot #1 - Group Call 310 = TAC310
Time Slot #1 - Group Call 9999 = Audio Test
Time Slot #2 - Group Call 3023 = Ontario
Time Slot #2 - Group Call 3022 = Quebec
Time Slot #2 - Group Call 3024 = Manitoba
Time Slot #2 - Group Call 3026 = Alberta
Time Slot #2 - Group Call 3029 = New Brunswick
Time Slot #2 - Group Call 3027 = British Columbia
Time Slot #2 - Group Call 2 = Local

You Must Have [ARS] Disabled in Your Radio

Coverage Area (http://www.dmr-marc.net/images/va2cyh-coverage.jpg)

Contact: Alain Reid, VA2SPB
E-mail: va2spb@coveyhilltelecom.com
Website: www.ve2cyh.org,1,DMR-MARC Canada
302201,VA2RLD,St. Calixte,Quebec,Canada,443.15000,2,+5.000,Peer,TS1 TS2,VA2DU,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 13 = WW English
Time Slot #1 - Group Call 11 = WW French
Time Slot #1 - Group Call 3 = North America
Time Slot #1 - Group Call 302 = Canada
Time Slot #1 - Group Call 310 = TAC310
Time Slot #1 - Group Call 9999 = Audio Test
Time Slot #2 - Group Call 3023 = Ontario
Time Slot #2 - Group Call 3022 = Quebec
Time Slot #2 - Group Call 3024 = Manitoba
Time Slot #2 - Group Call 3026 = Alberta
Time Slot #2 - Group Call 3029 = New Brunswick
Time Slot #2 - Group Call 3027 = British Columbia
Time Slot #2 - Group Call 2 = Local

You Must Have [ARS] Disabled in Your Radio

Contact name: Rene, VE2RI
E-mail: ve2ri@mail.com,1,DMR-MARC Canada
@@ -1053,6 +1253,8 @@ 302218,VE2UCD,QUEBEC,Quebec,Canada,448.62500,1,-5.000,Peer,TS1 TS2,VE2JKA,,1,dmr-marc
302219,VA2RVB,St-Félix-de-Valois,Quebec,Canada,442.80000,2,+5.000,Master,TS1 TS2,VE2VB,,0,BrandMeister
302220,VE2RRC,Roxboro,Quebec,Canada,448.50000,1,-5.000,Peer,TS1 TS2,VE2RI,,0,Brandmeister
+302221,VE2RWE,DIXVILLE,Quebec,Canada,448.12500,1,-5.000,Peer,TS1 TS2,VE2JKA,,1,BELAIR
+302222,VA2OZ,GORE,Quebec,Canada,447.37500,1,-5.000,Peer,TS1 TS2,VE2JKA,,1,BELAIR
302300,VE3RGM,London,Ontario,Canada,444.61250,7,+5.000,Peer,TS1 TS2,VE3NMZ,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 13 = WW English
Time Slot #1 - Group Call 3 = North America
Time Slot #1 - Group Call 302 = Canada
Time Slot #1 - Group Call 310 = TAC310
Time Slot #1 - Group Call 9999 = Audio Test
Time Slot #2 - Group Call 3023 = Ontario
Time Slot #2 - Group Call 3022 = Quebec
Time Slot #2 - Group Call 3024 = Manitoba
Time Slot #2 - Group Call 3026 = Alberta
Time Slot #2 - Group Call 3029 = New Brunswick
Time Slot #2 - Group Call 3027 = British Columbia
Time Slot #2 - Group Call 2 = Local

You Must Have [ARS] Disabled in Your Radio

Contact: Jim Wake, VE3NMZ
Email: jim.wake@spectrumpaging.ca,1,DMR-MARC Canada
302301,VE3NXS,Kitchener,Ontario,Canada,444.53750,7,+5.000,Peer,TS1 TS2,VE3NXT,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 13 = WW English
Time Slot #1 - Group Call 3 = North America
Time Slot #1 - Group Call 302 = Canada
Time Slot #1 - Group Call 310 = TAC310
Time Slot #1 - Group Call 9999 = Audio Test
Time Slot #2 - Group Call 3023 = Ontario
Time Slot #2 - Group Call 3022 = Quebec
Time Slot #2 - Group Call 3024 = Manitoba
Time Slot #2 - Group Call 3026 = Alberta
Time Slot #2 - Group Call 3029 = New Brunswick
Time Slot #2 - Group Call 3027 = British Columbia
Time Slot #2 - Group Call 2 = Local

You Must Have [ARS] Disabled in Your Radio

Coverage Area (http://www.dmr-marc.net/images/ve3nxs-coverage.jpg)

Contact: Bob Moyer, VE3NXT
Email: rbmoyer@gmail.com,1,DMR-MARC Canada
302302,VE3BNI,Milton,Ontario,Canada,443.98750,1,+5.000,Peer,TS1 TS2,VE3BNI,,0,DMR-MARC - Canada
@@ -1143,6 +1345,7 @@ 310508,W5AUU,Conway,Arkansas,United States,443.75000,1,+5.000,None,TS1 TS2,N5OMW,,0,Brandmeister
310509,KG5GJU,Clarkridge ,Arkansas,United States,443.22500,1,+5.000,Peer,TS1 TS2,KG5GJU,,0,Brand meister
310510,K5BRM,little rock,Arkansas,United States,443.92500,1,+5.000,Peer,TS1 TS2,K5BRM,,0,brandmister
+310511,KG5GJU,clarkridge,Arkansas,United States,443.22500,14,+5.000,Peer,TS1 TS2,KG5GJU,,0,brandmesister
310600,K6EH,Palos Verdes,California,United States,446.06000,1,-5.000,Peer,None,K6EH,,0,None
310601,W6UUU,Oakland,California,United States,144.95000,1,+2.500,Master,TS1 TS2,N6LDJ,,0,BrandMeister
310602,K6PIT,Pittsburg,California,United States,440.13750,2,+5.000,Peer,TS1 TS2,K6BIV,,0,BrandMeister
@@ -1197,7 +1400,7 @@ 310651,K6ACR,Tassajera Peak,California,United States,444.35000,2,+5.000,Master,TS1 TS2,K6ACR,,0,BrandMeister
310652,N6BMW,Ojai,California,United States,445.70000,1,-5.000,Peer,TS1 TS2,N6BMW,Talk Group Talk Group # Time Slot # PTT Timer
Local 2 1 Always On
Regional TG Varies 1 Always On
SoCal 1 - PTT 721 1 10 Mins
SoCal 2 - PTT 722 1 10 Mins
SoCal Talk Group 76225 1 Always ON
CenCal - PTT 236225 1 10 Mins
NorCal 5150 - PTT 5150 1 10 Mins
CAL 1 - PTT 2251 2 10 Mins
CAL 2 - PTT 2252 2 10 Mins
California 3107 2 Always ON
Southwest 3176 2 Always ON
North America 3 2 10 Mins
Worldwide English - PTT 13 2 10 Mins
World Wide - PTT 1 2 20 Mins
Comm 1 3777215 2 Always On
TAC 310 - PTT 310 2 10 Mins
Parrot - PTT 9998 2 10 Mins
Audio Test - PTT 9999 2 5 Mins
Website:,1,SoCal
310653,KJ6NRO,Tuolumne,California,United States,144.96250,2,+2.500,Master,TS1 TS2,KJ6NRO,,0,BrandMeister
-310654,WX6D,Fresno,California,United States,442.23750,1,+5.000,Master,TS1 TS2,N6IB,Local 2 1
CenCal 1 - PTT 221 1
CenCal 2 - PTT 222 1
CenCal 236225 1
NorCal 5150 - PTT 5150 1
SoCal PTT 76225 1
TG 647 647 2
CAL 1 - PTT 2251 2
CAL 2 - PTT 2252 2
California 3107 2
North America - PTT 3 2
World Wide - PTT 1 2
TAC 310 - PTT 310 2
Southwest 3176 2
Audio Test - PTT 9999 2
Parrot PTT 9998 2
Comm 1 3777215 2 Website:,1,Mountain West DMR
+310654,WX6D,Fresno,California,United States,442.23750,1,+5.000,Master,TS1 TS2,N6IB,Time Slot #2 - Group Call 2 = Local
Time Slot #2 - Group Call 3185 = Cactus
Time Slot #2 - Group Call 31066 = SoCal
Time Slot #2 - Group Call 31068 = NorCal
Time Slot #2 - Group Call 31062 = Mountain West
Time Slot #2 - Group Call 31063 = Mountain West 1
Time Slot #1 - Group Call 3106 = California
Time Slot #1 - Group Call 31061 = California 1
Time Slot #1 - Group Call 3176 = Southwest
Time Slot #1 - Group Call 31761 = Southwest 1
Time Slot #1 - Group Call 93 = North America
Time Slot #1 - Group Call 91 = World
Time Slot #1 - Group Call 31096 = Call Zone 6
Time Slot #1 - Group Call 310 = TAC 310
Time Slot #1 - Group Call 3777215 = Comm 1
Time Slot #1 - Group Call 31268 = SNARS
Time Slot #1 - Group Call 3168 = I-5
Time Slot #1 - Group Call 9999 = Audio Meter
Time Slot #1 - Group Call 9998 = Parrot (Echo)

You Must Have [ARS] Disabled Within Your Radio

Contact: Mark Ward, N6IB
Email: n6ib@me.com:,1,Mountain West DMR
310655,K6ACR,Modesto,California,United States,442.17500,1,+5.000,Master,TS1 TS2,K6ACR,Local LOCAL 2 1 Always On
Club / Sub Regional [regional option] Varies 1 Always On
NorCal 1 - PTT NORCAL 1 621 1 10 Mins
NorCal 2 - PTT NORCAL 2 622 1 10 Mins
Norcal- 5150 NORCAL 5150 5150 1 Always On
CenCal-PTT CENCAL 236225 1 10 Mins
SoCal-PTT SOCAL 76225 1 10 Mins
CAL 1 - PTT CAL 1 2251 2 10 Mins
CAL 2 - PTT CAL 2 2252 2 10 Mins
California CALIFORNIA 3107 2 Always On
Southwest SOUTHWEST 3176 2 Always On
North America - PTT NORTH AMERICA 3 2 10 Mins
English - PTT WORLD ENGLISH 13 2 10 Mins
World Wide - PTT WORLD 1 2 20 Mins
Comm 1 COMM 1 3777215 2 Always On
TAC 310 - PTT TAC 310 310 2 10 Mins
Parrot - PTT ECHO TEST 9998 2 10 Mins
Audio Test - PTT AUDIO TEST 9999 2 5 Mins Website: http://norcaldmr.org/NorCal-Network-Map/repeater-pages/k6acr-modesto/index.php,0,BrandMeister
310656,K6ACR,Mt. Bullion,California,United States,144.93750,1,+2.500,Master,TS1 TS2,K6ACR,Local LOCAL 2 1 Always On
Club / Sub Regional [regional option] Varies 1 Always On
NorCal 1 - PTT NORCAL 1 621 1 10 Mins
NorCal 2 - PTT NORCAL 2 622 1 10 Mins
Norcal- 5150 NORCAL 5150 5150 1 Always On
CenCal-PTT CENCAL 236225 1 10 Mins
SoCal-PTT SOCAL 76225 1 10 Mins
CAL 1 - PTT CAL 1 2251 2 10 Mins
CAL 2 - PTT CAL 2 2252 2 10 Mins
California CALIFORNIA 3107 2 Always On
Southwest SOUTHWEST 3176 2 Always On
North America - PTT NORTH AMERICA 3 2 10 Mins
English - PTT WORLD ENGLISH 13 2 10 Mins
World Wide - PTT WORLD 1 2 20 Mins
Comm 1 COMM 1 3777215 2 Always On
TAC 310 - PTT TAC 310 310 2 10 Mins
Parrot - PTT ECHO TEST 9998 2 10 Mins
Audio Test - PTT AUDIO TEST 9999 2 5 Mins Website: http://norcaldmr.org/NorCal-Network-Map/repeater-pages/k6acr-bullionvhf/index.php,0,BrandMeister
310657,KE6NDG,Susanville,California,United States,444.57500,1,+5.000,Peer,TS1 TS2,KE6NDG,,0,DCI
@@ -1207,7 +1410,7 @@ 310661,N6GGS,Victorville,California,United States,446.06000,2,-5.000,Master,TS1 TS2,N6GGS,TS 1

Local TG 2 AA
CenCal TG 236225 AA
SoCal TG 76225 AA
SoCal 1 TG 721 UA 5min

TS 2

CAL TG 3107 AA
CAL 1 TG 2251 UA 5 min
Southwest TG 3176 AA
Southwest 1 TG 31761 UA 5
N America TG 3 UA 5
WW English TG 13 UA 5
WW TG 1 UA 5
WW Eng UA 1 TG 113 UA 5
WW Eng UA 2 TG 123 UA 5
COMM-1 TG 3777215 AA
TAC 310 TG 310 UA 5
Jenny TG 8675309 UA 5
Parrot TG 9998 UA 5
Audio Test TG 9999 UA 5

Website:,1,SoCal
310662,WA6KPX,Milpitas,California,United States,443.40000,1,+5.000,Master,TS1 TS2,WA6YCZ,,0,Baycom
310663,K6OTR,Palo Alto,California,United States,441.85000,1,+5.000,Master,TS1 TS2,KA6RMA,,0,Baycom
-310664,WX6D,Visalia,California,United States,442.32500,2,+5.000,Master,TS1 TS2,N6IB,Local 2 1
CenCal 1 - PTT 221 1
CenCal 2 - PTT 222 1
CenCal 236225 1
NorCal 5150 - PTT 5150 1
SoCal PTT 76225 1
TG 647 647 2
CAL 1 - PTT 2251 2
CAL 2 - PTT 2252 2
California 3107 2
North America - PTT 3 2
World Wide - PTT 1 2
TAC 310 - PTT 310 2
Southwest 3176 2
Audio Test - PTT 9999 2
Parrot PTT 9998 2
Comm 1 3777215 2 Website: ,1,CenCal
+310664,WX6D,Visalia,California,United States,442.32500,2,+5.000,Master,TS1 TS2,N6IB,Time Slot #2 - Group Call 2 = Local
Time Slot #2 - Group Call 3185 = Cactus
Time Slot #2 - Group Call 31066 = SoCal
Time Slot #2 - Group Call 31068 = NorCal
Time Slot #2 - Group Call 31062 = Mountain West
Time Slot #2 - Group Call 31063 = Mountain West 1
Time Slot #1 - Group Call 3106 = California
Time Slot #1 - Group Call 31061 = California 1
Time Slot #1 - Group Call 3176 = Southwest
Time Slot #1 - Group Call 31761 = Southwest 1
Time Slot #1 - Group Call 93 = North America
Time Slot #1 - Group Call 91 = World
Time Slot #1 - Group Call 31096 = Call Zone 6
Time Slot #1 - Group Call 310 = TAC 310
Time Slot #1 - Group Call 3777215 = Comm 1
Time Slot #1 - Group Call 31268 = SNARS
Time Slot #1 - Group Call 3168 = I-5
Time Slot #1 - Group Call 9999 = Audio Meter
Time Slot #1 - Group Call 9998 = Parrot (Echo)

You Must Have [ARS] Disabled Within Your Radio

Contact: Mark Ward, N6IB,1,Mountain West DMR
310665,NG6D,Auburn ,California,United States,442.96250,1,+5.000,Peer,TS1 TS2,NG6D,,0,BrandMeister
310666,KC6WTF,Morgan Hill,California,United States,444.10000,1,+5.000,Master,TS1 TS2,KC6WTF,,0,BrandMeister
310667,W6SS,San Diego,California,United States,446.14000,1,-5.000,Peer,TS1 TS2,W6SS,,0,San Diego
@@ -1220,12 +1423,12 @@ 310674,W6YYY,Morgan Hill,California,United States,440.03750,1,+5.000,Master,TS1 TS2,HORK,,0,BrandMeister
310676,K6LNK,Gualala,California,United States,442.07500,1,+5.000,Master,TS1 TS2,N6MVT,,0,BrandMeister
310677,W6CX,Walnut Creek,California,United States,147.06000,1,+0.600,Master,None,KT6Y,,0,None
-310678,WX6D,Clovis,California,United States,440.05000,1,+5.000,Master,TS1 TS2,N6IB,WX6D 145.4500 -0.6 MHz Color Code 1


Time Slot 1 Group Call 2 = Local
Time Slot 1 Group Call 221= CenCal 1 - PTT
Time Slot 1 Group Call 222= CenCal 2 - PTT
Time Slot 1 Group Call 236225 = CenCal
Time Slot 1 Group Call 5150 = NorCal 5150 - PTT
Time Slot 1 Group Call 76225 = SoCal PTT
Time Slot 2 Group Call 647 = 647
Time Slot 2 Group Call 2251 = CAL 1 - PTT
Time Slot 2 Group Call 2252 = CAL 2 - PTT
Time Slot 2 Group Call 3107 = California
Time Slot 2 Group Call 3 = North America - PTT
Time Slot 2 Group Call 1 = World Wide - PTT
Time Slot 2 Group Call 310 = TAC 310 - PTT
Time Slot 2 Group Call 3176 = Southwest
Time Slot 2 Group Call 9999 = Audio Test - PTT
Time Slot 2 Group Call 9998 = Parrot PTT
Time Slot 2 Group Call 3777215 = Comm 1

Website: http://norcaldmr.org/NorCal-Network-Map/repeater-pages/WX6DClovis/index.php
Contact: N6IB
Email: n6ib@me.com ,1,CenCal
+310678,WX6D,Clovis,California,United States,440.05000,1,+5.000,Master,TS1 TS2,N6IB,Time Slot #2 - Group Call 2 = Local
Time Slot #2 - Group Call 3185 = Cactus
Time Slot #2 - Group Call 31066 = SoCal
Time Slot #2 - Group Call 31068 = NorCal
Time Slot #2 - Group Call 31062 = Mountain West
Time Slot #2 - Group Call 31063 = Mountain West 1
Time Slot #1 - Group Call 3106 = California
Time Slot #1 - Group Call 31061 = California 1
Time Slot #1 - Group Call 3176 = Southwest
Time Slot #1 - Group Call 31761 = Southwest 1
Time Slot #1 - Group Call 93 = North America
Time Slot #1 - Group Call 91 = World
Time Slot #1 - Group Call 31096 = Call Zone 6
Time Slot #1 - Group Call 310 = TAC 310
Time Slot #1 - Group Call 3777215 = Comm 1
Time Slot #1 - Group Call 31268 = SNARS
Time Slot #1 - Group Call 3168 = I-5
Time Slot #1 - Group Call 9999 = Audio Meter
Time Slot #1 - Group Call 9998 = Parrot (Echo)

You Must Have [ARS] Disabled Within Your Radio

Contact: Mark Ward, N6IB
Email: n6ib@me.com
,1,Mountain West DMR
310679,WD6AML,San Dimas,California,United States,447.90000,1,-5.000,Master,TS1 TS2,WA6PYJ,Time slot 1
Name TGAA/UA Timer

Local 2 AA
Cactus3185 AA
Mtn West236225 AA
SoCal76225 AA
I5 3168AA

Time Slot 2

Cal Statewide 3107 AA
Cal Statewide1 2251 UA 5
Southwest 3176 AA
Southwest1 31761 UA 5
Mountain 3177 AA
NA Eng 3 UA 5
WW Eng 13 UA 5
WW 1 1 UA 5
UA1 113 UA 5
UA2 123 UA 5
Comm1 3777215 AA
TAC310 310 UA 5
SNARS6968 UA 5
DCI Bridge3100 UA 5

Audio Meter9999 UA 1
Parrot (Echo)9998 UA 1

AA - Talk Group always active
UA - Talk Group is user activated by PTT (Push To Talk Button) PTT

Activity Timer - The amount of time the Talk group is active if no PTT Activity is detected

Hold Off Timer - Amount of time before talk group
is active again to provide priority traffic on a
Time Slot

You Must Have [ARS] Disabled Within Your Radio

Mountain West Network
Contact Information:,1,Mountain West
310680,W6ELL,Yorba Linda,California,United States,449.46000,1,-5.000,Peer,TS1 TS2,W6ELL,Local 2 1 Always On
Regional TG Varies 1 Always On
SoCal 1 - PTT 721 1 10 Mins
SoCal 2 - PTT 722 1 10 Mins
SoCal Talk Group 76225 1 Always ON
CenCal - PTT 236225 1 10 Mins
NorCal 5150 - PTT 5150 1 10 Mins,1,SoCal,
310681,N6WZK,Riverside,California,United States,449.36000,1,-5.000,Master,TS1 TS2,N6WZK,,0,BrandMeister
310682,KC7NP,Moreno Valley,California,United States,425.42500,1,+3.000,Master,Mixed Mode,KC7NP,,0,dmr
-310683,WX6D,Clovis,California,United States,145.45000,1,-0.600,Master,TS1 TS2,N6IB,,0,Mountain West
+310683,WX6D,Clovis,California,United States,145.45000,1,-0.600,Master,TS1 TS2,N6IB,Time Slot #2 - Group Call 2 = Local
Time Slot #2 - Group Call 3185 = Cactus
Time Slot #2 - Group Call 31066 = SoCal
Time Slot #2 - Group Call 31068 = NorCal
Time Slot #2 - Group Call 31062 = Mountain West
Time Slot #2 - Group Call 31063 = Mountain West 1
Time Slot #1 - Group Call 3106 = California
Time Slot #1 - Group Call 31061 = California 1
Time Slot #1 - Group Call 3176 = Southwest
Time Slot #1 - Group Call 31761 = Southwest 1
Time Slot #1 - Group Call 93 = North America
Time Slot #1 - Group Call 91 = World
Time Slot #1 - Group Call 31096 = Call Zone 6
Time Slot #1 - Group Call 310 = TAC 310
Time Slot #1 - Group Call 3777215 = Comm 1
Time Slot #1 - Group Call 31268 = SNARS
Time Slot #1 - Group Call 3168 = I-5
Time Slot #1 - Group Call 9999 = Audio Meter
Time Slot #1 - Group Call 9998 = Parrot (Echo)

You Must Have [ARS] Disabled Within Your Radio

Contact: Mark Ward, N6IB
Email: n6ib@me.com,1, Mountain West DMR
310684,KA6P,Wrightwood,California,United States,449.03750,2,-5.000,Peer,TS1 TS2,KA6P,TS 1

Local TG 2 AA
CenCal TG 236225 AA
SoCal TG 76225 AA
SoCal 1 TG 721 UA 5min

TS 2

CAL TG 3107 AA
CAL 1 TG 2251 UA 5 min
Southwest TG 3176 AA
Southwest 1 TG 31761 UA 5
N America TG 3 UA 5
WW English TG 13 UA 5
WW TG 1 UA 5
WW Eng UA 1 TG 113 UA 5
WW Eng UA 2 TG 123 UA 5
COMM-1 TG 3777215 AA
TAC 310 TG 310 UA 5
Jenny TG 8675309 UA 5
Parrot TG 9998 UA 5
Audio Test TG 9999 UA 5

Website:,1,SoCal
310685,WA6YVX,San Diego,California,United States,449.86250,1,-5.000,Master,TS1 TS2,WA6YVX,TS1 TG2 Local
TS1 TG3 Regional
TS1 TG76225 SoCal
TS1 TG721 SoCal 1 -UA

TS2 TG3107 California Calling
TS2 TG2251 California 1 -UA
TS2 TG3176 Southwest Region
TS2 TG31761 Southwest 1 UA
TS2 TG3 North America Calling
TS2 TG113 UA English 1
TS2 TG123 UA English 2
TS2 TG13 WW UA
TS2 TG9998 Parrot - UA
TS2 TG9999 NorCal Audio Test - UA

You Must Have [ARS] Disabled Within Your Radio

Contact: WA6YVX, Ed Flinn
Email: wa6yvx@aol.com
,1,SoCal
310686,N6JKF,Santa Monica,California,United States,446.08000,1,-5.000,Master,TS1 TS2,WD6FZA,,0,BrandMeister
@@ -1245,7 +1448,7 @@ 310701,WB6VKR,Santa Paula,California,United States,447.36000,1,-5.000,Master,TS1 TS2,WB6VKR,,0,PAPA
310702,N6UTX,Winters,California,United States,144.93750,2,+2.500,Master,TS1 TS2,N6UTX,,0,BrandMeister
310703,K6LNK,Vacaville,California,United States,927.17500,3,-25.000,Master,TS1 TS2,N6JOA,,0,BrandMeister
-310704,WX6D,Tulare,California,United States,442.47500,2,+5.000,Master,TS1 TS2,N6IB,,0,Mountain West
+310704,WX6D,Tulare,California,United States,442.47500,2,+5.000,Master,TS1 TS2,N6IB,Time Slot #2 - Group Call 2 = Local
Time Slot #2 - Group Call 3185 = Cactus
Time Slot #2 - Group Call 31066 = SoCal
Time Slot #2 - Group Call 31068 = NorCal
Time Slot #2 - Group Call 31062 = Mountain West
Time Slot #2 - Group Call 31063 = Mountain West 1
Time Slot #1 - Group Call 3106 = California
Time Slot #1 - Group Call 31061 = California 1
Time Slot #1 - Group Call 3176 = Southwest
Time Slot #1 - Group Call 31761 = Southwest 1
Time Slot #1 - Group Call 93 = North America
Time Slot #1 - Group Call 91 = World
Time Slot #1 - Group Call 31096 = Call Zone 6
Time Slot #1 - Group Call 310 = TAC 310
Time Slot #1 - Group Call 3777215 = Comm 1
Time Slot #1 - Group Call 31268 = SNARS
Time Slot #1 - Group Call 3168 = I-5
Time Slot #1 - Group Call 9999 = Audio Meter
Time Slot #1 - Group Call 9998 = Parrot (Echo)

You Must Have [ARS] Disabled Within Your Radio

Contact: Mark Ward, N6IB
Email: n6ib@me.com,1,Mountain West DMR
310705,N6GKJ,Lodi,California,United States,444.22500,1,+5.000,Master,TS1 TS2,N6GKJ,,0,BrandMeister
310706,KA7QQV,Alameda,California,United States,442.30000,1,+5.000,Master,TS1 TS2,KA7QQV,,0,Mountain West
310707,W6PE,Sonoma,California,United States,440.01250,1,+5.000,Peer,TS1 TS2,NN6J,,0,BrandMeister
@@ -1253,7 +1456,7 @@ 310709,W6GRC,Redding,California,United States,145.00000,1,+2.500,Master,TS1 TS2,W6GRC,,0,BrandMeister
310710,N9QE,Harbor City,California,United States,449.46000,15,-5.000,Peer,TS1 TS2,N9QE,,0,BrandMeister
310711,W6CMU,Moffett Field,California,United States,443.82500,1,+5.000,Peer,TS1 TS2,W6EI,,0,BrandMeister
-310712,KE6YJC,Fresno,California,United States,440.06250,1,+5.000,Peer,TS1 TS2,KE6YJC,Time Slot #2 - Group Call 2 = Local
Time Slot #2 - Group Call 3185 = Cactus
Time Slot #2 - Group Call 31066 = SoCal
Time Slot #2 - Group Call 61068 = NorCal
Time Slot #2 - Group Call 31062 = Mountain West
Time Slot #2 - Group Call 31063 = Mountain West 1
Time Slot #1 - Group Call 3106 = Statewide
Time Slot #1 - Group Call 31061 = Statewide 1
Time Slot #1 - Group Call 3176 = Southwest
Time Slot #1 - Group Call 31761 = Southwest 1
Time Slot #1 - Group Call 93 = North America
Time Slot #1 - Group Call 91 = World
Time Slot #1 - Group Call 31096 = Call Zone 6
Time Slot #1 - Group Call 310 = TAC 310
Time Slot #1 - Group Call 3777215 = Comm 1
Time Slot #1 - Group Call 31268 = SNARS
Time Slot #1 - Group Call 9999 = Autio Meter
Time Slot #1 - Group Call 9998 = Parrot (Echo)
Time Slot #1 - Group Call 3168 = I-5

You Must Have [ARS] Disabled Wihtin Your Radio
Contact: Ted G. Freitas, KE6YJC
Email: ted.freitas@me.com
Website: http://mountainwestdmr.org/styled-11/styled-56/
,1,Mountain West
+310712,KE6YJC,Fresno,California,United States,440.06250,1,+5.000,Peer,TS1 TS2,KE6YJC,Time Slot #2 - Group Call 2 = Local
Time Slot #2 - Group Call 3185 = Cactus
Time Slot #2 - Group Call 31066 = SoCal
Time Slot #2 - Group Call 31068 = NorCal
Time Slot #2 - Group Call 31062 = Mountain West
Time Slot #2 - Group Call 31063 = Mountain West 1
Time Slot #1 - Group Call 3106 = California
Time Slot #1 - Group Call 31061 = California 1
Time Slot #1 - Group Call 3176 = Southwest
Time Slot #1 - Group Call 31761 = Southwest 1
Time Slot #1 - Group Call 93 = North America
Time Slot #1 - Group Call 91 = World
Time Slot #1 - Group Call 31096 = Call Zone 6
Time Slot #1 - Group Call 310 = TAC 310
Time Slot #1 - Group Call 3777215 = Comm 1
Time Slot #1 - Group Call 31268 = SNARS
Time Slot #1 - Group Call 3168 = I-5
Time Slot #1 - Group Call 9999 = Audio Meter
Time Slot #1 - Group Call 9998 = Parrot (Echo)

You Must Have [ARS] Disabled Within Your Radio

Contact: Ted G. Freitas / KE6YJC
Email: ted.freitas@me.com,1,Mountain West
310713,WD6DIH,Yorba Linda,California,United States,445.40000,1,-5.000,Peer,TS1 TS2,WD6DIH,,0,BrandMeister
310714,W6OTX,San Jose,California,United States,144.96250,3,+2.500,Master,TS1 TS2,KD6W,,0,BrandMeister
310715,W6OTX,San Jose,California,United States,444.47500,1,+5.000,Master,TS1 TS2,KD6W,,0,BrandMeister
@@ -1267,11 +1470,11 @@ 310723,W6BML,Mount Shasta,California,United States,441.27500,1,+5.000,Master,TS1 TS2,NR6J,,0,D-Star/DMR/C4FM
310724,K6TMD,Pine Cove,California,United States,446.06000,3,-5.000,Master,TS1 TS2,WA6PYJ,,1,Mountian West
310725,K6TMD,Palm Springs,California,United States,446.06000,4,-5.000,Master,TS1 TS2,WA6PYJ,,1,Mountain West
-310726,N6VYT,COALINGA,California,United States,442.00000,1,+5.000,Master,TS1 TS2,N6VYT,,1,Mountain West
+310726,N6VYT,COALINGA,California,United States,442.00000,1,+5.000,Master,TS1 TS2,N6VYT,Time Slot #2 - Group Call 2 = Local
Time Slot #2 - Group Call 3185 = Cactus
Time Slot #2 - Group Call 31066 = SoCal
Time Slot #2 - Group Call 31068 = NorCal
Time Slot #2 - Group Call 31062 = Mountain West
Time Slot #2 - Group Call 31063 = Mountain West 1
Time Slot #1 - Group Call 3106 = California
Time Slot #1 - Group Call 31061 = California 1
Time Slot #1 - Group Call 3176 = Southwest
Time Slot #1 - Group Call 31761 = Southwest 1
Time Slot #1 - Group Call 93 = North America
Time Slot #1 - Group Call 91 = World
Time Slot #1 - Group Call 31096 = Call Zone 6
Time Slot #1 - Group Call 310 = TAC 310
Time Slot #1 - Group Call 3777215 = Comm 1
Time Slot #1 - Group Call 31268 = SNARS
Time Slot #1 - Group Call 3168 = I-5
Time Slot #1 - Group Call 9999 = Audio Meter
Time Slot #1 - Group Call 9998 = Parrot (Echo)

You Must Have [ARS] Disabled Within Your Radio
Contact: Mark Ward, N6IB / Eric Ott, N6VYT
Email: n6ib@me.com / n6vyt@arrl.net,1,Mountain West DMR
310727,N6RPV,Rancho Palos Verdes,California,United States,445.72000,1,-5.000,None,Mixed Mode,N6NNW,,0,none
310728,WA6EWV,South Lake Tahoe,California,United States,443.70000,1,+5.000,Peer,TS1 TS2,WA6EWV,,0,BrandMeister
-310729,N6VYT,Coalinga,California,United States,145.00000,1,+2.500,Master,TS1 TS2,N6VYT,,1,Mtn West
-310730,WX6D,Bakersfield,California,United States,440.95000,1,+5.000,Master,TS1 TS2,N6IB,,1,Mountain West
+310729,N6VYT,Coalinga,California,United States,145.02500,1,+2.475,Master,TS1 TS2,N6VYT,Time Slot #2 - Group Call 2 = Local
Time Slot #2 - Group Call 3185 = Cactus
Time Slot #2 - Group Call 31066 = SoCal
Time Slot #2 - Group Call 31068 = NorCal
Time Slot #2 - Group Call 31062 = Mountain West
Time Slot #2 - Group Call 31063 = Mountain West 1
Time Slot #1 - Group Call 3106 = California
Time Slot #1 - Group Call 31061 = California 1
Time Slot #1 - Group Call 3176 = Southwest
Time Slot #1 - Group Call 31761 = Southwest 1
Time Slot #1 - Group Call 93 = North America
Time Slot #1 - Group Call 91 = World
Time Slot #1 - Group Call 31096 = Call Zone 6
Time Slot #1 - Group Call 310 = TAC 310
Time Slot #1 - Group Call 3777215 = Comm 1
Time Slot #1 - Group Call 31268 = SNARS
Time Slot #1 - Group Call 3168 = I-5
Time Slot #1 - Group Call 9999 = Audio Meter
Time Slot #1 - Group Call 9998 = Parrot (Echo)

You Must Have [ARS] Disabled Within Your Radio

Contact: Mark Ward, N6IB / Eric Ott, N6VYT
Email: n6ib@me.com / n6vyt@arrl.net,1,Mountain West DMR
+310730,WX6D,Bakersfield,California,United States,440.95000,1,+5.000,Master,TS1 TS2,N6IB,Time Slot #2 - Group Call 2 = Local
Time Slot #2 - Group Call 3185 = Cactus
Time Slot #2 - Group Call 31066 = SoCal
Time Slot #2 - Group Call 31068 = NorCal
Time Slot #2 - Group Call 31062 = Mountain West
Time Slot #2 - Group Call 31063 = Mountain West 1
Time Slot #1 - Group Call 3106 = California
Time Slot #1 - Group Call 31061 = California 1
Time Slot #1 - Group Call 3176 = Southwest
Time Slot #1 - Group Call 31761 = Southwest 1
Time Slot #1 - Group Call 93 = North America
Time Slot #1 - Group Call 91 = World
Time Slot #1 - Group Call 31096 = Call Zone 6
Time Slot #1 - Group Call 310 = TAC 310
Time Slot #1 - Group Call 3777215 = Comm 1
Time Slot #1 - Group Call 31268 = SNARS
Time Slot #1 - Group Call 3168 = I-5
Time Slot #1 - Group Call 9999 = Audio Meter
Time Slot #1 - Group Call 9998 = Parrot (Echo)

You Must Have [ARS] Disabled Within Your Radio

Contact: Mark Ward, N6IB
Email: n6ib@me.com,1,Mountain West DMR
310731,K7AZ,New Cuyama,California,United States,440.50000,2,+5.000,Peer,TS1 TS2,K7AZ,,0,BrandMeister
310732,KJ6QBM,Bodega Bay,California,United States,440.32500,1,+5.000,Peer,TS1 TS2,KJ6QBM,,0,BrandMeister
310733,K6JWN,Dixon,California,United States,444.52500,2,+5.000,Peer,TS1 TS2,K6JWN,,0,Brandmeister
@@ -1280,6 +1483,7 @@ 310736,K6DOA,Nipomo,California,United States,444.65000,4,+5.000,Master,TS1 TS2,K6RCT,,0,None
310737,KJ6YQW,Culver City,California,United States,446.43000,1,-5.000,Master,Mixed Mode,KJ6YQW,,0,DMR
310738,W6NVY,Mt. Wilson,California,United States,445.18000,7,-5.000,Peer,TS1 TS2,N6CIZ,,0,Brandmeister
+310739,K6INC,Sacramento,California,United States,443.15000,1,+5.000,Master,TS1,AK6O,,0,Scan International
310800,N0SZ,Denver,Colorado,United States,446.80000,1,-5.000,Master,TS1 TS2,K2AD,,0,RMHR
310801,N0SZ,Denver,Colorado,United States,446.93750,1,-5.000,Peer,TS1 TS2,K2AD,,0,RMHR
310802,WA2YZT,Denver,Colorado,United States,446.83750,1,-5.000,Peer,TS2,WA2YZT,,0,RMHR
@@ -1499,7 +1703,7 @@ 311523,KH6FV,Mt. Halekala,Hawaii,United States,444.85000,0,+5.000,Peer,TS1 TS2,KH6FV,,0,Hawaii Trbo
311524,AH6CP,Kukuilono,Hawaii,United States,444.35000,1,+5.000,Peer,TS1 TS2,AH6CP,Time Slot #2 - Group Call 1 = DMR-MARC World Wide
Time Slot #2 - Group Call 3 = DMR-MARC U.S. / English Speaking Countries
Time Slot #2 - Group Call 96801 = Oahu
Time Slot #1 - Group Call 3777215 = TRBO-6
Time Slot #1- Group Call 3115 = HI Statewide


Contact Information:

mototrbohi-owner@yahoogroups.com,1,SF-TRBO
311525,KH6FV,Honolulu,Hawaii,United States,443.42500,2,+5.000,Master,TS1 TS2,KH6FV,,0,Hawaii Trbo
-311526,AH6GR,Maui,Hawaii,United States,442.85000,1,+5.000,Peer,TS1 TS2,AH6GR,TS1: Group Call 3115 = HI-1
TS2:
Group Call 3115808 = HI-2
Group Call 1 = WW
Group Call 3 = NA
Group Call 310 = TAC310
Group Call 96793 = Island Local
Group Call 3777215 = Comm1
Group Call 3176 = Southwest

Contact Information:

Randy, AH6GR
ah6gr@arrl.net,1,Hawaii
+311526,AH6GR,Maui,Hawaii,United States,442.85000,1,+5.000,Peer,TS1 TS2,AH6GR,TS1: Group Call 3115 = HI-1
TS2:
Group Call 3115808 = HI-2
Group Call 1 = WW
Group Call 3 = NA
Group Call 310 = TAC310
Group Call 96793 = Island Local
Group Call 3777215 = Comm1
Group Call 3176 = Southwest

Contact Information:

Randy, AH6GR
ah6gr@arrl.net,1,Brandmeister
311527,KH6FV,Mauna Kea,Hawaii,United States,444.37500,3,+5.000,Peer,TS1 TS2,KH6FV,,0,Hawaii Trbo
311528,KH6FV,Kapolei,Hawaii,United States,443.47500,1,+5.000,Peer,TS1 TS2,KH6FV,,0,Hawaii Trbo
311529,KH6OCD,Honolulu,Hawaii,United States,146.86000,1,-0.600,Peer,Mixed Mode,AH6CP,,0,RACES
@@ -1586,10 +1790,10 @@ 311809,K9DEW,Warsaw,Indiana,United States,443.05000,1,+5.000,Peer,TS1 TS2,K9DEW,Time Slot #1 - Group Call 1 = Worldwide (PTT)
Time Slot #1 - Group Call 3 = North America
Time Slot #1 - Group Call 13= Worldwide English
Time Slot #1 - Group Call 310 = TAC-310
Time Slot #2 - Group Call 2 = Local
Time Slot #2 - Group Call 3118 = Indiana Statewide
Time Slot #2 - Group Call 3126 = Michigan Statewide
Time Slot #2- Group Call 3169 = Midwest Regional

You Must Have [ARS] Disabled Within Your Radio

Coverage Map: http://www.k9dew.com/index.cfm/photo-gallery/

Contact: Dewey, K9DEW
Email: k9dew@aol.com
Website: http://www.k9dew.com,1,W9SMJ-NET
311810,W9SMJ,Frankfort,Indiana,United States,441.37500,1,+5.000,Peer,TS1 TS2,W9SMJ,,0,W9SMJ-NET
311811,NF9K,Indianapolis,,United States,442.45000,1,5.000,PEER,TS1 TS2,NF9K,NF9K 442.450 +5 MHz, Color Code 1 http://www.crossroadsdmr.org/?page_id=96,1,Crossroads DMR
-311812,W9AMT,Bloomington,Indiana,United States,442.10000,1,+5.000,Master,TS1 TS2,W9AMT,Time Slot #1 - Grp Call 1 = World Wide (PTT activated)
Time Slot #1 - Grp Call 13= WW English
Time Slot #1 - Grp Call 3 = N. America
Time Slot #1 - Grp Call 310 = TAC-310 (PTT Activated)
Time Slot #1 - Grp Call 113 = UA English 1 (User Activated)
Time Slot #1 - Grp Call 123 = UA English 2 (User Activated)
Time Slot #1 - Grp Call 9998 = Audio Parrot
Time Slot #1 - Grp Call 9999 = Audio Test
Time Slot #2 - Grp Call 2 = Local
Time Slot #2 - Grp Call 3118 = Indiana Statewide
Time Slot #2 - Grp Call 3169 = Midwest Regional

Coverage Map (http://dmr-marc.net/images/w9amt-coverage.jpg)

Contact: Tony, W9AMT
Email: w9amt@comcast.net,1,Hoosier DMR
+311812,KC9TKJ,Bloomington,Indiana,United States,442.10000,1,+5.000,Master,TS1 TS2,KC9TKJ,Time Slot #1 - Grp Call 1 = World Wide (PTT activated)
Time Slot #1 - Grp Call 13= WW English
Time Slot #1 - Grp Call 3 = N. America
Time Slot #1 - Grp Call 310 = TAC-310 (PTT Activated)
Time Slot #1 - Grp Call 113 = UA English 1 (User Activated)
Time Slot #1 - Grp Call 123 = UA English 2 (User Activated)
Time Slot #1 - Grp Call 9998 = Audio Parrot
Time Slot #1 - Grp Call 9999 = Audio Test
Time Slot #2 - Grp Call 2 = Local
Time Slot #2 - Grp Call 3118 = Indiana Statewide
Time Slot #2 - Grp Call 3169 = Midwest Regional

Coverage Map (http://dmr-marc.net/images/w9amt-coverage.jpg)

Contact: KC9TKJ
Email: christopher@morganized.com,1,Hoosier DMR
311813,KB9CRA,Marion,Indiana,United States,442.75000,1,+5.000,Peer,TS1 TS2,KB9CRA,For Talk Groups see:
http://www.crossroadsdmr.org/?page_id=135
Coverage Map

Contact: Kevin McNeely
Email: kb9cra@indy.rr.com

You Must Have [ARS] Disabled Within Your Radio,1,Crossroads DMR
311814,N9GPY,Culver,Indiana,United States,443.92500,1,+5.000,Peer,TS1 TS2,N9GPY,Time Slot #1 - Grp Call 1 = World Wide (PTT activated)
Time Slot #1 - Grp Call 13= WW English
Time Slot #1 - Grp Call 3 = N. America
Time Slot #1 - Grp Call 310 = TAC-310 (PTT Activated)
Time Slot #1 - Grp Call 113 = UA English 1 (User Activated)
Time Slot #1 - Grp Call 123 = UA English 2 (User Activated)
Time Slot #1 - Grp Call 9998 = Audio Parrot
Time Slot #1 - Grp Call 9999 = Audio Test
Time Slot #2 - Grp Call 2 = Local
Time Slot #2 - Grp Call 3118 = Indiana Statewide
Time Slot #2 - Grp Call 3169 = Midwest Regional

Coverage Map

Contact: Rich N9GPY Email: rich@culcom.net,1,Hoosier DMR
-311815,N9MTF,Wolf Lake,Indiana,United States,442.80000,1,+5.000,Peer,TS1 TS2,N9MTF,Time Slot #1 - Grp Call 1 = World Wide (PTT activated)
Time Slot #1 - Grp Call 13= WW English
Time Slot #1 - Grp Call 3 = N. America
Time Slot #1 - Grp Call 310 = TAC-310 (PTT Activated)
Time Slot #1 - Grp Call 113 = UA English 1 (User Activated)
Time Slot #1 - Grp Call 123 = UA English 2 (User Activated)
Time Slot #1 - Grp Call 9998 = Audio Parrot
Time Slot #1 - Grp Call 9999 = Audio Test
Time Slot #2 - Grp Call 2 = Local
Time Slot #2 - Grp Call 3118 = Indiana Statewide
Time Slot #2 - Grp Call 3169 = Midwest Regional

You Must Have [ARS] Disabled Within Your Radio
Contact: Brad, N9MTF Email: bpeterson@usa.com,1,Hoosier DMR
+311815,N9MTF,Columbia CIty,Indiana,United States,442.80000,1,+5.000,Peer,TS1 TS2,N9MTF,Time Slot #1 - Grp Call 1 = World Wide (PTT activated)
Time Slot #1 - Grp Call 13= WW English
Time Slot #1 - Grp Call 3 = N. America
Time Slot #1 - Grp Call 310 = TAC-310 (PTT Activated)
Time Slot #1 - Grp Call 113 = UA English 1 (User Activated)
Time Slot #1 - Grp Call 123 = UA English 2 (User Activated)
Time Slot #1 - Grp Call 9998 = Audio Parrot
Time Slot #1 - Grp Call 9999 = Audio Test
Time Slot #2 - Grp Call 2 = Local
Time Slot #2 - Grp Call 3118 = Indiana Statewide
Time Slot #2 - Grp Call 3169 = Midwest Regional

You Must Have [ARS] Disabled Within Your Radio
Contact: Brad, N9MTF Email: bpeterson@usa.com,1,Hoosier DMR
311816,K9DEW,South Bend,Indiana,United States,442.05000,1,+5.000,Peer,TS1 TS2,K9DEW,Time Slot #1 - Group Call 1 = Worldwide (PTT)
Time Slot #1 - Group Call 3 = North America
Time Slot #1 - Group Call 13= Worldwide English
Time Slot #1 - Group Call 310 = TAC-310
Time Slot #2 - Group Call 2 = Local
Time Slot #2 - Group Call 3118 = Indiana Statewide
Time Slot #2 - Group Call 3126 = Michigan Statewide
Time Slot #2- Group Call 3169 = Midwest Regional

You Must Have [ARS] Disabled Within Your Radio

Coverage Map: http://www.k9dew.com/index.cfm/photo-gallery/

Contact: Dewey, K9DEW
Email: k9dew@aol.com
Website: http://www.k9dew.com,1,Hoosier DMR
311817,KC9CFM,Ferdinand,Indiana,United States,444.17500,1,+5.000,Peer,TS1 TS2,KC9CFM,Time Slot #1 - Group Call 1 = Worldwide (PTT)
Time Slot #1 - Group Call 3 = North America
Time Slot #1 - Group Call 13= Worldwide English
Time Slot #1 - Group Call 310 = TAC-310
Time Slot #2 - Group Call 2 = Local
Time Slot #2 - Group Call 3118 = Indiana Statewide
Time Slot #2- Group Call 3169 = Midwest Regional


Contact: Jamie, KC9CFM
Email: jawinner@gmail.com,1,Crossroads DMR
311818,KB9TTX,Kokomo,Indiana,United States,442.40000,1,+5.000,Peer,TS1 TS2,KB9TTX,For Talk Groups see:
http://www.crossroadsdmr.org/?page_id=276

Contact: John, KB9TTX
Email: kb9ttx@yahoo.com

You Must Have [ARS] Disabled Within Your Radio,1,Crossroads DMR
@@ -1603,7 +1807,7 @@ 311826,N9IAA,La Porte,Indiana,United States,444.67500,1,+5.000,Peer,TS1 TS2,N9IAA,Time Slot #1- Group Call 3 = North America (PTT Activated)
Time Slot #1 - Group Call 13 = Worldwide English
Time Slot #1 - Group Call 100= Tech Talk
Time Slot #1- Group Call 113 = UA 113 (PTT Activated)
Time Slot #1- Group Call 3118 = IN Statewide
Time Slot #1- Group Call 3169 = Midwest Regional
Time Slot #1- Group Call 9999 = Audio Test (PTT Activated)
Time Slot #2 - Group Call 2 = Tri-State Local
You Must Have [ARS] Disabled Within Your Radio

Coverage Area (http://dmr-marc.net/images/n9iaa-lpt-coverage.jpg)
Contact Name: Kevin Babich, N9IAA
Email: kevin.babich@gmail.com,1,DMR-MARC
311827,N9CZV,Montpelier,Indiana,United States,441.47500,1,+5.000,Peer,TS1 TS2,N9CZV,For Talk Groups see:
http://www.crossroadsdmr.org/?page_id=135
Coverage Map

Contact: N9CZV
Email: n9czv@arrl.net

You Must Have [ARS] Disabled Within Your Radio,1,Crossroads DMR
311828,N9DMR,Club Demo,Indiana,United States,442.11250,1,+5.000,Peer,TS1 TS2,W9AMT,,0,Hoosier DMR
-311829,W9AMT,Terre Haute,Indiana,United States,442.08750,1,+5.000,Peer,TS1 TS2,W9AMT,,0,Hoosier DMR
+311829,K9IKQ,Terre Haute,Indiana,United States,442.08750,1,+5.000,Peer,TS1 TS2,K9IKQ,,0,Hoosier DMR
311830,W9CTO,Gary,Indiana,United States,442.75000,1,+5.000,Peer,TS1 TS2,W9CTO,Time Slot #1 - Grp Call 1 = World Wide (PTT activated)
Time Slot #1 - Grp Call 13= WW English
Time Slot #1 - Grp Call 3 = N. America
Time Slot #1 - Grp Call 310 = TAC-310 (PTT Activated)
Time Slot #1 - Grp Call 113 = UA English 1 (User Activated)
Time Slot #1 - Grp Call 123 = UA English 2 (User Activated)
Time Slot #1 - Grp Call 9998 = Audio Parrot
Time Slot #1 - Grp Call 9999 = Audio Test
Time Slot #2 - Grp Call 2 = Local
Time Slot #2 - Grp Call 3118 = Indiana Statewide

Time Slot #2 Grp Call 3126 = Michigan Statewide (PTT Activated)
Time Slot #2 - Grp Call 3169 = Midwest Regional
You Must Have [ARS] Disabled Within Your Radio



Trustee is Jim Millsap w9cto@comcast.net,1,Hoosier DMR
311831,N9IAA,South Bend,Indiana,United States,443.42500,1,+5.000,Peer,TS1 TS2,N9IAA,Time Slot #1- Group Call 3 = North America (PTT Activated)
Time Slot #1 - Group Call 13 = Worldwide English
Time Slot #1 - Group Call 100= Tech Talk
Time Slot #1- Group Call 113 = UA 113 (PTT Activated)
Time Slot #1- Group Call 3118 = IN Statewide
Time Slot #1- Group Call 3169 = Midwest Regional
Time Slot #1- Group Call 9999 = Audio Test (PTT Activated)
Time Slot #2 - Group Call 2 = Tri-State Local
You Must Have [ARS] Disabled Within Your Radio

Coverage Area (http://dmr-marc.net/images/n9iaa-coverage.jpg)
Contact Name: Kevin Babich, N9IAA
Email: kevin.babich@gmail.com,1,DMR-MARC
311832,W9ABH,ATTICA,Indiana,United States,442.97500,1,+5.000,Peer,TS1 TS2,W9ABH,Time Slot #1 - Grp Call 1 = World Wide (PTT activated)
Time Slot #1 - Grp Call 13= WW English
Time Slot #1 - Grp Call 3 = N. America
Time Slot #1 - Grp Call 310 = TAC-310 (PTT Activated)
Time Slot #1 - Grp Call 113 = UA English 1 (User Activated)
Time Slot #1 - Grp Call 123 = UA English 2 (User Activated)
Time Slot #1 - Grp Call 9998 = Audio Parrot
Time Slot #1 - Grp Call 9999 = Audio Test
Time Slot #2 - Grp Call 2 = Local
Time Slot #2 - Grp Call 3118 = Indiana Statewide
Time Slot #2 - Grp Call 3169 = Midwest Regional

Contact: Will, W9ABH
Email: wholycro@hotmail.com,1,Hoosier DMR
@@ -1646,6 +1850,8 @@ 312011,K0XM,Overland Park,Kansas,United States,927.23750,1,-25.000,Peer,TS1 TS2,K0XM,,0,BM
312012,WB0YRG,Mission,Kansas,United States,443.10000,1,+5.000,Peer,TS1 TS2,W0NQX,,0,BM
312013,KC0DMR,Merriam,Kansas,United States,442.30000,4,+5.000,Peer,TS1 TS2,N0YSN,,0,Brandmeister
+312014,WD0GQA,Kansas City,Kansas,United States,443.85000,1,+5.000,Peer,TS1 TS2,WD0GQA,,0,BM
+312015,WD0GQA,Kansas City,Kansas,United States,442.85000,1,+5.000,Peer,TS1 TS2,WD0GQA,,0,BM
312100,K4KTR,Bardstown,Kentucky,United States,443.00000,1,+5.000,Peer,TS1 TS2,K4KTR,Time Slot #1 - Group Call 1 = World Wide (PTT activated with 5 min inactivity timeout)
Time Slot #1 - Group Call 13 = WW English
Time Slot #1 - Group Call 3 = N. America
Time Slot #1 - Group Call 310= TAC-310 (PTT on demand activated)
Time Slot #2 - Group Call 2 = Local
Time Slot #2- Group Call 3174 = Southeast Regional

You Must Have [ARS] Disabled Within Your Radio

Contact Name: Kyle, K4KTR
Email: k4ktr@k4ktr.org,1,DMR-MARC
312101,KG4LHQ,Irvington,Kentucky,United States,444.51250,1,+5.000,Peer,TS1 TS2,KG4LHQ,,1,K4USD
312102,W4WSM,Bowling Green,Kentucky,United States,444.70000,1,+5.000,Peer,TS1 TS2,W4WSM,Contact: W4WSM
Email: brunner@twc.com
Website:,1,K4USD Net
@@ -1745,7 +1951,7 @@ 312629,W8FSM,West Branch,Michigan,United States,443.95000,1,+5.000,Peer,TS1 TS2,w8FSM,,0,Mi5
312630,N8URW,Onsted,Michigan,United States,442.51250,1,+5.000,Peer,TS1 TS2,N8URW,Time Slot #1- TG 3126 =Michigan Statewide
Time Slot #1- TG 3160 = DCI 1
Time Slot #1- TG 3777215 = Comm 1(TRBO-6)
Time Slot #1- TG3139= Ohio Statewide
Time Slot #2- TG 3163= DMR-MARC NA
Time Slot #2- TG 3161= DMR-MARC WW
Time Slot #2- TG 3777216= Comm 2 (TRBO-6)
Time Slot #2- TG 3162= DCI 2
Time Slot #2- TG 310= TAC-310
Time Slot #2- TG 3100 = The Bridge



You Must Have [ARS] Disabled Within Your Radio


Contact: Jason Bailey, N8URW
Email: j2840fl@yahoo.com (http://mc/compose?to=j2840fl@yahoo.com)
Website: http://www.trbo.info (http://www.trbo.info/),1,DCI
312631,W8JJR,Lincoln,Michigan,United States,442.01250,1,+5.000,Peer,TS1 TS2,W8JJR,,0,Mi5
-312632,W8CMC,Detroit,Michigan,United States,444.67500,2,+5.000,Master,TS1 TS2,W8CMC,Talkgroup Talkgroup ID TimeSlot
Audio Test 2 9999 2
Bridge 2 3100 2
California 1 3106 1
Canada 2 302 2
Comm 1 3777215 1
Comm 2 3777216 2
DCI 1 3160 1
DCI 2 3162 2
Illinois 2 3117 2
Iowa 2 3119 2
Local 2 3166 2
Massachusetts 1 3125 1
Michigan 1 3126 1
Michigan 2 3126 2
Midwest Reg 2 3169 2
North America 2 3163 2
Ohio 1 3139 1
Ontario 2 3023 2
Parrot 1 9998 1
Pennsylvania 1 3142 1
TAC 1 8951 2
TAC 310 310 2
TAC 311 311 2
Washington 1 3153 1
Worldwide 2 3161 2
Worldwide Eng 2 13 2

For Coverage Map:
http://www.ve2dbe.com/rmonline/user/w8cmc/covs/RMD23892B87194_2.zip (http://www.ve2dbe.com/rmonline/user/w8cmc/covs/RMD23)


Contact: Colin, W8CMC
Email: w8cmc@arrl.net
Website:,1,DCI
+312632,W8CMC,Detroit,Michigan,United States,444.67500,2,+5.000,Master,TS1 TS2,W8CMC,Time Slot #2 - Group Call 9999 = Audio Test
Time Slot #2 - Group Call 3100 = Bridge USA
Time Slot #1 - Group Call 3181 = Local Net 1
Time Slot #2 - Group Call 3166 = Local Net 2
Time Slot #2 - Group Call 310 = Tac 310
Time Slot #2 - Group Call 311 = TAC 311
Time Slot #1 - Group Call 3777215 = Comm 1
Time Slot #2 - Group Call 3777216 = Comm 2
Time Slot #1 - Group Call 3160 = DCI 1
Time Slot #2 - Group Call 3162 = DCI 2
Time Slot #2 - Group Call 3117 = Illinois
Time Slot #2 - Group Call 3119 = Iowa
Time Slot #1 - Group Call 3125 = Massachusetts
Time Slot #1 - Group Call 3126 = Michigan
Time Slot #2 - Group Call 3126 = Michigan
Time Slot #2 - Group Call 3169 = Midwest Reg
Time Slot #2 - Group Call 3163 = North America
Time Slot #1 - Group Call 3139 = Ohio
Time Slot #2 - Group Call 3023 = Ontario
Time Slot #1 - Group Call 9998 = Parrot
Time Slot #1 - Group Call 3142 = Pennsylvania
Time Slot #1 - Group Call 3106 = California
Time Slot #2 - Group Call 302 = Canada
Time Slot #2 - Group Call 8951 = TAC  1
Time Slot #1 - Group Call 3153 = Washington
Time Slot #2 - Group Call 3161 = Worldwide
Time Slot #2 - Group Call 13 = Worldwide EngFor Coverage Map:
http://www.ve2dbe.com/rmonline/user/w8cmc/covs/RMD23892B87194_2.zip (http://www.ve2dbe.com/rmonline/user/w8cmc/covs/RMD23)


Contact: Colin, W8CMC
Email: w8cmc@arrl.net
Website:,1,DCI
312633,KB8POO,Brooklyn,Michigan,United States,145.12000,1,-0.600,Peer,TS1 TS2,N8URW,Time Slot #1- TG 3126 =Michigan Statewide
Time Slot #1- TG 3160 = DCI 1
Time Slot #1- TG 3777215 = Comm 1(TRBO-6)
Time Slot #1- TG3139= Ohio Statewide
Time Slot #2- TG 3163= DMR-MARC NA
Time Slot #2- TG 3161= DMR-MARC WW
Time Slot #2- TG 3777216= Comm 2 (TRBO-6)
Time Slot #2- TG 3162= DCI 2
Time Slot #2- TG 310= TAC-310
Time Slot #2- TG 3100 = The Bridge



You Must Have [ARS] Disabled Within Your Radio


Contact: Jason Bailey, N8URW
Email: j2840fl@yahoo.com (http://mc/compose?to=j2840fl@yahoo.com)
Website: http://www.trbo.info (http://www.trbo.info/),1,DCI
312634,KD6KCX,Lansing,Michigan,United States,446.50000,1,-5.000,Peer,TS1 TS2,KC6KCX,,0,CMEN/Mi5
312635,WB8SFY,White Lake Twnshp,Michigan,United States,444.93750,1,+5.000,Peer,TS1 TS2,WB8SFY,,0,DMR-MARC-W8YY
@@ -1837,7 +2043,7 @@ 313217,WB6TNP,Boulder City,Nevada,United States,449.05000,15,-5.000,Peer,TS1 TS2,WB6TNP,,0,SFTRBO
313218,K7IZA,Henderson,Nevada,United States,448.90000,1,5.000,Peer,TS1 TS2,K7IZA,,0,None
313219,KB6XN,LAS VEGAS,Nevada,United States,445.70000,2,+5.000,Peer,TS1 TS2,KB6XN,KB6XN 147.435 -1 MHz, Color Code 2,1,SF TRBO
-313220,KD7FPK,Gardnerville,Nevada,United States,443.97500,15,+5.000,Master,TS1 TS2,KD7FPK,,0,HYTERA
+313220,KD7FPK,Gardnerville,Nevada,United States,442.15000,4,+5.000,Master,TS1 TS2,KD7FPK,,0,HYTERA
313221,W7TA,Incline Village,Nevada,United States,443.95000,1,+5.000,Master,TS1 TS2,KE7VSR,Time Slot #2 - Group Call 1 = Worldwide
Time Slot #2 - Group Call 13 = Worldwide English
Time Slot #2 - Group Call 3 = North America
Time Slot #2 - Group Call 3100 = DCI Bridge
Time Slot #2 - Group Call 3176= Southwest Region
Time Slot #2- Group Call 3777215= TRBO-6
Time Slot #1- Group Call 2 = Local
Time Slot #1- Group Call 5150 = Northern CA

Contact Name: KE7VSR
Email: w7ta@snars.org,1,SNARS
313222,KD7FPK,Gardnerville,Nevada,United States,443.97500,4,+5.000,Master,Mixed Mode,KD7FPK,,0,BrandMeister
313223,KB6XN,LAS VEGAS,Nevada,United States,147.43500,2,-1.000,Master,TS1 TS2,KB6XN,,0,SFO TURBO
@@ -1922,12 +2128,12 @@ 313610,W2HVL,Carmel,New York,United States,446.18750,1,-5.000,Peer,TS1 TS2,KC2CWT,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 13 = WW English
Time Slot #1 - Group Call 3 = N. America
Time Slot #1 - Group Call 3172 = Northeast
Time Slot #2 - Group Call 2 = NY-NJ Metro

You Must Have [ARS] Disabled Within Your Radio

Coverage Area (http://www.dmr-marc.net/images/n2jti-coverage.jpg)

Contact Name: Bob, KC2CWT
Email: kc2cwt@kc2cwt.net,1,NJ-TRBO-
313611,NY4Z,Yorktown Heights,New York,United States,448.92500,1,-5.000,Peer,TS1 TS2,NY4Z,TS 1 -
Group call TG 444= NY Metro Bronx TRBO System wide talk group-FT
Group Call TG 1 = World Wide Time Slot -PTT
Group Call TG 3 = U.S. / English Speaking Countries -PTT
Group Call TG 13 = World Wide English -PTT
Group Call TG 3172 = NE / Regional -PTT
Group Call TG 14 = Latin America Region -PTT
Group Call TG 310 = Tac 310 Talk Group-PTT
Group Call TG 311 =Tac 311 Talk Group-PTT
Group Call TG 9998 = Parrot , Audio Test Server -PTT
Group Call TG 9999 = Audio Test NorCal PTT

TS2-Private

You Must Have [ARS] Disabled Within Your Radio

Contact Name: Bernie, NY4Z
Email: ny4z@yahoo.com,1,Bronx-TRBO-Yorktown
313612,WA2VNV,Selden,New York,United States,448.82500,1,-5.000,Peer,TS1 TS2,WA2VNV,Time Slot #1 - Group Call 1 = World Wide (Sat. Net)
Time Slot #1 - Group Call 13 = WW English
Time Slot #1 - Group Call 3 = North America
Time Slot #1 - Group Call 3172 = Northeast
Time Slot #2 - Group Call 3181 = New England
Time Slot #2 - Group Call 3109 = So. New England
Time Slot #2 - Group Call 9 = Local Site
Time Slot #1 - Group Call 310 = TAC310

You Must Have [ARS] Disabled Within Your Radio

Contact: George, WA2VNV
Email: wa2vnv@optonline.net
Website: http://nedecn.org,1,NE-TRBO
-313613,K2MAK,New York,New York,United States,448.27500,3,-5.000,Peer,TS1,K2MAK,,0,NJ-TRBO
+313613,K2MAK,New York,New York,United States,448.27500,3,-5.000,Peer,TS1 TS2,K2MAK,Time Slot #1 - Group Call 1 = World Wide
Time Slot #2 - Group Call 2 = NY-NJ Metro
Time Slot #1 - Group Call 3 = North America
Time Slot #1 - Group Call 13 = WW English
Time Slot #1 - Group Call 310 = Tac 310
Time Slot #1 - Group Call 311 = Tac 311
Time Slot #1 - Group Call 3172 = Northeast
Time Slot #1 - Group Call 9 = Local Repeater

TG 2 - NY-NJ Metro and TG 3 - North America are always ON.

Contact: Kenneth Mak
Email: k2mak@yahoo.com,1,NJ-TRBO
313614,N2LBT,Portable,New York,United States,449.52500,1,-5.000,Peer,TS1 TS2,N2LBT,,0,NJ-TRBO
313615,NV2M,Peru,New York,United States,442.28750,1,+5.000,Peer,TS1 TS2,NV2M,Time Slot #1 - Group Call 1 = World Wide*
Time Slot #1 - Group Call 13 = WW English*
Time Slot #1 - Group Call 11 = WW French*
Time Slot #1 - Group Call 3 = North America
Time Slot #1 - Group Call 302 = Canada*
Time Slot #1 - Group Call 310 = TAC310*
Time Slot #1 - Group Call 9999 = Audio Test*
Time Slot #2 - Group Call 3023 = Ontario*
Time Slot #2 - Group Call 3022 = Quebec*
Time Slot #2 - Group Call 3029 = New Brunswick*
Time Slot #2 - Group Call 3150 = Vermont
Time Slot #2 - Group Call 8 = Northern New Eng*
Time Slot #2 - Group Call 3181 = New England*
Time Slot #2 - Group Call 2 = Local

* Indicates PTT Activation required
You Must Have [ARS] Disabled in Your Radio

Contact: Neil Van Splinter, NV2M
E-mail: nv2m@arrl.net,1,DMR-MARC Canada
-313616,NY4Z,White Plains,New York,United States,442.10000,1,+5.000,Peer,TS1 TS2,NY4Z,TS 1 -
Group call TG 444= NY Metro Bronx TRBO System wide talk group-FT
Group Call TG 1 = World Wide Time Slot -PTT
Group Call TG 3 = U.S. / English Speaking Countries -PTT
Group Call TG 13 = World Wide English -PTT
Group Call TG 3172 = NE / Regional -PTT
Group Call TG 14 = Latin America Region -PTT
Group Call TG 310 = Tac 310 Talk Group-PTT
Group Call TG 311 =Tac 311 Talk Group-PTT
Group Call TG 9998 = Parrot , Audio Test Server -PTT
Group Call TG 9999 = Audio Test NorCal PTT

TS2-Private

You Must Have [ARS] Disabled Within Your Radio

Contact Name: Bernie, NY4Z
Email: ny4z@yahoo.com,1,Bronx-TRBO
+313616,NY4Z,White Plains,New York,United States,442.10625,3,+5.000,Peer,TS1 TS2,NY4Z,TS 1 -
Group call TG 444= NY Metro Bronx TRBO System wide talk group-FT
Group Call TG 1 = World Wide Time Slot -PTT
Group Call TG 3 = U.S. / English Speaking Countries -PTT
Group Call TG 13 = World Wide English -PTT
Group Call TG 3172 = NE / Regional -PTT
Group Call TG 14 = Latin America Region -PTT
Group Call TG 310 = Tac 310 Talk Group-PTT
Group Call TG 311 =Tac 311 Talk Group-PTT
Group Call TG 9998 = Parrot , Audio Test Server -PTT
Group Call TG 9999 = Audio Test NorCal PTT

TS2-Private

You Must Have [ARS] Disabled Within Your Radio

Contact Name: Bernie, NY4Z
Email: ny4z@yahoo.com,1,Bronx-TRBO
313617,NY4Z,Mahopac,New York,United States,145.39000,1,-0.600,Peer,TS1 TS2,NY4Z,NY4Z 443.150 +5 MHz Color Code 1

(Bridge Partner of DMR-MARC)

TS 1 -
Group call TG 444= NY Metro Bronx TRBO System wide talk group-FT
Group Call TG 1 = World Wide Time Slot -PTT
Group Call TG 3 = U.S. / English Speaking Countries -PTT
Group Call TG 13 = World Wide English -PTT
Group Call TG 3172 = NE / Regional -PTT
Group Call TG 14 = Latin America Region -PTT
Group Call TG 310 = Tac 310 Talk Group-PTT
Group Call TG 311 =Tac 311 Talk Group-PTT
Group Call TG 9998 = Parrot , Audio Test Server -PTT
Group Call TG 9999 = Audio Test NorCal PTT

TS2-Private

You Must Have [ARS] Disabled Within Your Radio

Contact Name: Bernie, NY4Z
Email: ny4z@yahoo.com,1,Bronx
-313618,NY4Z,Brooklyn,New York,United States,442.04375,1,+5.000,Peer,TS1 TS2,NY4Z,,0,Bronx-TRBO
+313618,NY4Z,Brooklyn,New York,United States,442.09375,2,+5.000,Peer,TS1 TS2,NY4Z,,0,Bronx-TRBO
313619,K2HR,New Rochelle,New York,United States,446.28125,1,-5.000,Peer,TS1 TS2,NY4Z,KC2TOM 147.040 +.6MHz, Color Code 1

(Bridge Partner of DMR-MARC)

TS 1 -
Group call TG 444= NY Metro Bronx TRBO System wide talk group-FT
Group Call TG 1 = World Wide Time Slot -PTT
Group Call TG 3 = U.S. / English Speaking Countries -PTT
Group Call TG 13 = World Wide English -PTT
Group Call TG 3172 = NE / Regional -PTT
Group Call TG 14 = Latin America Region -PTT
Group Call TG 310 = Tac 310 Talk Group-PTT
Group Call TG 311 =Tac 311 Talk Group-PTT
Group Call TG 9998 = Parrot , Audio Test Server -PTT
Group Call TG 9999 = Audio Test NorCal PTT

TS2-Private

You Must Have [ARS] Disabled Within Your Radio

Contact Name: Den Palumbo, KC2IVF
Email: denpalumbo@optonline.net ,1,Bronx-TRBO
313620,N2LBT,Albany,New York,United States,444.00000,1,+5.000,Peer,TS1 TS2,N2LBT,,0,NJ-TRBO
313621,K1IMD,Mattituck,New York,United States,449.62500,1,-5.000,Master,TS1 TS2,K1IMD,,0,NE-TRBO Mattituck, NY
@@ -2092,7 +2298,7 @@ 314018,KB5KWV,Oklahoma City,Oklahoma,United States,443.17500,1,+5.000,Peer,TS1 TS2,KB5KWV,Time Slot #1 - Group Call 1 = WW All, PTT 10 min.
Time Slot #1 - Group Call 13= WW English, PTT 10 min.
Time Slot #1 - Group Call 3 = DMR-MARC North America
Time Slot #1 - Group Call 310 = TAC-310, PTT 10 min.
Time Slot #1 - Group Call 311 = TAC-311, PTT 10 min.

Time Slot #2 - Group Call 3175= TX-OK Regional
Time Slot #2 - Group Call 3140 = OK Statewide
Time Slot #2 - Group Call 8800= OK Central
Time Slot #2 - Group Call 2 = Local
Time Slot #2 - Group Call 9998 = Audio Test (Parrot),1,DMR-MARC
314019,W5RLW,Edmond,Oklahoma,United States,443.05000,1,+5.000,Peer,TS1 TS2,W5RLW,,1,OK Net
314020,W5RLW,EDMOND,Oklahoma,United States,442.32500,1,+5.000,Peer,TS1 TS2,W5RLW,,0,brandmeister
-314021,W5RAB,Leonard,Oklahoma,United States,443.65000,2,+5.000,Peer,TS1 TS2,W5RAB,,0,Brandmeister
+314021,W5RAB,Leonard,Oklahoma,United States,443.65000,1,+5.000,Peer,TS1 TS2,W5RAB,,0,Brandmeister
314101,N7MAQ,Woodburn,Oregon,United States,441.32500,1,+5.000,Peer,TS1 TS2,N7MAQ,,1,DCI
314102,N7MAQ,portland,Oregon,United States,440.62500,1,+5.000,Peer,TS1 TS2,KB7APU,,1,dci
314103,N7LF,Corbett,Oregon,United States,443.10000,1,+5.000,Master,TS1 TS2,N7LF,,0,BrandMeister
@@ -2156,7 +2362,7 @@ 314522,KM4PRN,Bluffton,South Carolina,United States,444.73750,1,5.000,Peer,TS1 TS2,N4HEK,,0,NCPRN
314523,KD4TXX,Charleston,South Carolina,United States,443.45000,1,+5.000,Peer,TS1 TS2,KD4TXX,,0,BrandMeister
314524,NE4SC,Conway,South Carolina,United States,443.66250,1,+5.000,Peer,TS1,AD4TZ,
TS1 TG1-WW (PTT)
TS1 TG3-NA
TS1 TG13-WWE
TS1 TG10-WWG (PTT)
TS2 TG2-Local (USD Net)
TG2 TG9-Local Rpt
TS2 TG3113-GA State
TS2 TG3125-MA State (PTT)
TS2 TG3139-OH State (PTT)
TS2 TG3174-SE Regional
TS2 TG3100-Bridge (PTT)
TS2 TG8951-TAC 1 (PTT)
TS2 TG310-TAC 310 (PTT)
TS2 TG311-TAC 311 (PTT)
TS2 TG9998-Parrot (PTT)
TS2 TG9999-NoCal Audio Test (PTT),1,K4USD
-314525,N3TX,Myrtle Beach ,South Carolina,United States,438.36250,1,-7.6,Master,Mixed Mode,N3TX,,0,DMR plus
+314525,N3TX,Myrtle Beach ,South Carolina,United States,431.40000,1,6.6,Master,Mixed Mode,N3TX,,0,DMR plus
314526,WJ4X,Shoals Junction,South Carolina,United States,442.60000,1,+5.000,Peer,Mixed Mode,WJ4X,,0,BM
314528,NE4SC,North Myrtle Beach,South Carolina,United States,444.08750,1,+5.000,Peer,TS1 TS2,K4SHP,TS1 TG1-WW (PTT)
TS1 TG3-NA
TS1 TG13-WWE
TS1 TG10-WWG (PTT)
TS2 TG2-Local (USD Net)
TG2 TG9-Local Rpt
TS2 TG3113-GA State
TS2 TG3125-MA State (PTT)
TS2 TG3139-OH State (PTT)
TS2 TG3174-SE Regional
TS2 TG3100-Bridge (PTT)
TS2 TG8951-TAC 1 (PTT)
TS2 TG310-TAC 310 (PTT)
TS2 TG311-TAC 311 (PTT)
TS2 TG9998-Parrot (PTT)
TS2 TG9999-NoCal Audio Test (PTT),1,K4USD
314529,WR4SC,Beaufort,South Carolina,United States,441.98750,1,+5.000,Peer,TS1 TS2,AE4UX,,0,NC-PRN
@@ -2278,11 +2484,12 @@ 315112,KE4NYV,Greenbackville,Virginia,United States,444.27500,1,+5.000,Master,TS1 TS2,KE4NYV,,0,NC-PRN
315113,WR3D,Leesburg,Virginia,United States,443.90000,1,+5.000,Master,TS1 TS2,WR3D,,0,OpenDMR
315114,W5CUI,Roanoke,Virginia,United States,444.77500,1,+5.000,Master,TS1 TS2,WB4EOT,Time Slot #2 Group Call 3151 = RVA Statewide
Time Slot #1 Group Call 27500 = Local
Time Slot #1 Group Call 310 = TAC 310
Time Slot #1 Group Call 8951 = TAC 1
Time Slot #1 Group Call 3100 = Bridge
Time Slot #1 Group Call 3174 = DMR-MARC Southeast
Time Slot #1 Group Call 3173 = DMR-MARC Mid-Atlantic
Time Slot #1 Group Call 27501 = VA TAC A
Time Slot #1 Group Call 27502 = VA TAC B
Time Slot #2 Group Call 2= PRN

Goat Mountain Radio Association
Contact: John M. Mathis
http://www.dmrva.org/

You Must Have [ARS] Disabled Within Your Radio
,1,DMRVA
-315115,WA4FC,Farmville,Virginia,United States,444.53750,1,+5.000,Peer,TS1 TS2,KD4BPZ,Time Slot #2 Group Call 3151 = RVA Statewide
Time Slot #1 Group Call 27500 = Local
Time Slot #1 Group Call 310 = TAC 310
Time Slot #1 Group Call 8951 = TAC 1
Time Slot #1 Group Call 3100 = Bridge
Time Slot #1 Group Call 3174 = DMR-MARC Southeast
Time Slot #1 Group Call 3173 = DMR-MARC Mid-Atlantic
Time Slot #1 Group Call 27501 = VA TAC A
Time Slot #1 Group Call 27502 = VA TAC B
Time Slot #2 Group Call 2 = PRN

FieldComm Association
Contact: Jay Lovelady
http://www.dmrva.org/

You Must Have [ARS] Disabled Within Your Radio

,1,DMRVA
+315115,WA4FC,Farmville,Virginia,United States,444.53750,1,+5.000,Peer,TS1 TS2,KD4BPZ,Time Slot #2 Group Call 3151 = VA Statewide
Time Slot #1 Group Call 27500 = Local
Time Slot #1 Group Call 310 = TAC 310
Time Slot #1 Group Call 8951 = TAC 1
Time Slot #1 Group Call 3100 = Bridge
Time Slot #1 Group Call 3174 = DMR-MARC Southeast
Time Slot #1 Group Call 3173 = DMR-MARC Mid-Atlantic
Time Slot #1 Group Call 27501 = VA TAC A
Time Slot #1 Group Call 27502 = VA TAC B
Time Slot #2 Group Call 2 = PRN

FieldComm Association
Contact: Jay Lovelady
http://www.dmrva.org/

You Must Have [ARS] Disabled Within Your Radio

,1,DMRVA
315116,K4ITL,Roanoke,Virginia,United States,441.88750,1,+5.000,Peer,TS1 TS2,K4ITL,,0,NC PRN
315117,K4LCT,Norfolk,Virginia,United States,445.51250,7,+5.000,None,TS1 TS2,K4LCT,,0,BRANDMEISTER
315118,K4JK,Harrisonburg,Virginia,United States,444.66250,1,+5.000,Master,TS1 TS2,K4JK,Time Slot #2 Group Call 3151 = RVA Statewide
Time Slot #1 Group Call 27500 = Local
Time Slot #1 Group Call 310 = TAC 310
Time Slot #1 Group Call 8951 = TAC 1
Time Slot #1 Group Call 3100 = Bridge
Time Slot #1 Group Call 3174 = DMR-MARC Southeast
Time Slot #1 Group Call 3173 = DMR-MARC Mid-Atlantic
Time Slot #1 Group Call 27501 = VA TAC A
Time Slot #1 Group Call 27502 = VA TAC B
Time Slot #2 Group Call 2= PRN

Contact: James Kirkham
http://www.dmrva.org/

You Must Have [ARS] Disabled Within Your Radio,1,DMRVA
-315119,WA4FC,Charlottesville,Virginia,United States,444.91250,1,+5.000,Master,TS1 TS2,KD4BPZ,Time Slot #2 Group Call 3151 = RVA Statewide
Time Slot #1 Group Call 27500 = Local
Time Slot #1 Group Call 310 = TAC 310
Time Slot #1 Group Call 8951 = TAC 1
Time Slot #1 Group Call 3100 = Bridge
Time Slot #1 Group Call 3174 = DMR-MARC Southeast
Time Slot #1 Group Call 3173 = DMR-MARC Mid-Atlantic
Time Slot #1 Group Call 27501 = VA TAC A
Time Slot #1 Group Call 27502 = VA TAC B
Time Slot #2 Group Call 2= PRN

FieldComm Association
Contact: Jay Lovelady
http://www.dmrva.org/

You Must Have [ARS] Disabled Within Your Radio
,1,DMRVA
+315119,WA4FC,Charlottesville,Virginia,United States,444.91250,1,+5.000,Master,TS1 TS2,KD4BPZ,Time Slot #2 – Group Call 3151 = VA Statewide
Time Slot #1 – Group Call 27500 = Local
Time Slot #1 – Group Call 310 = DMRX TAC 310
Time Slot #1 – Group Call 8951 = DMRX TAC 1
Time Slot #1 – Group Call 3100 = DCI Bridge/Brandmeister
Time Slot #1 – Group Call 3174 = DMR-MARC Southeast
Time Slot #1 – Group Call 3173 = DMR-MARC Mid-Atlantic
Time Slot #1 – Group Call 27501 = VA TAC A
Time Slot #1 – Group Call 27502 = VA TAC B
Time Slot #2 – Group Call 2= PRN
FieldComm Association
Contact: Jay Lovelady
http://www.dmrva.org/

You Must Have [ARS] Disables Within Your Radio,1,DMRVA
+315120,N3QEM,Herndon,Virginia,United States,442.90000,1,+5.000,Master,TS1,N3QEM,,0,none-yet
315300,N07RF,Winthrop ,Washington,United States,145.21000,3,+2.780,Peer,TS1 TS2,NO7RF,,0,DCI
315301,NO7RF,Winthrop,Washington,United States,444.85000,3,+5.000,Peer,TS1 TS2,NO7RF,Time Slot #2 - Group Call 3161 = DMR-MARC World Wide
Time Slot #2 - DMR-MARC Group Call 3163 = DMR-MARC N. America
Time Slot #1- Group Call 3160 = DCI 1
Time Slot #1- Group Call 3777215 = Comm 1

Time Slot #1- Group Call 3153 = Washington Statewide 1

Time Slot #2- Group Call 3100 = Bridge 2
Time Slot #2- Group Call 3100 = Mountain Regional 3177

Contact Name: Mike, NO7RF
Email: no7rf@otwc.net

Website: http://dci.trbo.info,1,DCI-
315302,NO7RF,Mazama,Washington,United States,433.15000,0,+16.000,Peer,TS1 TS2,NO7RF,,0,DCI
@@ -2369,13 +2576,14 @@ 334303,XE3RCM,Merida,Yucatan,Mexico,439.92500,1,-5.000,Peer,TS1 TS2,XE3YZ,Time Slot #1 - Group Call 1 = Worldwide Calling (PTT activation, 2min limit)
Time Slot #1 - Group Call 14 = Spanish Worldwide
Time Slot #2 - Group Call 222 = Local Cancun
Time Slot #2 - Group Call 334 Mexico

You Must Have [ARS] Disabled Within Your Radio


Contact Name: Jorge Carlos, XE3YZEmail: xe3yz@icloud.com,1,DMR-MARC
334304,XE3RA,CANCUN,Quintana Roo,Mexico,439.92500,1,-5.000,Peer,TS1 TS2,XE3RA,,0,BRANDMEISTER
334401,XE1GXW,Guadalajara,all others,Mexico,146.76000,1,-0.600,Peer,TS1 TS2,XE1GXW,Time Slot #1 - Group Call 1 = Worldwide Calling (PTT activation, 2min limit)
Time Slot #1 - Group Call 14 = Spanish Worldwide
Time Slot #2 - Group Call 2 = Local Site
Time Slot #2 - Group Call 334 = Mexico

You Must Have [ARS] Disabled Within Your Radio

Contact Name: Jorge, XE1GXW
Email: xe1gxw@gmail.com,1,DMR-MARC
-370100,HI8RCD,Santo Domingo,Distrito Nacional,Dominican Republic,447.00000,1,-5.000,Peer,TS1,HI8RCD,Time Slot #1 - Group Call 1 = Worldwide Calling (PTT activation, 2min limit)
Time Slot #1 - Group Call 13 = English Worldwide (PTT activation)
Time Slot #1 - Group Call 14 = Spanish Worldwide
Time Slot #2 - Group Call 370- Dominican Republic,1,DMR-MARC
+370100,HI8RCD,Santo Domingo,Distrito Nacional,Dominican Republic,447.00000,1,-5.000,Peer,TS1 TS2,HI8RCD,Time Slot #1 - Group Call 1 = Worldwide Calling (PTT activation, 2min limit)
Time Slot #1 - Group Call 13 = English Worldwide (PTT activation)
Time Slot #1 - Group Call 14 = Spanish Worldwide
Time Slot #2 - Group Call 370- Dominican Republic,1,DMR-MARC
370801,HI8RCD,Bani,Peravia,Dominican Republic,447.02500,2,-5.000,Peer,TS1 TS2,HI8RCD,Time Slot #1 - Group Call 1 = Worldwide Calling (PTT activation, 2min limit)
Time Slot #1 - Group Call 13 = English Worldwide (PTT activation)
Time Slot #1 - Group Call 14 = Spanish Worldwide
Time Slot #2 - Group Call 370- Dominican Republic,1,DMR-MARC
425201,4X4R70,Tel Aviv,Tel Aviv,Israel,438.65000,1,-7.600,Master,Mixed Mode,4X1HF,4X4R70 438.650 -7.6 MHz, Color Code 1,1,SF-TRBO
454001,VR2TIG,Hong Kong,Hong Kong,China,435.45000,1,-5.000,Master,TS1,VR2XJN,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 13 =WW English
Time Slot #2 - Group Call 454 = Cantonese Local

You Must Have [ARS] Disabled Within Your Radio.


Contact: Charles Tsang, VR2XJN
Email: VR2XJN@GMAIL.COM,1,VK-TRBO
454002,VR2SSP,Hong Kong,Hong Kong,China,435.57500,9,-5.000,Master,TS2,VR2SSP,,0,mixed
460001,BD7II,Shenzhen,All Others,China,438.46000,12,-8.000,Master,TS1,BD7IXF,,0,Shenzhen local
460002,BG8CVQ,wen zhou,,China,439.98000,1,-5.000,Master,TS2,BG8CVQ,,0,TELNET
+460003,VR2HKR,Kowloon,Hong Kong,China,435.70000,5,-5.000,None,TS2,VR2UCL,,1,CQARA
502200,9M4RMM,Penang,East Malaysia,Malaysia,146.70000,1,-0.600,Peer,TS1 TS2,9M2AOC,Time Slot#1 - Group Call 1 = Worldwide Calling (2 min max)
Time Slot #1- Group Call 13 = Worldwide English
Time Slot #2- Group Call 5 = VK/ZL Regional

You Must Have [ARS] Disabled Within Your Radio.

Contact: 9M2AOC
Email:,1,DMR-MARC
502201,9M4RPH,Georgetown,West Malaysia,Malaysia,145.82500,12,-0.600,Master,TS2,9W2POP,,0,DMRNET
502601,9M4RPB,Kota Kinabalu,East Malaysia,Malaysia,146.40000,1,+0.600,Master,TS1 TS2,9M6LK,,0,DMR
@@ -2437,22 +2645,23 @@ 535101,KH6FV,Barrigada Guam,All,Guam,444.50000,1,+5.000,Peer,TS1 TS2,KH6FV,,1,Hawaii Trbo
537100,P29ZTC,Port Moresby,NCD,Papua New Guinea,147.00000,0,-0.600,Peer,TS1,P29ZTC,,0,None
537101,P29LZ,Lae,Morobe,Papua New Guinea,144.92000,0,+0.600,Master,TS1,P29LZ,,0,None
-647001,FR1ZAZ,LE PORT,,Reunion,430.57500,1,9.4,PEER,TS1 TS2,FR4NP,,0,DMR-plus
+647001,FR1ZAZ,LE PORT,,Reunion,430.57500,1,9.400,PEER,TS1 TS2,FR4NP,,0,BM
647002,FR1ZBB,Saint Andr,Saint Benoit,Reunion,430.57500,1,9.400,PEER,TS1 TS2,FR4QK,,0,DMR-plus
647003,FR1ZBB,Saint Andr,,Reunion,430.23750,1,9.000,PEER,TS1 TS2,FR4QK,,0,None
-647004,FR1ZBA,Saint Paul,Saint-Paul,Reunion,430.03750,1,9.4,PEER,TS1 TS2,FR4NP,,0,DMR-plus
-647005,FR1ZBC,Sainte Suzanne,,Reunion,430.03750,1,9.4,PEER,TS1 TS2,FR4NP,,0,DMR-plus
-647006,FR1ZBD,Le Tampon,,Reunion,430.50000,1,9.4,PEER,TS1 TS2,FR4NP,,0,DMR-plus
+647004,FR1ZBA,Saint Paul,Saint-Paul,Reunion,430.03750,1,9.400,PEER,TS1 TS2,FR4NP,,0,DMR-plus
+647005,FR1ZBC,Sainte Suzanne,,Reunion,430.03750,1,9.400,PEER,TS1 TS2,FR4NP,,0,BM
+647006,FR1ZBD,Le Tampon,,Reunion,430.50000,1,9.400,PEER,TS1 TS2,FR4NP,,0,BM
647007,FR4QK,Saint Paul,Saint-Paul,Reunion,430.23000,1,9.400,PEER,TS1 TS2,FR4QK,,0,Hytera
-647008,FR4NP,Le Port,,Reunion,430.26250,1,9.4,PEER,TS1 TS2,FR4NP,,0,DMR-plus
-647009,FR1ZBE,Saint Joseph,,Reunion,430.26250,1,9.4,PEER,TS1 TS2,FR4NP,,0,DMR-plus
+647008,FR4NP,Le Port,,Reunion,430.26250,1,9.400,PEER,TS1 TS2,FR4NP,,0,BM
+647009,FR1ZBE,Saint Joseph,,Reunion,430.26250,1,9.400,PEER,TS1 TS2,FR4NP,,0,BM
+647010,FR5GS,SAINT-BENOIT,Saint Benoit,Reunion,430.17500,1,9.400,PEER,TS1 TS2,FR5GS,,0,BM
655500,ZS5HAM,Durban,Kwazulu-Natal,South Africa,438.20000,1,-7.600,Peer,TS1,ZS5BG,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 13 = WW English
Time Slot #2 - Group Call 2 = Local Only

You Must Have [ARS] Disabled Within Your Radio.,1,DMR-MARC
655501,ZS5CEY,Amanzimtoti,Kwazulu-Natal,South Africa,438.30000,1,-7.600,Peer,TS1 TS2,ZS5CEY,,0,None
-655502,ZS0PMB,Pietermaritzburg,Kwazulu-Natal,South Africa,438.22500,1,-7.600,Peer,TS1 TS2,ZR5S,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 13 = WW English
Time Slot #2 - Group Call 2 = Local Only

You Must Have [ARS] Disabled Within Your Radio.,1,DMR-MARC
-655600,ZS6TJ,Johannesburg,Gauteng,South Africa,438.65000,1,-7.600,Peer,TS1,ZS6RVC,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 13 = WW English
Time Slot #2 - Group Call 2 = Local Only

You Must Have [ARS] Disabled Within Your Radio.,1,DMR-MARC
-655601,ZS6VTB,Brakfontein,Gauteng/Mpumalanga,South Africa,438.22500,1,7.600,Peer,TS1 TS2,ZS6EY,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 13 = WW English
Time Slot #2 - Group Call 2 = Local Only

You Must Have [ARS] Disabled Within Your Radio.,1,DMR-MARC
-655602,ZS0JPL,Pretoria,Gauteng/Mpumalanga,South Africa,438.25000,1,-7.600,PEER,TS1 TS2,ZS6JPL,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 13 = WW English
Time Slot #2 - Group Call 2 = Local Only

You Must Have [ARS] Disabled Within Your Radio.,1,DMR-MARC
-655603,ZS6TJ,Johannesburg,Gauteng/Mpumalanga,South Africa,438.30000,1,-7.600,Peer,TS1 TS2,ZS6RVC,,0,Hytera
+655502,ZS0PMB,Pietermaritzburg,Kwazulu-Natal,South Africa,438.22500,1,-7.600,Peer,TS1 TS2,ZR5S,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 13 = WW English
Time Slot #2 - Group Call 2 = Local Only

You Must Have [ARS] Disabled Within Your Radio.,1,Motorola
+655600,ZS6TJ,Johannesburg,Gauteng,South Africa,438.65000,1,-7.600,Peer,TS1,ZS6RVC,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 13 = WW English
Time Slot #2 - Group Call 2 = Local Only

You Must Have [ARS] Disabled Within Your Radio.,1,DMR-EUROPE
+655601,ZS6VTB,Brakfontein,Gauteng/Mpumalanga,South Africa,438.22500,1,-7.600,Peer,TS1 TS2,ZS6EY,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 13 = WW English
Time Slot #2 - Group Call 2 = Local Only

You Must Have [ARS] Disabled Within Your Radio.,1,BM
+655602,ZS0JPL,Pretoria,Gauteng/Mpumalanga,South Africa,438.25000,1,-7.600,PEER,TS1 TS2,ZS6JPL,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 13 = WW English
Time Slot #2 - Group Call 2 = Local Only

You Must Have [ARS] Disabled Within Your Radio.,1,Motorola
+655603,ZS6TJ,Johannesburg,Gauteng/Mpumalanga,South Africa,438.30000,1,-7.600,Peer,TS1 TS2,ZS6RVC,,0,BM
655604,ZS6VTS,Pretoria,Gauteng/Mpumalanga,South Africa,438.27500,1,-7.600,PEER,TS1 TS2,ZS6JPL,,0,Motorola
714101,HP1CQ,Panama,,Panama,433.30000,7,5.000,PEER,TS1 TS2,HP1CQ,,0,DMR-plus
714102,HP2NG,Colon,Panama,Panama,433.45000,7,5.000,PEER,TS1 TS2,HP2NG,,0,DMR-plus
@@ -2469,6 +2678,7 @@ 724202,PY2KSP,Louveira,Sao Paulo,Brazil,147.30000,15,0.6,None,TS1 TS2,PU2PKE,,0,DMR
724203,PY2KMA,São Paulo,Sao Paulo,Brazil,145.33000,15,-0.600,Master,TS2,PY2XH,,0,amrase
724204,PY2KMS,São Paulo,Sao Paulo,Brazil,147.36000,1,0.6,Peer,TS1 TS2,PY4CEP,,1,DMR+ Brazil
+724205,PY2KSM,Sao Paulo,Sao Paulo,Brazil,147.36000,1,+0.600,Peer,TS1 TS2,PY4CEP,,0,DMR+ Brazil
724400,PY4REP,Divinopolis,,Brasil,438.30000,1,-7.6,PEER,TS1 TS2,PY4CEP,,0,
724401,PY4RSE,Mateus Leme,Minas Gerais,Brazil,146.75000,1,-0.6,Peer,TS1 TS2,PY4CEP,Time Slot #1 - Group Call 1 = World Wide English
Time Slot #1 - Group Call 75 = Portuguese Worldwide
Time Slot #2 - Group Call 724= Brazil


You Must Have [ARS] Disabled Within Your Radio


Contact Name: Carlos Pereira PY4CEP

Email: py4cep@oi.com.br,1,DMR-MARC-PY4REP
724402,PY4RLD,Oca de Pitangui,Minas Gerais,Brazil,146.75000,1,-0.600,Peer,TS1 TS2,PY4CEP,Time Slot #1 - Group Call 1 = World Wide English
Time Slot #1 - Group Call 75 = Portuguese Worldwide
Time Slot #2 - Group Call 724= Brazil


You Must Have [ARS] Disabled Within Your Radio


Contact Name: Carlos Pereira PY4CEP

Email: py4cep@oi.com.br,1,DMR-MARC-PY4REP
@@ -2491,6 +2701,7 @@ 730204,CE2LS,LA SERENA,Coquimbo,Valparaiso,Chile,146.88000,1,-0.600,Peer,TS1 TS2,RADIO ,,0,DMR-MARC-CE2LS
730205,CE2VRP,La serena,Coquimbo,Chile,144.75000,1,-0.600,Peer,TS1 TS2,CE2VRP,,0,Brandmeister
730206,CE2SCP,Ovalle,Coquimbo,Chile,147.15000,1,+0.600,Peer,TS1 TS2,CE2SC,,0,brandmeister
+730207,CE2KVL,Valparaíso,Valparaiso,Chile,145.50000,1,-0.600,Peer,TS1 TS2,CE2KVL,,0,brandmeister
730301,CE3PA,pte alto,Reg.Metr. de Santiago,Chile,147.39000,1,+0.600,Peer,TS1 TS2,CE3PA,,0,mixer
730302,CE3PA,pte alto,Reg.Metr. de Santiago,Chile,146.76000,1,-0.600,Peer,TS1 TS2,CE3CTF,,0,mixed
730303,CE3PA,Pte Alto,Reg.Metr. de Santiago,Chile,433.45000,1,+5.000,Peer,TS1 TS2,CE3CTF,,0,brandmeister
diff --git a/subscriber_ids.csv b/subscriber_ids.csv index 1b59f0b..08e95a6 100644 --- a/subscriber_ids.csv +++ b/subscriber_ids.csv @@ -322,6 +322,19 @@ 1112325,NK4DX,Ezequiel Prado,Ez,Hollywood,Florida,United States,DMR
1112326,AB4JO,Joseph Carvalho,Joe,Hollywood,Florida,United States,DMR
1112327,WA2NLC,Rick Santomauro Santomauro,Rick,Port Charlotte,Florida,United States,DMR
+1112328,KM4DAJ,Dominique Wiener,,Cape Coral,Florida,United States,DMR
+1112329,KM4WUD,Motodmr Network ,,Tampa,Florida,United States,Club Fleet
+1112330,K7RMD,Rex M Dobson,,Coral Springs,Florida,United States,CCS7
+1112331,KJ4IYZ,Kevin J Hubbard,,Winter Haven,Florida,United States,DMR
+1112332,KB0ZNU,Daniel S Blashill,,North Fort Myers,Florida,United States,DMR
+1112333,WA4PAM,Frank C Harris,,Clewiston,Florida,United States,DMR
+1112334,N0CAS,Craig A Scott,,Miami,Florida,United States,DMR
+1112335,KB1NCJ,Greg Soucy Soucy,,Arcadia,Florida,United States,DMR
+1112336,KM4MHI,William F Lawhorn,,Port Charlotte,Florida,United States,DMR
+1112337,KM4WMK ,Christopher J Meyer Meyer,,Riverview,Florida,United States,DMR
+1112338,KM4YJF,Kevin Schneider,,Lecanto,Florida,United States,DMR
+1112339,N1FM,Thomas Whatley,,Boynton Beach,Florida,United States,DMR
+1112340,K4ZAS,Dennis E Zasnicoff,Zasnicoff,Winter Garden,Florida,United States,Other
1136001,K2FPC,Antonio Lipari,Tony,Champlain,New York,United States,DMR
1136002,KB2JM,James S Meahl,Jim,Lockport,New York,United States,DMR
1136003,K2BRT,Paul Polischuk,,New Windsor,New York,United States,DMR
@@ -336,7 +349,7 @@ 1136013,KD2D,Walter P Pastor,Walt,Dobbs Ferry,New York,United States,DMR
1136014,KD2BXM,Glen Konwaler,,Staten Island,New York,United States,DMR
1136015,KC2FHT,Christian D Caswell,,Rochester,New York,United States,DMR
-1136016,KD2LEI,Russell Vanpelt .,Russ,Beacon,New York,United States,DMR
+1136016,K2RVP,Russell Vanpelt .,Russ,Beacon,New York,United States,DMR
1136017,KC2ILP,Robert Yenis,,Oceanside,New York,United States,DMR
1136018,KD2FIQ,Matthew Nedell,,Kings Park,New York,United States,DMR
1136019,W2NJC,Natale J Caruso,Nat,Brooklyn,New York,United States,DMR
@@ -425,9 +438,10 @@ 1136102,KD2CYQ,Paul Gomez Gomez,,Hicksville,New York,United States,DMR
1136103,N2JVE,Henry M Alecksynas,Mike ,Niverville,New York,United States,DMR
1136104,W2DDY,J Roderic A Balquin,Bong,Warwick,New York,United States,DMR
-1136105,AC2UC,Daniel M Agababian,Dan,Deer Park,New York,United States,DMR
-1136106,AC2UC,Daniel M Agababian,Dan,Deer Park,New York,United States,DMR
+1136105,AB2FD,Daniel M Agababian,Dan,Deer Park,New York,United States,DMR
+1136106,AB2FD,Daniel M Agababian,Dan,Deer Park,New York,United States,DMR
1136107,KD2LTR ,Robert S Kerman,,Brooklyn ,New York,United States,DMR
+1136108,WA2UET,Stanley T Engel,Stan,Ghent,New York,United States,DMR
1136109,WB2ZII,Truck Westchester Emerg Comm Assn Inc,Races Truck,Valhalla,New York,United States,DMR
1136110,WB2ZII,Ht2 Westchester Emerg Comm Assn Inc,,Valhalla,New York,United States,DMR
1136111,WB2ZII,Ht3 Westchester Emerg Comm Assn Inc,,Valhalla,New York,United States,DMR
@@ -435,6 +449,9 @@ 1136113,WB2ZII,Ht5 Westchester Emerg Comm Assn Inc,,Valhalla,New York,United States,DMR
1136114,WB2ZII,Ht6 Westchester Emerg Comm Assn Inc,,Valhalla,New York,United States,DMR
1136115,KD2BHN,Jonathan C Cross,,Sea Cliff,New York,United States,DMR
+1136116,KB2VVD,David Dallessandro Dallessandro,,Tonawanda,New York,United States,DMR
+1136117,W2LMT,Lee M Trudeau,,North Bangor ,New York,United States,DMR
+1136118,KB2VVD,David M Dallessandro,,Tonawanda,New York,United States,DMR
1137001,K4SWL,Thomas H Witherspoon,Thomas,Swannanoa,North Carolina,United States,DMR
1137002,KK4RKU,Glenn A Allison,Allen,Canton,North Carolina,United States,DMR
1137003,KM4IOU,Marty D Bumgarner,Marty,Granite Falls,North Carolina,United States,DMR
@@ -675,7 +692,7 @@ 1137241,W4SH,Trey Belton,Trey,Stoneville,North Carolina,United States,DMR
1137242,WR4AGC,DURHAM FM ASSN .,Dfma Mcu,Durham,North Carolina,United States,DMR
1137243,K4EBF,Roy E Martin,Ed,Thomasville,North Carolina,United States,DMR
-1137244,N4MN,Robert M Cox,Rob N4mn,Raleigh,North Carolina,United States,DMR
+1137244,N4MN,Robert M Cox,Rob ,Raleigh,North Carolina,United States,DMR
1137245,WW4RB,Roger Bryant Bryant,,Thomasville,North Carolina,United States,DMR
1137246,WM4YD,Jeff Thigpen,,Jacksonville,North Carolina,United States,DMR
1137247,WW4FL,Flavius Warford,Fl,Thomasville,North Carolina,United States,DMR
@@ -738,6 +755,19 @@ 1137304,NC4JA,John Crowe,,Hickory,North Carolina,United States,DMR
1137305,KE4VCS,Peyton Evans,,Pinnacle,North Carolina,United States,DMR
1137306,KI4PUX,Edward J Paradise,Ed,Cary,North Carolina,United States,DMR
+1137307,KF4BSA,Troop 310 Boy Scouts Of America,Bsa Troop 310,Raleigh,North Carolina,United States,DMR
+1137308,K4RCI,Steven J Chambers,Steve,Walkertown,North Carolina,United States,DMR
+1137309,KW4PD,David A Nichols,,Oakboro,North Carolina,United States,DMR
+1137310,KB4DRQ,Donald Buchanan,,Marion,North Carolina,United States,DMR
+1137311,KI4RAZ,Jesse W Dyson,,Winston-Salem,North Carolina,United States,DMR
+1137312,W4GDC,Gareth D Christian,,Pineville,North Carolina,United States,DMR
+1137313,N4AMP,James F Boyd,Frank,Greensboro,North Carolina,United States,DMR
+1137314,KM4WII,Timothy Scott,,Randleman,North Carolina,United States,DMR
+1137315,KE4LDU,Donald R Barnett,Donnie,Taylorsville,North Carolina,United States,DMR
+1137316,KJ4KIS,Tracy L Barnett,Tracy,Taylorsville,North Carolina,United States,DMR
+1137317,KA4CMT,Charles F Mc Manus,Charlie,Maiden,North Carolina,United States,DMR
+1137318,AJ4JZ,William L Stevenson,Bill,Belmont,North Carolina,United States,DMR
+1137319,AG0R,Gerald D Rankin,Gerald,Lowell,North Carolina,United States,DMR
2021001,SV1BYK,Babis Kappatos,Babis,Athens,Attica,Greece,
2021002,SV1PDW,Ioannis Barbat-Soskos,Ioannis,Athens,Attica,Greece,
2021003,SV1IW,Manos Darkadakis,Manos,Athens,Attica,Greece,
@@ -785,6 +815,9 @@ 2021045,SV1EES,DIMITRIOS STASIS,DIMITRIOS,ATHENS,Attiki,Greece,
2021046,SV1CDR,Panagiotis Tsekouras,Panagiotis,Piraeus,Attiki,Greece,
2021047,SV1QFS,Gerasimos Zigkiris,Gerasimos,Athens,Attiki,Greece,
+2021048,SZ1RSF,RSF HELLAS Ambulance,RSF Ambulance,MOSCHATO Athens,Attica,Greece,
+2021049,SY1AWU,Nikosmar Onuniaeu,Nikosmar,ATHENS MAROUSI,Attiki,Greece,
+2021050,SV1JHV,George Dimos,George,Agrinio,Sterea Ellada,Greece,
2022001,SV2XI,Kleanthis ,Kleanthis,Thessaloniki,Makedonia Thraki,Greece,
2022002,SV2RGC,Konstantinos Makris,Konstantinos,Kastoria,Ipiros Ditiki Makedo,Greece,
2022003,SV2LLJ,Ioannis Kokovidis,Giannis,Naoussa,Makedonia Thraki,Greece,
@@ -797,11 +830,16 @@ 2022010,SZ2SZ,Hellenic Amateur Radio Community,Hellenic Amateur,Thessaloniki,Makedonia Thraki,Greece,
2022011,SV2CSV,Antonios Koukouravas,Antonios,Edessa,cnty,Greece,
2022012,SV2IPT,Christos Seretis,Chris,Thessaloniki,Kentriki Makedonia,Greece,
+2022013,SV2FLY,Konstantinos Mantzoufas,Konstantinos,Nea Michaniona,Kentriki Makedonia,Greece,
2023001,SV3BSF,Nikos Karkavelias,Nick,Patra,Peloponnisos,Greece,
+2023002,SY3BOQ,Athanasios Vitsas,Thanos,Pyrgos,Peloponnisos,Greece,
2024001,SV4QXF,Efthimios Floros,Efthimios,Trikala,Thessalia,Greece,
2024002,SV4LRX,Antonis Sotiriou,Asot,LARISSA,Thessalia,Greece,
2024003,SV4IKA,Constantinos Christodoulou,Ikas,Larissa,Thessalia,Greece,
2024004,SV4LAD,Dimitrios Samaras,Sam,Volos,Thessalia,Greece,
+2024005,SV4LAD,Dimitros Samaras,Dimitros,Volos,Thessalia,Greece,
+2024006,SV4LBS,Xristoforos Lellis,Foris,Karditsa,Thessalia,Greece,
+2024008,SV4FGJ,Panos Kordas,Panos,Larissa,Thessalia,Greece,
2025001,SV5KKU,Lakis Bakas,Lakis,Lindos Rodos,Dodecanese,Greece,
2026001,SV6RDR,Konstantinos Chletsis,Konstantinos,Arta,Ipeiros,Greece,
2026002,SV6GIK,Aris Pylarinos,Arispyl,Ioannina,Ipeiros,Greece,
@@ -812,6 +850,10 @@ 2026007,SY6AZC,George Skordos,George,Ioannina,Ipeiros,Greece,
2026008,SV6NOB,Marios Vasileiou,Marios,Ioannina,Ipeiros,Greece,
2026009,SV6HPD,Efthymis Dimitriadis,Efthymis,Ioannina,Ipeiros,Greece,
+2026010,SY6ATS,Theofanis Kapelis,Fanis,Ioannina,Ipeiros,Greece,
+2026011,SV6RDN,Konstantinos Tousis,Konstantinos,Ioannina,Ipeiros,Greece,
+2026012,SV6GIM,Konstantinos Saltas,Gimis,Ioannina,Ipeiros,Greece,
+2026013,SV6GIR,Ioannis Koutroumpas,Giryannis,Ioannina,Ipeiros,Greece,
2027001,SV7GBI,Konstantinos Tsikouras,Kostas,Serres,Anatoliki Makedonia,Greece,
2028001,SV8KOA,Nikos Mousouras,Nikos,Zakynthos,Other Greek Islands,Greece,
2029001,SV9DKB,Ioannis Tsiampas,Ioannis,Heraklion,Kriti,Greece,
@@ -991,6 +1033,10 @@ 2041173,PA3BDD,Bert Wester,Bert,Huizen,Noord-Holland,Netherlands,
2041174,PD4BAS,Bastian Marten,Bastian,Julianadorp,Noord-Holland,Netherlands,
2041175,PD0PHV,Robert Pastijn,Robert,Huizen,Noord-Holland,Netherlands,
+2041176,PB5DX,Harry Koster,Harry,IJmuiden,Noord-Holland,Netherlands,
+2041177,PA4WIM,Wim Wiersma,Wim,Enkhuizen,Noord-Holland,Netherlands,
+2041178,PA3Q,Wil Van Egdom,Wil,Hoofddorp,Noord-Holland,Netherlands,
+2041179,PD1JSV,Jeroen Schouwerwou,Jeroen,Ijmuiden,Noord-Holland,Netherlands,
2042001,PA0HTW,Henk ,Henk,Rotterdam,Zuid-Holland,Netherlands,Portable
2042002,PA0HTW,Henk ,Henk,Rotterdam,Zuid-Holland,Netherlands,Mobile
2042003,PA3DFN,Philip ,Philip,Spijkenisse,Zuid-Holland,Netherlands,Portable
@@ -1259,6 +1305,7 @@ 2042266,PA9TV,Simon NoName,Simon,NoName,Zuid-Holland,Netherlands,
2042267,PA6RCG,Robert Putz,Robert,Voorschoten,Zuid-Holland,Netherlands,
2042268,PA3DFR,Paul Van Strien,PA3DFRJ,Zoetermeer,Zuid-Holland,Netherlands,
+2042269,PA6OCK,Michel Honig,Jota Rimboejagers,Den Haag,Zuid-Holland,Netherlands,
2043001,PA1MOS,Marco ,Marco,Amersfoort,Utrecht,Netherlands,Mobile
2043002,PA1GF,Gerjan ,Gerjan,Amersfoort,Utrecht,Netherlands,Portable#1
2043003,PE1NWR,Tineke ,Tineke,Amersfoort,Utrecht,Netherlands,Portable
@@ -1464,7 +1511,7 @@ 2044079,PD1ABK,Bram De Visser,Bram,Vlissingen,Zeeland,Netherlands,
2044080,PA3FKH,Kees De Groot,Kees,Venlo,Limburg,Netherlands,
2044081,PA7DX,Casper Van Lieburg,Casper,Kloosterzande,Zeeland,Netherlands,
-2044082,PA3YP,Guus Schlosmacher,Guus,Echt,Limburg,Netherlands,
+2044082,PA3HAS,Guus Schlosmacher,Guus,Echt,Limburg,Netherlands,
2044083,PE1JLX,Ruud Splint,Ruud,Brunssum,Limburg,Netherlands,
2044084,PA7YL,Mirjam Lamers,Mirjam,Gronsveld,Limburg,Netherlands,
2044085,PE3BB,Bart Berends,Bart,Bergen Lb,Limburg,Netherlands,
@@ -1618,6 +1665,8 @@ 2045120,PD0DIB,Rob Van Rheenen,PD0DIBJota,5403KH,Noord-Brabant,Netherlands,
2045121,PA6JAM,Frank Troost,Jota PA6JAM,Veghel,Noord-Brabant,Netherlands,
2045122,PI4DLZ,Berrie Sleijster,Clubstation DLZA,Breda,Noord-Brabant,Netherlands,
+2045123,PD0TZ,Yermolai Cantineau,Yermolai,Terheijden,Noord-Brabant,Netherlands,
+2045124,PD8ARP,Barbara Zandboer,Barbara,Breda,Noord-Brabant,Netherlands,
2046001,PD2WGN,Walter Garretsen,Walter,Nijkerkerveen,,Netherlands,Mobile
2046002,PA1WW,Walther ,Walther,Voorthuizen,Gelderland,Netherlands,Mobile
2046003,PD0PVL,Robert ,Robert,Hoenderloo,Gelderland,Netherlands,Portable
@@ -1765,7 +1814,12 @@ 2046145,PA3CRP,Berry Evers,Berry,Westervoort,Gelderland,Netherlands,
2046146,PD3RJJ,Rob Bruijsten,Rob,Arnhem,Gelderland,Netherlands,
2046147,PI4AJS,Henry Bolster,Club station ARAC,Neede,Gelderland,Netherlands,
-2046149,PA3ASW,Wim ,PA3ASW/JOTA,Eerbeek,Gelderland,Netherlands,
+2046148,PA2SLL,Simon Wesdijk,Simon,Duiven,Gelderland,Netherlands,
+2046149,PA3ASW,Wim Jansen,PA3ASWJOTA,Eerbeek,Gelderland,Netherlands,
+2046150,PA3GNX,Harrie Wolven,Harrie,Arnhem,Gelderland,Netherlands,
+2046151,PE1W,Wim Minnen,Wim,Eerbeek,Gelderland,Netherlands,
+2046152,PI4ANH,Veron A06 Arnhem,Veron A06,Arnhem,Gelderland,Netherlands,
+2046153,PA40LAB,Robin Van Bure,Robin,Nijmegen,Gelderland,Netherlands,
2046900,PI4AJS,Henry ,Club station ARAC,Neede,Gelderland,Netherlands,
2047001,PD0ZWL,Marcel ,Marcel,Zwolle,Overijssel,Netherlands,Portable
2047002,PD0ZWL,Marcel ,Marcel,Zwolle,Overijssel,Netherlands,Mobile
@@ -1924,6 +1978,7 @@ 2047155,PA2PA,Arjan Hylkema,Arjan,Almere,cnty,Netherlands,
2047156,PD2JH,Joost Hutten,Joost,Olst,cnty,Netherlands,
2047157,PE55JP,Andre Heuver,Jota station,Hengelo,cnty,Netherlands,
+2047158,PD0HOD,Tom Tomei,Tom,Almere,Flevoland,Netherlands,
2048001,PD1ASH,Rolf ,Rolf,Niebert,Groningen,Netherlands,Mobile
2048002,PD1ALW,Andre ,Andre,Wijnaldum,Friesland,Netherlands,Mobile
2048003,PE1PWF,Edwin ,Edwin,Leeuwarden,Friesland,Netherlands,Portable
@@ -2074,6 +2129,7 @@ 2048148,PD2JDB,Jan De Boer,Jan,Ysbrechtum,Frysland,Netherlands,
2048149,PD0BOB,Bob Van der Wal,Bob,Leeuwarden,Frysland,Netherlands,
2048150,PA3ABG,Paul Kolenbrander,Paul,Roden,Drenthe,Netherlands,
+2048151,PD1JA,Jacob Van der Molen,Jacob,Groningen,Groningen,Netherlands,
2060001,ON4AIM,Aime ,Aime,Oostende,West-Vlaanderen,Belgium,Portable
2060002,ON3AN,Ann ,Ann,Oostende,West-Vlaanderen,Belgium,Portable
2060003,ON2WIK,Marc ,Marc,Oostende,West-Vlaanderen,Belgium,Portable
@@ -2186,6 +2242,7 @@ 2060110,ON2MVH,Mike Van Hoorickx,Mike,Uitkerke,West-Vlaanderen,Belgium,
2060111,ON3LUK,Luc Huilmand,Luc,Oostende,West-Vlaanderen,Belgium,
2060112,ON2CG,Gerard Cappelle,Gerard,Oostende,West-Vlaanderen,Belgium,
+2060113,ON3DEG,Gerdy Decherf,Gerdy,Zonnebeke,West-Vlaanderen,Belgium,
2061001,ON8SVH,Stijn Vanden Hende ,,Oudenaarde,Oost-Vlaanderen,Belgium,Portable
2061002,ON8SI,Simon ,Simon,Oosterzele,Oost-Vlaanderen,Belgium,Portable
2061003,ON5LUC,Luc ,Luc,Gent,Oost-Vlaanderen,Belgium,Portable
@@ -2366,6 +2423,8 @@ 2061178,ON3ISA,Isabel Colman,Isabel,Wetteren,Oost-Vlaanderen,Belgium,
2061179,ON3BRT,Bart Bohyn,Bart,GENT,Oost-Vlaanderen,Belgium,
2061180,ON8DYL,Bodijn Dylan,Bodijn,Oudenaarde,Oost-Vlaanderen,Belgium,
+2061181,ON1BH,Herman Brackenier,Herman,Denderhoutem,Oost-Vlaanderen,Belgium,
+2061182,ON3IY,Jurgen Troch,Jurgen,Wetteren,Oost-Vlaanderen,Belgium,
2062001,ON7DS,Dirk ,Dirk,Kontich,Antwerp,Belgium,Portable
2062002,ON2DMT,Martine ,Martine,Kontich,Antwerp,Belgium,Portable
2062003,ON7PDW,Peter ,Peter,Boom,Antwerp,Belgium,Mobile
@@ -2428,6 +2487,8 @@ 2062060,ON3JVB,Jurgen Van den Broek,Jurgen,Ravels,Antwerp,Belgium,
2062061,ON3XD,Luc Van Kerckhoven,Luc,Bornem,Antwerp,Belgium,
2062062,ON3ITA,Carlo Carrozzo,Carlo,Bornem,Antwerp,Belgium,
+2062063,ON4AFW,Wilfried Fonteyn,Wilfried,Koningshooikt,Antwerp,Belgium,
+2062064,ON3MD,Marc Heyndrickx,Aristo,Mechelen,Antwerp,Belgium,
2062999,ON4DBC,Geert Bellens,GeertB,Lint,Antwerp,Belgium,
2063001,ON6BB,Pieter ,Pieter,Roosdaal,Vlaams Brabant,Belgium,Mobile
2063002,ON4BDC,Gunther ,Gunther,Halle,Vlaams Brabant,Belgium,Portable
@@ -2853,6 +2914,9 @@ 2080138,F1BGY,JEAN SCOT,JEAN,CLAYE-SOUILLY,le-de-France,France,
2080139,F4GIF,Thomas Soares,Thomas,La ferte gaucher,le-de-France,France,
2080140,F6ICX,ERIC ADNIN,Riquet,CHAUFFRY,le-de-France,France,
+2080141,F4HIC,Quentin Canel,F4HIC,Le Me sur Seine,le-de-France,France,
+2080142,F6CLX,PHILIPPE JEANBLANC,PHILIPPE,BOISSY LE CHATEL,le-de-France,France,
+2080143,F4HFD,Sebastien FREIS,Sebastien,Savigny Le Temple,le-de-France,France,
2081001,F1UOT,Olivier Guerin,Olivier,Suresnes,Île-de-France,France,Portable
2081002,F4ACD,Romain ,Romain,Poitiers,Vienne,France,Portable
2081003,F1TDI,Daniel ,Daniel,Suresnes,Paris,France,Portable
@@ -2984,6 +3048,7 @@ 2082090,F4FLO,Jerome Simonato,Jerome,Saint genest lerpt,Rhne-Alpes,France,
2082091,F4ECA,Frederic Philippon,F4eca,Saint-Galmier,Rhne-Alpes,France,
2082092,F1FDZ,Christian GIRARD,F1FDZ,CHALEINS,Rhne-Alpes,France,
+2082094,F4GSO,Olivier PAYET,Olivier,Beaujeu,Rhne-Alpes,France,
2083001,F1IZL,Jean-Yves Ricklin,Jean-Yves,La Tour Du Crieu,Midi-Pyrénées,France,
2083002,F4GEM,Arnaud DAVRINCHE,Arnaud,CORNEBARRIEU,Midi-Pyrénées,France,
2083003,F1BBG,Gerard Samson,Gerard,Tarascon sur ariege,Midi-Pyrénées,France,
@@ -3166,6 +3231,7 @@ 2088014,F5RVX,Liste orange Liste orange,Liste orange,Liste orange,Brittany,France,
2088015,F4EJW,Eric Cadiou,Eric,Treflevenez,Brittany,France,
2088016,F6DLE,Jean Sanchette,Jean,CARHAIX-PLOUGUER,Brittany,France,
+2088017,F4HQE,Julien Viry,Julien,Clohars-fouesnant,Brittany,France,
2089001,F1MIJ,Pascal ,Pascal,Bouchain,Nord,France,Portable
2089002,F1MIJ,Pascal ,Pascal,Bouchain,Nord,France,Mobile
2089003,F4GFR,Mohamed-Hazim ,Mohamed-Hazim,Marcq en Baroeul,Nord,France,Mobile
@@ -3350,6 +3416,9 @@ 2089182,F4HTN,Nicolas Fontaine,Nicolas,Mo,All Others,France,
2089183,F5NOT,Jrme Sobczak,JS,Helesmes,All Others,France,
2089184,F4GPJ,Stephane Heurdier,Stef,La haye,All Others,France,
+2089185,F1JVY,Jean-Marc Manenti,Jean-Marc,Metz,All Others,France,
+2089186,F8FLK,THIERRY MAUZE,TITI,Chepy,All Others,France,
+2089187,F4BIT,STEPHANE MANGEOLLE,F4BIT,NEUVES-MAISONS,All Others,France,
2089998,F8KGD,RADIO CLUB F8KGD ,,Fontenay Trsigny,Île-de-France,France,
2089999,F5DAN,Daniel ,,Vitry sur Seine,Île-de-France,France,
2130001,C31AR,Anibal Rodrigues Caralho,Anibal,Pas De La Casa,,Andorra,
@@ -3363,19 +3432,19 @@ 2141001,EB1CU,Andoni ,Andoni,Castro Urdiales,Cantabria,Spain,
2141002,EA1DBB,Adolfo Cerdeira Vila,Adolfo,Ourense,Galicia,Spain,
2141003,EB1CU,AXPE Andoni,AXPE,Castro Urdiales,Cantabria,Spain,
-2141004,EB1TK,Benito Arias Galban,Benito,Gijon,Principado de Asturi,Spain,
+2141004,EB1TK,Benito Arias Galban,Beni,Gijon,Principado de Asturi,Spain,
2141005,EA1HFI,Marcelo Adrian Malnero Maccari,Marcelo Adrian,Gijon,Principado de Asturi,Spain,
2141006,EB1TR,Fabian Malnero,Fabian,Gijon,Principado de Asturi,Spain,
2141007,EA1IOF,Javier Vilar Gonzalez,Javier,Magalofes fene,Galicia,Spain,
2141008,EA1AQE,Alberto Mallo,Alberto,A Corua,Galicia,Spain,
2141009,EB1DBX,Maria Begoa Insua Rodriguez,Maria Begoa,Redes ares,Galicia,Spain,
2141010,EA1EOL,Juan Francisco Domnguez,Juan Francisco,Redes,Galicia,Spain,
-2141011,EB1RD,Juan Enrique Colloto Gutierrez,Juan Enrique,Oviedo,Principado de Asturi,Spain,
+2141011,EB1RD,Juan Enrique Colloto Gutierrez,Kike,Oviedo,Principado de Asturi,Spain,
2141012,EB1DY,Manuel Suarez Gonzalez,Manuel,OVIEDO,Principado de Asturi,Spain,
2141013,EA1HVT,Fernando Chabaud,Fernando,Ourense,Galicia,Spain,
2141014,EA1HET,Jonathan Gonzalez Fernandez,Jonathan,Gijon,Principado de Asturi,Spain,
2141015,EA1HNR,Jose Luis Suarez Pache,Jose Luis,Piedras Blancas,Asturias,Spain,
-2141016,EB1TK,Benito Arias Galban,Benito,Gijon,Principado de Asturi,Spain,
+2141016,EB1TK,Benito Arias Galban,Beni,Gijon,Principado de Asturi,Spain,
2141017,EA1GCE,Alberto Menenedez Alonso,Alberto,Granda Siero,Principado de Asturi,Spain,
2141018,EA1AHA,Juan Carlos Acebal Rafael,Juan Carlos,Aviles,Asturias,Spain,
2141019,EA1CRF,Pedro Gonzalez-del-Valle,Pedro,Oviedo,Principado de Asturi,Spain,
@@ -3385,7 +3454,7 @@ 2141023,EA1PT,Jos Manuel Sanchez,Jos Manuel,Oviedo,Principado de Asturi,Spain,
2141024,EA1GJN,Borja Gonzalez Montes,Borja,Gijon,Principado de Asturi,Spain,
2141025,EA1AIW,Jose Angel Prieto,Jose Angel,Gijon,Asturias,Spain,
-2141026,EA1ITM,Josep Bernat Molina,Josep,Oviedo,Principado de Asturi,Spain,
+2141026,EA1ITM,Josep Bernat Molina Nogues,Josep,Oviedo,Principado de Asturi,Spain,
2141027,EA1CI,Jose Angel Casanova Orozco,Jose Angel,Ourense,Galicia,Spain,
2141028,EA1RKG,Asociacin Radioafi Santo Angel (ARSA),Asociacin Radioafi,Melgar de Fernamenta,Castilla y Leun,Spain,
2141029,EA1DBB,Adolfo Cerdeira Vila,Adolfo,Ourense,Galicia,Spain,
@@ -3409,7 +3478,7 @@ 2141047,EA1AUS,Javier Bermejo,Javier,Salamanca,Castilla y Leun,Spain,
2141048,EB1HSH,Jose luis Blanco,Jose luis,La corua,Galicia,Spain,
2141049,EB1GCX,Jose Antonio Espantoso,Jose Antonio,Santiago de Composte,Galicia,Spain,
-2141050,EA1IGN,Ismael Zarzoso,Isamel,Salamanca,Castilla y Leun,Spain,
+2141050,EA1IGN,Ismael Zarzoso,Ismael,Salamanca,Castilla y Leun,Spain,
2141051,EA1AOH,ALBERTO CLEMENTE FUERTES,ALBERTO,LOGROO,La Rioja,Spain,
2141052,EB1GEN,Pedro Lopez Terroba,Pedro,Villa mediana de ire,La Rioja,Spain,
2141053,EB1EGO,Juan Carlos Martin Alvarez,Juan Carlos,Salamanca,Castilla y Leun,Spain,
@@ -3569,7 +3638,20 @@ 2141207,EA1IGO,Juan Gomez,Juan,Cuntis,Galicia,Spain,
2141208,EA1DK,Fernando Gonzalez Marcos,EA1DK,Leon,Castilla y Leon,Spain,
2141209,EA1IQT,David Joaqun Prendes Bra,EA1IQT,Aviles,Asturias,Spain,
-2141210,EA1GID,Juan carlos ,,Santiago de Composte,Galicia,Spain,
+2141210,EA1GID,Juan carlos Lorenzo caride,Carlos,Santiago de Composte,Galicia,Spain,
+2141211,EB1EWE,Andres Senaris,Andres,Cerceda - La Corua,Galicia,Spain,
+2141212,EA1KZ,MARCOS GARCIA DIAZ,MARCOS,VALDESOTO,Asturias,Spain,
+2141213,EA1UVR,Union Radioafic. Vetusta,EA1UVR,Oviedo,cnty,Spain,
+2141214,EA1FCA,Ruben Villar,CENTRACON,Santiago de Composte,Galicia,Spain,
+2141215,EA1GDR,CARLOS CUADRADO,CARLOS,EL BARRACO,Castilla y Leon,Spain,
+2141216,EA1GUJ,ISIDRO GALLEGO NUNEZ,ISIDRO,LUGO,Galicia,Spain,
+2141217,EA1IWT,PABLO MOLINA FERNANDEZ,PABLO,OVIEDO,Asturias,Spain,
+2141218,EA1HFJ,Arturo Malnero,EA1HFJ,Gijon,cnty,Spain,
+2141219,EA1SH,Manuel Vazquez Crespo,Manu,Lugo,Galicia,Spain,
+2141220,EA1AUR,Jose Teodoro Andreu Munoz-Orea,Theo,Aldearrubia,Castilla y Leon,Spain,
+2141223,EB1ERD,Eva Colloto Herrera,Eva,Oviedo,Asturias,Spain,
+2141224,EA1GCZ,Andres Arranz Garcia,Andres Arranz,Aviles,Asturias,Spain,
+2141225,EA1ESO,Rafael Correa Fernandez,Rafa,Coto Carcedo,cnty,Spain,
2142001,EA2IP,Jesus ,Jesus,Sestao,Basque Country,Spain,
2142002,EA2IV,Alex BONILLO,Alex,Huesca,Aragon,Spain,
2142003,EA2FT,Juan Angel De la Fuente Mata,Juan Angel,Zaragoza,Aragun,Spain,
@@ -3697,6 +3779,17 @@ 2142125,EA2RCP,URP-RCP Radioclub Pamplona,URP-RCP,Pamplona,Navarra,Spain,
2142126,EA2DDI,Jose Antonio Campos Moreno,EA2DDI,Bilbao,Pais Vasco,Spain,
2142127,EA2DVT,ALEJANDRO LABARGA,EA2DVT,ZARAGOZA,Aragon,Spain,
+2142128,EA2BAJ,Eduardo Eduardo,JEdu,Bilbao,Pais Vasco,Spain,
+2142129,EA2RCX,RADIOCLUB ESCUELA INGENIEROS DE BILBAO,GAURKO,Bilbao,Pais Vasco,Spain,
+2142130,EA2AMB,Angel Abadias,Angel,Zaragoza,Aragon,Spain,
+2142131,EA2BIN,ANTONIO SANCHEZ FERNANDEZ,EA2BIN,BURLADA,Navarra,Spain,
+2142132,EA2ENE,Juan Jesus Perez Aldunate,Joee,Zariquiegui,Navarra,Spain,
+2142133,EA2ECL,Javier Izaga,Ea2ecl,Elgoibar,Pais Vasco,Spain,
+2142134,EA2BRQ,Nazario Peralta,Nazario,Fraga,Aragon,Spain,
+2142135,EA2AHP,Juan Oscar Gonzalez Calleja,Pitxu,Bilbao,Pais Vasco,Spain,
+2142136,EB2DYG,Andoni Maizkurrena,Andoni,Bilbao,Pais Vasco,Spain,
+2142137,EA2DFS,ESTER AROCENA,EA2DFS,ARANAZ,Navarra,Spain,
+2142138,EA2EKQ,ALEX GONZALEZ,ALILLO,PORTUGALETE,Pais Vasco,Spain,
2143001,EA3DKP,Ricardo ,Ricardo,Roses,Girona,Spain,Portable #1
2143002,EA3DKP,Ricardo ,Ricardo,Roses,Girona,Spain,Portable #2
2143003,EA3DKP,Ricardo ,Ricardo,Roses,Girona,Spain,Portable #3
@@ -3880,8 +3973,19 @@ 2143181,EA3UA,PEDRO ANDREU GARRIGA,PEDRO,MATARO,Cataluna,Spain,
2143182,EA3TA,Juan Piqueras,EA3TA (Juan),Sant Quirze del Vall,Cataluna,Spain,
2143183,EC3AIW,JORDI GASCON SEGUNDO,JORDI,GRANOLLERS,Cataluna,Spain,
-2143184,EA3DPJ,Juan Enrique ,Joan Enric,Mataro,Cataluna,Spain,
-2143185,EA3HEU,Javier ,,Hospitalet de llobre,Cataluna,Spain,
+2143184,EA3DPJ,Juan Enrique Vinas Oliver,Joan Enric,Mataro,Cataluna,Spain,
+2143185,EA3HEU,Javier Gonzalez Ruiz,Ea3heu,Hospitalet de llobre,Cataluna,Spain,
+2143186,EA3HFO,JAUME BONET ARMENGOL,EA3HFO,LLEIDA,Cataluna,Spain,
+2143187,EA3BEO,Jorge Sahagun Fanals,Jordi,Mataro,Cataluna,Spain,
+2143188,ED3YAN,Eduardo RODRIGUEZ,EB3GHN,BARCELONA,Cataluna,Spain,
+2143189,EA3BQH,MARCEL MACIA,MARCEL,SANT VICENc de monta,Cataluna,Spain,
+2143190,EC3DBA,Joan Valls Pou,Joan,Canyamars,Cataluna,Spain,
+2143191,EA3GQU,Lopez Diaz,Jose Antonio,Torredembarra,Cataluna,Spain,
+2143192,EA3EIY,Tomas Diaz,Tomas,Hospitalet LL.,Cataluna,Spain,
+2143193,EA3FNR,Jose Manuel Gordon Tena,Jose Manuel,Sant Vicents dels Ho,Cataluna,Spain,
+2143194,EA3AMI,Juan Adria,Juan,Barcelona,Cataluna,Spain,
+2143195,EA3GCU,Julio Soriano,Julio,Barcelona,Cataluna,Spain,
+2143196,EA3EE,TONI VICO,TONI VICO,Sant Vicen dels Hort,Cataluna,Spain,
2144001,EA5IIO,ANTONIO ,,Albacete,Castile-La Mancha,Spain,
2144002,EA4GQW,Pablo Cortes,Pablo,Madrid,Community of Madrid,Spain,
2144003,EA4AAE,Javier Coso,Javier,Madrid,Community of Madrid,Spain,
@@ -4010,6 +4114,19 @@ 2144126,EB4GLE,Jose Joaquin Garcia,Jose Joaquin,Madrid,excluding Albacete,Spain,
2144127,EA4EOZ,Miguel Angel Vallejo,Miguel,Leganes,excluding Albacete,Spain,
2144128,EA4GVH,Miguel Angel Manchado Henriquez,Miguel Angel,Boadilla del Monte,excluding Albacete,Spain,
+2144129,EA4CHU,Miguel Lado Duro,Miguel,Madrid,excluding Albacete,Spain,
+2144130,EA4FLN,Javier Mayoral,Javier,Brihuega,excluding Albacete,Spain,
+2144131,EA4GSB,Juan carlos De la montaa,Juankar,Madrid,excluding Albacete,Spain,
+2144132,EB4FZI,Jose Luis Patio Araujo,Jose Luis,Madrid,excluding Albacete,Spain,
+2144133,EA4DKA,Jose Enrique Espejo,Celada,Madrid,excluding Albacete,Spain,
+2144134,EA4GSV,Andres Arenas,Andres,Madrid,excluding Albacete,Spain,
+2144135,EA4GTH,Adolfo De Diego,Adolfode,NAVALCARNERO,excluding Albacete,Spain,
+2144136,EA4FMF,Javier Carrasco,Sagitario,Madrid,excluding Albacete,Spain,
+2144137,EB4FBZ,Carlos Cabezas,EB4FBZ,Madrid,excluding Albacete,Spain,
+2144138,EA4FHY,JUAN CARLOS PEREZ ARRIBAS,JC,Madrid,excluding Albacete,Spain,
+2144139,EA4GFC,Santiago Dominguez,Cosme,San lorenzo del esco,excluding Albacete,Spain,
+2144140,EA4GUY,JOSE LUIS LOPEZ IBARRA,JOSE LUIS,PARACUELLOS DE JARAM,excluding Albacete,Spain,
+2144141,EA4GSL,Luciano Rubio,Lucas,Madrid,excluding Albacete,Spain,
2145001,EA5AWM,Vicente ,Vicente,Valencia,Valencia,Spain,Mobile
2145002,EA5AWM,Vicente ,Vicente,Valencia,Valencia,Spain,Portable
2145003,EA5HJX,Alex ,Alex,Valencia,Valencia,Spain,Mobile
@@ -4136,7 +4253,10 @@ 2145124,EA5CVK,MARIO KARLSSON,MARIO,CAMPELLO,Valencia,Spain,
2145125,EA5BI,Carlos Jimenez lidon,Carlos,Elche,Valencia,Spain,
2145126,EA5AQB,Salvador Poveda Algarra,Salvador,Elda,Valencia,Spain,
-2145128,EA5SW,Jose ,,Valencia,Valencia,Spain,
+2145127,EA5ERC,EB3GHN Eduardo,Rodriguez,Polinya del valles,Valencia,Spain,
+2145128,EA5SW,Jose Lopez,EA5SW,Valencia,Valencia,Spain,
+2145129,EA5IDR,FRANCISCO JOSE PEaeAS PERAN,FRANCISCO JOSE,ALHAMA DE MURCIA,Murcia,Spain,
+2145130,EA5URB,Ea5urb U.R.B,EA5URB,Benidorm,Valencia,Spain,
2146001,EA6AFZ,Antonio Lopez,Antonio,Inca,Islas Baleares,Spain,
2146002,EA6AID,Ana Macian,Ana,Inca,Islas Baleares,Spain,
2146003,EA6AFZ,Antonio Lopez Segade,Antonio,Inca,Islas Baleares,Spain,
@@ -4152,6 +4272,8 @@ 2146013,EB6MY,Valentin Guerrero Barcel,EB6MY,Felanitx,Islas Baleares,Spain,
2146014,EA6AJM,Jose Maria Rosello,Rosello,IBIZA,Islas Baleares,Spain,
2146015,EA6WQ,TOMAS ORZAEZ,Tomdmr,MANACOR,Islas Baleares,Spain,
+2146016,EB6AOK,Muriel Enrique,EB6AOK,Sant Joan de Labritj,Islas Baleares,Spain,
+2146017,EA6RF,Antonio Reynes Pons,Ea6rf toni,Algaida,Islas Baleares,Spain,
2147001,EA7UW,Rafael Ric Millan,Rafael,Malaga,Andalucia,Spain,
2147002,EA7CRA,Jose Manuel Alabarce,Jose Manuel,Granada,Andalucia,Spain,
2147003,EA7JRS,Manuel Canca Snchez,Manuel,Jerez de la frontera,Andalucia,Spain,
@@ -4253,6 +4375,24 @@ 2147099,EC7MA,JOSE MANUEL PUYO,JOSE MANUEL,MALAGA,Andalucia,Spain,
2147100,EA7VN,Jose Federero,Jose,Sevilla,Andalucia,Spain,
2147101,EA7JTY,Rafael Calderon Gutierrez,Rafael,Sevilla,Andalucia,Spain,
+2147102,EA7JZD,Santos Carlos,EA7JZD,Marbella,Andalucia,Spain,
+2147103,EA7JRE,Merino Manuel,EA7JRE,San Pedro de Alcanta,Andalucia,Spain,
+2147104,EA7AJV,Alvaro Diego,EA7AJV,Marbella,Andalucia,Spain,
+2147105,EA7HCL,Gimenez Hugo,EA7HCL,Marbella,Andalucia,Spain,
+2147106,EA7BZO,JOSE RIVAS,PENDON,ALGARROBO,Andalucia,Spain,
+2147107,EA7IWD,MANUEL LUQUE,LOLO,Camas,Andalucia,Spain,
+2147108,EB7BPN,Alejandro Yague Moreno,Eb7bpn,La linea de la Conce,Andalucia,Spain,
+2147109,EB7FUF,FRANCISCO MANUEL ANTEQUERA,PACO TRIKELE,LAS PAJANOSAS,Andalucia,Spain,
+2147110,EA7JMP,GABRIEL PADILLA,RUIZ,EL EJIDO ALMERIA,Andalucia,Spain,
+2147111,EB7HEM,JOSE CARLOS MARiA GARRIDO,JOSE CARLOS,MALAGA,Andalucia,Spain,
+2147112,EA7HKO,FRANCISCO JOSE HERNANDEZ,FRAN,ALMERIA,Andalucia,Spain,
+2147113,EB7BSG,FRANCISCO LEDESMA SOLER,FRANCISCO,ALMERIA,Andalucia,Spain,
+2147114,EA7DDA,Jose Antonio Gallo Herrera,Antonioer,Cadiz,Andalucia,Spain,
+2147115,EA7KY,JULIO MALENO,JULIO,EL EJIDO,Andalucia,Spain,
+2147116,EA7JWQ,Julio Ortiz,Julio,Linares,Andalucia,Spain,
+2147117,EA7ALP,Alfonso Manuel Delgado Lozano,Ea7alp,Sevilla,Andalucia,Spain,
+2147118,EB7EZC,Antonio Pelaez,Antonio,Caleta de Velez,Andalucia,Spain,
+2147119,EA7HGL,Antonio Domingo Reina Garfia,ADRG,Mairena del Aljarafe,Andalucia,Spain,
2148001,EA8YAT,Alfred ,Alfred,Las Palmas,Islas Canarias,Spain,Portable
2148002,EA8EE,Jose ,Jose,Las Palmas,Islas Canarias,Spain,
2148003,EA8EE,Jose Manuel Martinez,Jose Manuel,Las Palmas,Islas Canarias,Spain,
@@ -4288,12 +4428,14 @@ 2148033,EA8CBB,Tomas Aguilar Gutierrez,Tomas,Taco - La Laguna - T,Islas Canarias,Spain,
2148034,EA8II,Eduardo Diaz,Eduardo,La Laguna,Islas Canarias,Spain,
2148035,EA8TV,Juan Jose Tavio Gonzalez,Juan Jose,La Victoria de Acent,Islas Canarias,Spain,
+2148037,EA8AQI,ROGELIO MARTEL LOPEZ,ROGELIO,TELDE,Islas Canarias,Spain,
2149001,EA9PE,Alvaro ,Alvaro,Ceuta,Ceuta,Spain,Portable
2149002,EB9PB,Alejandro ,Alejandro,Ceuta,Ceuta,Spain,Mobile
2149003,EA9AAD,Lara Ostio Almudena,Lara Ostio,Ceuta,Ceuta,Spain,
2149004,EA9PE,Muela Aguilera Alvaro,Muela Aguilera,Ceuta,Ceuta,Spain,
2149005,EA9AI,FCO JAVIER ALVAREZ SEGURA,JAVIER ALVAREZ,Ceuta,Ceuta,Spain,
2149006,EA9UV,ANTONIO VILLALTA ANYA,EA9UV,Ceuta,Ceuta,Spain,
+2149007,EA9ABY,Antonio Miguel Canela Segura,Antonio,Melilla,Melilla,Spain,
2160002,HA4XA,Istvan ,Istvan,Budapest,Budapest,Hungary,
2160003,HA5KSP,Karl Powell,Karl,Budapest,Budapest,Hungary,
2161001,HA2TO,Arpad Orban,Arpad,Papa,Veszprum,Hungary,
@@ -4330,6 +4472,7 @@ 2161032,HA2QE,Viktor Bredan,Viktor,Dorog,Komurom-Esztergom,Hungary,
2161033,HG2QGK,Attila Kozik,Attila,Esztergom Kertviros,Komarom-Esztergom,Hungary,
2161034,HA2BJ,Jozsef Babai,Joci,Hereg,Komarom-Esztergom,Hungary,
+2161035,HA4ULB,Gabor Gyorgyi,Gabor,Alap,Fejer,Hungary,
2163001,HG3GG,Gabor ,Gabor,Kaposvar,Somogy,Hungary,Portable#1
2163002,HG3GG,Gabor ,Gabor,Kaposvar,Somogy,Hungary,Portable#2
2163003,HA3KZ,Zoltan Herczeg,Zoltan,Kaposvar,Somogy County,Hungary,
@@ -4352,6 +4495,7 @@ 2163020,HA3IN,Norbert Hegedues,Norbert,Pecs,cnty,Hungary,
2163021,HA3LMR,Kiss Meirosu Laszlo,Kiss Meirosu,Pecs,Baranya,Hungary,
2163022,HA3HJ,Jozsef Heiszler,Jozsef,Darany,Somogy,Hungary,
+2163023,HA3TQ,Gabor Dr Nagy,Gabor,Pecs,Baranya,Hungary,
2165001,HA5CJN,Ivan Nagy,Ivan,Budapest,Budapest,Hungary,
2165002,HA5BHX,Gabor Breitner,Gabor,Budapest,Budapest,Hungary,
2165003,HG5OHT,Tuende Herczegn Katona,Tuende,Budapest,Budapest,Hungary,
@@ -4424,6 +4568,7 @@ 2165070,HA5CGB,Bela Tar,Bela,Budapest,Budapest,Hungary,
2165071,HA5RG,Gibor Rozsa,Gabi,Budapest,Budapest,Hungary,
2165072,HG5BYO,Zoltin Pidir,Zoltin,Budapest,Budapest,Hungary,
+2165073,HA5ASS,Zsolt Lombar,Zsolt,Budapest,Budapest,Hungary,
2167001,HG7JML,Otto Vincze,Otto,Erd,Calabarzon,Hungary,
2167002,HA5OGR,Lajos Horvath,Lajos,Dunavarsany,Pest County,Hungary,
2167003,HA7TP,Peter Till,Peter,Veresegyhaz,Pest County,Hungary,
@@ -4461,6 +4606,9 @@ 2167035,HG7BUS,Janos Kovago,Jani,Jaszfelsoszentgyorgy,Jasz-Nagykun-Szolnok,Hungary,
2167036,HA7NS,Bela Kover,Bela,Jaszbereny,Jasz-Nagykun-Szolnok,Hungary,
2167037,HG6IJS,Istvan Farkas,Pisti,Hatvan,Heves,Hungary,
+2167038,HA6CX,Tibor Birkinyi,Tibor,Gyoengyoes,Heves,Hungary,
+2167039,HA6KL,Lajos Kralik,Lajos,Gyoengyoes,Heves,Hungary,
+2167040,HA7JZ,Zoltan Rigo,Zoli,Jasztelek,cnty,Hungary,
2168001,HA3TL,Laszlo Kardos,Laszlo,Debrecen,Veszprum,Hungary,
2168002,HA0BW,Imre Gardo,Imre,Debrecen,Hajdu-Bihar,Hungary,
2168003,HA0DR,Lajos Gergely,Lajos,Debrecen,Hajdu-Bihar,Hungary,
@@ -4469,6 +4617,7 @@ 2168006,HA0DR,Lajos Gergely,Lajos,Debrecen,Hajdu-Bihar,Hungary,
2168007,HA8LN,Janos Csabai,Janos,Magyarbinhegyes,Buakuas County,Hungary,
2168008,HA8LN,Jinos Csabai,Janos,Magyarbinhegyes,Buakuas County,Hungary,
+2168009,HG8LW,Sandor Gyapjas,Sanyi,Nyregyhiza,cnty,Hungary,
2180001,E74OF,Pedja Jovanovic,Pedja,Sarajevo,,Bosnia and Hercegovi,
2180002,E73JN,Nenad Jovanovic,Nenad,Sarajevo,,Bosnia and Hercegovi,
2180003,E74NK,Nail Klisura,Nail,Fojnica,,Bosnia and Hercegovi,
@@ -4850,8 +4999,13 @@ 2220356,IZ0PQE,Igor Calderari,IZ0PQE,Anticoli Corrado,Lazio,Italy,
2220357,IK0WRB,Vinicio Coletti,IK0WRB,Roma,Lazio,Italy,
2220358,IU0DZJ,Gerardo Stravato,Gerardo,Fondi,Lazio,Italy,
-2220359,IW0RBS,Federico ,,Perugia,Umbria,Italy,
-2220360,IZ0RDM,Williams ,,Ardea,Lazio,Italy,
+2220359,IW0RBS,Federico Paoletti,Federico,Perugia,Umbria,Italy,
+2220360,IZ0RDM,Williams Falco,Iz0rdm,Ardea,Lazio,Italy,
+2220361,IW0QGQ,Fabrizio Albi,Fabrizio,Bastia Umbra,Umbria,Italy,
+2220362,IW0EFI,Christian Pallucci,Chris,Gallinaro,Lazio,Italy,
+2220363,I0LYL,Lucio Perrone,ILYL,Pomezia,Lazio,Italy,
+2220364,IZ0WLI,BENVENUTI FRANCO,BENVENUTI,ROMA,Lazio,Italy,
+2220365,IW0DVV,Mariano ,,Civitavecchia,Lazio,Italy,
2220900,IW0UIF,Natale ,Natale,Oristano,Sardinia,Italy,Mobile
2220901,IS0XDA,Gianni ,Gianni,Sinnai,Sardinia,Italy,Mobile
2220902,IS0AYI,Paolo ,Paolo,Cagliari,Sardinia,Italy,Mobile
@@ -5147,12 +5301,22 @@ 2221280,IK1JMJ,Carlo Poggio,Carlo,Torino,Piedmont,Italy,
2221281,IW1CMX,Pier Giorgio Martinetto,Piergiorgio57,CastellAlfero (AT),Piedmont,Italy,
2221282,IW1FYE,FABIO DI MARCO,Fabio,Grugliasco,Piedmont,Italy,
+2221283,IZ1VAZ,Samuel ,,Beinasco torino,Piedmont,Italy,
2221284,IZ1TGB,Andrea Pineschi,Andypin,LA Spezia,Liguria,Italy,
2221285,IZ1BCJ,Gianluca Crafa,IZ1BCJ,Torino,Piedmont,Italy,
-2221286,IU1DXU,ENNIO ,,CHIVASSO,Piedmont,Italy,
-2221287,IU1EVM,Nicola ,,Imperia,Liguria,Italy,
-2221288,IZ1GJH,Servente ,,Casarza ligure,Liguria,Italy,
-2221289,IZ1ERR,Piero ,,Favria,Piedmont,Italy,
+2221286,IU1DXU,ENNIO POLETTA,ENNIO,CHIVASSO,Piedmont,Italy,
+2221287,IU1EVM,Nicola Perelli,Niclahp1969,Imperia,Liguria,Italy,
+2221288,IZ1GJH,Servente Massimo,Iz1gjh,Casarza ligure,Liguria,Italy,
+2221289,IZ1ERR,Piero Baudino,Piero,Favria,Piedmont,Italy,
+2221290,IZ1YOV,Fabio Mantovani,IZ1YOV,Casale Monferrato,Piedmont,Italy,
+2221291,IU1GCK,Lorenzo Bigarelli,BIGA81,Casale Monferrato,Piedmont,Italy,
+2221292,IK1BXN,Giorgio Olei,Giorgio-ge,Busalla,Liguria,Italy,
+2221293,IZ1UKX,Emanuele REPETTO,Lumyn,Casella,Liguria,Italy,
+2221294,IZ1FUM,Davide Frino,Uek,Genova,cnty,Italy,
+2221295,IZ1GZF,Luca Feletti,IZ1GZF,Bussoleno (TO),Piedmont,Italy,
+2221296,IW1EYZ,P Paolo CARPINELLI,IW1EYZ,Genova,Liguria,Italy,
+2221297,IZ1VWE,Dario Occhiogrosso,Iz1vwe,Genova,Liguria,Italy,
+2221298,IK1TAQ,Benazzo ,,Alessandria,cnty,Italy,
2222001,IW2DCK,Germano ,Germano,Capriate San Gervasi,Lombardy,Italy,Portable
2222002,IW2BCF,Roberto ,Roberto,Milano,Lombardy,Italy,Mobile
2222003,IZ2JGB,Giorgio ,Giorgio,Legano,Lombardy,Italy,Portable
@@ -5584,10 +5748,26 @@ 2222429,IU2BOD,Mauro Pradella,Mauro,Viadana,Lombardy,Italy,
2222430,IW2GHV,DONATO MARTONE,Max,CASTELVECCANA,Lombardy,Italy,
2222431,IW2FCH,Antonio Arzenton,IW2FCH,Brescia,Lombardy,Italy,
-2222432,I2NOS,Giuseppe ,,Brescia,Lombardy,Italy,
-2222433,IK2SOB,Fabio ,,Cornate dAdda,Lombardy,Italy,
-2222434,IW2FHP,Ilario ,,Botticino Mattina,Lombardy,Italy,
-2222435,IW2NTF,Andrea ,,Gaggiano,Lombardy,Italy,
+2222432,I2NOS,Giuseppe Pittella,Giuseppe,Brescia,Lombardy,Italy,
+2222433,IK2SOB,Fabio Cristoforoni,Fabio,Cornate dAdda,Lombardy,Italy,
+2222434,IW2FHP,Ilario Ferrari,Ilario,Botticino Mattina,Lombardy,Italy,
+2222435,IW2NTF,Andrea Fracassi,Andrea,Gaggiano,Lombardy,Italy,
+2222436,IW2DIW,SILVANO RIPAMONTI,Iw2diw,CARNATE,Lombardy,Italy,
+2222437,IW2KWV,Ezio None,Ezio,Milano,Lombardy,Italy,
+2222438,IZ2ZRJ,Gianluigi Contu Farci,IZ2ZRJ,Milano,Lombardy,Italy,
+2222439,IW2LZC,DAVIDE DAMATO,Davide,Milano,Lombardy,Italy,
+2222440,IW2CYS,GIANNI SIRONI,GIANNI,Santa maria ho,Lombardy,Italy,
+2222441,IZ2LPH,Nicola Persavalli,IZ2LPH,Prevalle,Lombardy,Italy,
+2222442,IZ2UQC,Lorenzo Zambelli,Lorenzo,Casto (Brescia),Lombardy,Italy,
+2222443,IZ2WSQ,Armando Sala,Armando Sala,Arcore,Lombardy,Italy,
+2222444,IW2LVG,LURATI CLAUDIO,IW2LVG,OLGIATE COMASCO,Lombardy,Italy,
+2222445,IW2DKU,Paolo Malerba,Malepao,Sondrio,Lombardy,Italy,
+2222447,IU2GFL,Maurizio Minali,IU2GFL,Brembate Sopra,Lombardy,Italy,
+2222448,IK2ARZ,TULLIO ,,CREMONA,Lombardy,Italy,
+2222449,IU2ABV,Fabio ,,Cusago,Lombardy,Italy,
+2222450,IZ2QEJ,Paolo ,,Milano,Lombardy,Italy,
+2222451,IZ2SRS,Federico Paolo ,,Milano,Lombardy,Italy,
+2222452,IZ2YWI,Marco ,,Oggiono,Lombardy,Italy,
2223001,IW3SRH,Stefano ,Stefano,Trieste,Friuli-Venetia Giuli,Italy,Portable
2223002,IV3DVE,Corrado ,Corrado,Trieste,Friuli-Venetia Giuli,Italy,Portable
2223003,IV3FHS,Antonio ,Antonio,Latisana,Friuli-Venetia Giuli,Italy,Portable
@@ -5912,6 +6092,7 @@ 2223322,IW3GPO,PAOLO ROSIN,IW3GPO,Venezia,cnty,Italy,
2223323,IU3GMG,Michele Galantin,Michele,Mestrino,Veneto,Italy,
2223324,IN3AVB,Alberto Lazzarini,IN3AVB,Bolzano,Trentino-Alto Adige/,Italy,
+2223325,IU3GMC,Alessio Galantin,Alessio,Mirano,Veneto,Italy,
2223326,I3ZNI,GINO ZANANDREA,I3ZNI,Cassola (VI),Veneto,Italy,
2223327,IZ3WWF,Mauro Domenico Groppa,Mauro,San Tomaso Agordino,Veneto,Italy,
2223328,IV3NFC,Dario Teon,iv3nfc,Paularo,Friuli-Venetia Giuli,Italy,
@@ -5919,15 +6100,20 @@ 2223330,IZ3ZLE,Antonio Sorgato,Antonio_Sorgato,Saonara,Veneto,Italy,
2223331,IZ3KUY,Giuseppe Michilin,IZ3KUY,Preganziol,Veneto,Italy,
2223332,IN3TGS,Andrea Trebo,Andrea,Bolzano,Trentino-Alto Adige,Italy,
-2223333,IK3ZBK,PIETRO ,,VALSTAGNA,Veneto,Italy,
-2223334,IU3BRK,Alberto ,,Polverara,Veneto,Italy,
-2223335,IN3SQW,Giorgio ,,BOLZANO,Trentino-Alto Adige,Italy,
-2223336,IU3CAK,Alessandro ,,San Nazario,cnty,Italy,
-2223337,IZ3NVU,Guillermo ,,Tezze sul Brenta,Veneto,Italy,
-2223338,IW3HIR,Alessandro ,,PADOVA,Veneto,Italy,
-2223339,IZ3KZX,Federico ,,Zelarino,cnty,Italy,
-2223340,IU3BXP,Loris ,,Martellago,Veneto,Italy,
-2223341,IZ3VTH,Alessandro ,,Favaro Veneto,Veneto,Italy,
+2223333,IK3ZBK,PIETRO PONTAROLLO,IK3ZBK,VALSTAGNA,Veneto,Italy,
+2223334,IU3BRK,Alberto Zanutto,Alberto,Polverara,Veneto,Italy,
+2223335,IN3SQW,Giorgio Scalabrin,Itauscag,BOLZANO,Trentino-Alto Adige,Italy,
+2223336,IU3CAK,Alessandro Cavalli,IU3CAK,San Nazario,cnty,Italy,
+2223337,IZ3NVU,Guillermo Diaz,Willy,Tezze sul Brenta,Veneto,Italy,
+2223338,IW3HIR,Alessandro Scroccaro,IW3HIR,PADOVA,Veneto,Italy,
+2223339,IZ3KZX,Federico Merlo,Federico,Zelarino,cnty,Italy,
+2223340,IU3BXP,Loris Siega,Loris,Martellago,Veneto,Italy,
+2223341,IZ3VTH,Alessandro Murador,Ale IZ3VTH,Favaro Veneto,Veneto,Italy,
+2223343,IK3FXK,Gaetano Schiavon,El Macia,Padova,Veneto,Italy,
+2223344,IN3GME,Moritz Amort,IN3GME Moritz,Brixen,Trentino-Alto Adige,Italy,
+2223345,IK3PDD,Umberto Querenghi,IK3PDD,Verona,cnty,Italy,
+2223346,IU3BUW,PAOLO ,,SCORZE,Veneto,Italy,
+2223347,IK3FXC,Giuseppe Luciano ,,Pozzoleone,Veneto,Italy,
2224001,IZ4RDT,Monica ,Monica,Piacenza,Emilia-Romagna,Italy,Mobile
2224002,IZ4YEP,Alex ,Alex,Piacenza,Emilia-Romagna,Italy,Mobile
2224003,IW4BVN,Paolo ,Paolo,Salsomaggiore Terme,Emilia-Romagna,Italy,Portable
@@ -5945,7 +6131,7 @@ 2224015,IK4QMX,Daniele Morselli,Daniele,Cento,Emilia-Romagna,Italy,
2224016,IK4IEE,Giuseppe Rubini,Giuseppe,Vignola,Emilia-Romagna,Italy,
2224017,IK4GMI,Gianfranco Ronconi,Gianfranco,Ravenna,Emilia-Romagna,Italy,
-2224018,IW4EHJ,Andrea Pozzi,Andrea,Rimini,Emilia-Romagna,Italy,
+2224018,IW4EHJ,Andrea Pozzi,iw4ehj,Rimini,Emilia-Romagna,Italy,
2224019,IZ4ISN,Marco Stefano Duca,Marco Stefano,Montescudo,Emilia-Romagna,Italy,
2224020,IU4BXJ,Fabio Zannicol,Fabio,Verica,Emilia-Romagna,Italy,
2224021,IZ4YMS,Angelo Pantano,Angelo,Rimini,Emilia-Romagna,Italy,
@@ -6075,7 +6261,11 @@ 2224145,IW4CEZ,Giorgio Roffi,Iw4cez,Piacenza,Emilia-Romagna,Italy,
2224146,IU4DTB,GIANLUCA DELLAPINA,GIANLUCA,Parma,Emilia-Romagna,Italy,
2224147,IK4JOD,Enrico Mordini,Enrico,Misano Adriatico,Emilia-Romagna,Italy,
-2224148,I4ZQS,Stefano ,,Coriano,Emilia-Romagna,Italy,
+2224148,I4ZQS,Stefano Muccini,Steve,Coriano,Emilia-Romagna,Italy,
+2224149,IK4LDZ,CLAUDIO GHERARDI,IK4LDZ,MISANO ADRIATICO,Emilia-Romagna,Italy,
+2224150,I4KYO,Giorgio Cavicchioli,Giocav,Carpi,Emilia-Romagna,Italy,
+2224151,IU4HMZ,Massimiliano Fiorillo,Massimiliano,FERRARA,Emilia-Romagna,Italy,
+2224152,IU4AOY,Davide Piazzi,Dade81fe (Iu4aoy),Ferrara,Emilia-Romagna,Italy,
2225001,IZ5IOM,Renzo ,Renzo,Quarrata,Tuscany,Italy,Portable
2225002,IZ5HRO,Emanuele ,Emanuele,Pistoia,Tuscany,Italy,Portable
2225003,IZ5YLV,Valentina ,Valentina,Pistoia,Tuscany,Italy,Portable
@@ -6202,7 +6392,11 @@ 2225124,IZ5ULW,SERGIO SIMONI,SERGIO,Prato,Tuscany,Italy,
2225125,IZ5BIT,Giorgio Di paola,Giorgio,Livorno,Tuscany,Italy,
2225126,IU5HLG,Giovanni Storai,Gix,Prato,Tuscany,Italy,
-2225127,IZ5IYM,Massimo ,,Selvena,Tuscany,Italy,
+2225127,IZ5IYM,Massimo Scevoli,Max,Selvena,Tuscany,Italy,
+2225128,I5BAZ,Paolo Renzo Bellandi,I5BAZ,Prato,Tuscany,Italy,
+2225129,IU5HIW,Nino Gualdoni,Moooose,Castelnuovo berarden,Tuscany,Italy,
+2225130,IU5HTN,Paolo Pasquali,IU5HTN,Lastra a signa,Tuscany,Italy,
+2225131,IK5QQB,Riccardo Attina,IK5QQB,Monsummano Terme,Tuscany,Italy,
2226001,IZ6FGP,Mario ,Mario,Ortona,Abruzzo,Italy,Portable
2226002,IK6TTE,Plinio ,Plinio,Casalbordino,Abruzzo,Italy,Portable
2226003,IZ6FGP,Mario ,Mario,Ortona,Abruzzo,Italy,Mobile
@@ -6362,15 +6556,18 @@ 2226157,IZ6RYR,Francesco Cerini,Francesco,Ortona,Abruzzo,Italy,
2226158,IZ6SDO,Giovanni Fabbiocchi,Gianni,Teramo,cnty,Italy,
2226159,IU6FOW,Alessandro Angeli,IU6FOW,Montecalvo In Foglia,Marche,Italy,
-2226160,IZ6EJY,Marco ,,Scoppito,Abruzzo,Italy,
+2226160,IZ6EJY,Marco Di Vittorio,Marco,Scoppito,Abruzzo,Italy,
2226161,IK6GBO,Sante Di Prinzio,IK6GBO,Guardiagrele,cnty,Italy,
2226163,IK6TUV,Schioppa Emidio,IK6TUV,Teramo,Abruzzo,Italy,
2226164,IU6EPG,Leo Di Paolo,Iu6epg,Crecchio,cnty,Italy,
-2226165,IU6EAX,Marco ,,Pedaso,Marche,Italy,
-2226166,IU6DWP,Daniele ,,Potenza Picena,Marche,Italy,
-2226167,IU6HKA,Giovanni ,,Pescara,cnty,Italy,
-2226168,IU6DJR,Christian ,,Genga Stazione,Marche,Italy,
-2226169,IZ6YQD,Guido ,,LAquila,Abruzzo,Italy,
+2226165,IU6EAX,Marco Basili,IU6EAX,Pedaso,Marche,Italy,
+2226166,IU6DWP,Daniele Ponziani,IU6DWP,Potenza Picena,Marche,Italy,
+2226167,IU6HKA,Giovanni Mauro,Giovanni,Pescara,cnty,Italy,
+2226168,IU6DJR,Christian Marinelli,Christian,Genga Stazione,Marche,Italy,
+2226169,IZ6YQD,Guido Torelli,IZ6YQD,LAquila,Abruzzo,Italy,
+2226171,IZ6PAF,Marco Angelozzi,Iz6paf,San Giovanni Teatino,Abruzzo,Italy,
+2226172,IU6FOW,Alessandro Angeli,Alex,Montecalvo In Foglia,Marche,Italy,
+2226173,IU6FOP,GIOVANNI PAOLINELLI,GIOVANNI,FANO,Marche,Italy,
2227001,IZ7OIX,Domingo ,Domingo,Bari,Apulia,Italy,Portable
2227002,IZ7GLL,Massimo ,Massimo,Bari,Apulia,Italy,Mobile
2227003,IZ7ZFT,Silvio ,Silvio,Rutigliano,Apulia,Italy,Mobile
@@ -6494,6 +6691,7 @@ 2227121,IW7EHF,MICHELE COLAPRICE,MICHELE,Ruvo di puglia,Apulia,Italy,
2227122,IK7SEC,Alessandro Amedeo Bracciolini,Ik7sec,Triggiano - Bari,Apulia,Italy,
2227123,IW7DIG,Claudio Michele Liguori,Claudio Liguori,Neviano (LE),Apulia,Italy,
+2227124,IU7GHD,Pasquale Chiappinelli,Lino,Bari,Apulia,Italy,
2228001,IZ8IYJ,Nicola ,Nicola,Cosenza,Calabria,Italy,Portable
2228002,IW8XQP,Elio ,Elio,Isernia,Molise,Italy,Mobile
2228003,IZ8XSS,Federico ,Federico,Aversa,Campania,Italy,Mobile
@@ -6654,6 +6852,8 @@ 2228158,IW8BDB,Fabio Lobascio,Fabio,Napoli,Campania,Italy,
2228159,IZ8TBR,Stefano Paolacci,IZ8TBR,Recale,Campania,Italy,
2228160,IZ8BXM,Roberto Pareto,Roberto,Santagapito,cnty,Italy,
+2228162,IZ8WDZ,Giuseppe Conte,Peppe,S.nicola la strada (,cnty,Italy,
+2228163,IZ8MBT,Claudio ,,Massa Lubrense,Campania,Italy,
2229001,IT9YFO,Andrea ,Andrea,Catania,Sicily,Italy,Mobile
2229002,IT9ZON,Francesco ,Francesco,Catania,Sicily,Italy,Mobile
2229003,IT9UUT,Salvo ,Salvo,Ispica,Sicily,Italy,Portable
@@ -6742,9 +6942,11 @@ 2229086,IT9EIK,Agatino daniele Sacco,IT9EIK,Catania,Sicily,Italy,
2229087,IT9SAK,NUNZIO SAMBATARO,NUNZIO,BELPASSO,Sicily,Italy,
2229088,IT9HLC,Luigi Di chiara,Luigi,Palermo,Sicily,Italy,
+2229089,IW9CRG,Antonio agatino Russo,Antonio agatino,Catania,Sicily,Italy,
2229090,IT9GNC,Fabio Beffumo,IT9GNC,Catania,Sicily,Italy,
2229091,IW9HGZ,Giuseppe Raciti,Giuseppe,Catania,Sicily,Italy,
2229092,IT9GQB,Igor Giuffrida,Igor,San Gregorio di Cata,Sicily,Italy,
+2229093,IT9SWH,Alfredo ,,Catania,Sicily,Italy,
2261001,YO3GTS,Dan ,Dan,Bucharest,Bucharest,Romania,Mobile
2262001,YO2LOJ,Marius Petrescu,Marius,Timisoara,Judeul Timi,Romania,
2262002,YO2LIC,Vali Ungur,Vali,Timisoara,Judeul Timi,Romania,
@@ -6754,6 +6956,7 @@ 2262006,YO2LOR,Ciprian Florea,Ciprian,Timisoara,Timis,Romania,
2262007,YO2LLQ,Dan Stoian,Dan,Timisoara,Timis,Romania,
2262008,YO2MIZ,Alin Fitu,Alin,Timisoara,Timis,Romania,
+2262009,YO2LOR,Ciprian Florea,Ciprian,Timisoara,Timis,Romania,
2263000,YO3KSR,ASRR ,ASRR,Bucharest,Bucharest,Romania,Mobile
2263001,YO3GTS,Dan ,Dan,Bucharest,Bucharest,Romania,Mobile
2263002,YO3HJV,Adrian ,Adrian,Bucharest,Bucharest,Romania,Mobile
@@ -6818,6 +7021,7 @@ 2263061,YO3IXW,Bogdan Handrabura,Bogdan,Bucharest,Judeoul Ilfov,Romania,
2263062,YO3GON,Grososiu Vasile,Grososiu,Bucharest,Judeoul Ilfov,Romania,
2263063,YO3IUV,Cristian Varvas,Cristian,Bucuresti,Bucuresti,Romania,
+2263064,YO3DRK,Radu Oprisan,Radu,Bucuresti,cnty,Romania,
2264001,YO6FWI,Nagy Mihail,Nagy,Brasov,Judeul Braov,Romania,
2264002,YO4FRF,Constantin Benedic,Constantin,Constanta,Judeul Arad,Romania,
2264003,YO4WM,Gabriel Florin Mihaila,Gabi,Braila,Judeoul Timi,Romania,
@@ -6861,6 +7065,8 @@ 2266033,YO6OGW,Werner Haraszti,Werner,Targu-Mures,Mures,Romania,
2266034,YO6IGM,GLIGA OVIDIU,GLIGA,Brasov,Brasov,Romania,
2266035,YO6HSH,Attila Covacs,Otty,Sacele,Brasov,Romania,
+2266036,YO6FLW,Arcire Viorel,Arcire,Sf.Gheorghe,Judeul Covasna,Romania,
+2266037,YO6CFB,Laszlo Bako-Szabo,Lacy,Miercurea-Ciuc,Harghita,Romania,
2268001,YO8TEH,Isidor Stirbu,Isidor,Bacau,Bacu County,Romania,
2268002,YO8RCM,Teodor RADU,Teodor,ROMAN,Neamo County,Romania,
2268003,YO8TES,Eduard Tamas,Edy,Bacau,Judeoul Timi,Romania,
@@ -7013,6 +7219,8 @@ 2281126,HB9IIV,Beat Monnard,Boby,Porsel,Westschweiz-Sud,Switzerland,
2281127,HB9FPA,Juan Gomez,Juan G,Bouveret,Westschweiz-Sud,Switzerland,
2281128,HB9FWV,Pascal Porchet,Pascal,Villars-Sainte-Croix,Westschweiz-Sud,Switzerland,
+2281129,HB9FT,- -,FeederLine Team,Chotel-St-Denis,Westschweiz-Sud,Switzerland,
+2281130,HB9TON,Jean-Francois Varidel,Jean-Francois,Yvonand,Westschweiz-Sud,Switzerland,
2282001,HB9OOI,Stephan ,Stephan,Grenchen,Solothurn,Switzerland,Portable
2282002,HB9BEI,Bruno Knuchel,Bruno,Taeuffelen,Bern,Switzerland,Portable
2282003,HB9EZV,Michel Perrenoud,Michel,La Neuveville,Westschweiz-Nord,Switzerland,
@@ -7030,6 +7238,7 @@ 2282015,HB9EZV,Michel Perrenoud,Mike,La Neuveville,Westschweiz-Nord,Switzerland,
2282016,HB3YPD,Serdal Oeztuerk,Serdal,Pieterln,Westschweiz-Nord,Switzerland,
2282017,HB9FSL,Marius Lehenne,Kinet,Le locle,Westschweiz-Nord,Switzerland,
+2282018,HB9SMU,Boldt Pedro,Pierre,Fretereules,Westschweiz-Nord,Switzerland,
2283000,HB9DUU,Christian ,,Ringgenberg,Interlaken,Switzerland,Portable#1
2283001,HB9DUU,Christian ,Christian,Ringgenberg,Interlaken,Switzerland,Portable#2
2283002,HB9DUU,Christian ,Christian,Ringgenberg,Interlaken,Switzerland,Mobile
@@ -7140,6 +7349,8 @@ 2283107,HB9FIV,Markus Gasser,Markus,Hettiswil,Bern und Oberwallis,Switzerland,
2283108,HB9UVW,Daniel Schuler,Daniel,Zermatt,Bern und Oberwallis,Switzerland,
2283109,HB9DIA,Rudolf Wyss,Rudolf,Thun,Bern und Oberwallis,Switzerland,
+2283110,HB9EKB,Jonathan Kobel,Jonathan,Rubigen,Bern und Oberwallis,Switzerland,
+2283111,HB9JAM,Swiss JOTA,HB9JAM,Bern,Bern und Oberwallis,Switzerland,
2283200,HB9F, ,,Bern,Bern und Umgebung,Switzerland,Club
2284001,HB9EMQ,Andy ,Andy,Oberbuchsitten,Olten,Switzerland,Portable #1
2284002,HB9EMQ,Andy ,Andy,Oberbuchsitten,Olten,Switzerland,Mobile #1
@@ -7254,6 +7465,9 @@ 2284111,HB3YZK,Fabian Biagini,Fabian,Langendorf,Basel/Solothurn,Switzerland,
2284112,HB9FZO,Christoph Ratavaara,Chrach,Liestal,Basel/Solothurn,Switzerland,
2284113,HB9COP,Fritz Spycher,Fritz,Rothrist,Basel/Solothurn,Switzerland,
+2284114,HB9NFB,Tom Braendle,Clubstation NFB,Reinach,Basel/Solothurn,Switzerland,
+2284115,HB9FRQ,German Geisslinger,German,Moehlin,Basel/Solothurn,Switzerland,
+2284116,HB9DLF,Sergio Quirici,Sergio,Oftringen,Basel/Solothurn,Switzerland,
2285001,HB9CNT,Paul ,Paul,Untersiggenthal,Baden,Switzerland,Portable#1
2285002,HB9CNT,Paul ,Paul,Untersiggenthal,Baden,Switzerland,Portable#2
2285003,HB9CNT,Paul ,Paul,Untersiggenthal,Baden,Switzerland,Mobil
@@ -7420,6 +7634,8 @@ 2286129,HB9GHU,Francesca Meli,Francesca,Castel San Pietro,Zentralschweiz und T,Switzerland,
2286130,HB3YRZ,Renzo Merelli,Renzo,Prosito,Zentralschweiz und T,Switzerland,
2286131,HB9FKL,Claudia Fava,Claudia,Lugano,Zentralschweiz und T,Switzerland,
+2286132,HB9ODI,Rolf Gasser,Rolf,Riva San Vitale / Ti,Zentralschweiz und T,Switzerland,
+2286133,HB9ODK,Manuel Donati,Melindo,Pianezzo,Zentralschweiz und T,Switzerland,
2287001,HB9FPO,Stefano ,Stefano,Poschiavo,Graubuenden,Switzerland,
2287002,HB9HAN,Roland Peter,Roland,Sargans,Graubuenden,Switzerland,
2287003,HB9FPO,Stefano Foppoli,Stefano,Poschiavo,Graubuenden,Switzerland,
@@ -7440,6 +7656,7 @@ 2287018,HB9ADC,Jack Polinelli,Jack,Felsberg,Graubuenden,Switzerland,
2287019,HB9HAT,Mario Pasini,Mario,St. Moritz,Graubuenden,Switzerland,
2287020,HB9MAD,Fabio Rossi,Fabio,San Bernardino,Zentralschweiz und T,Switzerland,
+2287021,HB9TVL,Ralph Potztal,Ralph,Bad Ragaz,Graubuenden,Switzerland,
2288001,HB3YEJ,Andreas ,Andreas,Schleitheim,Schaffhausen,Switzerland,Portable#1
2288002,HB9WOF,Reto ,Reto,Winterthur,Winterthur,Switzerland,Portable#1
2288003,HB9WOF,Reto ,Reto,Winterthur,Winterthur,Switzerland,Mobile#1
@@ -7596,6 +7813,9 @@ 2288154,HB9CAC,Konrad Bruetsch,Konrad,Thayngen,Zuerich und Thurgau,Switzerland,
2288155,HB9DUF,Christoph Baer,Christoph,Bachenbuelach,Zuerich und Thurgau,Switzerland,
2288156,HB9DNI,Stefano Pranzo,Stefano,Langnau am Albis,Zuerich und Thurgau,Switzerland,
+2288157,HB3YDP,Mike Patthey,Mike,Oberglatt,Zuerich und Thurgau,Switzerland,
+2288158,HB9LDA,Hansjoerg Bachmann,Hansjoerg,Bauma,Zuerich und Thurgau,Switzerland,
+2288159,HB9JNH,Markus Zimmermann,Markus,Aadorf,Zuerich und Thurgau,Switzerland,
2288542,HB9ANF,Hans-Joerg Spring,Hans-Joerg,Wiesendangen,Zuerich und Thurgau,Switzerland,
2288822,HB9SDB,Rolf Tschumi,Rolf,Waedenswil,Zuerich und Thurgau,Switzerland,
2288867,HB9BXQ,Renato Schlittler,Renato,Zuerich,Zuerich und Thurgau,Switzerland,
@@ -7689,6 +7909,7 @@ 2301058,OK3MD,David Miklas,David,Prague,cnty,Czech Republic,
2301059,OK1JPQ,Tomas Privratsky,Tomas,Praha 4,cnty,Czech Republic,
2301060,OK1DBE,Daniel Cermak,Dan,Hostivice,cnty,Czech Republic,
+2301061,OK1OO,Pavel Zelezo,Pavel,Sestajovice,Stredocesky,Czech Republic,
2302001,OK8APJ,Torsten Schlegel,Torsten,Marianske Lazne,Karlovy Vary Region,Czech Republic,
2302002,OK1BLG,Peter Krissak,Peter,Rokycany,Plze Region,Czech Republic,
2302003,OK1VHB,Martin Cerny,Martin,Psek,Jihocesky,Czech Republic,
@@ -7812,7 +8033,7 @@ 2312005,OM1ACL,Robert Kucera,Robert,Sekule,Trnava Region,Slovakia,
2312006,OM4ABC,Martin Kurpel,Martin,Trencin,Trenciansky,Slovakia,
2312007,OM4AVB,Jozef Kulich,Jossi,Trencin,Trenciansky,Slovakia,
-2312008,OM4AMZ,Marcel ,Marcel,Motesice,Trenciansky,Slovakia,
+2312008,OM4AMZ,Marcel Zeravik,Marcel,Motesice,Trenciansky,Slovakia,
2313001,OM6AXE,Jan Majoros,Jan,Zilina,ilina Region,Slovakia,
2313002,OM6ADQ,Erik Nagy,Erik,Zilina,ilina Region,Slovakia,
2313003,OM7TW,Dusan Buda,Dusan,Banska Bystrica,Banskobystricky,Slovakia,
@@ -7839,6 +8060,7 @@ 2314015,OM0RW,Eduard Bovan,Ed,Snina,Presovsky,Slovakia,
2314016,OM8AFR,Frantisek Rechka,Frankie,Kosice,Kosicky,Slovakia,
2314017,OM8FT,Jaroslav Stehlik,Stehlo,Medzev,Kosicky,Slovakia,
+2314018,OM8AGG,Gustav Gergely,Gusto,Koiice,Kosicky,Slovakia,
2320001,DG1HT,Torsten ,,Hamburg,,Germany,
2320010,OE1XAR,Datengateway ,Datengateway,Wien,Wien,Austria,Mobile
2321001,OE1KBC,Kurt ,Kurt,Wien,Wien,Austria,Portable#1
@@ -8079,6 +8301,8 @@ 2323092,OE3MTB,Manuel Strobl,Manue,St. Poelten,Niederoesterreich,Oesterreich/Austria,
2323093,OE3RNA,Rene Nykodem,Rene,Gaming,Niederoesterreich,Oesterreich/Austria,
2323094,OE3JJS,Josef Jahn,Josef,Boeheimkirchen,Niederoesterreich,Oesterreich/Austria,
+2323095,OE3LOA,Andreas Loetsch,Andreas,Berndorf,Niederoesterreich,Oesterreich/Austria,
+2323096,OE3MBU,Marcus Bednar,Marcus,Langenzersdorf,Niederoesterreich,Oesterreich/Austria,
2323101,OE3GRU,Gerhard ,Gerhard,Guenselsdorf,Niederoesterreich,Austria,Portable
2323102,OE3BOB,Robert ,Robert,Baden,Niederoesterreich,Austria,Portable
2323103,OE3EHS,Ernst ,Ernst,Enzesfeld,Niederoesterreich,Austria,Portable
@@ -8271,6 +8495,7 @@ 2326040,OE6WWG,Siegfried Werlitsch,Siegi,Graz,Steiermark,Oesterreich/Austria,
2326041,OE6EMF,Thomas ,Thomas,Hartberg,Steiermark,Austria,Portable
2326042,OE6KSE,Kurt Schubert,Kurt,Kalsdorf bei Graz,Steiermark,Oesterreich/Austria,
+2326043,OE6MGG,Gerald Meister,Gerald,Graz,Steiermark,Oesterreich/Austria,
2326051,OE6DJG,Dieter ,Dieter,Kainbach,Steiermark,Austria,Portable#1
2326052,OE6DJG,Dieter ,Dieter,Kainbach,Steiermark,Austria,Mobile
2326053,OE6WTF,Christian ,Christian,Birkfeld,Steiermark,Austria,Portable
@@ -8401,6 +8626,8 @@ 2327090,OE7GPI,Gerhard Petzl,Gerry,Innsbruck,Tirol,Oesterreich/Austria,
2327091,OE7DHT,Hermann Daum,Hermann,Fuegen,Tirol,Oesterreich/Austria,
2327092,OE7EAJ,Reinhart Walter,Reini,Schwaz,Tirol,Oesterreich/Austria,
+2327093,OE7XTR,Michael Koller,Michael,Landeck,Tirol,Oesterreich/Austria,
+2327094,OE7LMT,Hans Stoeckl,Hans,Hippach,Tirol,Oesterreich/Austria,
2327101,OE7ANH,Alois ,Alois,Wiesing,Tirol,Austria,Portable
2327102,OE7ANH,Alois ,Alois,Wiesing,Tirol,Austria,Mobile
2327141,OE7ERJ,Erwin ,Erwin,Zams,Tirol,Austria,Portable
@@ -8531,8 +8758,6 @@ 2329055,OE9VMR,Markus Riedesser,Markus,Bregenz,Vorarlberg,Oesterreich/Austria,
2329056,OE9DEV,Dominique Eberle,Dominique,Lauterach,Vorarlberg,Oesterreich/Austria,
2329057,OE9TNT,Wilfried Mollina,OE9TNT,Bregenz,Vorarlberg,Oesterreich/Austria,
-2340001,G0RDI,Iain Philipps,Iain,Pointon,,,
-2340002,G8SJP,Iain ,Iain,Aylesbury,,United Kingdom,
2341001,M0ADI,Iain Philipps,Iain,Bourne,England,United Kingdom,
2341002,G4NEY,Jonathan Jarvis,Jonathan,Cambridge,England,United Kingdom,
2341003,M6NAE,NEIL RYDINGS,NEIL,Manchester,England,United Kingdom,
@@ -9626,7 +9851,7 @@ 2342091,M6WJD,William Sparrow,Jim,Lincoln,England,United Kingdom,
2342092,G1BIA,Harold Wilmshurst,Harold,Darlington,England,United Kingdom,
2342093,M3KKI,Rod Young,Rodrossuk,Rossendale,England,United Kingdom,
-2342094,M6RPV,Rob Connolly,Rob,Coventry,England,United Kingdom,
+2342094,2E0TSP,Rob Connolly,Rob,Coventry,England,United Kingdom,
2342095,M3BJR,Brian Reynolds,Brian,Higham Ferrers,England,United Kingdom,
2342096,M0NOC,Paul Bolton,M0NOC,Ipswich,England,United Kingdom,
2342097,G8KHF,John Dove,Engineer,Daventry,England,United Kingdom,
@@ -10025,14 +10250,17 @@ 2342491,MB6INW,Frank Taylor,Frank,North Wingfield,England,United Kingdom,
2342492,M0WBK,Wayne Knapp,Wayne,Shoeburyness,England,United Kingdom,
2342493,M0HZQ,Grzegorz Maciejewski,Greg,London,England,United Kingdom,
+2342494,2E0DQD,Paul ,,Dewsbury,England,United Kingdom,
2342495,2E0ELW,Elwyn York,Elwyn,Coventry,England,United Kingdom,
2342496,G6MNB,Mark Bulmer,G6MNB,Hale, Cheshire,England,United Kingdom,
2342497,G0RNB,Neil Brooks,Wappy,Sheffield,England,United Kingdom,
+2342498,G7HID,Mike ,,Slough,England,United Kingdom,
2342499,M6RNZ,Richard Baldwin,Ghostwarrior,Essex,England,United Kingdom,
2342500,G6BRH,Melvin Kendall,BADARS,Braintree,England,United Kingdom,
2342501,M6HGR,Steven Yardley,Stizz,Manchester,England,United Kingdom,
2342502,G7CKX,Martin Steele,MartinS,Stoke On Trent,England,United Kingdom,
2342503,M3GFO,NIGEL FOX,NIDGE,DONCASTER,England,United Kingdom,
+2342504,2E0XVX,Mick ,,Market Harborough,England,United Kingdom,
2342505,MB6PF,Paul Foster Foster,Paul Foster,Liverpool,England,United Kingdom,
2342506,G0HPZ,Frank Derbyshire,Biker,Oldham,England,United Kingdom,
2342507,G7DNT,Keith Handscombe,Keith,Ipswich,England,United Kingdom,
@@ -10050,7 +10278,7 @@ 2342519,M0RYN,Ryan Ogden,Ry,Manchester,England,United Kingdom,
2342520,G1FRM,Robert Doughty,Bob,Wisbech,England,United Kingdom,
2342521,G0IAG,Anthony King,Tony,Peterborough,England,United Kingdom,
-2342522,M6BYS,Adrian ,,South Normanton,England,United Kingdom,
+2342522,M6BYS,Adrian Marriott,Adi,South Normanton,England,United Kingdom,
2342523,G8CRZ,Paul Hunt,Paul,Bournemouth,England,United Kingdom,
2342524,G7ORT,Derek Buckley,Starman,Birmingham,England,United Kingdom,
2342525,M6USL,Joe Dossantos,Joe90,Bolton,England,United Kingdom,
@@ -10064,10 +10292,10 @@ 2342533,2E0JPM,James Monahan,James,Reading,England,United Kingdom,
2342534,G1FNS,Brian Cutts,Brianc,Sandhurst,England,United Kingdom,
2342535,M6RHJ,Jason Anderson,Jason,Hartlepool,England,United Kingdom,
-2342536,G7IXO,Paul ,,Shirebrook,England,United Kingdom,
+2342536,G7IXO,Paul Stephenson,Chris,Shirebrook,England,United Kingdom,
2342537,G7TCW,Christopher Haslewood,Chrish,Cannock,England,United Kingdom,
2342538,G1CVR,David Paine,G1cvr,Burnley,England,United Kingdom,
-2342539,2E0KGX,Jon ,,Worthing,England,United Kingdom,
+2342539,2E0KGX,Jon Gibbs,Jon,Worthing,England,United Kingdom,
2342540,M6AWT,Christian Markland,Chris,Manchester,England,United Kingdom,
2342541,G6EUY,William Shadwell,Radioman,Peterborough,England,United Kingdom,
2342542,G4GQL,Alan Schiffman,Alan,London,England,United Kingdom,
@@ -10075,8 +10303,10 @@ 2342544,M0MLY,John Malley,M0MLY,Seaton Delaval,England,United Kingdom,
2342545,G8MFI,Stephen McGuigan,Steve,Maidstone,England,United Kingdom,
2342546,M6VMR,Martin Roberts,Jab,Brighton,England,United Kingdom,
+2342547,M0KYW,Manuel Ferreira,MF,Leicester,England,United Kingdom,
2342548,2E0SIB,Darren Sibley,Darren,Leighton Buzzard,England,United Kingdom,
2342549,2E0DZT,John Emery,John,Combe St Nicholas,England,United Kingdom,
+2342550,M5DZH,Jonathan Lynch,Jon,Manchester,England,United Kingdom,
2342551,M6HPJ,Jason Dodds,Jay,Uttoxeter,England,United Kingdom,
2342552,M6KTP,Tony Purnell,Tiny,Deepcar,England,United Kingdom,
2342553,G0STF,Tom Clements,Tom,Liverpool,England,United Kingdom,
@@ -10086,6 +10316,7 @@ 2342557,M0MRI,Andrew Titmus,M0MRI,Worthing,England,United Kingdom,
2342558,2E0FCC,Dave Stockton,Dave,Cheshire,England,United Kingdom,
2342559,G0CDB,John May,John,PAIGNTON,England,United Kingdom,
+2342560,G4BIP,Brian Hardy,Brian,Hemel Hempstead,England,United Kingdom,
2342561,M6KEY,Dean Hughes,M6KEY,Staffordshire,England,United Kingdom,
2342562,M6LFP,PETER KOZLOWSKI,Radioman75,Grimsby,England,United Kingdom,
2342563,G0WLG,PAUL BLIZZARD,PAUL,MALVERN,England,United Kingdom,
@@ -10098,17 +10329,23 @@ 2342570,M6UKW,Jerry Waldo k,Jerry,Cambridge,England,United Kingdom,
2342571,M0ECB,KEN GAUL,KEN,CHESTER,England,United Kingdom,
2342572,M3JUX,Clifford Quilter,Clifford,London,England,United Kingdom,
+2342573,G0VHT,Paul Morrison,Paul,Windsor,England,United Kingdom,
2342574,G4HLF,Paul Westwell,G4HLF,Bracknell,England,United Kingdom,
+2342575,2E0TSP,Rob ,,Coventry,England,United Kingdom,
+2342576,G0TNC,George ,,Sittingbourne,England,United Kingdom,
2342577,G7BRV,Mark Hackett,Mark,Bognor Regis,England,United Kingdom,
2342578,M1BWN,STEVE JARRETT,STEVE,CHELMSFORD,England,United Kingdom,
2342579,2E1MPC,Michael Clewes,Michael,Stoke on trent,England,United Kingdom,
2342580,M0OYG,Brian Nuttall,Brian,Blackpool,England,United Kingdom,
2342581,G4BUD,Barry Underwood,Baz,Warwick,England,United Kingdom,
+2342582,2E0ONV,John ,John,Minehead,England,United Kingdom,
2342583,M3EEY,Chris Hall,Chris,Leeds,England,United Kingdom,
2342584,G0IBD,Dave Ball,Dave,Dudley,England,United Kingdom,
2342585,2E0ZPM,Christopher Williams,Christopher,Southam,England,United Kingdom,
2342586,G6AIO,Philip Hillier,Phil,Norwich,England,United Kingdom,
2342587,G0MDV,Mark Bellas,Mark,Penrith,England,United Kingdom,
+2342588,G1FGB,Colin ,,Wokingham,England,United Kingdom,
+2342589,G7VRI,Jon ,,Glossop,England,United Kingdom,
2342590,G2DGB,George Short,George,Dorchester,England,United Kingdom,
2342591,M6TRW,Tom Wheatley,Tractor tom,Nottinghamshire,England,United Kingdom,
2342592,2E0PDP,JOHN ,,COVENTRY,England,United Kingdom,
@@ -10136,29 +10373,69 @@ 2342618,G6BD,Martin Farmer,Martin,Lincoln,England,United Kingdom,
2342619,G1WVS,Peter Gibson,Gibby,Daventry,England,United Kingdom,
2342621,M5ZAP,Andrew Morgan,Andy,Coventry,England,United Kingdom,
-2342622,G7FSC,Keith John ,,Nuneaton,England,United Kingdom,
-2342624,G1ONV,Robert ,,Minehead,England,United Kingdom,
-2342625,M0EBX,Matt ,,Haslemere,England,United Kingdom,
-2342626,G6VOV,Richard ,,North Walsham,England,United Kingdom,
-2342629,G4HZN,Terence ,,Doncaster,England,United Kingdom,
-2342632,M0GWI,Stephen ,,St Leonards on Sea,England,United Kingdom,
-2342633,2E1PAW,Paul ,,Essex,England,United Kingdom,
-2342634,2E1WEB,Christopher ,,Cambridge,England,United Kingdom,
-2342635,M0ZZM,Raul ,,London,England,United Kingdom,
-2342636,2E1GQX,Andrew ,,Chippenham,England,United Kingdom,
-2342637,M0LJP,Lawrence ,,Birmingham,England,United Kingdom,
-2342638,G0BEQ,Andrew ,,South Cerney,England,United Kingdom,
-2342639,M0MTD,TONY ,,ROTHERHAM,England,United Kingdom,
-2342640,M6NOV,Tom ,,Blackpool,England,United Kingdom,
-2342641,M6HVM,Paul ,,Ollerton,England,United Kingdom,
-2342642,M6FWV,Roger ,,Hayle,England,United Kingdom,
-2342643,2E0AAI,David ,,Cofton Hackett,England,United Kingdom,
-2342644,2E0RRC,Richard ,,Coventry,England,United Kingdom,
-2342646,M3ZND,Steven ,,Manchester,England,United Kingdom,
-2342647,2E0KMK,Keith ,,Nottingham,England,United Kingdom,
-2342648,G6SPC,Mark ,,Cambridge,England,United Kingdom,
-2342649,M0BOX,Simone ,,Cambridge,England,United Kingdom,
-2342650,G0DUU,Christopher ,,Bristol,England,United Kingdom,
+2342622,G7FSC,Keith John Davis,Keith John,Nuneaton,England,United Kingdom,
+2342624,G1ONV,Robert Bonar,Bob,Minehead,England,United Kingdom,
+2342625,M0EBX,Matt Tween,Matt,Haslemere,England,United Kingdom,
+2342626,G6VOV,Richard Leavold,Richard,North Walsham,England,United Kingdom,
+2342629,G4HZN,Terence Lockwood,Terry,Doncaster,England,United Kingdom,
+2342632,M0GWI,Stephen Hill,Stephen,St Leonards on Sea,England,United Kingdom,
+2342633,2E1PAW,Paul Woodward,Woody,Essex,England,United Kingdom,
+2342634,2E1WEB,Christopher WEBB,Christopher,Cambridge,England,United Kingdom,
+2342635,M0ZZM,Raul Di Calisto,M0ZZM,London,England,United Kingdom,
+2342636,2E1GQX,Andrew Henly,Andy,Chippenham,England,United Kingdom,
+2342637,M0LJP,Lawrence Phillips,Jem,Birmingham,England,United Kingdom,
+2342638,G0BEQ,Andrew Taylor,Andy,South Cerney,England,United Kingdom,
+2342639,M0MTD,TONY DAVIDSON,M0MTD,ROTHERHAM,England,United Kingdom,
+2342640,M6NOV,Tom McGowan,TM1,Blackpool,England,United Kingdom,
+2342641,M6HVM,Paul Ashton,Paul,Ollerton,England,United Kingdom,
+2342642,M6FWV,Roger Sage,Kernow rog,Hayle,England,United Kingdom,
+2342643,2E0AAI,David Simmons,Blakey37,Cofton Hackett,England,United Kingdom,
+2342644,2E0RRC,Richard Wilson,Dave Wilson,Coventry,England,United Kingdom,
+2342646,M3ZND,Steven Hunter,Hunter0161,Manchester,England,United Kingdom,
+2342647,2E0KMK,Keith Key,Keith,Nottingham,England,United Kingdom,
+2342648,G6SPC,Mark Challis,Landy,Cambridge,England,United Kingdom,
+2342649,M0BOX,Simone Wilson,BOX,Cambridge,England,United Kingdom,
+2342650,G0DUU,Christopher Banks,Christopher,Bristol,England,United Kingdom,
+2342653,G6LGR,Alan Picot,Alanp,Orpington,England,United Kingdom,
+2342654,M1TLK,Robert Sanderson,Andy,Milton Keynes,England,United Kingdom,
+2342656,G1KHH,Harry Mosley,Harry,Nottingham,England,United Kingdom,
+2342657,G6PRL,DENNIS BROWN,HOVIS,CAMBRIDGESHIRE,England,United Kingdom,
+2342658,M6LYY,Andy Allgood,Andy,Chatteris,England,United Kingdom,
+2342659,M6GTD,Dave Garratt,M6GTD,Walsall,England,United Kingdom,
+2342660,G0EQE,David Cunningham,Dave,Wirral,England,United Kingdom,
+2342661,M6XTM,TRISTAN TRISTAN,TRISTAN,BATH,England,United Kingdom,
+2342662,M0CNL,Paul Glover,M0CNL,Clacton on sea,England,United Kingdom,
+2342663,M6WYX,Neil Soane,Neil S,Burgess Hill,England,United Kingdom,
+2342664,G4EHN,Julian Axe,Julian,London,England,United Kingdom,
+2342665,M6NBP,Norman ,,Brighton,England,United Kingdom,
+2342666,G7DSU,Chris Tong,Chris,ROCHESTER,England,United Kingdom,
+2342667,G0USL,Mark Orchard,BlueGoblin,Cheltenham,England,United Kingdom,
+2342669,G8JGU,Raymond Hallam,Ray,Wigan,England,United Kingdom,
+2342670,G0PJO,Martin Waller,Martin,Ipswich,England,United Kingdom,
+2342671,M6GTE,Graham Tomkns,Tommo,Orpington,England,United Kingdom,
+2342672,M6CRE,Cyril Etches,Cyril,Boston,England,United Kingdom,
+2342674,M6LMT,Gary Wilson,Gary,London,England,United Kingdom,
+2342675,G7EQM,Nick Buckley,Nick,Banbury,England,United Kingdom,
+2342676,M1AJB,Alex Bloor,Alex,Westerham,England,United Kingdom,
+2342677,G0AJJ,Linda Leavold,Linda,North Walsham,England,United Kingdom,
+2342678,M6GRH,GRAHAM HOOPER,GRAHAM,ORPINGTON,England,United Kingdom,
+2342679,G4CMT,Raywell Park Scouts C/o Andy G0VRM,Raywell Park Scouts,North Newbald,England,United Kingdom,
+2342680,M0TRY,Robert Barnes,Rob,Derby,England,United Kingdom,
+2342681,M0DYA,Oliver Haselden,Ollie,Southampton,England,United Kingdom,
+2342682,G7MEX,James Saiger,James,Doncaster,England,United Kingdom,
+2342683,G7WBE,Denis Welch,Denis,Yeovil,England,United Kingdom,
+2342684,M0XXJ,Jonathan Creaser,Jcreaser,HOUNSLOW,England,United Kingdom,
+2342685,M6GPM,Gary Mayell,Six Inch Legs,Grays,England,United Kingdom,
+2342686,M1CGI,Andrew Fishwick,Andrew,Heapey/Chorley,England,United Kingdom,
+2342687,M3HQG,Richard Coates,RichC,Birmingham,England,United Kingdom,
+2342688,2E1EXP,Catherine Staerck,Cath,Worksop,England,United Kingdom,
+2342689,G7THI,Frank Gillespie,Frank,Appleby,England,United Kingdom,
+2342690,G7RZU,Simon ,,Worthing,England,United Kingdom,
+2342691,2E0VTT,John ,,Bristol,England,United Kingdom,
+2342692,G6IBQ,Stephen ,,Lincoln,England,United Kingdom,
+2342693,G4FCN,Colin ,,Ipplepen,England,United Kingdom,
+2342696,G4KXG,Ken ,,Kettering,England,United Kingdom,
+2342697,G0CBM,Charles ,,Sutton on Sea,England,United Kingdom,
2351001,G0PRF,John ,John,Huddersfield,West Yorkshire,United Kingdom,Portable
2351002,G0PRF,John Goodwin ,,Huddersfield,West Yorkshire,United Kingdom,Mobile
2351003,G7LWT,Darren ,Darren,Manchester,North West England,United Kingdom,Portable #1
@@ -11734,7 +12011,7 @@ 2352574,G6HMF,Roger Venison,Roger,Bedford,England,United Kingdom,
2352575,M6OAS,Les Rowlands,Les,Clevedon,England,United Kingdom,
2352576,M0KJA,Keith Anderson,Keith,Maidstone,England,United Kingdom,
-2352577,G0GGU,Steven Anstey,Steven,Northampton,England,United Kingdom,
+2352577,G0GGU,Steve Anstey,Steve,Northampton,,United Kingdom,
2352578,G3ZXZ,Martin Stokes,Martin,Mirfield,England,United Kingdom,
2352579,M6RNI,Robert Hillier,Robert,Folkestone,England,United Kingdom,
2352580,G6LUU,Alan Marshall,Alan,Berkhamsted,England,United Kingdom,
@@ -12009,7 +12286,7 @@ 2352849,M0HPP,Gerard Fleming,Gerard,Leeds,England,United Kingdom,
2352850,G0FEA,Keith Hotchkiss,Keith,Mendlesham,England,United Kingdom,
2352851,G7VHJ,Pete Gow,Pete,Gloucester,England,United Kingdom,
-2352852,2E0FEI,Bill Darvill,William,Northampton,,United Kingdom,
+2352852,2E0FEI,Bill Darvill,Bill,Northampton,,United Kingdom,
2352853,G6MJQ,Adrian Peake,Adrian,Leicester,England,United Kingdom,
2352854,M0XBE,Carl Leake,Carl,Taverham,England,United Kingdom,
2352855,G4HFG,Graham Eckersall,Graham,Oldham,England,United Kingdom,
@@ -12386,10 +12663,13 @@ 2353231,MW0VTK,John Martin,John,Tal Y Bont,Wales,United Kingdom,
2353232,MW6XGD,Gareth Jukes,Gary,Cardiff,Wales,United Kingdom,
2353233,2W1EPO,Francis Hodge,Stuttera,Rhyl,denbighshire,Wales,United Kingdom,
-2353235,2W0PJM,Philip ,,Ruthin,Wales,United Kingdom,
-2353236,GW7SSN,Nigel ,,Cwmbran,Wales,United Kingdom,
-2353238,MW0DSV,Roland ,,PEmbroke,Wales,United Kingdom,
-2353239,GW0PYN,Charles ,Charles,Rhyl denbighshire,Wales,United Kingdom,
+2353235,2W0PJM,Philip Mclaren,Phil,Ruthin,Wales,United Kingdom,
+2353236,GW7SSN,Nigel Cole,Nigel,Cwmbran,Wales,United Kingdom,
+2353238,MW0DSV,Roland Price,Roland,PEmbroke,Wales,United Kingdom,
+2353239,GW0PYN,Charles Rogers,Charles,Rhyl denbighshire,Wales,United Kingdom,
+2353240,MW0KEQ,KEVIN MOGFORD,MOGGY,Newport,Wales,United Kingdom,
+2353241,MB6BA,Dave Thomas,Dave Thomas,Barry,Wales,United Kingdom,
+2353243,MW0GUK,George ,,Abergavenny,Wales,United Kingdom,
2354001,MM0MBK,Mark ,Mark,Cairneyhill,Scotland,United Kingdom,Base
2354002,MM0MBK,Mark ,Mark,Cairneyhill,Scotland,United Kingdom,Mobile
2354003,MM0MBK,Mark ,Mark,Cairneyhill,Scotland,United Kingdom,Portable
@@ -12584,9 +12864,9 @@ 2354195,GM8DKB,Eric Taynton,Eric,Edinburgh,Scotland,United Kingdom,
2354196,2M0KNY,Kenny Macrae,Kenny,Glasgow,Scotland,United Kingdom,
2354197,MM6BYJ,Marcin Stypka,Marcin,EDINBURGH,Scotland,United Kingdom,
-2354198,MM0CXA,Andy ,,Forfar,Scotland,United Kingdom,
-2354199,MM6IPO,Paddy ,,Glasgow,Scotland,United Kingdom,
-2354200,MM6CHM,Robert ,,Glasgow,Scotland,United Kingdom,
+2354198,MM0CXA,Andy Burns,Andy,Forfar,Scotland,United Kingdom,
+2354199,MM6IPO,Paddy OHara,Paddy,Glasgow,Scotland,United Kingdom,
+2354200,MM6CHM,Robert Russell,Cyrus,Glasgow,Scotland,United Kingdom,
2355001,MI3WWF,Mark ,Mark,Bangor,Northern Ireland,United Kingdom,
2355002,GI8VKA,Roy Coulter,Roy,Ballynure,Northern Ireland,United Kingdom,
2355003,MI0AAZ,John Anderson,John,Kilrea, Coleraine,Northern Ireland,United Kingdom,
@@ -12840,7 +13120,8 @@ 2355251,MI6XBA,Thomas Agnew,Hugh,Larne,Northern Ireland,United Kingdom,
2355252,2I0SJV,Dave Parkinson,Big Dave,Moira,Northern Ireland,United Kingdom,
2355253,MI6HQS,William Mckenna,William,Larne,Northern Ireland,United Kingdom,
-2355254,GI4SZW,Michael James ,,Newry,Northern Ireland,United Kingdom,
+2355254,GI4SZW,Michael James Keenan,Seamus GI4SZW,Newry,Northern Ireland,United Kingdom,
+2355256,GI0UTV,Ian Ross,Ian,Belfast,Northern Ireland,United Kingdom,
2356001,GD6XHG,Ed ,Ed,Douglas,Isle of Man,United Kingdom,Portable#1
2356002,GD6XHG,Ed ,Ed,Douglas,Isle of Man,United Kingdom,Portable#2
2356003,GD0NFN,John Butler,John,Isle of Man,Isle of Man,United Kingdom,
@@ -12950,7 +13231,7 @@ 2381074,OZ3TL,Torben Larsen,Torben,Hobro,Nordjylland,Denmark,
2381075,OZ3DVM,Ole Andersen,Ole,Aalborg st,Nordjylland,Denmark,
2381076,OZ1FSI,Jens Groenfeldt,Greenbean,Frederikshavn,Nordjylland,Denmark,
-2381077,OZ5PZ,Poul ,,Nibe,Nordjylland,Denmark,
+2381077,OZ5PZ,Poul Rosenbeck,Poul,Nibe,Nordjylland,Denmark,
2382001,OZ6C,Kim ,Kim,Silkeborg,Midtjylland,Denmark,
2382002,OZ1JN,Jesper ,Jesper,Aarhus,Midtjylland,Denmark,
2382003,OZ3HP,Hardy ,Hardy,Aarhus,Midtjylland,Denmark,
@@ -13048,8 +13329,10 @@ 2382095,OZ1TSR,Thomas Rasmussen,OZ1TSR - Thomas,Brdstrup,Midtjylland,Denmark,
2382096,OZ7PBI,Peter Bregenov,Peter,Horsens,Midtjylland,Denmark,
2382097,OZ6GA,Soeren Loekkegaard,Soeren,Struer,Midtjylland,Denmark,
+2382098,OZ3PN,Peter Nielsen,Oz3pn peter,Silkeborg,Midtjylland,Denmark,
2382099,OZ1FOJ,Hans Jensen,Hans,Holstebro,Midtjylland,Denmark,
-2382100,OZ3KTE,Kim ,,Silkeborg,Midtjylland,Denmark,
+2382100,OZ3KTE,Kim Espersen,Kim silkeborg,Silkeborg,Midtjylland,Denmark,
+2382101,OZ3FTE,Finn Espersen,Oz3fte finn,Silkeborg,Midtjylland,Denmark,
2383001,OZ1BM,Brian ,Brian,Odense,Syddanmark,Denmark,Portable
2383002,OZ1KFY,Christian ,Christian,Fredericia,Syddanmark,Denmark,
2383003,OZ3DM,Dennis ,Dennis,Haarby,Syddanmark,Denmark,
@@ -13088,7 +13371,7 @@ 2383036,OZ3K,Erik Poulsen,Erik,Snder Stenderup,Syddanmark,Denmark,
2383037,OZ1IOM,Allan Thorsen,Allan,Blaavand,Syddanmark,Denmark,
2383038,OZ9DG,Dan Gregersen,Dan,Fredericia,Syddanmark,Denmark,
-2383039,OZ6HQ,Per Posselt,Per,Middelfart,Syddanmark,Denmark,
+2383039,OZ6HQ,Per Rosselt,Per,Middelfart,Syddanmark,Denmark,
2383040,OZ1MSJ,Mark Jaegum,Mark,Odense,Syddanmark,Denmark,
2383041,OZ1KAA,Ivan Kjaer,Ivan,Odense N,Syddanmark,Denmark,
2383042,OZ1HGV,Michael Bigum,Michael,Esbjerg,Syddanmark,Denmark,
@@ -13198,6 +13481,7 @@ 2383146,OZ1LXW,Benny Kronborg,OZ1LXW,Kvrndrup,Syddanmark,Denmark,
2383147,OZ1MIC,Michael ,,Frederiksberg,Hovedstaden,Denmark,
2383148,OZ4TE,Frank Tom Henriksen,Frank,Bogense,Syddanmark,Denmark,
+2383149,OZ8OL,Ove Lundvald,Ove,Tommerup St.,Syddanmark,Denmark,
2384001,OZ3MAJ,Martin ,Martin,Herlev,Hovestaden,Denmark,Portable
2384002,OZ3MAJ,Martin ,Martin,Herlev,Hovestaden,Denmark,Mobile
2384003,OZ1BZJ,Michael ,Michael,Sengeloese,Hovestaden,Denmark,Portable
@@ -13412,6 +13696,9 @@ 2384212,OZ2JSN,Jackie Smedegaard,Jackie,Jyllinge,Hovedstaden,Denmark,
2384213,OZ1MIC,Michael Wichmann,Michael,Frederiksberg,Hovedstaden,Denmark,
2384214,OZ4LN,Lars rathmann Nielsen,Oz4ln,Kbenhavn s,Hovedstaden,Denmark,
+2384215,OZ7R,Jens Krogh,Jensk,Kbenhavn,Hovedstaden,Denmark,
+2384216,OZ1LET,Bo Weiland,Bo,Jaegerspris,Hovedstaden,Denmark,
+2384217,OZ13JK,Torben Brandstrup,TBP,Kbenhavn S,Hovedstaden,Denmark,
2384400,OZ3MAJ,Martin ,,Herlev,Hovedstaden,Denmark,
2384444,OZ0GC,Gifted Children DK,Gifted Children,Hvidovre,Hovedstaden,Denmark,
2384500,OZ1HWN,Einar T,Einar,Alleroed,Hovedstaden,Denmark,
@@ -13420,7 +13707,7 @@ 2385001,OZ5X,Hans ,Hans,Nykoebing,,Denmark,Base
2385002,OZ5X,Hans ,Hans,Nykoebing,Sjaelland,Denmark,Portable
2385003,OZ5X,Hans ,Hans,Nykoebing,Sjaelland,Denmark,Mobile
-2385004,OZ1BCG,Soren ,Soren,Holbaek,,Denmark,
+2385004,OZ1BCG,Soren ,Soren,Holbaek,,Denmark,Portable#1
2385005,OZ1BCG,Soren ,Soren,Holbaek,Sjaelland,Denmark,Mobile#1
2385006,OZ1BCG,Soren ,Soren,Holbaek,Sjaelland,Denmark,Portable#2
2385007,OZ4L,Lars ,Lars,Havdrup,Sjaelland,Denmark,Portable
@@ -13575,9 +13862,11 @@ 2385156,OZ1CBW,Peter Andreasen,Peter,Stenloese,Sjaelland,Denmark,
2385157,OZ2SL,Steen Lundsteen,Steen,Ringsted,Sjaelland,Denmark,
2385159,OZ1IOA,Knud Nielsen,Oz1ioa,Vemmelev,Sjaelland,Denmark,
+2385160,OZ1GZZ,Soeren Thornberg Petersen,Soeren,Aalsgaarde,Sjaelland,Denmark,
+2385161,OZ4WOK,Frank ,,Tune,Sjaelland,Denmark,
2385555,OZ3BB,Mogens Johansson,Mogens,Roedby,Sjaelland,Denmark,
2385999,5Q5XX,Hans ,,Nyk Sj,Sjaelland,Denmark,
-2388888,CBRIDGE,CBridgeOZTest HansAndersen,CBrigdeOZ,Vig,Sjaelland,Denmark,
+2388888,CBRIDGE,CBridgeOZTest Parrot,CBrigdeOZ,Vig,Sjaelland,Denmark,
2400001,SM0TSC,Johan ,Johan,Tyresoe,Stockholms Laen,Sweden,Portable#1
2400002,SM0TUI,Jonas ,Jonas,Tyresoe,Stockholms Laen,Sweden,Portable
2400003,SM0SCB,Patrik ,Patrik,Haninge,Stockholms Laen,Sweden,Portable
@@ -13779,8 +14068,11 @@ 2400199,SE0P,Per Pahlen,Palle,Upplands Vaesby,Stockholm Laen-B,Sweden,
2400200,SM0IES,Lennart Einarsson,Dioden,Jaerna,Stockholm Laen-B,Sweden,
2400201,SM0RVV,Erik Linder,Erik,Jaerfaella,Stockholm Laen-B,Sweden,
-2400202,SM0VXI,Tobias ,,STOCKHOLM,Stockholm City-A,Sweden,
-2400203,SA0MBA,Mathias ,,Taeby,Stockholm City-A,Sweden,
+2400202,SM0VXI,Tobias Wallin,SM0VXI,STOCKHOLM,Stockholm City-A,Sweden,
+2400203,SA0MBA,Mathias Anefelt,SA0MBA,Taeby,Stockholm City-A,Sweden,
+2400204,SM0YXI,Robert Lind,Rhl,Skogas,New York,Sweden,
+2400205,SG0RPF,Uffe ,,Sigtuna,Stockholm Laen-B,Sweden,
+2400206,SA0FBR,Fredrik ,,Stockholm,Stockholm City-A,Sweden,
2401001,SM6UDU,Marcus ,,Uddevalla,Gotland-I,Sweden,
2402001,SA2CMY,Tomas Isaksson,Tomas,Lulea,Norrbotten,Sweden,
2402002,SA2BNO,Peter Larsson,Peter,Kiruna,Norrbotten County,Sweden,
@@ -13957,6 +14249,7 @@ 2404062,SA4BHE,Johan Ekeheien,Johan,Ludvika,cnty,Sweden,
2404063,SG4OUF,Per Helmfridsson,Per,JP70QM,Koppaberg-W,Sweden,
2404064,SA4MDN,Michael Newbury,Mick,Olshammar,Oerebro-T,Sweden,
+2404065,SM4EPR,Mats ,,Lindesberg,Oerebro-T,Sweden,
2405001,SM5OEM,Ronny ,Ronny,Aby,Oestergoetland Laen,Sweden,Portable
2405002,SM5BMK,Anders ,Anders,Torshalla,Soedermanland County,Sweden,
2405003,SM5ULX,Morgan ,Morgan,Eskilstuna,Soedermanland County,Sweden,
@@ -14177,7 +14470,9 @@ 2406141,SM6DAS,Per Hjorth,Pelle i Goeteborg,Goeteborg,Goeteborg och Bohus-,Sweden,
2406142,SM6TQB,Jonas Kulneff,Jonas,Tranemo,Aelvborg-P,Sweden,
2406143,SM6GEV,Nils Husberg,SM6GEV,Moelnlycke,Goeteborg och Bohus-,Sweden,
-2406144,SA6CCZ,Niklas ,,Kungaelv,Goeteborg och Bohus-O,Sweden,
+2406144,SA6CCZ,Niklas Goeransson,2080,Kungaelv,Goeteborg och Bohus-,Sweden,
+2406145,SA6AUO,Joergen Andersson,Joergen,VNrgNrda,Aelvborg-P,Sweden,
+2406146,SM6VZU,Mikael Karlander,Mikael,Trollhattan,cnty,Sweden,
2407001,SM7URN,Patrik ,Patrik,Sölvesborg,Blekinge Laen,Sweden,Portable
2407002,SM7URN,Patrik ,Patrik,Sölvesborg,Blekinge Laen,Sweden,Mobile
2407003,SA7BRM,Robert ,Robert,Malmoe,Skane,Sweden,Portabel
@@ -14366,7 +14661,8 @@ 2407186,SA7DYK,Anders Nilsson,Gaiadiver,ESLOV,Malmoehus-M,Sweden,
2407187,SM7MBD,Bengt Erlandsson,Ben,Oxie Malmoe,Malmoehus-M,Sweden,
2407188,SG7IKJ,Ronny Strandh Strandh,Ronny,JO76DJ, Lonsboda,Skune County,Sweden,
-2407189,SM7AWE,Leif ,,Simrishamn,Malmoehus-M,Sweden,
+2407189,SM7AWE,Leif Holst,SM7AWE,Simrishamn,Malmoehus-M,Sweden,
+2407190,SA7LNK,Kasper ,,Naesum,Kristianstad-L,Sweden,
2420001,LA3RIA,Mushtaq ,Mushtaq,Oslo,Oslo,Norway,
2420002,LA1KP,Oivind ,Oivind,Oslo,Oslo,Norway,
2420003,LA4JL,Per Eftang,Per,Oslo,Oslo,Norway,
@@ -14397,6 +14693,8 @@ 2420028,LA9YKA,Yvind Skaane,Yvind,Oslo,Oslo,Norway,
2420029,LB5VA,Stig Rasmussen,Stetch,Oslo,Oslo,Norway,
2420030,LA1KP,Oivind Solli,La1kp,Oslo,Oslo,Norway,
+2420031,LA9RT,Bent Vangli,LA9RT,Oslo,Oslo,Norway,
+2420032,LB3AH,Anders DegNrd,LB3AH,Oslo,Oslo,Norway,
2421001,LA6VMA,Tommy ,Tommy,Dal,Akershus,Norway,
2421002,LA7ZKA,Arve Moller,Arve,Trollasen,Akershus,Norway,
2421003,LA2YUA,Robin Holm,Robin,Strmmen,Akershus,Norway,
@@ -14502,6 +14800,7 @@ 2423037,LB3DH,Vidar B. Schanche,Vidar,Stavanger,Rogaland,Norway,
2423038,LA2PIA,Petter Sorensen,Petter,Kvernaland,Rogaland,Norway,
2423039,LA1ONA,Inge Hagen,LA1ONA,Bryne,Rogaland,Norway,
+2423040,LA6YMA,Rune Bjorlo,Rune,Jorpeland,Rogaland,Norway,
2424001,LA7TMA,Torstein Olsen,Torstein,Flornes,Nord-Trondelag,Norway,
2424002,LB3AG,Kre Arnfinn Fostad,Kre Arnfinn,Levanger,Nord-Trondelag,Norway,
2424003,LA3KL,Tore Barlindhaug,Tore,Trondheim,Sur-Trundelag,Norway,
@@ -14598,6 +14897,8 @@ 2426067,LA9TKA,Ivar J Haanes,LA9TKA,HEGGEDAL,Akershus,Norway,
2426068,LA6ETA,Henrik Solhaug,La6eta,Hunndalen,Oppland,Norway,
2426069,LB4GH,Torkell Opedal Wullum,LB4GH,Heidal,Oppland,Norway,
+2426070,LB4WD,Thor Anton Torkehagen,Thor Anton,Gjvik,Oppland,Norway,
+2426071,LB1BF,Ebbe ,,Lillehammer,Oppland,Norway,
2427001,LA3VW,Odd Skogjordet,Odd,ARENDAL,Aust-Agder,Norway,
2427002,LA4CSA,Tarjei Lundarvollen,Tarjei,Vinje,Telemark,Norway,
2427003,LA7LW,Ole Andreas Olsen,Ole Andreas,Arendal,Aust-Agder,Norway,
@@ -14641,6 +14942,7 @@ 2428026,LA7MHA,Tord Kaupang,Tord,Noetteroey,Vestfold,Norway,
2428027,LA4JNA,Nils Kristoffer Rren,Johan Paa Snippen,Tolvsrd,Vestfold,Norway,
2428028,LA9GN,Tom Arild Magnussen,Arild,Halden,stfold,Norway,
+2428029,LB3SA,Are Barstad,Are,Skoppum,Vestfold,Norway,
2429001,LA5LIA,Steinar Hanssen,Steinar,Sandnessjoen,Nordland,Norway,
2429002,LA1PHA,Tom Arntzen,Tom,Mo i Rana,Nordland,Norway,
2429003,LA5JK,Jan Gunnar Johannessen,Jan Gunnar,Mo i Rana,Nordland,Norway,
@@ -14682,14 +14984,15 @@ 2429039,LA4ITA,Truls Hofstad,LA4ITA,Narvik,Nordland,Norway,
2429040,LB2GH,Bjrn Einar Helland,Ice Narvik,Narvik,Nordland,Norway,
2429041,LB3HH,Christer Sollie,LB3HH,Setermoen,Troms,Norway,
-2429042,LA9YBA,Aage ,,Lodingen,Nordland,Norway,
-2429043,LA8FSA,Aage ,,Harstad,Troms,Norway,
-2429044,LA8GSA,Rjan ,,Harstad,Troms,Norway,
-2429045,LA6LOA,Roy ,,Harstad,Troms,Norway,
-2429046,LA8RHA,Jann HNvard ,,Ldingen,Nordland,Norway,
-2429047,LA8HSA,Kristoffer ,,Harstad,Troms,Norway,
-2429048,LA8ISA,Jon-yvind ,,Harstad,Troms,Norway,
-2429049,LA8DSA,Jon ,,Harstad,Troms,Norway,
+2429042,LA9YBA,Aage Danielsen,Aage,Lodingen,Nordland,Norway,
+2429043,LA8FSA,Aage Hofstad,Jr,Harstad,Troms,Norway,
+2429044,LA8GSA,Rjan Hofstad,Rjan,Harstad,Troms,Norway,
+2429045,LA6LOA,Roy Veimoen,Roy,Harstad,Troms,Norway,
+2429046,LA8RHA,Jann HNvard Martinsen,Jann,Ldingen,Nordland,Norway,
+2429047,LA8HSA,Kristoffer Hofstad,Kris,Harstad,Troms,Norway,
+2429048,LA8ISA,Jon-yvind Windstad,Jon,Harstad,Troms,Norway,
+2429049,LA8DSA,Jon Windstad,Jon,Harstad,Troms,Norway,
+2429050,LA4NL,Svein ,,Harstad,Troms,Norway,
2440001,OH0CD,Mikael ,Mikael,Finstrom,Aland Is,Finland,
2440002,OH0KCE,Leif Perjus,Leif,Palsbole,Aland Is,Finland,
2440003,OH0AZX,Roland Danielsson,Roland,Mariehamn,Aland Is,Finland,
@@ -14971,7 +15274,8 @@ 2446032,OH6GSI,Toni Poellaenen,Toni,Seinaejoki,Vaasa,Finland,
2446033,OH6FJA,Seppo Turunen,Seppo,Kangashakki,Keski-Suomi,Finland,
2446034,OH6HLH,Hannu Virtanen,Hannuvir,Jaemsae,Keski-Suomi,Finland,
-2446035,OH6MWQ,Jukka ,,Viitasaari,cnty,Finland,
+2446035,OH6MWQ,Jukka Pappinen,Jukka,Viitasaari,cnty,Finland,
+2446036,OH6WD,Jaakko Pekkarinen,Jaska,Viitasaari,cnty,Finland,
2447000,OH3HAM,Radio ,Radio,Kuopio,Kuopio,Finland,Club
2447001,OH7EOW,Jani Kontturi,Jands,Joensuu,cnty,Finland,
2447002,OH7KFA,Veini Airaksinen,OH7KFA,TERVO,Kuopio,Finland,
@@ -15019,6 +15323,8 @@ 2448035,OH8TM,Timo Malo,Timppa,Oulu,Oulu,Finland,
2448036,OH8KAW,Kai Salo,Kaitsu,OULU,Oulu,Finland,
2448037,OH8KW,Vesa Jaervelaeinen,Vesa,Oulu,Oulu,Finland,
+2448038,OH6EZF,Kari Saarela,Kari OH6EZF,Kalajoki,Oulu,Finland,
+2448039,OH8EVG,Petteri ,,Haapajaervi,Oulu,Finland,
2449001,OH9LNA,Jari Lammi,Jari,Tornio,Lappi,Finland,
2449002,OH9NGW,Markku Mokko,Markku,Tornio,Lappi,Finland,
2449003,OH9ELA,Jouni Jaakkola,Jones,TORNIO,Lappi,Finland,
@@ -15034,6 +15340,9 @@ 2470006,YL3IM,Inga Muste,Inga,Riga,,Latvia,
2470007,YL3GY,Miks Apinis,Miks,Riga,,Latvia,
2470008,YL3FK,Vitalijs Krusts,Vitaly,Riga,,Latvia,
+2470009,YL2UI,Egils Ivcenko,Egils,Liepaja,,Latvia,
+2470010,YL3HI,Vladislavs Himins,Vladislavs,Riga,,Latvia,
+2470011,YL3GIE,Valdis Sunakslis,Valdis,Liepaja,,Latvia,
2480001,ES2AST,Marek Astrik,SiiliOnu,Kose,,Estonia,
2480002,ES1FJR,Ivan Shebanov,Ivan,Tallinn,,Estonia,
2480003,ES1BRD,Dmitri Sinitsa,Dmitri,Tallinn,,Estonia,
@@ -15064,6 +15373,7 @@ 2502010,R2DFR,Mikhail ,Mikhail,,,Russia,
2502011,R2DFR,Mikhail ,Mikhail,,,Russia,
2502018,R2ALJ,Vitaliy ,Vitaliy,,,Russia,
+2502027,R2FAF,Valentin ,Valentin,,,Russia,
2503001,R3ABM,Artem ,Artem,,,Russia,
2503002,R3ABM,Artem ,Artem,,,Russia,
2503004,RZ3AIQ,Alexey ,Alexey,,,Russia,
@@ -15100,6 +15410,7 @@ 2508012,R8AAK,Aleksey ,Aleksey,,,Russia,
2508013,UB8CEV,Roman ,Roman,,,Russia,
2508019,R8ABX,Ivan ,Ivan,,,Russia,
+2508021,UB8CDY,Andrey ,Andrey,,,Russia,
2509001,R9XU,Yakov ,Yakov,,,Russia,
2509002,UA9KDF,Igor ,Igor,,,Russia,
2509003,R9CIR,Ivan ,Ivan,,,Russia,
@@ -15225,6 +15536,9 @@ 2550115,UY5UF,Valentin Hakalo,Valec,Motowilovka,,Ukraine,
2550116,UT5UAW,Igor Stepanov,Igor,Kiev,,Ukraine,
2550117,UT3UGR,Dmytro Isaienko,Dmytro,Kyiv,,Ukraine,
+2550118,UT3UHV,Roman Borys,Borman,Kyiv,,Ukraine,
+2550119,UW5EDP,Pavel Khorishko,Pavel,Dnipro,,Ukraine,
+2550120,UX2LX,Oleksandr Logvinov,Alex,Kharkiv,,Ukraine,
2570001,EW7AS,Vladimir Zakharchenko,Vladimir,Klimovichi,,,
2570002,EW7AS,Vladimir Zakharchenko,Vladimir,Klimovichi,,Belarus/Belorussia,
2601001,SP1XNE,Maciek ,Maciek,Szczecin,Zachodniopomorskie,Poland,
@@ -15262,6 +15576,7 @@ 2601033,SP1N,Maciej Olechnowicz,Maciej,Szczecin,Zachodniopomorskie,Poland,
2601034,SP1XNJ,Malgorzata Debicz,Malgorzata,Stargard,Zachodniopomorskie,Poland,
2601035,SP1B,Lukasz Berejowski,Lukasz,Szczecin,Zachodniopomorskie,Poland,
+2601036,SQ1PRA,Seawomir Misiak,Seawomir,Broczyno,Zachodniopomorskie,Poland,
2602001,SP2WGN,Maciej Zamojski,Maciej,Gdask,Pomeranian Voivodesh,Poland,
2602002,SP2FRN,Sebastian Stian,Sebastian,Gdynia,Pomeranian Voivodesh,Poland,
2602003,SP2CA,Andrzej Czapczyk,Andrzej,Bydgoszcz,Kuyavian-Pomeranian,Poland,
@@ -15279,6 +15594,7 @@ 2602015,SP2GDK,Radek Kubik,Radek,Gdynia,pomorskie,Poland,
2602016,SQ2KLT,Kamil Michalak,Kamil,Juncewo,Kuyavian-Pomeranian,Poland,
2602017,SQ2ICT,Tomasz Kuklinski,Tomasz,Bydgoszcz,Kujawsko-Pomorskie,Poland,
+2602018,SP2SWA,Arkadiusz Malachowski,Arek,Wloclawek,Kujawsko-Pomorskie,Poland,
2603001,SQ3CLK,Michal ,Michal,Poznan,Wielkopolska,Poland,Portable
2603002,SQ3GJH,Chrystian ,Chrystian,Srem,Wielkopolska,Poland,Portable
2603003,SP3WBY,Artur ,Artur,Poznan,Wielkopolska,Poland,Mobile
@@ -15321,6 +15637,8 @@ 2603040,SQ3OGO,Arkadiusz Galiski,Arkadiusz,Pozna,Greater Poland Voivo,Poland,
2603042,SO3AK,Greg Jung,Greg,Biedrusko,Wielkopolskie,Poland,
2603044,SQ3LVD,Tomasz Zawarty,Tomek,Poznan,Wielkopolskie,Poland,
+2603045,SQ8IFI,Krzysztof Przybylski,Krzysztof,Tomaszow Lubelski,Wielkopolskie,Poland,
+2603046,SQ8IFI,Krzysztof Przybylski,Krzysztof,Tomaszw Lubelski,Wielkopolskie,Poland,
2604001,SQ4HRL,Przemyslaw Kander,Przemyslaw,Ostroda,Warmian-Masurian Voi,Poland,
2604002,SQ4LWO,Krzysztof Sekowski,Krzysztof,Olsztyn,warmisko-mazurskie,Poland,
2604003,SQ4OJA,Adam Margieta,Adam,Olsztyn,Warmian-Masurian Voi,Poland,
@@ -15356,6 +15674,7 @@ 2604033,SP4XKB,Konrad Czaplicki,Konrad,Grajewo,Podlaskie,Poland,
2604034,SQ4RSU,Barteomiej Gres,Gryf,Sokeka,Podlaskie,Poland,
2604035,SP4XKB,Konrad Czaplicki,Cezar,Grajewo,Podlaskie,Poland,
+2604036,SP4WRZ,Ireneusz Zacharewicz,Irek,Bialowieza,Podlaskie,Poland,
2605001,SP5GDM,Jan ,Jan,Wierzbica,Mazowieckie,Poland,Portable#1
2605002,SP5GDM,Jan ,Jan,Wierzbica,Mazowieckie,Poland,Portable#2
2605003,SP5GDM,Jan ,Jan,Wierzbica,Mazowieckie,Poland,Mobile
@@ -15376,7 +15695,7 @@ 2605018,SP5RDU,Wojciech Paszkowski,Wojciech,Brwinow,Mazowieckie,Poland,
2605019,SQ5OMO,Marcin Urbaski,Marcin,Marki/Warszawa,Mazowieckie,Poland,
2605020,SQ5CJZ,Robert Ojrzynski,Robert,Pruszkow,Mazowieckie,Poland,
-2605021,SQ5GLU,Radoslaw Padzik,Radoslaw,Warsaw,Mazowieckie,Poland,
+2605021,SQ5GLU,Radoslaw Padzik,Radek,Warsaw,Mazowieckie,Poland,
2605022,SP5FBJ,Marcin Szmit,Marcin,Warszawa,Mazowieckie,Poland,
2605023,SP5QWV,Jarek Zbrzeniak,Jarek,Kobyka,Mazowieckie,Poland,
2605024,SQ5MJF,Michal Rzeplinski,Michal,Warszawa,Mazowieckie,Poland,
@@ -15497,6 +15816,7 @@ 2605139,SQ5SAJ,Jan Sak,Saenta,Konstancin,Mazowieckie,Poland,
2605140,SQ5IRI,Grzegorz Golebiewski,Grzegorz,Rzekun,Mazowieckie,Poland,
2605141,SP5TDK,Tadeusz Dymerski,Tadeusz,Kadzidlo,Mazowieckie,Poland,
+2605142,SP5IOU,Marcin Boboli,Marcin,Warszawa,Mazowieckie,Poland,
2606001,SQ6ROK,Andrzej ,Andrzej,Wroclaw,Lower Silesian Voivo,Poland,
2606002,SQ6NCJ,Jacek Diaczek,Jacek,Olawa,Lower Silesian Voivo,Poland,
2606003,SQ6IUB,Kamil Szmajda,Kamil,Opole,Opole Voivodeship,Poland,
@@ -15534,6 +15854,9 @@ 2606035,SQ6IYC,Mariusz Kwaonik,Mariusz,Legnica,Dolnoslaskie,Poland,
2606036,SQ6POG,Pawel Gomulka,Pawel,Legnica,Dolnoslaskie,Poland,
2606037,SO6AFT,Marek Kozak,Marek,Wroclaw,Dolnoslaskie,Poland,
+2606038,SQ6POG,Pawel Gomulka,Pawel,Legnica,Dolnoslaskie,Poland,
+2606039,SP6VXU,Jacek Dziuban,Jacek,Wroclaw,Lower Silesian Voivo,Poland,
+2606040,SQ6LAE,Jarek Koper,Jarek,Legnica,cnty,Poland,
2607001,SQ7FKT,Bartek ,Bartek,Lodz,Lodzki,Poland,Portable
2607002,SQ7SCC,Arek ,Arek,Lodz,Lodzki,Poland,
2607003,SQ7LRX,Adam ,Adam,Lodz,Lodzki,Poland,
@@ -15571,6 +15894,7 @@ 2607035,SQ7NHR,Grzegorz Ryl,Grzegorz,Lodz,cnty,Poland,
2607036,SP7EP,Maciej Herman,Maciej,Piotrkw Trybunalski,Lodzkie,Poland,
2607037,SP7LAK,Krzysztof Pawlowski,Krzysztof,Kutno,Lodzkie,Poland,
+2607038,SQ7RJX,Jacek Chruscinski,Jacek,Dzialoszyn,Lodzkie,Poland,
2608001,SP8WJS,Andrzej Pencarski,Andrzej,Ustrzyki Dolne,Wojewudztwo podkarpa,Poland,
2608002,SQ8NXF,Grzegorz Kowalski,Grzegorz,Zamosc,lubelskie,Poland,
2608003,SQ8LUN,Lukasz Kuzma,Lukasz,LUBLIN,Lublin Voivodeship,Poland,
@@ -15691,6 +16015,12 @@ 2609094,SP9VJ,Bohdan Trych,Bohdan,Czestochowa,Slaskie,Poland,
2609095,SQ9APY,Zbigniew Choroba,Zbigniew,Delastowice,cnty,Poland,
2609096,SQ9NOO,Marcin Bagienski,Marcin,Cieszyn,Slaskie,Poland,
+2609097,SQ9MUP,Andrzej Czuma,Andrzej,Podee,Malopolskie,Poland,
+2609098,SQ9RPX,Marcin Ciochon,Marcin,Krakow,Malopolskie,Poland,
+2609099,SQ9GAT,Andrzej Ciemniak,Andrzej,Cieszyn,Slaskie,Poland,
+2609100,SQ9LBT,Tomasz Miksa,Tomasz,Ory,Slaskie,Poland,
+2609101,SQ9OZM,Marcin Bajer,Marcin,Dobczyce,Malopolskie,Poland,
+2609102,SQ9NKH,Lukasz Czaplak,Lukasz,Zakrzowiec,Malopolskie,Poland,
2620001,DD8OA,Jan ,Jan,Friedrichsbrunn,Sachsen-Anhalt,Germany,Portable
2620002,DB1JBA,Jens ,Jens,Wismar,Mecklenburg-Vorpomme,Germany,Mobile
2620003,DG0CCO,Joerg ,Joerg,Tangermuende,Sachsen-Anhalt,Germany,Portable
@@ -15781,6 +16111,9 @@ 2620088,DM1ZP,Dietrich Weiss,Dietrich,Ostseebad Sellin,Mecklenburg-Vorpomme,Germany,
2620089,DG7MZA,Michael Ziehm,Michael,Arneburg,Sachsen-Anhalt,Germany,
2620090,DL2HSI,Miki Stengel,Miki,Tangerhuette,Sachsen-Anhalt,Germany,
+2620091,DL7JMJ,Juergen Jesche,Juergen,Glowe,Mecklenburg-Vorpomme,Germany,
+2620092,DG7MZA,Michael Ziehm,Michael,Arneburg,Sachsen-Anhalt,Germany,
+2620094,DB0WOF,Guenter Boehm,Guenter,Bitterfeld-Wolfen,Sachsen-Anhalt,Germany,
2621001,DL7AJ,Wolfgang ,Wolfgang,Berlin,Berlin,Germany,
2621002,DG4FEY,Thomas ,Thomas,Berlin,Berlin,Germany,
2621003,DL7ATA,Frank ,Frank,Berlin,Berlin,Germany,Portable
@@ -15961,6 +16294,7 @@ 2621178,DL7AG,Christian Henkel,Christian,Berlin,cnty,Germany,
2621179,DO2TO,Uwe Skaerke,Uwe,Ahrensfelde/OT Blumb,Brandenburg,Germany,
2621180,DG2BZE,Guenter Mueller,Guenter,Neuenhagen,Brandenburg,Germany,
+2621181,DC7BWK,Joerg Schaeffer,Joerg,Berlin,Berlin,Germany,
2622000,DF4HN,Joerg Neugebauer,Joerg,Hamburg,HAMBURG/SCHLESWIG-HO,Germany,
2622001,DL6LIM,Iven ,Iven,Twedt/Schleswig,Schleswig-Holstein,Germany,Portable
2622002,DJ3HZ,Klaus ,Klaus,Norderstedt,Schleswig-Holstein,Germany,Portable
@@ -16098,7 +16432,7 @@ 2622134,DD2HZ,Hans-Juergen Zacharias,Hans-Juergen,Luetjensee,Schleswig-Holstein,Germany,
2622135,DH1HAB,Dieter Ohm,Dieter,Luebeck,Schleswig-Holstein,Germany,
2622136,DL4HF,Juergen Friemann,Juergen,Hamburg,Hamburg,Germany,
-2622137,DL3LED,Ralph Marzusch,Ralph,Grosshansdorf,Schleswig-Holstein,Germany,
+2622137,DO8SHL,Marco Mueller,Marco,Luebeck,Schleswig-Holstein,Germany,
2622138,DH0HAK,Kirsten Thon,Kirsten,Hamburg,Hamburg,Germany,
2622139,DD2HS,Lothar Stolle,Lothar,Bad Oldesloe,Schleswig-Holstein,Germany,
2622140,DO7PRB,Peter Rath,Peter,Gudow,Schleswig-Holstein,Germany,
@@ -16306,6 +16640,12 @@ 2622342,DB0FS,SIP-Gateway ,SIP-Gateway,Hamburg,Hamburg,Germany,
2622343,DD2LU,Uwe Scharweit,Uwe,Gettorf,Schleswig-Holstein,Germany,
2622344,DB0ZE,SIP-Gateway ,SIP-Gateway,Hamburg,Hamburg,Germany,
+2622345,DO1FBH,Florian Bauhaus,Florian,Hamburg,Hamburg,Germany,
+2622346,DB4LW,Werner Wilkat,Werner,Kiel,Schleswig-Holstein,Germany,
+2622347,DB5LAD,Norbert Hansen,Norbert,Klappholz,Schleswig-Holstein,Germany,
+2622348,DL5LY,Lydia Cordsen,Lydia,Neuberend,Schleswig-Holstein,Germany,
+2622349,DJ4LC,Thomas Littmann,Thomas,Breitenburg-Nordoe,cnty,Germany,
+2622350,DL5LA,Paolo Altamura,Paolo,Soerup,Schleswig-Holstein,Germany,
2623001,DL4BCG,Paul Hag ,,Schneverdingen,Niedersachsen,Germany,Portable
2623002,DG5AV,Gerd May,Gerd,Einbeck,Lower Saxony,Germany,
2623003,DO1HSN,Hendrik ,Hendrik,Pewsum,Niedersachsen,Germany,Portable
@@ -16997,7 +17337,7 @@ 2623689,DJ3KC,Cetinalp Kavci,Cetin,Wolfsburg,Lower Saxony,Germany,
2623690,DO4TBH,Thomas Blinde,Tom,Hannover,Lower Saxony,Germany,
2623691,DO6OTH,Thomas Wagner,Thomas,Goettingen,Lower Saxony,Germany,
-2623692,DB4BIN,Ingo Nieth,Bert,Holdorf,Niedersachen,Germany,
+2623692,DB4BIN,Ingo Ernsting,Ingo,Holdorf,Niedersachen,Germany,
2623693,DF5AH,Reinhard Niedere,Yogi,Bovenden-Reyershause,Niedersachsen,Germany,
2623694,DO3SP,Sven Peters,Sven,Wilhelmshaven,Lower Saxony,Germany,
2623695,DO3WAL,Waldemar Mehring,Waldemar,Lueneburg,Lower Saxony,Germany,
@@ -17112,7 +17452,7 @@ 2623804,DB2OE,Dennis Boniakowsky,Dennis,Staufenberg,Lower Saxony,Germany,
2623805,DL1EJ,Thomas Liedtke,Thomas,Sachsenhagen,Lower Saxony,Germany,
2623806,DO7SE,Sven Ehelebe,Sven,Koenigslutter,Niedersachsen,Germany,
-2623807,DO6MPI,Matthias Pianta,Matthias,Vechta,Lower Saxony,Germany,
+2623807,DL6BAI,Olaf Exner,Olaf,Bremervoerde,cnty,Germany,
2623808,DO4WW,Juergen Rosskamp,Juergen,Loxstedt,Lower Saxony,Germany,
2623809,DH2BAD,Herbert Luehmann,Herbert,Klein Meckelsen,Lower Saxony,Germany,
2623810,DJ6ML,Meinert Leinigen,MBL,Oldenburg,Lower Saxony,Germany,
@@ -17202,6 +17542,17 @@ 2623894,DJ5JD,Hans-Gerd Spohler,Hans-Gerd,Norden,Niedersachen,Germany,
2623895,DB1OFH,Peter Gerland,Peter,Northeim,cnty,Germany,
2623896,DL1BAH,Karl-Heinz Schirmer,Karl-Heinz,Norden,Niedersachen,Germany,
+2623897,DF4AI,Volker Biermann,Volker,Meinersen,cnty,Germany,
+2623898,DL2AB,Daniel Wendt-Froehlich,Daniel,Bremen,cnty,Germany,
+2623899,DG9BFE,Marc Heinze,Marc,Ihlow,Niedersachen,Germany,
+2623900,DK1XAM,Manfred Graebner,Manfred,Colnrade,Niedersachen,Germany,
+2623901,DL5BN,Bert Nieth,DL5BN,Bassum,Niedersachen,Germany,
+2623902,DO4IG,Kai Hornberg,Kai,Goettingen,Niedersachen,Germany,
+2623903,DL4BBX,Alfred Brueggemann,Alfred,Syke,Lower Saxony,Germany,
+2623904,DF2AD,Dieter Spoerhase,Dieter,Bad Sachsa,Niedersachen,Germany,
+2623905,DL4DD,Uli Lahme,Uli,Krummendeich,Niedersachen,Germany,
+2623906,DH8RS,Rainer Schenkemeier,Rainer,Hildesheim,Niedersachen,Germany,
+2623907,DJ2XW,Werner Buss,Werner,Hildesheim,Niedersachen,Germany,
2624001,DF2ER,Walter ,Walter,Heiligenhaus,Nordrhein-Westfalen,Germany,Portable
2624002,DD2JU,Rudolf ,Rudolf,Ratingen,Nordrhein-Westfalen,Germany,Portable
2624003,DL1YBL,Jochen ,Jochen,Marl,Nordrhein-Westfalen,Germany,Portable
@@ -18229,7 +18580,7 @@ 2625026,DO1ACR,Roman ,Roman,Herxheim,Rheinland-Pfalz,Germany,Mobile
2625027,DK8PR,Peter ,Peter,Ellerstadt,Rheinland-Pfalz,Germany,Mobile
2625028,DO7PA,Klaus ,Klaus,Hessheim,Rheinland-Pfalz,Germany,Mobile
-2625029,DK1PM,Michael ,Michael,Langweiler,Rheinland-Pfalz,Germany,Portable
+2625029,DL7GG,German Geisslinger,German,Bad Kreuznach,Rheinland-Pfalz,Germany,Portable
2625030,DK1PM,Michael ,Michael,Langweiler,,Germany,Mobile
2625031,DD1IZ,Mike ,Mike,Landau,Rheinland-Pfalz,Germany,
2625032,DJ3UE,Achim Schaefer,Achim,Ludwigshafen,,Germany,
@@ -18576,6 +18927,8 @@ 2625373,DL5PP,Dieter Fischer,Dieter,Niederhambach,Rheinland-Pfalz,Germany,
2625374,DF7WA,Berthold Bahl,Berthold,Kaltenengers,cnty,Germany,
2625375,DO8CN,Christian Nagel,Christian,Neustadt / Weinstras,Rheinland-Pfalz,Germany,
+2625376,DC8VA,Robert Wilhelm,Robert,Rodalben,Rheinland-Pfalz,Germany,
+2625377,DK8VD,Dieter Hoffmann,Dieter,Bernkastel-Kues,Rheinland-Pfalz,Germany,
2625998,DB0MYK,Hans-Juergen ,Hans-Juergen,Gaensehals,Thuaringen,Germany,
2625999,DB0LJ,D-Star-Gateway Barthen,DSTAR-DMR-Gateway,Kruft,Rhineland-Palatinate,Germany,
2626000,DF6RK,Ralf ,Ralf,Glashuetten,Hessen,Germany,Base Station
@@ -19142,6 +19495,11 @@ 2626561,DD1IWX,Tin Chulajata,Tin,Glashutten,Hessen,Germany,
2626562,DC2ZN,Klaus Maelzner,KMBOS,Biedenkopf,Hessen,Germany,
2626563,DO7TH,Thomas Hardt,Thomas,Haiger,Hessen,Germany,
+2626564,DO2THK,Thomas Koch,Thomas,Lautertal,Hessen,Germany,
+2626565,DG5ZQ,Joerg Sudheimer,Joerg,Biebesheim,Hessen,Germany,
+2626566,DL6FAK,Wolfgang Schilling,Wolfgang,Freigericht,Hessen,Germany,
+2626567,DO1OKM,Simon Maiberger,Simon,Biebergemuend,Hessen,Germany,
+2626568,DL2FHM,Horst Umbach,Horst,Immenhausen,Hessen,Germany,
2627001,DC4GD,Claus ,Claus,Villingen-Schwenning,Baden-Wuerttemberg,Germany,Mobile #1
2627002,DC4GD,Claus ,Claus,Villingen-Schwenning,Baden-Wuerttemberg,Germany,Mobile #2
2627003,DC4GD,Claus ,Claus,Villingen-Schwenning,Baden-Wuerttemberg,Germany,Portable
@@ -19794,7 +20152,7 @@ 2627650,DH2WA,Andreas Will,Andreas,Daisendorf,Baden-Wuerttemberg,Germany,
2627651,DL2SM,Klaus Mueller,Klaus,Kornwestheim,Baden-Wuerttemberg,Germany,
2627652,DD9SH,Horst Kleiner,Horst,Schoeckingen,Baden-Wuerttemberg,Germany,
-2627653,DO6UWE,Uwe Schikowski,Uwe,Grosserlach,Baden-Wuerttemberg,Germany,
+2627653,DL1SAB,Sebastian Bachmaier,Sebastian,Ludwigsburg,Baden-Wuerttemberg,Germany,
2627654,DL1GBB,Winni Dreyfuerst,Winni,Langenargen,Baden-Wuerttemberg,Germany,
2627655,DJ5MW,Manfred Wolf,Manfred,Wangen,Baden-Wuerttemberg,Germany,
2627656,DL5GBW,Wunny Kieber,Wunny,Wangen/ Allgaeu,Baden-Wuerttemberg,Germany,
@@ -19835,6 +20193,22 @@ 2627691,DF8IU,Hans Hilkert,Hans,Hoepfingen,Baden-Wuerttemberg,Germany,
2627692,DL9SK,Ralf Fanz,Ralf,Neckarwestheim,Baden-Wuerttemberg,Germany,
2627693,DK3PT,Heinz Schmidgall,Heinz,Murr,Baden-Wuerttemberg,Germany,
+2627694,DM3AT,Stephan Eisenbeiss,Stephan,Ludwigsburg,Baden-Wuerttemberg,Germany,
+2627695,DO9MN,Michael Neumann,Michael,Stuttgart,Baden-Wuerttemberg,Germany,
+2627696,DG9SFF,Ewald Huebl,Ewald,Schwieberdingen,Baden-Wuerttemberg,Germany,
+2627697,DK6SG,Rudi Zintl,Rudi,Vaihingen/Enz,Baden-Wuerttemberg,Germany,
+2627698,DL1GKK,Karl-Heinz Krawczyk,Karl-Heinz,Freiburg,Baden-Wuerttemberg,Germany,
+2627699,DC4TX,Rolf Zott,Rolf,Beilstein,Baden-Wuerttemberg,Germany,
+2627700,DL1GEA,Alfons Huber,Alfons,Fluorn-Winzeln,Baden-Wuerttemberg,Germany,
+2627701,DH1UZ,Uwe Zerbe,Uwe,Waiblingen,Baden-Wuerttemberg,Germany,
+2627702,DK1SV,Ekkehart Winkler,Ekkehart,Ludwigsburg,Baden-Wuerttemberg,Germany,
+2627703,DK8SN,Ilmar Reisman,Ilmar,Dornstadt,Baden-Wuerttemberg,Germany,
+2627704,DF6SH,Guenther Dihlmann,Guenther,Marbach,Baden-Wuerttemberg,Germany,
+2627705,DG4SBZ,Konrad Schnaible,Konrad,Weil der Stadt,Baden-Wuerttemberg,Germany,
+2627707,DG2ST,Bernd Knobel,Bernd,Heilbronn,Baden-Wuerttemberg,Germany,
+2627708,DO7SJ,Jochen Schwalb,Jochen,Abstatt,Baden-Wuerttemberg,Germany,
+2627709,DO7SA,Angelika Schwalb,Angelika,Abstatt,Baden-Wuerttemberg,Germany,
+2627710,DK9WF,Fred Wagner,Fred,Ulm,Baden-Wuerttemberg,Germany,
2628001,DL1BNO,Bernd ,Bernd,Geiselbach,Bayern,Germany,Mobile
2628002,DL5NBZ,Rainer ,Rainer,Nuernberg,Bayern,Germany,Mobile
2628003,DK7NKR,Ralf ,Ralf,Nuernberg,Bayern,Germany,Portable
@@ -20672,6 +21046,16 @@ 2628835,DH9RCG,Uli Weidinger,Uli,Salzweg,Bayern,Germany,
2628836,DK4TN,Uwe Wieteck,Uwe,Traunstein,Bayern,Germany,
2628837,DO6ZM,Michael Zajaczuk,Michael,Weissenhorn,Bayern,Germany,
+2628838,DG4RBP,Juergen Minks,Juergen,Fensterbach,Bayern,Germany,
+2628839,DG4RBS,Stefan Josef Wirth,Stefan (Steve),Hohenfels,Bayern,Germany,
+2628840,DO1RE,Johannes Landerer,Johannes,Eichstaett,Bayern,Germany,
+2628841,DL2MUC,Alex Auer,Alex,Muenchen,Bayern,Germany,
+2628842,DL7UP,Joerg Hoeben,Joerg,Neubiberg,Bayern,Germany,
+2628843,DL1MSB,Michi Sonner,Michi,Bichl,Bayern,Germany,
+2628844,DF3NJ,Norbert Dotterweich,Norbert,Stappenbach,Bayern,Germany,
+2628845,DF4RMI,Michael Farmbauer,Michael,Obertraubling,Bayern,Germany,
+2628846,DO2DMB,Didi Rosenlehner,Didi,Falkenberg,Bayern,Germany,
+2628847,DG4AO,Anton Oeder,Anton,Markt Frickenhausen,Bayern,Germany,
2629001,DC8YM,Maik ,Maik,Leipzig,Sachsen,Germany,Portable#1
2629002,DC8YM,Maik ,Maik,Leipzig,Sachsen,Germany,Portable#2
2629003,DC8YM,Maik ,Maik,Leipzig,Sachsen,Germany,Mobile
@@ -20810,6 +21194,9 @@ 2629136,DO7NE,Marco Mutsches,Marco,Leipzig,Sachsen,Germany,
2629137,DO5RRS,Reinwald Richter,Reinwald,Sonneberg,Thueringen,Germany,
2629138,DL1JDH,Detlef Gypser,Detlef,Zschorlau,Sachsen,Germany,
+2629139,DG0AG,Siegmar Hecht,Siegmar,Ilmenau,Thueringen,Germany,
+2629140,DL4ZJ,Mathias Moersch,Mathias,Saalfeld,Thueringen,Germany,
+2629142,DG0OKV,Jens Eppler,Jens,Roemhild, OT Haina,Thueringen,Germany,
2634001,DL6NW,Nicole Wiesner,Nicole,Ratingen,Nordrhein-Westfalen,Germany,
2634002,DL1HC,Michael Kronenberg,Michael,Bergisch Gladbach,Nordrhein-Westfalen,Germany,
2634003,DH5JR,Hannelore Warnecke,Hannelore,Velbert,Nordrhein-Westfalen,Germany,
@@ -21145,10 +21532,21 @@ 2634334,DO4DAX,Markus Dietrich,Markus,Koeln,Nordrhein-Westfalen,Germany,
2634335,DF3DH,Wilfried Longwitz,Wilfried,Castrop-Rauxel,Nordrhein-Westfalen,Germany,
2634336,DO2BHE,Burkhard Hekers,Burkhard,Voerde,Nordrhein-Westfalen,Germany,
+2634337,DO8PP,Patrick Plettau,Patrick,Mettmann,Nordrhein-Westfalen,Germany,
2634338,DO1EPM,Matthias Parei,Matthias,Anroechte,Nordrhein-Westfalen,Germany,
2634339,DM5GZ,Juergen Mattausch,Juergen,Dorsten,Nordrhein-Westfalen,Germany,
2634340,DM6TK,Thomas Kaimann,Thomas,Warstein,Nordrhein-Westfalen,Germany,
2634341,DL9YAZ,Ralf Schindowski,Ralf,Leopoldshoehe,Nordrhein-Westfalen,Germany,
+2634342,DC1KO,Olaf Bahr,Olaf,Alfter,Nordrhein-Westfalen,Germany,
+2634343,DJ2YSR,Rainer Siepert,Rainer,Greven,Nordrhein-Westfalen,Germany,
+2634344,DO1LH,Hinrich Lamp,Hinrich,Ratingen,Nordrhein-Westfalen,Germany,
+2634345,DO7FF,David Temmers,David,Eschweiler,Nordrhein-Westfalen,Germany,
+2634346,DF4JM,Julian Wild,Julian,Krefeld,Nordrhein-Westfalen,Germany,
+2634347,DO1WMW,Markus Wegel,Markus,Castrop-Rauxel,Nordrhein-Westfalen,Germany,
+2634348,DO6BL,Boris Liwowski,Boris,Berlar,Nordrhein-Westfalen,Germany,
+2634349,DO6BD,Daniel Battke,Daniel,Bergheim,Nordrhein-Westfalen,Germany,
+2634350,DL9DBB,Friedhelm Siepe,Friedhelm,Hallenberg,Nordrhein-Westfalen,Germany,
+2634351,DM1EE,Rolf Moellmann,Rolf,Dorsten,Nordrhein-Westfalen,Germany,
2681001,CT2HMR,Manuel ,Manuel,Amarante,Porto District,Portugal,
2681002,CT1DQV,Eduardo Goncalves,Eduardo,Chaves,Vila Real,Portugal,
2681003,CT2GSW,Rui Calada,Rui,Maia,Porto District,Portugal,
@@ -21195,6 +21593,8 @@ 2681044,CT5IJF,Angelina Carvalho,Angelina,Valongo,Porto,Portugal,
2681045,CT1HNF,Luis Carvalho,Luis,Valongo,Porto,Portugal,
2681046,CT4OI,Rui Lopes,Rui,Porto,cnty,Portugal,
+2681047,CT1HFS,Rui Alves,Ruca,Espinho,Porto,Portugal,
+2681048,CT1HXJ,Vitor Ferreira,Vitor,Maia,Porto,Portugal,
2682001,CS7ACF,Nuno ,Nuno,Viseu,Viseu,Portugal,
2682002,CT1BAT,Jose Machado,Jose,Coimbra,Coimbra,Portugal,
2682003,CT2JWV,Carlos Marques,Carlos,Estarreja,Aveiro,Portugal,
@@ -21251,6 +21651,8 @@ 2682054,CT1ASM,Joaquim Jose Jorge,Jo,Viseu,Viseu,Portugal,
2682055,CS7ALB,Rui Brito da Silva,Rui,Viseu,Viseu,Portugal,
2682056,CT1ESJ,Henrique Portas,Henrique,Sabugal,Guarda,Portugal,
+2682057,CS7AFA,Pedro Ferraz,Pedro,Guia PBL,Leiria,Portugal,
+2682058,CT1HFW,Nuno Miguel Duarte Mendes,Nuno Miguel,Tomar,Leiria,Portugal,
2683001,CT1HDC,Paulo ,Paulo,Lisboa,Lisboa,Portugal,Portable
2683002,CR7AIC,Fernando ,Fernando,Lisboa,Lisbon,Portugal,
2683003,CS7AFO,Hugo ,Hugo,Amadora,Lisbon,Portugal,
@@ -21413,6 +21815,10 @@ 2683160,CT1EDG,Jose Eduardo O Pinto,Jose,Cascais,Lisboa,Portugal,
2683161,CT1CDN,Valdemar Soares,Valdemar,Massami,cnty,Portugal,
2683162,CT1ETY,Pedro Nogueira,Pedro,Agualva,Lisboa,Portugal,
+2683164,CT5GJH,Jose Cardoso,Jose,Povoa St Iria,Lisboa,Portugal,
+2683165,CT1AWR,Manuel Santos,Manuel,Buraca,Lisboa,Portugal,
+2683166,CT1EBZ,Jouo Encarnauo,Jouo,Carnaxide,Lisboa,Portugal,
+2683167,CT1FW,Manuel Antunes,Manuel,Portela de Sintra,Lisboa,Portugal,
2684001,CT2BXN,Jose ,Jose,Beja,Alentejo,Portugal,Mobile#1
2684002,CT2BXN,Jose ,Jose,Beja,Alentejo,Portugal,Mobile#2
2684003,CT1DUM,Carlos ,Carlos,Elvas,Portalegre District,Portugal,
@@ -21531,6 +21937,7 @@ 2701076,LX1HP,Paul Hetting,Paul,Wiltz,Luxemburg,Luxemburg,
2701077,LX1CD,Carlo Diedert,Carlo,Fentange,Luxemburg,Luxemburg,
2701078,LX6RG,Rene Grignard,Rene,Hagen,Luxemburg,Luxemburg,
+2701079,LX1QF,Peter Vekinis,Peter,Canach,Luxemburg,Luxemburg,
2701120,LX4E,LARU EMC WG LARU,LARU EMC WG,Diekirch,,Luxemburg,
2701121,LX4E,LARU EMC WG LARU,LARU EMC WG,Diekirch,,Luxemburg,
2701122,LX4E,LARU EMC WG LARU,LARU EMC WG,Diekirch,,Luxemburg,
@@ -21570,6 +21977,7 @@ 2720027,EI9FVB,Declan Horan,Declan,Cork,,Ireland,
2720028,EI2KL,Henry Patrick OLoughlin,Harry,Shannon,,Ireland,
2740001,TF3PKN,Pier Kaspersma,Pier,Reykjavik,,Iceland,
+2740002,TF8KP,Krzysztof Przybylski,Kristof,Keflavik,,Iceland,
2780001,9H1US,Antoine Debattista,Antoine,Birkirkara,,Malta,
2780002,9H1DH,Herbert Debattista,Herbert,Gwardamangia,,Malta,
2780003,9H1DH,Herbert Debattista,Herbert,Gwardamangia,,Malta,
@@ -21652,9 +22060,12 @@ 2840062,LZ1LCD,Tsvetomir Simeonov,LZ1LCD,Sofia,,Bulgaria,
2840063,LZ2HPC,Stanislav Zlatinov,Stanislav,Veliko Turnovo,,Bulgaria,
2840064,LZ1DGM,Dimitar Martinov,Mitko,Sofia,,Bulgaria,
+2840065,LZ1CLD,Dimitar Ilkov,Dimitar,Sofia,,Bulgaria,
+2840066,LZ1SDF,Svetlin Haralampiev,Svetlin,Sofia,,Bulgaria,
2860001,TA2AWV,Mirac YILMAZ,Mirac,Istanbul,,Turkey,
2860002,TA5ACC,Cihan Culha,Cihan,Adana,,Turkey,
2860003,TA2UKC,Cem Burak Kocak,Cem Burak,Istanbul,,Turkey,
+2860004,TA2LLS,Seyit Tekirdag,Seyit,Kocaeli,,Turkey,
2862001,TA2OI,Özel ,Özel,Sulakyurt,Kirikkale,Turkey,Portable
2900001,OX3HI,Holger Hey Mortensen,Holger Hey,Kangerlussuaq,,Greenland,
2920001,T77GR,Renato Giovagnoli,Renato,San marino,,San Marino,
@@ -21666,6 +22077,8 @@ 2930004,S52SG,Ewald Laznik,Ewald,Slovenj Gradec,,Slovenia,
2930005,S56LLB,Andrej Znidaric,Andrej,Krizevci,,Slovenia,
2930006,S56KZ,Beno Sever,Beno,Sentjur,,Slovenia,
+2930007,S57BMU,Milan Urbanija,Milan,Zagorje ob Savi,,Slovenia,
+2930008,S58DB,Danilo Bozic,Danilo,Sevnica,,Slovenia,
2940001,Z36AEC,Herolind Useini,Herolind,Gostivar,Gostivar,Macedonia,
2940002,Z32IT,Dragan Spiroski,Dragan,Skopje,,Macedonia,
2940003,Z32IT,Dragan Spiroski,Dragan,Skopje,,Macedonia,
@@ -21694,6 +22107,7 @@ 3021005,VE1JCS,James Salamone,,Antigonish,Nova Scotia,Canada,Other
3021006,VE1ZC,Ron Reashore,,Dartmouth,Nova Scotia,Canada,DMR
3021007,VE1CCC,Andrew Cornwall,,Sackville,Nova Scotia,Canada,DMR
+3021008,VE1PJS,Peter Surette,,Truro,Nova Scotia,Canada,DMR
3022000,VA2XPR,CAN-TRBO .,CAN-TRBO,Montreal,Quebec,Canada,DMR
3022001,VA2TDF,Daniel Trillaud,,Montreal,Quebec,Canada,Portable
3022002,VE2NBZ,Eric Gauvin-dufour,,Trois-Rivires,Quebec,Canada,Portable
@@ -22010,6 +22424,19 @@ 3022318,VE2EVH,Raymond Laroche,,Sherbrooke,Quebec,Canada,DMR
3022319,VA2KOS,Daniel D,,Laval,Quebec,Canada,DMR
3022320,VE2VHM,Alain Borduas,,St-Eustache,Quebec,Canada,DMR
+3022321,VE2RXD,Mario Desruisseaux,,Princeville,Quebec,Canada,DMR
+3022322,VE2ARA,Rene Lamoureux,,Sherbrooke,Quebec,Canada,DMR
+3022323,VA2NRJ,Robin Delauney,,Boucherville,Quebec,Canada,DMR
+3022324,VE2ILM,Gaston Gagné,,Sorel-Tracy,Quebec,Canada,DMR
+3022325,VE2XFM,Jean-Claude Bard,,Manseau,Quebec,Canada,DMR
+3022326,VA2NRJ,Robin Delauney,,Boucherville,Quebec,Canada,DMR
+3022327,VE2LM,Pierre Beaulieu,,Montreal,Quebec,Canada,DMR
+3022328,VE2ZPQ,Patrice Quenneville Quenneville,,L'Epiphanie,Quebec,Canada,DMR
+3022329,VE2SKR,Reginald Barnes,RéGy,Saint-Joachim De She,Quebec,Canada,DMR
+3022330,VE2MDC,Michel C Dore,,Montreal,Quebec,Canada,DMR
+3022331,VE2BIN,Eric Preston,,Montreal,Quebec,Canada,DMR
+3022332,VA2PBI,Pierre Beaulieu,,Montreal,Quebec,Canada,DMR
+3022333,VE2MDC,Michel C Dore,,Boucherville,Quebec,Canada,DMR
3023001,VE3XF,Steve Jones,,Stayner,Ontario,Canada,Mobile
3023002,VE3KFQ,Doug Hodgson,,Toronto,Ontario,Canada,Mobile
3023003,VE3SAQ,Marshall Mcbride,,Cornwall,Ontario,Canada,Portable
@@ -22691,6 +23118,19 @@ 3023684,VA3JOU,Joseph Golobic,,Newcastle,Ontario,Canada,Other
3023685,VE3CKN,Donald Greene,,Ottawa,Ontario,Canada,DMR
3023686,VE3NN,David Allin Stevens,Dave,Brantford,Ontario,Canada,DMR
+3023687,VA3SFA ,Syed Faisal Akber,Faisal ,Toronto ,Ontario,Canada,DMR
+3023688,VE3YH,Christopher A Foster,,Toronto,Ontario,Canada,DMR
+3023689,VA3OP,Gary Notto,,Hamilton,Ontario,Canada,DMR
+3023690,VE3JSJ,Gordon E Murray,,Hamilton,Ontario,Canada,DMR
+3023691,VE3PPO,George Musikov Musikov,Marshall,Tillsonburg,Ontario,Canada,DMR
+3023692,VA3NTH,Christopher Netherton,,Toronto,Ontario,Canada,DMR
+3023693,VA3CQC,Jeff Rishea Rishea,,Burlington,Ontario,Canada,DMR
+3023694,VE3VDK,Joseph Peter Valente,,Brampton,Ontario,Canada,DMR
+3023695,VE3SCP,Scott C Price,,Grand Valley,Ontario,Canada,DMR
+3023696,VA3HP,Gary Allan Chase,,St. Thomas,Ontario,Canada,DMR
+3023697,VE3SLA,Slava Pomerants,Slavap75,Maple,Ontario,Canada,DMR
+3023698,VE3SVE,Sveta Pomerants,Bsvetik,Maple,Ontario,Canada,DMR
+3023699,VA3SU,Kevin Kibbe,,Waterloo,Ontario,Canada,DMR
3024001,VE4RRB,Rob Boux,,Blumenort,Manitoba,Canada,DMR
3024002,VE4RRB,Rob Boux,,Blumenort,Manitoba,Canada,DMR
3024003,VE4AI,Shaun Mcleod,,Winnipeg,Manitoba,Canada,Portable
@@ -22994,6 +23434,9 @@ 3027108,VE7FFP,Robin Fry Fry,,Coquitlam,British Columbia,Canada,DMR
3027110,VE7LPG,Lindsay Gavel,,Vernon,British Columbia,Canada,DMR
3027111,VA7CBD,Duncan Clark,,Nanaimo,British Columbia,Canada,DMR
+3027112,VE7ALB,Christopher Munz-Michielin,,Saanich,British Columbia,Canada,DMR
+3027113,VA7CRO,Dom Kapac,,Victoria,British Columbia,Canada,DMR
+3027114,VE7VSL,Charla Mason,,Victoria,British Columbia,Canada,DMR
3027198,VE7ZZT,Kevin Wright,,New Westminster,British Columbia,Canada,Portable
3027199,VE7ZZT,Kevin Wright,,New Westminster,British Columbia,Canada,Mobile
3028001,VY1CA,Kelly Quocksister,,Whitehorse,Yukon,Canada,Mobile
@@ -23207,6 +23650,10 @@ 3101171,W4SAF,Scott A Fassina,,Fultondale ,Alabama,United States,DMR
3101172,W9SGM,Gary Suckow Suckow,,Toney,Alabama,United States,DMR
3101173,N4UGD,Gregory W Golden,Greg,Mobile,Alabama,United States,DMR
+3101174,W4KXX,Steve Dutton,,Jasper,Alabama,United States,DMR
+3101175,KD4TFP,Nikki Baker Baker,Nikki,Birmingham,Alabama,United States,DMR
+3101176,WD4NBN,William S Baker,Scott,Birmingham,Alabama,United States,DMR
+3101177,KM4KTC,William C Weir,Chris,Madison,Alabama,United States,DMR
3102001,KL2AV,Brian Corty,,Delta Junction ,Alaska,United States,Portable
3102002,KL7PS,Paul Spatzek,,Ancorage,Alaska,United States,Portable
3102003,KL7RW,Ralph Wilkerson,Ralph,Anchorage,Alaska,United States,Portable
@@ -23217,6 +23664,7 @@ 3102008,KL2NL,Jeffrey Kinsman,Jeff,Delta Junction,Alaska,United States,DMR
3102009,AL7U,Andrew Rosenberger,,Chugiak,Alaska,United States,DMR
3102010,KL4GR,Larry A Zuccaro,,Homer,Alaska,United States,DMR
+3102011,KL2JE,Keith Austin,Keith,Anchorage,Alaska,United States,DMR
3104001,WB9EXL,Ron Peters,,Scottsdale,Arizona,United States,Portable
3104002,N7MK,Mark Krotz,,Mesa,Arizona,United States,Portable #1
3104003,N7TWW,Chris Radicke,,Scottsdale,Arizona,United States,Portable #1
@@ -23700,6 +24148,9 @@ 3104485,KG7NCV,David A Waller,,Mesa,Arizona,United States,DMR
3104486,KI7CIX,Rodger L Martens,,Mesa,Arizona,United States,DMR
3104487,KI7UP,Norman Seeley Jr,Normanseeleyjr,Scottsdale,Arizona,United States,DMR
+3104488,W2AD,Norman W Rich Jr Rich,Norm,Phoenix,Arizona,United States,DMR
+3104489,N7UJY,Brian K Lehmann,,Phoenix,Arizona,United States,DMR
+3104490,KG7ISX,Kevin Cockerham,,Goodyear,Arizona,United States,DMR
3105001,N5QM,Robert Garcia,,Little Rock,Arkansas,United States,Portable
3105002,KB6FO,George Roher,,Edgemont,Arkansas,United States,Portable
3105003,W5KEC,Kenneth Carpenter,,Edgemont,Arkansas,United States,Portable
@@ -23892,6 +24343,13 @@ 3105191,KC5GLP,Margaret E Edwards,Liz,Centerton,Arkansas,United States,DMR
3105192,K5FGQ,Curtis Mcdaniel Mcdaniel,,Benton,Arkansas,United States,DMR
3105193,WA7ERY,Frederick D Stufflebeam,,Mountain Home,Arkansas,United States,CCS7
+3105194,W5STO,Brad Stone,,Conway,Arkansas,United States,DMR
+3105195,KG6UFN,Kim C. Callis Callis,,Little Rock,Arkansas,United States,DMR
+3105196,KG5PEB,Thomas S Avery,Tom,Bryant,Arkansas,United States,DMR
+3105197,N5QS,Roger W Gray,,Searcy,Arkansas,United States,DMR
+3105198,N5QT,Dawn Gray,,Searcy,Arkansas,United States,DMR
+3105199,N5GK,Glenn A King,Glenn,Conway,Arkansas,United States,DMR
+3105200,N5QKH,Judy M Hambuchen,Judy,Conway,Arkansas,United States,DMR
3106001,K6EH,Paul Metzger,,Downey,California,United States,Portable #1
3106002,K6EH,Paul Metzger,,Downey,California,United States,Mobile
3106003,K6EH,Paul Metzger,,Downey,California,United States,Base
@@ -25759,6 +26217,54 @@ 3107874,AG6YH,Daniel K Humlick,,Yuba City,California,United States,DMR
3107875,KJ6UJO,Philip M Malouf,Phil,San Pedro,California,United States,DMR
3107876,KJ6LEO,David M Pugh,David,Milpitas,California,United States,DMR
+3107877,KM6ECD,Justin D Slatten Slatten,,Poway,California,United States,DMR
+3107878,KE6CAG,Theodore R. Jones Jr. Jones Jr.,Theodore R.,Inglewood,California,United States,CCS7
+3107879,K6IJ,Frederic K Honnold,,Pine Grove,California,United States,CCS7
+3107880,KE6EQJ,William S Tracy,Bill,Glendale,California,United States,DMR
+3107881,WB6AJX,Douglas J Huggard,Doug,Ramona,California,United States,DMR
+3107882,N6JDS,Justin Slatten,Justin,Poway,California,United States,DMR
+3107883,W6ARH,Alan Hill,Alan.R.Hill,Huntington Beach,California,United States,DMR
+3107884,KE6BK,Eddie A Orosco,,Porterville,California,United States,DMR
+3107885,KK6SEI,Kerop Manoukian,,Valley Village,California,United States,DMR
+3107886,KF6QNC,Kurt Kiesow,,San Jose,California,United States,DMR
+3107887,WB6PFJ,James Branum,,San Jose,California,United States,DMR
+3107888,WW6SE,Steven Elliott,,Redwood City,California,United States,DMR
+3107889,AG6ZH,Richard Souza,,San Jose,California,United States,DMR
+3107890,K6KWR,Keith Riley,,Orinda,California,United States,DMR
+3107891,KJ6ROT,Jason U Abando,,Canoga Park,California,United States,DMR
+3107892,K6BAA,Bruce Anderson,,Rocklin,California,United States,DMR
+3107893,KI6BEQ,David Eklove,,Pittsburg,California,United States,DMR
+3107894,KE6FIQ,John Hart,,Grass Valley,California,United States,DMR
+3107895,NN6H,Tom Newman,,Discovery Bay,California,United States,DMR
+3107896,KT6Y,Jay Caldis,,Walunut Creek,California,United States,DMR
+3107897,K4NZD,Adam Arzani,,Hawthorne,California,United States,DMR
+3107898,N6HRO,Jon Ham Radio Outlet Sunnyvale Arc,Hro,Sunnyvale,California,United States,DMR
+3107899,KC7VFT,Melanie A Mariotti,,Westminster,California,United States,DMR
+3107900,WB9RER,Duane A Mariotti,,Westminster,California,United States,DMR
+3107901,W9KKN,William D Fehring,Bill,Sunnyvale,California,United States,DMR
+3107902,KA6SIP,Tom Deeble,,Antioch,California,United States,DMR
+3107903,KK6POK,Joseph Chiu,,San Gabriel,California,United States,DMR
+3107904,K6KPQ,Nathan Dinitz,,Palo Alto,California,United States,DMR
+3107905,K6TMS,Tommy Seidel,,Palo Alto,California,United States,DMR
+3107906,KA5HPZ,Jeffrey Cornehl,,San Jose,California,United States,DMR
+3107907,KB6BA,Oliver Barrett,,Sunnyvale,California,United States,DMR
+3107908,KK6PLC,Jeff Moore,,San Jose,California,United States,DMR
+3107909,W6OSS,John B Goss,Johnny B,Twentynine Palms,California,United States,DMR
+3107910,KE6RRU,Dan Cater,,San Jose,California,United States,DMR
+3107911,KD6DRS,Devin D Butterfield,,Corona,California,United States,DMR
+3107912,KA6UIX,Jeff L Norris,,Redwood City,California,United States,DMR
+3107913,KE6RRU,Dan R Cater,,San Jose,California,United States,DMR
+3107914,W6RHJ,Cheryl A Miller,Cheryl2,Redwood City,California,United States,DMR
+3107915,KC6OGK,Lawrence A Altomare,,Alameda,California,United States,DMR
+3107916,AK6O,Rodolfo Ramos,Rod,Sacramento,California,United States,DMR
+3107917,K2KK,Salahuddin A Kamran,,San Francisco,California,United States,DMR
+3107918,AI6SX,Eric Zeller,,Rohnert Park,California,United States,DMR
+3107919,W6OSO,Michael R Anderson,,Moreno Valley Ca.,California,United States,DMR
+3107920,KK6VZO,Denny G Viloria,,Fresno,California,United States,DMR
+3107921,KC3BQL,James W Alley,,San Clemente,California,United States,CCS7
+3107922,N6AYF,Steven Hronek Hronek,Steve,La Canada,California,United States,DMR
+3107923,N6HEW,Glen T Caine,,Fresno,California,United States,DMR
+3107924,AE6GM,Richard J Murdock,Jeff,Carlsbad,California,United States,DMR
3108001,NR2Y,Marinus Jacobs,,Colorado Springs,Colorado,United States,Portable
3108002,WA2YZT,Paul Deeth,,Golden,Colorado,United States,Mobile
3108003,K0JSC,Jeff Carrier,,Canon City,Colorado,United States,Portable #1
@@ -26412,7 +26918,7 @@ 3108653,KD0FKN,Jesse ,Jesse,Loveland,Colorado,United States,
3108654,KD0GWU,Kirsten ,Kirsten,Loveland,Colorado,United States,
3108655,KD0ZMI,Alexander ,KD0ZMI,Denver,Colorado,United States,
-3108656,KE0CNI,Cary ,Cary,Wellington,Colorado,United States,
+3108656,W0SJR,Cary Rutherford,Cary,Wellington,Colorado,United States,DMR
3108657,W5IDT,Isaac Trujillo,Isaac,Westminster,Colorado,United States,
3108658,KE0CWM,Jay Jay Preston Davis,Jay,Fort Collins,Colorado,United States,
3108659,K0AE,John Polson,John,Denver,Colorado,United States,
@@ -26574,10 +27080,10 @@ 3108816,KE0HGS,Jeffrey B Potter,Jeff,Aurora,Colorado,United States,DMR
3108817,KD0YMC,Robert Ray,,Colorado Springs,Colorado,United States,DMR
3108818,KJ6DMS,David M Smith,,Colorado Springs,Colorado,United States,DMR
-3108819,KE0RCJ,Richard Jones,,Castle Rock,Colorado,United States,DMR
+3108819,N0RCJ,Richard Jones,,Castle Rock,Colorado,United States,DMR
3108820,K9MAP,Jeremy T Williams,,Castle Rock,Colorado,United States,CCS7
3108821,KE0OC,Thomas S Evans,,Lakewood,Colorado,United States,DMR
-3108822,K0ATF,James Winchester Winchester,James,Castle Rock,Colorado,United States,DMR
+3108822,K0ATF,James W Winchester,Jim,Castle Rock,Colorado,United States,DMR
3108823,W0ARP,Wayne R Graves Graves,Wayne,Parker,Colorado,United States,DMR
3108824,N0CFM,Robert F Polson,,Westminster,Colorado,United States,DMR
3108825,K0BJR,Brad Ramsey Ramsey,,Westminster,Colorado,United States,DMR
@@ -26590,7 +27096,7 @@ 3108832,KD0BES,John F Murphy,,Berthoud,Colorado,United States,DMR
3108833,KC0GBH,Timothy K Rader,,Aurora,Colorado,United States,DMR
3108834,KD0TRY,Ronald M Coffee,,Highlands Ranch,Colorado,United States,DMR
-3108835,K0ATF,James Winchester Winchester,Jim,Castle Rock,Colorado,United States,DMR
+3108835,K0ATF,James W Winchester,Jim,Castle Rock,Colorado,United States,DMR
3108836,KD0EUH,Boston Cartwright,,Castle Rock,Colorado,United States,DMR
3108837,W0AKO,Adam Cartwright,,Castle Rock,Colorado,United States,DMR
3108838,K0PET,Pete E Thompson,,Littleton,Colorado,United States,DMR
@@ -26606,6 +27112,10 @@ 3108848,KF6AAR,John C Anderson,,Littleton,Colorado,United States,DMR
3108849,N0MEU,Jay R Witthuhn,,Thornton,Colorado,United States,DMR
3108850,KD0QLV,Keith Barto,,Littleton,Colorado,United States,DMR
+3108851,KC2VJW,Benjamin A Matthews,,Boulder,Colorado,United States,DMR
+3108852,N0DRC,Dustin Cox,,Trinidad,Colorado,United States,DMR
+3108853,N0PKT,Jerrold F Cummings,Jay,Colorado Springs,Colorado,United States,DMR
+3108854,AC0SL,Dorian M Silva,,Denver,Colorado,United States,DMR
3109001,WA2WCB,Michael D. Arsenie,,Roxbury,Connecticut,United States,Portable
3109002,N1MCC,Kit Kocielo,,Old Lyme,Connecticut,United States,Portable
3109003,N1MCC,Kit Kocielo,,Old Lyme,Connecticut,United States,Mobile
@@ -27198,6 +27708,19 @@ 3109591,W1INF,Bob Arrl Hq Operators Club,,Newington,Connecticut,United States,DMR
3109592,K1TSB,Timothy Belmonte,,Tolland,Connecticut,United States,DMR
3109593,K1JFT,John F Turner,,Putnam,Connecticut,United States,DMR
+3109594,KC1EKZ,Michael A Radford,,Cheshire,Connecticut,United States,DMR
+3109595,KC1EKZ,Michael A Radford,,Cheshire,Connecticut,United States,DMR
+3109596,KB1VBB,William East Granby Emergency Communications Tea,,East Granby,Connecticut,United States,DMR
+3109597,N1UIS,Austin Mongillo,,Southington,Connecticut,United States,DMR
+3109598,N1QLN,Michael F Sanders,Mike,New Britain,Connecticut,United States,DMR
+3109599,KC1CHB,Region 1 Demhs,,Bridgeport,Connecticut,United States,DMR
+3109600,KC1CHB,Region 2 Demhs,,Middletown,Connecticut,United States,DMR
+3109601,KC1CHB,Region 3 Demhs,,Hartford,Connecticut,United States,DMR
+3109602,KC1CHB,Region 4 Demhs,,Colchester,Connecticut,United States,DMR
+3109603,KC1CHB,Region 5 Demhs,,Waterbury,Connecticut,United States,DMR
+3109604,KC1CHB,Armory Eoc Demhs,,Hartford,Connecticut,United States,DMR
+3109605,KC1BWR,Gregory E Hanson,Greg,Milford,Connecticut,United States,DMR
+3109606,KB1OQR,Stuart I Cobb,,Willington,Connecticut,United States,DMR
3110001,N2VRQ,David Larson,,Bear,Delaware,United States,DMR
3110002,KB3WQH,Robert Dobie,,Newark,Delaware,United States,Portable
3110003,KC3BNZ,Street, Earl,,Claymont,Delaware,United States,Portable
@@ -27216,6 +27739,7 @@ 3110016,K3JCT,John C Tillinghast,,Magnolia,Delaware,United States,DMR
3110017,N3YDN,Edward P Aragon,,Bear,Delaware,United States,DMR
3110018,KB3REU,Michael Federico,Mike,Bear,Delaware,United States,DMR
+3110019,N3OB,Edward L Porter Porter,Ed,Millsboro,Delaware,United States,DMR
3111001,W2NJS,Tom Donohoe,,Washington,District of Columbia,United States,Portable
3111002,W3DCA,Michael Kiron,,Washington,District of Columbia,United States,Mobile
3111003,WA1ESQ,Jason Wareham,,Washington,District of Columbia,United States,Portable
@@ -27780,7 +28304,7 @@ 3112552,AE4WG,Warren Greenberg,,Ormond Beach,Florida,United States,Portable
3112553,KB4T,Frank Haas,,Holly Hill,Florida,United States,Mobile
3112554,KE4QYM,David Lawton,,Jacksonville,Florida,United States,Portable
-3112555,KE4FZM,Duane Taylor,,Jacksonville,Florida,United States,Portable
+3112555,W4FZM,Duane Taylor,,Jacksonville,Florida,United States,DMR
3112556,N4ZZN,Gregory Geist,,DeLand,Florida,United States,Portable
3112557,W4RBW,Frank Halas,,Naples,Florida,United States,Portable
3112558,KB4LSL,Joseph T.ryba,,Crestview,Florida,United States,Mobile
@@ -27861,7 +28385,7 @@ 3112633,WQ4M,Donna J. Barker,,Tallahassee,Florida,United States,Portable
3112634,WQ4M,Donna J. Barker,,Tallahassee,Florida,United States,Mobile
3112635,N4XUX,William Allen,,hilliard,Florida,United States,Portable
-3112636,KB1PA,Barry Porter,,Delray Beach,Florida,United States,Non-DMR
+3112636,KB1PA,Barry Porter,,Delray Beach,Florida,United States,DMR
3112637,K1CW,Michael Gibbemeyer,,Deerfield Beach,Florida,United States,Portable
3112638,KL7HX,Glenn Alvord,,Sarasota,Florida,United States,Portable
3112639,WA2PVI,Nicholson David J,,St James City,Florida,United States,Mobile
@@ -28614,7 +29138,6 @@ 3113395,KM4WEK,Robert J Bennett,Bob,Dallas,Georgia,United States,DMR
3113396,KA4HLE,Richard A Taylor,,Marietta,Georgia,United States,DMR
3113397,KM4KPI,Jeffrey D Hochberg,,Atlanta,Georgia,United States,DMR
-3113398,KW4KWJ,Kevin W Jones,,Gainesville,Georgia,United States,DMR
3113399,KM4VGM,Brian Cleary,,Milton,Georgia,United States,DMR
3113400,AB4MM,Marvin A Mealer,,Tunnel Hill ,Georgia,United States,DMR
3113401,KG4TTT,Jeffrey K Palmer,,Cumming,Georgia,United States,DMR
@@ -28636,6 +29159,11 @@ 3113417,KW4WP,Stephen Smith,,Stone Mountain,Georgia,United States,DMR
3113418,KE4FAT,Joseph Perry,Joe,Saint Marys,Georgia,United States,DMR
3113419,K4ZRI,Shawn Walsh Walsh,,Canton,Georgia,United States,DMR
+3113420,KM4UJP,Jonathan Goodson Goodson,Jonathan,Avondale Est,Georgia,United States,DMR
+3113421,KM4YHN,Houston Davidson,Houston,Austell,Georgia,United States,DMR
+3113422,KC3DEZ,William G Jones,Bill,Saint Marys,Georgia,United States,DMR
+3113423,N1PDR,Robert J Alred,,Marietta,Georgia,United States,DMR
+3113425,KK4KHS,Robert M Smith,,Lilburn,Georgia,United States,DMR
3115001,NH7YS,Tad Miura,,Lihue,Hawaii,United States,Mobile
3115002,KH6DQ,Jack Tsujimura,,Honolulu,Hawaii,United States,Portable
3115003,AH6PR,Mark Pascal,,Kailua,Hawaii,United States,Portable
@@ -28858,6 +29386,8 @@ 3116045,W7ELE,Richard A Wagner,,Mccall,Idaho,United States,DMR
3116046,W7AMI,Terry L Dobler,,Boise,Idaho,United States,DMR
3116047,N7BMH,Brian M Hamilton,Backroad Explorer,Mccall,Idaho,United States,DMR
+3116048,KG7VMB,Patrick M Mclaughlin,Patwackp01,Boise,Idaho,United States,DMR
+3116049,W6LOR,Mandi Grantham,,Middleton,Idaho,United States,DMR
3117001,KB9LIQ,Ben Manley,,Moweaqua,Illinois,United States,Portable
3117002,KB9LIQ,Ben Manley,,Moweaqua,Illinois,United States,V-Portable
3117003,KB9LIQ,Ben Manley,,Moweaqua,Illinois,United States,V/U Mobiles
@@ -29599,6 +30129,18 @@ 3117740,WB9RKD,Jeffrey Hopkins,,Lake Villa,Illinois,United States,DMR
3117741,N9NLE,Donald H Bryant,,West Dundee,Illinois,United States,DMR
3117742,N9EMS,Richard A Vanderwerker,Rich,Antioch,Illinois,United States,DMR
+3117743,N9VHL,Christopher N Wewetzer,,Bethalto,Illinois,United States,CCS7
+3117744,KC9IFP,Robert J Stallwitz,Bob,Pekin,Illinois,United States,DMR
+3117745,KC9AYH,John E Lichtenauer,,Antioch,Illinois,United States,DMR
+3117746,WB9RKD,Jeffrey Hopkins,Jeff,Lake Villa,Illinois,United States,DMR
+3117747,KD9FAC,Shannon P Mcmahon,,Urbana,Illinois,United States,DMR
+3117748,KC9IMF,Alan Moyzis,,Chicago,Illinois,United States,DMR
+3117749,KD9GYW,Charles A Miggins,Chuck,Chicago,Illinois,United States,DMR
+3117750,KD9GYW,Charles A Miggins,Chuck,Chicago,Illinois,United States,DMR
+3117751,KU9Z,Adam A Strack,,Evanston,Illinois,United States,DMR
+3117752,KC9DNH,Brandon F Krozel,,Antioch,Illinois,United States,DMR
+3117753,N9OZB,Aaron A Collins,,Arlington Heights,Illinois,United States,DMR
+3117754,KB9MAC,Kent Vanderploeg,,Minooka,Illinois,United States,DMR
3118001,KK9EJ,Ej Caylor,,Noblesville,Indiana,United States,Portable
3118002,KG9NN,Robert Long,,Auburn,Indiana,United States,Portable
3118003,KC8PTE,David Wild,,Bloomington,Indiana,United States,Portable
@@ -29696,7 +30238,7 @@ 3118095,NA9L,Vernon Austermiller,,Mooresville,Indiana,United States,Portable
3118096,KA9PAZ,Samuel Cummings,,Plainfield,Indiana,United States,Mobile
3118097,KB9RBF,Michael Carmer,,Indianapolis,Indiana,United States,Portable
-3118098,WC9D,Mark Buchanan,,Carmel,Indiana,United States,DMR
+3118098,K9WTH,Mark Buchanan,,Carmel,Indiana,United States,DMR
3118099,WV9O,Marvin Boetcher,,Hobart,Indiana,United States,Portable
3118100,KC9RTJ,Jayson Bauernfiend,,Mooresville,Indiana,United States,Portable
3118101,KE9TC,Kenneth Brown,,Crown Point,Indiana,United States,Portable
@@ -30086,7 +30628,7 @@ 3118485,WB9EMT,Andrew Baugh,Andrew,Walkerton,Indiana,United States,
3118486,NU9I,David Kaufman,Dave,Walkerton,Indiana,United States,
3118487,K9ITX,Glenn Bickett,Glenn,Lafayette,Indiana,United States,
-3118488,KD9FJQ,Greg Haschel,Greg,Argos,Indiana,United States,DMR
+3118488,W9GND,Greg Haschel,Greg,Argos,Indiana,United States,DMR
3118489,W9KXP,Mike Townsend,Mike,Evansville,Indiana,United States,
3118490,KB9BCO,Charles Ewing,Chuck,Harlan,Indiana,United States,
3118491,KD9BCO,Charles Ewing,Chuck,Harlan,Indiana,United States,
@@ -30368,6 +30910,15 @@ 3118768,KC9URP,David P Keiser,,Greenfield,Indiana,United States,DMR
3118769,KC9JOU ,Kevin Blum,,Whiteland,Indiana,United States,DMR
3118770,KC9KTV,James B Beckner,,Rensselaer,Indiana,United States,DMR
+3118771,K9BRO,Jeffrey M Brown,,Morocco,Indiana,United States,DMR
+3118772,KD9ECG,Timothy G Renshaw,,New Palestine,Indiana,United States,DMR
+3118773,N9NGB,Keith Smith Smith,,Jeffersonville,Indiana,United States,DMR
+3118774,KC9FVE,Donald R Cannon,,Sellersburg,Indiana,United States,DMR
+3118775,KC9CUY,Andrew J Fager,Aj,Greenfield,Indiana,United States,DMR
+3118776,N9ALD,Aaron L Donaldson,,Indianapolis,Indiana,United States,DMR
+3118777,KB9OGU,Harold W. Williams Williams,,Morocco,Indiana,United States,DMR
+3118778,KD9FQT,Matthew T Knouff Knouff,,Lafayette,Indiana,United States,DMR
+3118779,K9GX,Mark S Williams,,Elizabeth,Indiana,United States,DMR
3119002,WD0FIA,Keith Carpenter,Keith,Bridgewater,Iowa,United States,
3119003,W0DT,Donald Talaska,,Cedar Falls,Iowa,United States,Portable
3119004,KD0WY,Roger Gorzney,,CLINTON,Iowa,United States,Mobile
@@ -30400,6 +30951,7 @@ 3119031,N0SKF,Dusty L Proctor,,Ottumwa,Iowa,United States,CCS7
3119032,AD0AM,Adam R Rennison,,Dyersville,Iowa,United States,Other
3119033,AD0AM,Adam R Rennison,,Dyersville,Iowa,United States,CCS7
+3119034,N0ZJT,Eric A Grams,,Oelwein,Iowa,United States,DMR
3119100,WB0VHB,Randy Nelson,,Mt. Union,Iowa,United States,Mobile #1
3119101,K0TSK,Timothy Kilbride,,Victor,Iowa,United States,Portable
3119102,K7PEM,Paul Mccoy,,Anamosa,Iowa,United States,Portable
@@ -30533,6 +31085,13 @@ 3120091,KD0IJT,John Ross,,Prairie Village,Kansas,United States,DMR
3120092,KE0AOU,David W Gamel,,Merriam,Kansas,United States,DMR
3120093,KC0PUK ,John A Borzen,,Mission ,Kansas,United States,DMR
+3120094,KU0FAN,Bradley W Kelsey,,Prairie Village,Kansas,United States,DMR
+3120095,KB0UIP,William S England,,Basehor,Kansas,United States,DMR
+3120096,N0FB,Jay H Burgherr,Jay,Olathe,Kansas,United States,DMR
+3120097,NM0N,Thomas J Rhodelander,,Shawnee,Kansas,United States,DMR
+3120098,WD0GQA,Charles R Lovgren,Charlie,Kansas City,Kansas,United States,DMR
+3120099,K0IMP,Allen B Rawitch,Al,Stilwell,Kansas,United States,DMR
+3120100,NM0N,Thomas J Rhodelander,Tom,Shawnee,Kansas,United States,DMR
3120101,N0MJS,Cort Buffington,,Lawrence,Kansas,United States,Portable
3120102,KD0CYJ,Shannon Oconnor,,Lawrence,Kansas,United States,Portable
3120103,N0MJS,Cort Buffington,,Lawrence,Kansas,United States,Portable
@@ -30540,6 +31099,7 @@ 3120105,WV0T,Phil Leonard,,Overland Park,Kansas,United States,Portable
3120106,WV0T,Philip Leonard,,Overland Park,Kansas,United States,Mobile
3120107,KC0IDF,Lou Eckler,,Lawrence,Kansas,United States,Portable
+3120108,N0PGH,Brian K Scott,,De Soto,Kansas,United States,DMR
3120109,WD0EMR,Ken Johnson,,Lawrence,Kansas,United States,Portable
3120110,WD0BWE,Don Morris,,Linwood,Kansas,United States,Portable
3120113,KA2RZO,Rob Perez,,Lawrence,Kansas,United States,Portable
@@ -30696,7 +31256,7 @@ 3121078,KC8VYJ,Trevor T Shibley,,Crescent Springs,Kentucky,United States,DMR
3121079,KC8VYJ,Trevor T Shibley,,Erlanger,Kentucky,United States,DMR
3121080,KC4ALV,Anthony L Drane,,Louisville,Kentucky,United States,DMR
-3121081,KK4QL,Kenneth T Son,,Etown,Kentucky,United States,DMR
+3121081,KK4QL,Kenneth T Son .,,Elizabethtown,Kentucky,United States,DMR
3121082,K4TCD,Thomas C Dennis,Cecil,Covington,Kentucky,United States,DMR
3121083,KI4FRJ,Billy D Pennington,,London,Kentucky,United States,DMR
3121084,KI4JWK,Robert G Brown,Bob,Lexington,Kentucky,United States,DMR
@@ -30811,12 +31371,18 @@ 3121193,KK4FIH,William E Downs,Bill,Louisville,Kentucky,United States,DMR
3121194,KM4VHI,Bruce W Cory,,Barbourville,Kentucky,United States,DMR
3121195,KK4UDJ,Billy L England,,Richmond,Kentucky,United States,DMR
-3121196,WA4UIF,Toby E Wofford,,Rockfield,Kentucky,United States,DMR
3121197,KJ4HEF,Revil Pharris,Jay,Louisville,Kentucky,United States,DMR
3121198,KI4UMF,Tim J Morgan,,Whitley,Kentucky,United States,DMR
3121199,W4ALD,Austin L Denyer,Ozz,Prestonsburg,Kentucky,United States,DMR
3121200,KC4ZMZ,William M Shive,Bill,Goshen,Kentucky,United States,DMR
3121201,KI4QQF,Tristan D Wilson,,Versailles,Kentucky,United States,DMR
+3121202,AD4WB,Randall E Gilreath,Randy,Strunk,Kentucky,United States,DMR
+3121203,AG4ST,Philip R Boerger,,Lawrenceburg,Kentucky,United States,Other
+3121204,KM4RGU,Anthony A Coker,,Lexington,Kentucky,United States,DMR
+3121205,W4VJE,James H Ball,,East Point,Kentucky,United States,DMR
+3121206,KB4CF,Daniel W Hund,,Louisville,Kentucky,United States,DMR
+3121207,KK4AHJ,James W Mills,,Utica,Kentucky,United States,DMR
+3121208,AG4ST,Philip R Boerger,,Lawrenceburg,Kentucky,United States,DMR
3122001,KD5SSQ,Anthony Tango,,Covington,Louisiana,United States,Portable
3122002,W5ELM,Earl Morrow,,Oberlin,Louisiana,United States,Portable
3122003,KB5UDF,Jean Boudreaux,,Lafayette,Louisiana,United States,Portable
@@ -30848,9 +31414,11 @@ 3122030,KF5HQB,Cameron S Smith,Camo,Haughton,Louisiana,United States,DMR
3122031,KF5HQB,Cameron S Smith,Camo,Haughton,Louisiana,United States,CCS7
3122032,W5TMP,Terry M Partigianoni,,Leesville,Louisiana,United States,CCS7
-3122033,KG5NGJ,Troy L Rogers,,Winnfield,Louisiana,United States,DMR
+3122033,K5TLR,Troy L Rogers,,Winnfield,Louisiana,United States,DMR
3122034,WB5CCO,Richard W Wheat,Rick,Bush,Louisiana,United States,DMR
3122035,WA5KBH,Deacon George Carr Carr,,Lake Charles,Louisiana,United States,DMR
+3122036,KG5BTN,James E Ogden,,Bastrop,Louisiana,United States,DMR
+3122037,KG5PRP ,Sandra R Griffin,Renee,West Monroe,Louisiana,United States,DMR
3123001,N1XBM,Robert Newberry,,Raymond,Maine,United States,Portable
3123002,WJ1D,James Delancy,,Saint Francis,Maine,United States,Portable
3123003,WJ1D,James Delancy,,Saint Francis,Maine,United States,Mobile
@@ -31084,7 +31652,7 @@ 3123232,NT1N,William A Akins,Bill,Winthrop,Maine,United States,DMR
3123233,K1SRE,Mark F Reinen,Mark,Phippsburg,Maine,United States,Other
3123234,W1JIW,Joseph I Wallingford,Ian,Minot,Maine,United States,DMR
-3123235,KF1G,Leroy A Jason,,Steep Falls ,Maine,United States,DMR
+3123235,KF1G,Lee Jason,,Steep Falls ,Maine,United States,DMR
3123236,W1OCA,Robert Gould,,South Paris,Maine,United States,DMR
3123237,N1ZNJ,Gary L Gilman,,Naples,Maine,United States,DMR
3123238,WA1REQ,Michael Pushard,,Newport,Maine,United States,DMR
@@ -31131,6 +31699,11 @@ 3123279,KC1DI,David O Rowe,Dave,Gorham,Maine,United States,DMR
3123280,KB1HUU,David R Francoeur,,Alfred,Maine,United States,DMR
3123281,W2VAN,Michael Mooney,,Portland,Maine,United States,DMR
+3123282,K1AQE,Courtney P Chandler,,Fairfield,Maine,United States,DMR
+3123283,N1NOW,Jon K Rowe,,Vassalboro ,Maine,United States,DMR
+3123284,N1BMB,Daryl W Cook,,Scarborough,Maine,United States,DMR
+3123285,KC1FLF,Sean P Brown,,Bingham,Maine,United States,DMR
+3123286,W1XXV,Joseph Shortill,,East Waterboro,Maine,United States,DMR
3124001,N3LHD,Tom Provenza,,Davidsonville,Maryland,United States,Portable & Mobile
3124002,N3LHD,Tom Provenza,,Davidsonville,Maryland,United States,Control Station
3124003,N3LHD,Tom Provenza,,Davidsonville,Maryland,United States,Demo
@@ -31391,6 +31964,8 @@ 3124258,W3JSD,John J Pecoraro,,Laurel,Maryland,United States,DMR
3124259,KC3BWH,Walter S Mangra,,Bowie,Maryland,United States,Other
3124260,KB3WRT,Larry L Goodwin,,Laytonsville,Maryland,United States,DMR
+3124261,KC3HSY,Carlos M Pacho,,Bethesda,Maryland,United States,DMR
+3124262,KA3YSN,Michael F Delauney,,Baltimore,Maryland,United States,DMR
3125001,W1NAU,Tim Nau,,Boston,Massachusetts,United States,Portable
3125002,KT1U,Vivian Podsiadlo,,Mendon,Massachusetts,United States,Portable
3125003,AE1C,Jim Podsiadlo,,Mendon,Massachusetts,United States,Mobile
@@ -31758,7 +32333,7 @@ 3125366,N1PMA,Craig A Gagne,,Granby,Massachusetts,United States,DMR
3125367,W1ATF,Philip M Clark,Phil,Framingham,Massachusetts,United States,DMR
3125368,KC1DBH,Andrew Dimare,,Marblehead,Massachusetts,United States,DMR
-3125369,KB1OBG,Kevin J Lisciotti,,Shrewsbury,Massachusetts,United States,DMR
+3125369,W1KJL,Kevin J Lisciotti,,Shrewsbury,Massachusetts,United States,DMR
3125370,KB1GTG,Jorge J Colina,,Bass River,Massachusetts,United States,DMR
3125371,WA1DRQ,Robert J Zylinski,Bob,Sandwich,Massachusetts,United States,DMR
3125372,KB1YAP,Art Wilcox,,Dennis,Massachusetts,United States,DMR
@@ -31794,7 +32369,21 @@ 3125402,N1PMB,Donald T Manley,,New Bedford,Massachusetts,United States,DMR
3125403,KB1KLA,Keith G Vetreno,,Sudbury,Massachusetts,United States,DMR
3125404,W2FBI,Michael A Mcginty,,Sandwich,Massachusetts,United States,DMR
+3125405,W2FBI,Michael Mcginty,Mike,Sandwich,Massachusetts,United States,DMR
3125406,KC1GGN,Glenn A Mcginty,,Sandwich,Massachusetts,United States,DMR
+3125407,N2YHK,John Ruggiero,,Worcester,Massachusetts,United States,DMR
+3125408,N1NIG,John Palaima,,Beverly,Massachusetts,United States,DMR
+3125409,N1GSC,David G Earle,,Beverly,Massachusetts,United States,DMR
+3125410,N1GSC,David G Earle,,Beverly,Massachusetts,United States,DMR
+3125411,KB1QHV,Bill T Thompson,Trish,Malden,Massachusetts,United States,DMR
+3125412,N1YHS,Ralph Swenson,,East Falmouth,Massachusetts,United States,DMR
+3125413,W1EXP,W1EXP-JOTA  Barnstable Amateur Radio Club,,Osterville,Massachusetts,United States,DMR
+3125414,W1KQ,JJ Martin,,Dracut,Massachusetts,United States,DMR
+3125415,KB1IHU,Chuck Cotnoir,,Vineyard Haven,Massachusetts,United States,DMR
+3125416,K1RWS,Ricghard T Macdonald Macdonald,Dick,Hopedale,Massachusetts,United States,DMR
+3125417,KC1EFX,Anthony R Gould,Tony,Edgartown,Massachusetts,United States,DMR
+3125418,KC1JET,James E Tynan,,Rehoboth ,Massachusetts,United States,DMR
+3125419,WS1K,Jonathan H Jesse,Jon,Plymouth,Massachusetts,United States,DMR
3126001,N8CN,Joe Erlewein,,Traverse City,Michigan,United States,Portable
3126002,KD8EYF,David Kierzkowski,,Detroit,Michigan,United States,Portable#1
3126003,W8FSM,Fred Moses,,Fenton,Michigan,United States,Portable #1
@@ -32748,6 +33337,10 @@ 3126952,AB8DT,Ronald J Karger,,Cedar Springs,Michigan,United States,CCS7
3126953,AB8DT,Ronald Karger,Ron,Cedar Springs,Michigan,United States,DMR
3126954,KD8AYE,Kirk P Graham,,Big Rapids,Michigan,United States,DMR
+3126955,KC8MDM,Donald L Vanderkooi,,Norton Shores,Michigan,United States,DMR
+3126956,N8NOE,Jeffrey M Swiger,,Waterford,Michigan,United States,DMR
+3126957,KC8SZS,Stephen C Folk,,Clinton Township,Michigan,United States,DMR
+3126958,AC8JN,Frank Dusenbury Dusenbury,,Flint,Michigan,United States,DMR
3127001,N0NMZ,Shep Shepardson,,Roseville,Minnesota,United States,Mobile
3127002,NH7CY,Jason Ballesteros,,Saint Paul,Minnesota,United States,Portable
3127003,NH7CY,Jason Ballesteros,,Saint Paul,Minnesota,United States,Demo
@@ -32985,11 +33578,11 @@ 3127238,KD0MLO,Harold Middleton,Harold,Brooklyn Center,Minnesota,United States,DMR
3127239,WY0H,Steven J Bernhardt,,Lakeville,Minnesota,United States,DMR
3127240,KE0OR,Daniel J Royer,Dan,Bloomington,Minnesota,United States,DMR
-3127241,KC0EQF,Chad J Gross,,Sartell,Minnesota,United States,DMR
+3127241,W0SAV,Chad J Gross,,Sartell,Minnesota,United States,DMR
3127242,KD0DFG,Thomas J Simota,Tom,Eagan,Minnesota,United States,DMR
3127243,KC0RIS,Chris R Zellman,,Cologne,Minnesota,United States,DMR
3127244,KE0CRW,Gregory C Weamer,,Plymouth,Minnesota,United States,DMR
-3127245,KC0EQF,Chad J Gross,,Sartell,Minnesota,United States,DMR
+3127245,W0SAV,Chad J Gross,,Sartell,Minnesota,United States,DMR
3127246,KD0DOS,Thomas H Weyhrauch,Tom,Saint Cloud,Minnesota,United States,DMR
3127247,K9APL,Trenton Lyden Lyden,Trenton,Cottage Grove,Minnesota,United States,DMR
3127248,K0BBC,Matthew T Holden,Matt,Bloomington,Minnesota,United States,DMR
@@ -33006,6 +33599,18 @@ 3127259,KF0DW,Dave A Walden,,Blaine,Minnesota,United States,DMR
3127260,W0GAF,Robert A Jensen,Bob,Oakdale,Minnesota,United States,DMR
3127261,KC0SMO,Paul H Ritter,,Saint Stephen,Minnesota,United States,DMR
+3127262,WJ0L,Randy A Welsand,,St. Cloud,Minnesota,United States,DMR
+3127263,KC0LQL,Tim J Neu,,Lino Lakes,Minnesota,United States,DMR
+3127264,W0DRF,Dan Fredell Fredell,,Excelsior,Minnesota,United States,DMR
+3127265,N0SBU,George D Lavallee,,Hugo,Minnesota,United States,DMR
+3127266,N0SBU,George D Lavallee,,Hugo,Minnesota,United States,DMR
+3127267,KC0TAB,Jesse L Abfalter,,Sartell,Minnesota,United States,DMR
+3127268,WB9CFN,Aaron J Larson,Aj Storm ,Maple Grove ,Minnesota,United States,DMR
+3127269,KB0CEF,Kay M Welsand,,St Cloud,Minnesota,United States,DMR
+3127270,N0JOL,Joe L Showalter,,Isanti,Minnesota,United States,DMR
+3127271,N0JOL,Joe Showalter,,Isanti,Minnesota,United States,DMR
+3127272,KD0DAC,Doug Jungels,,St. Cloud,Minnesota,United States,DMR
+3127273,KC0NPA,Richard G Bopp,,Shakopee,Minnesota,United States,DMR
3128001,KF5MWE,Gary White,,Quitman,Mississippi,United States,Portable
3128002,K5WSM,Lemuel Smith,,Fulton,Mississippi,United States,
3128003,KD4VVZ,General Dailey,,Lucedale,Mississippi,United States,Portable
@@ -33236,6 +33841,18 @@ 3129180,KB0SEP,Branden Richeson Richeson,,Peculiar,Missouri,United States,DMR
3129181,N6TDM,Donald Nutt,Don,Peculiar,Missouri,United States,DMR
3129182,WA0TJT,Keith D Kaiser,,Kansas City,Missouri,United States,DMR
+3129183,W0DMT,Keith Rushing,,Grandview,Missouri,United States,DMR
+3129184,KE0DSV,David Albright,,Kansas City,Missouri,United States,DMR
+3129185,WB0LBZ,Jacob T Mc Ginnis,Chip,Kansas City,Missouri,United States,DMR
+3129186,KE0GRG,Howard C Hoyt,,Lees Summit,Missouri,United States,DMR
+3129187,AD0HW,Gailen L Gillespie,Lee,Peculiar,Missouri,United States,DMR
+3129188,W0WFX,Jeffrey L Miller,,Chilhowee,Missouri,United States,DMR
+3129189,KB0VRM,Gary Herstein Herstein,,Nevada,Missouri,United States,DMR
+3129190,KE0KEY,James Pfeifer Pfeifer,,Aurora,Missouri,United States,DMR
+3129191,W0NQX,Robert R ( Bob ) Brown,Drsm0ke,Kansas City Metro,Missouri,United States,DMR
+3129192,KS1ANG,Judith A Brown,,Kansas City Metro,Missouri,United States,DMR
+3129193,N0NUT,Richard R Brown,,Kansas City Metro,Missouri,United States,DMR
+3129194,KE0FVN,Archiebald Croux,Archie,Belton,Missouri,United States,DMR
3130001,K7MT,Bill Erhardt,Bill,Helena,Montana,United States,DMR
3130002,KG6MQE,Jim Robinson,,Hamilton,Montana,United States,Portable
3130003,AE7OD,Jeff Cherry,,HAMILTON,Montana,United States,Portable
@@ -33812,6 +34429,7 @@ 3132408,K7UAS,John D Dunn,,Reno,Nevada,United States,DMR
3132409,AF7CE,Eric J Christianson,Chris,Cold Springs,Nevada,United States,DMR
3132410,N5TYH,Johnny M Sappington,,Boulder City,Nevada,United States,DMR
+3132411,KD7QDG,James A Deane,,Minden,Nevada,United States,DMR
3133001,NE1B,Bill Barber,,Hudson,New Hampshire,United States,Portable
3133002,NE1B,Bill Barber,,Hudson,New Hampshire,United States,Mobile
3133003,WA2IYO,Pat Barber,,Hudson ,New Hampshire,United States,
@@ -34025,7 +34643,7 @@ 3133211,W1HS,Steve Goldsmith,,Grantham,New Hampshire,United States,CCS7
3133212,N7ECM,Eric Montague,,Hudson,New Hampshire,United States,DMR
3133213,KA1KST,James B Whittaker,,Walpole,New Hampshire,United States,DMR
-3133214,K1RJZ,Richard J Zach,Rick,Gilford,New Hampshire,United States,DMR
+3133214,K1RJZ,Rick Zach,Rick,Gilford,New Hampshire,United States,DMR
3133215,W1BST,LRRA Lakes Region Repeater Association,Lrra,Gilford,New Hampshire,United States,DMR
3133216,KA1VGM,Lawrence A Levesque,Larry,Surry,New Hampshire,United States,DMR
3133217,N1MXJ,Michael J Paulin,,Dublin,New Hampshire,United States,DMR
@@ -34080,6 +34698,18 @@ 3133267,K1FDD,John E Marcel,,Penacook,New Hampshire,United States,DMR
3133268,KB1HHI,Stephen J Kalil,Steve,Bedford,New Hampshire,United States,DMR
3133269,K1UAF,John R Gotthardt,,Wolfeboro,New Hampshire,United States,DMR
+3133270,N1AAM,Scott Larose,,Hudson,New Hampshire,United States,DMR
+3133271,KB1FZN,Dave Law,Dave,Pelham,New Hampshire,United States,DMR
+3133272,W1EBC,Edward H Cunningham,Ed,Candia,New Hampshire,United States,DMR
+3133273,WA1NLR,Bill Thorpe,Bill,Allenstown,New Hampshire,United States,DMR
+3133274,K8TOW,James E Bray,,Hampton,New Hampshire,United States,DMR
+3133275,KC1AMY,Justin D Janvrin,,Seabrook,New Hampshire,United States,DMR
+3133276,N1HNE,Justin T Horan,Tom,Stratham,New Hampshire,United States,DMR
+3133277,KB1YWL,Donald A Richardson,,Nashua,New Hampshire,United States,DMR
+3133278,N1ZGI,Larry Wickens Wickens,Larry,Newmarket,New Hampshire,United States,DMR
+3133279,W1DAY,David E Day,Dave,Epping,New Hampshire,United States,DMR
+3133280,W1QKR,Mark W Barker,,Boscawen,New Hampshire,United States,DMR
+3133281,N1DQQ,Dennis C Donah,Pawnsax,Hudson,New Hampshire,United States,DMR
3134001,K2XTS,Alex Chadis-ny Sysop,,Hoboken,New Jersey,United States,Portable
3134002,K2XTS,Alex Chadis-ny Sysop,,Hoboken,New Jersey,United States,Mobile
3134003,KC2WNG,Israel Goldstein,,East Brunswick,New Jersey,United States,Portable
@@ -34094,7 +34724,7 @@ 3134012,N2OVA,Thomas Dahlstrom,,Bayonne,New Jersey,United States,Portable
3134013,K2KEG,Kyle Grace,,Point Pleasant,New Jersey,United States,Portable #1
3134014,K2KEG,Kyle Grace,,Point Pleasant,New Jersey,United States,Portable #2
-3134015,K2XPX,Bill Johnson,,East Brunswick,New Jersey,United States,Portable
+3134015,K2APX,Bill Johnson,,East Brunswick,New Jersey,United States,DMR
3134016,KC2KLW,Kenneth Link,,Edison,New Jersey,United States,Portable
3134017,W2RN,Tom Marrin,,Wood-Ridge,New Jersey,United States,Portable
3134018,N2RDA,Robert Arms,,Wayne,New Jersey,United States,Portable
@@ -34678,6 +35308,13 @@ 3134596,KD2HWH,Brian Finch Finch,,Moorestown,New Jersey,United States,DMR
3134597,KD2ION,Robert L Scott,Scotty,Paterson,New Jersey,United States,DMR
3134598,KD2JUL,Eric Schwab Schwab,Eric,Toms River,New Jersey,United States,DMR
+3134599,KM4WUD ,Motodmr Network ,,Paramus,New Jersey,United States,Club Fleet
+3134600,KD2LZW,Piotr Gawel,,Bloomfield,New Jersey,United States,DMR
+3134601,KD2LZW,Piotr Gawel,,Bloomfield,New Jersey,United States,DMR
+3134602,AC2ST,Steve R Thomas,Wheeler,Brick,New Jersey,United States,DMR
+3134603,W2HRW,Gary Shore Points Amateur Radio Club,,Brigantine,New Jersey,United States,DMR
+3134604,K1WS,Kenneth W Smalley,,Kinnelon,New Jersey,United States,DMR
+3134605,KD2LZT,Jonathan P Jonach,Jay,Newton,New Jersey,United States,DMR
3135001,N5BG,Larry Griggs,,Virden,New Mexico,United States,Mobile
3135002,N5BG,Larry Griggs,,Virden,New Mexico,United States,Mobile
3135003,N5UBJ,William Van Huss,,Farmington,New Mexico,United States,Mobile
@@ -34745,6 +35382,7 @@ 3135065,K5RHD,Randolph H Diddel,Randy,Albuquerque,New Mexico,United States,CCS7
3135066,KD0WHB,Skyler Fennell Fennell,,Socorro,New Mexico,United States,DMR
3135067,KD0WHB,Skyler Fennell,,Socorro,New Mexico,United States,DMR
+3135068,KG5HDJ,Phil Holland Holland,Phil,Rio Rancho,New Mexico,United States,DMR
3136001,W2KTU,Keivan Keihani,,Fresh Meadows,New York,United States,Portable #1
3136002,N2WGC,Michael Gomez,,Queens,New York,United States,Portable
3136003,K2XTS,Alex Chadis-ny Sysop,,Queens,New York,United States,Portable
@@ -36945,8 +37583,8 @@ 3139204,N8WAC,Tony Everhardt,,Walbridge,Ohio,United States,Mobile
3139205,K8IGU,Brian Snyder,,Luckey,Ohio,United States,Portable
3139206,K8IGU,Brian Snyder,,Luckey,Ohio,United States,Mobile
-3139207,KD8EAD,Justin Drummond,,Londonderry,Ohio,United States,Portable
-3139208,KD8EAD,Justin Drummond,,Londonderry,Ohio,United States,Portable
+3139207,W8JDA,Justin Drummond,,Londonderry,Ohio,United States,DMR
+3139208,W8JDA,Justin Drummond,,Londonderry,Ohio,United States,DMR
3139209,KD8CHP,Jesse Stanley,,Chillicothe,Ohio,United States,Portable
3139210,N8YAE,Michael Kleinfelt,,Walbridge,Ohio,United States,Portable
3139211,N8YAE,Michael Kleinfelt,,Walbridge,Ohio,United States,Mobile
@@ -37594,6 +38232,22 @@ 3139858,W8IH,Steven Mainger Mainger,Steven,Westlake,Ohio,United States,DMR
3139859,KC8MQO,Daniel W Clay,Dan,Columbus,Ohio,United States,DMR
3139860,N8BD,Benjamin J Doran,,Millersport,Ohio,United States,DMR
+3139861,KC8SLZ,Paul L Walker,,Miamisburg,Ohio,United States,DMR
+3139862,AB8OU,Allan Zadiraka Zadiraka,Zeke,Akron,Ohio,United States,DMR
+3139863,N8YD,Adam T Liette,,Greenville,Ohio,United States,DMR
+3139864,KC8MQO,Daniel Clay,Dan,Columbus,Ohio,United States,DMR
+3139865,KE8RIN,Michael R Kerin,,Toledo,Ohio,United States,DMR
+3139866,N8NJ,Larry Weaver,Larry,Northwood,Ohio,United States,DMR
+3139867,W8JKC,Justin Corner,,Canton,Ohio,United States,DMR
+3139868,KC8PNY,Aaron L Orr,,Union City,Ohio,United States,DMR
+3139869,WD9FTZ,Gregory Drezdzon,Zman,Akron,Ohio,United States,DMR
+3139870,WD9FTZ,Gregory Drezdzon,Zman,Akron,Ohio,United States,DMR
+3139871,KE8DPC,Cynthia Thompson,Cat,Wadsworth,Ohio,United States,DMR
+3139872,KB8WVH,Nicholas J Osterwyk,Nick,Westerville,Ohio,United States,DMR
+3139873,KE8FEV,Joshua J Kresser,,Findlay,Ohio,United States,DMR
+3139874,K8CBC,Christopher B Calhoun,,Newark,Ohio,United States,DMR
+3139875,WD8LEI,Eric R Willman,,Bowling Green,Ohio,United States,DMR
+3139876,KK4CTF,Bryan R Snatchko,Eno00wen,Lexington,Ohio,United States,DMR
3140001,AE5DN,Mark Matalik,,Oklahoma City,Oklahoma,United States,Portable
3140002,AE5DN,Mark Matalik,,Oklahoma City,Oklahoma,United States,Mobile
3140003,KE5BDG,Leah Matalik,,Oklahoma City,Oklahoma,United States,Portable
@@ -37925,7 +38579,7 @@ 3140329,KB7QQQ,Samuel Roe Roe,,Midwest City,Oklahoma,United States,DMR
3140330,AA0NI,Daniel M Reynolds,,Oklahoma City,Oklahoma,United States,DMR
3140331,W3RXO,Daniel K Galligan,Dan,Evening Shade,Oklahoma,United States,DMR
-3140332,AG5EU,Jesse M Painter,,Edmond,Oklahoma,United States,DMR
+3140332,KD5JP,Jesse M Painter,,Edmond,Oklahoma,United States,DMR
3140333,K5DLR,David Richard Richard,,Edmond,Oklahoma,United States,DMR
3140334,W5KLD,Kenneth L Drehman,Ken,Bartlesville,Oklahoma,United States,DMR
3140335,WA5ETV,Gary L Mc Cormick,,Okla City,Oklahoma,United States,DMR
@@ -38014,7 +38668,7 @@ 3140418,KG5MBX,Brent W Pendergrass,,Haskell,Oklahoma,United States,DMR
3140419,KG5HSZ,Nathan A Boren,Altus,Norman,Oklahoma,United States,DMR
3140420,WA5SEC,Wayne R Smith,,Sand Springs,Oklahoma,United States,DMR
-3140421,AG5EU,Jesse M Painter,,Edmond,Oklahoma,United States,DMR
+3140421,KD5JP,Jesse M Painter,,Edmond,Oklahoma,United States,DMR
3140422,K5WCA,William C Aycock,,Disney,Oklahoma,United States,DMR
3140423,N5UUA,Jon M Edwards,N5uua-2,Wagoner,Oklahoma,United States,DMR
3140424,N5ZIW,Chris Schuknecht,,Oklahoma City,Oklahoma,United States,DMR
@@ -38022,6 +38676,11 @@ 3140426,KK4EWY,Club User 2 Families Amateur Radio Emergency Service,F.A.R.E.S.,Owasso,Oklahoma,United States,DMR
3140427,KK4EWY,Club User 3 Families Amateur Radio Emergency Service,F.A.R.E.S.,Owasso,Oklahoma,United States,DMR
3140428,KK4EWY,Club User 4 Families Amateur Radio Emergency Service,F.A.R.E.S.,Owasso,Oklahoma,United States,DMR
+3140429,KG5PSX,Tera Simon,,Broken Arrow,Oklahoma,United States,DMR
+3140430,KF5YAP,Michael L Evans,,Mcloud,Oklahoma,United States,DMR
+3140431,KD5WPU,Ronald R Sweeten,,Bartlesville,Oklahoma,United States,DMR
+3140432,KD5WPU,Ronald R Sweeten,,Bartlesville,Oklahoma,United States,DMR
+3140433,K5KBA,James S Broom,,Tulsa,Oklahoma,United States,DMR
3141001,N7MAQ,Jim Hanrahan,,Woodbum,Oregon,United States,Portable
3141002,N7MAQ,Jim Hanrahan,,Woodbum,Oregon,United States,Mobile
3141003,KC7HBU,David Rogers,,Portland,Oregon,United States,Portable
@@ -38128,6 +38787,8 @@ 3141104,KI7EOR,Laura Wickstrand,,Astoria,Oregon,United States,DMR
3141105,K7ZZY,Michael N Norris,Mike,Corbett,Oregon,United States,DMR
3141106,N7ZIM,Gary Zimmerman,,Bend,Oregon,United States,DMR
+3141107,W7BMF,Robert L Burk,,Hammond,Oregon,United States,DMR
+3141108,KF7TPO,Joshua A Thompson,,Warrenton,Oregon,United States,DMR
3142001,N3ST,Bryan Dorbert,,Littlestown,Pennsylvania,United States,Portable
3142002,K4MTP,Mike Priebe,,Effort,Pennsylvania,United States,Mobile
3142003,N3OBL,Frank Smoyer,,Pittsburgh,Pennsylvania,United States,Portable
@@ -38534,6 +39195,15 @@ 3142405,N3EOP,Jamie Christenson,,Pittsburgh,Pennsylvania,United States,DMR
3142406,KC3AAD,George J Silowash,,Greensburg,Pennsylvania,United States,DMR
3142407,KC3GUU,James W Stiver,,Hermitage,Pennsylvania,United States,DMR
+3142408,K3GZ,Gary A Bodnar,,Newtown Square,Pennsylvania,United States,DMR
+3142409,K3VL,Ralph M Geiyer,Mark,Gray,Pennsylvania,United States,DMR
+3142410,W3YI,Juan Jose University Of Pittsburgh Amat Rad Assn,,Pittsburgh,Pennsylvania,United States,DMR
+3142411,N2QDZ,York T Yuen,,Etters,Pennsylvania,United States,DMR
+3142412,W3NRL,Nicholas R Lerro,Nick,Woodlyn ,Pennsylvania,United States,DMR
+3142413,KA3VRW,Philip E Hemenway,,Wellsboro ,Pennsylvania,United States,DMR
+3142414,WB3DLN,Dale L Howey,,Wellsboro,Pennsylvania,United States,DMR
+3142415,KC3FEZ,Richard Weddigen,,Hellertown,Pennsylvania,United States,DMR
+3142416,N3AEP,Ronald E Thompson,,Adamsburg,Pennsylvania,United States,DMR
3144001,KB1ISZ,William Carlson,,Smithfield,Rhode Island,United States,Hytera Portable
3144002,KB1ISZ,William Carlson,,Smithfield,Rhode Island,United States,Hytera Loaner
3144003,KC2FMI,Joseph Miklovic,,North Kingstown,Rhode Island,United States,Portable
@@ -38807,7 +39477,6 @@ 3145237,N2EIO,David Jennings,,Beaufort,South Carolina,United States,Portable
3145238,KI4XS,Wray Lemkle,,Mt. Pleasant,South Carolina,United States,Portable
3145239,K4DWH,Dennis Hyder,,Leesville,South Carolina,United States,Portable
-3145240,KJ4BSM,Nicholas Horvath,,Bluffton,South Carolina,United States,Portable
3145241,KI4ROL,Sherron, David,,Bluffton,South Carolina,United States,Portable
3145242,WA4MPZ,Murray Baughman,,Bluffton,South Carolina,United States,Portable
3145243,KK4GAB,Ryan Spoone,,Hilton Head Island,South Carolina,United States,Portable
@@ -39179,6 +39848,19 @@ 3145614,KE4VFD,Joshua W Caldwell,,Anderson,South Carolina,United States,DMR
3145615,N1JG,John P Gunderson,,Spartanburg,South Carolina,United States,DMR
3145616,KK4KSY,Robert W Froelich,Bob,Myrtle Beach,South Carolina,United States,DMR
+3145617,KM4YFV,Ashley Landreth,,Simpsonville,South Carolina,United States,DMR
+3145618,KM4YFV,Ashley Landreth,,Simpsonville,South Carolina,United States,DMR
+3145619,KM4VIY,Garland M Burgess,Mark,Pickens,South Carolina,United States,DMR
+3145620,KK4SAE,William Seabrook Seabrook,,Woodruff,South Carolina,United States,DMR
+3145621,KM4TWA,James Wegener,,Edgefield,South Carolina,United States,DMR
+3145622,KE7SZV,Daniel R Bjorklund,,Trenton,South Carolina,United States,DMR
+3145623,KM4VIY,Garland M Burgess,Mark,Pickens,South Carolina,United States,DMR
+3145624,KE4OFT,Jimmy W Bowen,,Pickens,South Carolina,United States,DMR
+3145625,KM4WVA,Richard B Morgan,Dick,Charleston,South Carolina,United States,CCS7
+3145626,KE4OFT,Jimmy W Bowen,,Pickens,South Carolina,United States,DMR
+3145627,KK4WIG,Donald J Jackson,Jim,North Augusta,South Carolina,United States,DMR
+3145628,KM4TDM,Jonathan A Williamson,Jono,Lexington,South Carolina,United States,DMR
+3145629,KM4TDM,Jonathan A Williamson,Jono,Lexington,South Carolina,United States,DMR
3146001,KG6JLB,Thomas Rohwer,,Madison,South Dakota,United States,Portable
3146002,AD0BN,Aaron Locker,,Sioux Falls,South Dakota,United States,Portable
3146003,KD0QYR,Dustin Schnabel,,Sioux Falls,South Dakota,United States,Non-DMR
@@ -39190,6 +39872,7 @@ 3146009,N0AYK,Gary E Dahlerup,,Aberdeen,South Dakota,United States,DMR
3146010,KD0TKD,Tyrone D Lee,,Sturgis,South Dakota,United States,DMR
3146011,N2VRQ,David Larson,,Rapid City,South Dakota,United States,DMR
+3146012,K0WXP,Shawn B Pope,,Sioux Falls,South Dakota,United States,DMR
3147001,WB4JGI,Stuart Whitmire,,Cleveland,Tennessee,United States,Portable
3147002,K1LNX,Stephen Brown,,Johnson City,Tennessee,United States,Portable
3147003,K1LNX,Stephen Brown,,Johnson City,Tennessee,United States,Mobile
@@ -39663,6 +40346,14 @@ 3147473,KM4ITW,Barry N Cantrell,,Knoxville,Tennessee,United States,DMR
3147474,KD4VTZ,Jeffrey W Chism,,Lakeland,Tennessee,United States,DMR
3147475,N3SAM,Samuel Lachance,Sam,Chattanooga,Tennessee,United States,DMR
+3147476,W4EAS,Terry L Allen,,Clinton,Tennessee,United States,DMR
+3147477,KM5GT,Greg A Tilford,,Chattanooga,Tennessee,United States,CCS7
+3147478,K4HOS,Norman G Hoskins,,Oliver Springs,Tennessee,United States,DMR
+3147479,KD4IID,Michael Henry,,Quebeck,Tennessee,United States,DMR
+3147480,KB4NK,Bobby E Argo,,Oliver Springs,Tennessee,United States,DMR
+3147481,KM4WYE,Shawn M Horne,,Mooresburg ,Tennessee,United States,DMR
+3147482,KK4PKT,Timmie L Sloan,,La Follette,Tennessee,United States,DMR
+3147483,KB4NK,Bobby E Argo,Bob,Oliver Springs ,Tennessee,United States,DMR
3148001,W5EBQ,Jim Hopper,,Dallas,Texas,United States,
3148002,N4MSE,Jeff Alexander,,Dallas,Texas,United States,
3148003,KE4QLC,Cliff Jenkins,,Commerce,Texas,United States,Portable
@@ -40538,6 +41229,17 @@ 3148873,KA1MZY,Joe Plano,,Universal City,Texas,United States,DMR
3148874,KD2KW,Kenneth E Mitchell,Ken,Oak Point,Texas,United States,DMR
3148875,N7UQ,Charles R Dockery,Chuck,Wylie,Texas,United States,DMR
+3148876,AG5FB,Wayne C Coleman,,Fort Worth,Texas,United States,CCS7
+3148877,KC5AQS,David C Bachus,,San Antonio,Texas,United States,DMR
+3148878,K1DEA,Astin Thomas Thomas,Astin,Houston,Texas,United States,DMR
+3148879,KS5V,Dan Villalanti,Carl,Houston,Texas,United States,DMR
+3148880,KD5S,Kelly G Spencer,,Waskom,Texas,United States,DMR
+3148881,KC5FOG,Frequency Of Galveston Amateur Radio Club,Fogarc,Galveston,Texas,United States,Club Fleet
+3148882,W5SJT,Steve San Angelo Eoc Support Club,,San Angelo,Texas,United States,DMR
+3148883,NX5D,David L Karber,,Mesquite,Texas,United States,DMR
+3148884,KG5ONF,Michael C Jacobson,,Richmond,Texas,United States,DMR
+3148885,KD5GJE,Timothy L Warren,,Lubbock,Texas,United States,DMR
+3148886,KE5UT,Stewart Rabinowitz,,Celina,Texas,United States,DMR
3149001,N6DVZ,Roger Davies,,West Jordan,Utah,United States,Portable
3149002,KC7WSU,Chris Andrist,,Lehi,Utah,United States,DMR
3149003,WR7O,Douglas Datwyler,,Sandy,Utah,United States,Portable
@@ -40630,6 +41332,7 @@ 3149090,W1YMI,Charles R Dickson,,Orem,Utah,United States,DMR
3149091,K1OO,Larry N Myers,,American Fork,Utah,United States,DMR
3149092,KE7DOG,Karen I Anderson,,Bountiful,Utah,United States,DMR
+3149093,KC7TPV,Robin S Pardey,,Salt Lake City,Utah,United States,DMR
3150001,N1CIV,Bob Jacobson,,Hartford,Vermont,United States,Portable
3150002,KC5CNT,Russ Hules,,Middlebury,Vermont,United States,Mobile
3150003,KC5CNT,Russ Hules,,Middlebury,Vermont,United States,Portable
@@ -40702,6 +41405,8 @@ 3150070,KA1BUM,Rollin M Rice,,Windsor,Vermont,United States,DMR
3150071,KC1BT,Allan R Machell,Ray,Barre,Vermont,United States,DMR
3150072,KB1FDA,Joe Truss Truss,Joe,East Corinth,Vermont,United States,DMR
+3150073,KB1ZYP,Colleen D,,Rutland,Vermont,United States,DMR
+3150074,KA1LDL,Miles M Silk,,Barre,Vermont,United States,DMR
3151001,N8RK,Ralf Klingler,,Hayes,Virginia,United States,
3151002,W4YP,Bob Spindle,,Haymarket,Virginia,United States,Portable
3151003,W4YP,Bob Spindle,,Haymarket,Virginia,United States,Control Station
@@ -40848,7 +41553,7 @@ 3151144,KK4SDN,Jeremy Drummond,,Virginia Beach,Virginia,United States,Portable
3151145,K3RFP,William R Nash,,Staunton,Virginia,United States,Mobile
3151146,K3RFP,Robert ,,Nash,Virginia,United States,Portable
-3151147,KG4FJC,John Gnatowsky,,Arvonia,Virginia,United States,Mobile
+3151147,KG4FJC,Jason Gnatowsky,,Arvonia,Virginia,United States,DMR
3151148,KG4HOT,Tim Miller,,schuyler,Virginia,United States,Mobile
3151149,N0WP,William Pond,,Ruckersville,Virginia,United States,Portable
3151150,KJ4PGD,John Fury,,Montross,Virginia,United States,Mobile
@@ -41144,6 +41849,12 @@ 3151442,N3OP,Reginald R Cuffee,,Chesapeake,Virginia,United States,DMR
3151443,KK4VNM,Joshua Hankins,,Cedar Bluff,Virginia,United States,DMR
3151444,KD4ADL,Derek A Rogers,,Christiansburg,Virginia,United States,DMR
+3151445,KC4ASU,Angela Y Rogers,,Christiansburg,Virginia,United States,DMR
+3151446,KI4SIO,Gavin S Miller,,Roanoke,Virginia,United States,DMR
+3151447,KC5CG,Christopher A Graves,Gump,Ashburn,Virginia,United States,DMR
+3151448,KC3BPC,Ryan L Graves,,Ashburn,Virginia,United States,DMR
+3151449,N3ARH,Andrew R Hower,,Bluemont,Virginia,United States,DMR
+3151450,K5SAX,James E Whitley,Jim,Chesapeake,Virginia,United States,DMR
3153001,KD7AKB,Chris Palmer,,Bremerton,Washington,United States,Mobile
3153002,NF6C,Gregory Krantz,,Orting,Washington,United States,Mobile
3153003,NF6C,Gregory Krantz,,Orting,Washington,United States,Portable
@@ -41426,6 +42137,20 @@ 3153280,K6WLF,Robert K Johnson,,Kirkland,Washington,United States,DMR
3153281,KI7BKK,James P Walker Jr,Jim,Woodinville,Washington,United States,DMR
3153282,W7CEB,Charles Beckmeier Beckmeier,,Redmond,Washington,United States,DMR
+3153283,W8JLV,James L Vincent,Jim,Sammamish,Washington,United States,DMR
+3153284,KG7SQP,John J Roberts Roberts,John,Bellevue,Washington,United States,DMR
+3153285,N7ESI,David S Rait,,Orting,Washington,United States,DMR
+3153286,KE7LSS,Kevin N Cuffel,,Vancouver,Washington,United States,DMR
+3153287,KF7MAN,Gabriel A Ghergu,,Lynnwood,Washington,United States,DMR
+3153288,W7HMT,Randy J Richmond,,North Bend,Washington,United States,DMR
+3153289,K7GTC,Darin L Record,,Tieton,Washington,United States,DMR
+3153290,KG7BFE,Michelle A Grieci Ghergu,,Lynnwood,Washington,United States,DMR
+3153291,KG4YKC,Luke Medcalf,,Seattle,Washington,United States,DMR
+3153292,W2ZT,Eric P Brownell,,Snohomish,Washington,United States,DMR
+3153293,W5RZG,John Roberts,,Bellevue,Washington,United States,DMR
+3153294,KI7GMN,Elizabeth C Macrae,,Sammamish,Washington,United States,DMR
+3153295,KG7KH,Jeff Dickenson,,Vancouver,Washington,United States,DMR
+3153296,N6TYG,Tony Bamberger,Tonyb,Battle Ground,Washington,United States,DMR
3154001,WV8VFD,Tyler Lewis,,Parkersburg,West Virginia,United States,Portable
3154002,WB3JPB,Bruce Conley,,Inwood,West Virginia,United States,Portable
3154003,WB8WKO,Mike Vargo,,Mount Hope,West Virginia,United States,Portable
@@ -41548,6 +42273,10 @@ 3154120,KE8BEE,Harley S ` `Justice,,Madison,West Virginia,United States,DMR
3154121,WM0S,Lyle E Seigel,,Bunker Hill,West Virginia,United States,DMR
3154122,KD8CVI,Sidney R Maynard,,Henlawson,West Virginia,United States,DMR
+3154123,KE8EWP,Charles D Brown,,Justice,West Virginia,United States,DMR
+3154124,KD8WDA,Martin B Riffle,,Leon,West Virginia,United States,DMR
+3154125,AE8CW,Clint White White,Clint,Hewett,West Virginia,United States,DMR
+3154126,KD8WDA,Martin B Riffle,,Leon,West Virginia,United States,DMR
3155001,N9NLZ,Craig Ochs,,Brookfield,Wisconsin,United States,Portable
3155002,KB9VLL,Dan Albert,,South Milwaukee,Wisconsin,United States,Portable
3155003,KB9ENO,William Niemuth,,Hortonville,Wisconsin,United States,Portable
@@ -41753,6 +42482,10 @@ 3155204,K9FRD,Nathaniel L Heise,Nate,Elkhorn,Wisconsin,United States,DMR
3155205,N9PYA,Dwayne Devore Devore,,Kenosha,Wisconsin,United States,DMR
3155206,N9PYA,Dwayne Devore,,Kenosha,Wisconsin,United States,DMR
+3155207,KC9VEQ,Michelle A White,,Rhinelander,Wisconsin,United States,DMR
+3155208,N0EEM,Edward E Murray,,Superior ,Wisconsin,United States,DMR
+3155209,KD9HCW,Corey Becker,,Racine,Wisconsin,United States,DMR
+3155210,KC9BTF,Angie L Skrentny,,West Bend,Wisconsin,United States,DMR
3156001,KC7YRA,Brad Lutz,,Casper,Wyoming,United States,Portable
3156002,KC7YRA,Brad Lutz,,Casper,Wyoming,United States,Mobile
3156003,KC0ZHF,Rodney Waln,,Cheyenne,Wyoming,United States,Portable
@@ -42014,6 +42747,7 @@ 3708022,HI8HAP,Hemilton PeñA,,Bani,Peravia,Dominican Republic,DMR
3708023,HI8JRG,Rafael Genao,Rafael Genao,Hollywood Florid,Distrito Nacional,Dominican Republic,DMR
3708024,HI8V,Victor Baez (Vic),,Santo Domingo, Este,Distrito Nacional,Dominican Republic,DMR
+3708025,HI8W,Waldo Pons Cabral,,Santo Domingo,Distrito Nacional,Dominican Republic,DMR
3740001,9Y4DH,Dexter Harroo,,San Juan,,Trinidad and Tobago,Loaner
3740002,9Z4RG,Ravindranath Goswami,Robby,Port-Of-Spain,Woodbrook,Trinidad and Tobago,DMR
3740004,9Y4G7HEK,Andy Owen,,Port Of Spain,Woodbrook,Trinidad and Tobago,DMR
@@ -42185,6 +42919,9 @@ 4403016,JA3RGQ,Ogawa Sugao,,Kyoto,Kinki,Japan,DMR
4403017,JA3ASU,Sayama Nobunori,Nob,Kyoto,Kinki,Japan,DMR
4403018,JA3QWG,Yatsuyoshi Yamamoto Yamamoto,Yama,Kakogawa,Kinki,Japan,DMR
+4403019,JH3ZMD,Hermano Kubota,Nobu,Kyoto,Kinki,Japan,DMR
+4403020,JA3ICQ,Nobuo Kubota,,Kyoto,Kinki,Japan,DMR
+4403021,JL3ZEF,Nobunori Sayama,Nob,Kyoto,Kinki,Japan,DMR
4404001,JO4DYL,Masanobu Ikemoto,,Yanai,Chugoku,Japan,Mobile
4404002,JO4DYL,Masanobu Ikemoto,,Yanai City,Chugoku,Japan,Mobile
4404003,JH4OWG,Hiroshi Nakamura,Hiro,Kurashiki,Chugoku,Japan,CCS7
@@ -42212,6 +42949,7 @@ 4407021,JE7UPL,Masami Ichinohe,Naseri,Aomori,Tohoku,Japan,CCS7
4407022,JH7ZER,Aomori Tsukimiryou,Tsuki,Aomori City,Tohoku,Japan,CCS7
4407023,JH7ZER,Aomori Tsukimiryou,Tsuki,Aomori City,Tohoku,Japan,DMR
+4407024,JK7BEJ,Hiroyuki Mamada,,Hachinohe,Tohoku,Japan,CCS7
4408001,JI8KVH,Yoshiyasu Akehi,,Kitami,Hokkaido,Japan,Other
4408002,JA8IBG,Konishi Masashi,,Sapporo,Hokkaido,Japan,DMR
4409001,JH9IIA,Ryusho Tanabe,,Tsuruga,Hokuriku,Japan,Mobile
@@ -42312,6 +43050,7 @@ 4500064,DS5DBQ,Jeongsu Jeon,Jeong,Busan,BuSan Si,Korea S, Republic of,CCS7
4500065,DS5DBQ,Jeongsu Jeon,Jeong,Busan,BuSan Si,Korea S, Republic of,CCS7
4500066,DS5NEO,Oh Hong-Joo,Jooe Oh,Busan,BuSan Si,Korea S, Republic of,CCS7
+4500067,HL5PBF,Jong-Min Lee,Jonglee,Busan,BuSan Si,Korea S, Republic of,CCS7
4501001,6K2GBE,Seongjin Oh,,Suwon,Chungeheongbuk,Korea, Republic of,
4501002,DS4GYP,Won-gil Jung,,KwangJu,KWangJu Si,Korea S, Republic of,Other
4501003,DS5TUK,Joon Ho Shin,,Suseonggu,Daeku Si,Korea S, Republic of,DMR
@@ -42338,11 +43077,13 @@ 4504008,6K5DIO,Wook Rae Cho,Tokata,Kim Hae,KyungSang Nam-Do,Korea S, Republic of,Other
4504009,DS1OUY,Minho Kwon,Minho,Daegu,KyungSang Buk-Do,Korea S, Republic of,CCS7
4504010,6K5DIO,Cho Wook Rae,,Kimhae,KyungSang Nam-Do,Korea S, Republic of,CCS7
+4504011,HL5PDQ,Park Seho,,Gimhae,Kyungsang Nam-Do,Korea S, Republic of,DMR
4505001,HL5BRP,Hwang Chong-Gil,,Hadong-Gun,Chungchong Nam-Do,Korea S, Republic of,DMR
4505005,HL3WQ,Jae Gook Jeon,,Cheonan,Chungchong Nam-Do,Korea S, Republic of,CCS7
4505006,HL3KK,Kwang Ho Kim,,Cheonansi,Chungchong Nam-Do,Korea S, Republic of,DMR
4505007,DS3LYG,Kim Huihwan,Ds3lyg,Seo San- Si,ChungChong Nam-Do,Korea S, Republic of,DMR
4505008,DS3LYG,Kimhuihwan Huihwan,Ds3lyg,Seo San- Si,ChungChong Nam-Do,Korea S, Republic of,Other
+4505009,HL3EYJ,Kwanghee Cho,,Chungju,ChungChong Buk-Do,Korea S, Republic of,DMR
4506001,HL2KZJ,Kwang-ok Yoo,,GunPO-SI,KyungKi-Do,Korea S, Republic of,Other
4506002,HL2UJ,Kim Gil Tae,,CHEONG PYEONG,KyungKi-Do,Korea S, Republic of,DMR
4506003,DS1AWE,Joel(Seung) Han,,Dongducheon,Kyungki-Do,Korea S, Republic of,Other
@@ -42387,6 +43128,8 @@ 4507024,DS0DE,Mia 6m Club, 6m6m,Mia Club,Seoul,Seoul,Korea S, Republic of,DMR
4507025,DS1SUR,Ji Yeon Kim,Ji-Yeon Kim ,Seoul,Seoul,Korea S, Republic of,DMR
4507026,HL1LFF,Oh Byung Hoon,,Seoul,Seoul,Korea S, Republic of,DMR
+4507027,HL1TKF,Park Byung-Ho,,Seoul,Seoul,Korea S, Republic of,DMR
+4507028,HL1TKF,Park Byung-Ho,,Seoul,Seoul,Korea S, Republic of,CCS7
4540001,VR2XJN,Charles Tsang,,Hong Kong,Hong Kong,China,Mobile
4540002,VR2XJT,Hkprc ,,Hong Kong,Hong Kong,China,Portable
4540003,VR2RG,Hkprc ,,Hong Kong,Hong Kong,China,Portable
@@ -42713,8 +43456,11 @@ 4600020,VR2VTD,Allen Tam,,Hong Kong,Hong Kong,China,DMR
4600021,VR2HKS,Hkir Information Technology Club Scout Hong Kong Island Region (Hkir),Scout Hkir It Club,Wan Chai,Hong Kong,China,DMR
4600022,BH4DPF,Jeffrey Tan,,Shanghai,All Others,China,DMR
+4600023,VR2UCL,Cary Leung,,Kowloon,Hong Kong,China,DMR
+4600024,VR2UCL,Cary Leung,,Kowloon,Hong Kong,China,DMR
4602001,BH2REY,Zhaowei Zheng,Piku,Dalian,Hei Long Jiang Ji Lin Liao Ning,China,DMR
4602002,BH2REY,Zhaowei Zheng,Chi,Dalian,Hei Long Jiang Ji Lin Liao Ning,China,DMR
+4607001,BG7CAX,Zheng Yao,Akimoto,Changsha,Hu Nan Guang Dong Guang Xi,China,DMR
4661001,BX2ABT,Hans Fong,Dutchduke,Taoyuan City,Taipei,Taiwan,DMR
4661002,BX2AFC,Yngwie Chou,,Taipei,Taipei,Taiwan,DMR
4661003,BV2NT,Lee Paulton,,Taipei,Taipei,Taiwan,DMR
@@ -42742,6 +43488,13 @@ 4661025,BX2ADE,Tim Huang,Panda,Taipei,Northern Taiwan,Taiwan,DMR
4661026,BV2FP,Kao David,,Taipei,Northern Taiwan,Taiwan,DMR
4661027,BM3HTT,Kao Ryan,,Taoyuan City,Northern Taiwan,Taiwan,DMR
+4661028,BX2AEK,Kim Liao,,Taipei,Outlying ,Taiwan,DMR
+4661029,BU3AA,劉啟旭 Liu,Akira,Taoyuan,Northern Taiwan,Taiwan,DMR
+4661030,BM2IUA,Kevin Chin,,Taoyuan,Northern Taiwan,Taiwan,DMR
+4661031,BV5AC,Lee Yeh-Ho,,Changhua Tw,Central Taiwan,Taiwan,DMR
+4661032,BM2LSM,Zhong Yu Wang,,New Taipei City,Taipei,Taiwan,DMR
+4661033,BV5OO,Yaojun Hsieh,,Taipei ,Taipei,Taiwan,DMR
+4661034,BM4ISC,Wu Chung Tsai,,Taichung,Central Taiwan,Taiwan,DMR
5020001,9W2VHN,Hafiznaimi Yahya,HAFIZNAIMI,PENANG,Spratly Is.,Malaysia,Mobile
5022001,9M2AOC,Alexander Oon,,Bayan Lepas,Penang,Malaysia,Portable
5022002,9M2SF,See Fung Lee,,ISland Glades,Penang,Malaysia,Portable
@@ -42805,6 +43558,8 @@ 5051034,VK1MTS,Roald Martinsen,,Canberra,Australian Capital Territory,Australia,DMR
5051035,VK2DTW,Richard Calder,Dick,Goulburn,Australian Capital Territory,Australia,DMR
5051036,VK1EM,Mark C C,,Canberra,Australian Capital Territory,Australia,DMR
+5051037,VK2MWP,Andrew Geddes,,Canberra,Australian Capital Territory,Australia,DMR
+5051038,VK1OC,Robert Cook,Owen,Canberra,Australian Capital Territory,Australia,DMR
5052001,VK2YLO,John Reeves,,Goonellabah,New South Wales,Australia,Mobile
5052002,VK2LK,Matt Robert,,Sydney,New South Wales,Australia,
5052003,VK2YVA,Mal Alexander,,Campbelltown,New South Wales,Australia,
@@ -42994,6 +43749,13 @@ 5052188,VK2FKLM,Mark Andrews,,Sydney,New South Wales,Australia,DMR
5052189,VK2HK,Ian Tulley,,Wyee,New South Wales,Australia,DMR
5052190,VK2KMI,Kimberly Olsen,Kim,Darlinghurst,New South Wales,Australia,DMR
+5052191,VK2MWP,Andrew Geddes,,Queanbeyan,New South Wales,Australia,DMR
+5052192,VK2YHX,Spero Davias,,Newcastle,New South Wales,Australia,DMR
+5052193,VK2AIR,Jeff Mackenzie,Jeff,Northmead,New South Wales,Australia,DMR
+5052194,VK2PSW,Peter Wohlhagen,,Albury,New South Wales,Australia,CCS7
+5052195,VK2PAM,Andrew Mills,,Gosford,New South Wales,Australia,DMR
+5052196,VK2PPM,Peter Mills,,Gosford,New South Wales,Australia,DMR
+5052197,VK2WIH,Hunter Joyce,,Lake Macquarie,New South Wales,Australia,DMR
5053001,VK3XDE,Paul Engler,,Melbourne,Victoria,Australia,Mobile
5053002,VK3TE,Peter Brennan,,Karingal,Victoria,Australia,Portable
5053003,VK3AJ,Peter Chaplin,,Upwey,Victoria,Australia,Mobile
@@ -43090,6 +43852,8 @@ 5053094,VK3AJ,Peter Chaplin,,Upwey,Victoria,Australia,CCS7
5053095,VK3LED,Colin Herbert,,Maiden Gully,Victoria,Australia,DMR
5053096,VK3PEF,Des Egan,,Bendigo,Victoria,Australia,DMR
+5053097,VK3CKC,Kj Crockett,,Axedale,Victoria,Australia,DMR
+5053098,VK3GRK,Graeme R Knight,,Bendigo,Victoria,Australia,DMR
5054001,VK4QF,Andrew Chapman,,Toowoomba,Queensland,Australia,DMR
5054002,VK4QF,Andrew Chapman,,Toowoomba,Queensland,Australia,DMR
5054003,VK4QF,Andrew Chapman,,Toowoomba,Queensland,Australia,DMR
@@ -43196,6 +43960,7 @@ 5054105,VK4ID,Allan Gilbey,,Glasshouse Mts,Queensland,Australia,DMR
5054106,VK4ID,Allan Gilbey,,Glasshouse Mts,Queensland,Australia,CCS7
5054107,VK4LGW,Graeme Willox,,Brisbane,Queensland,Australia,DMR
+5054108,VK4TV,Roger Wilson,,Hervey Bay,Queensland,Australia,DMR
5055001,VK5FBFB,Brendan Blackman,,adelaide,South Australia,Australia,Portable
5055002,VK5FBFB,Brendan Blackman,,Adelaide ,South Australia,Australia,DMR
5055003,VK5RZ,Stephan Forka,,Seaford Rise,South Australia,Australia,Other
@@ -43262,6 +44027,10 @@ 5056048,VK6WH,West Australian Vhf Group Inc West Australian Vhf Group Inc,,Perth,Western Australia,Australia,DMR
5056049,VK6MST,Allan Huitema,,Melville,Western Australia,Australia,DMR
5056050,VK6NUT,Gurmit Singh Singh,Grom,Perth,Western Australia,Australia,DMR
+5056051,VK6IA,Andrew Albinson,,Ballajura,Western Australia,Australia,DMR
+5056052,VK6PM,Peter May,,Perth,Western Australia,Australia,DMR
+5056053,VK6HX,Craig Mason,,Perth,Western Australia,Australia,DMR
+5056054,VK6DY,Mark J Gaynor,,Perth,Western Australia,Australia,DMR
5056100,VK100ANZ,Hmas Stirling - Gard,,Garden Island,Western Australia,Australia,John McNamee VK6AG
5057001,VK7YXX,Don Nolder,,Richmond,Tasmania,Australia,
5057002,VK7JA,John Andrewartha,,Scottsdale,Tasmania,Australia,Mobile
@@ -43292,6 +44061,7 @@ 5101006,YC9USA,David M Haag,David,Wamena,Jakarta ,Indonesia,DMR
5101007,YB0HD,Budi Rianto Halim,Budi,Jakarta,Jakarta ,Indonesia,DMR
5101008,YB1GJS,Gjellani Joostman Sutama ,Jel,Depok,Jakarta ,Indonesia,DMR
+5101009,YD0OAS,Danny Winata,Yd0oas- Danny,Jakarta,Jakarta ,Indonesia,DMR
5150001,DU1UGZ,Ramon Anquilan,,Paranaque City,National Capital Region,Philippines,Other
5150002,DW1ZDR,Audie O. Sanchez,,Pasig City,National Capital Region,Philippines,DMR
5150003,DW1ZDQ,Gazelle Dicen,,Pasig City,National Capital Region,Philippines,DMR
@@ -43406,6 +44176,8 @@ 5200108,HS7WGQ,Suwanee Wanna,Kob,Hua-Hin,Bangkok,Thailand,CCS7
5200109,HS8MSJ,Krissana Kamkaew,, Phuket,Phuket,Thailand,CCS7
5200110,HS2XTL,Prasaudsub O,Sub,Muang,Bangkok,Thailand,CCS7
+5200111,HS8MSJ,Krissana Kamkaew,Eat,Phuket,Phuket,Thailand,DMR
+5200112,E24SUR,Hakim Leewamoh,Kim,Bangkok,Bangkok,Thailand,Other
5206001,HS0ZET,Ralf Klingler,,Nongkrot,Nakhon Sawan,Thailand,Portable
5206002,HS3LIQ,Wiwat Metheekasiwat,,Nakhonratchasima,Nakhon Ratchasima,Thailand,
5250001,9V1JC,Wiyanto Jacob,Jacob,Singapore,Singapore,Singapore,DMR
@@ -43558,6 +44330,7 @@ 5301137,ZL1RKW,Ryan Warner,,Taumarunui,North Island 1,New Zealand,DMR
5301138,ZL1PKS,K D Williams,,Auckland,North Island 1,New Zealand,DMR
5301139,ZL1MIKE,Mike Conner,Mike,Auckland,North Island 1,New Zealand,DMR
+5301140,ZL1AFK,C Anderson,,Opotiki,North Island 1,New Zealand,DMR
5302001,ZL4JY,John Yaldwyn,,Waikanae,North Island 2,New Zealand,Mobile
5302002,ZL2JG,Jeff Graham,,Waikanae Beach,North Island 2,New Zealand,Mobile
5302003,ZL2JG,Jeff Graham,,Waikanae Beach,North Island 2,New Zealand,Portable
@@ -43737,6 +44510,7 @@ 5351002,WH2F,Stephan Buettner,,Dededo,Guam,United States,Portable
5351003,NH2CY,Bradley A Hokanson,Brad,Santa Rita,All,Guam,DMR
5351004,KH2L,Edward H Poppe,Ed,Yona,All,Guam,DMR
+5351005,NH2P,Phillip R Leppke,,Yona,All,Guam,DMR
5371001,P29ZTC,Terry Griffiths,,Port Moresby,NCD,Papua New Guinea,Mobile
5371002,P29LZ,Lowell Zabala,,Lae,Morobe,Papua New Guinea,Mobile
6030001,7X2VX,Abdelkrim Hamza,Abdelkrim,Algiers,,Algeria,
@@ -43798,6 +44572,7 @@ 6551011,ZS1GFL,Georg Lerm,Georg,Cape Town,Cape,South Africa,
6551012,ZS1YT,Jakobus Erasmus,Rassie,Strand,Cape,South Africa,
6551013,ZS1ZW,Jason Codd,Jason,Cape Town,Cape,South Africa,
+6551014,ZS1OSK,Ian Stanbridge,Ian,Cape Town,Cape,South Africa,
6552001,ZS2ABF,Peter Tottle,Peter,East Loindon,Eastern Cape,South Africa,
6554001,ZS4OIL,Mark Warner,Mark,Sasolburg,Freestate,South Africa,
6555001,ZS5GR,Tony ,Tony,Durban,Kwazulu-Natal,South Africa,Mobile
@@ -43849,6 +44624,8 @@ 6555047,ZS5CEY,Andy Coetzee,Andy,Durban,Kwazulu-Natal,South Africa,
6555048,ZS5PG,Matthew Lyle,Matthew,Durban,Kwazulu-Natal,South Africa,
6555049,ZS5V,Marjoke Schuitemaker,Marjoke,Howick,Kwazulu-Natal,South Africa,
+6555050,ZS5GMW,Garth Wheeler,Garth,Durban,Kwazulu-Natal,South Africa,
+6555051,ZS5WFD,Keith Lowes,Keith,Westville,Kwazulu-Natal,South Africa,
6556001,ZS6RVC,Ronald ,Ronald,Northcliff,Gauteng,South Africa,Mobile
6556002,ZS6DR,Derek ,Derek,Johannesburg,Gauteng,South Africa,Portable
6556003,ZS6ARG,Lee ,Lee,Johannesburg,Gauteng,South Africa,Mobile
@@ -43926,6 +44703,7 @@ 6556075,ZS6DJD,Dior Dreyer-Juselius,Dior,Meyerton,Gauteng/Mpumalanga,South Africa,
6556076,ZS6JMG,Jaco McGrillen,Jaco,Meyerton,Gauteng/Mpumalanga,South Africa,
6556077,ZS6EY,Hennie Van Rensburg,Hennie,Vanderbijlpark,Gauteng/Mpumalanga,South Africa,
+6556078,ZS6IIX,Pieter Hendrik Rood,Henry,Benoni,Gauteng/Mpumalanga,South Africa,
7020001,V31MP,Martin Pask,,Benque,San Ignacio,Belize,
7020002,V31DL,Andre Scholz,,Cayo,Cayo District,Belize,Portable
7020003,V3V,Dr Scholz,,Cayo,Cayo District,Belize,Club Fleet
@@ -43979,6 +44757,8 @@ 7141026,HP1COO,Alejandro Arroyo,,Panama City,Panama,Panama,Other
7141027,HP8HAR,Hector Rodriguez,,Aguadulce Panama,Panama,Panama,DMR
7141028,HP2MIC,Manuel Chanis ,,Colon ,Colon,Panama,DMR
+7141029,HP1NUR,Tahumanara Chung,,Panama,Panama,Panama,DMR
+7141030,HP1BZE,Augusto Lowe,,Panama,Panama,Panama,DMR
7220001,LW6DX,Fabian Malnero,,General Pacheco,Buenos Aires,Argentina Republic,Portable
7220002,LW2EQU,Jose Romasanta,Jose,Buenos aires,,Argentina,
7220003,LU2CJM,Julio Cesar Marino,,Buenos Aires,Buenos Aires,Argentina Republic,DMR
@@ -44235,6 +45015,14 @@ 7301034,CD1GRV,Rayo Arturo Venegas,Cd1grv,Chile,Tarapac,Chile,DMR
7301035,CE1WMY,Jimmy Romero,Jiro,Calama,Antofagasta,Chile,DMR
7301036,CB1SQP,Alejandro Elgueta,Chapala,Antofagasta,Antofagasta,Chile,DMR
+7301037,CE1SJJ,Claudio Mauricio Araya Herrera,,Calama ,Antofagasta,Chile,DMR
+7301038,CD1FJW,Francisco Javier Villalobos Palma,Droptic,Antofagasta,Antofagasta,Chile,DMR
+7301039,CE1WOY,Mauricio Romero,Mauro,Calama,Antofagasta,Chile,DMR
+7301040,CE1GCJ,Juan Daniel Godoy Codorni�,Nito,Calama,Antofagasta,Chile,DMR
+7301042,CA1JNN,Jhon NuñEz,,Calama,Antofagasta,Chile,DMR
+7301043,CA1ROY,Rodrigo Garcia,Roro,Calama,Antofagasta,Chile,DMR
+7301044,CA1IZA,Ivan Alonso Zapata Alderete,,Calama,Antofagasta,Chile,DMR
+7301045,CE1REA,Raul Eduardo Araya Vega,,Calama,Antofagasta,Chile,DMR
7302001,CE2LS,Radio Club Of La Serena,,La Serena,Cuarta,Chile,
7302002,CE2NXW,Jerardo Peralta,,La Serena,Elqui,Chile,Mobile
7302003,CA2DMR,Ruben Dario Munoz,,La Serena,Elqui,Chile,Mobile
@@ -44344,6 +45132,9 @@ 7302108,CA2VJF,Victor Flores,,Quillota,Valparaiso,Chile,DMR
7302109,CE2SCP,Alejandro Anacona,Ferreira,Ovalle,Coquimbo,Chile,DMR
7302110,CE2KVL,Klaus Von Loocks Von Loocks,Klaus,ValparaíSo,Valparaiso,Chile,DMR
+7302111,CE2NVS,Fabian Vera,,Chile,Valparaiso,Chile,DMR
+7302112,CE2NVS,Fabian Vera,,Chile,Valparaiso,Chile,DMR
+7302113,CA2WKZ,Henry Quintulaf,,Limache,Valparaiso,Chile,DMR
7303001,CA3SOC,Raul Romero,,Santiago,Reg.Metr. de Santiago,Chile,Mobile
7303002,CE3YP,George ,George,Jorge,Reg.Metr. de Santiag,Chile,
7303003,CE3BFE,Mario Reyne,romeopapa,Lampa,Reg.Metr. de Santiago,Chile,Otro
@@ -44372,7 +45163,6 @@ 7303026,CE3YL,Maria NuÑEz,Yael,Maipu,Reg.Metr. de Santiago,Chile,CCS7
7303027,CE3FED,Federacion De Clubes De Radioaficionados De Chile,Federachi,Santiago,Reg.Metr. De Santiago,Chile,Other
7303028,CA3JVU ,Victor Rodrigo Jimenez Valenzuela,Vicho ,Santiago ,Reg.Metr. De Santiago,Chile,DMR
-7303029,CA3JVU ,Victor Rodrigo Jimenez Valenzuela,Vicho ,Santiago,Reg.Metr. De Santiago,Chile,DMR
7303030,CA3UHE,Walter Zapata,WaltiñO,Santiago,Reg.Metr. de Santiago,Chile,DMR
7303031,CA3JSG,Josue Garcia,Josue,Santiago,Reg.Metr. de Santiago,Chile,DMR
7303032,CA3UCK,Bernardo Ortega,Bernardo,Santiago,Reg.Metr. de Santiago,Chile,DMR
@@ -44385,7 +45175,17 @@ 7303039,CA2DSM,Daniel Sepulveda,Kabun,Melipilla,Reg.Metr. De Santiago,Chile,Other
7303040,CD3GMH,Gonzalo Munoz,Gonzalo,Santiago,Reg.Metr. De Santiago,Chile,DMR
7303041,CD3GMH,Gonzalo Mu�Oz,Gonzalo,Santiago,Reg.Metr. De Santiago,Chile,DMR
+7303042,CE3DOC,Darko Olguin C,Ce3doc,Santiago,Reg.Metr. De Santiago,Chile,DMR
+7303043,CD3ESB,Eduardo Scheihing,Eco Sierra,Santiago,Reg.Metr. de Santiago,Chile,DMR
+7303044,CE3EPN,Eduardo Arturo Pereira Naranjo.,,Santiago,Reg.Metr. De Santiago,Chile,Other
+7303045,CA3VSP,Jaime Correa Mu�Oz,,Santiago,Reg.Metr. De Santiago,Chile,DMR
+7303046,CD3HFM,Hector Fuentes,Tito,Colina,Reg.Metr. de Santiago,Chile,DMR
+7303047,CD3HAJ,Javier Hormazabal,,Puente Alto,Reg.Metr. de Santiago,Chile,DMR
+7303048,CD3IRV,Carlos Ignacio Guevara Rios,,Santiago,Reg.Metr. De Santiago,Chile,DMR
+7303049,CD3KHO,Arturo A. Medina,,Santiago,Reg.Metr. de Santiago,Chile,DMR
+7303050,CD3OPD,Cesar Mucherl,,Santiago,Reg.Metr. de Santiago,Chile,DMR
7304001,CE4CSC,Carlos SáEz ,,Cauquenes,Maule,Chile,DMR
+7304002,CA4KRC,Jonathan Valderrama,,Chillan Viejo,Maule,Chile,DMR
7305001,CE5RHS,Miguel Vergara O.,,Coronel,Bio Bio,Chile,DMR
7305002,CE5KBR,Mauricio Vasquez C,,Los Angeles,Bio Bio,Chile,DMR
7305003,CA5SBT,Esteban Osorio,Esalos,ConcepcióN,Bio Bio,Chile,DMR
@@ -44414,6 +45214,7 @@ 7341006,YY1MAV,Miguel Angel Villasmil Yanez,,Maracaibo,Falcon,Trujillo,Zulia,Venezuela,DMR
7341007,YV1EMH,Bruno J Villalobos R,,Maracaibo,Falcon,Trujillo,Zulia,Venezuela,DMR
7344001,YV4WC,Winkock Chang,,Valencia,Aragua,Carabobo,Cojedes,Venezuela,DMR
+7344002,YV4CWK,Ruben Angel Villar Fernandez,,Valencia,Aragua,Carabobo,Cojedes,Venezuela,DMR
7345001,YV5AJ,Club Venezuelo,,Caracas,Distrito Capital,Venezuela,Mobile
7345002,YV5RNE,R Nacional De Emerg.,,Caracas,Distrito Capital,Venezuela,Mobile
7345003,YV5NGV,Jose Dames,,Caracas,,Venezuela,
@@ -44430,11 +45231,12 @@ 7345015,YY5ADM,Arnaldo Jose Aguilar Flores,,Caracas,Distrito Capital. Guarico,Miranda,Dependencias Federales,Venezuela,DMR
7345016,YV5NIV,Alexander RodrIGuez Mora,,Caracas,Distrito Capital. Guarico,Miranda,Dependencias Federales,Venezuela,DMR
7346001,YY6TTA,Gustavo Mena,,Barcelona,Anzoategui,Bolivar,Venezuela,Mobile
+7380001,8R1B,Julian Embrack,,Georgetown,Georgetown,Guyana,DMR
7400001,HC1ER ,Edison Perez,,Quito,All,Ecuador,DMR
7400002,HC2GBT,Gerald Gawaldo,Gerry,Guayaquil,All,Ecuador,DMR
7440001,ZP3BGA,Jose Raul Invernizzi,,Pedro Juan Caballero,,Paraguay,Mobile
7440002,ZP3BGA,Jose Raul Invernizzi,Jose Raul,Pedro Juan Caballero,Amabay,Paraguay,CCS7
-7481001,CX2AL, Hipólito Tournier,,Montevideo,Montevideo,Uruguay,Mobile
+7481001,CX2AL,Hipolito Tournier,,Montevideo,Montevideo,Uruguay,DMR
7481002,CX1RK,Miguel Angel Cabrera Mendez,Mike,Maldonado,Montevideo,Uruguay,DMR
13106201,N6DVA,Trbo Server,,Los Angeles,California,United States,On TS1
13106202,N6DVA,Trbo Server,,Los Angeles,California,United States,On TS2
From e86891a53884d0f9fed9e72db9ef7393b80509af Mon Sep 17 00:00:00 2001 From: Cort Buffington Date: Fri, 21 Oct 2016 09:30:45 -0500 Subject: [PATCH 06/38] name change --- dmr_decon.py => dec_dmr.py | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename dmr_decon.py => dec_dmr.py (100%) diff --git a/dmr_decon.py b/dec_dmr.py similarity index 100% rename from dmr_decon.py rename to dec_dmr.py From 0131fd8d000ddebe4e2d63c16f4fe89821320a19 Mon Sep 17 00:00:00 2001 From: Cort Buffington Date: Fri, 21 Oct 2016 11:03:05 -0500 Subject: [PATCH 07/38] Progress on AMBE FEC --- dec_dmr.py | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/dec_dmr.py b/dec_dmr.py index 52cfece..182b6bc 100755 --- a/dec_dmr.py +++ b/dec_dmr.py @@ -103,6 +103,9 @@ if __name__ == '__main__': lc = voice_sync(voice_a) t1 = time() print('VOICE SYNC: {}'.format(h(lc[1]))) + print('AMBE 0: {}, {}'.format(lc[0][0], len(lc[0][0]))) + print('AMBE 1: {}, {}'.format(lc[0][1], len(lc[0][1]))) + print('AMBE 2: {}, {}'.format(lc[0][2], len(lc[0][2]))) print(t1-t0, '\n') print('Voice Burst B:') @@ -111,6 +114,9 @@ if __name__ == '__main__': embedded_lc += lc[3] t1 = time() print('EMB: CC-{} LCSS-{}, EMBEDDED LC: {}'.format(h(lc[1]), h(lc[2]), h(lc[3].tobytes()))) + print('AMBE 0: {}, {}'.format(lc[0][0], len(lc[0][0]))) + print('AMBE 1: {}, {}'.format(lc[0][1], len(lc[0][1]))) + print('AMBE 2: {}, {}'.format(lc[0][2], len(lc[0][2]))) print(t1-t0, '\n') print('Voice Burst C:') @@ -119,6 +125,9 @@ if __name__ == '__main__': embedded_lc += lc[3] t1 = time() print('EMB: CC-{} LCSS-{}, EMBEDDED LC: {}'.format(h(lc[1]), h(lc[2]), h(lc[3].tobytes()))) + print('AMBE 0: {}, {}'.format(lc[0][0], len(lc[0][0]))) + print('AMBE 1: {}, {}'.format(lc[0][1], len(lc[0][1]))) + print('AMBE 2: {}, {}'.format(lc[0][2], len(lc[0][2]))) print(t1-t0, '\n') print('Voice Burst D:') @@ -127,6 +136,9 @@ if __name__ == '__main__': embedded_lc += lc[3] t1 = time() print('EMB: CC-{} LCSS-{}, EMBEDDED LC: {}'.format(h(lc[1]), h(lc[2]), h(lc[3].tobytes()))) + print('AMBE 0: {}, {}'.format(lc[0][0], len(lc[0][0]))) + print('AMBE 1: {}, {}'.format(lc[0][1], len(lc[0][1]))) + print('AMBE 2: {}, {}'.format(lc[0][2], len(lc[0][2]))) print(t1-t0, '\n') print('Voice Burst E:') @@ -137,6 +149,9 @@ if __name__ == '__main__': t1 = time() print('EMB: CC-{} LCSS-{}, EMBEDDED LC: {}'.format(h(lc[1]), h(lc[2]), h(lc[3].tobytes()))) print('COMPLETE EMBEDDED LC: {}'.format(h(embedded_lc))) + print('AMBE 0: {}, {}'.format(lc[0][0], len(lc[0][0]))) + print('AMBE 1: {}, {}'.format(lc[0][1], len(lc[0][1]))) + print('AMBE 2: {}, {}'.format(lc[0][2], len(lc[0][2]))) print(t1-t0, '\n') print('Voice Burst F:') @@ -144,6 +159,9 @@ if __name__ == '__main__': lc = voice(voice_f) t1 = time() print('EMB: CC-{} LCSS-{}, EMBEDDED LC: {}'.format(h(lc[1]), h(lc[2]), h(lc[3].tobytes()))) + print('AMBE 0: {}, {}'.format(lc[0][0], len(lc[0][0]))) + print('AMBE 1: {}, {}'.format(lc[0][1], len(lc[0][1]))) + print('AMBE 2: {}, {}'.format(lc[0][2], len(lc[0][2]))) print(t1-t0, '\n') print('Terminator:') From 9b6e1a1984c48f935c9eceb365bc2f0701d68f4e Mon Sep 17 00:00:00 2001 From: Cort Buffington Date: Sun, 23 Oct 2016 11:07:16 -0500 Subject: [PATCH 08/38] Encoding Progress --- constants.py | 10 +++--- dec_dmr.py | 3 +- enc_dmr.py | 32 ++++++++++++++++++ hb_router.py | 46 ++++++++++++++++--------- qr.py | 94 ---------------------------------------------------- 5 files changed, 71 insertions(+), 114 deletions(-) create mode 100755 enc_dmr.py delete mode 100755 qr.py diff --git a/constants.py b/constants.py index 6a5c270..db34de4 100644 --- a/constants.py +++ b/constants.py @@ -6,10 +6,12 @@ BS_DATA_SYNC = bitarray() BS_VOICE_SYNC.frombytes(b'\x75\x5F\xD7\xDF\x75\xF7') BS_DATA_SYNC.frombytes(b'\xDF\xF5\x7D\x75\xDF\x5D') -LCSS_SINGLE_FRAG = bitarray('00') -LCSS_FIRST_FRAG = bitarray('01') -LCSS_LAST_FRAG = bitarray('10') -LCSS_CONT_FRAG = bitarray('11') +# Precomputed EMB values, where CC always = 1, and PI always = 0 +BURST_B_EMB = bitarray('0001001110010001') +BURST_C_EMB = bitarray('0001011101110100') +BURST_D_EMB = bitarray('0001011101110100') +BURST_E_EMB = bitarray('0001010100000111') +BURST_F_EMB = bitarray('0001000111100010') ''' EMB: CC(4b), PI(1b), LCSS(2b), EMB Parity(9b - QR 16,7,5) diff --git a/dec_dmr.py b/dec_dmr.py index 182b6bc..d5711c4 100755 --- a/dec_dmr.py +++ b/dec_dmr.py @@ -30,10 +30,11 @@ def voice_head_term(_string): burst = to_bits(_string) info = burst[0:98] + burst[166:264] slot_type = burst[98:108] + burst[156:166] + sync = burst[108:156] lc = bptc.decode_full_lc(info).tobytes() cc = to_bytes(slot_type[0:4]) dtype = to_bytes(slot_type[4:8]) - return (lc, cc, dtype) + return (lc, cc, dtype, sync) def voice_sync(_string): diff --git a/enc_dmr.py b/enc_dmr.py new file mode 100755 index 0000000..07b4cad --- /dev/null +++ b/enc_dmr.py @@ -0,0 +1,32 @@ +#!/usr/bin/env python +# +# This work is licensed under the Creative Attribution-NonCommercial-ShareAlike +# 3.0 Unported License.To view a copy of this license, visit +# http://creativecommons.org/licenses/by-nc-sa/3.0/ or send a letter to +# Creative Commons, 444 Castro Street, Suite 900, Mountain View, +# California, 94041, USA. + +from __future__ import print_function + +from bitarray import bitarray +import constants + +# Does anybody read this stuff? There's a PEP somewhere that says I should do this. +__author__ = 'Cortney T. Buffington, N0MJS' +__copyright__ = 'Copyright (c) 2016 Cortney T. Buffington, N0MJS and the K0USY Group' +__credits__ = 'Jonathan Naylor, G4KLX' +__license__ = 'Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported' +__maintainer__ = 'Cort Buffington, N0MJS' +__email__ = 'n0mjs@me.com' + + +#------------------------------------------------------------------------------ +# Used to execute the module directly to run built-in tests +#------------------------------------------------------------------------------ + +if __name__ == '__main__': + + from binascii import b2a_hex as h + from time import time + + print(ENC_EMB) \ No newline at end of file diff --git a/hb_router.py b/hb_router.py index c728d32..ce75af4 100755 --- a/hb_router.py +++ b/hb_router.py @@ -23,7 +23,7 @@ from twisted.internet import task # Things we import from the main hblink module from hblink import CONFIG, HBMASTER, HBCLIENT, logger, systems, hex_str_3, int_id -import dmr_decon, crc +import dec_dmr # Import Bridging rules # Note: A stanza *must* exist for any MASTER or CLIENT configured in the main @@ -72,26 +72,42 @@ class routerMASTER(HBMASTER): def __init__(self, *args, **kwargs): HBMASTER.__init__(self, *args, **kwargs) - self.embeddec_lc_rx = {'B': '', 'C': '', 'D': '', 'E': '', 'F': ''} - self.embeddec_lc_tx = {'B': '', 'C': '', 'D': '', 'E': '', 'F': ''} + self._last_stream_id + self.embedded_lc_rx = [0,0,0,0] + self.embedded_lc_tx = [0,0,0,0] + self.embedded_lc = '' + self.lc_index = 0 def dmrd_received(self, _radio_id, _rf_src, _dst_id, _seq, _slot, _call_type, _frame_type, _dtype_vseq, _stream_id, _data): _bits = int_id(_data[15]) if _call_type == 'group': if _frame_type == 'data_sync': - lc = dmr_decon.voice_head_term(_data[20:53])[0] - print(h(lc)) - if _dtype_vseq == 1: - lc_bits = bitarray() - lc_bits.frombytes(lc) - embedded_lc = lc_bits + crc.csum5(lc) - print('SHIT IS TEH SHIT:', lc_bits) - print('THIS IS THE SHIT:', embedded_lc) - elif _frame_type == 'voice_sync': - print(dmr_decon.voice_sync(_data[20:53])) - elif _frame_type == 'voice': - print(dmr_decon.voice(_data[20:53])) + lc = dec_dmr.voice_head_term(_data[20:53]) + if lc[2] == '\x01': + print('Voice Header: LC: {}, CC: {}, DTYPE: {}, SYNC: {}'.format(h(lc[0]), h(lc[1]), h(lc[2]), h(lc[3]))) + if lc[2] == '\x02': + print('Voice Terminator: LC: {}, CC: {}, DTYPE: {}, SYNC: {}'.format(h(lc[0]), h(lc[1]), h(lc[2]), h(lc[3]))) + + if _frame_type == 'voice_sync': + lc = dec_dmr.voice_sync(_data[20:53]) + print('Voice Burst A: SYNC: {}'.format(h(lc[1]))) + + if _frame_type == 'voice': + lc = dec_dmr.voice(_data[20:53]) + if lc[2] == '\x01': + self.lc_index = 0 + self.embedded_lc_rx[self.lc_index] = lc[3] + elif lc[2] == '\x03': + self.lc_index += 1 + self.embedded_lc_rx[self.lc_index] = lc[3] + elif lc[2] == '\x02': + self.lc_index += 1 + if self.lc_index == 3: + self.embedded_lc_rx[self.lc_index] = lc[3] + self.embedded_lc = dec_dmr.bptc.decode_emblc(self.embedded_lc_rx[0] + self.embedded_lc_rx[1] + self.embedded_lc_rx[2] + self.embedded_lc_rx[3]) + print('Emedded LC Completed: {}'.format(h(self.embedded_lc))) + print('Voice Burst B-F: CC: {}, LCSS: {}, EMBEDDED LC: {}'.format(h(lc[1]), h(lc[2]), h(lc[3]))) _routed = False for rule in RULES[self._master]['GROUP_VOICE']: diff --git a/qr.py b/qr.py deleted file mode 100755 index ca5dc0c..0000000 --- a/qr.py +++ /dev/null @@ -1,94 +0,0 @@ -#!/usr/bin/env python -# -# This work is licensed under the Creative Attribution-NonCommercial-ShareAlike -# 3.0 Unported License.To view a copy of this license, visit -# http://creativecommons.org/licenses/by-nc-sa/3.0/ or send a letter to -# Creative Commons, 444 Castro Street, Suite 900, Mountain View, -# California, 94041, USA. - -from __future__ import print_function -from bitarray import bitarray - -# Does anybody read this stuff? There's a PEP somewhere that says I should do this. -__author__ = 'Cortney T. Buffington, N0MJS' -__copyright__ = 'Copyright (c) 2016 Cortney T. Buffington, N0MJS and the K0USY Group' -__credits__ = 'Jonathan Naylor, G4KLX who many parts of this were thankfully borrowed from' -__license__ = 'Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported' -__maintainer__ = 'Cort Buffington, N0MJS' -__email__ = 'n0mjs@me.com' - - -ENCODE_1676 = ( - 0x0000, 0x0273, 0x04E5, 0x0696, 0x09C9, 0x0BBA, 0x0D2C, 0x0F5F, 0x11E2, 0x1391, 0x1507, 0x1774, - 0x182B, 0x1A58, 0x1CCE, 0x1EBD, 0x21B7, 0x23C4, 0x2552, 0x2721, 0x287E, 0x2A0D, 0x2C9B, 0x2EE8, - 0x3055, 0x3226, 0x34B0, 0x36C3, 0x399C, 0x3BEF, 0x3D79, 0x3F0A, 0x411E, 0x436D, 0x45FB, 0x4788, - 0x48D7, 0x4AA4, 0x4C32, 0x4E41, 0x50FC, 0x528F, 0x5419, 0x566A, 0x5935, 0x5B46, 0x5DD0, 0x5FA3, - 0x60A9, 0x62DA, 0x644C, 0x663F, 0x6960, 0x6B13, 0x6D85, 0x6FF6, 0x714B, 0x7338, 0x75AE, 0x77DD, - 0x7882, 0x7AF1, 0x7C67, 0x7E14, 0x804F, 0x823C, 0x84AA, 0x86D9, 0x8986, 0x8BF5, 0x8D63, 0x8F10, - 0x91AD, 0x93DE, 0x9548, 0x973B, 0x9864, 0x9A17, 0x9C81, 0x9EF2, 0xA1F8, 0xA38B, 0xA51D, 0xA76E, - 0xA831, 0xAA42, 0xACD4, 0xAEA7, 0xB01A, 0xB269, 0xB4FF, 0xB68C, 0xB9D3, 0xBBA0, 0xBD36, 0xBF45, - 0xC151, 0xC322, 0xC5B4, 0xC7C7, 0xC898, 0xCAEB, 0xCC7D, 0xCE0E, 0xD0B3, 0xD2C0, 0xD456, 0xD625, - 0xD97A, 0xDB09, 0xDD9F, 0xDFEC, 0xE0E6, 0xE295, 0xE403, 0xE670, 0xE92F, 0xEB5C, 0xEDCA, 0xEFB9, - 0xF104, 0xF377, 0xF5E1, 0xF792, 0xF8CD, 0xFABE, 0xFC28, 0xFE5B) - -DECODE_1576 = ( - 0x0000, 0x0001, 0x0002, 0x0003, 0x0004, 0x0005, 0x0006, 0x4020, 0x0008, 0x0009, 0x000A, 0x000B, - 0x000C, 0x000D, 0x2081, 0x2080, 0x0010, 0x0011, 0x0012, 0x0013, 0x0014, 0x0C00, 0x0016, 0x0C02, - 0x0018, 0x0120, 0x001A, 0x0122, 0x4102, 0x0124, 0x4100, 0x4101, 0x0020, 0x0021, 0x0022, 0x4004, - 0x0024, 0x4002, 0x4001, 0x4000, 0x0028, 0x0110, 0x1800, 0x1801, 0x002C, 0x400A, 0x4009, 0x4008, - 0x0030, 0x0108, 0x0240, 0x0241, 0x0034, 0x4012, 0x4011, 0x4010, 0x0101, 0x0100, 0x0103, 0x0102, - 0x0105, 0x0104, 0x1401, 0x1400, 0x0040, 0x0041, 0x0042, 0x0043, 0x0044, 0x0045, 0x0046, 0x4060, - 0x0048, 0x0049, 0x0301, 0x0300, 0x004C, 0x1600, 0x0305, 0x0304, 0x0050, 0x0051, 0x0220, 0x0221, - 0x3000, 0x4200, 0x3002, 0x4202, 0x0058, 0x1082, 0x1081, 0x1080, 0x3008, 0x4208, 0x2820, 0x1084, - 0x0060, 0x0061, 0x0210, 0x0211, 0x0480, 0x0481, 0x4041, 0x4040, 0x0068, 0x2402, 0x2401, 0x2400, - 0x0488, 0x3100, 0x2810, 0x2404, 0x0202, 0x0880, 0x0200, 0x0201, 0x0206, 0x0884, 0x0204, 0x0205, - 0x0141, 0x0140, 0x0208, 0x0209, 0x2802, 0x0144, 0x2800, 0x2801, 0x0080, 0x0081, 0x0082, 0x0A00, - 0x0084, 0x0085, 0x2009, 0x2008, 0x0088, 0x0089, 0x2005, 0x2004, 0x2003, 0x2002, 0x2001, 0x2000, - 0x0090, 0x0091, 0x0092, 0x1048, 0x0602, 0x0C80, 0x0600, 0x0601, 0x0098, 0x1042, 0x1041, 0x1040, - 0x2013, 0x2012, 0x2011, 0x2010, 0x00A0, 0x00A1, 0x00A2, 0x4084, 0x0440, 0x0441, 0x4081, 0x4080, - 0x6000, 0x1200, 0x6002, 0x1202, 0x6004, 0x2022, 0x2021, 0x2020, 0x0841, 0x0840, 0x2104, 0x0842, - 0x2102, 0x0844, 0x2100, 0x2101, 0x0181, 0x0180, 0x0B00, 0x0182, 0x5040, 0x0184, 0x2108, 0x2030, - 0x00C0, 0x00C1, 0x4401, 0x4400, 0x0420, 0x0421, 0x0422, 0x4404, 0x0900, 0x0901, 0x1011, 0x1010, - 0x0904, 0x2042, 0x2041, 0x2040, 0x0821, 0x0820, 0x1009, 0x1008, 0x4802, 0x0824, 0x4800, 0x4801, - 0x1003, 0x1002, 0x1001, 0x1000, 0x0501, 0x0500, 0x1005, 0x1004, 0x0404, 0x0810, 0x1100, 0x1101, - 0x0400, 0x0401, 0x0402, 0x0403, 0x040C, 0x0818, 0x1108, 0x1030, 0x0408, 0x0409, 0x040A, 0x2060, - 0x0801, 0x0800, 0x0280, 0x0802, 0x0410, 0x0804, 0x0412, 0x0806, 0x0809, 0x0808, 0x1021, 0x1020, - 0x5000, 0x2200, 0x5002, 0x2202) - -X14 = 0x00004000 # vector representation of X^14 -X8 = 0x00000100 # vector representation of X^8 -MASK7 = 0xffffff00 # auxiliary vector for testing -GENPOL = 0x00000139 # generator polinomial, g(x) - -def get_synd_1576(_pattern): - aux = X14; - if _pattern >= X8: - while _pattern & MASK7: - while not (aux & _pattern): - aux = aux >> 1 - _pattern ^= (aux / X8) * GENPOL - return _pattern - -def encode(_data): - value = (_data[0] >> 1) & 0x7F - cksum = ENCODE_1676[value] - _data[0] = cksum >> 8 - _data[1] = cksum & 0xFF - return _data - -def decode(_data): - code = (_data[0] << 7) + (_data[1] >> 1) - syndrome = get_synd_1576(code) - error_pattern = DECODE_1576[syndrome] - code ^= error_pattern - return code >> 7 - - -#------------------------------------------------------------------------------ -# Used to execute the module directly to run built-in tests -#------------------------------------------------------------------------------ - -if __name__ == '__main__': - - from binascii import b2a_hex as h - from time import time \ No newline at end of file From 46b7632ad8e4e2d9b3330f0da8f1d88701e072d1 Mon Sep 17 00:00:00 2001 From: Cort Buffington Date: Mon, 24 Oct 2016 06:33:55 -0500 Subject: [PATCH 09/38] Progress --- constants.py | 84 +++++++++++++++++++++++++++++++++++---- hb_router.py | 2 +- qr.py | 110 +++++++++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 188 insertions(+), 8 deletions(-) mode change 100644 => 100755 constants.py create mode 100755 qr.py diff --git a/constants.py b/constants.py old mode 100644 new mode 100755 index db34de4..c7bf42f --- a/constants.py +++ b/constants.py @@ -1,20 +1,90 @@ +#!/usr/bin/env python +# +# This work is licensed under the Creative Attribution-NonCommercial-ShareAlike +# 3.0 Unported License.To view a copy of this license, visit +# http://creativecommons.org/licenses/by-nc-sa/3.0/ or send a letter to +# Creative Commons, 444 Castro Street, Suite 900, Mountain View, +# California, 94041, USA. + +from __future__ import print_function + from bitarray import bitarray +# Does anybody read this stuff? There's a PEP somewhere that says I should do this. +__author__ = 'Cortney T. Buffington, N0MJS' +__copyright__ = 'Copyright (c) 2016 Cortney T. Buffington, N0MJS and the K0USY Group' +__credits__ = '' +__license__ = 'Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported' +__maintainer__ = 'Cort Buffington, N0MJS' +__email__ = 'n0mjs@me.com' + +# Sync patterns used for LC and Voice Burst A packets BS_VOICE_SYNC = bitarray() BS_DATA_SYNC = bitarray() - BS_VOICE_SYNC.frombytes(b'\x75\x5F\xD7\xDF\x75\xF7') BS_DATA_SYNC.frombytes(b'\xDF\xF5\x7D\x75\xDF\x5D') +SYNC = { + 'BS_VOICE': BS_VOICE_SYNC, + 'BS_DATA': BS_DATA_SYNC +} + # Precomputed EMB values, where CC always = 1, and PI always = 0 -BURST_B_EMB = bitarray('0001001110010001') -BURST_C_EMB = bitarray('0001011101110100') -BURST_D_EMB = bitarray('0001011101110100') -BURST_E_EMB = bitarray('0001010100000111') -BURST_F_EMB = bitarray('0001000111100010') +EMB = { + 'BURST_B': bitarray('0001001110010001'), + 'BURST_C': bitarray('0001011101110100'), + 'BURST_D': bitarray('0001011101110100'), + 'BURST_E': bitarray('0001010100000111'), + 'BURST_F': bitarray('0001000111100010') +} + +# Precomputed Slot Type values where CC always = 1 +SLOT_TYPE = { + 'PI_HEAD': bitarray('00010000001101100111'), + 'VOICE_LC_HEAD': bitarray('00010001101110001100'), + 'VOICE_LC_TERM': bitarray('00010010101001011001'), + 'CSBK': bitarray('00010011001010110010'), + 'MBC_HEAD': bitarray('00010100100111110000'), + 'MBC_CONT': bitarray('00010101000100011011'), + 'DATA_HEAD': bitarray('00010110000011001110'), + '1/2_DATA': bitarray('00010111100000100101'), + '3/4_DATA': bitarray('00011000111010100001'), + 'IDLE': bitarray('00011001011001001010'), + '1/1_DATA': bitarray('00011010011110011111'), + 'RES_1': bitarray('00011011111101110100'), + 'RES_2': bitarray('00011100010000110110'), + 'RES_3': bitarray('00011101110011011101'), + 'RES_4': bitarray('00011110110100001000'), + 'RES_5': bitarray('00011111010111100011') +} + +# LC infor for first 3 Bytes: +# Byte 1: PF (1),Res(1),FLCO(6) -- Byte 2: FID(8) -- Byte 3: Service Options(8) +LC_VOICE = { + 'FLCO-GRP': bitarray('00000000'), + 'FLCO-USR': bitarray('00000011'), + 'FID-GENC': bitarray('00000000'), + 'FID-MOTO': bitarray('00010000'), + 'SVC-OVCM': bitarray('00100000'), + 'SVC-NONE': bitarray('00000000') +} ''' EMB: CC(4b), PI(1b), LCSS(2b), EMB Parity(9b - QR 16,7,5) Slot Type: CC(4b), DataType(4), Slot Type Parity(12b - ) -''' \ No newline at end of file +''' + +#------------------------------------------------------------------------------ +# Used to execute the module directly to run built-in tests +#------------------------------------------------------------------------------ + +if __name__ == '__main__': + + from binascii import b2a_hex as h + from time import time + from pprint import pprint + + pprint(SYNC) + pprint(EMB) + pprint(SLOT_TYPE) \ No newline at end of file diff --git a/hb_router.py b/hb_router.py index ce75af4..2486fbe 100755 --- a/hb_router.py +++ b/hb_router.py @@ -72,7 +72,7 @@ class routerMASTER(HBMASTER): def __init__(self, *args, **kwargs): HBMASTER.__init__(self, *args, **kwargs) - self._last_stream_id + self._last_stream_id = '' self.embedded_lc_rx = [0,0,0,0] self.embedded_lc_tx = [0,0,0,0] self.embedded_lc = '' diff --git a/qr.py b/qr.py new file mode 100755 index 0000000..e6ba72f --- /dev/null +++ b/qr.py @@ -0,0 +1,110 @@ +#!/usr/bin/env python +# +# This work is licensed under the Creative Attribution-NonCommercial-ShareAlike +# 3.0 Unported License.To view a copy of this license, visit +# http://creativecommons.org/licenses/by-nc-sa/3.0/ or send a letter to +# Creative Commons, 444 Castro Street, Suite 900, Mountain View, +# California, 94041, USA. + +from __future__ import print_function +from bitarray import bitarray + +# Does anybody read this stuff? There's a PEP somewhere that says I should do this. +__author__ = 'Cortney T. Buffington, N0MJS' +__copyright__ = 'Copyright (c) 2016 Cortney T. Buffington, N0MJS and the K0USY Group' +__credits__ = 'Jonathan Naylor, G4KLX who many parts of this were thankfully borrowed from' +__license__ = 'Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported' +__maintainer__ = 'Cort Buffington, N0MJS' +__email__ = 'n0mjs@me.com' + + +ENCODE_1676 = ( + 0x0000, 0x0273, 0x04E5, 0x0696, 0x09C9, 0x0BBA, 0x0D2C, 0x0F5F, 0x11E2, 0x1391, 0x1507, 0x1774, + 0x182B, 0x1A58, 0x1CCE, 0x1EBD, 0x21B7, 0x23C4, 0x2552, 0x2721, 0x287E, 0x2A0D, 0x2C9B, 0x2EE8, + 0x3055, 0x3226, 0x34B0, 0x36C3, 0x399C, 0x3BEF, 0x3D79, 0x3F0A, 0x411E, 0x436D, 0x45FB, 0x4788, + 0x48D7, 0x4AA4, 0x4C32, 0x4E41, 0x50FC, 0x528F, 0x5419, 0x566A, 0x5935, 0x5B46, 0x5DD0, 0x5FA3, + 0x60A9, 0x62DA, 0x644C, 0x663F, 0x6960, 0x6B13, 0x6D85, 0x6FF6, 0x714B, 0x7338, 0x75AE, 0x77DD, + 0x7882, 0x7AF1, 0x7C67, 0x7E14, 0x804F, 0x823C, 0x84AA, 0x86D9, 0x8986, 0x8BF5, 0x8D63, 0x8F10, + 0x91AD, 0x93DE, 0x9548, 0x973B, 0x9864, 0x9A17, 0x9C81, 0x9EF2, 0xA1F8, 0xA38B, 0xA51D, 0xA76E, + 0xA831, 0xAA42, 0xACD4, 0xAEA7, 0xB01A, 0xB269, 0xB4FF, 0xB68C, 0xB9D3, 0xBBA0, 0xBD36, 0xBF45, + 0xC151, 0xC322, 0xC5B4, 0xC7C7, 0xC898, 0xCAEB, 0xCC7D, 0xCE0E, 0xD0B3, 0xD2C0, 0xD456, 0xD625, + 0xD97A, 0xDB09, 0xDD9F, 0xDFEC, 0xE0E6, 0xE295, 0xE403, 0xE670, 0xE92F, 0xEB5C, 0xEDCA, 0xEFB9, + 0xF104, 0xF377, 0xF5E1, 0xF792, 0xF8CD, 0xFABE, 0xFC28, 0xFE5B) + +DECODE_1576 = ( + 0x0000, 0x0001, 0x0002, 0x0003, 0x0004, 0x0005, 0x0006, 0x4020, 0x0008, 0x0009, 0x000A, 0x000B, + 0x000C, 0x000D, 0x2081, 0x2080, 0x0010, 0x0011, 0x0012, 0x0013, 0x0014, 0x0C00, 0x0016, 0x0C02, + 0x0018, 0x0120, 0x001A, 0x0122, 0x4102, 0x0124, 0x4100, 0x4101, 0x0020, 0x0021, 0x0022, 0x4004, + 0x0024, 0x4002, 0x4001, 0x4000, 0x0028, 0x0110, 0x1800, 0x1801, 0x002C, 0x400A, 0x4009, 0x4008, + 0x0030, 0x0108, 0x0240, 0x0241, 0x0034, 0x4012, 0x4011, 0x4010, 0x0101, 0x0100, 0x0103, 0x0102, + 0x0105, 0x0104, 0x1401, 0x1400, 0x0040, 0x0041, 0x0042, 0x0043, 0x0044, 0x0045, 0x0046, 0x4060, + 0x0048, 0x0049, 0x0301, 0x0300, 0x004C, 0x1600, 0x0305, 0x0304, 0x0050, 0x0051, 0x0220, 0x0221, + 0x3000, 0x4200, 0x3002, 0x4202, 0x0058, 0x1082, 0x1081, 0x1080, 0x3008, 0x4208, 0x2820, 0x1084, + 0x0060, 0x0061, 0x0210, 0x0211, 0x0480, 0x0481, 0x4041, 0x4040, 0x0068, 0x2402, 0x2401, 0x2400, + 0x0488, 0x3100, 0x2810, 0x2404, 0x0202, 0x0880, 0x0200, 0x0201, 0x0206, 0x0884, 0x0204, 0x0205, + 0x0141, 0x0140, 0x0208, 0x0209, 0x2802, 0x0144, 0x2800, 0x2801, 0x0080, 0x0081, 0x0082, 0x0A00, + 0x0084, 0x0085, 0x2009, 0x2008, 0x0088, 0x0089, 0x2005, 0x2004, 0x2003, 0x2002, 0x2001, 0x2000, + 0x0090, 0x0091, 0x0092, 0x1048, 0x0602, 0x0C80, 0x0600, 0x0601, 0x0098, 0x1042, 0x1041, 0x1040, + 0x2013, 0x2012, 0x2011, 0x2010, 0x00A0, 0x00A1, 0x00A2, 0x4084, 0x0440, 0x0441, 0x4081, 0x4080, + 0x6000, 0x1200, 0x6002, 0x1202, 0x6004, 0x2022, 0x2021, 0x2020, 0x0841, 0x0840, 0x2104, 0x0842, + 0x2102, 0x0844, 0x2100, 0x2101, 0x0181, 0x0180, 0x0B00, 0x0182, 0x5040, 0x0184, 0x2108, 0x2030, + 0x00C0, 0x00C1, 0x4401, 0x4400, 0x0420, 0x0421, 0x0422, 0x4404, 0x0900, 0x0901, 0x1011, 0x1010, + 0x0904, 0x2042, 0x2041, 0x2040, 0x0821, 0x0820, 0x1009, 0x1008, 0x4802, 0x0824, 0x4800, 0x4801, + 0x1003, 0x1002, 0x1001, 0x1000, 0x0501, 0x0500, 0x1005, 0x1004, 0x0404, 0x0810, 0x1100, 0x1101, + 0x0400, 0x0401, 0x0402, 0x0403, 0x040C, 0x0818, 0x1108, 0x1030, 0x0408, 0x0409, 0x040A, 0x2060, + 0x0801, 0x0800, 0x0280, 0x0802, 0x0410, 0x0804, 0x0412, 0x0806, 0x0809, 0x0808, 0x1021, 0x1020, + 0x5000, 0x2200, 0x5002, 0x2202) + +X14 = 0x00004000 # vector representation of X^14 +X8 = 0x00000100 # vector representation of X^8 +MASK7 = 0xffffff00 # auxiliary vector for testing +GENPOL = 0x00000139 # generator polinomial, g(x) + +def get_synd_1576(_pattern): + aux = X14; + if _pattern >= X8: + while _pattern & MASK7: + while not (aux & _pattern): + aux = aux >> 1 + _pattern ^= (aux / X8) * GENPOL + return _pattern + +def encode(_data): + value = (_data[0] >> 1) & 0x7F + cksum = ENCODE_1676[value] + _data[0] = cksum >> 8 + _data[1] = cksum & 0xFF + return _data + +def decode(_data): + code = (_data[0] << 7) + (_data[1] >> 1) + syndrome = get_synd_1576(code) + error_pattern = DECODE_1576[syndrome] + code ^= error_pattern + return code >> 7 + + +#------------------------------------------------------------------------------ +# Used to execute the module directly to run built-in tests +#------------------------------------------------------------------------------ + +if __name__ == '__main__': + + from binascii import b2a_hex as h + from time import time + + EMB_bits = [0,0,0,0] + EMB_bits[0] = bitarray('0001000') # 111100010 + EMB_bits[1] = bitarray('0001001') # 110010001 + EMB_bits[2] = bitarray('0001010') # 100000111 + EMB_bits[3] = bitarray('0001011') # 101110100 + print(EMB_bits) + + + for seq in xrange(4): + out = 0 + for bit in EMB_bits[seq]: + out = (out << 1) | bit + print(out) + emb = ENCODE_1676[out] + print(bin(emb)) \ No newline at end of file From 5b21e8d612dd250026351fbd41cc56334728b06a Mon Sep 17 00:00:00 2001 From: Cort Buffington Date: Mon, 24 Oct 2016 16:25:14 -0500 Subject: [PATCH 10/38] Progress --- constants.py | 7 ++++- dec_dmr.py | 86 ++++++++++++++++++++++++++-------------------------- hb_router.py | 29 +++++++----------- 3 files changed, 60 insertions(+), 62 deletions(-) diff --git a/constants.py b/constants.py index c7bf42f..cec3b8f 100755 --- a/constants.py +++ b/constants.py @@ -7,9 +7,9 @@ # California, 94041, USA. from __future__ import print_function - from bitarray import bitarray + # Does anybody read this stuff? There's a PEP somewhere that says I should do this. __author__ = 'Cortney T. Buffington, N0MJS' __copyright__ = 'Copyright (c) 2016 Cortney T. Buffington, N0MJS and the K0USY Group' @@ -18,6 +18,11 @@ __license__ = 'Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unpo __maintainer__ = 'Cort Buffington, N0MJS' __email__ = 'n0mjs@me.com' + +# Slot Type Data types +VOICE_HEAD = '\x01' +VOICE_TERM = '\x02' + # Sync patterns used for LC and Voice Burst A packets BS_VOICE_SYNC = bitarray() BS_DATA_SYNC = bitarray() diff --git a/dec_dmr.py b/dec_dmr.py index d5711c4..c5438d2 100755 --- a/dec_dmr.py +++ b/dec_dmr.py @@ -34,7 +34,7 @@ def voice_head_term(_string): lc = bptc.decode_full_lc(info).tobytes() cc = to_bytes(slot_type[0:4]) dtype = to_bytes(slot_type[4:8]) - return (lc, cc, dtype, sync) + return {'LC': lc, 'CC': cc, 'DTYPE': dtype, 'SYNC': sync} def voice_sync(_string): @@ -44,7 +44,7 @@ def voice_sync(_string): ambe[1] = burst[72:108] + burst[156:192] ambe[2] = burst[192:264] sync = burst[108:156] - return (ambe, sync) + return {'AMBE': ambe, 'SYNC': sync} def voice(_string): @@ -54,10 +54,10 @@ def voice(_string): ambe[1] = burst[72:108] + burst[156:192] ambe[2] = burst[192:264] emb = burst[108:116] + burst[148:156] - embedded = burst[116:148] + embed = burst[116:148] cc = (to_bytes(emb[0:4])) lcss = (to_bytes(emb[5:7])) - return (ambe, cc, lcss, embedded) + return {'AMBE': ambe, 'CC': cc, 'LCSS': lcss, 'EMBED': embed} def to_bytes(_bits): @@ -89,85 +89,85 @@ if __name__ == '__main__': voice_f = '\xee\xe7\x81\x75\x74\x61\x4d\xf2\xff\xcc\xf4\xa0\x55\x11\x10\x00\x00\x00\x0e\x24\x30\x59\xe7\xf9\xe9\x08\xa0\x75\x62\x02\xcc\xd6\x22' voice_term = '\x2b\x0f\x04\xc4\x1f\x34\x2d\xa8\x0d\x80\x7d\xe1\x04\xad\xff\x57\xd7\x5d\xf5\xd9\x65\x01\x2d\x18\x77\xd2\x03\xc0\x37\x88\xdf\x95\xd1' - embedded_lc = bitarray() + embed_lc = bitarray() print('DMR PACKET DECODER VALIDATION\n') print('Header:') t0 = time() lc = voice_head_term(data_head) t1 = time() - print('LC: OPT-{} SRC-{} DST-{}, SLOT TYPE: CC-{} DTYPE-{}'.format(h(lc[0][0:3]),h(lc[0][3:6]),h(lc[0][6:9]),h(lc[1]),h(lc[2]))) + print('LC: OPT-{} SRC-{} DST-{}, SLOT TYPE: CC-{} DTYPE-{}'.format(h(lc['LC'][0:3]),h(lc['LC'][3:6]),h(lc['LC'][6:9]),h(lc['CC']),h(lc['DTYPE']))) print('Decode Time: {}\n'.format(t1-t0)) print('Voice Burst A:') t0 = time() - lc = voice_sync(voice_a) + pkt = voice_sync(voice_a) t1 = time() - print('VOICE SYNC: {}'.format(h(lc[1]))) - print('AMBE 0: {}, {}'.format(lc[0][0], len(lc[0][0]))) - print('AMBE 1: {}, {}'.format(lc[0][1], len(lc[0][1]))) - print('AMBE 2: {}, {}'.format(lc[0][2], len(lc[0][2]))) + print('VOICE SYNC: {}'.format(h(lc['SYNC']))) + print('AMBE 0: {}, {}'.format(pkt['AMBE'][0], len(pkt['AMBE'][0]))) + print('AMBE 1: {}, {}'.format(pkt['AMBE'][1], len(pkt['AMBE'][1]))) + print('AMBE 2: {}, {}'.format(pkt['AMBE'][1], len(pkt['AMBE'][2]))) print(t1-t0, '\n') print('Voice Burst B:') t0 = time() - lc = voice(voice_b) - embedded_lc += lc[3] + pkt = voice(voice_b) + embed_lc += pkt['EMBED'] t1 = time() - print('EMB: CC-{} LCSS-{}, EMBEDDED LC: {}'.format(h(lc[1]), h(lc[2]), h(lc[3].tobytes()))) - print('AMBE 0: {}, {}'.format(lc[0][0], len(lc[0][0]))) - print('AMBE 1: {}, {}'.format(lc[0][1], len(lc[0][1]))) - print('AMBE 2: {}, {}'.format(lc[0][2], len(lc[0][2]))) + print('EMB: CC-{} LCSS-{}, EMBEDDED LC: {}'.format(h(pkt['CC']), h(pkt['LCSS']), h(pkt['EMBED'].tobytes()))) + print('AMBE 0: {}, {}'.format(pkt['AMBE'][0], len(pkt['AMBE'][0]))) + print('AMBE 1: {}, {}'.format(pkt['AMBE'][1], len(pkt['AMBE'][1]))) + print('AMBE 2: {}, {}'.format(pkt['AMBE'][1], len(pkt['AMBE'][2]))) print(t1-t0, '\n') print('Voice Burst C:') t0 = time() - lc = voice(voice_c) - embedded_lc += lc[3] + pkt = voice(voice_c) + embed_lc += pkt['EMBED'] t1 = time() - print('EMB: CC-{} LCSS-{}, EMBEDDED LC: {}'.format(h(lc[1]), h(lc[2]), h(lc[3].tobytes()))) - print('AMBE 0: {}, {}'.format(lc[0][0], len(lc[0][0]))) - print('AMBE 1: {}, {}'.format(lc[0][1], len(lc[0][1]))) - print('AMBE 2: {}, {}'.format(lc[0][2], len(lc[0][2]))) + print('EMB: CC-{} LCSS-{}, EMBEDDED LC: {}'.format(h(pkt['CC']), h(pkt['LCSS']), h(pkt['EMBED'].tobytes()))) + print('AMBE 0: {}, {}'.format(pkt['AMBE'][0], len(pkt['AMBE'][0]))) + print('AMBE 1: {}, {}'.format(pkt['AMBE'][1], len(pkt['AMBE'][1]))) + print('AMBE 2: {}, {}'.format(pkt['AMBE'][1], len(pkt['AMBE'][2]))) print(t1-t0, '\n') print('Voice Burst D:') t0 = time() - lc = voice(voice_d) - embedded_lc += lc[3] + pkt = voice(voice_d) + embed_lc += pkt['EMBED'] t1 = time() - print('EMB: CC-{} LCSS-{}, EMBEDDED LC: {}'.format(h(lc[1]), h(lc[2]), h(lc[3].tobytes()))) - print('AMBE 0: {}, {}'.format(lc[0][0], len(lc[0][0]))) - print('AMBE 1: {}, {}'.format(lc[0][1], len(lc[0][1]))) - print('AMBE 2: {}, {}'.format(lc[0][2], len(lc[0][2]))) + print('EMB: CC-{} LCSS-{}, EMBEDDED LC: {}'.format(h(pkt['CC']), h(pkt['LCSS']), h(pkt['EMBED'].tobytes()))) + print('AMBE 0: {}, {}'.format(pkt['AMBE'][0], len(pkt['AMBE'][0]))) + print('AMBE 1: {}, {}'.format(pkt['AMBE'][1], len(pkt['AMBE'][1]))) + print('AMBE 2: {}, {}'.format(pkt['AMBE'][1], len(pkt['AMBE'][2]))) print(t1-t0, '\n') print('Voice Burst E:') t0 = time() - lc = voice(voice_e) - embedded_lc += lc[3] - embedded_lc = bptc.decode_emblc(embedded_lc) + pkt = voice(voice_e) + embed_lc += pkt['EMBED'] + embed_lc = bptc.decode_emblc(embed_lc) t1 = time() - print('EMB: CC-{} LCSS-{}, EMBEDDED LC: {}'.format(h(lc[1]), h(lc[2]), h(lc[3].tobytes()))) - print('COMPLETE EMBEDDED LC: {}'.format(h(embedded_lc))) - print('AMBE 0: {}, {}'.format(lc[0][0], len(lc[0][0]))) - print('AMBE 1: {}, {}'.format(lc[0][1], len(lc[0][1]))) - print('AMBE 2: {}, {}'.format(lc[0][2], len(lc[0][2]))) + print('EMB: CC-{} LCSS-{}, EMBEDDED LC: {}'.format(h(pkt['CC']), h(pkt['LCSS']), h(pkt['EMBED'].tobytes()))) + print('COMPLETE EMBEDDED LC: {}'.format(h(embed_lc))) + print('AMBE 0: {}, {}'.format(pkt['AMBE'][0], len(pkt['AMBE'][0]))) + print('AMBE 1: {}, {}'.format(pkt['AMBE'][1], len(pkt['AMBE'][1]))) + print('AMBE 2: {}, {}'.format(pkt['AMBE'][1], len(pkt['AMBE'][2]))) print(t1-t0, '\n') print('Voice Burst F:') t0 = time() - lc = voice(voice_f) + pkt = voice(voice_f) t1 = time() - print('EMB: CC-{} LCSS-{}, EMBEDDED LC: {}'.format(h(lc[1]), h(lc[2]), h(lc[3].tobytes()))) - print('AMBE 0: {}, {}'.format(lc[0][0], len(lc[0][0]))) - print('AMBE 1: {}, {}'.format(lc[0][1], len(lc[0][1]))) - print('AMBE 2: {}, {}'.format(lc[0][2], len(lc[0][2]))) + print('EMB: CC-{} LCSS-{}, EMBEDDED LC: {}'.format(h(pkt['CC']), h(pkt['LCSS']), h(pkt['EMBED'].tobytes()))) + print('AMBE 0: {}, {}'.format(pkt['AMBE'][0], len(pkt['AMBE'][0]))) + print('AMBE 1: {}, {}'.format(pkt['AMBE'][1], len(pkt['AMBE'][1]))) + print('AMBE 2: {}, {}'.format(pkt['AMBE'][1], len(pkt['AMBE'][2]))) print(t1-t0, '\n') print('Terminator:') t0 = time() lc = voice_head_term(voice_term) t1 = time() - print('LC: OPT-{} SRC-{} DST-{} SLOT TYPE: CC-{} DTYPE-{}'.format(h(lc[0][0:3]),h(lc[0][3:6]),h(lc[0][6:9]),h(lc[1]),h(lc[2]))) + print('LC: OPT-{} SRC-{} DST-{} SLOT TYPE: CC-{} DTYPE-{}'.format(h(lc['LC'][0:3]),h(lc['LC'][3:6]),h(lc['LC'][6:9]),h(lc['CC']),h(lc['DTYPE']))) print('Decode Time: {}\n'.format(t1-t0)) \ No newline at end of file diff --git a/hb_router.py b/hb_router.py index 2486fbe..470f5ba 100755 --- a/hb_router.py +++ b/hb_router.py @@ -24,6 +24,7 @@ from twisted.internet import task # Things we import from the main hblink module from hblink import CONFIG, HBMASTER, HBCLIENT, logger, systems, hex_str_3, int_id import dec_dmr +import constants as const # Import Bridging rules # Note: A stanza *must* exist for any MASTER or CLIENT configured in the main @@ -73,41 +74,33 @@ class routerMASTER(HBMASTER): def __init__(self, *args, **kwargs): HBMASTER.__init__(self, *args, **kwargs) self._last_stream_id = '' + self._last_seq_id = 0x00 + self.lc_rx = '' + self.lc_tx = '' self.embedded_lc_rx = [0,0,0,0] self.embedded_lc_tx = [0,0,0,0] - self.embedded_lc = '' - self.lc_index = 0 + self.have_lc_rx = False + self.have_lc_rx = False + self.embedded_lc_index = 0 def dmrd_received(self, _radio_id, _rf_src, _dst_id, _seq, _slot, _call_type, _frame_type, _dtype_vseq, _stream_id, _data): _bits = int_id(_data[15]) if _call_type == 'group': if _frame_type == 'data_sync': - lc = dec_dmr.voice_head_term(_data[20:53]) - if lc[2] == '\x01': + head = dec_dmr.voice_head_term(_data[20:53]) + if head['DTYPE'] == const.VOICE_HEAD: print('Voice Header: LC: {}, CC: {}, DTYPE: {}, SYNC: {}'.format(h(lc[0]), h(lc[1]), h(lc[2]), h(lc[3]))) if lc[2] == '\x02': print('Voice Terminator: LC: {}, CC: {}, DTYPE: {}, SYNC: {}'.format(h(lc[0]), h(lc[1]), h(lc[2]), h(lc[3]))) if _frame_type == 'voice_sync': lc = dec_dmr.voice_sync(_data[20:53]) - print('Voice Burst A: SYNC: {}'.format(h(lc[1]))) + if _frame_type == 'voice': lc = dec_dmr.voice(_data[20:53]) - if lc[2] == '\x01': - self.lc_index = 0 - self.embedded_lc_rx[self.lc_index] = lc[3] - elif lc[2] == '\x03': - self.lc_index += 1 - self.embedded_lc_rx[self.lc_index] = lc[3] - elif lc[2] == '\x02': - self.lc_index += 1 - if self.lc_index == 3: - self.embedded_lc_rx[self.lc_index] = lc[3] - self.embedded_lc = dec_dmr.bptc.decode_emblc(self.embedded_lc_rx[0] + self.embedded_lc_rx[1] + self.embedded_lc_rx[2] + self.embedded_lc_rx[3]) - print('Emedded LC Completed: {}'.format(h(self.embedded_lc))) - print('Voice Burst B-F: CC: {}, LCSS: {}, EMBEDDED LC: {}'.format(h(lc[1]), h(lc[2]), h(lc[3]))) + _routed = False for rule in RULES[self._master]['GROUP_VOICE']: From 2fbe26fb4279943531d60e3f2f6524fbc05521d2 Mon Sep 17 00:00:00 2001 From: Cort Buffington Date: Tue, 1 Nov 2016 19:49:13 -0500 Subject: [PATCH 11/38] general progress --- constants.py | 13 +- hb_router.py | 80 +++++--- hblink.py | 10 +- peer_ids.csv | 129 ++++++++----- subscriber_ids.csv | 472 ++++++++++++++++++++++++++++++++++++++++++--- 5 files changed, 590 insertions(+), 114 deletions(-) diff --git a/constants.py b/constants.py index cec3b8f..192fd55 100755 --- a/constants.py +++ b/constants.py @@ -18,10 +18,19 @@ __license__ = 'Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unpo __maintainer__ = 'Cort Buffington, N0MJS' __email__ = 'n0mjs@me.com' +# Timers +STREAM_TO = .360 + +# HomeBrew Protocol Frame Types +HBPF_VOICE = 0x0 +HBPF_VOICE_SYNC = 0x1 +HBPF_DATA_SYNC = 0x2 +HBPF_SLT_VHEAD = 0x1 +HBPF_SLT_VTERM = 0x2 # Slot Type Data types -VOICE_HEAD = '\x01' -VOICE_TERM = '\x02' +DMR_SLT_VHEAD = '\x01' +DMR_SLT_VTERM = '\x02' # Sync patterns used for LC and Voice Burst A packets BS_VOICE_SYNC = bitarray() diff --git a/hb_router.py b/hb_router.py index 470f5ba..9bcaa71 100755 --- a/hb_router.py +++ b/hb_router.py @@ -12,6 +12,7 @@ from __future__ import print_function import sys from binascii import b2a_hex as h from bitarray import bitarray +from time import time # Debugging functions from pprint import pprint @@ -39,6 +40,7 @@ except ImportError: # Convert integer GROUP ID numbers from the config into hex strings # we need to send in the actual data packets. for _system in RULES_FILE: + RULES_FILE[_system]['GROUP_HANGTIME'] = RULES_FILE[_system]['GROUP_HANGTIME'] * 1000 for _rule in RULES_FILE[_system]['GROUP_VOICE']: _rule['SRC_GROUP'] = hex_str_3(_rule['SRC_GROUP']) _rule['DST_GROUP'] = hex_str_3(_rule['DST_GROUP']) @@ -73,35 +75,65 @@ class routerMASTER(HBMASTER): def __init__(self, *args, **kwargs): HBMASTER.__init__(self, *args, **kwargs) - self._last_stream_id = '' - self._last_seq_id = 0x00 - self.lc_rx = '' - self.lc_tx = '' - self.embedded_lc_rx = [0,0,0,0] - self.embedded_lc_tx = [0,0,0,0] - self.have_lc_rx = False - self.have_lc_rx = False - self.embedded_lc_index = 0 + + self.ts1_state = { + 'LSTREAM_ID': '', + 'LPKT_TIME': time(), + 'LPKT_TYPE': const.HBPF_SLT_VTERM, + 'LSEQ_ID': 0x00, + 'LC': '', + 'EMBLC': [0,0,0,0,0,0] + } + + self.ts2_state = { + 'LSTREAM_ID': '', + 'LPKT_TIME': time(), + 'LPKT_TYPE': const.HBPF_SLT_VTERM, + 'LSEQ_ID': 0x00, + 'LC': '', + 'EMBLC': [0,0,0,0,0,0] + } + def dmrd_received(self, _radio_id, _rf_src, _dst_id, _seq, _slot, _call_type, _frame_type, _dtype_vseq, _stream_id, _data): + if _slot == 1: + state = self.ts1_state + elif _slot == 2: + state = self.ts2_state + else: + logger.error('(%s) DMRD received with invalid Timeslot value: %s', self._master, h(_data)) + pkt_time = time() + dmrpkt = _data[20:54] + + if (_stream_id != state['LSTREAM_ID']) and ((state['LPKT_TYPE'] != const.HBPF_SLT_VTERM) or (pkt_time < state['LPKT_TIME'] + const.STREAM_TO)): + logger.warning('(%s) Packet received SUB: %s REPEATER: %s TGID %s, SLOT %s collided with existing call', self._master, int_id(_radio_id), int_id(_rf_src), int_id(_dst_id), _slot) + return + + if (_stream_id != state['LSTREAM_ID']): + logger.info('(%s) New call stream stareted SUB: %s REPEATER: %s TGID %s, SLOT %s', self._master, int_id(_radio_id), int_id(_rf_src), int_id(_dst_id), _slot) + state['LSTREAM_ID'] = _stream_id + state['LPKT_TIME'] = pkt_time + state['LSEQ_ID'] = _seq + ''' + if _frame_type == const.HBPF_DATA_SYNC and _dtype_vseq == const.HBPF_SLT_VHEAD: + decoded = dec_dmr.voice_head_term(dmrpkt) + state['LC'] = decoded['LC'] + print(h(state['LC'])) + ''' + if not state['LC'] and _frame_type == const.HBPF_VOICE: + decoded = dec_dmr.voice(dmrpkt) + state['EMBLC'][_dtype_vseq] = decoded['EMBED'] + print(h(decoded['EMBED'])) + + if state['EMBLC'][1] and state['EMBLC'][2] and state['EMBLC'][3] and state['EMBLC'][4]: + print(h(dec_dmr.bptc.decode_emblc(state['EMBLC'][1] + state['EMBLC'][2] + state['EMBLC'][3] + state['EMBLC'][4]))) + + + print(h(state['EMBLC'][1]),h(state['EMBLC'][2]),h(state['EMBLC'][3]),h(state['EMBLC'][4])) + _bits = int_id(_data[15]) if _call_type == 'group': - if _frame_type == 'data_sync': - head = dec_dmr.voice_head_term(_data[20:53]) - if head['DTYPE'] == const.VOICE_HEAD: - print('Voice Header: LC: {}, CC: {}, DTYPE: {}, SYNC: {}'.format(h(lc[0]), h(lc[1]), h(lc[2]), h(lc[3]))) - if lc[2] == '\x02': - print('Voice Terminator: LC: {}, CC: {}, DTYPE: {}, SYNC: {}'.format(h(lc[0]), h(lc[1]), h(lc[2]), h(lc[3]))) - - if _frame_type == 'voice_sync': - lc = dec_dmr.voice_sync(_data[20:53]) - - - if _frame_type == 'voice': - lc = dec_dmr.voice(_data[20:53]) - - _routed = False for rule in RULES[self._master]['GROUP_VOICE']: _target = rule['DST_NET'] diff --git a/hblink.py b/hblink.py index 22c230a..4628b05 100755 --- a/hblink.py +++ b/hblink.py @@ -282,15 +282,7 @@ class HBMASTER(DatagramProtocol): _bits = int_id(_data[15]) _slot = 2 if (_bits & 0x80) else 1 _call_type = 'unit' if (_bits & 0x40) else 'group' - _raw_frame_type = (_bits & 0x30) >> 4 - if _raw_frame_type == 0b00: - _frame_type = 'voice' - elif _raw_frame_type == 0b01: - _frame_type = 'voice_sync' - elif _raw_frame_type == 0b10: - _frame_type = 'data_sync' - else: - _frame_type = 'none' + _frame_type = (_bits & 0x30) >> 4 _dtype_vseq = (_bits & 0xF) # data, 1=voice header, 2=voice terminator; voice, 0=burst A ... 5=burst F _stream_id = _data[16:20] #logger.debug('(%s) DMRD - Seqence: %s, RF Source: %s, Destination ID: %s', self._master, int_id(_seq), int_id(_rf_src), int_id(_dst_id)) diff --git a/peer_ids.csv b/peer_ids.csv index e1b2777..5ff5453 100644 --- a/peer_ids.csv +++ b/peer_ids.csv @@ -4,8 +4,8 @@ 111204,N4IRS,Port Salerno,Florida,United States,444.97500,1,+5.000,Peer,TS1 TS2,N4IRS,,0,None
111205,AF4JC,Middleburg,Florida,United States,442.60000,1,+5.000,Master,Mixed Mode,AF4JC,,0,Brandmiester
111206,KG4IDD,ESPANIOLA,Florida,United States,443.40000,1,+5.000,Peer,TS1 TS2,KG4IDD,,1,Jacksonville, Fl
-113601,WB2ZEX,Brooklyn,New York,United States,438.27500,1,-5.000,Peer,TS1 TS2,WB2ZEX,,1,Bronx Trbo
-113602,KC2NFB,East Meadow,New York,United States,444.40000,1,+5.000,Peer,TS1 TS2,KC2NFB,,1,Bronx Trbo
+113601,WB2ZEX,Brooklyn,New York,United States,438.27500,1,-5.000,Peer,TS1 TS2,WB2ZEX,Time Slot
#1 - Group Call TG 444 NY Metro System wide-FT
#1 - Group Call TG 1 = World Wide -PTT
#1 - Group Call TG 3 = North America-PTT
#1 - Group Call TG 13 = World Wide English-PTT
#1 - Group Call TG 3172 = NE / Regional-PTT
#1 - Group Call TG 310 = Tac 310 -PTT
#1 - Group Call TG 311 = Tac 311 -PTT
#1 - Group Call TG 9998 = Parrot , Audio Test Server-PTT
#2 - member only private Talk Groups
,1,Bronx Trbo
+113602,KC2NFB,East Meadow,New York,United States,444.40000,1,+5.000,Peer,TS1 TS2,KC2NFB,Time Slot
#1 - Group Call TG 444 NY Metro System wide  -FT
#2 - member only private Talk Groups,1,Bronx Trbo
113603,N2LEN,Warrensburg,New York,United States,442.05000,1,+5.000,Master,TS1 TS2,N2LEN,,1,DMR-MARC
113604,N2ZTC,north Hebron,New York,United States,442.30000,7,+5.000,Master,TS1 TS2,N2ZTC,,0,branmister
113605,WB2ERS,Long Island-NYC,New York,United States,444.75000,1,+5.000,Peer,TS1 TS2,WB2ERS,,0,GARA
@@ -18,12 +18,12 @@ 113612,W2RGM,Dix Hills,New York,United States,448.52500,1,-5.000,Peer,TS1 TS2,W2RGM,,1,GARA
113613,W2RGM,Dix Hills,New York,United States,147.07500,1,+0.600,Peer,TS1 TS2,W2RGM,,1,GARA TS-2, Latino TS-1
113614,N2LEN,New Baltimore,New York,United States,449.02500,1,-5.000,Master,TS1 TS2,N2LEN,,1,DMR-MARC
-113615,K2JRC,oakland gardens,New York,United States,438.58750,3,-5.000,Peer,TS1 TS2,K2JRC,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 3 = U.S. / English Speaking Countries
Time Slot #1 - Group Call 3172 = Northeast
Time Slot #2 - Group Call 2 = NY-NJ Metro

You Must Have [ARS] Disabled Within Your Radi

Coverage Area:

Contact Name: Jerry, K2JRC
Email: jerrycudmore@pobox.com,1,NJ TRBO
+113615,K2JRC,Bayside,New York,United States,438.58750,3,-5.000,Peer,TS1 TS2,K2JRC,Time Slot
#1 - Group Call TG 9 Local Talk Group - FT
#1 - Group Call TG 9998 = Parrot Audio Test Server-PTT
#1 - Group Call TG 3 = North America  - PTT
#1 - Group Call TG 310 = Tac 310 Talk Group - PTT
#1 - Group Call TG 311 = Tac 311 Talk Group - PTT
#2 - Group Call TG 444 NY Metro System wide-FT

You Must Have [ARS] Disabled Within Your Radio

Coverage Area:

Contact Name: Jerry, K2JRC
Email: jerrycudmore@pobox.com,1,NJ TRBO
113616,K2JRC,Brooklyn NY,New York,United States,443.70000,3,+5.000,Master,TS1 TS2,K2JRC,,1,Bronx Trbo
113618,KB2LFH,York Town Hts,New York,United States,441.56250,3,+5.000,Peer,TS1 TS2,KB2LFH,,0,BrandMeister
113619,K2ATY,Newburgh,New York,United States,441.01875,10,-5.000,Peer,TS1 TS2,K2ATY,,0,NE-TRBO
-113620,K2JRC,Glen Oaks,New York,United States,438.61250,3,-5.000,Master,TS1 TS2,K2JRC,,1,Bronx Trbo
-113621,NY4Z,Manhattan,New York,United States,445.62500,1,-5.000,Peer,TS1 TS2,NY4Z,,1,Bronx TRBO
+113620,K2JRC,Glen Oaks,New York,United States,438.61250,3,-5.000,Master,TS1 TS2,K2JRC,Time Slot
#1 - Group Call TG 444 NY Metro System wide-FT
#1 - Group Call TG 347639 Disney -FT( for information about this TG click to go to the BEARS website)
#2 - member only private Talk Groups
,1,Bronx Trbo
+113621,NY4Z,Manhattan,New York,United States,442.05000,7,+5.000,Peer,TS1 TS2,NY4Z,Time Slot
#1 - Group Call TG 444 NY Metro System wide-FT
#2   member only private TG
,1,Bronx TRBO
113622,W2WCR,North Creek,New York,United States,442.25000,1,+5.000,Peer,TS1 TS2,N2LBT,,0,BrandMeister
113623,NY4Z,Briarcliff Manor,New York,United States,443.80000,3,+5.000,Master,TS1 TS2,NY4Z,,0,Bronx TRBO
113702,W4GG,Greensboro,North Carolina,United States,444.22500,1,+5.000,Peer,TS1 TS2,W4JLH,,0,PRN
@@ -120,6 +120,7 @@ 208007,F1ZGI,Rueil Malmaison,Île-de-France,France,430.57500,1,9.400,PEER,TS1 TS2,F1TUV,,0,BM
208008,F1ZGO,Meudon,Île-de-France,France,430.05000,1,9.400,PEER,TS1 TS2,F1TDI,,0,DMRF
208010,F1ZWD,Paris,Île-de-France,France,430.15000,1,9.400,PEER,TS1 TS2,F1HBG,,0,BM
+208020,F1ZJU,Rebais,le-de-France,France,430.56250,1,9.400,,,F1SGO,,0,BM
208025,F1ZPQ,Parvis de la Defense,Île-de-France,France,430.23750,1,9.400,PEER,TS1 TS2,F1SHS,,0,Motorola
208065,F1SHS,,Île-de-France,France,430.23750,1,9.400,PEER,TS1 TS2,F1SHS,,0,DMR-plus
208075,F1ZTC,Paris,,France,145.77500,1,-0.600,Peer,TS1 TS2,F1HBG,,0,BM
@@ -193,7 +194,7 @@ 214111,ED1YBY,IN62IG,Galicia,Spain,438.20000,1,-7.600,PEER,TS1 TS2,EA1CI,,0,BrandMeister
214112,ED1ZAR,Monte Fontardion,Galicia,Spain,438.50000,1,-7.600,PEER,TS1 TS2,EA1RKF,,0,BM
214120,ED1ZAS,Gijon,Principado de Asturi,Spain,438.30000,1,-7.600,,,EB1TK,,0,BrandMeister
-214201,ED2ZAD,Monte Sollube,Pais Vasco,Spain,438.22500,1,-7.600,PEER,TS1 TS2,EA2IP,,0,BM
+214201,ED2ZAD,Monte Sollube,Pais Vasco,Spain,438.20000,1,-7.6,PEER,TS1 TS2,EA2IP,,0,BM
214202,ED2ZAC,BILBAO,Basque Country,Spain,438.20000,1,-7.6,PEER,TS1 TS2,EA2IP,,0,DMR-plus
214203,ED2YAO,Bilbao,Basque Country,Spain,438.95000,1,-7.600,PEER,TS1 TS2,EB2DJB,,0,None
214204,ED2YAR,La Higa de Monreal,Navarra,Spain,438.30000,1,-7.600,PEER,TS1 TS2,EA2DDW,,0,BM
@@ -207,7 +208,7 @@ 214302,ED3YAC,Castellar del Valles,Cataluna,Spain,438.80000,1,-7.6,PEER,TS1 TS2,EA3ABN,,0,DMR-plus
214303,ED3ZAK,Barcelona Tibidabo,Cataluna,Spain,438.41250,1,-7.600,PEER,TS1 TS2,EA3ABN,,0,BM
214304,ED3ZAN,Rocacorba (Girona),Cataluna,Spain,438.31250,1,-7.600,Peer,TS1 TS2,EA3ABN,,0,DMR-plus
-214305,ED3ZAH,Barcelona,Cataluna,Spain,439.00000,1,-7.600,PEER,TS1 TS2,EA3IK,,0,DMR-plus
+214305,ED3ZAH,Barcelona,Cataluna,Spain,439.00000,1,-7.6,PEER,TS1 TS2,EA3IK,,0,DMR-plus
214306,ED3YAI,GIRONA,Cataluna,Spain,439.37500,1,-7.600,PEER,TS1 TS2,EA3IK,,0,DMR-plus
214307,ED3YAY,Lleida,Cataluna,Spain,439.17500,1,-7.600,PEER,TS1 TS2,EA3HKB,,0,Hytera
214308,ED3ZAG,Barcelona,Cataluna,Spain,438.31250,1,-7.6,PEER,TS1 TS2,EA3ABN,,0,DMR-plus
@@ -229,11 +230,11 @@ 214555,ED5ZAD,Cid, Petrer Alicante,Comunidad Valenciana,Spain,439.17500,1,-7.600,PEER,TS1 TS2,EA5GF,,0,BM
214601,ED6ZAA,FELANITX - MALLORCA,Islas Baleares,Spain,430.65000,1,7.600,,,EA6QJ,,0,DMR-plus
214602,ED6ZAB,Randa - Mallorca,Islas Baleares,Spain,438.45000,1,-7.600,,,EA6QJ,,0,BrandMeister
-214701,ED7ZAJ,CCMD/Gibalbin-Cadiz,Andalucia,Spain,438.30000,1,-7.600,PEER,TS1 TS2,EA7DYY,,0,DMR-plus
+214701,ED7ZAJ,CCMD/Gibalbin-Cadiz,Andalucia,Spain,438.30000,1,-7.6,PEER,TS1 TS2,EA7DYY,,0,DMR-plus
214702,ED7ZAC,Malaga,Andalucia,Spain,438.45000,1,-7.600,PEER,TS1 TS2,EA7BJ,,0,Hytera
214703,ED7YAU,CMD(S.Gibalbin),Andalucia,Spain,439.35000,1,-7.600,PEER,TS1 TS2,EA7DYY,,0,Hytera
214704,ED7ZAE,Granada,Andalucia,Spain,438.30000,1,-7.600,PEER,TS1 TS2,EA7UU,,0,BrandMeister
-214705,ED7YAF,Los Reales-Estepona,Andalucia,Spain,438.87500,1,-7.600,,,EA7FQB,,0,BrandMeister
+214705,ED7YAF,Los Reales-Estepona,Andalucia,Spain,438.87500,1,-7.6,,,EA7FQB,,0,DMR-plus
214707,ED7ZAK,Granada,Andalucia,Spain,438.00000,1,-7.600,,,EA7JOE,,0,None
214708,ED7ZAI,Sevilla,Andalucia,Spain,439.00000,1,-7.600,Peer,TS1 TS2,EA7KE,,0,BrandMeister
214711,ED7YAV,CERRO CEUTA (CADIZ),Andalucia,Spain,438.95000,1,-7.600,PEER,TS1 TS2,EA7DYY,,0,Hytera
@@ -276,15 +277,17 @@ 222040,IR0UIB,MONTECASSINO,Lazio,Italy,430.35000,1,5.000,PEER,TS1 TS2,IZ0ZIP,,0,DMR-plus
222050,IR0UGM,M.te Cosce,Lazio,Italy,430.17500,1,1.600,PEER,TS1 TS2,IW0REF,,0,None
222051,I0KMJ,Terni,Umbria,Italy,430.93750,1,5.000,Peer,TS1 TS2,I0KMJ,,0,BM
+222060,IR0UEI,M.te San Pancrazio,Umbria,Italy,431.46250,1,1.600,PEER,TS1 TS2,IW0REF,,0,BrandMeister
222067,IK2OVD,Genna Gonnesa,Lombardy,Italy,430.93750,1,5.000,PEER,TS1 TS2,IK2OVD,,0,Motorola
222068,IW0RQJ,Assisi,Umbria,Italy,430.42500,1,5.000,PEER,TS1 TS2,IW0RQJ,,0,DMR-plus
222069,IR0UAS,Monte Serano (PG),Umbria,Italy,430.21250,1,5.600,Peer,TS1 TS2,IW0RED,,0,BM
222070,IR0AY,Assisi,Umbria,Italy,431.43750,1,1.600,Peer,TS1 TS2,IW0RED,,0,None
+222080,IR0UAQ,M.te Miranda,Umbria,Italy,430.20000,1,1.600,PEER,TS1 TS2,IW0REF,,0,BrandMeister
222090,IR0UGL,Villacidro,Sardinia,Italy,431.56250,1,1.600,Peer,TS1 TS2,IW0UIF,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 222 = Italy 1
Time Slot #1 - Group Call 9 = Local 1

Time Slot #2 - Group Call 222 = Italy 2
Time Slot #2 - Group Call 8 = Regional - IR2CM
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio



Contact: Natale, IW0UIF
Email: natale.sardo@tiscali.it,1,BM
222092,IS0AYI,Bruncu Simioni,cnty,Italy,430.70000,1,5.000,PEER,TS1 TS2,IS0AYI,,0,Motorola
222093,IR0UDB,Villaputzu,Sardegna,Italy,430.73750,1,5.000,PEER,TS1 TS2,IW0UQF,,0,BM
222099,IR0UGO,Ciampino (RM),Lazio,Italy,431.37500,1,1.600,PEER,TS1 TS2,IW0BEC,,0,Motorola
-222100,IW1BZH,Domodossola,Piedmont,Italy,430.12500,1,1.000,Master,TS1 TS2,IW1BZH,,0,IT-DMR-Network
+222100,IW1BZH,Domodossola,Piedmont,Italy,430.55000,1,5.000,Master,TS1 TS2,IW1BZH,,0,BM
222101,I1HJP,Nizza Monferrato,Piedmont,Italy,430.85000,1,5.000,Peer,TS1 TS2,I1HJP,,0,IT-DMR-Network
222102,I1YRB,Torino,Piedmont,Italy,430.96250,1,5.000,PEER,TS1 TS2,I1YRB,,0,DMR-plus
222103,IZ1EZN,Frabosa Soprana,,Italy,430.98750,1,5.000,PEER,TS1 TS2,IZ1EZN,,0,DMR-Italia
@@ -319,7 +322,7 @@ 222210,IW2JXY,Vedano Olona (Va),Lombardy,Italy,145.63750,1,-0.600,PEER,TS1 TS2,IW2JXY,,0,DMR-ITALIA
222215,IR2CL,Gravedona ed Uniti,Lombardy,Italy,430.06250,1,5.000,PEER,TS1 TS2,IK2ZLJ,,0,BM
222216,IR2UGK,Gravedona ed Uniti,Lombardy,Italy,430.18750,1,1.600,Peer,TS1 TS2,IK2ZLJ,,0,Motorola
-222260,IZ2FTR,Monte Quarone,Lombardy,Italy,145.58600,1,-0.599,PEER,TS1 TS2,IZ2FTR,,0,BM
+222260,IZ2FTR,Monte Quarone,Lombardy,Italy,145.58750,1,-0.600,PEER,TS1 TS2,IZ2FTR,,0,BM
222267,IK2OVD,VENEGONO SUPERIORE,Lombardy,Italy,145.77500,1,-0.600,PEER,TS1 TS2,IK2OVD,,0,DMR-Italia
222300,IR3UN,M.te Paganella,Trentino-Alto Adige/,Italy,430.96250,1,5.000,PEER,TS1 TS2,IW3BYL,,0,BM
222301,IK3HHG,Col Visentin,Veneto,Italy,430.70000,1,5.000,Peer,TS1 TS2,IK3HHG,,0,DMR-CISARNET
@@ -394,7 +397,7 @@ 222904,IR9UBV,Ispica,Sicily,Italy,439.92500,1,-9.4,PEER,TS1 TS2,IT9UUT,,0,DMR-plus
222905,IR9UNZ,Cava Giumenta (RG),Sicily,Italy,430.37500,1,5.000,PEER,TS1 TS2,IT9CGN,,0,Hytera
222906,IR9UBT,Mascalucia,Sicily,Italy,430.20000,1,5.000,,,IW9GTR,,0,BrandMeister
-222907,IW9HGZ,Catania,Sicily,Italy,430.22500,1,5.000,PEER,TS1 TS2,I9HGZ,,0,DMR-plus
+222907,IW9HGZ,Catania,Sicily,Italy,430.22500,1,5.000,PEER,TS1 TS2,IW9HGZ,,0,DMR-plus
222916,IR9BR,Siracusa,Sicily,Italy,430.35000,4,5.000,PEER,TS1 TS2,IT9CVO,,0,None
222918,IR9BR,Siracusa,Sicily,Italy,430.30000,4,5.000,Peer,TS1 TS2,IT9CVO,,0,Motorola
222999,IR9UX,Catania,Sicily,Italy,430.25000,1,1.600,PEER,TS1 TS2,IT9CUX,,0,DMR-ITALIA
@@ -430,8 +433,9 @@ 228123,HB9PE,Pays-d Enhaut VD,Westschweiz-Sud,Switzerland,439.66250,1,-7.600,,,HB9FMF,,0,BM
228124,HB4FL,LA BERNEUSE,Westschweiz-Sud,Switzerland,439.57500,2,-7.600,,,HB9ADJ,,0,BM
228125,HB9VD,Le Chasseron,Westschweiz-Sud,Switzerland,145.73750,1,-0.600,,,HB9TJU,,0,BM
+228201,HB9FG,Le Landeron,Westschweiz-Nord,Switzerland,438.45000,1,-7.600,,,HB9EZV,,0,BrandMeister
228300,HB9BO,Interlaken,Bern,Switzerland,439.56250,1,-7.600,Master,TS1 TS2,HB9DUU,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 228 = Switzerland 1
Time Slot #1 - Group Call 9 = Local HB9 1

Time Slot #2 - Group Call 228 = Switzerland 2
Time Slot #2 - Group Call 8 = Regional
German-speaking
Time Slot #2 - Group Call 9 = Local HB9 2
You Must Have [ARS] Disabled Within Your Radio.


Contact: Christian, HB9DUU
Email: hb9duu@gmx.net,1,SwissDMR
-228301,HB9F,Brienzer-Rothorn,Bern,Switzerland,0.00000,1,0.000,Peer,TS1 TS2,HB9DUU,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 228 = Switzerland 1
Time Slot #1 - Group Call 9 = Local HB9 1

Time Slot #2 - Group Call 228 = Switzerland 2
Time Slot #2 - Group Call 8 = Regional
German-speaking
Time Slot #2 - Group Call 9 = Local HB9 2
You Must Have [ARS] Disabled Within Your Radio.


Contact: Christian, HB9DUU
Email: hb9duu@gmx.net,1,BM
+228301,HB9F,Brienzer-Rothorn,Bern,Switzerland,439.50000,1,-7.600,Peer,TS1 TS2,HB9DUU,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 228 = Switzerland 1
Time Slot #1 - Group Call 9 = Local HB9 1

Time Slot #2 - Group Call 228 = Switzerland 2
Time Slot #2 - Group Call 8 = Regional
German-speaking
Time Slot #2 - Group Call 9 = Local HB9 2
You Must Have [ARS] Disabled Within Your Radio.


Contact: Christian, HB9DUU
Email: hb9duu@gmx.net,1,BM
228302,HB9F,Schilth./Piz Gloria,Bern und Oberwallis,Switzerland,438.21250,1,-7.600,PEER,TS1 TS2,HB9DUU,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 228 = Switzerland 1
Time Slot #1 - Group Call 9 = Local HB9 1

Time Slot #2 - Group Call 228 = Switzerland 2
Time Slot #2 - Group Call 8 = Regional
German-speaking
Time Slot #2 - Group Call 9 = Local HB9 2
You Must Have [ARS] Disabled Within Your Radio.


Contact: Christian, HB9DUU
Email: hb9duu@gmx.net,1,BM
228303,HB9BO,Brienzer-Rothorn,Bern,Switzerland,145.61250,1,-0.600,Peer,TS1 TS2,HB9DUU,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 228 = Switzerland 1
Time Slot #1 - Group Call 9 = Local HB9 1

Time Slot #2 - Group Call 228 = Switzerland 2
Time Slot #2 - Group Call 8 = Regional German-speaking
Time Slot #2 - Group Call 9 = Local HB9 2
You Must Have [ARS] Disabled Within Your Radio.


Contact: Christian, HB9DUU
Email: hb9duu@gmx.net,1,SwissDMR
228304,HB9BO,Interlaken,,Switzerland,145.68750,2,-0.600,Peer,TS1 TS2,HB9DUU,,0,BM
@@ -446,7 +450,7 @@ 228313,HB9Y,Moosalp,Bern und Oberwallis,Switzerland,439.57500,3,-7.600,Peer,TS1 TS2,HB9UQC,,0,BM
228314,HB9Y,Cry dErr,Bern und Oberwallis,Switzerland,439.45000,3,-7.600,Peer,TS1 TS2,HB9UQC,,0,BM
228315,HB9Y,Zermatt,Bern und Oberwallis,Switzerland,439.50000,3,-7.600,Peer,TS1 TS2,HB9UQC,,0,BM
-228316,HB9Y,Oberwald,Bern und Oberwallis,Switzerland,439.47500,3,-7.400,,,HB9UQC,,0,BrandMeister
+228316,HB9Y,Oberwald,Bern und Oberwallis,Switzerland,439.48750,3,-7.600,,,HB9UQC,,0,BM
228391,HB9BO,Niesen,Bern und Oberwallis,Switzerland,439.41250,1,-7.600,PEER,TS1 TS2,HB9DUU,,0,DMR-plus
228401,HB9EAS,Bruderholz,Basel/Solothurn,Switzerland,438.57500,1,-7.600,,,HB9EXT,,0,BM
228402,HB9BA,Weissenstein,Basel,Switzerland,438.22500,1,-7.600,Peer,TS1 TS2,HB9FND,,0,BM
@@ -566,8 +570,9 @@ 232799,OE7XXX,Zillertal,Tirol,Oesterreich/Austria,438.50000,1,-7.6,Peer,TS1 TS2,OE7FMI,,0,DMR-plus
232802,OE8XPK,Petzen,Kaernten,Austria,438.50000,1,-7.6,PEER,TS1 TS2,OE8HJK,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #2 - Group Call 232 Austria

You Must Have [ARS] Disabled Within Your Radio.

Coverage Map (http://wiki.oevsv.at/images/9/92/DMR-footprint_oe8xpk_Petzen.jpg),1,DMR-plus
232803,OE8XMK,Magdalensberg,Kaernten,Austria,145.62500,1,-0.6,PEER,TS1 TS2,OE8HJK,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #2 - Group Call 232 = Austria

You Must Have [ARS] Disabled Within Your Radio.

Coverage Map (http://wiki.oevsv.at/images/f/ff/DMR-footprint_oe8xmk-Magdalensberg.jpg),1,DMR-plus
+232804,OE8XMK,Magdalensberg,Kaernten,Oesterreich/Austria,145.62500,1,-0.6,,,OE8HJK,,0,DMR-plus
232822,OE8XVK,Kopein,Kaernten,Oesterreich/Austria,438.55000,1,-7.600,Peer,TS1 TS2,OE8PKR,,0,Hytera
-232893,OE8XIK,Saurachberg,Kaernten,Austria,438.45000,1,-7.600,PEER,TS1 TS2,OE1KBC,,0,DMR-plus
+232893,OE8XIK,Saurachberg,Kaernten,Austria,438.45000,1,-7.6,PEER,TS1 TS2,OE1KBC,,0,DMR-plus
232894,OE8XPK,Petzen,,Oesterreich/Austria,145.62500,1,-0.600,PEER,TS1 TS2,OE8HJK,,0,DMR-plus
232895,OE8XFK,Dobratsch,Kaernten,Austria,438.90000,1,-7.600,PEER,TS1 TS2,OE8PKR,,0,BM
232896,OE8XLK,Koralm,Kaernten,Oesterreich/Austria,438.70000,1,-7.600,PEER,TS1 TS2,OE8URQ,,0,DMR-plus
@@ -578,7 +583,7 @@ 235100,GB7TD,Wakefield,West Yorkshire,United Kingdom,439.16250,1,-9.000,Master,TS1 TS2,G1XCC,Time Slot#1 - Group Call 1 = Worldwide Calling (2 min max)
Time Slot#1 - Group Call 2 = Europe
Time Slot#1 - Group Call 13 = Worldwide English
Time Slot#2 - Group Call 235 = UK Repeater
Time Slot#2 - Group Call 8 = Regional
Time Slot#2 - Group Call 9 = Local

You must DISABLE ARS on all time slots

Contact: Michael Lockwood, G1XCC
Email: mailto: Michael@michaellockwood.orangehome.co.uk,1,BM
235101,GB7FW,Birmingham,England,United Kingdom,439.66250,1,-9.000,Peer,TS1 TS2,G8VIQ,,0,None
235102,GB7AL,TEST,England,United Kingdom,439.46250,1,-9.000,PEER,TS1 TS2,G0RDI,,0,DMRUK
-235103,GB7HS,Batley,England,United Kingdom,439.42500,2,-9.000,Peer,TS1 TS2,G1XCC,,0,BM
+235103,GB7HS,Cleckheaton,,United Kingdom,439.42500,2,-9.000,PEER,TS1 TS2,G1XCC,,0,
235104,GB7LE,Leeds,England,United Kingdom,439.66250,2,-9.000,Peer,TS1 TS2,G1XCC,,0,BM
235105,GB7LP,Liverpool,Merseyside,United Kingdom,439.40000,1,-9.000,Peer,TS1 TS2,M1SWB,Time Slot#1 - Group Call 1 = Worldwide Calling (2 min max)
Time Slot#1 - Group Call 2 = Europe
Time Slot#1 - Group Call 13 = Worldwide English
Time Slot#2 - Group Call 235 = UK Repeater
Time Slot#2 - Group Call 8 = Regional
Time Slot#2 - Group Call 9 = Local

You must DISABLE ARS on all time slots

Contact: Steve Bainbridge, M1SWB
Email: steve.m1swb@tiscali.co.uk,1,DMRUK
235106,GB7BS,Bristol,England,United Kingdom,439.16250,3,-9.000,Master,TS2,G4SDR,,0,DMRUK
@@ -602,11 +607,12 @@ 235124,GB7BJ,Herefordshire,England,United Kingdom,439.73750,13,-9.000,PEER,TS1 TS2,G1MAW,,0,Motorola
235125,GB7EL,Nelson, Lancashire,England,United Kingdom,439.71250,2,-9.000,Peer,TS1 TS2,G4MLB,,0,BM
235126,GB7PK,Portsmouth,England,United Kingdom,439.52500,1,-9.000,PEER,TS1 TS2,G7RPG,,0,BM
-235127,GB3IP,Stafford,England,United Kingdom,145.76250,1,-0.600,PEER,TS1 TS2,G0RDI,,0,Motorola
+235127,GB3IP,Stafford,England,United Kingdom,145.76250,1,-0.600,PEER,TS1 TS2,G4EML,,0,Motorola
235128,GB7LR,Leicester, UK,England,United Kingdom,439.47500,1,-9.000,PEER,TS1 TS2,M1FJB,,0,None
235129,GB7AK,Barking,England,United Kingdom,439.52500,3,-9.000,PEER,TS1 TS2,G8YPK,,0,Motorola
235130,GB7NS,Caterham,,United Kingdom,439.16250,3,-9.000,PEER,TS1 TS2,G0OLX,Time Slot#1 - Group Call 1 = Worldwide Calling (2 min max)

Time Slot#1 - Group Call 2 = Europe
Time Slot#1 - Group Call 13 = Worldwide English
Time Slot#2 - Group Call 235 = UK Repeater
Time Slot#2 - Group Call 8 = Regional
Time Slot#2 - Group Call 9 = Local

You must DISABLE ARS on all time slots

Contact: Denis Stanton, G0OLX
Email: mailto:
denis.stanton@ntlworld.com,1,DMRUK
235131,GB7GF,Guildford,England,United Kingdom,439.68750,3,-9.000,Peer,TS1 TS2,G4EML,,0,Motorola
+235132,GB7YR,Doncaster,England,United Kingdom,439.52500,2,9.000,PEER,TS1 TS2,M1DAH,,0,BrandMeister
235133,GB7OZ,Oswestry,England,United Kingdom,439.62500,8,-9.000,PEER,TS1 TS2,G0DNI,,0,None
235134,GB7FU,Pointon,England,United Kingdom,439.16250,3,-9.000,Peer,TS1 TS2,G0RDI,,0,Motorola
235135,GB7FR,IO90ST,England,United Kingdom,439.50000,4,-9.000,PEER,TS1 TS2,G7RZU,,0,Hytera
@@ -630,6 +636,7 @@ 235153,GB7AL,Ipswich,England,United Kingdom,439.40000,2,9.000,PEER,TS1 TS2,M1NIZ,,0,Motorola
235154,GB7KH,Kelvedon Hatc, Essex,England,United Kingdom,439.61250,3,-9.000,PEER,TS1 TS2,M1GEO,,0,BrandMeister
235155,GB7DO,Skellow, Doncaster,England,United Kingdom,430.86250,5,7.600,PEER,TS1 TS2,G1ILF,,0,BM
+235156,GB7ME,Rugby,England,United Kingdom,439.72500,3,-9.000,PEER,TS1 TS2,M0IJS,,0,None
235160,GB7SR,Sheffield,England,United Kingdom,439.63750,2,-9.000,PEER,TS1 TS2,M0GAV,,0,BM
235161,GB7EK,Whitstable,England,United Kingdom,439.62500,3,-9.000,PEER,TS1 TS2,G6MRI,,0,Motorola
235165,GB7DS,Norwich,,United Kingdom,439.42500,1,-9.000,PEER,TS1 TS2,M0ZAH,,0,OpenDMR
@@ -649,13 +656,14 @@ 235190,GB7RR,Notts,England,United Kingdom,439.60000,1,-9.000,PEER,TS1 TS2,G0LCG,,0,BM
235191,GB7HUK,Newark, Notts,,England,United Kingdom,439.70000,1,-9.000,PEER,TS1 TS2,G0LCG,,0,DMR-plus
235192,GB3IN,Nr Matlock,England,United Kingdom,430.96250,1,7.600,PEER,TS1 TS2,G4TSN,,0,Hytera
+235193,GB7IN,Nr Alfreton,England,United Kingdom,439.65000,1,-9.000,PEER,TS1 TS2,G0LCG,,0,BrandMeister
235199,GB7LN,Lincoln,England,United Kingdom,439.40000,1,-9.000,Peer,TS1 TS2,G0RZR,,0,BM
235200,GB7FC,Blackpool,England,United Kingdom,430.97500,1,7.600,PEER,TS1 TS2,M0AUT,,0,BM
235201,GB7FC,Test/Blackpool,England,United Kingdom,430.95000,1,7.600,PEER,TS1 TS2,M0AUT,,0,BM
235202,GB7MK,Ipswich,England,United Kingdom,439.60000,13,9.000,PEER,TS1 TS2,M1NIZ,,0,Motorola
235203,GB7JL,Golborne,England,United Kingdom,430.96250,1,7.600,PEER,TS1 TS2,M0AUT,,0,BM
235205,GB7KM,Cotswold Airport,England,United Kingdom,439.66250,3,9.000,Peer,TS1 TS2,GB7KM,,0,Motorola
-235210,GB7MR,Manchester,England,United Kingdom,439.73750,2,-9.000,PEER,TS1 TS2,G8UVC,,0,BM
+235210,GB7MR,Oldham,,United Kingdom,439.73750,2,-9.000,PEER,TS1 TS2,G8UVC,,0,
235220,GB7XX,Felling,England,United Kingdom,439.46250,10,-9.000,PEER,TS1 TS2,G4MSF,,0,BM
235222,GB7EB,Beccles,England,United Kingdom,439.66250,2,-9.000,PEER,TS1 TS2,M0JGX,,0,OpenDMR
235230,GB7GB,Great Barr,,England,United Kingdom,439.42500,1,-9.000,PEER,TS1 TS2,G8NDT,,0,Motorola
@@ -666,9 +674,10 @@ 235240,GB7RE,Retford,England,United Kingdom,439.71250,1,-9.000,PEER,TS1 TS2,G0RDI,,0,BM
235242,GB7NF,Newhaven Sussex UK,England,United Kingdom,439.48750,1,-9.000,PEER,TS1 TS2,G0TJH,,0,Hytera
235250,GB7TC,Swindon,,United Kingdom,439.52500,2,-9.000,PEER,TS1 TS2,G8VRI,,0,None
-235252,GB7IQ,Stafford,England,United Kingdom,439.61250,1,-9.000,PEER,TS1 TS2,G7PFT,,0,Motorola
+235252,GB7IQ,Stafford,England,United Kingdom,439.61250,1,-9.000,PEER,TS1 TS2,G4EML,,0,Motorola
235260,GB7MH,Turners Hill,England,United Kingdom,439.63750,2,-9.000,PEER,TS1 TS2,G3NZP,,0,BrandMeister
235269,GB7FU,Pointon,,United Kingdom,439.16250,3,-9.000,PEER,TS1 TS2,G0RDI,,0,OpenDMR
+235280,GB7HA,Halstead,England,United Kingdom,439.57500,3,9.000,PEER,TS1 TS2,M0NAS,,0,Motorola
235282,GB7DZ,Newcastle,England,United Kingdom,439.52500,7,-9.000,PEER,TS1 TS2,M0MBA,,0,BM
235290,GB7PE,Peterborough,,United Kingdom,439.50000,3,-9.000,PEER,TS1 TS2,M0ZPU,,0,Motorola
235298,GB7KT,ANDOVER, IO91GE,England,United Kingdom,439.50000,1,-9.000,Peer,TS1 TS2,G3ZXX,,0,Motorola
@@ -689,6 +698,8 @@ 235503,GB7LY,Londonderry,Northern Ireland,United Kingdom,439.66250,1,-9.000,Peer,TS1 TS2,GI4BWM,Time Slot#1 - Group Call 1 = Worldwide Calling (2 min max)
Time Slot#1 - Group Call 2 = Europe
Time Slot#1 - Group Call 13 = Worldwide English
Time Slot#2 - Group Call 235 = UK Repeater
Time Slot#2 - Group Call 8 = Regional
Time Slot#2 - Group Call 9 = Local

You must DISABLE ARS on all time slots

Contact:
Email:,1,Motorola
235504,GB7HB,Tandragee,Northern Ireland,United Kingdom,439.62500,1,-9.000,PEER,TS1 TS2,MI0MSO,,0,Motorola
235505,GB7KA,Kilrea, COLERAINE,Northern Ireland,United Kingdom,439.71250,3,-9.000,PEER,TS1 TS2,MI0AAZ,,0,BM
+235506,GB7MW,Carrickfeegus,Northern Ireland,United Kingdom,439.48750,15,-9.000,PEER,TS1 TS2,GI6DKQ,,0,BrandMeister
+235507,GB7AH,AHOGHILL,Northern Ireland,United Kingdom,439.51250,1,-9.000,PEER,TS1 TS2,MI0CUN,,0,BrandMeister
235510,GB7NY,NEWRY,Northern Ireland,United Kingdom,439.68750,1,-9.000,PEER,TS1 TS2,MI0PYN,,0,BM
235601,GB7CA,Carnane, Douglas,Isle of Man,United Kingdom,430.92500,2,7.600,PEER,TS1 TS2,GD4HOZ,,0,Motorola
235602,GB7BR,Bride,Isle of Man,United Kingdom,430.92500,3,7.600,PEER,TS1 TS2,GD4HOZ,,0,Motorola
@@ -834,6 +845,7 @@ 255002,UR0CUA,Chigirin city,,Ukraine,438.65000,1,7.600,,,UR3VKE,,0,None
255255,UT7NP,Vinnitsa,,Ukraine,145.60000,1,-0.600,Peer,TS1 TS2,UT7NP,,0,Hytera
255555,UR0DMM,Polonyna Rivna mount,,Ukraine,438.65000,1,-7.600,Peer,TS1 TS2,UZ5DX,,0,BM
+255983,UR0KUA,Rivne,,Ukraine,438.65000,1,-7.600,PEER,TS1 TS2,UZ5DX,,0,BM
255984,UR0HUA,Poltava,,Ukraine,438.77500,1,-7.600,,,UZ5DX,,0,BrandMeister
255985,UR0UUB,Kyiv,,Ukraine,438.70000,1,-7.600,Peer,TS1 TS2,UZ5DX,,0,Hytera
255986,UR0EUB,Dnipropetrovsk,,Ukraine,439.60000,1,-7.600,Peer,TS1 TS2,UZ5DX,,0,
@@ -865,7 +877,7 @@ 260502,SR5WZ,Moszna Parcela,Mazowieckie,Poland,439.00000,1,-7.600,PEER,TS1 TS2,SP5QWK,,0,Hytera
260504,SR5C,Nasierowo-Dziurawien,Mazowieckie,Poland,438.72500,1,-7.600,,,SQ5OMZ,,0,BrandMeister
260510,SQ5H,Moszna-Parcela,Mazowieckie,Poland,438.60000,1,-7.600,Peer,TS1 TS2,SQ5H,,0,None
-260601,SR6DMR,JO81MC,Dolnoslaskie,Poland,438.48750,1,-7.600,Peer,TS1 TS2,SQ6NCJ,,0,BM
+260601,SR6DMR,Wroclaw,,Poland,438.48750,1,-7.600,PEER,TS1 TS2,SQ6NCJ,,0,
260602,SR6DMO,Olawa,Lower Silesian Voivo,Poland,438.62500,1,-7.600,PEER,TS1 TS2,SQ6NCJ,,0,Motorola
260603,SR6UVO,Brzezie k. Opola,Opole Voivodeship,Poland,439.38750,1,-7.600,,,SQ6IUB,,0,BrandMeister
260604,SR6WB,Wroclaw,Lower Silesian Voivo,Poland,439.46250,1,-7.600,,,SQ6ROK,,0,BrandMeister
@@ -895,7 +907,7 @@ 262002,DM0KWD,Halle/Saale,Saxony-Anhalt,Germany,438.45000,1,-7.600,,,DL1HRC,,0,None
262003,DB0BRO,Brocken/Harz,Saxony-Anhalt,Germany,439.13750,1,-7.6,Peer,TS1 TS2,DG0CBP,,0,DMR-plus
262004,DB0HAL,Petersberg,Saxony-Anhalt,Germany,438.51250,1,-7.600,PEER,TS1 TS2,DL1HRC,,0,BM
-262005,DB0AMK,Tangermuende,Saxony-Anhalt,Germany,439.45000,1,-7.600,PEER,TS1 TS2,DG0CCO,,0,DMR-plus
+262005,DB0AMK,Tangermuende,Saxony-Anhalt,Germany,439.45000,1,-7.6,PEER,TS1 TS2,DG0CCO,,0,DMR-plus
262006,DB0TGM,Tangermuende,Saxony-Anhalt,Germany,145.68750,1,-0.600,PEER,TS1 TS2,DG0CDC,,0,None
262007,DM0LUE,Luedersdorf/MVP,Mecklenburg-Vorpomme,Germany,439.96250,1,-9.4,,,DL6HBQ,,0,DMR-plus
262010,IPSCDE00,,,Germany,,,,,,DL5DI,,0,DMR-plus
@@ -939,7 +951,7 @@ 262250,DB0HHO,Grosshansdorf,Schleswig-Holstein,Germany,439.52500,1,-7.6,PEER,TS1 TS2,DL5KUA,,0,DMR-plus
262260,DB0KUA,Luetjensee,Schleswig-Holstein,Germany,438.52500,1,-7.6,,,DL5KUA,,0,DMR-plus
262262,DO0SOC,Wandelwitz,Schleswig-Holstein,Germany,438.67500,1,-7.600,Peer,MM 88.5,DO2LMV,,0,HYTERA
-262290,DB0HEW,Geesthacht,Schleswig-Holstein,Germany,438.55000,1,-7.600,,,DK4HPA,,0,DMR-plus
+262290,DB0HEW,Geesthacht,Schleswig-Holstein,Germany,438.55000,1,-7.6,,,DK4HPA,,0,DMR-plus
262295,DB0HUS,Husum,Schleswig-Holstein,Germany,438.42500,1,-7.6,,,DB5NU,,0,DMR-plus
262297,DB0XN,Stollberg Bredstedt,Schleswig-Holstein,Germany,438.38750,1,-7.600,PEER,TS1 TS2,DC9LR,,0,Motorola
262298,DM0FL,Flensburg-Land,,Germany,439.82500,1,-9.400,PEER,TS1 TS2,DC9LR,,0,Motorola
@@ -983,7 +995,7 @@ 262337,DB0AGM,Lueneburg,Niedersachsen,Germany,438.50000,1,-7.6,Peer,TS1 TS2,DC2HC,,0,DMR-plus
262338,DB0OHA,Herzberg am Harz,Niedersachsen,Germany,439.56250,1,-7.6,,,DL9AM,,0,DMR-plus
262340,DB0CEL,Celle,Niedersachsen,Germany,439.27500,1,-7.600,PEER,TS1 TS2,DL3OBI,,0,BM
-262341,DB0FA,Fassberg,,Germany,438.71250,1,-7.600,PEER,TS1 TS2,DG1JC,,0,DMR-plus
+262341,DB0FA,Fassberg,,Germany,438.71250,1,-7.6,PEER,TS1 TS2,DG1JC,,0,DMR-plus
262343,DB0DOS,Doerenberg,Nordrhein-Westfalen,Germany,438.40000,1,-7.6,,,DJ2QW,,0,DMR-plus
262345,DB0EB,Einbeck,Niedersachsen,Germany,438.51250,1,-7.6,PEER,TS1 TS2,DH2OP,,0,DMR-plus
262347,DB0GOE,Bovenden,Lower Saxony,Germany,438.70000,1,-7.6,Peer,TS1 TS2,DL8OAI,,0,DMR-plus
@@ -1010,6 +1022,7 @@ 262405,DB0BS,Bochum,Nordrhein-Westfalen,Germany,439.97500,4,-9.400,PEER,TS1 TS2,DL1YBL,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 262 = Germany 1
Time Slot #1 - Group Call 9 = Local 1
Time Slot #2 - Group Call 262 = Germany 2
Time Slot #2 - Group Call 8 = Regional
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio


Contact: Joachim Berns, DL1YBL
Email: dl1ybl@darc.de,1,DMR-plus
262406,DB0IUZ,Bochum/Sundern,NRW,Germany,438.25000,1,-7.6,PEER,TS1 TS2,DG3JKB,,0,DMR-plus
262407,DB0END,Ennepetal-Stueting,Nordrhein-Westfalen,Germany,439.27500,1,-7.6,PEER,TS1 TS2,DG8DCH,,0,DMR-plus
+262408,DB0IGA,Pulheim,Nordrhein-Westfalen,Germany,439.82500,1,-9.4,,,DL1KJ,,0,DMR-plus
262409,DL1KJ,Pulheim,Nordrhein-Westfalen,Germany,439.51250,1,-7.6,PEER,TS1 TS2,DO1PA,,0,DMR-plus
262410,DF0MHR,Muelheim/Ruhr,Nordrhein-Westfalen,Germany,438.76250,1,-7.600,PEER,TS1 TS2,DF2ER,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 262 = Germany 1
Time Slot #1 - Group Call 9 = Local 1
Time Slot #2 - Group Call 262 = Germany 2
Time Slot #2 - Group Call 8 = Regional
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio


Contact: Walter Mentzel, DF2ER
Email: df2er@yahoo.de,1,DMR-DL
262411,DF0MHR,Muelheim/Ruhr,Nordrhein-Westfalen,Germany,439.03750,1,-7.6,PEER,TS1 TS2,DF2ER,,0,DMR-plus
@@ -1020,7 +1033,7 @@ 262424,DB0WT,Lemgo,NRW,Germany,439.92500,1,-9.4,Peer,TS1 TS2,DF2MM,,0,DMR-plus
262425,DF2MM,Detmold,Nordrhein-Westfalen,Germany,439.92500,1,-9.400,Peer,TS1 TS2,DF2MM,,0,Hytera
262430,DB0AVR,Stolberg/Aachen,,Germany,439.83750,1,-9.400,PEER,TS1 TS2,DH6KQ,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 3 = North America
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 262 = Germany 1
Time Slot #1 - Group Call 9 = Local 1
Time Slot #2 - Group Call 262 = Germany 2
Time Slot #2 - Group Call 8 = Regional
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio


Contact: Andreas Fromm, DH6KQ
Email: dh6kq@t-online.de,1,DMR-DL
-262434,DO0FSE,Euskirchen,Nordrhein-Westfalen,Germany,438.71250,1,-7.600,Peer,TS1 TS2,DO1FSE,,0,DMR-plus
+262434,DB0HE,Herten,Nordrhein-Westfalen,Germany,438.26250,1,-7.6,Peer,TS1 TS2,DL5BQ,,0,BrandMeister
262435,DB0II,Moenchengladbach,Nordrhein-Westfalen,Germany,439.31250,1,-7.600,PEER,TS1 TS2,DF6EF,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 262 = Germany 1
Time Slot #1 - Group Call 9 = Local 1
Time Slot #2 - Group Call 262 = Germany 2
Time Slot #2 - Group Call 8 = Regional
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio


Contact: Christian Jansen, DF6EF
Email: christian@df6ef.de,1,DMR-DL
262437,DB0MY,Juelich,Nordrhein-Westfalen,Germany,438.36250,1,-7.6,PEER,TS1 TS2,DG9KAF,,0,DMR-plus
262440,DB0DDS,Dortmund,Nordrhein-Westfalen,Germany,439.85000,1,-9.4,PEER,TS1 TS2,DF1VB,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 262 = Germany 1
Time Slot #1 - Group Call 9 = Local 1
Time Slot #2 - Group Call 262 = Germany 2
Time Slot #2 - Group Call 8 = Regional
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio,1,DMR-plus
@@ -1062,7 +1075,7 @@ 262509,DB0VV,Idar-Oberstein,Rheinland-Pfalz,Germany,438.85000,1,-7.6,Peer,TS1 TS2,DJ2QW,,0,DMR-plus
262511,DB0LZ,Tholey,Saarland,Germany,439.27500,1,-7.6,PEER,TS1 TS2,DF5VL,,0,DMR-plus
262512,DB0KL,Kaiserslautern,Rheinland-Pfalz,Germany,439.38750,1,-7.600,PEER,TS1 TS2,DG4MA,,0,DMR-plus
-262513,DG9VH,Voelklingen,Saarland,Germany,438.35000,1,-7.6,Peer,TS1 TS2,,,0,DMR-plus
+262513,DG9VH,Voelklingen,,Germany,439.52500,1,-7.6,PEER,TS1 TS2,DG9VH,,0,DMR-plus
262520,DB0LJ,Kruft/Mayen-Koblenz,Rheinland-Pfalz,Germany,439.82500,1,-9.4,PEER,TS1 TS2,DL5DI,,0,DMR-plus
262530,DB0RPL,Hoehr-Grenzhausen,Rheinland-Pfalz,Germany,438.52500,1,-7.600,PEER,TS1 TS2,DL5DI,,0,Hytera
262540,DB0SAB,Saarburg Hosteberg,Rheinland-Pfalz,Germany,439.07500,1,-7.600,,,DF2OO,,0,DMR-plus
@@ -1112,7 +1125,7 @@ 262717,DM0KB,Konstanz,Baden-Wuerttemberg,Germany,145.60000,1,-0.6,Peer,TS1 TS2,DG8GL,,0,DMR-plus
262719,DB0SAA,Oberkochen,Baden-Wuerttemberg,Germany,438.47500,1,-7.600,PEER,TS1 TS2,DF7AJ,,0,DMR-DL
262720,DB0FAA,Aalen/Braunenberg,Baden-Wuerttemberg,Germany,439.48750,1,-7.6,PEER,TS1 TS2,DL8SFG,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 262 = Germany 1
Time Slot #1 - Group Call 8 = > DB0FHA-2m-DMR
Time Slot #1 - Group Call 9 = Local 1
Time Slot #2 - Group Call 9 = Local 2

You Must Have [ARS] Disabled Within Your Radio


Contact: Bjoern Buelow, DL8SFG
Email: dl8sfg@qslnet.de
Web: http://www.qslnet.de/db0faa,1,DMR-plus
-262721,DB0FHA,Aalen/Onatsfeld,Baden-Wuerttemberg,Germany,439.48750,1,-7.6,PEER,TS1 TS2,DL8SFG,,0,DMR-plus
+262721,DB0FHA,Aalen/Onatsfeld,Baden-Wuerttemberg,Germany,438.45000,1,-7.6,PEER,TS1 TS2,DL8SFG,,0,DMR-plus
262722,DB0FHA,Aalen/Onatsfeld,Baden-Wuerttemberg,Germany,439.01250,1,-7.6,PEER,TS1 TS2,DL8SFG,,0,DMR-plus
262723,DB0CRA,Frankenhardt,Baden-Wuerttemberg,Germany,438.53750,1,-7.6,Peer,TS1 TS2,DG2SDW,,0,DMR-plus
262724,DB0FAA,Aalen/Braunenberg,Baden-Wuerttemberg,Germany,439.11250,1,-7.6,Peer,TS1 TS2,DL8SFG,,0,DMR-plus
@@ -1166,7 +1179,7 @@ 262828,DB0THM,Thalmaessing,Bayern,Germany,438.58750,1,-7.6,PEER,TS1 TS2,DL2NJM,,0,DMR-plus
262829,DB0PV,Muenchen,Bayern,Germany,438.52500,7,7.600,,,DH8MO,,0,None
262830,DO0JG,Moorenweis,Bayern,Germany,438.37500,1,-7.6,Peer,TS1 TS2,DO1JG,,0,DMR-plus
-262835,DM0GER,Germering,Bayern,Germany,145.58750,1,-0.600,,,DL3MX,,0,DMR-plus
+262835,DM0GER,Germering,Bayern,Germany,439.53750,1,-7.6,,,DL3MX,,0,DMR-plus
262840,DB0ADB,Bamberg,Bayern,Germany,439.30000,1,-7.600,Peer,TS1 TS2,DK2ET,,0,BM
262844,DB0ABG,Amberg,Bayern,Germany,439.43750,1,-7.600,Peer,TS1 TS2,DC6RN,,0,BM
262848,DB0MSK,Solhoehe/Langenproze,Bayern,Germany,439.05000,1,-7.6,Peer,TS1 TS2,DL9NCY,,0,DMR-plus
@@ -1189,6 +1202,7 @@ 262867,DB0PUC,Puchheim,Bayern,Germany,439.95000,1,-9.4,PEER,TS1 TS2,DK5RTA,,0,DMR-plus
262870,DB0TS,Moosbach,Bayern,Germany,439.16250,1,-7.600,Peer,TS1 TS2,DM3TS,,0,BM
262873,DB0BAY,Schwandorf,Bayern,Germany,438.25000,1,-7.6,Peer,TS1 TS2,DK5RQ,,0,DMR-plus
+262878,DB0FHC,Coburg,Bayern,Germany,439.45000,1,-7.600,,,DC7RY,,0,BrandMeister
262885,DM0RDT,Karlskron,Bayern,Germany,439.82500,1,-9.400,Peer,TS1 TS2,DH6MBT,,0,DMR-plus
262888,DB0RP,Regensburg,Bayern,Germany,439.10000,1,-7.6,PEER,TS1 TS2,DL5RDW,,0,DMR-plus
262890,DM0ET,Frensdorf/Bamberg,Bayern,Germany,439.41250,1,-7.6,PEER,TS1 TS2,DK2ET,,0,DMR-plus
@@ -1199,7 +1213,7 @@ 262911,DO0UH,Muehlhausen,Thuringia,Germany,430.37500,1,0.000,,,DO3JSM,,0,BrandMeister
262969,DO8GT,Zwoenitz,Saxony,Germany,439.43750,1,-7.600,Peer,TS1 TS2,DO8GT,,0,Motorola
262979,DB0ERZ,Auersberg - 1019m/NN,Sachsen,Germany,439.46250,1,-7.600,PEER,TS1 TS2,DL3YK,,0,BM
-262985,DB0FTS,Suhl,Thuringia,Germany,438.50000,1,-7.600,,,DJ1JAY,,0,DMR-plus
+262985,DB0FTS,Suhl,Thuringia,Germany,438.50000,1,-7.6,,,DJ1JAY,,0,DMR-plus
262999,IPSC2,Auersberg,Sachsen,Germany,439.46250,1,-7.600,PEER,TS1 TS2,DL5DI,,0,DMRplus
268101,CQ0DAM,Amarante,Porto,Portugal,438.22500,1,-7.600,Peer,TS1 TS2,CT2HMR,,0,None
268102,CQ0DBO,Carvela,Vila Real,Portugal,438.40000,1,-7.600,,,CT1JIB,,0,BM
@@ -1222,7 +1236,7 @@ 270110,LX0DME,Eschdorf,Luxemburg,Luxemburg,439.51250,1,-7.6,Peer,TS1 TS2,LX1IQ,,0,DMR-plus
270111,LX0E,Luxembourg,Luxemburg,Luxemburg,439.90000,1,-9.400,PEER,TS1 TS2,LX1DUC,,0,Hytera
270112,LX0E,Luxembourg,Luxemburg,Luxemburg,439.91250,1,-9.400,PEER,TS1 TS2,LX1DUC,,0,DMR-plus
-270113,LX0E,Luxembourg,Luxemburg,Luxemburg,439.92500,1,-9.400,PEER,TS1 TS2,LX1DUC,,0,DMR-plus
+270113,LX0E,Luxembourg,Luxemburg,Luxemburg,439.92500,1,-9.4,PEER,TS1 TS2,LX1DUC,,0,DMR-plus
270120,LX0DRB,Bourscheid,Luxemburg,Luxemburg,145.72500,1,-0.600,Peer,TS1 TS2,LX1IQ,,0,DMR-plus
278001,9H1DMR,Naxxar,,Malta,430.92500,1,7.600,PEER,TS1 TS2,9H1US,,0,Motorola
278002,9H1DMR,Naxxar,,Malta,430.92500,1,7.600,PEER,TS1 TS2,9H1US,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 13 = WW English
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 9 = Local 1

Time Slot #2 - Group Call 8 = Regional
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio

Contact: Antoine Debattista
Email: ant9h1us@gmail.com,1,Motorola
@@ -1255,6 +1269,7 @@ 302220,VE2RRC,Roxboro,Quebec,Canada,448.50000,1,-5.000,Peer,TS1 TS2,VE2RI,,0,Brandmeister
302221,VE2RWE,DIXVILLE,Quebec,Canada,448.12500,1,-5.000,Peer,TS1 TS2,VE2JKA,,1,BELAIR
302222,VA2OZ,GORE,Quebec,Canada,447.37500,1,-5.000,Peer,TS1 TS2,VE2JKA,,1,BELAIR
+302223,VE2JKA,Montreal,Quebec,Canada,448.37500,7,-5.000,Peer,TS1 TS2,VE2JKA,,1,BELAIR
302300,VE3RGM,London,Ontario,Canada,444.61250,7,+5.000,Peer,TS1 TS2,VE3NMZ,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 13 = WW English
Time Slot #1 - Group Call 3 = North America
Time Slot #1 - Group Call 302 = Canada
Time Slot #1 - Group Call 310 = TAC310
Time Slot #1 - Group Call 9999 = Audio Test
Time Slot #2 - Group Call 3023 = Ontario
Time Slot #2 - Group Call 3022 = Quebec
Time Slot #2 - Group Call 3024 = Manitoba
Time Slot #2 - Group Call 3026 = Alberta
Time Slot #2 - Group Call 3029 = New Brunswick
Time Slot #2 - Group Call 3027 = British Columbia
Time Slot #2 - Group Call 2 = Local

You Must Have [ARS] Disabled in Your Radio

Contact: Jim Wake, VE3NMZ
Email: jim.wake@spectrumpaging.ca,1,DMR-MARC Canada
302301,VE3NXS,Kitchener,Ontario,Canada,444.53750,7,+5.000,Peer,TS1 TS2,VE3NXT,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 13 = WW English
Time Slot #1 - Group Call 3 = North America
Time Slot #1 - Group Call 302 = Canada
Time Slot #1 - Group Call 310 = TAC310
Time Slot #1 - Group Call 9999 = Audio Test
Time Slot #2 - Group Call 3023 = Ontario
Time Slot #2 - Group Call 3022 = Quebec
Time Slot #2 - Group Call 3024 = Manitoba
Time Slot #2 - Group Call 3026 = Alberta
Time Slot #2 - Group Call 3029 = New Brunswick
Time Slot #2 - Group Call 3027 = British Columbia
Time Slot #2 - Group Call 2 = Local

You Must Have [ARS] Disabled in Your Radio

Coverage Area (http://www.dmr-marc.net/images/ve3nxs-coverage.jpg)

Contact: Bob Moyer, VE3NXT
Email: rbmoyer@gmail.com,1,DMR-MARC Canada
302302,VE3BNI,Milton,Ontario,Canada,443.98750,1,+5.000,Peer,TS1 TS2,VE3BNI,,0,DMR-MARC - Canada
@@ -1436,7 +1451,7 @@ 310688,N6JVH,San Fernando,California,United States,447.26000,1,-5.000,Master,TS1 TS2,N6JVH,,0,BrandMeister
310689,KE6NDG,Susanville,California,United States,444.87500,1,+5.000,Peer,TS1 TS2,KE6NDG,,0,DCI
310690,AA4CD,San Diego,California,United States,447.26000,3,-5.000,Master,TS1 TS2,AA4CD,,0,BrandMeister
-310691,K7AZ,Lompoc,California,United States,443.42500,1,+5.000,Master,TS1 TS2,K7AZ,,0,AARG
+310691,K7AZ,Lompoc,California,United States,443.42500,1,+5.000,Master,TS1 TS2,K7AZ,,0,BrandMeister
310692,N6BMW,Ojai,California,United States,445.72000,2,-5.000,Peer,TS1 TS2,N6BMW,,0,BrandMeister
310693,N6BMW,Ojai,California,United States,445.72000,3,-5.000,Peer,TS1 TS2,N6BMW,,0,BrandMeister
310694,KA6SOX,Santa Barbara,California,United States,445.38000,1,-5.000,Peer,TS1 TS2,KA6SOX,Time Slot #2 - Group Call 1 = DMR-MARC Worldwide - PTT
Time Slot #2 - Group Call 13 = DMR-MARC Worldwide
Time Slot #2 - Group Call 3 = DMR-MARC N. America
Time Slot #2 - Group Call 310 = TAC310 - PTT
Time Slot #2 - Group Call 3100 = DCI Bridge
Time Slot #2 - Group Call 3176= Southwest Regional
Time Slot #2 - Group Call 3176= Southwest
Time Slot #2 - Audio Test - PTT
Time Slot #2 - Group Call 3777215= Com 1
Time Slot #1- Group Call 2 = Local
Time Slot #1- Group Call 621= NorCal 1 - PTT
Time Slot #1 - Group Call 622 = NorCal 2 - PTT
Time Slot #1- Group Call 5150 = Northern CA,1,AARG
@@ -1484,6 +1499,8 @@ 310737,KJ6YQW,Culver City,California,United States,446.43000,1,-5.000,Master,Mixed Mode,KJ6YQW,,0,DMR
310738,W6NVY,Mt. Wilson,California,United States,445.18000,7,-5.000,Peer,TS1 TS2,N6CIZ,,0,Brandmeister
310739,K6INC,Sacramento,California,United States,443.15000,1,+5.000,Master,TS1,AK6O,,0,Scan International
+310740,KE6YJC,Fresno,California,United States,435.10000,1,-0.000,Peer,Mixed Mode,KE6YJC,,0,Brandmeister
+310741,N6IB,Hanford,California,United States,438.00000,1,-5.000,Peer,Mixed Mode,N6IB,,0,Brandmeister
310800,N0SZ,Denver,Colorado,United States,446.80000,1,-5.000,Master,TS1 TS2,K2AD,,0,RMHR
310801,N0SZ,Denver,Colorado,United States,446.93750,1,-5.000,Peer,TS1 TS2,K2AD,,0,RMHR
310802,WA2YZT,Denver,Colorado,United States,446.83750,1,-5.000,Peer,TS2,WA2YZT,,0,RMHR
@@ -1613,7 +1630,7 @@ 311229,K4AUS,Tavares,Florida,United States,444.96250,1,+5.000,Peer,TS1 TS2,K4AUS,,0,DMR-MARC-IPSC2
311230,N2XDA,Jacksonville,Florida,United States,444.42500,7,+5.000,Peer,TS1 TS2,N2XDA,TS1 TG1 WW (PTT)
TS1 TG3 NA
TS1 TG13 WWE (PTT)
TS1 TAC 310 (PTT)
TS1 TAC 311 (PTT)
TS1 TG 9-Local Repeater

TS2 TG 2-Local (FCDMR Net)
TS2 TG 3112-FL State
TS2 TG 3113-GA State (PTT)
TS2 TG 3125-MA State (PTT)
TS2 TG 3139-OH State (PTT)
TS2 TG 3174-SE Regional
TS2 TG 3100-Bridge (PTT)
TS2 TG 8951-TAC 1 (PTT)
TS2 TG 1776 - US 1776 (PTT)
TS2 TG 113 - UA English 1 (PTT)
TS2 TG 123 - UA English 2 (PTT)
TS2 TG 9998-Parrot (PTT)
TS2 TG 9999-NoCal Audio Test (PTT)

You Must Have [ARS] Disabled Within Your Radio

Contact Name: Dave, N2XDA
Email: crjdave@gmail.com
Website:,1,K4USD Network
311231,KF4I,Palm Coast,Florida,United States,443.30000,1,+5.000,Peer,TS1 TS2,KF4I,TS1 TG1 WW (PTT)
TS1 TG3 NA
TS1 TG13 WWE (PTT)
TS1 TAC 310 (PTT)
TS1 TAC 311 (PTT)
TS1 TG 9-Local Repeater

TS2 TG 2-Local (FCDMR Net)
TS2 TG 3112-FL State
TS2 TG 3113-GA State (PTT)
TS2 TG 3125-MA State (PTT)
TS2 TG 3139-OH State (PTT)
TS2 TG 3174-SE Regional
TS2 TG 3100-Bridge (PTT)
TS2 TG 8951-TAC 1 (PTT)
TS2 TG 1776 - US 1776 (PTT)
TS2 TG 113 - UA English 1 (PTT)
TS2 TG 123 - UA English 2 (PTT)
TS2 TG 9998-Parrot (PTT)
TS2 TG 9999-NoCal Audio Test (PTT)

You Must Have [ARS] Disabled Within Your Radio

Contact Name: Donny, KM4CTB
Email: djstratmann@gmail.com,1,K4USD Network
-311232,K2HR,Daytona Beach,Florida,United States,442.12500,1,+5.000,Peer,TS1 TS2,NY4Z,TS 1 -
Group call TG 444= NY Metro Bronx TRBO System wide talk group-FT
Group Call TG 1 = World Wide Time Slot -PTT
Group Call TG 3 = U.S. / English Speaking Countries
Group Call TG 13 = World Wide English -PTT
Group Call TG 3172 = NE / Regional -PTT
Group Call TG 14 = Latin America Region -PTT
Group Call TG 310 = Tac 310 Talk Group-PTT
Group Call TG 311 =Tac 311 Talk Group-PTT
Group Call TG 9998 = Parrot , Audio Test Server -PTT
Group Call TG 9999 = Audio Test NorCal PTT

TS2-Private

You Must Have [ARS] Disabled Within Your Radio

Contact Name: Bernie, NY4Z
Email: ny4z@yahoo.com,1,Bronx-TRBO
+311232,K2HR,Daytona Beach,Florida,United States,442.12500,1,+5.000,Peer,TS1 TS2,NY4Z,Time Slot
#1 - Group Call TG 444 NY Metro System wide-FT
#1 - Group Call TG 9 Local Talk Group - FT
#1 - Group Call TG 1 = World Wide Time Slot-PTT
#1 - Group Call TG 3 = North America  - PTT
#1 - Group Call TG 13 = World Wide English-PTT
#1 - Group Call TG 3172 = NE / Regional-PTT
#1 - Group Call TG 310 = Tac 310 -PTT
#1 - Group Call TG 311 = Tac 311 -PTT
#1 - Group Call TG 9998 = Parrot , Audio Test Server-PTT
#2 - member only private Talk Groups

You Must Have [ARS] Disabled Within Your Radio

Contact Name: Bernie, NY4Z
Email: ny4z@yahoo.com,1,Bronx-TRBO
311233,N4SER,Laurel,Florida,United States,444.70000,1,+5.000,Master,TS1 TS2,K4JBV,Time Slot #1 - Group Call 3 = N. America (ON)
Time Slot #1 - Group Call 1 =World Wide (PTT)
Time Slot #1 - Group Call 13 =WW English (PTT)
Time Slot #1- Group Call 3112 =Florida Statewide(PTT)
Time Slot #1 - Group Call 3174 =Southeast Regional (PTT)
Time Slot #1 - Group Call 310 =TAC-310 (PTT)
Time Slot #1 - Group Call 311 =TAC-311 (PTT)
Time Slot #2 - Group Call 2 =Local-NetWork (ON)
Time Slot #2 - Group Call 9= Local-Repeater (PTT)
Time Slot #2 - Group Call 3136 =TRI-State (PTT)

You Must Have [ARS] Disabled Within Your Radio

Contact: K4JBV
Email: K4jbv@comcast.net
Website: http://dmr-ecs.org,1,ECS
311234,KD4SJF,Jupiter,Florida,United States,442.60000,10,+5.000,None,TS1 TS2,KD4SJF,,0,FL-DMR
311235,KJ4JTQ,Miami,Florida,United States,442.22500,1,+5.000,Peer,TS1 TS2,KC2CWT,TS 1 - TG 3 = N. America (ON)
TS 1 - TG 1 =World Wide (PTT)
TS 1 - TG 13 =WW English (PTT)
TS 1- TG 3112 =Florida Statewide(PTT)
TS1 - TG 3174 =Southeast Regional (PTT)
TS 1 - TG 310 =TAC-310 (PTT)
TS 1 - TG 311 =TAC-311 (PTT)
TS 1 - TG 14 = WW Spanish
TS 2 - TG 2 =Local-NetWork (ON)
TS 2 - TG 9= Local-Repeater (PTT)
TS 2 - TG 3136 =TRI-State (PTT)

You Must Have [ARS] Disabled Within Your Radio

Coverage Area

Contact Name: Bob, KC2CWT
Email: kc2cwt@kc2cwt.net,1,DMR-FL
@@ -1649,7 +1666,7 @@ 311265,KJ4SHL,St. Petersburg,Florida,United States,443.75000,1,+5.000,Master,TS1 TS2,KJ4SHL,TS 1 TG-3 = US-DMR (PTT 5 Min)
TS 1 TG-310 = TAC310 [DCI] (ON)
TS 1 TG-311 = TAC311 [DCI] (PTT 15 Min.)
TS 1 TG-410 = TAC410 [FL-DMR] (PTT 5 Min)


TS 2 TG-2 = LOCAL USERS [FL-DMR] (ON)
TS 2 TG-400 = TAC400 [FL-DMR] (PTT 5 Min.),1,FL-DMR
311266,KK4ECR,Orange Park,Florida,United States,443.08750,1,+5.000,Peer,TS1 TS2,KK4ECR,TS1 TG1 WW (PTT)
TS1 TG3 NA
TS1 TG13 WWE (PTT)
TS1 TAC 310 (PTT)
TS1 TAC 311 (PTT)
TS1 TG 9-Local Repeater

TS2 TG 2-Local (FCDMR Net)
TS2 TG 3112-FL State
TS2 TG 3113-GA State (PTT)
TS2 TG 3125-MA State (PTT)
TS2 TG 3139-OH State (PTT)
TS2 TG 3174-SE Regional
TS2 TG 3100-Bridge (PTT)
TS2 TG 8951-TAC 1 (PTT)
TS2 TG 1776 - US 1776 (PTT)
TS2 TG 113 - UA English 1 (PTT)
TS2 TG 123 - UA English 2 (PTT)
TS2 TG 9998-Parrot (PTT)
TS2 TG 9999-NoCal Audio Test (PTT),1,K4USD
311267,W4ICY,St.Petersburg,Florida,United States,442.75000,1,+5.000,None,TS1 TS2,KJ4QAL,,0,Brandmeister
-311268,N4MOT,Fort Lauderdale,Florida,United States,442.42500,1,+5.000,Peer,TS1 TS2,K4XF,,0,DMR MARC
+311268,N4MOT,Coral Ridge,Florida,United States,442.42500,1,+5.000,Peer,TS1 TS2,K4XF,,0,DMR MARC
311301,KC6OVD,Atlanta,Georgia,United States,444.12500,0,+5.000,Master,TS1,KC6OVD,Time Slot #1 - Group Call 1 = DMR-MARC World Wide
Time Slot #1 - Group Call 3 = DMR-MARC North America
Time Slot #1 - Group Call 3777215 = DCI Com 1
Time Slot #2 - Group Call 2 = Local
Time Slot #2 - Group Call 3100 = The Bridge
Time Slot #2 - GA Statewide
Time Slot #2 - WA Statewide

Contact Name: Kevin King, KC6OVD
Email: KC6OVD@GMAIL.COM,1,GeorgiaDMR-
311302,K4USD, Portable Repeater,Georgia,United States,442.17500,1,+5.000,Peer,TS1 TS2,W2XAB,,0,K4USD
311303,KE4OKD,Sandy Springs,Georgia,United States,441.95000,0,+5.000,Peer,TS1 TS2,KC6OVD,Time Slot #1 - Group Call 1 = DMR-MARC World Wide
Time Slot #1 - Group Call 3 = DMR-MARC North America
Time Slot #1 - Group Call 3777215 = DCI Com 1
Time Slot #2 - Group Call 2 = LocalTime Slot #2 - Group Call 3100 = The Bridge
Time Slot #2 - GA Statewide
Time Slot #2 - WA Statewide

Coverage Area:

Contact Name: Kevin King, KC6OVD
Email: KC6OVD@GMAIL.COM,1,GeorgiaDMR
@@ -1813,7 +1830,7 @@ 311832,W9ABH,ATTICA,Indiana,United States,442.97500,1,+5.000,Peer,TS1 TS2,W9ABH,Time Slot #1 - Grp Call 1 = World Wide (PTT activated)
Time Slot #1 - Grp Call 13= WW English
Time Slot #1 - Grp Call 3 = N. America
Time Slot #1 - Grp Call 310 = TAC-310 (PTT Activated)
Time Slot #1 - Grp Call 113 = UA English 1 (User Activated)
Time Slot #1 - Grp Call 123 = UA English 2 (User Activated)
Time Slot #1 - Grp Call 9998 = Audio Parrot
Time Slot #1 - Grp Call 9999 = Audio Test
Time Slot #2 - Grp Call 2 = Local
Time Slot #2 - Grp Call 3118 = Indiana Statewide
Time Slot #2 - Grp Call 3169 = Midwest Regional

Contact: Will, W9ABH
Email: wholycro@hotmail.com,1,Hoosier DMR
311833,K3HTK,NOBLESVILLE,Indiana,United States,444.41250,1,+5.000,Peer,TS1 TS2,K3HTK,,0,Crossroads DMR
311834,W9AMT,Muncie,Indiana,United States,441.28750,1,+5.000,Peer,TS1 TS2,W9AMT,Time Slot #1 - Grp Call 1 = World Wide (PTT activated)
Time Slot #1 - Grp Call 13= WW English
Time Slot #1 - Grp Call 3 = N. America
Time Slot #1 - Grp Call 310 = TAC-310 (PTT Activated)
Time Slot #1 - Grp Call 113 = UA English 1 (User Activated)
Time Slot #1 - Grp Call 123 = UA English 2 (User Activated)
Time Slot #1 - Grp Call 9998 = Audio Parrot
Time Slot #1 - Grp Call 9999 = Audio Test
Time Slot #2 - Grp Call 2 = Local
Time Slot #2 - Grp Call 3118 = Indiana Statewide
Time Slot #2 - Grp Call 3169 = Midwest Regional

Contact: Tony, W9AMT
Email: w9amt@comcast.net,1,Hoosier DMR
-311835,K9DEW,Pending--Off Line,Indiana,United States,444.05000,1,+5.000,Peer,TS1 TS2,K9DEW,Time Slot #1 - Group Call 1 = Worldwide (PTT)
Time Slot #1 - Group Call 3 = North America
Time Slot #1 - Group Call 13= Worldwide English
Time Slot #1 - Group Call 310 = TAC-310
Time Slot #2 - Group Call 2 = Local
Time Slot #2 - Group Call 3118 = Indiana Statewide
Time Slot #2 - Group Call 3126 = Michigan Statewide
Time Slot #2- Group Call 3169 = Midwest Regional

You Must Have [ARS] Disabled Within Your Radio

Coverage Map: http://www.k9dew.com/index.cfm/photo-gallery/

Contact: Dewey, K9DEW
Email: k9dew@aol.com
Website: http://www.k9dew.com,1,Hoosier DMR
+311835,NT9M,LaGrange,Indiana,United States,443.67500,1,+5.000,Peer,TS1 TS2,NT9M,Time Slot #1 - Group Call 1 = Worldwide (PTT)
Time Slot #1 - Group Call 3 = North America
Time Slot #1 - Group Call 13= Worldwide English
Time Slot #1 - Group Call 310 = TAC-310
Time Slot #2 - Group Call 2 = Local
Time Slot #2 - Group Call 3118 = Indiana Statewide
Time Slot #2 - Group Call 3126 = Michigan Statewide
Time Slot #2- Group Call 3169 = Midwest Regional

You Must Have [ARS] Disabled Within Your Radio

Coverage Map: http://www.k9dew.com/index.cfm/photo-gallery/

Contact: NT9M Tim Murray
Email: nt9m.ars@gmail.com
,1,W9SMJ-NET
311836,W9OG,Evansville,Indiana,United States,442.18750,1,+5.000,Peer,TS1 TS2,N9OL,Time Slot #1 - Grp Call 1 = World Wide (PTT activated)
Time Slot #1 - Grp Call 13= WW English
Time Slot #1 - Grp Call 3 = N. America
Time Slot #1 - Grp Call 310 = TAC-310 (PTT Activated)
Time Slot #1 - Grp Call 113 = UA English 1 (User Activated)
Time Slot #1 - Grp Call 123 = UA English 2 (User Activated)
Time Slot #1 - Grp Call 9998 = Audio Parrot
Time Slot #1 - Grp Call 9999 = Audio Test
Time Slot #2 - Grp Call 2 = Local
Time Slot #2 - Grp Call 3118 = Indiana Statewide
Time Slot #2 - Grp Call 3169 = Midwest Regional

You Must Have [ARS] Disabled in Your Radio
Contact: N9OL
Email: jcvanvorst@wowway.com,1,Hoosier DMR
311837,N9CZV,New Castle,Indiana,United States,441.57500,1,+5.000,Peer,TS1 TS2,N9CZV,,1,Crossroads
311838,KC9TKJ,Morgantown,Indiana,United States,443.53750,1,+5.000,Peer,TS1 TS2,KC9TKJ,Time Slot #1 - Grp Call 1 = World Wide (PTT activated)
Time Slot #1 - Grp Call 13= WW English
Time Slot #1 - Grp Call 3 = N. America
Time Slot #1 - Grp Call 310 = TAC-310 (PTT Activated)
Time Slot #1 - Grp Call 113 = UA English 1 (User Activated)
Time Slot #1 - Grp Call 123 = UA English 2 (User Activated)
Time Slot #1 - Grp Call 9998 = Audio Parrot
Time Slot #1 - Grp Call 9999 = Audio Test
Time Slot #2 - Grp Call 2 = Local
Time Slot #2 - Grp Call 3118 = Indiana Statewide
Time Slot #2 - Grp Call 3169 = Midwest Regional

Coverage Map (http://dmr-marc.net/images/w9amt-coverage.jpg)

Contact: Chris, KC9TKJ
Email: christopher@morganized.com,1,Hoosier DMR
@@ -1971,6 +1988,8 @@ 312649,KB8SXK,Lansing,Michigan,United States,444.78750,1,+5.000,Peer,TS1 TS2,W8CMN,,0,Mi5
312650,N8GY,Brooklyn,Michigan,United States,443.90000,1,+5.000,None,TS1 TS2,N8GY,,0,Brandmeister
312651,N8WAV,Houghton,Michigan,United States,435.00000,1,+5.000,Peer,TS1 TS2,N8WAV,,1,DMR-MARC
+312652,W8YY,Phoenix,Michigan,United States,444.75000,1,+5.000,Peer,TS1 TS2,KD8CPX,,0,HARC
+312653,K8SN,Moline,Michigan,United States,442.26250,1,+5.000,None,TS1 TS2,K8SN,,0,BrandMeister
312701,NH7CY,Minneapolis,Minnesota,United States,442.42500,1,+5.000,Master,TS1 TS2,NH7CY,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 13 = WW English
Time Slot #1 - Group Call 3 =N. America

Time Slot #1 - Group Call 310= TAC 310 (PTT activated)
Time Slot #2 - Group Call 2 = Local
Time Slot #2- Group Call 3169 = Midwest Regional

You Must Have [ARS] Disabled Within Your Radio




Contact Name: Jason, NH7CY
Email: ballesteros.jasonh@gmail.com
Website:,1,Independent
312702,N0YNT,Oakdale,Minnesota,United States,443.42500,1,+5.000,Peer,TS1 TS2,N0YNT,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 13 = WW English
Time Slot #1 - Group Call 3 =N. America
Time Slot #1 - Group Call 310= TAC 310 (PTT activated)
Time Slot #2 - Group Call 2 = Local
Time Slot #2- Group Call 3169 = Midwest Regional

You Must Have [ARS] Disabled Within Your Radio

Contact: Matt, N0YNT
Email: mgenelin@fastcomputerserviceco.com,1,K4USD Net
312703,N0YNT,Saint Paul,Minnesota,United States,442.02500,1,+5.000,Peer,TS1 TS2,N0YNT,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 13 = WW English
Time Slot #1 - Group Call 3 =N. America

Time Slot #1 - Group Call 310= TAC 310 (PTT activated)
Time Slot #2 - Group Call 2 = Local
Time Slot #2- Group Call 3169 = Midwest Regional

You Must Have [ARS] Disabled Within Your Radio

Contact Name: Matt, N0YNT
Email: mgenelin@gmail.com
Website:,1,K4USD Net
@@ -1992,6 +2011,7 @@ 312719,N0BVE,MSP-Airport,Minnesota,United States,444.92500,11,+5.000,Peer,TS1 TS2,N0BVE,,1,K4USD
312720,KC0ARX,Saint Cloud,Minnesota,United States,442.22500,3,+5.000,Peer,TS1 TS2,KC0ARX,,1,K4USD
312721,K0GOI,Centervill,Minnesota,United States,443.67500,11,+5.000,Peer,TS1 TS2,N0GOI,,1,K4USD
+312722,KC0CAP,Litchfield,Minnesota,United States,443.80000,3,+5.000,Master,Mixed Mode,KC0CAP,,1,K4USD
312801,KD4VVZ,Lucedale,Mississippi,United States,444.20000,1,+5.000,Master,TS1 TS2,KD4VVZ,TS1 TG 13 WW Eng (PTT)
TS1 TG 3 NA
TS2 TG 3174 SE Regional
TS2 TG 2 Local
TS1 TG 31121 FCDMR (NE FL/SE GA) (PTT)
TS2 TG 3113 GA State
TS1 TG 310 Tac 310 (PTT)
TS2 TG 311 Tac 311 (PTT)
TS1 TG 113 UA English 1 (PTT)
TS1 TG 123 UA English 2 (PTT)
TS2 TG 9998 Parrot (PTT)
TS2 TG 9999 Audio Test (PTT)

Contact: General, KD4VVZ
Email: kd4vvz@gmail.com
Coverage: https://drive.google.com/file/d/0B60YxqeFJBIxVEhWZnZKd3ZWN1E/view?usp=sharing,1,DMR-MARC
312802,K5WHB,corinth,Mississippi,United States,147.28500,1,+0.600,Master,Mixed Mode,K5WHB,,0,ham
312900,W0WJB,Kansas City,Missouri,United States,443.45000,1,+5.000,Peer,TS1,W0WJB,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 3 = North America/English Speaking
Time Slot #2 - Group Call 2 = Local Only
Time Slot #2- Group Call 3169 =
Midwest Regional

You Must Have [ARS] Disabled Within Your Radio

Coverage Area (http://www.dmr-marc.net/images/w0wjb-coverage.jpg),1,KS DMR- Kansas City
@@ -2006,6 +2026,8 @@ 312909,WB0YRG,Kansas City,Missouri,United States,927.48750,1,-25.000,Peer,TS1 TS2,W0NQX,,0,BM
312910,WB0YRG,Peculiar,Missouri,United States,444.02500,1,+5.000,Peer,TS1 TS2,W0NQX,,0,BM
312911,WB6PQM,Jacksonville,Missouri,United States,442.65000,1,+5.000,Peer,TS1 TS2,WB6PQM,,0,BrandMeister
+312912,WA0QFJ,Kansas City,Missouri,United States,444.05000,4,+5.000,Peer,TS1 TS2,KD0EAV,,0,Brandmeister
+312913,WB8SQS,Fulton,Missouri,United States,444.95000,1,+5.000,Peer,TS1 TS2,WB8SQS,,0,Brandmeister
313001,KG6MQE,Hamilton,Montana,United States,422.02500,11,+7.000,Master,TS1 TS2,KG6MQE,Time Slot #1 - Grp Call 1 = World Wide (PTT activated)
Time Slot #1 - Grp Call 13= WW English
Time Slot #1 - Grp Call 3 = N. America
Time Slot #1 - Grp Call 310 = TAC-310 (PTT Activated)
Time Slot #1 - Grp Call 113 = UA English 1 (User Activated)
Time Slot #1 - Grp Call 123 = UA English 2 (User Activated)
Time Slot #1 - Grp Call 9998 = Audio Parrot
Time Slot #1 - Grp Call 9999 = Audio Test
Time Slot #2 - Grp Call 2 = Local

Contact: KG6MQE
Email: kg6mqe@gmail.com,1,WyDMR
313002,WR7HLN,Helena,Montana,United States,444.10000,1,+5.000,Master,Mixed Mode,WR7AGT,Time Slot #1 - Group Call 1 = Worldwide All Languages (PTT activated with 5 min inactivity timeout)
Time Slot #1 - Group Call 3 = North America
Time Slot #1 - Group Call 13= Worldwide English
Time Slot #1 - Group Call 113= UA113 (PTT activated with 10 min inactivity timeout)
Time Slot #2 - Group Call 3130 = MT Statewide
Time Slot #2 - Group Call 3177 = Mountain Regional

Contact: WR7AGT
email: towers@macpassradio.com,0,BrandMeister
313003,WR7HLN,Missoula,Montana,United States,448.90000,1,-5.000,Master,Mixed Mode,WR7AGT,,0,Brand Meister
@@ -2094,12 +2116,12 @@ 313413,N2DXZ,Guttenberg,New Jersey,United States,444.83750,1,+5.000,None,None,N2DXZ,Time Slot #1 - Group Call 1 = World Wide PTT only
Time Slot #1 - Group Call 13 = WW English
Time Slot #1 - Group Call 3 = N. America
Time Slot #1 - Group Call 3172 = Northeast
Time Slot #2 - Group Call 2 = NY-NJ Metro

You Must Have [ARS] Disabled Within Your Radio

Coverage Area (http://www.dmr-marc.net/images/n2jti-coverage.jpg)
Contact Name: Jeff, N2DXZ
Email: jpfaison@icloud.com,1,NJ-TRBO
313414,N2VUG,Roxbury,New Jersey,United States,448.92500,1,-5.000,Peer,TS1 TS2,N2VUG,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 13 = WW English
Time Slot #1 - Group Call 3 = North America
Time Slot #1 - Group Call 3172 = Northeast
Time Slot #2 - Group Call 2 = NY-NJ Metro

You Must Have [ARS] Disabled Within Your Radio

Contact: Bill, N2VUG
Email: bill@emergencycommunicationsgroup.com,1,NJ-TRBO
313415,WA3BXW,Manahawkin,New Jersey,United States,448.07500,1,-5.000,Peer,TS1 TS2,WA3BXW,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 13 = WW English
Time Slot #1 - Group Call 3 = N. America
Time Slot #1 - Group Call 3172 = Northeast Regional
Time Slot #2 - Group Call 2 = NJ-NY Metro

You Must Have [ARS] Disabled Within Your Radio

Contact Name: Bill, WA3BXW
Email: wa3bxw@gmail.com,1,NJ-TRBO
-313416,K2HR,Manahawkin,New Jersey,United States,445.42500,3,-5.000,Peer,TS1 TS2,NY4Z,TS 1 -
Group call TG 444= NY Metro Bronx TRBO System wide talk group-FT
Group Call TG 1 = World Wide Time Slot -PTT
Group Call TG 3 = U.S. / English Speaking Countries
Group Call TG 13 = World Wide English -PTT
Group Call TG 3172 = NE / Regional -PTT
Group Call TG 14 = Latin America Region -PTT
Group Call TG 310 = Tac 310 Talk Group-PTT
Group Call TG 311 =Tac 311 Talk Group-PTT
Group Call TG 9998 = Parrot , Audio Test Server -PTT
Group Call TG 9999 = Audio Test NorCal PTT

TS2-Private

You Must Have [ARS] Disabled Within Your Radio

Contact Name: Bernie, NY4Z
Email: ny4z@yahoo.com,1,Bronx
+313416,K2HR,Manahawkin,New Jersey,United States,445.42500,3,-5.000,Peer,TS1 TS2,NY4Z,Time Slot
#1 - Group Call TG 444 NY Metro System wide-FT
#1 - Group Call TG 1 = World Wide -PTT
#1 - Group Call TG 3 = North America  - PTT
#1 - Group Call TG 13 = World Wide English-PTT
#1 - Group Call TG 3172 = NE / Regional-PTT
#1 - Group Call TG 310 = Tac 310 -PTT
#1 - Group Call TG 311 = Tac 311 -PTT
#1 - Group Call TG 9998 = Parrot , Audio Test Server-PTT
#1 - Group Call TG 9 Local Talk Group - FT
#2 - member only private Talk Groups

TS2-Private

You Must Have [ARS] Disabled Within Your Radio

Contact Name: Bernie, NY4Z
Email: ny4z@yahoo.com,1,Bronx
313417,N3JCS,Cape May Courthouse,New Jersey,United States,447.76250,1,-5.000,Peer,TS1 TS2,N3JCS,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 13 = WW English
Time Slot #1 - Group Call 3 = N. America
Time Slot #1 - Group Call 3172 = Northeast Regional
Time Slot #2 - Group Call 2 = NJ-NY Metro

You Must Have [ARS] Disabled Within Your Radio

Click here to view the Repeater's Coverage Area (http://www.dmr-marc.net/images/n3jcs-coverage.jpg)

Contact Name: Dan Stugan, N3JCS
Email: dstugan@me.com
Website: http://n2jti.net,1,NJ-TRBO
313418,K2NYX,Jackson,New Jersey,United States,443.61250,6,+5.000,Peer,TS1 TS2,K2NYX,,0,Dmr-marc
313419,K2ACY,Brigantine ,New Jersey,United States,444.65625,1,+5.000,Peer,TS1 TS2,K2ACY,,0,MIT-NET
-313420,N2IXU,Toms River,New Jersey,United States,441.90000,1,+5.000,Peer,TS1 TS2,N2IXU,TS 1 -
Group call TG 444= NY Metro Bronx TRBO System wide talk group-FT
Group Call TG 1 = World Wide Time Slot -PTT
Group Call TG 3 = U.S. / English Speaking Countries
Group Call TG 13 = World Wide English -PTT
Group Call TG 3172 = NE / Regional -PTT
Group Call TG 14 = Latin America Region -PTT
Group Call TG 310 = Tac 310 Talk Group-PTT
Group Call TG 311 =Tac 311 Talk Group-PTT
Group Call TG 9998 = Parrot , Audio Test Server -PTT
Group Call TG 9999 = Audio Test NorCal PTT

TS2-Private

You Must Have [ARS] Disabled Within Your Radio

Contact Name: Bernie, NY4Z
Email: ny4z@yahoo.com,1,Bronx-TRBO
-313421,WA2JWR,Toms River,New Jersey,United States,445.77500,3,-5.000,Peer,TS1 TS2,WA2JWR,TS 1 -
Group call TG 444= NY Metro Bronx TRBO System wide talk group-FT
Group Call TG 1 = World Wide Time Slot -PTT
Group Call TG 3 = U.S. / English Speaking Countries
Group Call TG 13 = World Wide English -PTT
Group Call TG 3172 = NE / Regional -PTT
Group Call TG 14 = Latin America Region -PTT
Group Call TG 310 = Tac 310 Talk Group-PTT
Group Call TG 311 =Tac 311 Talk Group-PTT
Group Call TG 9998 = Parrot , Audio Test Server -PTT
Group Call TG 9999 = Audio Test NorCal PTT

TS2-Private

You Must Have [ARS] Disabled Within Your Radio

Contact Name: Bernie, NY4Z
Email: ny4z@yahoo.com,1,Bronx-TRBO
+313420,N2IXU,Toms River,New Jersey,United States,441.90000,1,+5.000,Peer,TS1 TS2,N2IXU,Time Slot
#1 - Group Call TG 444 NY Metro System wide-FT
#1 - Group Call TG 1 = World Wide -PTT
#1 - Group Call TG 3 = North America  - PTT
#1 - Group Call TG 13 = World Wide English-PTT
#1 - Group Call TG 3172 = NE / Regional-PTT
#1 - Group Call TG 310 = Tac 310- PTT
#1 - Group Call TG 311 = Tac 311- PTT
#1 - Group Call TG 9998 = Parrot , Audio Test Server-PTT
#2 - member only private Talk Groups

You Must Have [ARS] Disabled Within Your Radio

Contact Name: Bernie, NY4Z
Email: ny4z@yahoo.com,1,Bronx-TRBO
+313421,WA2JWR,Toms River,New Jersey,United States,445.77500,3,-5.000,Peer,TS1 TS2,WA2JWR,Time Slot
#1 - Group Call TG 444 NY Metro System wide-FT
#1 - Group Call TG 1 = World Wide - PTT
#1 - Group Call TG 3 = North America  - PTT
#1 - Group Call TG 13 = World Wide English-PTT
#1 - Group Call TG 3172 = NE / Regional-PTT
#1 - Group Call TG 310 = Tac 310 -PTT
#1 - Group Call TG 311 = Tac 311 -PTT
#1 - Group Call TG 312 = Tac 312 -PTT
#1 - Group Call TG 3100 = DCI Bridge -PTT
#1 - Group Call TG 9998 = Parrot , Audio Test Server-PTT
#2 - member only private Talk Groups

You Must Have [ARS] Disabled Within Your Radio

Contact Name: Bernie, NY4Z
Email: ny4z@yahoo.com,1,Bronx-TRBO
313422,N2ICV,Blackwood,New Jersey,United States,440.70000,2,+5.000,None,TS1 TS2,N2ICV,,0,none (=
313423,KD2KWD,Paramus,New Jersey,United States,444.15000,0,+5.000,Peer,TS1 TS2,KD2KWD,TS1 TG=444 = BronxTRBO Local (ON)
TS 1 TG-1 = MARC Worldwide (PTT)
TS 1 TG-3 = MARC North America (PTT)
TS 1 TG-3100 = Bridge-3100 (PTT)
TS 1 TG-310 = TAC-310 (PTT)
TS 1 TG-311 = TAC-311 (PTT)
TS 1 TG-312 = TAC-312 (PTT)
TS 1 TG-8951= TAC-1
America (PTT)
TS 1 TG-113 = UA English 1 (PTT)
TS 1 TG-9998 = Parrot (PTT)
TS 2 TG-9 = Local-Repeater (ON)
TS 2 TG-123 = UA English 2 (PTT)
TS 2 TG-3134 = New Jersey Statewide (PTT)


Contact Name: Michael KD2KWD
Email: Michael@kd2kwd.com
Website: KD2KWD.COM
,1,FL-DMR
313424,KD2HUY,Plainfield,New Jersey,United States,444.40000,1,+5.000,Peer,TS1 TS2,KC2VRJ,,0,Brandmister
@@ -2119,22 +2141,22 @@ 313601,K2QQJ,Brooklyn,New York,United States,440.50000,1,+5.000,Peer,TS1,K2QQJ,,0,DMR-MARC-W0PM
313602,W2KTU,Long Island,New York,United States,,0,,Peer,None,W2KTU,,0,
313603,N2JTI,Orangeburg,New York,United States,444.00000,1,+5.000,Master,TS1 TS2,N2JTI,Time Slot #1 - Group Call 1 = World Wide PTT
Time Slot #1 - Group Call 13 = WW English
Time Slot #1 - Group Call 3 = N. America
Time Slot #1 - Group Call 3172 = Northeast
Time Slot #2 - Group Call 2 = NY-NJ Metro
Time Slot #1 - Group Call 310 = TAC310
Time Slot #1 - Group Call 311 = TAC311
Time Slot #1 - Group Call 113 = UA113
Time Slot #1 - Group Call 123 = UA123
You Must Have [ARS] Disabled Within Your Radio

Coverage Area (http://www.dmr-marc.net/images/n2jti-coverage.jpg)
Contact Name: Nick, N2JTI
Email: nick.deroda@gmail.com,1,NJ-TRBO-
-313604,N2NSA,Bronx,New York,United States,443.35000,1,+5.000,Master,TS1 TS2,N2NSA,TS 1 -
Group Call TG 1 = World Wide Time Slot -PTT
Group Call TG 3 = U.S. / English Speaking Countries-FT
Group Call TG 13 = World Wide English -PTT
Group Call TG 3172 = NE / Regional -PTT
Group Call TG 14 = Latin America Region -PTT
Group Call TG 310 = Tac 310 Talk Group-PTT
Group Call TG 311 =Tac 311 Talk Group-PTT
Group Call TG 9998 = Parrot , Audio Test Server -PTT
Group Call TG 9999 = Audio Test NorCal PTT

TS2-Private

You Must Have [ARS] Disabled Within Your Radio

Contact Name: John Romano, N2NSA
Email: n2nsa1@verizon.net,1,Bronx-TRBO
+313604,N2NSA,Bronx,New York,United States,443.35000,1,+5.000,Master,TS1 TS2,N2NSA,Time Slot
#1 - Group Call TG 1 = World Wide -PTT
#1 - Group Call TG 3 = North America- FT
#1 - Group Call TG 13 = World Wide English-PTT
#1 - Group Call TG 3172 = NE / Regional-PTT
#1 - Group Call TG 3100 = DCI Bridge -PTT
#1 - Group Call TG 914 = Latin America Region-FT
#1 - Group Call TG 310 = Tac 310 Talk Group-PTT
#1 - Group Call TG 311 = Tac 311 Talk Group-PTT
#1 - Group Call TG 9998 = Parrot , Audio Test Server-PTT
#2 - member only private Talk Groups

You Must Have [ARS] Disabled Within Your Radio

Contact Name: John Romano, N2NSA
Email: n2nsa1@verizon.net,1,Bronx-TRBO
313605,K1IMD,Mattituck,New York,United States,449.67500,1,-5.000,Master,TS1 TS2,K1IMD,Time Slot #1 - Group Call 1 = World Wide (Sat. Net)
Time Slot #1 - Group Call 13 = WW English
Time Slot #1 - Group Call 3 = North America
Time Slot #1 - Group Call 3172 = Northeast
Time Slot #2 - Group Call 3181 = New England
Time Slot #2 - Group Call 3109 = So. New England
Time Slot #2 - Group Call 9 = Local Site
Time Slot #1 - Group Call 310 = TAC310

You Must Have [ARS] Disabled Within Your Radio

Coverage Area (http://dmr-marc.net/images/k1imd-coverage.jpg)

Contact: Jon, K1IMD
Email: k1imd@arrl.net,1,NE-TRBO
313606,N2JTI,Austerlitz,New York,United States,445.18750,1,-5.000,Peer,TS1 TS2,N2JTI,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 13 = WW English
Time Slot #1 - Group Call 3 = N. America
Time Slot #1 - Group Call 3172 = Northeast
Time Slot #2 - Group Call 2 = NY-NJ Metro

You Must Have [ARS] Disabled Within Your Radio

Coverage Area

Contact Name: Nick DeRoda
Email: nick.deroda@gmail.com,1,NJ-TRBO
313607,N2JTI,Harriman,New York,United States,443.80000,1,+5.000,Peer,TS1 TS2,N2JTI,Time Slot #1 - Group Call 1 = World Wide PTT
Time Slot #1 - Group Call 13 = WW English
Time Slot #1 - Group Call 3 = N. America
Time Slot #1 - Group Call 3172 = Northeast
Time Slot #2 - Group Call 2 = NY-NJ Metro
Time Slot #1 - Group Call 310 = TAC310
Time Slot #1 - Group Call 311 = TAC311
Time Slot #1 - Group Call 113 = UA113
Time Slot #1 - Group Call 123 = UA123
You Must Have [ARS] Disabled Within Your Radio

Coverage Area (http://www.dmr-marc.net/images/n2jti-coverage.jpg)
Contact Name: Nick, N2JTI
Email: nick.deroda@gmail.com,1,NJ-TRBO-
313608,KC2RQR,Staten Island,New York,United States,442.30000,3,+5.000,Master,Mixed Mode,KC2RQR,,0,Fios
313609,KC2BVP,Brooklyn,New York,United States,449.77500,0,-5.000,Peer,None,K2MAK,,0,
313610,W2HVL,Carmel,New York,United States,446.18750,1,-5.000,Peer,TS1 TS2,KC2CWT,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 13 = WW English
Time Slot #1 - Group Call 3 = N. America
Time Slot #1 - Group Call 3172 = Northeast
Time Slot #2 - Group Call 2 = NY-NJ Metro

You Must Have [ARS] Disabled Within Your Radio

Coverage Area (http://www.dmr-marc.net/images/n2jti-coverage.jpg)

Contact Name: Bob, KC2CWT
Email: kc2cwt@kc2cwt.net,1,NJ-TRBO-
-313611,NY4Z,Yorktown Heights,New York,United States,448.92500,1,-5.000,Peer,TS1 TS2,NY4Z,TS 1 -
Group call TG 444= NY Metro Bronx TRBO System wide talk group-FT
Group Call TG 1 = World Wide Time Slot -PTT
Group Call TG 3 = U.S. / English Speaking Countries -PTT
Group Call TG 13 = World Wide English -PTT
Group Call TG 3172 = NE / Regional -PTT
Group Call TG 14 = Latin America Region -PTT
Group Call TG 310 = Tac 310 Talk Group-PTT
Group Call TG 311 =Tac 311 Talk Group-PTT
Group Call TG 9998 = Parrot , Audio Test Server -PTT
Group Call TG 9999 = Audio Test NorCal PTT

TS2-Private

You Must Have [ARS] Disabled Within Your Radio

Contact Name: Bernie, NY4Z
Email: ny4z@yahoo.com,1,Bronx-TRBO-Yorktown
+313611,NY4Z,Jeffereson Valley,New York,United States,448.92500,1,-5.000,Peer,TS1 TS2,NY4Z,Time Slot
#1 - Group Call TG 444 NY Metro System wide-FT
#1 - Group Call TG 1 = World Wide -PTT
#1 - Group Call TG 3 = North America-PTT 
#1 - Group Call TG 13 = World Wide English-PTT
#1 - Group Call TG 3172 = NE / Regional-PTT
#1 - Group Call TG 310 = Tac 310 -PTT
#1 - Group Call TG 311 = Tac 311 -PTT
#1 - Group Call TG 9998 = Parrot, Audio Test Server-PTT
#2 - member only private Talk Groups
You Must Have [ARS] Disabled Within Your Radio

Contact Name: Bernie, NY4Z
Email: ny4z@yahoo.com,1,Bronx-TRBO
313612,WA2VNV,Selden,New York,United States,448.82500,1,-5.000,Peer,TS1 TS2,WA2VNV,Time Slot #1 - Group Call 1 = World Wide (Sat. Net)
Time Slot #1 - Group Call 13 = WW English
Time Slot #1 - Group Call 3 = North America
Time Slot #1 - Group Call 3172 = Northeast
Time Slot #2 - Group Call 3181 = New England
Time Slot #2 - Group Call 3109 = So. New England
Time Slot #2 - Group Call 9 = Local Site
Time Slot #1 - Group Call 310 = TAC310

You Must Have [ARS] Disabled Within Your Radio

Contact: George, WA2VNV
Email: wa2vnv@optonline.net
Website: http://nedecn.org,1,NE-TRBO
313613,K2MAK,New York,New York,United States,448.27500,3,-5.000,Peer,TS1 TS2,K2MAK,Time Slot #1 - Group Call 1 = World Wide
Time Slot #2 - Group Call 2 = NY-NJ Metro
Time Slot #1 - Group Call 3 = North America
Time Slot #1 - Group Call 13 = WW English
Time Slot #1 - Group Call 310 = Tac 310
Time Slot #1 - Group Call 311 = Tac 311
Time Slot #1 - Group Call 3172 = Northeast
Time Slot #1 - Group Call 9 = Local Repeater

TG 2 - NY-NJ Metro and TG 3 - North America are always ON.

Contact: Kenneth Mak
Email: k2mak@yahoo.com,1,NJ-TRBO
313614,N2LBT,Portable,New York,United States,449.52500,1,-5.000,Peer,TS1 TS2,N2LBT,,0,NJ-TRBO
313615,NV2M,Peru,New York,United States,442.28750,1,+5.000,Peer,TS1 TS2,NV2M,Time Slot #1 - Group Call 1 = World Wide*
Time Slot #1 - Group Call 13 = WW English*
Time Slot #1 - Group Call 11 = WW French*
Time Slot #1 - Group Call 3 = North America
Time Slot #1 - Group Call 302 = Canada*
Time Slot #1 - Group Call 310 = TAC310*
Time Slot #1 - Group Call 9999 = Audio Test*
Time Slot #2 - Group Call 3023 = Ontario*
Time Slot #2 - Group Call 3022 = Quebec*
Time Slot #2 - Group Call 3029 = New Brunswick*
Time Slot #2 - Group Call 3150 = Vermont
Time Slot #2 - Group Call 8 = Northern New Eng*
Time Slot #2 - Group Call 3181 = New England*
Time Slot #2 - Group Call 2 = Local

* Indicates PTT Activation required
You Must Have [ARS] Disabled in Your Radio

Contact: Neil Van Splinter, NV2M
E-mail: nv2m@arrl.net,1,DMR-MARC Canada
-313616,NY4Z,White Plains,New York,United States,442.10625,3,+5.000,Peer,TS1 TS2,NY4Z,TS 1 -
Group call TG 444= NY Metro Bronx TRBO System wide talk group-FT
Group Call TG 1 = World Wide Time Slot -PTT
Group Call TG 3 = U.S. / English Speaking Countries -PTT
Group Call TG 13 = World Wide English -PTT
Group Call TG 3172 = NE / Regional -PTT
Group Call TG 14 = Latin America Region -PTT
Group Call TG 310 = Tac 310 Talk Group-PTT
Group Call TG 311 =Tac 311 Talk Group-PTT
Group Call TG 9998 = Parrot , Audio Test Server -PTT
Group Call TG 9999 = Audio Test NorCal PTT

TS2-Private

You Must Have [ARS] Disabled Within Your Radio

Contact Name: Bernie, NY4Z
Email: ny4z@yahoo.com,1,Bronx-TRBO
-313617,NY4Z,Mahopac,New York,United States,145.39000,1,-0.600,Peer,TS1 TS2,NY4Z,NY4Z 443.150 +5 MHz Color Code 1

(Bridge Partner of DMR-MARC)

TS 1 -
Group call TG 444= NY Metro Bronx TRBO System wide talk group-FT
Group Call TG 1 = World Wide Time Slot -PTT
Group Call TG 3 = U.S. / English Speaking Countries -PTT
Group Call TG 13 = World Wide English -PTT
Group Call TG 3172 = NE / Regional -PTT
Group Call TG 14 = Latin America Region -PTT
Group Call TG 310 = Tac 310 Talk Group-PTT
Group Call TG 311 =Tac 311 Talk Group-PTT
Group Call TG 9998 = Parrot , Audio Test Server -PTT
Group Call TG 9999 = Audio Test NorCal PTT

TS2-Private

You Must Have [ARS] Disabled Within Your Radio

Contact Name: Bernie, NY4Z
Email: ny4z@yahoo.com,1,Bronx
-313618,NY4Z,Brooklyn,New York,United States,442.09375,2,+5.000,Peer,TS1 TS2,NY4Z,,0,Bronx-TRBO
-313619,K2HR,New Rochelle,New York,United States,446.28125,1,-5.000,Peer,TS1 TS2,NY4Z,KC2TOM 147.040 +.6MHz, Color Code 1

(Bridge Partner of DMR-MARC)

TS 1 -
Group call TG 444= NY Metro Bronx TRBO System wide talk group-FT
Group Call TG 1 = World Wide Time Slot -PTT
Group Call TG 3 = U.S. / English Speaking Countries -PTT
Group Call TG 13 = World Wide English -PTT
Group Call TG 3172 = NE / Regional -PTT
Group Call TG 14 = Latin America Region -PTT
Group Call TG 310 = Tac 310 Talk Group-PTT
Group Call TG 311 =Tac 311 Talk Group-PTT
Group Call TG 9998 = Parrot , Audio Test Server -PTT
Group Call TG 9999 = Audio Test NorCal PTT

TS2-Private

You Must Have [ARS] Disabled Within Your Radio

Contact Name: Den Palumbo, KC2IVF
Email: denpalumbo@optonline.net ,1,Bronx-TRBO
+313616,NY4Z,White Plains,New York,United States,442.10625,3,+5.000,Peer,TS1 TS2,NY4Z,Time Slot
#1 - Group Call TG 444 NY Metro System wide-FT
#1 - Group Call TG 1 = World Wide Time Slot-PTT
#1 - Group Call TG 3 = North America-PTT 
#1 - Group Call TG 13 = World Wide English-PTT
#1 - Group Call TG 3172 = NE / Regional-PTT
#1 - Group Call TG 310 = Tac 310 -PTT
#1 - Group Call TG 311 = Tac 311 -PTT
#1 - Group Call TG 9998 = Parrot , Audio Test Server-PTT
#1 - Group Call TG 9 Local Talk Group - FT
#2 - member only private Talk Groups
 
You Must Have [ARS] Disabled Within Your Radio

Contact Name: Bernie, NY4Z
Email: ny4z@yahoo.com,1,Bronx-TRBO
+313617,NY4Z,Mahopac,New York,United States,145.39000,1,-0.600,Peer,TS1 TS2,NY4Z,Time Slot
#1 - Group Call TG 444 NY Metro System wide-FT
#1 - Group Call TG 1 = World Wide -PTT
#1 - Group Call TG 3 = North America-PTT 
#1 - Group Call TG 13 = World Wide English-PTT
#1 - Group Call TG 3172 = NE / Regional-PTT
#1 - Group Call TG 310 = Tac 310 -PTT
#1 - Group Call TG 311 = Tac 311 -PTT
#1 - Group Call TG 9998 = Parrot , Audio Test Server-PTT
#2 - member only private Talk Groups

You Must Have [ARS] Disabled Within Your Radio

Contact Name: Bernie, NY4Z
Email: ny4z@yahoo.com,1,Bronx
+313618,NY4Z,Brooklyn,New York,United States,442.09375,2,+5.000,Peer,TS1 TS2,NY4Z,#1 - Group Call TG 444 = NY Metro System wide-FT
#1 - Group Call TG 1 = World Wide -PTT
#1 - Group Call TG 3 = North America  - PTT
#1 - Group Call TG 13 = World Wide English-PTT
#1 - Group Call TG 3172 = NE / Regional-PTT
#1 - Group Call TG 310 = Tac 310 Talk Group-PTT
#1 - Group Call TG 311 = Tac 311 Talk Group-PTT
#1 - Group Call TG 3100 = DCI Bridge -PTT
#1 - Group Call TG 9998 = Parrot , Audio Test Server-PTT
#1 - Group Call TG 9 Local Talk Group - FT
#2 - member only private Talk Groups,1,Bronx-TRBO
+313619,K2HR,New Rochelle,New York,United States,446.28125,1,-5.000,Peer,TS1 TS2,NY4Z,Time Slot
#1 - Group Call TG 444 NY Metro System wide-FT
#2 - member only private Talk GroupsYou Must Have [ARS] Disabled Within Your Radio

Contact Name: Den Palumbo, KC2IVF
Email: denpalumbo@optonline.net ,1,Bronx-TRBO
313620,N2LBT,Albany,New York,United States,444.00000,1,+5.000,Peer,TS1 TS2,N2LBT,,0,NJ-TRBO
313621,K1IMD,Mattituck,New York,United States,449.62500,1,-5.000,Master,TS1 TS2,K1IMD,,0,NE-TRBO Mattituck, NY
313622,N2LBT,Inlet,New York,United States,147.43750,1,-2.500,Peer,TS1 TS2,N2LBT,Time Slot #1 - Group Call 1 = World Wide PTT only
Time Slot #1 - Group Call 13 = WW English
Time Slot #1 - Group Call 3 = N. America
Time Slot #1 - Group Call 3172 = Northeast
Time Slot #2 - Group Call 2 = NY-NJ Metro

You Must Have [ARS] Disabled Within Your Radio

Coverage Area

Contact Name: Dennis Hudson, N2LBT
Email: n2lbt@n2lbt.com,1,NJ-TRBO
@@ -2142,7 +2164,7 @@ 313624,KB2RNI,Brooklyn,New York,United States,146.61000,1,-0.600,Peer,Mixed Mode,KB2RNI,,0,BrandMeister
313625,N2NSA,New York City,New York,United States,443.88750,1,+5.000,Peer,TS1 TS2,N2NSA,TS1-Group call TG 444= NY Metro Bronx TRBO System wide talk group-FT

TS2-Private
Contact Name: John Romano, N2NSA
Email: n2nsa1@verizon.net,1,Bronx-TRBO
313626,NY4Z,Yorktown heights,New York,United States,443.15000,1,+5.000,Peer,TS1 TS2,NY4Z,,0,DMR-MARC
-313627,K2HR,Briarcliff Manor,New York,United States,443.60000,1,+5.000,Peer,TS1 TS2,NY4Z,TS 1 -
Group call TG 444= NY Metro Bronx TRBO System wide talk group-FT
Group Call TG 1 = World Wide Time Slot -PTT
Group Call TG 3 = U.S. / English Speaking Countries -PTT
Group Call TG 13 = World Wide English -PTT
Group Call TG 3172 = NE / Regional -PTT
Group Call TG 14 = Latin America Region -PTT
Group Call TG 310 = Tac 310 Talk Group-PTT
Group Call TG 311 =Tac 311 Talk Group-PTT
Group Call TG 9998 = Parrot , Audio Test Server -PTT
Group Call TG 9999 = Audio Test NorCal PTT

TS2-Private

You Must Have [ARS] Disabled Within Your Radio

Contact Name: Bernie, NY4Z
Email: ny4z@yahoo.com,1,Bronx-TRBO
+313627,K2HR,Briarcliff Manor,New York,United States,443.60000,1,+5.000,Peer,TS1 TS2,NY4Z,TS 1 -
#1 - Group Call TG 444 NY Metro System wide-FT
#1 - Group Call TG 1 = World Wide Time Slot-PTT
#1 - Group Call TG 3 = North America-PTT 
#1 - Group Call TG 13 = World Wide English-PTT
#1 - Group Call TG 3172 = NE / Regional-PTT
#1 - Group Call TG 310 = Tac 310 -PTT
#1 - Group Call TG 311 = Tac 311 -PTT
#1 - Group Call TG 9998 = Parrot , Audio Test Server-PTT
#2 - member only private Talk Groups
You Must Have [ARS] Disabled Within Your Radio

Contact Name: Bernie, NY4Z
Email: ny4z@yahoo.com,1,Bronx-TRBO
313628,K2JRC,Manhattan West Side,New York,United States,443.70000,3,+5.000,Peer,TS1 TS2,K2JRC,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 3 = U.S. / English Speaking Countries
Time Slot #1 - Group Call 3172 = Northeast
Time Slot #2 - Group Call 2 = NY-NJ Metro

You Must Have [ARS] Disabled Within Your Radi

Coverage Area:

Contact Name: Jerry, K2JRC
Email: jerrycudmore@pobox.com,1,NJ-TRBO
313629,W2HVL,Carmel,New York,United States,438.36250,1,-7.6,PEER,TS1 TS2,KC2CWT,,0,NJ-TRBO
313630,NY4Z,Brooklyn,New York,United States,442.05000,1,+5.000,Peer,TS1 TS2,NY4Z,TS 1 -
Group call TG 444= NY Metro Bronx TRBO System wide talk group-FT
Group Call TG 1 = World Wide Time Slot -PTT
Group Call TG 3 = U.S. / English Speaking Countries-PTT
Group Call TG 13 = World Wide English -PTT
Group Call TG 3172 = NE / Regional -PTT
Group Call TG 14 = Latin America Region -PTT
Group Call TG 310 = Tac 310 Talk Group-PTT
Group Call TG 311 =Tac 311 Talk Group-PTT
Group Call TG 9998 = Parrot , Audio Test Server -PTT
Group Call TG 9999 = Audio Test NorCal PTT

TS2-Private

You Must Have [ARS] Disabled Within Your Radio

Contact Name: Bernie, NY4Z
Email: ny4z@yahoo.com,1,Bronx-TRBO
@@ -2150,15 +2172,15 @@ 313632,N2ION,OCEANSIDE,New York,United States,447.92500,7,-0.500,Master,TS1 TS2,N2ION,,0,DMR- NYNJ
313633,WA2LRE,Rand Hill,New York,United States,446.47500,1,-5.000,Peer,TS1 TS2,WA2LRE,
Time Slot #1 - Group Call 1 = World Wide*
Time Slot #1 - Group Call 13 = WW English*
Time Slot #1 - Group Call 11 = WW French*
Time Slot #1 - Group Call 3 = North America
Time Slot #1 - Group Call 302 = Canada*
Time Slot #1 - Group Call 310 = TAC310*
Time Slot #1 - Group Call 9999 = Audio Test*
Time Slot #2 - Group Call 3023 = Ontario*
Time Slot #2 - Group Call 3022 = Quebec*
Time Slot #2 - Group Call 3029 = New Brunswick*
Time Slot #2 - Group Call 3150 = Vermont
Time Slot #2 - Group Call 8 = Northern New Eng*
Time Slot #2 - Group Call 3181 = New England*
Time Slot #2 - Group Call 2 = Local

* Indicates PTT Activation required
You Must Have [ARS] Disabled in Your Radio,1,CAN-TRBO
313634,N2LBT,Stark,New York,United States,444.52500,1,+5.000,Peer,TS1 TS2,N2LBT,,0,NJ-TRBO
-313635,N2ION,OCEANSIDE,New York,United States,449.07500,7,-5.000,Master,TS1 TS2,N2ION,TS1
NA 3
WW ENG 13
TRISTATE 2
TAC310
TAC311
BX TRBO 444
NORTHEAST REGION 3172


TS 2 PRIVATE

TS1
NA 3
WW ENG 13
TRISTATE 2
TAC310
TAC311
BX TRBO 444
NORTHEAST REGION 3172


TS 2 PRIVATE

N2ION@AOL.COM,1,NYNJ
+313635,N2ION,OCEANSIDE,New York,United States,449.07500,7,-5.000,Master,TS1 TS2,N2ION,Time Slot
#1 - Group Call TG 444 NY Metro System wide-FT
#1 - Group Call TG 1 = World Wide -PTT
#1 - Group Call TG 3 = North America  - PTT
#1 - Group Call TG 13 = World Wide English-PTT
#1 - Group Call TG 3172 = NE / Regional-PTT
#1 - Group Call TG 310 = Tac 310 -PTT
#1 - Group Call TG 311 = Tac 311 -PTT
#1 - Group Call TG 9998 = Parrot , Audio Test Server-PTT
#2 - member only private Talk Groups
N2ION@AOL.COM,1,NYNJ
313636,KC2TOM,New Rochelle,New York,United States,147.04000,1,+0.600,Peer,TS1 TS2,KC2IVF,,0,Bronx TRBO
313637,KC2WCB,Shirley,New York,United States,443.52500,1,+5.000,Peer,TS1 TS2,KC2WCB,,0,BrandMeister
313638,N2NSA,Queens,New York,United States,440.50000,1,+5.000,Master,TS1 TS2,N2NSA,TS 1 -
Group call TG 444= NY Metro Bronx TRBO System wide talk group-FT
Group Call TG 1 = World Wide Time Slot -PTT
Group Call TG 3 = U.S. / English Speaking Countries -PTT
Group Call TG 13 = World Wide English -PTT
Group Call TG 3172 = NE / Regional -PTT
Group Call TG 14 = Latin America Region -PTT
Group Call TG 310 = Tac 310 Talk Group-PTT
Group Call TG 311 =Tac 311 Talk Group-PTT
Group Call TG 9998 = Parrot , Audio Test Server -PTT
Group Call TG 9999 = Audio Test NorCal PTT

TS2-Private

You Must Have [ARS] Disabled Within Your Radio

Contact Name: Bernie, NY4Z
Email: ny4z@yahoo.com,1,Bronx-TRBO
-313639,W2KPQ,Plainview,New York,United States,449.37500,1,-5.000,Peer,TS1 TS2,WB2WAK,TS 1 -
Group call TG 444= NY Metro Bronx TRBO System wide talk group-FT
Group Call TG 1 = World Wide Time Slot -PTT
Group Call TG 3 = U.S. / English Speaking Countries -PTT
Group Call TG 13 = World Wide English -PTT
Group Call TG 3172 = NE / Regional -PTT
Group Call TG 14 = Latin America Region -PTT
Group Call TG 310 = Tac 310 Talk Group-PTT
Group Call TG 311 =Tac 311 Talk Group-PTT
Group Call TG 9998 = Parrot , Audio Test Server -PTT
Group Call TG 9999 = Audio Test NorCal PTT

TS2-Private

You Must Have [ARS] Disabled Within Your Radio

Contact Name: Bernie, NY4Z
Email: ny4z@yahoo.com,1,Bronx-TRBO
-313640,WB2WAK,Malverne,New York,United States,446.42500,1,-5.000,Peer,TS1 TS2,WB2WAK,TS 1 -
Group call TG 444= NY Metro Bronx TRBO System wide talk group-FT
Group Call TG 1 = World Wide Time Slot -PTT
Group Call TG 3 = U.S. / English Speaking Countries -PTT
Group Call TG 13 = World Wide English -PTT
Group Call TG 3172 = NE / Regional -PTT
Group Call TG 14 = Latin America Region -PTT
Group Call TG 310 = Tac 310 Talk Group-PTT
Group Call TG 311 =Tac 311 Talk Group-PTT
Group Call TG 9998 = Parrot , Audio Test Server -PTT
Group Call TG 9999 = Audio Test NorCal PTT

TS2-Private

You Must Have [ARS] Disabled Within Your Radio

Contact Name: Bernie, NY4Z
Email: ny4z@yahoo.com,1,Bronx-TRBO
-313641,WB2WAK,Glen Oaks,New York,United States,438.51250,1,-5.000,Peer,TS1 TS2,WB2WAK,TS 1 -
Group call TG 444= NY Metro Bronx TRBO System wide talk group-FT
Group Call TG 1 = World Wide Time Slot -PTT
Group Call TG 3 = U.S. / English Speaking Countries -PTT
Group Call TG 13 = World Wide English -PTT
Group Call TG 3172 = NE / Regional -PTT
Group Call TG 14 = Latin America Region -PTT
Group Call TG 310 = Tac 310 Talk Group-PTT
Group Call TG 311 =Tac 311 Talk Group-PTT
Group Call TG 9998 = Parrot , Audio Test Server -PTT
Group Call TG 9999 = Audio Test NorCal PTT

TS2-Private

You Must Have [ARS] Disabled Within Your Radio

Contact Name: Bernie, NY4Z
Email: ny4z@yahoo.com,1,Bronx Trbo
+313639,W2KPQ,Plainview,New York,United States,449.37500,1,-5.000,Peer,TS1 TS2,WB2WAK,Time Slot
#1 - Group Call TG 444 NY Metro System wide-FT
#1 - Group Call TG 1 = World Wide -PTT
#1 - Group Call TG 3 = North America-PTT
#1 - Group Call TG 13 = World Wide English-PTT
#1 - Group Call TG 3172 = NE / Regional - PTT
#1 - Group Call TG 310 = Tac 310 -PTT
#1 - Group Call TG 311 = Tac 311 -PTT
#1 - Group Call TG 3100 = DCI Bridge-PTT
#1 - Group Call TG 312 = Tac 312 -PTT
#1 - Group Call TG 9998 = Parrot PTT
#2 - member only private Talk Groups
 

You Must Have [ARS] Disabled Within Your Radio

Contact Name: Bernie, NY4Z
Email: ny4z@yahoo.com,1,Bronx-TRBO
+313640,WB2WAK,Malverne,New York,United States,446.42500,1,-5.000,Peer,TS1 TS2,WB2WAK,Time Slot
#1 - Group Call TG 444 NY Metro System wide-FT
#1 - Group Call TG 1 = World Wide -PTT
#1 - Group Call TG 3 = North America-PTT
#1 - Group Call TG 13 = World Wide English-PTT
#1 - Group Call TG 3172 = NE / Regional-PTT
#1 - Group Call TG 310 = Tac 310 -PTT
#1 - Group Call TG 311 = Tac 311 -PTT
#1 - Group Call TG 312 = Tac 312 -PTT
#1 - Group Call TG 3100 = DCI Bridge (Brainmeister)-PTT
#1 - Group Call TG 9998 = Parrot , Audio Test Server-PTT
#2 - member only private Talk Groups

You Must Have [ARS] Disabled Within Your Radio

Contact Name: Bernie, NY4Z
Email: ny4z@yahoo.com,1,Bronx-TRBO
+313641,WB2WAK,Glen Oaks,New York,United States,438.51250,1,-5.000,Peer,TS1 TS2,WB2WAK,Time Slot
#1 - Group Call TG 444 NY Metro System wide-FT
#1 - Group Call TG 1 = World Wide -PTT
#1 - Group Call TG 3 = North America-PTT 
#1 - Group Call TG 13 = World Wide English-PTT
#1 - Group Call TG 3172 = NE / Regional-PTT
#1 - Group Call TG 310 = Tac 310 -PTT
#1 - Group Call TG 311 = Tac 311 -PTT
#1 - Group Call TG 9998 = Parrot , Audio Test Server-PTT
#2 - member only private Talk Groups

You Must Have [ARS] Disabled Within Your Radio

Contact Name: Bernie, NY4Z
Email: ny4z@yahoo.com,1,Bronx Trbo
313642,KC2OBW,Highland ,New York,United States,440.31250,11,+5.000,None,TS2,KC2OBW,,0,None at the moment
-313643,NY4Z,Kent,New York,United States,442.15000,1,+5.000,Peer,TS1 TS2,NY4Z,Group call TG 444= NY Metro Bronx TRBO System wide talk group-FT
Group Call TG 1 = World Wide Time Slot -PTT
Group Call TG 3 = U.S. / English Speaking Countries -PTT
Group Call TG 13 = World Wide English -PTT
Group Call TG 3172 = NE / Regional -PTT
Group Call TG 14 = Latin America Region -PTT
Group Call TG 310 = Tac 310 Talk Group-PTT
Group Call TG 311 =Tac 311 Talk Group-PTT
Group Call TG 9998 = Parrot , Audio Test Server -PTT
Group Call TG 9999 = Audio Test NorCal PTT
Time slot 2: private

Contact: Bernie, NY4Z
Email: ny4z@yahoo.com,1,Bronx TRBO
+313643,K2HR,Kent,New York,United States,442.15000,1,+5.000,Peer,TS1 TS2,NY4Z,Time Slot
#1 - Group Call TG 444 NY Metro System wide-FT
#1 - Group Call TG 1 = World Wide -PTT
#1 - Group Call TG 3 = North America-PTT 
#1 - Group Call TG 13 = World Wide English-PTT
#1 - Group Call TG 3172 = NE / Regional-PTT
#1 - Group Call TG 310 = Tac 310 Talk Group-PTT
#1 - Group Call TG 311 = Tac 311 Talk Group-PTT
#1 - Group Call TG 9998 = Parrot , Audio Test Server-PTT
#2 - member only private Talk Groups 

Contact: Bernie, NY4Z
Email: ny4z@yahoo.com,1,Bronx TRBO
313644,KC2KVE,Ogdensburg,New York,United States,442.35000,1,+5.000,None,TS1 TS2,MATT M,Local - TG 2 TS 2- Wide area coverage,Northern NY & Canada
Upstate NY - TG 31361 TS 1
New York Statewide- TG 3136 TS 2
North America- TG 3 TS 1
Worldwide-TG 1 TS 1-*
Worldwide English- TG 13 TS 1
New England 1-TG 8 TS 2- *
New England 2-TG 3181 TS 2- *
Vermont-TG 3150 TS 2-*
Canada Wide-TG 302 TS 1-
Ontario Wide- TG 3023 TS 2-
Tac 310- TG 310 TS 1-*
Tac 311- TG 311 TS 1-*
UA 113- TG 113 TS 1- *
US 123- TG 123 TS 1- *

* PTT

You Must Have [ARS] Disabled in Your Radio

Trustee-KE2EMS
Contact Email- KE2EMS@TWC.COM,1,DMR-MARC Canada
313645,W2LGB,Thiells,New York,United States,443.20000,1,+5.000,Peer,TS1 TS2,W2LGB,Time Slot #1 - Group Call 1 = World Wide PTT
Time Slot #1 - Group Call 13 = WW English
Time Slot #1 - Group Call 3 = N. America
Time Slot #1 - Group Call 3172 = Northeast
Time Slot #2 - Group Call 2 = NY-NJ Metro
Time Slot #1 - Group Call 310 = TAC310
Time Slot #1 - Group Call 311 = TAC311
Time Slot #1 - Group Call 113 = UA113
Time Slot #1 - Group Call 123 = UA123
You Must Have [ARS] Disabled Within Your Radio

Coverage Area
Contact Name: Larry, W2LGB
Email: Lberk26@gmail.com,1,NJ-TRBO
313646,N2LEN,Schenectady,New York,United States,147.30000,1,+0.600,Master,TS1 TS2,N2LEN,Repeater Trustee: N2LEN
Trustee Email: n2len@aol.com,1,NY-TRBO
@@ -2174,7 +2196,7 @@ 313656,K1IMD,PECONIC,New York,United States,449.97500,1,-5.000,Peer,TS1 TS2,K1IMD,,0,NewEng-Trbo
313657,WA2CW,Cohoes,New York,United States,442.40000,1,+5.000,Peer,TS1,WA2CW,,0,Brandmeister
313658,KD2EQY,THIELLS,New York,United States,449.18750,1,-5.000,Peer,Mixed Mode,W2LGB,,0,KD2EQY
-313659,W2KPQ,Selden,New York,United States,449.36250,1,-5.000,Peer,TS1 TS2,WB2WAK,TS 1 -
Group call TG 444= NY Metro Bronx TRBO System wide talk group-FT
Group Call TG 1 = World Wide Time Slot -PTT
Group Call TG 3 = U.S. / English Speaking Countries -PTT
Group Call TG 13 = World Wide English -PTT
Group Call TG 3172 = NE / Regional -PTT
Group Call TG 14 = Latin America Region -PTT
Group Call TG 310 = Tac 310 Talk Group-PTT
Group Call TG 311 =Tac 311 Talk Group-PTT
Group Call TG 9998 = Parrot , Audio Test Server -PTT
Group Call TG 9999 = Audio Test NorCal PTT

TS2-Private

You Must Have [ARS] Disabled Within Your Radio

Contact Name: Bernie, NY4Z
Email: ny4z@yahoo.com,1,BRONXTRBO
+313659,W2KPQ,Selden,New York,United States,449.36250,1,-5.000,Peer,TS1 TS2,WB2WAK,Time Slot
#1 - Group Call TG 444 NY Metro System wide-FT
#1 - Group Call TG 1 = World Wide -PTT
#1 - Group Call TG 3 = North America-PTT
#1 - Group Call TG 13 = World Wide English-PTT
#1 - Group Call TG 3172 = NE / Regional-PTT
#1 - Group Call TG 310 = Tac 310 -PTT
#1 - Group Call TG 311 = Tac 311 -PTT
#1 - Group Call TG 312 = Tac 312 -PTT
#1 - Group Call TG 3100 = DCI Bridge -PTT
#1 - Group Call TG 9998 = Parrot , Audio Test Server-PTT
#2 - member only private Talk Groups

You Must Have [ARS] Disabled Within Your Radio

Contact Name: Bernie, NY4Z
Email: ny4z@yahoo.com,1,BRONXTRBO
313700,W4ZO,Charlotte,North Carolina,United States,442.41250,1,+5.000,Peer,TS1 TS2,K4ITL,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 3 = U.S. / English Speaking Countries
Time Slot #2 - Group Call 2 = North Carolina/Tennessee

You Must Have [ARS] Disabled Within Your Radio

Click here to view the Repeater's Coverage Area (http://24.172.25.174:85/resources/charlotte_coverage_map.jpg)


Contact Name: Ralph Bartlett, W4ZO
Email: majicsmoke@gmail.com,1,NC-PRN-
313701,N4DTR,Waynesville,North Carolina,United States,444.45000,1,+5.000,Peer,TS1 TS2,N4DTR,Timeslot 1
Local (full time)
NET411 (scheduled) [future implementation planned]
North America (on demand)
TAC310 (on demand)
TAC311 (on demand)
TAC312 (on demand)
WW English (on demand)
Data (full time) [future implementation planned]
Echo Test (on demand)
Clear Timeslot 2

Timeslot 2
WNC (full time)
PRN (on demand)
Southeast (on demand)
Clear Timeslot 1

Contact: Todd, N4DTR
Email: gsrn@hotmail.com
Website: http://www.wncdmr.net/,1,WNC-NET
313702,K4ITL,Raleigh,North Carolina,United States,442.51250,1,+5.000,Peer,TS1 TS2,K4ITL,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 3 = U.S. / English Speaking Countries
Time Slot #2 - Group Call 2 = North Carolina/Tennessee

You Must Have [ARS] Disabled Within Your Radio

Click here to view the Repeater's Coverage Area (http://24.172.25.174:85/resources/raleigh_coverage_maps.jpg),1,NC-PRN
@@ -2454,6 +2476,7 @@ 314859,K5TRA,Austin,Texas,United States,927.18750,1,-25.000,Peer,Mixed Mode,K5TRA,,0,Brandmeister
314860,N5SLI,Harlingen,Texas,United States,443.87500,1,+5.000,Peer,TS1,N5SLI,,0,Brandmeister
314861,N5GDL,Carrollton,Texas,United States,444.07500,1,+5.000,Peer,TS1 TS2,N5GDL,,0,TBD
+314862,KE5FGC,Tyler,Texas,United States,444.87500,1,+5.000,Master,TS1 TS2,KE5FGC,,0,Lonestar
314900,N6DVZ,Salt Lake City,Utah,United States,447.93750,1,-5.000,Master,TS1 TS2,N6DVZ,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 13 = World Wide English
Time Slot #1 - Group Call 3 = U.S. / English Speaking Countries
Time Slot #1 - Group Call 311 = Tac 311
Time Slot #1 - Group Call 13149 = Utah State 2
Time Slot #1 - Group Call 1776 = USA
Time Slot #1 - Group Call 9998 = Echo Test
Time Slot #2 - Group Call 2 = Local Only
Time Slot #2 - Group Call 3177 = Mountain Regional
Time Slot #2 - Group Call 3149 = Utah State 1
Time Slot #2 - Group Call 310 = Tac 310
Time Slot #2 - Group Call 3100 = Bridge Group

Coverage Map

Contact Name: Roger Davies
Website: dmr-utah.net
Email:1n6dvz@gmail.com,1,Utah-DMR
314901,KC7WST,Woodland Hills,Utah,United States,449.80000,1,-5.000,Master,TS1 TS2,KC7WSU,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 13 = WW English
Time Slot #1 - Group Call 3 = N. America
Time Slot #2 - Group Call 2 = Local
Time Slot #2 - Group Call 3149 = Utah
Time Slot #2 - Group Call 3177 = Mountain

Contact: Chris Andrist, KC7WSU
Email: dmr@yeahmon.net
Website: http://www.yeahmon.net/dmr/,1,Utah-DMR
314902,NU7TS,Logan,Utah,United States,447.00000,1,-5.000,Peer,TS1 TS2,WA7KMF,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 13 = World Wide English
Time Slot #1 - Group Call 3 = U.S. / English Speaking Countries
Time Slot #1 - Group Call 311 = Tac 311
Time Slot #1 - Group Call 13149 = Utah State 2
Time Slot #1 - Group Call 1776 = USA
Time Slot #1 - Group Call 9998 = Echo Test
Time Slot #2 - Group Call 2 = Local Only
Time Slot #2 - Group Call 3177 = Mountain Regional
Time Slot #2 - Group Call 3149 = Utah State 1
Time Slot #2 - Group Call 310 = Tac 310
Time Slot #2 - Group Call 3100 = Bridge Group

Coverage Map
Website: dmr-utah.net

Contact: Bill Neville, WA7KMF
Email: Bill.Neville@gmail.com,1,Utah-DMR
@@ -2544,7 +2567,7 @@ 315511,N9OIG,Milwaukee ,Wisconsin,United States,442.20625,9,+5.000,Peer,TS1 TS2,N9OIG,,1,ChicagoLand
315512,N3IVK,Portage,Wisconsin,United States,444.07500,8,+5.000,Master,TS1 TS2,N3IVK,,1,DMR-MARC
315513,KC9UHI,Little Chute,Wisconsin,United States,447.80000,6,-5.000,Peer,TS1 TS2,KC9UHI,,0,KC9UHI
-315514,WB9COW,Kenosha,Wisconsin,United States,442.84375,9,+5.000,Peer,TS1 TS2,WB9COW,,1,Chicagoland
+315514,WB9COW,Elkhorn,Wisconsin,United States,442.84375,9,+5.000,Peer,TS1 TS2,WB9COW,,1,Chicagoland
315515,N9DKH,Green Bay,Wisconsin,United States,442.83125,6,+5.000,Peer,TS1 TS2,KC9UHI,Time Slot #1- Group Call 3 = North America (PTT Activated)
Time Slot #1 - Group Call 13 = Worldwide English
Time Slot #1 - Group Call 100= Tech Talk
Time Slot #1- Group Call 113 = UA 113 (PTT Activated)
Time Slot #1- Group Call 3169 = Midwest Regional
Time Slot #1- Group Call 9999 = Audio Test (PTT Activated)
Time Slot #2 - Group Call 2 = Tri-State Local

Coverage Map: http://dmr-marc.net/images/n9dkh-coverage.jpg

You Must Have [ARS] Disabled Within Your Radio



Contact Name: Matt, KC9UHI
Email: kc9uhi@gmail,com
Website:,1,DMR-MARC
315516,N9OIG,Waterford,Wisconsin,United States,440.76875,4,+5.000,Peer,TS1 TS2,N9OIG,Kevin, N9OIG
Email: n9oig@wi.net
Website: http://chicagoland-cc.org,1,Chicagoland
315517,W9PFP,Park Falls,Wisconsin,United States,444.45000,1,+5.000,None,None,N9MUH,,0,wisconsin
@@ -2576,6 +2599,7 @@ 334303,XE3RCM,Merida,Yucatan,Mexico,439.92500,1,-5.000,Peer,TS1 TS2,XE3YZ,Time Slot #1 - Group Call 1 = Worldwide Calling (PTT activation, 2min limit)
Time Slot #1 - Group Call 14 = Spanish Worldwide
Time Slot #2 - Group Call 222 = Local Cancun
Time Slot #2 - Group Call 334 Mexico

You Must Have [ARS] Disabled Within Your Radio


Contact Name: Jorge Carlos, XE3YZEmail: xe3yz@icloud.com,1,DMR-MARC
334304,XE3RA,CANCUN,Quintana Roo,Mexico,439.92500,1,-5.000,Peer,TS1 TS2,XE3RA,,0,BRANDMEISTER
334401,XE1GXW,Guadalajara,all others,Mexico,146.76000,1,-0.600,Peer,TS1 TS2,XE1GXW,Time Slot #1 - Group Call 1 = Worldwide Calling (PTT activation, 2min limit)
Time Slot #1 - Group Call 14 = Spanish Worldwide
Time Slot #2 - Group Call 2 = Local Site
Time Slot #2 - Group Call 334 = Mexico

You Must Have [ARS] Disabled Within Your Radio

Contact Name: Jorge, XE1GXW
Email: xe1gxw@gmail.com,1,DMR-MARC
+362001,PJ2R,Willemstad,Curaco,Netherlands Antilles,146.76000,1,-0.600,Master,TS1 TS2,PJ2BR,,1,DMR-MARC
370100,HI8RCD,Santo Domingo,Distrito Nacional,Dominican Republic,447.00000,1,-5.000,Peer,TS1 TS2,HI8RCD,Time Slot #1 - Group Call 1 = Worldwide Calling (PTT activation, 2min limit)
Time Slot #1 - Group Call 13 = English Worldwide (PTT activation)
Time Slot #1 - Group Call 14 = Spanish Worldwide
Time Slot #2 - Group Call 370- Dominican Republic,1,DMR-MARC
370801,HI8RCD,Bani,Peravia,Dominican Republic,447.02500,2,-5.000,Peer,TS1 TS2,HI8RCD,Time Slot #1 - Group Call 1 = Worldwide Calling (PTT activation, 2min limit)
Time Slot #1 - Group Call 13 = English Worldwide (PTT activation)
Time Slot #1 - Group Call 14 = Spanish Worldwide
Time Slot #2 - Group Call 370- Dominican Republic,1,DMR-MARC
425201,4X4R70,Tel Aviv,Tel Aviv,Israel,438.65000,1,-7.600,Master,Mixed Mode,4X1HF,4X4R70 438.650 -7.6 MHz, Color Code 1,1,SF-TRBO
@@ -2614,10 +2638,11 @@ 505402,VK4RTQ,Toowoomba / Darling ,Queensland,Australia,439.48750,1,-5.000,Peer,TS1 TS2,VK4QF,Time Slot#1 - Group Call 1 = WW Calling
Time Slot#1 - Group Call 13 = WW English
Time Slot#1 - Group Call 113= UA English 1
Time Slot#1 - Group Call 123= UA English 2
Time Slot#2- Group Call 5 = VK/ZL Regional

You Must Have [ARS] Disabled Within Your Radio

Contact: VK4QF
Email: vk4qf@outlook.com.au,1,VK-DMR
505403,VK4RCN,MANOORA,Queensland,Australia,438.32500,1,-5.400,None,TS1 TS2,VK4AA,,0,BrandMeister
505404,VK4DU,Cairns,Queensland,Australia,438.02500,1,-7.000,Peer,TS1 TS2,VK4DU,Time Slot#1 - Group Call 1 = Worldwide Calling (2 min max)
Time Slot#1 - Group Call 13 = Worldwide English
Time Slot#1 - Group Call 113= UA English 1
Time Slot#1 - Group Call 123= UA English 2
Time Slot#1 - Group Call 100 = Tech Talk
Time Slot#2- Group Call 5 = VK/ZL Regional

You Must Have [ARS] Disabled Within Your Radio.

Contact: Glenn Dunstan, VK4DU
Email: glenn@gmdss.net,1,VK-DMR
-505405,VK4TUX,Laidley Heights,Queensland,Australia,435.00000,1,+10.000,Peer,TS1 TS2,VK4TUX,,0,None
+505405,VK4TUX,Laidley Heights,Queensland,Australia,438.05000,1,0.4,Peer,TS1 TS2,VK4TUX,,0,None
505407,VK4REG,Mount Mowbullan,Queensland,Australia,439.98750,1,-5.000,Peer,TS1 TS2,VK4QF,Time Slot#1 - Group Call 1 = WW Calling
Time Slot#1 - Group Call 13 = WW English
Time Slot#1 - Group Call 113= UA English 1
Time Slot#1 - Group Call 123= UA English 2
Time Slot#2- Group Call 5 = VK/ZL Regional

You Must Have [ARS] Disabled Within Your Radio

Contact: VK4QF
Email: vk4qf@outlook.com.au,1,VK-DMR
505408,VK4TCA,bracken ridge,Queensland,Australia,439.75000,1,-5.000,Peer,TS1 TS2,VK4TCA,,0,BrandMeister
505409,VK4TUB,townsville,Queensland,Australia,147.50000,1,-0.600,Peer,TS1 TS2,VK4TUB,,0,Brandmeister
+505410,VK4RBX,Ipswich,Queensland,Australia,438.83750,1,-7.000,Peer,TS1 TS2,VK4QF,,1,VK-DMR
505501,VK5REX,PORT LINCOLN,South Australia,Australia,438.26250,1,-5.400,None,TS1 TS2,VK5ZEA,,0,Brandmeister
505502,VK5RSF,Adelaide,South Australia,Australia,438.83750,1,-7.000,Peer,TS1 TS2,VK4QF,Time Slot #1 - Group Call 1 = Worldwide Calling (2 min max)
Time Slot #1 - Group Call 13 = Worldwide English
Time Slot #1 - Group Call 100 = Tech Talk
Time Slot #1 - Group Call 113= UA English 1
Time Slot #1 - Group Call 123= UA English 2
Time Slot #2- Group Call 5 = VK/ZL Regional

You Must Have [ARS] Disabled Within Your Radio.,1,VK-DMR
505600,VK6RRR,Perth,Western Australia,Australia,438.20000,1,-5.400,Peer,TS1 TS2,VK6ZTN,Time Slot #1 - Group Call 1 = Worldwide Calling (2 min max)
Time Slot #1 - Group Call 13 = Worldwide English
Time Slot #1 - Group Call 100 = Tech Talk
Time Slot #1 - Group Call 113= UA English 1
Time Slot #1 - Group Call 123= UA English 2
Time Slot #2- Group Call 5 = VK/ZL Regional

You Must Have [ARS] Disabled Within Your Radio.

Contact: Joe Nevin, VK6ZTN
Email: joe.nevin@gmail.com,1,VK-DMR
@@ -2625,6 +2650,7 @@ 505602,VK6AG,PERTH,Western Australia,Australia,438.20000,1,-5.400,Peer,TS1 TS2,VK6AG,,1,VK-DMR
505701,VK7RCR,hobart,Tasmania,Australia,438.52500,10,-5.000,Master,Mixed Mode,VK7ZCR,,0,10.0.0.0
505702,VK7RAA,Launceston,Tasmania,Australia,438.60000,1,-7.000,Peer,TS1 TS2,VK7JD,Time Slot#1 - Group Call 1 = Worldwide Calling (2 min max)
Time Slot#1 - Group Call 13 = Worldwide English
Time Slot#1 - Group Call 113= UA English 1
Time Slot#1 - Group Call 123= UA English 2
Time Slot#1 - Group Call 100 = Tech Talk
Time Slot#2- Group Call 5 = VK/ZL Regional

You Must Have [ARS] Disabled Within Your Radio.,1,VK-DMR
+505703,VK7RCR,hobart,Tasmania,Australia,438.52500,1,-5.000,Master,TS1 TS2,VK7ZCR,,0,TUBO
510001,YD0ZUB,Jakarta,,Indonesia,434.98000,1,0.000,Peer,TS1 TS2,YB0AZ,,0,None
530100,ZL1CCT,Hamilton,North Island 1,New Zealand,145.35000,12,-0.600,None,None,ZL1HN,Time Slot#1 - Group Call 1 = Worldwide Calling (2 min max)
Time Slot #1- Group Call 13 = Worldwide English
Time Slot #2- Group Call 5 = VK/ZL Regional

Contact: Brian, ZL1HN
Email: ZL1HN@xtra.co.nz,0,Hamilton
530101,ZL1UX,Hamilton,North Island 1,New Zealand,439.72500,1,-5.000,Peer,TS1 TS2,ZL1THG,Time Slot#1 - Group Call 1 = Worldwide Calling (2 min max)
Time Slot #1- Group Call 13 = Worldwide English
Time Slot #2- Group Call 5 = VK/ZL Regional

Contact: Tom, ZL1THG
Email: Tom.Bevan@looptechnologies.com,1,ZL-TRBO Hamilton
@@ -2702,6 +2728,7 @@ 730205,CE2VRP,La serena,Coquimbo,Chile,144.75000,1,-0.600,Peer,TS1 TS2,CE2VRP,,0,Brandmeister
730206,CE2SCP,Ovalle,Coquimbo,Chile,147.15000,1,+0.600,Peer,TS1 TS2,CE2SC,,0,brandmeister
730207,CE2KVL,Valparaíso,Valparaiso,Chile,145.50000,1,-0.600,Peer,TS1 TS2,CE2KVL,,0,brandmeister
+730208,CE2AA,Valparaiso,Valparaiso,Chile,146.60000,4,-0.600,Master,Mixed Mode,CE2AA,,0,1
730301,CE3PA,pte alto,Reg.Metr. de Santiago,Chile,147.39000,1,+0.600,Peer,TS1 TS2,CE3PA,,0,mixer
730302,CE3PA,pte alto,Reg.Metr. de Santiago,Chile,146.76000,1,-0.600,Peer,TS1 TS2,CE3CTF,,0,mixed
730303,CE3PA,Pte Alto,Reg.Metr. de Santiago,Chile,433.45000,1,+5.000,Peer,TS1 TS2,CE3CTF,,0,brandmeister
diff --git a/subscriber_ids.csv b/subscriber_ids.csv index 08e95a6..d877c48 100644 --- a/subscriber_ids.csv +++ b/subscriber_ids.csv @@ -280,7 +280,7 @@ 1112282,KA9ZRZ,Mike T Beers Beers,Drwho,Orlando,Florida,United States,DMR
1112283,KM4QNR,Richard C Perkins,Rick,Port Saint Lucie,Florida,United States,DMR
1112284,KM4RHC,Pedro Reyes,Pete,Miami,Florida,United States,DMR
-1112285,KM4WSQ,Gilberto A Rivera,Gilberto A,Miami Gardens,Florida,United States,DMR
+1112285,K4HPD,Gilberto A Rivera,Gilberto A,Miami Gardens,Florida,United States,DMR
1112286,KF4AVW,Thomas W Gruber,Tom,Satsuma,Florida,United States,DMR
1112287,KM4VYN,Joseph A Remllard,Joe,Boca Raton,Florida,United States,DMR
1112288,KB4QLL,Sidney S Allen,Sid,Merritt Island,Florida,United States,DMR
@@ -335,6 +335,28 @@ 1112338,KM4YJF,Kevin Schneider,,Lecanto,Florida,United States,DMR
1112339,N1FM,Thomas Whatley,,Boynton Beach,Florida,United States,DMR
1112340,K4ZAS,Dennis E Zasnicoff,Zasnicoff,Winter Garden,Florida,United States,Other
+1112341,KS4WA,Stephen C Elliott,,Valrico,Florida,United States,DMR
+1112342,N4SAR ,James Walters Walters,Jim,Pensacola,Florida,United States,DMR
+1112343,K4ZXR,Joel M Brigida,,West Palm Beach ,Florida,United States,DMR
+1112344,K9TUT,M Glenn Tuttle,,Punta Gorda,Florida,United States,DMR
+1112345,WS4K,Eric S Kennard,,Palm Bay,Florida,United States,DMR
+1112346,N3GLV,Jeff Kephart Kephart,,Daytona,Florida,United States,Other
+1112347,WB4BSA,Alexander T Shimp,Alex,Largo,Florida,United States,DMR
+1112348,AI4L,Larry A Mann,,Miami,Florida,United States,DMR
+1112349,N4HBM,Harry B Morton Morton Iii,Macgyver,Titusville,Florida,United States,DMR
+1112350,KM4WXH,Carole S Lemon,,Clermont,Florida,United States,DMR
+1112351,N1US,Brian P Thomas,,Lake Worth,Florida,United States,DMR
+1112352,KM4YLN,Andrew J Sclafani,,Weston,Florida,United States,DMR
+1112353,NU2B,Timothy A Lauer,,Vero Beach,Florida,United States,DMR
+1112354,KN2D,Kenneth Countess,,Longwood,Florida,United States,DMR
+1112355,KM4DIF,Bernard J Doherty,Greygost,Boynton Beach,Florida,United States,DMR
+1112356,KM4YNL,Michael Girard,Mike,Apopka,Florida,United States,DMR
+1112357,WZ4SKY,David Bankston,,Naples,Florida,United States,DMR
+1112358,N9AMI,John C Mc Grath,,Weston,Florida,United States,DMR
+1112359,KK4EXX,Richard K Mullennex,Dick,North Port,Florida,United States,DMR
+1112360,WB4YUC,Bruce A Burke,,N. Lausderdale,Florida,United States,DMR
+1112361,K2BWA,Paul Greenberg,,West Palm Beach,Florida,United States,DMR
+1112362,KK4KOQ,Charles B Hall,,Orlando,Florida,United States,Other
1136001,K2FPC,Antonio Lipari,Tony,Champlain,New York,United States,DMR
1136002,KB2JM,James S Meahl,Jim,Lockport,New York,United States,DMR
1136003,K2BRT,Paul Polischuk,,New Windsor,New York,United States,DMR
@@ -420,7 +442,6 @@ 1136084,KD2INX,Robert H Wittkowski,,West Hampton,New York,United States,DMR
1136085,K2RSB,Robert S Brennen,,Pearl River,New York,United States,DMR
1136086,WA2KLP,Barry C Thompson,,Hillsdale,New York,United States,DMR
-1136087,N2FWR,John R La Sala,,Floral Park,New York,United States,DMR
1136088,WN2Y,Francis E Johnson,,Poughkeepsie,New York,United States,DMR
1136089,KC2QHV,Michael W Renz,Cryptographrix,Long Island City,New York,United States,DMR
1136090,N2MHZ,Ryan C Hubbard,,Mastic,New York,United States,DMR
@@ -452,6 +473,25 @@ 1136116,KB2VVD,David Dallessandro Dallessandro,,Tonawanda,New York,United States,DMR
1136117,W2LMT,Lee M Trudeau,,North Bangor ,New York,United States,DMR
1136118,KB2VVD,David M Dallessandro,,Tonawanda,New York,United States,DMR
+1136119,W2PJS,Philip J. Simonis Simonis,,Fishkill,New York,United States,DMR
+1136120,KD2LTR,Robert S Kerman,,Brooklyn,New York,United States,DMR
+1136121,N2QLW,Sungsik Lee,James,New York,New York,United States,DMR
+1136122,N2LEA,Douglas F Maset,Doug,Newburgh,New York,United States,DMR
+1136123,K2INC,Craig Lido,Inc,Peekskill,New York,United States,DMR
+1136124,N2JZB,Robert J Cilino,,Bath,New York,United States,DMR
+1136125,KD2AKU,Joseph T Apuzzo,Joe,Staatsburg,New York,United States,DMR
+1136126,K2NET,Rafael E Bernabe,Ray,New Windsor,New York,United States,DMR
+1136127,KD2LWB,Mark Barbaro,,Lockport,New York,United States,DMR
+1136128,KD2KON,Keith P Oliver,,Lyndonville ,New York,United States,DMR
+1136129,KD2LRJ,Timothy L Foster,Hangman,Niagara Falls,New York,United States,DMR
+1136130,K2RHK,Alan H Rose,,New York,New York,United States,DMR
+1136131,N2NTX,Jeffrey D Grey,,Hyde Park,New York,United States,DMR
+1136132,KD2LWB,Mark Barbaro,,Lockport,New York,United States,DMR
+1136134,N2WNU,Jamieson D Provan,Spare 2,Brooklyn,New York,United States,DMR
+1136135,N2MCI,Peter A Dziomba,Pete,Kingston,New York,United States,DMR
+1136137,KC2WJD,Josue Vigo,,Bronx,New York,United States,DMR
+1136138,KC2WJD,Josue Vigo,,Bronx,New York,United States,DMR
+1136139,N2YGK,Alan Crosswell Crosswell,Alan,Briarcliff Manor,New York,United States,DMR
1137001,K4SWL,Thomas H Witherspoon,Thomas,Swannanoa,North Carolina,United States,DMR
1137002,KK4RKU,Glenn A Allison,Allen,Canton,North Carolina,United States,DMR
1137003,KM4IOU,Marty D Bumgarner,Marty,Granite Falls,North Carolina,United States,DMR
@@ -768,6 +808,16 @@ 1137317,KA4CMT,Charles F Mc Manus,Charlie,Maiden,North Carolina,United States,DMR
1137318,AJ4JZ,William L Stevenson,Bill,Belmont,North Carolina,United States,DMR
1137319,AG0R,Gerald D Rankin,Gerald,Lowell,North Carolina,United States,DMR
+1137321,WB2MHJ,Paul R Otto,,Pinnacle,North Carolina,United States,DMR
+1137322,KM4VZA ,Kenneth H Rhodes,Ken,Asheboro ,North Carolina,United States,DMR
+1137323,W4FOY,Foy F Flowers,,Greensboro,North Carolina,United States,DMR
+1137324,KM4UBT,George R Jones,George,Beaufort,North Carolina,United States,DMR
+1137325,N4YR,Jimmy W Johnson,,Advance,North Carolina,United States,DMR
+1137326,N4AMP,James F Boyd,Frank,Greensboro,North Carolina,United States,DMR
+1137327,K4VFD,Steven P Cashion,,Fuquay-Varina,North Carolina,United States,DMR
+1137328,N4KON,Anthony V Poleo,,Providence,North Carolina,United States,DMR
+1137329,KJ4BDZ,Kenneth F Shields,,Wallace,North Carolina,United States,DMR
+1137330,KE4ZUN,James L Tesseneer,Jim,Shelby,North Carolina,United States,DMR
2021001,SV1BYK,Babis Kappatos,Babis,Athens,Attica,Greece,
2021002,SV1PDW,Ioannis Barbat-Soskos,Ioannis,Athens,Attica,Greece,
2021003,SV1IW,Manos Darkadakis,Manos,Athens,Attica,Greece,
@@ -1694,7 +1744,7 @@ 2046025,PD0KHN,Martin ,Martin,Arnhem,Gelderland,Netherlands,Mobile
2046026,PD0CHF,Berry ,Berry,Apeldoorn,Gelderland,Netherlands,Portable
2046027,PA3ASW,Wim ,Wim,Nijmegen,Gelderland,Netherlands,Portable
-2046028,PA3THE,Theo ,Theo,Zetten,Gelderland,Netherlands,Mobile
+2046028,PA3THE,Theo ,Theo,Zetten,,Netherlands,
2046029,PE1MEW,Remko ,Remko,Apeldoorn,Gelderland,Netherlands,Portable
2046030,PA3BAS,Bastiaan ,Bastiaan,Velp,Gelderland,Netherlands,Mobile
2046031,PE2CVF,Roel ,Roel,Arnhem,Gelderland,Netherlands,Mobile
@@ -1713,7 +1763,7 @@ 2046044,PA0VIC,Vic ,Vic,Lent,Gelderland,Netherlands,Mobile
2046045,PA3CPH,Ton ,Ton,Zevenaar,Gelderland,Netherlands,Mobile
2046046,PE2CVF,Roel ,Roel,Arnhem,Gelderland,Netherlands,Portable
-2046047,PD0JX,Jan ,Jan,Arnhem,Gelderland,Netherlands,Portable
+2046047,PD0JX,Jan ,Jan,Arnhem,,Netherlands,
2046048,PA1RBZ,Cil Hubertse,Cil,Ermelo,Gelderland,Netherlands,
2046049,PA3CDM,Lex Kuper,Lex,Apeldoorn,Gelderland,Netherlands,
2046050,PE1ROG,Karl-Heinz Knauf,Karl-Heinz,S-Heerenberg,Gelderland,Netherlands,
@@ -1900,7 +1950,7 @@ 2047077,PD1S,Erik Lamboo,Erik,Enschede,Overijssel,Netherlands,
2047078,PA4NL,Jasper Rijnsburger,Jasper,Zwolle,Overijssel,Netherlands,
2047079,PA3EYF,Theo Kok,Theo,Lelystad,Flevoland,Netherlands,
-2047080,PC2KY,Henry Bolster,Henry,Hengelo,Overijssel,Netherlands,
+2047080,PB0H,Henry Bolster,Henry,Hengelo,Overijssel,Netherlands,
2047081,PA4NL,Jasper Rijnsburger,Jasper,Zwolle,Overijssel,Netherlands,
2047082,PD7HJ,Henkjan Kienhuis,Henkjan,Dedemsvaart,Overijssel,Netherlands,
2047083,PD1WBS,Marco Zwiers,Marco,Nijverdal,Overijssel,Netherlands,
@@ -2007,7 +2057,7 @@ 2048026,PA4DEN,Dennis ,Dennis,Boijl,Friesland,Netherlands,Portable
2048027,PA3GET,Gert ,Gert,Groningen,Groningen,Netherlands,Portable
2048028,PA4TJ,Teun ,Teun,Emmen,Drenthe,Netherlands,
-2048029,PA2HH,Henri Hendriksen,Henri,Nieuw Amsterdam,Drenthe,Netherlands,Portable
+2048029,PH0H,Henri Hendriksen,Henri,Nieuw Amsterdam,,Netherlands,
2048030,PA3DIW,Gerben ,Gerben,Drachten,Friesland,Netherlands,Portable
2048031,PD0CER, Ron,,Borger,,Netherlands,
2048032,PA1HVD,Henk Van Drooge,Henk,Wijckel,Friesland,Netherlands,
@@ -2130,6 +2180,7 @@ 2048149,PD0BOB,Bob Van der Wal,Bob,Leeuwarden,Frysland,Netherlands,
2048150,PA3ABG,Paul Kolenbrander,Paul,Roden,Drenthe,Netherlands,
2048151,PD1JA,Jacob Van der Molen,Jacob,Groningen,Groningen,Netherlands,
+2048154,PD0AM,Peter ,,Visvliet,Groningen,Netherlands,
2060001,ON4AIM,Aime ,Aime,Oostende,West-Vlaanderen,Belgium,Portable
2060002,ON3AN,Ann ,Ann,Oostende,West-Vlaanderen,Belgium,Portable
2060003,ON2WIK,Marc ,Marc,Oostende,West-Vlaanderen,Belgium,Portable
@@ -3652,6 +3703,7 @@ 2141223,EB1ERD,Eva Colloto Herrera,Eva,Oviedo,Asturias,Spain,
2141224,EA1GCZ,Andres Arranz Garcia,Andres Arranz,Aviles,Asturias,Spain,
2141225,EA1ESO,Rafael Correa Fernandez,Rafa,Coto Carcedo,cnty,Spain,
+2141228,EA1FZ,JUAN ,,Logroo,La Rioja,Spain,
2142001,EA2IP,Jesus ,Jesus,Sestao,Basque Country,Spain,
2142002,EA2IV,Alex BONILLO,Alex,Huesca,Aragon,Spain,
2142003,EA2FT,Juan Angel De la Fuente Mata,Juan Angel,Zaragoza,Aragun,Spain,
@@ -3790,6 +3842,9 @@ 2142136,EB2DYG,Andoni Maizkurrena,Andoni,Bilbao,Pais Vasco,Spain,
2142137,EA2DFS,ESTER AROCENA,EA2DFS,ARANAZ,Navarra,Spain,
2142138,EA2EKQ,ALEX GONZALEZ,ALILLO,PORTUGALETE,Pais Vasco,Spain,
+2142142,EA2DOW,Felix ,,Bilbao,Pais Vasco,Spain,
+2142143,EA2AF,Roberto ,EA2AF,Elgoibar,Pais Vasco,Spain,
+2142144,EB2KX,Alfredo ,,Sestao,cnty,Spain,
2143001,EA3DKP,Ricardo ,Ricardo,Roses,Girona,Spain,Portable #1
2143002,EA3DKP,Ricardo ,Ricardo,Roses,Girona,Spain,Portable #2
2143003,EA3DKP,Ricardo ,Ricardo,Roses,Girona,Spain,Portable #3
@@ -3986,6 +4041,9 @@ 2143194,EA3AMI,Juan Adria,Juan,Barcelona,Cataluna,Spain,
2143195,EA3GCU,Julio Soriano,Julio,Barcelona,Cataluna,Spain,
2143196,EA3EE,TONI VICO,TONI VICO,Sant Vicen dels Hort,Cataluna,Spain,
+2143198,EA3GWC,Jos Luis ,,Badalona,Cataluna,Spain,
+2143199,EB3CUZ,Juan ,,Montgat,Cataluna,Spain,
+2143200,EA3HTM,Paya ,,Barcelona,Cataluna,Spain,
2144001,EA5IIO,ANTONIO ,,Albacete,Castile-La Mancha,Spain,
2144002,EA4GQW,Pablo Cortes,Pablo,Madrid,Community of Madrid,Spain,
2144003,EA4AAE,Javier Coso,Javier,Madrid,Community of Madrid,Spain,
@@ -4127,6 +4185,11 @@ 2144139,EA4GFC,Santiago Dominguez,Cosme,San lorenzo del esco,excluding Albacete,Spain,
2144140,EA4GUY,JOSE LUIS LOPEZ IBARRA,JOSE LUIS,PARACUELLOS DE JARAM,excluding Albacete,Spain,
2144141,EA4GSL,Luciano Rubio,Lucas,Madrid,excluding Albacete,Spain,
+2144142,EA4IV,MIGUEL ANGEL ,,MADRID,excluding Albacete,Spain,
+2144143,EA4RCR,REM ,REM,MADRID,excluding Albacete,Spain,
+2144144,ED4YAO,Miguel ,,Plasencia,excluding Albacete,Spain,
+2144145,EA4GUK,Oscar ,,Madrid,excluding Albacete,Spain,
+2144151,EA4DGY,Jesus ,,Mostoles,excluding Albacete,Spain,
2145001,EA5AWM,Vicente ,Vicente,Valencia,Valencia,Spain,Mobile
2145002,EA5AWM,Vicente ,Vicente,Valencia,Valencia,Spain,Portable
2145003,EA5HJX,Alex ,Alex,Valencia,Valencia,Spain,Mobile
@@ -4257,6 +4320,7 @@ 2145128,EA5SW,Jose Lopez,EA5SW,Valencia,Valencia,Spain,
2145129,EA5IDR,FRANCISCO JOSE PEaeAS PERAN,FRANCISCO JOSE,ALHAMA DE MURCIA,Murcia,Spain,
2145130,EA5URB,Ea5urb U.R.B,EA5URB,Benidorm,Valencia,Spain,
+2145131,EA5IHR,Alfredo ,,Valencia,Valencia,Spain,
2146001,EA6AFZ,Antonio Lopez,Antonio,Inca,Islas Baleares,Spain,
2146002,EA6AID,Ana Macian,Ana,Inca,Islas Baleares,Spain,
2146003,EA6AFZ,Antonio Lopez Segade,Antonio,Inca,Islas Baleares,Spain,
@@ -4393,6 +4457,11 @@ 2147117,EA7ALP,Alfonso Manuel Delgado Lozano,Ea7alp,Sevilla,Andalucia,Spain,
2147118,EB7EZC,Antonio Pelaez,Antonio,Caleta de Velez,Andalucia,Spain,
2147119,EA7HGL,Antonio Domingo Reina Garfia,ADRG,Mairena del Aljarafe,Andalucia,Spain,
+2147122,EA7HQG,David ,,Espartinas,Andalucia,Spain,
+2147123,EA7IPF,Arboladas ,,Linares Jaen,Andalucia,Spain,
+2147124,EA7GS,Arboladas ,,Linares Jaen,Andalucia,Spain,
+2147125,EA7FYX,Entrenas ,,Linares Jaen,Andalucia,Spain,
+2147126,EA7HFY,Antonio ,,El Alquian (Almera),Andalucia,Spain,
2148001,EA8YAT,Alfred ,Alfred,Las Palmas,Islas Canarias,Spain,Portable
2148002,EA8EE,Jose ,Jose,Las Palmas,Islas Canarias,Spain,
2148003,EA8EE,Jose Manuel Martinez,Jose Manuel,Las Palmas,Islas Canarias,Spain,
@@ -5006,6 +5075,8 @@ 2220363,I0LYL,Lucio Perrone,ILYL,Pomezia,Lazio,Italy,
2220364,IZ0WLI,BENVENUTI FRANCO,BENVENUTI,ROMA,Lazio,Italy,
2220365,IW0DVV,Mariano ,,Civitavecchia,Lazio,Italy,
+2220366,IZ0YCA,SANDRO ,,ROMA,Lazio,Italy,
+2220367,IZ0UUP,VITTORIO ,,SantAngelo Romano,Lazio,Italy,
2220900,IW0UIF,Natale ,Natale,Oristano,Sardinia,Italy,Mobile
2220901,IS0XDA,Gianni ,Gianni,Sinnai,Sardinia,Italy,Mobile
2220902,IS0AYI,Paolo ,Paolo,Cagliari,Sardinia,Italy,Mobile
@@ -5317,6 +5388,10 @@ 2221296,IW1EYZ,P Paolo CARPINELLI,IW1EYZ,Genova,Liguria,Italy,
2221297,IZ1VWE,Dario Occhiogrosso,Iz1vwe,Genova,Liguria,Italy,
2221298,IK1TAQ,Benazzo ,,Alessandria,cnty,Italy,
+2221299,IK1JMJ,CARLO ,,Torino,Piedmont,Italy,
+2221300,IU1HIJ,Stefano ,,Turin,Piedmont,Italy,
+2221301,IZ1TMF,Cech ,,Trana,Piedmont,Italy,
+2221302,IK1ASR,Enrico ,,RAPALLO,Liguria,Italy,
2222001,IW2DCK,Germano ,Germano,Capriate San Gervasi,Lombardy,Italy,Portable
2222002,IW2BCF,Roberto ,Roberto,Milano,Lombardy,Italy,Mobile
2222003,IZ2JGB,Giorgio ,Giorgio,Legano,Lombardy,Italy,Portable
@@ -5768,6 +5843,12 @@ 2222450,IZ2QEJ,Paolo ,,Milano,Lombardy,Italy,
2222451,IZ2SRS,Federico Paolo ,,Milano,Lombardy,Italy,
2222452,IZ2YWI,Marco ,,Oggiono,Lombardy,Italy,
+2222453,IK2WPO,Mauro ,,Mandello Del Lario,Lombardy,Italy,
+2222454,IW2ETV,Giancarlo ,,Voghera,Lombardy,Italy,
+2222455,IW2FCH,ANTONIO ,,Brescia,Lombardy,Italy,
+2222456,IZ2LPI,Maurizio ,,Vignate,Lombardy,Italy,
+2222457,IW2NGW,Diego ,,Seveso,Lombardy,Italy,
+2222458,IU2HUQ,Claudio ,,Milano,Lombardy,Italy,
2223001,IW3SRH,Stefano ,Stefano,Trieste,Friuli-Venetia Giuli,Italy,Portable
2223002,IV3DVE,Corrado ,Corrado,Trieste,Friuli-Venetia Giuli,Italy,Portable
2223003,IV3FHS,Antonio ,Antonio,Latisana,Friuli-Venetia Giuli,Italy,Portable
@@ -6114,11 +6195,19 @@ 2223345,IK3PDD,Umberto Querenghi,IK3PDD,Verona,cnty,Italy,
2223346,IU3BUW,PAOLO ,,SCORZE,Veneto,Italy,
2223347,IK3FXC,Giuseppe Luciano ,,Pozzoleone,Veneto,Italy,
+2223348,IV3EVJ,Paolo ,,S.daniele del Friuli,Friuli-Venezia Giuli,Italy,
+2223349,I3SWR,Renzo ,,Treviso,Veneto,Italy,
+2223350,IZ3RCE,ANTONIO ,,TREVISO,Veneto,Italy,
+2223351,IW3IIK,GENNARO ,,NOALE,cnty,Italy,
+2223352,IK3UBQ,Maielli ,,Santa Margherita dAd,Veneto,Italy,
+2223354,IZ3AWU,Carlo ,,Due Carrare,Veneto,Italy,
+2223356,IZ3ZVO,Ettorearra ,,Belluno,Veneto,Italy,
+2223357,IU3BRB,Alberto ,,San Vendemiano,Veneto,Italy,
2224001,IZ4RDT,Monica ,Monica,Piacenza,Emilia-Romagna,Italy,Mobile
2224002,IZ4YEP,Alex ,Alex,Piacenza,Emilia-Romagna,Italy,Mobile
2224003,IW4BVN,Paolo ,Paolo,Salsomaggiore Terme,Emilia-Romagna,Italy,Portable
2224004,IK4UPB,Gabriele ,Gabriele,Castelfranco Emilia,Emilia-Romagna,Italy,Portable
-2224005,IZ4HBZ,Stefano ,Stefano,Castelfranco Emilia,Emilia-Romagna,Italy,Portable
+2224005,IZ4HBZ,Stefano ,Stefano,Castelfranco Emilia,,Italy,
2224006,IZ4VUG,Andrea Pezzella,Andrea,Bologna,Emilia-Romagna,Italy,
2224007,IW4EJU,Mattia Verucchi,Mattia,Modena,Emilia-Romagna,Italy,
2224008,IW4ELL,Dario Guidetti,Dario,Castelnovo ne Monti,Emilia-Romagna,Italy,
@@ -6266,6 +6355,10 @@ 2224150,I4KYO,Giorgio Cavicchioli,Giocav,Carpi,Emilia-Romagna,Italy,
2224151,IU4HMZ,Massimiliano Fiorillo,Massimiliano,FERRARA,Emilia-Romagna,Italy,
2224152,IU4AOY,Davide Piazzi,Dade81fe (Iu4aoy),Ferrara,Emilia-Romagna,Italy,
+2224153,I4YH,Massimo ,,Ferrara,Emilia-Romagna,Italy,
+2224154,I4JXE,Gabriele ,,Ferrara,Emilia-Romagna,Italy,
+2224155,IW4DLP,Girolamo ,,Bondeno,Emilia-Romagna,Italy,
+2224156,IZ4TNS,Loris ,,Bologna,Emilia-Romagna,Italy,
2225001,IZ5IOM,Renzo ,Renzo,Quarrata,Tuscany,Italy,Portable
2225002,IZ5HRO,Emanuele ,Emanuele,Pistoia,Tuscany,Italy,Portable
2225003,IZ5YLV,Valentina ,Valentina,Pistoia,Tuscany,Italy,Portable
@@ -6397,6 +6490,11 @@ 2225129,IU5HIW,Nino Gualdoni,Moooose,Castelnuovo berarden,Tuscany,Italy,
2225130,IU5HTN,Paolo Pasquali,IU5HTN,Lastra a signa,Tuscany,Italy,
2225131,IK5QQB,Riccardo Attina,IK5QQB,Monsummano Terme,Tuscany,Italy,
+2225132,IZ5UHD,Daniele ,,Vaiano-Valbisenzio,Tuscany,Italy,
+2225133,IZ5VUA,Damiano ,,Quarrata (PT),Tuscany,Italy,
+2225134,I5WCV,Emidio ,,Viareggio,Tuscany,Italy,
+2225135,IZ5QRH,STEFANO ,,SCANSANO,Tuscany,Italy,
+2225136,IU5HIB,Riccardo ,,PISA,Tuscany,Italy,
2226001,IZ6FGP,Mario ,Mario,Ortona,Abruzzo,Italy,Portable
2226002,IK6TTE,Plinio ,Plinio,Casalbordino,Abruzzo,Italy,Portable
2226003,IZ6FGP,Mario ,Mario,Ortona,Abruzzo,Italy,Mobile
@@ -6692,6 +6790,10 @@ 2227122,IK7SEC,Alessandro Amedeo Bracciolini,Ik7sec,Triggiano - Bari,Apulia,Italy,
2227123,IW7DIG,Claudio Michele Liguori,Claudio Liguori,Neviano (LE),Apulia,Italy,
2227124,IU7GHD,Pasquale Chiappinelli,Lino,Bari,Apulia,Italy,
+2227125,IW7EGG,Vincenzo ,,Cassano delle Murge,Apulia,Italy,
+2227126,IK7XBH,Carmelo ,,Ostuni,cnty,Italy,
+2227127,IW7CQB,Pasquale ,,Taranto,Apulia,Italy,
+2227128,I8ZSE,Giorgio ,,Potenza,Basilicata,Italy,
2228001,IZ8IYJ,Nicola ,Nicola,Cosenza,Calabria,Italy,Portable
2228002,IW8XQP,Elio ,Elio,Isernia,Molise,Italy,Mobile
2228003,IZ8XSS,Federico ,Federico,Aversa,Campania,Italy,Mobile
@@ -6854,6 +6956,9 @@ 2228160,IZ8BXM,Roberto Pareto,Roberto,Santagapito,cnty,Italy,
2228162,IZ8WDZ,Giuseppe Conte,Peppe,S.nicola la strada (,cnty,Italy,
2228163,IZ8MBT,Claudio ,,Massa Lubrense,Campania,Italy,
+2228164,IK8MNV,GIUSEPPE ,,Giugliano in campani,Campania,Italy,
+2228165,IK8UHA,ANTONIO ,,Napoli,Campania,Italy,
+2228166,IZ8MRZ,Mario ,,Raviscanina,Campania,Italy,
2229001,IT9YFO,Andrea ,Andrea,Catania,Sicily,Italy,Mobile
2229002,IT9ZON,Francesco ,Francesco,Catania,Sicily,Italy,Mobile
2229003,IT9UUT,Salvo ,Salvo,Ispica,Sicily,Italy,Portable
@@ -7584,7 +7689,7 @@ 2286079,HB9OAB,Franco Borsa,Franco,Bellinzona,Zentralschweiz und T,Switzerland,
2286080,HB9OK,Radio Club Tera Radio Club Tera,Radio Club Tera,Vezia,Zentralschweiz und T,Switzerland,
2286081,HB9WCH,Daniel Schwoerer,Daniel,Eich,Zentralschweiz und T,Switzerland,
-2286082,HB9TSI,Andre Rieser,Andre,Goeschenen,Zentralschweiz und T,Switzerland,
+2286082,HB9TSI,Andre Rieser,Andre,Goeschenen,Zentralschweiz und Tessin,Switzerland,
2286083,HB9BQI,Rene Schmitt,Rene,Emmen,Zentralschweiz und T,Switzerland,
2286084,HB9EXG,Giulio Mondia,Giulio,Lugano,Zentralschweiz und T,Switzerland,
2286085,HB3YNS,Peppino Panarisi,Peppino,Rivera,Zentralschweiz und T,Switzerland,
@@ -8026,6 +8131,7 @@ 2311003,OM1EI,Marian Nagy,Marian,Bratislava,Bratislavsky,Slovakia,
2311004,OM1ADS,Dusan Sobotka,Dusan,Bratislava,Bratislavsky,Slovakia,
2311005,OM1ALV,Vladimir Janeba,Vladimir,Bratislava,Bratislavsky,Slovakia,
+2311006,OM1QQ,Marcel ,,Bratislava,Bratislavsky,Slovakia,
2312001,OM4TN,Rastislav Opatovsky,Rastislav,Trencianska Turna,Trenun Region,Slovakia,
2312002,OM4AVG,Mojmir Opatovsky,Mojmir,Trencianska Turna,Trenun Region,Slovakia,
2312003,OM4AJO,Juraj Cervenan,Juraj,Trencianska Turna,Trenun Region,Slovakia,
@@ -9047,7 +9153,7 @@ 2341287,G1JCC,Ian Jefferson,Ian,Luton,England,United Kingdom,
2341288,G0TIY,JOHN GULLIVER,Audiohead,Birmingham,England,United Kingdom,
2341289,M6GHJ,John Odonnell,John,Watford,England,United Kingdom,
-2341290,2E0XVX,Michael Lawrence,Mick,Market Harborough,England,United Kingdom,
+2341290,2E0XVX,Mick Lawrence,Mick,Market Harborough,England,United Kingdom,
2341291,M0NRD,Andrew Garratt,M0NRD,Newark-on-Trent,England,United Kingdom,
2341292,2E0DKO,Peter Taylor,Pete,Liverpool,England,United Kingdom,
2341293,M0VAT,Alan Rodgers,Bodge,Birmingham,England,United Kingdom,
@@ -10348,7 +10454,7 @@ 2342589,G7VRI,Jon ,,Glossop,England,United Kingdom,
2342590,G2DGB,George Short,George,Dorchester,England,United Kingdom,
2342591,M6TRW,Tom Wheatley,Tractor tom,Nottinghamshire,England,United Kingdom,
-2342592,2E0PDP,JOHN ,,COVENTRY,England,United Kingdom,
+2342592,G0BGD,Craig ,,March,England,United Kingdom,
2342593,G4CKS,DAVID FITZGERALD,DAVID,London,England,United Kingdom,
2342594,G0TNC,George Stephenson,G0TNC,Sittingbourne,England,United Kingdom,
2342595,G7RXG,Ken Butterfield,Ken,Derby,England,United Kingdom,
@@ -10358,26 +10464,35 @@ 2342599,2E0CQN,Barry Mcglynn,Baz349,Keighley,England,United Kingdom,
2342600,G1TYV,Martin Hallard,Martin,Dudley,England,United Kingdom,
2342601,G7SRI,Maurice Lowe,MLo,North Leverton,England,United Kingdom,
+2342602,G4OHB,Paul ,,Halesowen,England,United Kingdom,
2342603,M6MQL,Michael Boyle,Boylie,Middlesbrough,England,United Kingdom,
2342604,G4HDU,Barry Keal,Barry,Maghull,England,United Kingdom,
2342605,M0NCN,Michael Gillingham,Mike,Sheffield,England,United Kingdom,
2342606,M0RJE,Ray Edwards,Ray,Ruislip,England,United Kingdom,
-2342607,G0LHX,Harold ,,Bridgwater,England,United Kingdom,
+2342607,MB6IAL,Graham ,,Alnmouth,England,United Kingdom,
2342608,M6PIV,Stephane Urdy,Stef,Harrogate,England,United Kingdom,
2342609,MB6BH,R Langton,MB6BH,Birkenhead,England,United Kingdom,
2342610,G8AQH,Rodney Hine,Rod,Bradford,England,United Kingdom,
2342611,G0UTN,Steve Harrison,Steve,Nottingham,England,United Kingdom,
2342612,M6BFT,Philip Keirl,Philip,Wakefield,England,United Kingdom,
2342613,G7VZE,Padraic Cunniffe,Padraic,Harrow,England,United Kingdom,
+2342614,G7PDZ,Peter ,,Newark,England,United Kingdom,
+2342615,G8DXV,Howard ,,Brentwood,England,United Kingdom,
2342616,2E1SKY,Paul Staerck,SKY,Worksop,England,United Kingdom,
+2342617,2E0TKI,Roy ,,Walsaw,England,United Kingdom,
2342618,G6BD,Martin Farmer,Martin,Lincoln,England,United Kingdom,
2342619,G1WVS,Peter Gibson,Gibby,Daventry,England,United Kingdom,
+2342620,G0VRL,Paul ,,Hayling Island,England,United Kingdom,
2342621,M5ZAP,Andrew Morgan,Andy,Coventry,England,United Kingdom,
2342622,G7FSC,Keith John Davis,Keith John,Nuneaton,England,United Kingdom,
+2342623,G4YYB,Ernest ,,Hindley,England,United Kingdom,
2342624,G1ONV,Robert Bonar,Bob,Minehead,England,United Kingdom,
2342625,M0EBX,Matt Tween,Matt,Haslemere,England,United Kingdom,
2342626,G6VOV,Richard Leavold,Richard,North Walsham,England,United Kingdom,
+2342627,M6SLQ,Dale ,,Cashalton,England,United Kingdom,
+2342628,M3NYK,Kurt ,,Bognor,England,United Kingdom,
2342629,G4HZN,Terence Lockwood,Terry,Doncaster,England,United Kingdom,
+2342630,M3EOG,Carlson ,,Grimsby,England,United Kingdom,
2342632,M0GWI,Stephen Hill,Stephen,St Leonards on Sea,England,United Kingdom,
2342633,2E1PAW,Paul Woodward,Woody,Essex,England,United Kingdom,
2342634,2E1WEB,Christopher WEBB,Christopher,Cambridge,England,United Kingdom,
@@ -10436,6 +10551,26 @@ 2342693,G4FCN,Colin ,,Ipplepen,England,United Kingdom,
2342696,G4KXG,Ken ,,Kettering,England,United Kingdom,
2342697,G0CBM,Charles ,,Sutton on Sea,England,United Kingdom,
+2342698,G1IVG,Colin ,,Market Harborough,England,United Kingdom,
+2342699,2E0BXF,Peter ,,Hatfield,England,United Kingdom,
+2342700,M0BHN,Paul ,,Wolverhampton,England,United Kingdom,
+2342701,G2TO,James ,,Bury St Edmunds,England,United Kingdom,
+2342702,2E0CTO,James ,,Walkeringham,England,United Kingdom,
+2342703,2E1COD,BRIAN ,,OTLEY,England,United Kingdom,
+2342704,M6ERW,Ian ,,Chorley,England,United Kingdom,
+2342705,M0HOW,Daniel ,,Rye,England,United Kingdom,
+2342706,M6CIN,Robert ,,West Butterwick,England,United Kingdom,
+2342707,M6AUY,Mark ,,London,England,United Kingdom,
+2342708,G1IHL,Steve ,,Bristol,England,United Kingdom,
+2342709,M6EXH,Dan ,,Coventry,England,United Kingdom,
+2342710,M6LIP,Steven ,,BRIERLEY HILL,England,United Kingdom,
+2342711,G0HND,Anthony ,,High wycombe,England,United Kingdom,
+2342712,G1OAC,Anthony ,,Grimsby,England,United Kingdom,
+2342714,M3OTM,Owen ,,Peterlee,England,United Kingdom,
+2342715,2E0SER,Michelle ,,Suffolk,England,United Kingdom,
+2342716,M6GQR,JOHN ,,Nottingham,England,United Kingdom,
+2342717,G6RFL,Richard ,,Bradford,England,United Kingdom,
+2342718,G8CQH,Peter ,,Birmingham,England,United Kingdom,
2351001,G0PRF,John ,John,Huddersfield,West Yorkshire,United Kingdom,Portable
2351002,G0PRF,John Goodwin ,,Huddersfield,West Yorkshire,United Kingdom,Mobile
2351003,G7LWT,Darren ,Darren,Manchester,North West England,United Kingdom,Portable #1
@@ -12658,6 +12793,7 @@ 2353225,GW6UGD,David Pellegrini,Pelledr,Cardiff,Wales,United Kingdom,
2353226,GW1ATZ,Geoff Morris,Contest,Shotton,Wales,United Kingdom,
2353227,MW0WYN,Dulyn Davies,Dul,Blaenau Ffestiniog,Wales,United Kingdom,
+2353228,2W0CDZ,Paul ,,Cardiff,Wales,United Kingdom,
2353229,MC0IBI,Ashley Burns,TAFF VALE ARC,Merthyr tydfil,Wales,United Kingdom,
2353230,MW6EUK,Stephen Taylor,Stevo,Prestatyn,Wales,United Kingdom,
2353231,MW0VTK,John Martin,John,Tal Y Bont,Wales,United Kingdom,
@@ -13122,6 +13258,7 @@ 2355253,MI6HQS,William Mckenna,William,Larne,Northern Ireland,United Kingdom,
2355254,GI4SZW,Michael James Keenan,Seamus GI4SZW,Newry,Northern Ireland,United Kingdom,
2355256,GI0UTV,Ian Ross,Ian,Belfast,Northern Ireland,United Kingdom,
+2355258,GI6MTL,Mervyn ,,Craigavon,Northern Ireland,United Kingdom,
2356001,GD6XHG,Ed ,Ed,Douglas,Isle of Man,United Kingdom,Portable#1
2356002,GD6XHG,Ed ,Ed,Douglas,Isle of Man,United Kingdom,Portable#2
2356003,GD0NFN,John Butler,John,Isle of Man,Isle of Man,United Kingdom,
@@ -13232,6 +13369,7 @@ 2381075,OZ3DVM,Ole Andersen,Ole,Aalborg st,Nordjylland,Denmark,
2381076,OZ1FSI,Jens Groenfeldt,Greenbean,Frederikshavn,Nordjylland,Denmark,
2381077,OZ5PZ,Poul Rosenbeck,Poul,Nibe,Nordjylland,Denmark,
+2381078,OZ2JHT,Jens ,,Aalestrup,Nordjylland,Denmark,
2382001,OZ6C,Kim ,Kim,Silkeborg,Midtjylland,Denmark,
2382002,OZ1JN,Jesper ,Jesper,Aarhus,Midtjylland,Denmark,
2382003,OZ3HP,Hardy ,Hardy,Aarhus,Midtjylland,Denmark,
@@ -13333,6 +13471,7 @@ 2382099,OZ1FOJ,Hans Jensen,Hans,Holstebro,Midtjylland,Denmark,
2382100,OZ3KTE,Kim Espersen,Kim silkeborg,Silkeborg,Midtjylland,Denmark,
2382101,OZ3FTE,Finn Espersen,Oz3fte finn,Silkeborg,Midtjylland,Denmark,
+2382102,OZ3AGJ,Per ,,Viborg,Midtjylland,Denmark,
2383001,OZ1BM,Brian ,Brian,Odense,Syddanmark,Denmark,Portable
2383002,OZ1KFY,Christian ,Christian,Fredericia,Syddanmark,Denmark,
2383003,OZ3DM,Dennis ,Dennis,Haarby,Syddanmark,Denmark,
@@ -13479,9 +13618,10 @@ 2383144,OZ1SEB,Svend-Erik Buch,Svend-Erik,Middelfart,Syddanmark,Denmark,
2383145,OZ7FOC,Niels Rask,Niels,Nyborg,Syddanmark,Denmark,
2383146,OZ1LXW,Benny Kronborg,OZ1LXW,Kvrndrup,Syddanmark,Denmark,
-2383147,OZ1MIC,Michael ,,Frederiksberg,Hovedstaden,Denmark,
+2383147,OZ2LGD,Blondie ,,Vejle,Syddanmark,Denmark,
2383148,OZ4TE,Frank Tom Henriksen,Frank,Bogense,Syddanmark,Denmark,
2383149,OZ8OL,Ove Lundvald,Ove,Tommerup St.,Syddanmark,Denmark,
+2383150,OZ5ACC,Hans-Peter ,,Esbjerg,Syddanmark,Denmark,
2384001,OZ3MAJ,Martin ,Martin,Herlev,Hovestaden,Denmark,Portable
2384002,OZ3MAJ,Martin ,Martin,Herlev,Hovestaden,Denmark,Mobile
2384003,OZ1BZJ,Michael ,Michael,Sengeloese,Hovestaden,Denmark,Portable
@@ -14073,6 +14213,7 @@ 2400204,SM0YXI,Robert Lind,Rhl,Skogas,New York,Sweden,
2400205,SG0RPF,Uffe ,,Sigtuna,Stockholm Laen-B,Sweden,
2400206,SA0FBR,Fredrik ,,Stockholm,Stockholm City-A,Sweden,
+2400207,SM0JZT,Tilman ,,Kungsaengen,cnty,Sweden,
2401001,SM6UDU,Marcus ,,Uddevalla,Gotland-I,Sweden,
2402001,SA2CMY,Tomas Isaksson,Tomas,Lulea,Norrbotten,Sweden,
2402002,SA2BNO,Peter Larsson,Peter,Kiruna,Norrbotten County,Sweden,
@@ -14102,6 +14243,7 @@ 2402026,SA2CIR,Rickard Garvare,SA2CIR,Gammelstad,Norrbottens laen,Sweden,
2402027,SM2GCQ,Bert Larsson,SM2GCQ,LuleN,Norrbotten County,Sweden,
2402028,SA2BBU,Ulf Johansson,SA2BBU,Nordmaling,Vaesterbotten County,Sweden,
+2402029,SM2EJE,Sigvard ,,Kalix,Norrbotten-BD,Sweden,
2403001,SM3XZF,Fredrik ,Fredrik,Kilafors,Gaevleborg County,Sweden,
2403002,SA3BDE,Martin Starkman,Martin,Bollnas,Gavleborg County,Sweden,
2403003,SA3BPE,Henrik Persson,Henrik,Hudiksvall,Gavleborg County,Sweden,
@@ -14185,6 +14327,8 @@ 2403081,SA3BGC,Jan Eliasson,SA3BGC,Oernskoeldsvik,Vaesternorrland-Y,Sweden,
2403082,SA3ARQ,Martin Crowther,SA3ARQ,Gaevle,Gaevleborg-X,Sweden,
2403083,SM3WEO,Michael Jillebo,Micke,Gaevle,Gaevleborg-X,Sweden,
+2403084,SA3ADT,Roland ,,Sundsvall,Vaesternorrland-Y,Sweden,
+2403085,SA3CAT,Owe ,,Kvissleby,Vaesternorrland-Y,Sweden,
2404001,SM4XBL,Christopher ,Christopher,Borlange,Dalarnas Laen,Sweden,Portable
2404002,SM4WOA,Claes ,Claes,Borlange,Dalarnas Laen,Sweden,Portable
2404003,SM4WWO,Robert ,Robert,Insjoen,Dalarnas Laen,Sweden,Portable
@@ -14327,6 +14471,7 @@ 2405075,SM5TGV,Anders Svensson,Anders,Eskilstuna,Soedermanland-D,Sweden,
2405076,SA5SDR,Mikael Kuisma,Kuisma,Uppsala,Uppsala luon,Sweden,
2405077,SA5LKC,Joakim Lind,SA5LKC,KolmNrden,Oestergoetlands laen,Sweden,
+2405078,SG5TAH,Mats ,,Flen,Oestergoetland-E,Sweden,
2406001,SM6TKT,Claes ,Claes,Boras,Västergötland,Sweden,Portable#1
2406002,SM6TKT,Claes ,Claes,Boras,Västergötland,Sweden,Mobile#1
2406003,SA6BPC,Christian ,Christian,Boras,Västergötland,Sweden,Portable
@@ -14473,6 +14618,7 @@ 2406144,SA6CCZ,Niklas Goeransson,2080,Kungaelv,Goeteborg och Bohus-,Sweden,
2406145,SA6AUO,Joergen Andersson,Joergen,VNrgNrda,Aelvborg-P,Sweden,
2406146,SM6VZU,Mikael Karlander,Mikael,Trollhattan,cnty,Sweden,
+2406147,SA6BXM,Michael ,,Goeteborg,Goeteborg och Bohus-O,Sweden,
2407001,SM7URN,Patrik ,Patrik,Sölvesborg,Blekinge Laen,Sweden,Portable
2407002,SM7URN,Patrik ,Patrik,Sölvesborg,Blekinge Laen,Sweden,Mobile
2407003,SA7BRM,Robert ,Robert,Malmoe,Skane,Sweden,Portabel
@@ -14663,6 +14809,7 @@ 2407188,SG7IKJ,Ronny Strandh Strandh,Ronny,JO76DJ, Lonsboda,Skune County,Sweden,
2407189,SM7AWE,Leif Holst,SM7AWE,Simrishamn,Malmoehus-M,Sweden,
2407190,SA7LNK,Kasper ,,Naesum,Kristianstad-L,Sweden,
+2407191,SA7TOR,Tord ,,Ystad,Malmoehus-M,Sweden,
2420001,LA3RIA,Mushtaq ,Mushtaq,Oslo,Oslo,Norway,
2420002,LA1KP,Oivind ,Oivind,Oslo,Oslo,Norway,
2420003,LA4JL,Per Eftang,Per,Oslo,Oslo,Norway,
@@ -14914,6 +15061,7 @@ 2427013,LA4KRA,Geir Rosland,Geir,Spangereid,Vest-Agder,Norway,
2427014,LA4XOA,Rune Birketvedt,Rune,Lindesnes,Vest-Agder,Norway,
2427015,LA4YGA,Jerzy Trzcinski,Jurek,Kristiansand,Vest-Agder,Norway,
+2427016,LB7YE,Martin ,,Lillesand,Aust-Agder,Norway,
2428001,LA9CKA,Tom ,Tom,Sandefjord,Vestfold,Norway,Portable
2428002,LA9CKA,Tom ,Tom,Sandefjord,Vestfold,Norway,Mobile
2428003,LA8UU,Odd ,Odd,Sande,Vestfold,Norway,
@@ -15207,6 +15355,8 @@ 2443081,OH3KRH,Jari Leivo,Jari,Parola,Haeme,Finland,
2443082,OH3FLZ,Tuomas Mikkola,Tuomas,Forssa,Haeme,Finland,
2443083,OH2OP,Olli-Jukka Paloneva,Olli,Hollola,Haeme,Finland,
+2443084,OH3HPV,Keijo ,,Laengelmaeki,Haeme,Finland,
+2443085,OH8HZX,Janne ,,Tampere,Haeme,Finland,
2444001,OH4JP,Juha-Pekka Rantalainen,Juha-Pekka,Mikkeli,Mikkeli,Finland,
2444002,OH4EA,Vesa Kauppinen,Vesa,Naarajaervi,Mikkeli,Finland,
2444003,OH4TK,Tatyana Kauppinen,Tan,Naarajarvi,Mikkeli,Finland,
@@ -15373,6 +15523,7 @@ 2502010,R2DFR,Mikhail ,Mikhail,,,Russia,
2502011,R2DFR,Mikhail ,Mikhail,,,Russia,
2502018,R2ALJ,Vitaliy ,Vitaliy,,,Russia,
+2502024,RU2FAC,Imran ,Imran,,,Russia,
2502027,R2FAF,Valentin ,Valentin,,,Russia,
2503001,R3ABM,Artem ,Artem,,,Russia,
2503002,R3ABM,Artem ,Artem,,,Russia,
@@ -21948,6 +22099,7 @@ 2701127,LX4E,LARU EMC WG LARU,LARU EMC WG,Diekirch,,Luxemburg,
2701128,LX4E,LARU EMC WG LARU,LARU EMC WG,Diekirch,,Luxemburg,
2701129,LX4E,LARU EMC WG LARU,LARU EMC WG,Diekirch,,Luxemburg,
+2701130,LX4LARO,CIS ,CIS-Larochette,Larochette,,,
2720001,EI4EW,William Kelly,William,Dublin,,Ireland,
2720002,EI8JE,Richard Cullinan,Richard,Nenagh,,Ireland,
2720003,EI2ET,Manfred Lauterborn,Manfred,Galway,Galway,Ireland,
@@ -22108,6 +22260,8 @@ 3021006,VE1ZC,Ron Reashore,,Dartmouth,Nova Scotia,Canada,DMR
3021007,VE1CCC,Andrew Cornwall,,Sackville,Nova Scotia,Canada,DMR
3021008,VE1PJS,Peter Surette,,Truro,Nova Scotia,Canada,DMR
+3021009,VE1VOX,Dana Rushton,,Truro Heights,Nova Scotia,Canada,DMR
+3021010,VE1ER,David Chapman,,Truro,Nova Scotia,Canada,DMR
3022000,VA2XPR,CAN-TRBO .,CAN-TRBO,Montreal,Quebec,Canada,DMR
3022001,VA2TDF,Daniel Trillaud,,Montreal,Quebec,Canada,Portable
3022002,VE2NBZ,Eric Gauvin-dufour,,Trois-Rivires,Quebec,Canada,Portable
@@ -22437,6 +22591,11 @@ 3022331,VE2BIN,Eric Preston,,Montreal,Quebec,Canada,DMR
3022332,VA2PBI,Pierre Beaulieu,,Montreal,Quebec,Canada,DMR
3022333,VE2MDC,Michel C Dore,,Boucherville,Quebec,Canada,DMR
+3022334,VA2SIB,Sebastien Ruel,,La Prairie,Quebec,Canada,Other
+3022335,VE2PAL,Paul-Andre Lambert,,Sherbrooke,Quebec,Canada,DMR
+3022336,VE2MPZ,Stephane Leclerc,,Chateauguay,Quebec,Canada,DMR
+3022338,VE2USS,Brian Luker,,Lachute,Quebec,Canada,DMR
+3022339,VA2PU,Michel Blouin,,Sherbrooke,Quebec,Canada,DMR
3023001,VE3XF,Steve Jones,,Stayner,Ontario,Canada,Mobile
3023002,VE3KFQ,Doug Hodgson,,Toronto,Ontario,Canada,Mobile
3023003,VE3SAQ,Marshall Mcbride,,Cornwall,Ontario,Canada,Portable
@@ -22832,6 +22991,7 @@ 3023393,VA3SV,Serafino Verticchio,,Stoney Creek,Ontario,Canada,Portable
3023394,VA3RIA,Rene Champagne,,Cornwall,Ontario,Canada,Portable
3023395,VE3XSH,Christian Moreton,,Toronto,Ontario,Canada,Portable
+3023396,VA3DGN,Tyler Tidman,,Ottawa,Ontario,Canada,DMR
3023397,VE3HRQ,Hacklab Toronto Club,,TORONTO,Ontario,Canada,Mobile
3023398,VA3QRM,John Phaneuf,,Windsor ,Ontario,Canada,Mobile
3023399,VA3GDS,Greg Smith,,Windsor,Ontario,Canada,Portable
@@ -23131,6 +23291,12 @@ 3023697,VE3SLA,Slava Pomerants,Slavap75,Maple,Ontario,Canada,DMR
3023698,VE3SVE,Sveta Pomerants,Bsvetik,Maple,Ontario,Canada,DMR
3023699,VA3SU,Kevin Kibbe,,Waterloo,Ontario,Canada,DMR
+3023700,VA3XLT,Adam Vanderiviere,,Thamesville,Ontario,Canada,DMR
+3023701,VA3BVP,Ben V. Pinto,,Toronto . Ontario,Ontario,Canada,DMR
+3023702,VA3EGG,Darren G Hager,,Mississauga,Ontario,Canada,DMR
+3023703,VA3SQD,Dan Colquhoun,Datasquid,Waterloo,Ontario,Canada,DMR
+3023704,VE3WAH,William Alfred Hopkins,,Lindsay,Ontario,Canada,DMR
+3023705,VE3GUO,Tony Guo,,Brampton,Ontario,Canada,DMR
3024001,VE4RRB,Rob Boux,,Blumenort,Manitoba,Canada,DMR
3024002,VE4RRB,Rob Boux,,Blumenort,Manitoba,Canada,DMR
3024003,VE4AI,Shaun Mcleod,,Winnipeg,Manitoba,Canada,Portable
@@ -23324,6 +23490,7 @@ 3026135,VA6RMV,Rodney Macvicar,,Calgary,Alberta,Canada,DMR
3026136,VE6JMK,John Kellas Kellas,,Banff,Alberta,Canada,DMR
3026137,VA6EC,Eric Haley,,Calgary,Alberta,Canada,Other
+3026138,VA6RIP,Derek Robertson,,Camrose,Alberta,Canada,Other
3027001,VE7NWX,Emcomm N. Wstmnstr,,New Westminster,British Columbia,Canada,Portable #1
3027002,VE7NWX,Emcomm N. Wstmnstr,,New Westminster,British Columbia,Canada,Portable #2
3027003,VE7NWX,Emcomm N. Wstmnstr,,New Westminster,British Columbia,Canada,Portable #3
@@ -23437,6 +23604,7 @@ 3027112,VE7ALB,Christopher Munz-Michielin,,Saanich,British Columbia,Canada,DMR
3027113,VA7CRO,Dom Kapac,,Victoria,British Columbia,Canada,DMR
3027114,VE7VSL,Charla Mason,,Victoria,British Columbia,Canada,DMR
+3027115,VA7EM,Rick Phillips,,Vernon,British Columbia,Canada,DMR
3027198,VE7ZZT,Kevin Wright,,New Westminster,British Columbia,Canada,Portable
3027199,VE7ZZT,Kevin Wright,,New Westminster,British Columbia,Canada,Mobile
3028001,VY1CA,Kelly Quocksister,,Whitehorse,Yukon,Canada,Mobile
@@ -23654,6 +23822,8 @@ 3101175,KD4TFP,Nikki Baker Baker,Nikki,Birmingham,Alabama,United States,DMR
3101176,WD4NBN,William S Baker,Scott,Birmingham,Alabama,United States,DMR
3101177,KM4KTC,William C Weir,Chris,Madison,Alabama,United States,DMR
+3101178,KR4WTF,Keith Rising,,Owens Cross Roads,Alabama,United States,DMR
+3101179,NA4A,Tristam I Greaney,Tris,Hartselle,Alabama,United States,CCS7
3102001,KL2AV,Brian Corty,,Delta Junction ,Alaska,United States,Portable
3102002,KL7PS,Paul Spatzek,,Ancorage,Alaska,United States,Portable
3102003,KL7RW,Ralph Wilkerson,Ralph,Anchorage,Alaska,United States,Portable
@@ -24062,7 +24232,7 @@ 3104397,KF7ZVL,Law Kelley,,Scottsdale,Arizona,United States,DMR
3104398,AG3NT,Adam Rader,,Phoenix,Arizona,United States,DMR
3104399,KF7HGI,Terry Hopewell,,Mesa,Arizona,United States,DMR
-3104400,K7RTM,Tim J Ploughe,Tim J,Chandler,Arizona,United States,DMR
+3104400,K7RTM,Tim J Chase,Tim J,Chandler,Arizona,United States,DMR
3104401,KE7GRV,James T Ryan,James T,Tempe,Arizona,United States,DMR
3104402,KC7JOE,Joe Racco,,Cave Creek,Arizona,United States,DMR
3104403,N7UZP,Carl E Maness,,Mesa,Arizona,United States,DMR
@@ -24151,6 +24321,9 @@ 3104488,W2AD,Norman W Rich Jr Rich,Norm,Phoenix,Arizona,United States,DMR
3104489,N7UJY,Brian K Lehmann,,Phoenix,Arizona,United States,DMR
3104490,KG7ISX,Kevin Cockerham,,Goodyear,Arizona,United States,DMR
+3104491,KI7HPE,Chuck Bryant,,Scottsdale,Arizona,United States,DMR
+3104492,AG3NT,Adam Rader Rader,Adam,Phoenix,Arizona,United States,DMR
+3104493,KD7OBQ,Jerry L Jensen,,Maricopa,Arizona,United States,DMR
3105001,N5QM,Robert Garcia,,Little Rock,Arkansas,United States,Portable
3105002,KB6FO,George Roher,,Edgemont,Arkansas,United States,Portable
3105003,W5KEC,Kenneth Carpenter,,Edgemont,Arkansas,United States,Portable
@@ -24350,6 +24523,8 @@ 3105198,N5QT,Dawn Gray,,Searcy,Arkansas,United States,DMR
3105199,N5GK,Glenn A King,Glenn,Conway,Arkansas,United States,DMR
3105200,N5QKH,Judy M Hambuchen,Judy,Conway,Arkansas,United States,DMR
+3105201,KF5FKF,Tyler Roberts,,Conway,Arkansas,United States,DMR
+3105202,NW5AR,Mark Parmer Parmer,Mark,Springdale,Arkansas,United States,DMR
3106001,K6EH,Paul Metzger,,Downey,California,United States,Portable #1
3106002,K6EH,Paul Metzger,,Downey,California,United States,Mobile
3106003,K6EH,Paul Metzger,,Downey,California,United States,Base
@@ -26265,6 +26440,32 @@ 3107922,N6AYF,Steven Hronek Hronek,Steve,La Canada,California,United States,DMR
3107923,N6HEW,Glen T Caine,,Fresno,California,United States,DMR
3107924,AE6GM,Richard J Murdock,Jeff,Carlsbad,California,United States,DMR
+3107925,K6WHC,Scott P Holcomb,,Mission Viejo ,California,United States,DMR
+3107926,N6EFD,Emilio F De Pina,,Cypress,California,United States,DMR
+3107927,KK6WAR,Thomas Wong,Tom,Fremont,California,United States,DMR
+3107928,KK6WAR,Thomas Wong,Tom,Fremont,California,United States,DMR
+3107929,K6YRO,Jason R Joy,Kyro,Sunnyvale,California,United States,DMR
+3107930,KM6BOA,Michael Xiong,,Fresno,California,United States,DMR
+3107931,K6KPQ,Nathan Dinitz,Nathan,Palo Alto,California,United States,DMR
+3107932,KK6JP,John H Potts,,Redding,California,United States,DMR
+3107933,KG6NQN,Vernon K Alvarado,Vern,Merced,California,United States,DMR
+3107934,WA6UDU,Peter J Van Putten,,Hercules,California,United States,DMR
+3107935,KA6HRO,Hro- Nick Oakland Ham Radio Operators,Hro-Oakland,Oakland,California,United States,DMR
+3107936,N7NVK,Philip S Gairson,,Redlands,California,United States,DMR
+3107937,WB6LA,William B Mccarty,Bill,Brea,California,United States,DMR
+3107938,AF6FZ,Daniel Dibbets,,San Carlos,California,United States,DMR
+3107939,W6ABJ,Richard W Larson,,Merced,California,United States,DMR
+3107940,KC6YDH,Ralph Kugler,,Daly City,California,United States,DMR
+3107941,KE6YJC,Ted Freitas,Roip Radio,Fresno,California,United States,DMR
+3107942,KJ6YOG,Jaime Devaud,,Aliso Viejo,California,United States,DMR
+3107943,AK6Y,Eric D Gomes,,Castro Valley,California,United States,DMR
+3107944,KE6VRK ,Edward R Lemus,Ed,Culver City ,California,United States,DMR
+3107945,KB6QEY,Matthew C Armenta,Matt,Roseville,California,United States,DMR
+3107946,K7DAA,David C Andrus,Dave,Morgan Hill,California,United States,DMR
+3107947,KK6URZ,Vikki L Thomason,Vikki,Roseville,California,United States,DMR
+3107948,KK6USF,Abbey K Armenta,Ab,Roseville,California,United States,DMR
+3107949,K6DJS,Daniel J Sharp,,Northridge,California,United States,DMR
+3107950,KE6VRK,Edward R Lemus,Ed,Culver City,California,United States,DMR
3108001,NR2Y,Marinus Jacobs,,Colorado Springs,Colorado,United States,Portable
3108002,WA2YZT,Paul Deeth,,Golden,Colorado,United States,Mobile
3108003,K0JSC,Jeff Carrier,,Canon City,Colorado,United States,Portable #1
@@ -27116,6 +27317,11 @@ 3108852,N0DRC,Dustin Cox,,Trinidad,Colorado,United States,DMR
3108853,N0PKT,Jerrold F Cummings,Jay,Colorado Springs,Colorado,United States,DMR
3108854,AC0SL,Dorian M Silva,,Denver,Colorado,United States,DMR
+3108855,K0ROA,Roaaor Ramah Outdoor Adventure Amateur Operator,Roaaor,Sedalia,Colorado,United States,DMR
+3108856,AC0VQ,Charles A Williams,,Highlands Ranch,Colorado,United States,DMR
+3108857,KG0VY,Philip Murdy,Phil,Cascade,Colorado,United States,DMR
+3108858,AE0BS,Bryan Steffey Steffey,,Littleton,Colorado,United States,DMR
+3108860,KE0KHZ,Anderson Flores,,Aurora,Colorado,United States,DMR
3109001,WA2WCB,Michael D. Arsenie,,Roxbury,Connecticut,United States,Portable
3109002,N1MCC,Kit Kocielo,,Old Lyme,Connecticut,United States,Portable
3109003,N1MCC,Kit Kocielo,,Old Lyme,Connecticut,United States,Mobile
@@ -27721,6 +27927,9 @@ 3109604,KC1CHB,Armory Eoc Demhs,,Hartford,Connecticut,United States,DMR
3109605,KC1BWR,Gregory E Hanson,Greg,Milford,Connecticut,United States,DMR
3109606,KB1OQR,Stuart I Cobb,,Willington,Connecticut,United States,DMR
+3109607,N1VID,Bruce A Weitzman,,New Britain,Connecticut,United States,CCS7
+3109608,N1NWN,Jay J Mongillo,,Plantsville,Connecticut,United States,DMR
+3109609,KB1QFO,Mary A Bacon,Mary,Plantsville,Connecticut,United States,DMR
3110001,N2VRQ,David Larson,,Bear,Delaware,United States,DMR
3110002,KB3WQH,Robert Dobie,,Newark,Delaware,United States,Portable
3110003,KC3BNZ,Street, Earl,,Claymont,Delaware,United States,Portable
@@ -27740,6 +27949,8 @@ 3110017,N3YDN,Edward P Aragon,,Bear,Delaware,United States,DMR
3110018,KB3REU,Michael Federico,Mike,Bear,Delaware,United States,DMR
3110019,N3OB,Edward L Porter Porter,Ed,Millsboro,Delaware,United States,DMR
+3110020,N3NSP,John A Webb Jr.,,Selbyville,Delaware,United States,DMR
+3110021,AB3SD,James T Smithson Smithson,,Millsboro,Delaware,United States,DMR
3111001,W2NJS,Tom Donohoe,,Washington,District of Columbia,United States,Portable
3111002,W3DCA,Michael Kiron,,Washington,District of Columbia,United States,Mobile
3111003,WA1ESQ,Jason Wareham,,Washington,District of Columbia,United States,Portable
@@ -28335,7 +28546,7 @@ 3112583,WB2IAQ,Eric Price,,Delray Beach,Florida,United States,Portable
3112584,W4QDN,Pete Wingard,,Orange City,Florida,United States,Portable
3112585,AF4KK,Scott Heath,,Jupiter,Florida,United States,Mobile
-3112586,W3FL,Forbes Marshall,,Orange City,Florida,United States,Mobile
+3112586,W3FL,Marshall Forbes,,Orange City,Florida,United States,DMR
3112587,KE4UZL,Larry Boyd,,West Palm Beach,Florida,United States,Portable
3112588,K4PNB,Phillip Blaha,,Cape Canaveral,Florida,United States,Portable
3112589,KK4URM,Jeff Kern,,Jacksonville,Florida,United States,Portable
@@ -28639,7 +28850,7 @@ 3112891,K4EX,EastPasco_ARS _,Epars,Dade City,Florida,United States,CCS7
3112892,WB4DPC,Michael L Shepp,Mike,Lutz,Florida,United States,DMR
3112893,KJ4VEH,Robert R Ortiz,,Titusville,Florida,United States,DMR
-3112894,WB2IBO,Harry B Morton,,Titusville,Florida,United States,DMR
+3112894,N4HBM,Harry B Morton III,,Titusville,Florida,United States,DMR
3112895,KW4LG,Darrell J Batton,,Jensen Beach,Florida,United States,DMR
3112896,WB2SVB,Lawrence H Rovak,,Newberry,Florida,United States,DMR
3112897,N4DMH,Dennis M Hitzigrath,Dennis,Miami,Florida,United States,CCS7
@@ -29163,7 +29374,13 @@ 3113421,KM4YHN,Houston Davidson,Houston,Austell,Georgia,United States,DMR
3113422,KC3DEZ,William G Jones,Bill,Saint Marys,Georgia,United States,DMR
3113423,N1PDR,Robert J Alred,,Marietta,Georgia,United States,DMR
+3113424,K4PRA,Peter R Adams,,Ball Ground,Georgia,United States,DMR
3113425,KK4KHS,Robert M Smith,,Lilburn,Georgia,United States,DMR
+3113426,K4PRA,Peter R Adams,,Ball Ground,Georgia,United States,DMR
+3113427,NH7AQ,John D Kerley Kerley,,Duluth,Georgia,United States,DMR
+3113428,W3CP,Bryan Dunn,,Cumming,Georgia,United States,DMR
+3113429,WA4RDL,Robert D Lewis,Bobby,Dawsonville,Georgia,United States,DMR
+3113430,KM4QHI,Bradley P Bitzkowski,Brad,Cleveland,Georgia,United States,DMR
3115001,NH7YS,Tad Miura,,Lihue,Hawaii,United States,Mobile
3115002,KH6DQ,Jack Tsujimura,,Honolulu,Hawaii,United States,Portable
3115003,AH6PR,Mark Pascal,,Kailua,Hawaii,United States,Portable
@@ -30141,6 +30358,15 @@ 3117752,KC9DNH,Brandon F Krozel,,Antioch,Illinois,United States,DMR
3117753,N9OZB,Aaron A Collins,,Arlington Heights,Illinois,United States,DMR
3117754,KB9MAC,Kent Vanderploeg,,Minooka,Illinois,United States,DMR
+3117755,AC9CV,Carl Paperiello Paperiello,Carl,Naperville,Illinois,United States,DMR
+3117756,KC9QBU,Aaron C Barnard,,Chicago ,Illinois,United States,DMR
+3117757,N9FAM,John M Coker,,East Peoria,Illinois,United States,DMR
+3117758,N4YH,Mark L Hamilton,D,Chicago,Illinois,United States,DMR
+3117759,KC9UTC,Henry S Hagner,Scott,Joliet,Illinois,United States,DMR
+3117760,K9QCA,Clayton J Roth,,Moline,Illinois,United States,DMR
+3117761,N9TAK,Dennis E Karnes,Sparky,Murphysboro,Illinois,United States,DMR
+3117762,N9ZR,Brent D Payne,,Decatur,Illinois,United States,DMR
+3117763,W9TSM,Samuel L Mc Donald,,Chicago,Illinois,United States,DMR
3118001,KK9EJ,Ej Caylor,,Noblesville,Indiana,United States,Portable
3118002,KG9NN,Robert Long,,Auburn,Indiana,United States,Portable
3118003,KC8PTE,David Wild,,Bloomington,Indiana,United States,Portable
@@ -30253,12 +30479,12 @@ 3118110,KC9TKJ,Christopher Morgan,,Jeffersonville,Indiana,United States,Portable
3118111,KF9EX,James Harney,,Merrillville,Indiana,United States,Portable
3118112,KC9QZE,Chris Paul,,Marion,Indiana,United States,Portable
-3118113,N9MTF,Bradley Peterson,,Kimmell,Indiana,United States,Portable
+3118113,N9MTF,Bradley Peterson,,Columbia City,Indiana,United States,DMR
3118114,KC9VUL,Mark Thompson,,Lafayette,Indiana,United States,Portable
3118115,AC9HP,Wayne Michael,,Indianapolis,Indiana,United States,Portable
3118116,KD9BGX,David Ramsey,,Portage,Indiana,United States,Portable
3118117,N9IVQ,Jay Shoup,,Valparaiso,Indiana,United States,Portable
-3118118,W9AUB,W9AUB Alumni Group,W9PUC,Saint John ,Indiana,United States,Loaner
+3118118,W9AUB,Mark Skowronski,W9PUC,Saint John ,Indiana,United States,DMR
3118119,WD9FNY,Bob Nelms,,Crown Point,Indiana,United States,Portable
3118120,KD9ZR,Frederick Cordes,,Mooresville,Indiana,United States,Portable
3118121,KB9MQU,Kevin Ratcliff,,Bloomington,Indiana,United States,Portable
@@ -30919,6 +31145,19 @@ 3118777,KB9OGU,Harold W. Williams Williams,,Morocco,Indiana,United States,DMR
3118778,KD9FQT,Matthew T Knouff Knouff,,Lafayette,Indiana,United States,DMR
3118779,K9GX,Mark S Williams,,Elizabeth,Indiana,United States,DMR
+3118780,KC9NEB,Nancy S Beckner,,Rensselaer,Indiana,United States,DMR
+3118781,KC9KTV,James B Beckner,,Rensselaer,Indiana,United States,DMR
+3118782,KC9VYU,Joseph A Jordan,Joe,Columbia City,Indiana,United States,DMR
+3118783,N9LOT,Roy D Sutton,Doug,Wolcottville,Indiana,United States,DMR
+3118784,W9CTO,James W Millsap,Jim,Highland,Indiana,United States,DMR
+3118785,KC9SYH,Shane L Rekeweg,Shane,Decatur,Indiana,United States,DMR
+3118786,W9RGX,Ronald Grochowski,Ron,Highland,Indiana,United States,DMR
+3118787,K9EO,Eugene J Orzechowicz,Geno,Highland,Indiana,United States,DMR
+3118788,KA9ERV,William C Parham,,Lagrange,Indiana,United States,DMR
+3118789,W9MYM,Myromme T Meneses,Tom,Terre Haute,Indiana,United States,DMR
+3118790,K9EO,Eugene J Orzechowicz,Gene,Highland,Indiana,United States,DMR
+3118791,N9GTO,Louis Hinkel Hinkel,,Clarksville,Indiana,United States,DMR
+3118792,N9GTO,Louis Hinkel Hinkel,Lou,Clarksville,Indiana,United States,DMR
3119002,WD0FIA,Keith Carpenter,Keith,Bridgewater,Iowa,United States,
3119003,W0DT,Donald Talaska,,Cedar Falls,Iowa,United States,Portable
3119004,KD0WY,Roger Gorzney,,CLINTON,Iowa,United States,Mobile
@@ -30952,6 +31191,8 @@ 3119032,AD0AM,Adam R Rennison,,Dyersville,Iowa,United States,Other
3119033,AD0AM,Adam R Rennison,,Dyersville,Iowa,United States,CCS7
3119034,N0ZJT,Eric A Grams,,Oelwein,Iowa,United States,DMR
+3119035,KC0VNY,Thomas Eaton,,St. Marys,Iowa,United States,DMR
+3119036,KZ0MBI,Michael F Chapman,,Reinbeck,Iowa,United States,DMR
3119100,WB0VHB,Randy Nelson,,Mt. Union,Iowa,United States,Mobile #1
3119101,K0TSK,Timothy Kilbride,,Victor,Iowa,United States,Portable
3119102,K7PEM,Paul Mccoy,,Anamosa,Iowa,United States,Portable
@@ -31383,6 +31624,14 @@ 3121206,KB4CF,Daniel W Hund,,Louisville,Kentucky,United States,DMR
3121207,KK4AHJ,James W Mills,,Utica,Kentucky,United States,DMR
3121208,AG4ST,Philip R Boerger,,Lawrenceburg,Kentucky,United States,DMR
+3121209,KK4MSD,Larry Richardson Richardson,Larry,Crestwood,Kentucky,United States,DMR
+3121210,KG4RSJ,John S Brown,,Erlanger,Kentucky,United States,DMR
+3121211,K4IED,Bryce J Cox,,Louisville,Kentucky,United States,DMR
+3121212,KY4WD,Warren Dishman,,Monticello,Kentucky,United States,DMR
+3121213,KW4DL,Michael L Hancock,Mike,Vine Grove,Kentucky,United States,DMR
+3121214,KF4LNB,Paul R Delong,,Hagerhill,Kentucky,United States,DMR
+3121215,KK4ZDZ,Matthew B Simons,Mbsimons,Louisville,Kentucky,United States,DMR
+3121216,KD4SWR,Scott W Risley,,Central City,Kentucky,United States,CCS7
3122001,KD5SSQ,Anthony Tango,,Covington,Louisiana,United States,Portable
3122002,W5ELM,Earl Morrow,,Oberlin,Louisiana,United States,Portable
3122003,KB5UDF,Jean Boudreaux,,Lafayette,Louisiana,United States,Portable
@@ -31704,6 +31953,8 @@ 3123284,N1BMB,Daryl W Cook,,Scarborough,Maine,United States,DMR
3123285,KC1FLF,Sean P Brown,,Bingham,Maine,United States,DMR
3123286,W1XXV,Joseph Shortill,,East Waterboro,Maine,United States,DMR
+3123287,W1LUC,Luc Perin,,Newburgh,Maine,United States,DMR
+3123288,N1TZR,Donald G Trask,Don,Augusta,Maine,United States,DMR
3124001,N3LHD,Tom Provenza,,Davidsonville,Maryland,United States,Portable & Mobile
3124002,N3LHD,Tom Provenza,,Davidsonville,Maryland,United States,Control Station
3124003,N3LHD,Tom Provenza,,Davidsonville,Maryland,United States,Demo
@@ -31966,6 +32217,9 @@ 3124260,KB3WRT,Larry L Goodwin,,Laytonsville,Maryland,United States,DMR
3124261,KC3HSY,Carlos M Pacho,,Bethesda,Maryland,United States,DMR
3124262,KA3YSN,Michael F Delauney,,Baltimore,Maryland,United States,DMR
+3124263,N3WZR,Charles A Schertle,Chuck,Westminster,Maryland,United States,DMR
+3124264,KC3GCB,Marvin D Walker,,Altimore,Maryland,United States,DMR
+3124265,KB2GUN,William H Gunn,,Baltimore,Maryland,United States,DMR
3125001,W1NAU,Tim Nau,,Boston,Massachusetts,United States,Portable
3125002,KT1U,Vivian Podsiadlo,,Mendon,Massachusetts,United States,Portable
3125003,AE1C,Jim Podsiadlo,,Mendon,Massachusetts,United States,Mobile
@@ -32378,12 +32632,20 @@ 3125411,KB1QHV,Bill T Thompson,Trish,Malden,Massachusetts,United States,DMR
3125412,N1YHS,Ralph Swenson,,East Falmouth,Massachusetts,United States,DMR
3125413,W1EXP,W1EXP-JOTA  Barnstable Amateur Radio Club,,Osterville,Massachusetts,United States,DMR
-3125414,W1KQ,JJ Martin,,Dracut,Massachusetts,United States,DMR
+3125414,W1KQ,Jim Martin,,Dracut,Massachusetts,United States,DMR
3125415,KB1IHU,Chuck Cotnoir,,Vineyard Haven,Massachusetts,United States,DMR
-3125416,K1RWS,Ricghard T Macdonald Macdonald,Dick,Hopedale,Massachusetts,United States,DMR
+3125416,K1RWS,Dick Macdonald,Dick,Hopedale,Massachusetts,United States,DMR
3125417,KC1EFX,Anthony R Gould,Tony,Edgartown,Massachusetts,United States,DMR
3125418,KC1JET,James E Tynan,,Rehoboth ,Massachusetts,United States,DMR
3125419,WS1K,Jonathan H Jesse,Jon,Plymouth,Massachusetts,United States,DMR
+3125420,N1NTE,Robert R Bellville,,Holland,Massachusetts,United States,DMR
+3125421,KB1ZUU,Jennifer R Bellville,,Holland ,Massachusetts,United States,DMR
+3125422,KB1ZUV,Jillian R Bellville,,Holland,Massachusetts,United States,DMR
+3125423,KC1FNI,Lyle R Hasley,,Buzzards Bay,Massachusetts,United States,DMR
+3125424,KB1RDI,Jeffrey Dell Dell,,Needham,Massachusetts,United States,DMR
+3125425,KB1NNH,Gerald D Campbell,,East Falmouth,Massachusetts,United States,Other
+3125426,KD1X,Ryan D Merck,,Whitman,Massachusetts,United States,DMR
+3125427,KC1FGK,Logan Brown,,Worcester,Massachusetts,United States,DMR
3126001,N8CN,Joe Erlewein,,Traverse City,Michigan,United States,Portable
3126002,KD8EYF,David Kierzkowski,,Detroit,Michigan,United States,Portable#1
3126003,W8FSM,Fred Moses,,Fenton,Michigan,United States,Portable #1
@@ -33341,6 +33603,11 @@ 3126956,N8NOE,Jeffrey M Swiger,,Waterford,Michigan,United States,DMR
3126957,KC8SZS,Stephen C Folk,,Clinton Township,Michigan,United States,DMR
3126958,AC8JN,Frank Dusenbury Dusenbury,,Flint,Michigan,United States,DMR
+3126959,W8MAR,Jeremy J Balduc,,Ironwood,Michigan,United States,CCS7
+3126960,WY8A,Larry L Smith,,Wyandotte,Michigan,United States,DMR
+3126961,W8SOX,Laurence E Stocking,,St. Clair Shores,Michigan,United States,Other
+3126963,KD8NPV,Jeffrey R Romence,Jeff,Kalamazoo,Michigan,United States,DMR
+3126964,KD4ALC,Ricky W Willbanks,,Holland,Michigan,United States,DMR
3127001,N0NMZ,Shep Shepardson,,Roseville,Minnesota,United States,Mobile
3127002,NH7CY,Jason Ballesteros,,Saint Paul,Minnesota,United States,Portable
3127003,NH7CY,Jason Ballesteros,,Saint Paul,Minnesota,United States,Demo
@@ -33611,6 +33878,16 @@ 3127271,N0JOL,Joe Showalter,,Isanti,Minnesota,United States,DMR
3127272,KD0DAC,Doug Jungels,,St. Cloud,Minnesota,United States,DMR
3127273,KC0NPA,Richard G Bopp,,Shakopee,Minnesota,United States,DMR
+3127274,KG0CV,David J Kellner,,Cold Spring ,Minnesota,United States,DMR
+3127275,N0DHK,Frederick D Ames,,White Bear Lake,Minnesota,United States,DMR
+3127276,K0BEN,Benjamin Franske,Ben,Minneapolis,Minnesota,United States,DMR
+3127277,KC0PDR,Dylan J Olson,,Appleton,Minnesota,United States,DMR
+3127278,K0FDM,Frederick Medina,Dondon,Ramsey,Minnesota,United States,Other
+3127279,KE0JSU,Ron Trainis Trainis,Ron,Bloomington,Minnesota,United States,DMR
+3127280,KB0SVW,Terrance R Thurn,,Rogers,Minnesota,United States,DMR
+3127281,N0JSA ,Jon S Asplund,,St. Cloud ,Minnesota,United States,DMR
+3127282,KD0BMV,Gregory H Howell,,Cokato,Minnesota,United States,DMR
+3127283,KE0IYN,Collin D O,,Oak Park Heights,Minnesota,United States,DMR
3128001,KF5MWE,Gary White,,Quitman,Mississippi,United States,Portable
3128002,K5WSM,Lemuel Smith,,Fulton,Mississippi,United States,
3128003,KD4VVZ,General Dailey,,Lucedale,Mississippi,United States,Portable
@@ -33846,13 +34123,15 @@ 3129185,WB0LBZ,Jacob T Mc Ginnis,Chip,Kansas City,Missouri,United States,DMR
3129186,KE0GRG,Howard C Hoyt,,Lees Summit,Missouri,United States,DMR
3129187,AD0HW,Gailen L Gillespie,Lee,Peculiar,Missouri,United States,DMR
-3129188,W0WFX,Jeffrey L Miller,,Chilhowee,Missouri,United States,DMR
+3129188,W0WFX,Jeff Miller,Jeff,Chilhowee,Missouri,United States,DMR
3129189,KB0VRM,Gary Herstein Herstein,,Nevada,Missouri,United States,DMR
3129190,KE0KEY,James Pfeifer Pfeifer,,Aurora,Missouri,United States,DMR
3129191,W0NQX,Robert R ( Bob ) Brown,Drsm0ke,Kansas City Metro,Missouri,United States,DMR
3129192,KS1ANG,Judith A Brown,,Kansas City Metro,Missouri,United States,DMR
3129193,N0NUT,Richard R Brown,,Kansas City Metro,Missouri,United States,DMR
3129194,KE0FVN,Archiebald Croux,Archie,Belton,Missouri,United States,DMR
+3129195,KE0GRG,Howard C Hoyt,,Lees Summit,Missouri,United States,DMR
+3129196,KD0RSX,Forrest Creason,,Belton,Missouri,United States,DMR
3130001,K7MT,Bill Erhardt,Bill,Helena,Montana,United States,DMR
3130002,KG6MQE,Jim Robinson,,Hamilton,Montana,United States,Portable
3130003,AE7OD,Jeff Cherry,,HAMILTON,Montana,United States,Portable
@@ -33895,6 +34174,7 @@ 3130040,N7MAB,Matthew A Beckstrom,,Helena,Montana,United States,DMR
3130041,KG7SYW,William S White,,Helena,Montana,United States,DMR
3130042,KA7MHP,Dale D Osborne,,Helena,Montana,United States,DMR
+3130043,N7MHQ,Douglas L Bruggemeyer,,Missoula,Montana,United States,DMR
3131001,K0BOY,Doug Halbert,,Omaha,Nebraska,United States,Portable
3131002,K0BOY,Doug Halbert,,Omaha,Nebraska,United States,Mobile
3131003,WB0QQK,Frank Vondra,,Omaha,Nebraska,United States,Portable
@@ -34430,6 +34710,8 @@ 3132409,AF7CE,Eric J Christianson,Chris,Cold Springs,Nevada,United States,DMR
3132410,N5TYH,Johnny M Sappington,,Boulder City,Nevada,United States,DMR
3132411,KD7QDG,James A Deane,,Minden,Nevada,United States,DMR
+3132412,KF7EEC,Michael H Cox,,N Las Vegas,Nevada,United States,DMR
+3132413,AF7CE,Eric J Christianson,Chris,Cold Springs,Nevada,United States,DMR
3133001,NE1B,Bill Barber,,Hudson,New Hampshire,United States,Portable
3133002,NE1B,Bill Barber,,Hudson,New Hampshire,United States,Mobile
3133003,WA2IYO,Pat Barber,,Hudson ,New Hampshire,United States,
@@ -35315,6 +35597,14 @@ 3134603,W2HRW,Gary Shore Points Amateur Radio Club,,Brigantine,New Jersey,United States,DMR
3134604,K1WS,Kenneth W Smalley,,Kinnelon,New Jersey,United States,DMR
3134605,KD2LZT,Jonathan P Jonach,Jay,Newton,New Jersey,United States,DMR
+3134606,N2IPH,Robert F Derderian,Bob D,Bridgeton,New Jersey,United States,DMR
+3134607,K2MFW,Matthew F Wilson,Matt,Millville,New Jersey,United States,DMR
+3134608,KD2HPQ,Angelo Depalma,,Newton,New Jersey,United States,DMR
+3134609,KD2FPY,David S Di Amore,,Millville,New Jersey,United States,DMR
+3134610,KC2IDB,Kenneth M. Boyle,Ken,Glen Gardner,New Jersey,United States,DMR
+3134611,KD2FDX,Michael L Cleckner,Mike,Ewing,New Jersey,United States,CCS7
+3134612,WS2Q,Harvey Klein,,Morristown ,New Jersey,United States,DMR
+3134613,N2PTR,James O Schneider,,Monroe,New Jersey,United States,DMR
3135001,N5BG,Larry Griggs,,Virden,New Mexico,United States,Mobile
3135002,N5BG,Larry Griggs,,Virden,New Mexico,United States,Mobile
3135003,N5UBJ,William Van Huss,,Farmington,New Mexico,United States,Mobile
@@ -35383,6 +35673,9 @@ 3135066,KD0WHB,Skyler Fennell Fennell,,Socorro,New Mexico,United States,DMR
3135067,KD0WHB,Skyler Fennell,,Socorro,New Mexico,United States,DMR
3135068,KG5HDJ,Phil Holland Holland,Phil,Rio Rancho,New Mexico,United States,DMR
+3135069,KB5ZQF,David A Clark,,Los Alamos,New Mexico,United States,DMR
+3135070,KC5JXG,Shirley M Clark,,Los Alamos,New Mexico,United States,DMR
+3135071,W5MHG,Mark Goodrum,,Albuquerque,New Mexico,United States,DMR
3136001,W2KTU,Keivan Keihani,,Fresh Meadows,New York,United States,Portable #1
3136002,N2WGC,Michael Gomez,,Queens,New York,United States,Portable
3136003,K2XTS,Alex Chadis-ny Sysop,,Queens,New York,United States,Portable
@@ -37379,6 +37672,7 @@ 3138001,KD0WEB,Quentin Schumacher,,Bismarck,North Dakota,United States,Portable
3138002,KD0IOE,Andrew Lynch,,West Fargo,North Dakota,United States,Portable
3138003,N0ATN,Johnathan W Boles,,Turtle Lake,North Dakota,United States,DMR
+3138004,KC0SHM,Mark A Johnson,,Fargo,North Dakota,United States,DMR
3139001,W8AK,Glenn Hochwalt,,Dayton,Ohio,United States,Portable
3139002,N7SCM,Andrew Long,,Columbus,Ohio,United States,Portable
3139003,KC8GMR,Gordon Hensley,,Franklin,Ohio,United States,Portable
@@ -38214,7 +38508,7 @@ 3139839,KD8LEL,David P Pleva,Dpleva64,Parma,Ohio,United States,DMR
3139840,N8KKR,Adolfo D Battaglia,,Cleves,Ohio,United States,DMR
3139841,W8IH,Steven W Mainger,,Westlake,Ohio,United States,DMR
-3139842,KE8COJ,Kenneth J Griffin,,Brunswick,Ohio,United States,DMR
+3139842,K3MGT,Kenneth J Griffin,,Brunswick,Ohio,United States,DMR
3139843,KG4DSG,James M Wolford,Mike,Cincinnati,Ohio,United States,DMR
3139844,KC8FJN ,Brian Fulmer Fulmer,,Cincinnati,Ohio,United States,DMR
3139845,W8TWL,Tracey W Liston,,Medina,Ohio,United States,DMR
@@ -38248,6 +38542,15 @@ 3139874,K8CBC,Christopher B Calhoun,,Newark,Ohio,United States,DMR
3139875,WD8LEI,Eric R Willman,,Bowling Green,Ohio,United States,DMR
3139876,KK4CTF,Bryan R Snatchko,Eno00wen,Lexington,Ohio,United States,DMR
+3139877,N8JSW,Joshua S Witsberger,,St.Clairsville,Ohio,United States,Other
+3139878,KC8DSW,Roberta L Simpson,,Canal Winchester,Ohio,United States,DMR
+3139879,WD8PNZ,Brent C Stover,,Maumee ,Ohio,United States,DMR
+3139880,KE8APO,Dave Swancer Swancer,,Medina,Ohio,United States,DMR
+3139881,N8RJK,Robert J Kaegi,Bob,Cincinnati,Ohio,United States,DMR
+3139882,N8RJK,Robert J Kaegi,Bob,Cincinnati,Ohio,United States,DMR
+3139883,AC8JT,Thomas Wright Wright,Thomas,East Liverpool,Ohio,United States,DMR
+3139884,KC8YJJ,Gary L Rosenlieb,,Toronto,Ohio,United States,DMR
+3139885,KB8RWZ,Paul R Rawlings,,Akron,Ohio,United States,DMR
3140001,AE5DN,Mark Matalik,,Oklahoma City,Oklahoma,United States,Portable
3140002,AE5DN,Mark Matalik,,Oklahoma City,Oklahoma,United States,Mobile
3140003,KE5BDG,Leah Matalik,,Oklahoma City,Oklahoma,United States,Portable
@@ -38681,6 +38984,7 @@ 3140431,KD5WPU,Ronald R Sweeten,,Bartlesville,Oklahoma,United States,DMR
3140432,KD5WPU,Ronald R Sweeten,,Bartlesville,Oklahoma,United States,DMR
3140433,K5KBA,James S Broom,,Tulsa,Oklahoma,United States,DMR
+3140434,WE5Z,Norbert Suchanek,Norbie,Norman,Oklahoma,United States,Other
3141001,N7MAQ,Jim Hanrahan,,Woodbum,Oregon,United States,Portable
3141002,N7MAQ,Jim Hanrahan,,Woodbum,Oregon,United States,Mobile
3141003,KC7HBU,David Rogers,,Portland,Oregon,United States,Portable
@@ -38789,6 +39093,13 @@ 3141106,N7ZIM,Gary Zimmerman,,Bend,Oregon,United States,DMR
3141107,W7BMF,Robert L Burk,,Hammond,Oregon,United States,DMR
3141108,KF7TPO,Joshua A Thompson,,Warrenton,Oregon,United States,DMR
+3141109,K9JRL,Joshua R Lindley,,Salem,Oregon,United States,DMR
+3141110,NX0J,Scott V Nielson,,Keizer,Oregon,United States,DMR
+3141111,KJ7CY,William T Walton,Tom,Gaston,Oregon,United States,DMR
+3141112,W7XJ,Michael L Dempsey,,Cottage Grove,Oregon,United States,DMR
+3141113,N7TLY,Randal E Casper,,Astoria,Oregon,United States,DMR
+3141114,WJ6FOX,Joshua Fox,,Central Point,Oregon,United States,DMR
+3141115,KD7THQ,Lee White,,Lebanon,Oregon,United States,DMR
3142001,N3ST,Bryan Dorbert,,Littlestown,Pennsylvania,United States,Portable
3142002,K4MTP,Mike Priebe,,Effort,Pennsylvania,United States,Mobile
3142003,N3OBL,Frank Smoyer,,Pittsburgh,Pennsylvania,United States,Portable
@@ -39204,6 +39515,18 @@ 3142414,WB3DLN,Dale L Howey,,Wellsboro,Pennsylvania,United States,DMR
3142415,KC3FEZ,Richard Weddigen,,Hellertown,Pennsylvania,United States,DMR
3142416,N3AEP,Ronald E Thompson,,Adamsburg,Pennsylvania,United States,DMR
+3142417,WB3DLN,Dale L Howey,,Wellsboro,Pennsylvania,United States,DMR
+3142418,N3ZX,Stephen Zelenko,Stephen,Pittsburgh,Pennsylvania,United States,DMR
+3142419,W3NRL,Nicholas R Lerro,Nick,Woodlyn ,Pennsylvania,United States,DMR
+3142420,KB3YBW,Timothy M Horne,Tim,Chester,Pennsylvania,United States,DMR
+3142421,KB2ITR,Michael Cintron,Mike,E-Stroudsburg,Pennsylvania,United States,Other
+3142422,KE3IN,Bradford J Bobbitt,Brad,Etters,Pennsylvania,United States,DMR
+3142423,K3NXU,John Lamartina,John,Shrewsbury,Pennsylvania,United States,DMR
+3142424,N3RMM,Angela M Treffinger,,Etters,Pennsylvania,United States,DMR
+3142425,KA3MYI,Michael G Senica,,Warrington,Pennsylvania,United States,DMR
+3142426,W3ZW,Andrew W Mcluckie,Drew,Wayne,Pennsylvania,United States,DMR
+3142427,W3ZW,Andrew W Mcluckie,Drew,Wayne,Pennsylvania,United States,DMR
+3142428,W3KKC,Kevin K Custer,Kuggie,Warren,Pennsylvania,United States,DMR
3144001,KB1ISZ,William Carlson,,Smithfield,Rhode Island,United States,Hytera Portable
3144002,KB1ISZ,William Carlson,,Smithfield,Rhode Island,United States,Hytera Loaner
3144003,KC2FMI,Joseph Miklovic,,North Kingstown,Rhode Island,United States,Portable
@@ -39477,6 +39800,7 @@ 3145237,N2EIO,David Jennings,,Beaufort,South Carolina,United States,Portable
3145238,KI4XS,Wray Lemkle,,Mt. Pleasant,South Carolina,United States,Portable
3145239,K4DWH,Dennis Hyder,,Leesville,South Carolina,United States,Portable
+3145240,KK4UCE,Paleather G Burnett,Pokey,Moore,South Carolina,United States,DMR
3145241,KI4ROL,Sherron, David,,Bluffton,South Carolina,United States,Portable
3145242,WA4MPZ,Murray Baughman,,Bluffton,South Carolina,United States,Portable
3145243,KK4GAB,Ryan Spoone,,Hilton Head Island,South Carolina,United States,Portable
@@ -39861,6 +40185,10 @@ 3145627,KK4WIG,Donald J Jackson,Jim,North Augusta,South Carolina,United States,DMR
3145628,KM4TDM,Jonathan A Williamson,Jono,Lexington,South Carolina,United States,DMR
3145629,KM4TDM,Jonathan A Williamson,Jono,Lexington,South Carolina,United States,DMR
+3145630,KK4UKP,Kimberli Burnett,,Moore,South Carolina,United States,DMR
+3145631,K8HID,Gary D Foster,,Inman,South Carolina,United States,DMR
+3145632,KO4ZB,Tony Bisogna,,Whitmire,South Carolina,United States,DMR
+3145633,W3BRB,Beverly Boyd Boyd,,Dorchester,South Carolina,United States,DMR
3146001,KG6JLB,Thomas Rohwer,,Madison,South Dakota,United States,Portable
3146002,AD0BN,Aaron Locker,,Sioux Falls,South Dakota,United States,Portable
3146003,KD0QYR,Dustin Schnabel,,Sioux Falls,South Dakota,United States,Non-DMR
@@ -40354,6 +40682,17 @@ 3147481,KM4WYE,Shawn M Horne,,Mooresburg ,Tennessee,United States,DMR
3147482,KK4PKT,Timmie L Sloan,,La Follette,Tennessee,United States,DMR
3147483,KB4NK,Bobby E Argo,Bob,Oliver Springs ,Tennessee,United States,DMR
+3147484,N4CPU,Steve Ditmer Ditmer,Steve,Jacksboro,Tennessee,United States,DMR
+3147485,KW1LL,William C Raper,,Sparta,Tennessee,United States,DMR
+3147486,KC5YTS,Martin Leesti,,Franklin,Tennessee,United States,CCS7
+3147487,WB4UAH,Joshua A Humphrey,,Jacksboro,Tennessee,United States,DMR
+3147488,N2AL,Andrew W Lawson,,Philadelphia,Tennessee,United States,DMR
+3147489,KM4FXK,Edward Glynn Glynn,,Brentwood,Tennessee,United States,DMR
+3147490,KF4BGW,Stephen J Stewart,,Kingsport,Tennessee,United States,DMR
+3147491,KK4VZT,Steven R Johnson,,Germantown,Tennessee,United States,DMR
+3147492,N4KV,John P Gager,,Knoxville,Tennessee,United States,DMR
+3147493,KK4WHN,Timothy A Rhodes,,Alcoa,Tennessee,United States,DMR
+3147494,N4MAW,Michael Wright,Michael,Lebanon,Tennessee,United States,DMR
3148001,W5EBQ,Jim Hopper,,Dallas,Texas,United States,
3148002,N4MSE,Jeff Alexander,,Dallas,Texas,United States,
3148003,KE4QLC,Cliff Jenkins,,Commerce,Texas,United States,Portable
@@ -41214,7 +41553,7 @@ 3148858,W5WBC,William Cook,Bill,Pearland,Texas,United States,DMR
3148859,KG5PNC,Mark Anderson,,Terrell,Texas,United States,DMR
3148860,KJ5NL,Mitchell V Savage,Mitch,Plano,Texas,United States,DMR
-3148861,WH6L,Ed Norment Norment,Ed,San Benito, Tx,Texas,United States,DMR
+3148861,WH6L,Ed Norment,Ed,San Benito, Tx,Texas,United States,DMR
3148862,N1NEC,Anthony P Martel,,Plano,Texas,United States,DMR
3148863,K5JZO,Julio A Zapata,,Laredo,Texas,United States,DMR
3148864,K5JZO,Julio A Zapata,,Laredo,Texas,United States,DMR
@@ -41240,6 +41579,17 @@ 3148884,KG5ONF,Michael C Jacobson,,Richmond,Texas,United States,DMR
3148885,KD5GJE,Timothy L Warren,,Lubbock,Texas,United States,DMR
3148886,KE5UT,Stewart Rabinowitz,,Celina,Texas,United States,DMR
+3148887,W5FZ,David A Johnson,,Houston,Texas,United States,DMR
+3148888,N5TXR,Sammy L Arnold,,Austin,Texas,United States,DMR
+3148889,KG5GCU,Matt Nichols,,Spring,Texas,United States,DMR
+3148890,KV5TX,Kristopher J Schmelter,Kris,Dripping Springs,Texas,United States,DMR
+3148891,W5LHJ,Donald L Butler Butler,Don,Plano,Texas,United States,DMR
+3148892,KG5IDA,Curtis Eveler,,Arlington ,Texas,United States,DMR
+3148893,W5LHJ,Donald L Butler,Don,Plano,Texas,United States,DMR
+3148894,KI5AH,Kiah S Albert,,Fort Worth,Texas,United States,DMR
+3148895,KG5LQZ,James R Coapland,Coap,San Antonio,Texas,United States,DMR
+3148896,KD5DNT,David A Seglem,,Allen,Texas,United States,DMR
+3148897,N5MHI,Jon Penner,,Austin,Texas,United States,DMR
3149001,N6DVZ,Roger Davies,,West Jordan,Utah,United States,Portable
3149002,KC7WSU,Chris Andrist,,Lehi,Utah,United States,DMR
3149003,WR7O,Douglas Datwyler,,Sandy,Utah,United States,Portable
@@ -41407,6 +41757,7 @@ 3150072,KB1FDA,Joe Truss Truss,Joe,East Corinth,Vermont,United States,DMR
3150073,KB1ZYP,Colleen D,,Rutland,Vermont,United States,DMR
3150074,KA1LDL,Miles M Silk,,Barre,Vermont,United States,DMR
+3150075,K1EUH,Frank C Buswell,,Essex Junction,Vermont,United States,DMR
3151001,N8RK,Ralf Klingler,,Hayes,Virginia,United States,
3151002,W4YP,Bob Spindle,,Haymarket,Virginia,United States,Portable
3151003,W4YP,Bob Spindle,,Haymarket,Virginia,United States,Control Station
@@ -41855,6 +42206,14 @@ 3151448,KC3BPC,Ryan L Graves,,Ashburn,Virginia,United States,DMR
3151449,N3ARH,Andrew R Hower,,Bluemont,Virginia,United States,DMR
3151450,K5SAX,James E Whitley,Jim,Chesapeake,Virginia,United States,DMR
+3151451,KD7SCT,Colby Moore,,Reston,Virginia,United States,DMR
+3151452,N4XYZ,James D Knight,Dave,Virginia Beach,Virginia,United States,Other
+3151453,K4PZZ,Fred W Payne,,Spotsylvania,Virginia,United States,CCS7
+3151454,NF1J,Grant Fullen,Grant,Wise,Virginia,United States,DMR
+3151455,KE4HGP,Tim Carroll,,Virginia Beach,Virginia,United States,Other
+3151456,WA4ONG,James Dearras,Jim,Richmond,Virginia,United States,DMR
+3151457,KE2N,Kenneth Jamrogowicz,Ken,Haymarket,Virginia,United States,CCS7
+3151458,KO4VET,Jeffery C Groves,Jeff,Bealeton,Virginia,United States,DMR
3153001,KD7AKB,Chris Palmer,,Bremerton,Washington,United States,Mobile
3153002,NF6C,Gregory Krantz,,Orting,Washington,United States,Mobile
3153003,NF6C,Gregory Krantz,,Orting,Washington,United States,Portable
@@ -42151,6 +42510,12 @@ 3153294,KI7GMN,Elizabeth C Macrae,,Sammamish,Washington,United States,DMR
3153295,KG7KH,Jeff Dickenson,,Vancouver,Washington,United States,DMR
3153296,N6TYG,Tony Bamberger,Tonyb,Battle Ground,Washington,United States,DMR
+3153297,KC7VCG,Jeremy L Prine,,Olympia,Washington,United States,DMR
+3153298,KG7PKM,Richard F Ranhofer,,Seattle,Washington,United States,DMR
+3153299,KG7PKL,Dolores S Ranhofer,Dsr,Seattle,Washington,United States,DMR
+3153300,KI7HPT,Daniel Manchado Gonzalez,,New Orchard,Washington,United States,DMR
+3153301,KC9YOG,Ian Finder,Tr1nitr0n,Seattle,Washington,United States,DMR
+3153302,KE7SFF,Terence Chan,,Redmond,Washington,United States,DMR
3154001,WV8VFD,Tyler Lewis,,Parkersburg,West Virginia,United States,Portable
3154002,WB3JPB,Bruce Conley,,Inwood,West Virginia,United States,Portable
3154003,WB8WKO,Mike Vargo,,Mount Hope,West Virginia,United States,Portable
@@ -42270,13 +42635,16 @@ 3154117,KD8BBQ,Mark A Kelley,,Crawley,West Virginia,United States,DMR
3154118,KE8ENN,Michael Mellon,,Oceana,West Virginia,United States,DMR
3154119,WD8KGO,Johnny R Mon,,Chapmanville,West Virginia,United States,DMR
-3154120,KE8BEE,Harley S ` `Justice,,Madison,West Virginia,United States,DMR
+3154120,KE8BEE,Harley S Justice,,Madison,West Virginia,United States,DMR
3154121,WM0S,Lyle E Seigel,,Bunker Hill,West Virginia,United States,DMR
3154122,KD8CVI,Sidney R Maynard,,Henlawson,West Virginia,United States,DMR
3154123,KE8EWP,Charles D Brown,,Justice,West Virginia,United States,DMR
3154124,KD8WDA,Martin B Riffle,,Leon,West Virginia,United States,DMR
3154125,AE8CW,Clint White White,Clint,Hewett,West Virginia,United States,DMR
3154126,KD8WDA,Martin B Riffle,,Leon,West Virginia,United States,DMR
+3154127,K8CVW,Carl Williams,,Brandywine,West Virginia,United States,DMR
+3154128,KE8BEE,Harley S Justice,,Madison,West Virginia,United States,DMR
+3154129,KD8MFG,John M Crump,,Princewick,West Virginia,United States,DMR
3155001,N9NLZ,Craig Ochs,,Brookfield,Wisconsin,United States,Portable
3155002,KB9VLL,Dan Albert,,South Milwaukee,Wisconsin,United States,Portable
3155003,KB9ENO,William Niemuth,,Hortonville,Wisconsin,United States,Portable
@@ -42486,6 +42854,10 @@ 3155208,N0EEM,Edward E Murray,,Superior ,Wisconsin,United States,DMR
3155209,KD9HCW,Corey Becker,,Racine,Wisconsin,United States,DMR
3155210,KC9BTF,Angie L Skrentny,,West Bend,Wisconsin,United States,DMR
+3155211,N9LKF,Robert E Deglau,,Muskego,Wisconsin,United States,DMR
+3155212,N0EEM,Edward E Murray,Eddie,Superior,Wisconsin,United States,DMR
+3155213,N4UCM,Douglas W Lofreddo,,Waunakee,Wisconsin,United States,DMR
+3155214,K9AYL,Albert Rognsvoog,Bert,Mount Pleasant,Wisconsin,United States,DMR
3156001,KC7YRA,Brad Lutz,,Casper,Wyoming,United States,Portable
3156002,KC7YRA,Brad Lutz,,Casper,Wyoming,United States,Mobile
3156003,KC0ZHF,Rodney Waln,,Cheyenne,Wyoming,United States,Portable
@@ -42657,6 +43029,7 @@ 3341049,XE1GQP,Ricardo Solano,Xe1gqp,Guadalajara,Jalisco,Mexico,DMR
3341050,XE1GYY,Margarita Jauregui Diaz,Xe1gyy,Guadalajara,Jalisco,Mexico,DMR
3341051,XE1GYY,Margarita Jauregui Diaz,Xe1gyy,Guadalajara,Jalisco,Mexico,DMR
+3341052,XE1FXT,Jose Luis Nu�Ez Garcia,Jose Luis,Atotonilco El Alto,Jalisco,Mexico,DMR
3342001,XE2PMP,Pablo Mejia,,Chihuahua,Chihuahua,Mexico,Portable
3342002,XE2JEG,Eduardo Gallegos,,Chihuahua,Chihuahua,Mexico,Mobile
3342003,XE2JEG,Eduardo Gallegos,,Chihuahua,Chihuahua,Mexico,Portable
@@ -42703,6 +43076,7 @@ 3343027,XE3PVW,David Placido Velazquez,,CANCUN ,Quintana Roo,Mexico,Portable
3343028,XE3RA,Guillermo Blanco,,Cancun,Quintana Roo,Mexico,Loaner
3343029,XE3GAP,Perez Galdamez Tomas,Xe3gap,Chiapa De Corzo,Chiapas,Mexico,DMR
+3343030,XE3RCC,Radio Club Cancun,Radioclub Cancun,Cancun,Quintana Roo,Mexico,DMR
3344001,XE1FXS,Humberto MuÑoz,,TIZAPAN EL ALTO,all others,Mexico,Mobile
3344002,XE1GXO,Jorge Rodriguez,,YURECUARO,all others,Mexico,Portable
3344003,XE1GXW,Jorge Gutierrez,,Guadalajara,all others,Mexico,Portable
@@ -42874,7 +43248,7 @@ 4401050,JH1OXL,Michio Masumizu,Michi,Yokohama,Kanto,Japan,CCS7
4401052,JL1IBD,Shin Aota,,Yokohama,Kanto,Japan,CCS7
4401053,JH1AAQ,Akira Watanabe,Aki,Tateyama,Kanto,Japan,CCS7
-4401054,JR1FVK,Yu-Ichiro "Tuck" Takagawa,Tack,Tokyo,Kanto,Japan,DMR
+4401054,JR1FVK,Yu Ichiro Tuck Takagawa,Tack,Tokyo,Kanto,Japan,DMR
4401055,JP1CKJ,Kenichi Yokoyama,,Hachiouji,Kanto,Japan,CCS7
4402001,JR2SRH,Gosei Sato,,Tokai-city,Tokai,Japan,Mobile
4402002,JR2MOK,Masaru Komoda,Masaru,Nagoya,Tokai,Japan,Portable
@@ -42950,6 +43324,7 @@ 4407022,JH7ZER,Aomori Tsukimiryou,Tsuki,Aomori City,Tohoku,Japan,CCS7
4407023,JH7ZER,Aomori Tsukimiryou,Tsuki,Aomori City,Tohoku,Japan,DMR
4407024,JK7BEJ,Hiroyuki Mamada,,Hachinohe,Tohoku,Japan,CCS7
+4407025,JE7ZDC,Shinya Takase,Shin,Fukushima,Tohoku,Japan,CCS7
4408001,JI8KVH,Yoshiyasu Akehi,,Kitami,Hokkaido,Japan,Other
4408002,JA8IBG,Konishi Masashi,,Sapporo,Hokkaido,Japan,DMR
4409001,JH9IIA,Ryusho Tanabe,,Tsuruga,Hokuriku,Japan,Mobile
@@ -43051,6 +43426,9 @@ 4500065,DS5DBQ,Jeongsu Jeon,Jeong,Busan,BuSan Si,Korea S, Republic of,CCS7
4500066,DS5NEO,Oh Hong-Joo,Jooe Oh,Busan,BuSan Si,Korea S, Republic of,CCS7
4500067,HL5PBF,Jong-Min Lee,Jonglee,Busan,BuSan Si,Korea S, Republic of,CCS7
+4500068,HL5BTF,Yuni Kim,Yuni,Busan,Busan Si,Korea S, Republic of,DMR
+4500069,HL5KY,Yun Jae Jo,Joe,Busan,Busan Si,Korea S, Republic of,DMR
+4500070,HL5IDV,Rhee Kyonggu,Rhee,Busan,BuSan Si,Korea S, Republic of,CCS7
4501001,6K2GBE,Seongjin Oh,,Suwon,Chungeheongbuk,Korea, Republic of,
4501002,DS4GYP,Won-gil Jung,,KwangJu,KWangJu Si,Korea S, Republic of,Other
4501003,DS5TUK,Joon Ho Shin,,Suseonggu,Daeku Si,Korea S, Republic of,DMR
@@ -43062,6 +43440,9 @@ 4501009,HL5KW,Hee Dong Lee,,Daegu,DaeKu Si,Korea S, Republic of,DMR
4501010,DS5SDA,Kim In Ho,,Daegu,DaeKu Si,Korea S, Republic of,DMR
4501011,6K5XHF,Jeon Ho Joon,,Dae Gu,DaeKu Si,Korea S, Republic of,DMR
+4501012,DS5ZFN,In-No Lee,Lee,Daegu Si,DaeKu Si,Korea S, Republic of,CCS7
+4501013,6K5RIW,Soo-Geun Kim,Kim,Daegu Si,DaeKu Si,Korea S, Republic of,CCS7
+4501014,6K5UKC,Goung-Ho Joung,Joung,Daegu Si,DaeKu Si,Korea S, Republic of,CCS7
4502001,HL3EHN,Man-soo Han,,Daejeon,DaeJeon Si,Korea S, Republic of,Other
4502002,DS3PIC,Kwanghee Cho,,Daejeon Si,Daejeon Si,Korea S, Republic of,Other
4502003,HL2KRV,Kim Byung-Su,Cobiman,Incheon,InChon Si,Korea S, Republic of,Other
@@ -43084,6 +43465,7 @@ 4505007,DS3LYG,Kim Huihwan,Ds3lyg,Seo San- Si,ChungChong Nam-Do,Korea S, Republic of,DMR
4505008,DS3LYG,Kimhuihwan Huihwan,Ds3lyg,Seo San- Si,ChungChong Nam-Do,Korea S, Republic of,Other
4505009,HL3EYJ,Kwanghee Cho,,Chungju,ChungChong Buk-Do,Korea S, Republic of,DMR
+4505010,DS5RRV,Sangil Yeo,,Seosan,Chungchong Nam-Do,Korea S, Republic of,DMR
4506001,HL2KZJ,Kwang-ok Yoo,,GunPO-SI,KyungKi-Do,Korea S, Republic of,Other
4506002,HL2UJ,Kim Gil Tae,,CHEONG PYEONG,KyungKi-Do,Korea S, Republic of,DMR
4506003,DS1AWE,Joel(Seung) Han,,Dongducheon,Kyungki-Do,Korea S, Republic of,Other
@@ -43102,6 +43484,9 @@ 4506016,HL2WA,Lee Dongkyu ( Ham Nick Name : Kyu ),Kyu,Seongnam,Kyungki-Do,Korea S, Republic of,DMR
4506017,HL2ATF,Chan0nam Chung,,Yongin,KyungKi-Do,Korea S, Republic of,DMR
4506018,DS1SYV,Pyosung Choi,Pyonim,Suwon,Kyungki-Do,Korea S, Republic of,DMR
+4506019,6K2JOQ,Mr. Kyungmin (Kenneth) Cho,,Yongin-Si, Bojung-Do,Kyungki-Do,Korea S, Republic of,DMR
+4506020,6K2FRY,Bong In Jung,,Pyungtaek,Kyungki-Do,Korea S, Republic of,DMR
+4506021,HL2OHM,Wonki Kim,,Ansan,Kyungki-Do,Korea S, Republic of,DMR
4507001,HL1RR,Lim Seong Gyu Lim,Hope,Seoul,Seoul,Korea S, Republic of,DMR
4507002,DS1RHP,Lee Seung-Jae,Ds1rhp,Seoul,Seoul,Korea S, Republic of,DMR
4507003,DS3DNC,Jongil Kim,,Seoul,Seoul,Korea S, Republic of,CCS7
@@ -43495,6 +43880,9 @@ 4661032,BM2LSM,Zhong Yu Wang,,New Taipei City,Taipei,Taiwan,DMR
4661033,BV5OO,Yaojun Hsieh,,Taipei ,Taipei,Taiwan,DMR
4661034,BM4ISC,Wu Chung Tsai,,Taichung,Central Taiwan,Taiwan,DMR
+4661035,BM4KSB,Felix Chan,Bm4ksb,Taichung,Central Taiwan,Taiwan,DMR
+4661036,BM4KSB,Felix Chan,Bm4ksb,Taichung,Central Taiwan,Taiwan,DMR
+4661037,BX3AH,Lin Miracle,Bx3ah,Taoyuan,Northern Taiwan,Taiwan,DMR
5020001,9W2VHN,Hafiznaimi Yahya,HAFIZNAIMI,PENANG,Spratly Is.,Malaysia,Mobile
5022001,9M2AOC,Alexander Oon,,Bayan Lepas,Penang,Malaysia,Portable
5022002,9M2SF,See Fung Lee,,ISland Glades,Penang,Malaysia,Portable
@@ -43561,7 +43949,7 @@ 5051037,VK2MWP,Andrew Geddes,,Canberra,Australian Capital Territory,Australia,DMR
5051038,VK1OC,Robert Cook,Owen,Canberra,Australian Capital Territory,Australia,DMR
5052001,VK2YLO,John Reeves,,Goonellabah,New South Wales,Australia,Mobile
-5052002,VK2LK,Matt Robert,,Sydney,New South Wales,Australia,
+5052002,VK2LK,Matt Ames,,Sydney,New South Wales,Australia,DMR
5052003,VK2YVA,Mal Alexander,,Campbelltown,New South Wales,Australia,
5052004,VK2LJ,John Harper,,Sydney,New South Wales,Australia,Portable
5052005,VK2XHP,Huw Price,,Sydney,New South Wales,Australia,
@@ -43572,7 +43960,7 @@ 5052010,VK2CU,Justin Lavery,,Sydney,New South Wales,Australia,
5052011,VK2MCA,Steve Diekman,,Dural,New South Wales,Australia,DMR
5052013,VK2XYI,Scott Richardson,,Faulconbridge,New South Wales,Australia,Portable
-5052014,VK2LK,Matt Robert,,Sydney,New South Wales,Australia,Mobile
+5052014,VK2LK,Matt Ames,,Sydney,New South Wales,Australia,DMR
5052015,VK2PWR,Adam Anderson,,Glenfield,New South Wales,Australia,Mobile
5052016,VK2ZB,Mark Regan,,Lawrence,New South Wales,Australia,Portable
5052017,VK2PR,Peter Richardson,,Sydney,New South Wales,Australia,Mobile
@@ -43705,7 +44093,7 @@ 5052144,VK2DMR,Dr Mckay,Makka,Sydney,New South Wales,Australia,DMR
5052145,VK2JXA,Andrew Avery,,Sydney,New South Wales,Australia,DMR
5052146,VK2HCR,Andrew R Wright,,Sydney,New South Wales,Australia,DMR
-5052147,VK2FAEW,James Zaiter,,Sydney,New South Wales,Australia,Other
+5052147,VK2VJZ,James Zaiter,,Sydney,New South Wales,Australia,Other
5052148,VK2HL,Hh Leykam,,Dee Why,New South Wales,Australia,CCS7
5052149,VK2JN,James Nelson,,Sydney,New South Wales,Australia,Other
5052150,VK2JN,James Nelson,,Sydney,New South Wales,Australia,Other
@@ -43756,6 +44144,7 @@ 5052195,VK2PAM,Andrew Mills,,Gosford,New South Wales,Australia,DMR
5052196,VK2PPM,Peter Mills,,Gosford,New South Wales,Australia,DMR
5052197,VK2WIH,Hunter Joyce,,Lake Macquarie,New South Wales,Australia,DMR
+5052198,VK2WIH,Hunter Wicen Nsw Inc,,Newcastle,New South Wales,Australia,DMR
5053001,VK3XDE,Paul Engler,,Melbourne,Victoria,Australia,Mobile
5053002,VK3TE,Peter Brennan,,Karingal,Victoria,Australia,Portable
5053003,VK3AJ,Peter Chaplin,,Upwey,Victoria,Australia,Mobile
@@ -43854,6 +44243,9 @@ 5053096,VK3PEF,Des Egan,,Bendigo,Victoria,Australia,DMR
5053097,VK3CKC,Kj Crockett,,Axedale,Victoria,Australia,DMR
5053098,VK3GRK,Graeme R Knight,,Bendigo,Victoria,Australia,DMR
+5053099,VK3JJL,Jack Lilley,Sfs,Bendigo,Victoria,Australia,DMR
+5053100,VK3AJO,Joe Primerano,,Endeavour Hills,Victoria,Australia,DMR
+5053101,VK3WV,Dennis Sillett,,Melbourne,Victoria,Australia,DMR
5054001,VK4QF,Andrew Chapman,,Toowoomba,Queensland,Australia,DMR
5054002,VK4QF,Andrew Chapman,,Toowoomba,Queensland,Australia,DMR
5054003,VK4QF,Andrew Chapman,,Toowoomba,Queensland,Australia,DMR
@@ -43961,6 +44353,7 @@ 5054106,VK4ID,Allan Gilbey,,Glasshouse Mts,Queensland,Australia,CCS7
5054107,VK4LGW,Graeme Willox,,Brisbane,Queensland,Australia,DMR
5054108,VK4TV,Roger Wilson,,Hervey Bay,Queensland,Australia,DMR
+5054109,VK4BO,Zacharias Paul Smit,Paul,Brisbane,Queensland,Australia,DMR
5055001,VK5FBFB,Brendan Blackman,,adelaide,South Australia,Australia,Portable
5055002,VK5FBFB,Brendan Blackman,,Adelaide ,South Australia,Australia,DMR
5055003,VK5RZ,Stephan Forka,,Seaford Rise,South Australia,Australia,Other
@@ -44024,13 +44417,16 @@ 5056045,VK6EI,Selwyn T Jones Jones,,Henley Brook,Western Australia,Australia,DMR
5056046,VK6RK,R Keith Bainbridge,,Perth,Western Australia,Australia,DMR
5056047,VK6LVI,Ben Jones,,Perth,Western Australia,Australia,DMR
-5056048,VK6WH,West Australian Vhf Group Inc West Australian Vhf Group Inc,,Perth,Western Australia,Australia,DMR
+5056048,VK6WH,West AU VHF Group .,,Perth,Western Australia,Australia,DMR
5056049,VK6MST,Allan Huitema,,Melville,Western Australia,Australia,DMR
5056050,VK6NUT,Gurmit Singh Singh,Grom,Perth,Western Australia,Australia,DMR
5056051,VK6IA,Andrew Albinson,,Ballajura,Western Australia,Australia,DMR
5056052,VK6PM,Peter May,,Perth,Western Australia,Australia,DMR
5056053,VK6HX,Craig Mason,,Perth,Western Australia,Australia,DMR
5056054,VK6DY,Mark J Gaynor,,Perth,Western Australia,Australia,DMR
+5056055,VK6MST,Allan Huitema,,Perth,Western Australia,Australia,DMR
+5056056,VK6NCS,Gary Rentenaar,,Perth,Western Australia,Australia,DMR
+5056057,VK6VZS,Dave Botha Botha,,Perth,Western Australia,Australia,DMR
5056100,VK100ANZ,Hmas Stirling - Gard,,Garden Island,Western Australia,Australia,John McNamee VK6AG
5057001,VK7YXX,Don Nolder,,Richmond,Tasmania,Australia,
5057002,VK7JA,John Andrewartha,,Scottsdale,Tasmania,Australia,Mobile
@@ -44066,6 +44462,8 @@ 5150002,DW1ZDR,Audie O. Sanchez,,Pasig City,National Capital Region,Philippines,DMR
5150003,DW1ZDQ,Gazelle Dicen,,Pasig City,National Capital Region,Philippines,DMR
5150004,DU1UGZ,Ramon J. Anquilan,Ramon,Paranaque,National Capital Region,Philippines,DMR
+5150005,4F7FDM,Frederick D. Medina,Dondon,Mandaue City,National Capital Region,Philippines,Other
+5150006,4F7MYC,Freidlix Mychael Medina,Mico,Mandaue City,National Capital Region,Philippines,CCS7
5200001,HS1JZT,Apinant ,apinant,bangkok,Narathiwat,Thailand,
5200002,E20EHQ,Kamol ,Kamol,Ladkrabang,Bangkok,Thailand,
5200003,HS1GNS,Suchat Piputvat,,Nontaburi,Nonthaburi,Thailand,
@@ -44506,6 +44904,7 @@ 5303119,ZL4IND,Daniel Erickson,,Invercargill,South Island,New Zealand,CCS7
5303120,ZL3VY,A P Dixon,,Christchurch,South Island,New Zealand,DMR
5303121,ZL4OC,R F Smith,Bob,Dunedin,South Island,New Zealand,DMR
+5303122,ZL4LC,Lindsay Eunson,,Wyndham,South Island,New Zealand,DMR
5351001,KH2MM,Jochen Althoff,,Dededo,GU,Guam,Portable
5351002,WH2F,Stephan Buettner,,Dededo,Guam,United States,Portable
5351003,NH2CY,Bradley A Hokanson,Brad,Santa Rita,All,Guam,DMR
@@ -44759,6 +45158,7 @@ 7141028,HP2MIC,Manuel Chanis ,,Colon ,Colon,Panama,DMR
7141029,HP1NUR,Tahumanara Chung,,Panama,Panama,Panama,DMR
7141030,HP1BZE,Augusto Lowe,,Panama,Panama,Panama,DMR
+7141031,HP2DUI,Guillermo A. Gomez,Memo,Colon (Panama),Colon,Panama,CCS7
7220001,LW6DX,Fabian Malnero,,General Pacheco,Buenos Aires,Argentina Republic,Portable
7220002,LW2EQU,Jose Romasanta,Jose,Buenos aires,,Argentina,
7220003,LU2CJM,Julio Cesar Marino,,Buenos Aires,Buenos Aires,Argentina Republic,DMR
@@ -44770,6 +45170,8 @@ 7220009,LU3ARE,Juan Francisco Arellano,,Caba,Buenos Aires,Argentina Republic,CCS7
7220010,LU7DW,Claudio Fernandez,,Caba,Buenos Aires,Argentina Republic,DMR
7220011,LU8EUT,Roberto Velasco Velasco,Roberto,Caba,Buenos Aires,Argentina Republic,CCS7
+7220012,LU5AGQ,Gaston Ettedgui,,Ciudad De Buenos Air,Buenos Aires,Argentina Republic,DMR
+7220013,LU5YUS,Julian Martin Jacobo,Jjacobo,Rio Cuarto,Buenos Aires,Argentina Republic,DMR
7240001,PP5VX,Boneval Samy Silva,,São Francisco do Su,,Brazil,Control Station
7240002,PY1LT,Lino Neto,,DUQUE DE CAXIAS,Rio de Janeiro,Brazil,Portable
7240003,PY1JD,Joaquim Dias,,RIO DE JANEIRO,Rio de Janeiro,Brazil,Portable
@@ -45023,6 +45425,7 @@ 7301043,CA1ROY,Rodrigo Garcia,Roro,Calama,Antofagasta,Chile,DMR
7301044,CA1IZA,Ivan Alonso Zapata Alderete,,Calama,Antofagasta,Chile,DMR
7301045,CE1REA,Raul Eduardo Araya Vega,,Calama,Antofagasta,Chile,DMR
+7301046,CE1VSV,Victor Valdivi,Victorcalama,Calama,Antofagasta,Chile,DMR
7302001,CE2LS,Radio Club Of La Serena,,La Serena,Cuarta,Chile,
7302002,CE2NXW,Jerardo Peralta,,La Serena,Elqui,Chile,Mobile
7302003,CA2DMR,Ruben Dario Munoz,,La Serena,Elqui,Chile,Mobile
@@ -45135,6 +45538,13 @@ 7302111,CE2NVS,Fabian Vera,,Chile,Valparaiso,Chile,DMR
7302112,CE2NVS,Fabian Vera,,Chile,Valparaiso,Chile,DMR
7302113,CA2WKZ,Henry Quintulaf,,Limache,Valparaiso,Chile,DMR
+7302114,CE2AA,Radio Club Valparaiso Radio Club Valparaiso,Ce2aa,Valparaiso,Valparaiso,Chile,DMR
+7302115,CE2WJI,Ricardo Romero,Ce2wji,Valparaiso,Valparaiso,Chile,DMR
+7302116,CD2SBV,Florentino Romero,Cd2sbv,Valparaiso,Valparaiso,Chile,DMR
+7302117,CE2IYR,Gustavo A. Pacheco Bianchetti,Ce2iyr,Vina Del Mar,Valparaiso,Chile,DMR
+7302118,CE2NGN,Claudio Chamorro,Ce2ngn,ViñA Del Mar,Valparaiso,Chile,DMR
+7302119,CE2IYR,Gustavo A. Pacheco Bianchetti,Ce2iyr,ViñA Del Mar,Valparaiso,Chile,DMR
+7302120,CE2FTF,Andres Fuentes,Andres,Valparaiso,Valparaiso,Chile,DMR
7303001,CA3SOC,Raul Romero,,Santiago,Reg.Metr. de Santiago,Chile,Mobile
7303002,CE3YP,George ,George,Jorge,Reg.Metr. de Santiag,Chile,
7303003,CE3BFE,Mario Reyne,romeopapa,Lampa,Reg.Metr. de Santiago,Chile,Otro
@@ -45184,8 +45594,10 @@ 7303048,CD3IRV,Carlos Ignacio Guevara Rios,,Santiago,Reg.Metr. De Santiago,Chile,DMR
7303049,CD3KHO,Arturo A. Medina,,Santiago,Reg.Metr. de Santiago,Chile,DMR
7303050,CD3OPD,Cesar Mucherl,,Santiago,Reg.Metr. de Santiago,Chile,DMR
+7303051,CE3KW,Pedro Pablo Salvatierra,,Puente Alto,Reg.Metr. de Santiago,Chile,DMR
7304001,CE4CSC,Carlos SáEz ,,Cauquenes,Maule,Chile,DMR
7304002,CA4KRC,Jonathan Valderrama,,Chillan Viejo,Maule,Chile,DMR
+7304003,CE4RAY,Fernando Seguy,,Curico,Maule,Chile,DMR
7305001,CE5RHS,Miguel Vergara O.,,Coronel,Bio Bio,Chile,DMR
7305002,CE5KBR,Mauricio Vasquez C,,Los Angeles,Bio Bio,Chile,DMR
7305003,CA5SBT,Esteban Osorio,Esalos,ConcepcióN,Bio Bio,Chile,DMR
@@ -45193,6 +45605,8 @@ 7305005,CE5RHS,Miguel Vergara O.,,Coronel,Bio Bio,Chile,DMR
7305006,CE5KBR,Mauricio Vasquez C,,Los Angeles,Bio Bio,Chile,DMR
7305007,CA4KRC,Jonathan Valderrama,,Chillan Viejo,Bio Bio,Chile,DMR
+7305008,CE5RWJ,Rodolfo Vergara Orellana,Rodolfo Veraga,Chiguayante,Bio Bio,Chile,DMR
+7305009,CE5RWJ,Rodolfo Vergara Orellana,Rodolfo Vergara,Chiguayante,Bio Bio,Chile,DMR
7306001,XQ6UMR,Saint-jean Guillermo,,Osorno,La Araucania,Los Lagos,Chile,Mobile
7306002,XQ6UMR,Guillermo Saint-jean,,Osorno,La Araucania,Los Lagos,Chile,Mobile
7306003,XQ6UMR,Saint-jean Guillermo,,Osorno,La Araucania,Los Lagos,Chile,Mobile
@@ -45201,6 +45615,8 @@ 7306006,CE6TTL,Ruben A SantibañEz Montenar,Ce6ttl,Temuco,La Araucania,Chile,DMR
7306007,CA6JAU,Jose Uribe,Andy,Valdivia,Los Lagos,Chile,DMR
7306008,CE7RFS,Hugo Soto,,Castro,Los Lagos,Chile,DMR
+7306009,XQ6BXP,Marcelo Salazar Iba�Ez,,Temuco,La Araucania,Chile,DMR
+7306010,CA6BNV,Victor Bahamondez,Mativic,Temuco,La Araucania,Chile,DMR
7308001,CE8WDB,Rodrigo Lucero Valenzuela,Ce8wdb,Punta Arenas,Magallanes,Chile,DMR
7320001,HK4BES,Jorge Naranjo,,Medellin,Antioquia,Colombia,DMR
7320002,HK4CZE,Jorge Alfredo Mejia,,Rionegro,Antioquia,Colombia,DMR
From a58b076c8aee683f7d2304a48e7b40bc02be6ab7 Mon Sep 17 00:00:00 2001 From: Cort Buffington Date: Tue, 1 Nov 2016 20:54:43 -0500 Subject: [PATCH 12/38] Call State Tracking Now Working MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This is the beginning of TGID rewrite. Next is to figure out how to store the LC and Embedded LC values for each valid destination so they aren’t calculated each time a packet has to be sent – should do it ONCE per call. --- constants.py | 6 ++++- hb_router.py | 63 ++++++++++++++++++++++++++-------------------------- 2 files changed, 36 insertions(+), 33 deletions(-) diff --git a/constants.py b/constants.py index 192fd55..833c327 100755 --- a/constants.py +++ b/constants.py @@ -43,6 +43,9 @@ SYNC = { 'BS_DATA': BS_DATA_SYNC } +# LC Options - Use for Group Voice +LC_OPT = '\x00\x00\x20' + # Precomputed EMB values, where CC always = 1, and PI always = 0 EMB = { 'BURST_B': bitarray('0001001110010001'), @@ -101,4 +104,5 @@ if __name__ == '__main__': pprint(SYNC) pprint(EMB) - pprint(SLOT_TYPE) \ No newline at end of file + pprint(SLOT_TYPE) + print(LC_OPT) \ No newline at end of file diff --git a/hb_router.py b/hb_router.py index 9bcaa71..3674a33 100755 --- a/hb_router.py +++ b/hb_router.py @@ -80,18 +80,14 @@ class routerMASTER(HBMASTER): 'LSTREAM_ID': '', 'LPKT_TIME': time(), 'LPKT_TYPE': const.HBPF_SLT_VTERM, - 'LSEQ_ID': 0x00, 'LC': '', - 'EMBLC': [0,0,0,0,0,0] } self.ts2_state = { 'LSTREAM_ID': '', 'LPKT_TIME': time(), 'LPKT_TYPE': const.HBPF_SLT_VTERM, - 'LSEQ_ID': 0x00, 'LC': '', - 'EMBLC': [0,0,0,0,0,0] } @@ -104,36 +100,32 @@ class routerMASTER(HBMASTER): logger.error('(%s) DMRD received with invalid Timeslot value: %s', self._master, h(_data)) pkt_time = time() dmrpkt = _data[20:54] - - if (_stream_id != state['LSTREAM_ID']) and ((state['LPKT_TYPE'] != const.HBPF_SLT_VTERM) or (pkt_time < state['LPKT_TIME'] + const.STREAM_TO)): - logger.warning('(%s) Packet received SUB: %s REPEATER: %s TGID %s, SLOT %s collided with existing call', self._master, int_id(_radio_id), int_id(_rf_src), int_id(_dst_id), _slot) - return - - if (_stream_id != state['LSTREAM_ID']): - logger.info('(%s) New call stream stareted SUB: %s REPEATER: %s TGID %s, SLOT %s', self._master, int_id(_radio_id), int_id(_rf_src), int_id(_dst_id), _slot) - state['LSTREAM_ID'] = _stream_id - state['LPKT_TIME'] = pkt_time - state['LSEQ_ID'] = _seq - ''' - if _frame_type == const.HBPF_DATA_SYNC and _dtype_vseq == const.HBPF_SLT_VHEAD: - decoded = dec_dmr.voice_head_term(dmrpkt) - state['LC'] = decoded['LC'] - print(h(state['LC'])) - ''' - if not state['LC'] and _frame_type == const.HBPF_VOICE: - decoded = dec_dmr.voice(dmrpkt) - state['EMBLC'][_dtype_vseq] = decoded['EMBED'] - print(h(decoded['EMBED'])) - - if state['EMBLC'][1] and state['EMBLC'][2] and state['EMBLC'][3] and state['EMBLC'][4]: - print(h(dec_dmr.bptc.decode_emblc(state['EMBLC'][1] + state['EMBLC'][2] + state['EMBLC'][3] + state['EMBLC'][4]))) - - - print(h(state['EMBLC'][1]),h(state['EMBLC'][2]),h(state['EMBLC'][3]),h(state['EMBLC'][4])) - _bits = int_id(_data[15]) + if _call_type == 'group': + # Is this a new call stream? + if (_stream_id != state['LSTREAM_ID']): + if ((state['LPKT_TYPE'] != const.HBPF_SLT_VTERM) or (pkt_time < state['LPKT_TIME'] + const.STREAM_TO)): + logger.warning('(%s) Packet received SUB: %s REPEATER: %s TGID %s, SLOT %s collided with existing call', self._master, int_id(_rf_src), int_id(_radio_id), int_id(_dst_id), _slot) + return + + # This is a new call stream + logger.info('(%s) Call stream START SUB: %s REPEATER: %s TGID %s, SLOT %s', self._master, int_id(_rf_src), int_id(_radio_id), int_id(_dst_id), _slot) + state['LSTREAM_ID'] = _stream_id + state['LPKT_TIME'] = pkt_time + + # If we can, use the LC from the voice header as to keep all options intact + if _frame_type == const.HBPF_DATA_SYNC and _dtype_vseq == const.HBPF_SLT_VHEAD: + decoded = dec_dmr.voice_head_term(dmrpkt) + state['LC'] = decoded['LC'] + + # If we don't have a voice header then don't wait to decode it from the Embedded LC + # just make a new one from the HBP header. + else: + state['LC'] = const.LC_OPT + _dst_id + _rf_src + + _routed = False for rule in RULES[self._master]['GROUP_VOICE']: _target = rule['DST_NET'] @@ -151,7 +143,14 @@ class routerMASTER(HBMASTER): logger.debug('(%s) Packet routed to %s system: %s', self._master, CONFIG['SYSTEMS'][_target]['MODE'], _target) if not _routed: logger.debug('(%s) Packet router no target TS/TGID %s/%s', self._master, _slot, int_id(_dst_id)) - + + # Final actions - Is this a voice terminator? and set the last packet type + if (_frame_type == const.HBPF_DATA_SYNC) and (_dtype_vseq == const.HBPF_SLT_VTERM) and (state['LPKT_TYPE'] != const.HBPF_SLT_VTERM): + state['LC'] = '' + logger.info('(%s) Call stream END SUB: %s REPEATER: %s TGID %s, SLOT %s', self._master, int_id(_rf_src), int_id(_radio_id), int_id(_dst_id), _slot) + state['LPKT_TYPE'] = _dtype_vseq + + class routerCLIENT(HBCLIENT): def __init__(self, *args, **kwargs): From 3b61f091c1887a166f4898205146d610391fecb2 Mon Sep 17 00:00:00 2001 From: Cort Buffington Date: Tue, 8 Nov 2016 14:56:11 -0600 Subject: [PATCH 13/38] additional pre-routing check added --- hb_router.py | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/hb_router.py b/hb_router.py index 3674a33..283eed0 100755 --- a/hb_router.py +++ b/hb_router.py @@ -78,6 +78,7 @@ class routerMASTER(HBMASTER): self.ts1_state = { 'LSTREAM_ID': '', + 'LTGID': '', 'LPKT_TIME': time(), 'LPKT_TYPE': const.HBPF_SLT_VTERM, 'LC': '', @@ -85,6 +86,7 @@ class routerMASTER(HBMASTER): self.ts2_state = { 'LSTREAM_ID': '', + 'LTGID': '', 'LPKT_TIME': time(), 'LPKT_TYPE': const.HBPF_SLT_VTERM, 'LC': '', @@ -111,9 +113,16 @@ class routerMASTER(HBMASTER): return # This is a new call stream + # Check to see if we're in group hangtime before accepting it + if (_dst_id != state['LTGID']) and (pkt_time < state['LPKT_TIME'] + RULE[self._master]['GROUP_HANGTIME']): + logger.warning('(%s) Packet received SUB: %s REPEATER: %s TGID %s, SLOT %s whild in group hangtime for TGID %s', self._master, int_id(_rf_src), int_id(_radio_id), int_id(_dst_id), _slot, int_id(state['LTGID'])) + return + + # This is actually a VALID new call stream logger.info('(%s) Call stream START SUB: %s REPEATER: %s TGID %s, SLOT %s', self._master, int_id(_rf_src), int_id(_radio_id), int_id(_dst_id), _slot) state['LSTREAM_ID'] = _stream_id state['LPKT_TIME'] = pkt_time + state['LTGID'] = _dst_id # If we can, use the LC from the voice header as to keep all options intact if _frame_type == const.HBPF_DATA_SYNC and _dtype_vseq == const.HBPF_SLT_VHEAD: From f0fa590e72aa189ca788b72e16579c3df20843fe Mon Sep 17 00:00:00 2001 From: Cort Buffington Date: Tue, 8 Nov 2016 16:16:22 -0600 Subject: [PATCH 14/38] refactoring - INCOMPLETE --- hb_router.py | 97 ++++++++++++++++++++++++++++------------------------ hblink.py | 2 +- 2 files changed, 54 insertions(+), 45 deletions(-) diff --git a/hb_router.py b/hb_router.py index 283eed0..b4d1a98 100755 --- a/hb_router.py +++ b/hb_router.py @@ -76,30 +76,47 @@ class routerMASTER(HBMASTER): def __init__(self, *args, **kwargs): HBMASTER.__init__(self, *args, **kwargs) - self.ts1_state = { - 'LSTREAM_ID': '', - 'LTGID': '', - 'LPKT_TIME': time(), - 'LPKT_TYPE': const.HBPF_SLT_VTERM, - 'LC': '', - } - - self.ts2_state = { - 'LSTREAM_ID': '', - 'LTGID': '', - 'LPKT_TIME': time(), - 'LPKT_TYPE': const.HBPF_SLT_VTERM, - 'LC': '', - } - + # Status information for the system, TS1 & TS2 + # 1 & 2 are "timeslot" + # In TX_EMB_LC, 2-5 are burst B-E + self.STATUS = { + 1: { + 'RX_STREAM_ID': '\x00', + 'TX_STREAM_ID': '\x00', + 'RX_TGID': '\x00', + 'TX_TGID': '\x00', + 'RX_TIME': time(), + 'TX_TIME': time(), + 'RX_TYPE': const.HBPF_SLT_VTERM, + 'RX_LC': '\x00', + 'TX_LC': '\x00', + 'TX_EMB_LC': { + 2: '\x00', + 3: '\x00', + 4: '\x00', + 5: '\x00', + } + }, + 2: { + 'RX_STREAM_ID': '\x00', + 'TX_STREAM_ID': '\x00', + 'RX_TGID': '\x00', + 'TX_TGID': '\x00', + 'RX_TIME': time(), + 'TX_TIME': time(), + 'RX_TYPE': const.HBPF_SLT_VTERM, + 'RX_LC': '\x00', + 'TX_LC': '\x00', + 'TX_EMB_LC': { + 2: '\x00', + 3: '\x00', + 4: '\x00', + 5: '\x00', + } + } + } def dmrd_received(self, _radio_id, _rf_src, _dst_id, _seq, _slot, _call_type, _frame_type, _dtype_vseq, _stream_id, _data): - if _slot == 1: - state = self.ts1_state - elif _slot == 2: - state = self.ts2_state - else: - logger.error('(%s) DMRD received with invalid Timeslot value: %s', self._master, h(_data)) pkt_time = time() dmrpkt = _data[20:54] _bits = int_id(_data[15]) @@ -107,35 +124,29 @@ class routerMASTER(HBMASTER): if _call_type == 'group': # Is this a new call stream? - if (_stream_id != state['LSTREAM_ID']): - if ((state['LPKT_TYPE'] != const.HBPF_SLT_VTERM) or (pkt_time < state['LPKT_TIME'] + const.STREAM_TO)): + if (_stream_id != self.STATUS[_slot]['RX_STREAM_ID']): + if ((self.STATUS[_slot]['RX_TYPE'] != const.HBPF_SLT_VTERM) or (pkt_time < self.STATUS[_slot]['RX_TIME'] + const.STREAM_TO)): logger.warning('(%s) Packet received SUB: %s REPEATER: %s TGID %s, SLOT %s collided with existing call', self._master, int_id(_rf_src), int_id(_radio_id), int_id(_dst_id), _slot) return - - # This is a new call stream - # Check to see if we're in group hangtime before accepting it - if (_dst_id != state['LTGID']) and (pkt_time < state['LPKT_TIME'] + RULE[self._master]['GROUP_HANGTIME']): - logger.warning('(%s) Packet received SUB: %s REPEATER: %s TGID %s, SLOT %s whild in group hangtime for TGID %s', self._master, int_id(_rf_src), int_id(_radio_id), int_id(_dst_id), _slot, int_id(state['LTGID'])) - return - # This is actually a VALID new call stream + # This is a new call stream logger.info('(%s) Call stream START SUB: %s REPEATER: %s TGID %s, SLOT %s', self._master, int_id(_rf_src), int_id(_radio_id), int_id(_dst_id), _slot) - state['LSTREAM_ID'] = _stream_id - state['LPKT_TIME'] = pkt_time - state['LTGID'] = _dst_id + self.STATUS[_slot]['RX_STREAM_ID'] = _stream_id + self.STATUS[_slot]['RX_TIME'] = pkt_time + self.STATUS[_slot]['RX_TGID'] = _dst_id # If we can, use the LC from the voice header as to keep all options intact if _frame_type == const.HBPF_DATA_SYNC and _dtype_vseq == const.HBPF_SLT_VHEAD: decoded = dec_dmr.voice_head_term(dmrpkt) - state['LC'] = decoded['LC'] + self.STATUS[_slot]['RX_LC'] = decoded['LC'] # If we don't have a voice header then don't wait to decode it from the Embedded LC # just make a new one from the HBP header. else: - state['LC'] = const.LC_OPT + _dst_id + _rf_src + self.STATUS[_slot]['RX_LC'] = const.LC_OPT + _dst_id + _rf_src - _routed = False + for rule in RULES[self._master]['GROUP_VOICE']: _target = rule['DST_NET'] if (rule['SRC_GROUP'] == _dst_id and rule['SRC_TS'] == _slot and rule['ACTIVE'] == True): @@ -147,17 +158,15 @@ class routerMASTER(HBMASTER): #print(h(_data)) #print(h(_tmp_data)) systems[_target].send_system(_tmp_data) - _routed = True - logger.debug('(%s) Packet routed to %s system: %s', self._master, CONFIG['SYSTEMS'][_target]['MODE'], _target) - if not _routed: - logger.debug('(%s) Packet router no target TS/TGID %s/%s', self._master, _slot, int_id(_dst_id)) + + # Final actions - Is this a voice terminator? and set the last packet type - if (_frame_type == const.HBPF_DATA_SYNC) and (_dtype_vseq == const.HBPF_SLT_VTERM) and (state['LPKT_TYPE'] != const.HBPF_SLT_VTERM): - state['LC'] = '' + if (_frame_type == const.HBPF_DATA_SYNC) and (_dtype_vseq == const.HBPF_SLT_VTERM) and (self.STATUS[_slot]['RX_TYPE'] != const.HBPF_SLT_VTERM): + self.STATUS[_slot]['LC'] = '' logger.info('(%s) Call stream END SUB: %s REPEATER: %s TGID %s, SLOT %s', self._master, int_id(_rf_src), int_id(_radio_id), int_id(_dst_id), _slot) - state['LPKT_TYPE'] = _dtype_vseq + self.STATE[_slot]['RX_TYPE'] = _dtype_vseq class routerCLIENT(HBCLIENT): diff --git a/hblink.py b/hblink.py index 4628b05..253d62a 100755 --- a/hblink.py +++ b/hblink.py @@ -23,7 +23,7 @@ from hashlib import sha256 from time import time from urllib import URLopener from csv import reader as csv_reader -from bitstring import BitArray +#from bitstring import BitArray import socket # Debugging functions From b54463c2a459d0eecc8a5fcb87556d1b614fba5f Mon Sep 17 00:00:00 2001 From: Cort Buffington Date: Mon, 14 Nov 2016 07:27:44 -0600 Subject: [PATCH 15/38] progress --- hb_router.py | 35 +- peer_ids.csv | 166 +++-- subscriber_ids.csv | 1474 +++++++++++++++++++++++++++++++++++++------- 3 files changed, 1375 insertions(+), 300 deletions(-) diff --git a/hb_router.py b/hb_router.py index b4d1a98..8980e6a 100755 --- a/hb_router.py +++ b/hb_router.py @@ -126,11 +126,11 @@ class routerMASTER(HBMASTER): # Is this a new call stream? if (_stream_id != self.STATUS[_slot]['RX_STREAM_ID']): if ((self.STATUS[_slot]['RX_TYPE'] != const.HBPF_SLT_VTERM) or (pkt_time < self.STATUS[_slot]['RX_TIME'] + const.STREAM_TO)): - logger.warning('(%s) Packet received SUB: %s REPEATER: %s TGID %s, SLOT %s collided with existing call', self._master, int_id(_rf_src), int_id(_radio_id), int_id(_dst_id), _slot) + logger.warning('(%s) Packet received with STREAM ID: %s SUB: %s REPEATER: %s TGID %s, SLOT %s collided with existing call', self._master, int_id(_stream_id), int_id(_rf_src), int_id(_radio_id), int_id(_dst_id), _slot) return # This is a new call stream - logger.info('(%s) Call stream START SUB: %s REPEATER: %s TGID %s, SLOT %s', self._master, int_id(_rf_src), int_id(_radio_id), int_id(_dst_id), _slot) + logger.info('(%s) Call stream START with STREAM ID: %s SUB: %s REPEATER: %s TGID %s, SLOT %s', self._master, int_id(_stream_id), int_id(_rf_src), int_id(_radio_id), int_id(_dst_id), _slot) self.STATUS[_slot]['RX_STREAM_ID'] = _stream_id self.STATUS[_slot]['RX_TIME'] = pkt_time self.STATUS[_slot]['RX_TGID'] = _dst_id @@ -141,7 +141,7 @@ class routerMASTER(HBMASTER): self.STATUS[_slot]['RX_LC'] = decoded['LC'] # If we don't have a voice header then don't wait to decode it from the Embedded LC - # just make a new one from the HBP header. + # just make a new one from the HBP header. This is good enough, and it saves lots of time else: self.STATUS[_slot]['RX_LC'] = const.LC_OPT + _dst_id + _rf_src @@ -155,8 +155,6 @@ class routerMASTER(HBMASTER): else: _tmp_bits = _bits _tmp_data = _data[:8] + rule['DST_GROUP'] + _data[11:15] + chr(_tmp_bits) + _data[16:] - #print(h(_data)) - #print(h(_tmp_data)) systems[_target].send_system(_tmp_data) logger.debug('(%s) Packet routed to %s system: %s', self._master, CONFIG['SYSTEMS'][_target]['MODE'], _target) @@ -165,38 +163,17 @@ class routerMASTER(HBMASTER): # Final actions - Is this a voice terminator? and set the last packet type if (_frame_type == const.HBPF_DATA_SYNC) and (_dtype_vseq == const.HBPF_SLT_VTERM) and (self.STATUS[_slot]['RX_TYPE'] != const.HBPF_SLT_VTERM): self.STATUS[_slot]['LC'] = '' - logger.info('(%s) Call stream END SUB: %s REPEATER: %s TGID %s, SLOT %s', self._master, int_id(_rf_src), int_id(_radio_id), int_id(_dst_id), _slot) - self.STATE[_slot]['RX_TYPE'] = _dtype_vseq + logger.info('(%s) Call stream END with STREAM ID: %s SUB: %s REPEATER: %s TGID %s, SLOT %s', self._master, int_id(_stream_id), int_id(_rf_src), int_id(_radio_id), int_id(_dst_id), _slot) + self.STATUS[_slot]['RX_TYPE'] = _dtype_vseq class routerCLIENT(HBCLIENT): def __init__(self, *args, **kwargs): HBCLIENT.__init__(self, *args, **kwargs) - self.embeddec_lc_rx = {'B': '', 'C': '', 'D': '', 'E': '', 'F': ''} - self.embeddec_lc_tx = {'B': '', 'C': '', 'D': '', 'E': '', 'F': ''} def dmrd_received(self, _radio_id, _rf_src, _dst_id, _seq, _slot, _call_type, _frame_type, _dtype_vseq, _stream_id, _data): - _bits = int_id(_data[15]) - if _call_type == 'group': - _routed = False - for rule in RULES[self._client]['GROUP_VOICE']: - _target = rule['DST_NET'] - if (rule['SRC_GROUP'] == _dst_id and rule['SRC_TS'] == _slot and rule['ACTIVE'] == True): - if rule['SRC_TS'] != rule['DST_TS']: - _tmp_bits = _bits ^ 1 << 7 - else: - _tmp_bits = _bits - _tmp_data = _data[:8] + rule['DST_GROUP'] + _data[11:15] + chr(_bits) + _data[16:] - #print(h(_data)) - #print(h(_tmp_data)) - systems[_target].send_system(_tmp_data) - _routed = True - - logger.debug('(%s) Packet routed to %s system: %s', self._client, CONFIG['SYSTEMS'][_target]['MODE'], _target) - - if not _routed: - logger.debug('(%s) Packet router no target TS/TGID %s/%s', self._client, _slot, int_id(_dst_id)) + return #************************************************ # MAIN PROGRAM LOOP STARTS HERE diff --git a/peer_ids.csv b/peer_ids.csv index 5ff5453..cb84c6c 100644 --- a/peer_ids.csv +++ b/peer_ids.csv @@ -4,6 +4,8 @@ 111204,N4IRS,Port Salerno,Florida,United States,444.97500,1,+5.000,Peer,TS1 TS2,N4IRS,,0,None
111205,AF4JC,Middleburg,Florida,United States,442.60000,1,+5.000,Master,Mixed Mode,AF4JC,,0,Brandmiester
111206,KG4IDD,ESPANIOLA,Florida,United States,443.40000,1,+5.000,Peer,TS1 TS2,KG4IDD,,1,Jacksonville, Fl
+111207,KJ4SHL,Tampa Downtown,Florida,United States,443.75250,1,+5.000,Master,TS1 TS2,KJ4SHL,,1,MotoDMR
+111208,NX4DN,PORTABLE RPT,Florida,United States,444.17500,1,+5.000,Peer,TS1 TS2,K4GFD,,0,K4USD
113601,WB2ZEX,Brooklyn,New York,United States,438.27500,1,-5.000,Peer,TS1 TS2,WB2ZEX,Time Slot
#1 - Group Call TG 444 NY Metro System wide-FT
#1 - Group Call TG 1 = World Wide -PTT
#1 - Group Call TG 3 = North America-PTT
#1 - Group Call TG 13 = World Wide English-PTT
#1 - Group Call TG 3172 = NE / Regional-PTT
#1 - Group Call TG 310 = Tac 310 -PTT
#1 - Group Call TG 311 = Tac 311 -PTT
#1 - Group Call TG 9998 = Parrot , Audio Test Server-PTT
#2 - member only private Talk Groups
,1,Bronx Trbo
113602,KC2NFB,East Meadow,New York,United States,444.40000,1,+5.000,Peer,TS1 TS2,KC2NFB,Time Slot
#1 - Group Call TG 444 NY Metro System wide  -FT
#2 - member only private Talk Groups,1,Bronx Trbo
113603,N2LEN,Warrensburg,New York,United States,442.05000,1,+5.000,Master,TS1 TS2,N2LEN,,1,DMR-MARC
@@ -26,6 +28,8 @@ 113621,NY4Z,Manhattan,New York,United States,442.05000,7,+5.000,Peer,TS1 TS2,NY4Z,Time Slot
#1 - Group Call TG 444 NY Metro System wide-FT
#2   member only private TG
,1,Bronx TRBO
113622,W2WCR,North Creek,New York,United States,442.25000,1,+5.000,Peer,TS1 TS2,N2LBT,,0,BrandMeister
113623,NY4Z,Briarcliff Manor,New York,United States,443.80000,3,+5.000,Master,TS1 TS2,NY4Z,,0,Bronx TRBO
+113624,KC2KVE,Parishville,New York,United States,442.30000,1,+5.000,Peer,TS1 TS2,KE2EMS,Local - TG 2 TS 2- Wide area coverage,Northern NY & Canada
Upstate NY - TG 31361 TS 1
New York Statewide- TG 3136 TS 2
North America- TG 3 TS 1
Worldwide-TG 1 TS 1-*
Worldwide English- TG 13 TS 1
New England 1-TG 8 TS 2- *
New England 2-TG 3181 TS 2- *
Vermont-TG 3150 TS 2-*
Canada Wide-TG 302 TS 1-
Ontario Wide- TG 3023 TS 2-
Tac 310- TG 310 TS 1-*
Tac 311- TG 311 TS 1-*
UA 113- TG 113 TS 1- *
US 123- TG 123 TS 1- *

* PTT

You Must Have [ARS] Disabled in Your Radio

Trustee-KE2EMS
Contact Email- KE2EMS@TWC.COM,1,CAN-TRBO
+113625,W2RGM,huntington,New York,United States,448.47500,1,-5.000,Peer,TS1 TS2,W2RGM,,1,cantrbo
113702,W4GG,Greensboro,North Carolina,United States,444.22500,1,+5.000,Peer,TS1 TS2,W4JLH,,0,PRN
200001,IPSC_EU1,,,Europe,,1,,,,DL5DI,,0,DMR-plus
200002,IPSC_EU2,,,Europe,,1,,,,DL5DI,,0,DMR-plus
@@ -103,6 +107,7 @@ 206405,ON0LN,Gruitrode,Limburg,Belgium,439.18750,1,-7.600,PEER,TS1 TS2,ON6ZG,,0,Hytera
206410,ON0BAF,Sint-Truiden,Limburg,Belgium,439.06250,1,-7.600,Peer,TS1 TS2,ON5ARE,,0,BM
206501,ON0HOP,Vloesberg-Flobecq,Wal. Brabant,Belgium,438.91250,1,-7.600,PEER,TS1 TS2,ON1DGR,,0,BM
+206502,ON0CVH,Waterloo,Wal. Brabant,Belgium,438.48750,2,-7.600,,,ON8HH,,0,BrandMeister
206601,ON0MON,Rouveroy,Hainaut,Belgium,439.20000,2,-7.600,,,ON8CB,,0,None
206602,ON0LLV,La Hestre,Hainaut,Belgium,438.87500,2,-7.600,PEER,TS1 TS2,ON7FI,,0,None
206700,ON0NR,Wepion,Namur,Belgium,439.53750,2,-7.600,Peer,TS1 TS2,ON4PB,,0,BM
@@ -119,7 +124,7 @@ 208006,F5ZIW,BURES SUR YVETTE,le-de-France,France,430.20000,1,9.400,Peer,TS1 TS2,F6CNB,,0,None
208007,F1ZGI,Rueil Malmaison,Île-de-France,France,430.57500,1,9.400,PEER,TS1 TS2,F1TUV,,0,BM
208008,F1ZGO,Meudon,Île-de-France,France,430.05000,1,9.400,PEER,TS1 TS2,F1TDI,,0,DMRF
-208010,F1ZWD,Paris,Île-de-France,France,430.15000,1,9.400,PEER,TS1 TS2,F1HBG,,0,BM
+208010,F1ZWD,Paris,Île-de-France,France,430.15000,1,9.4,PEER,TS1 TS2,F1HBG,,0,DMR-plus
208020,F1ZJU,Rebais,le-de-France,France,430.56250,1,9.400,,,F1SGO,,0,BM
208025,F1ZPQ,Parvis de la Defense,Île-de-France,France,430.23750,1,9.400,PEER,TS1 TS2,F1SHS,,0,Motorola
208065,F1SHS,,Île-de-France,France,430.23750,1,9.400,PEER,TS1 TS2,F1SHS,,0,DMR-plus
@@ -144,7 +149,7 @@ 208208,F1ZDI,Lyon (69),Rhne-Alpes,France,439.35000,1,-7.600,PEER,TS1 TS2,F1JMN,,0,Hytera
208209,F1ZJH,Les Andrieux (05),Rhne-Alpes,France,439.35000,1,-7.600,PEER,TS1 TS2,F1JMN,,0,Hytera
208218,F1ZFG,Relais du Beaujolais,Rhône-Alpes,France,439.80000,1,-9.400,PEER,TS1 TS2,F4HIN,,0,BM
-208238,F4CZX,Saint Bernard,Rhône-Alpes,France,430.56250,1,9.400,PEER,TS1 TS2,F4CZX,,0,DMR-plus
+208238,F4CZX,Saint Bernard,Rhône-Alpes,France,430.56250,1,9.4,PEER,TS1 TS2,F4CZX,,0,DMR-plus
208248,F1ZJQ,Chartreuse,Rhne-Alpes,France,430.56250,1,9.400,,,F4CZX,,0,Motorola
208273,F1ZIQ,MERIBEL,Rhne-Alpes,France,431.70000,1,7.600,Peer,TS1 TS2,F1SLP,,0,BrandMeister
208301,F1ZJD,La Tour du Crieu,Midi-Pyrnes,France,439.77500,1,-9.400,Peer,TS1 TS2,F1IZL,,0,DMR-plus
@@ -177,8 +182,9 @@ 208939,F1ZJR,MOIRANS-EN-MONTAGNE,All Others,France,430.40000,1,9.400,,,F4ALM,,0,BrandMeister
208953,F1ZHJ,TOURS,All Others,France,439.90000,1,-9.400,Peer,TS1 TS2,F1GXY,,0,None
208954,F1ZET,Nancy (54),All Others,France,439.40000,1,-7.600,PEER,TS1 TS2,F4GEN,,0,BM
-208955,F1ZGK,Nancy (54),All Others,France,439.35000,1,-7.600,Peer,TS1 TS2,F4GEN,,0,None
+208955,F1ZGK,Nancy (54),All Others,France,439.50000,1,-7.6,Peer,TS1 TS2,F4GEN,,0,DMR-plus
208957,F1ZZF,Thionville,All Others,France,439.70000,1,0.000,Peer,TS1 TS2,F8ARO,,0,None
+208958,F5ZFM,Thionville 57,All Others,France,439.70000,1,-7.600,,,F8ARO,,0,BrandMeister
208959,F1ZBE,Valenciennes,All Others,France,433.02500,1,-1.600,PEER,TS1 TS2,F1MIJ,,0,Motorola
208962,F1ZVV,Wimereux,All Others,France,430.35000,1,9.400,PEER,TS1 TS2,F1CWQ,,0,BM
208966,F4GEN,Villers les Nancy,All Others,France,433.65000,1,0.000,Peer,TS1 TS2,F4GEN,,0,None
@@ -190,11 +196,12 @@ 214104,ED1ZAU,Monte Naranco Oviedo,Principado de Asturi,Spain,438.50000,1,-7.600,PEER,TS1 TS2,EB1TK,,0,BM
214105,ED1ZAW,LEON,Castile and Len,Spain,438.40000,1,-7.600,Peer,TS1 TS2,EA1YC,,0,BM
214106,ED1ZAK,Repetidor Dstar Burg,Castilla y Leon,Spain,438.65000,1,7.600,Peer,TS1 TS2,EA1IDU,,0,BrandMeister
+214107,ED1ZAB,Salamanca,Castile and Len,Spain,438.50000,1,-7.600,,,EB1EGO,,0,BM
214110,ED1YBK,Ourense,Galicia,Spain,438.50000,1,-7.600,,,EA1CI,,0,BrandMeister
214111,ED1YBY,IN62IG,Galicia,Spain,438.20000,1,-7.600,PEER,TS1 TS2,EA1CI,,0,BrandMeister
214112,ED1ZAR,Monte Fontardion,Galicia,Spain,438.50000,1,-7.600,PEER,TS1 TS2,EA1RKF,,0,BM
214120,ED1ZAS,Gijon,Principado de Asturi,Spain,438.30000,1,-7.600,,,EB1TK,,0,BrandMeister
-214201,ED2ZAD,Monte Sollube,Pais Vasco,Spain,438.20000,1,-7.6,PEER,TS1 TS2,EA2IP,,0,BM
+214201,ED2ZAD,Monte Sollube,Pais Vasco,Spain,438.20000,1,-7.6,PEER,TS1 TS2,EA2IP,,0,DMR-plus
214202,ED2ZAC,BILBAO,Basque Country,Spain,438.20000,1,-7.6,PEER,TS1 TS2,EA2IP,,0,DMR-plus
214203,ED2YAO,Bilbao,Basque Country,Spain,438.95000,1,-7.600,PEER,TS1 TS2,EB2DJB,,0,None
214204,ED2YAR,La Higa de Monreal,Navarra,Spain,438.30000,1,-7.600,PEER,TS1 TS2,EA2DDW,,0,BM
@@ -204,19 +211,21 @@ 214215,ED2ZAF,Arnotegi - Bilbao,Pais Vasco,Spain,438.52500,1,-7.600,,,EB2DJB,,0,BM
214222,ED2YAV,Bilbao,Basque Country,Spain,439.15000,1,-7.600,,,EA2IP,,0,BrandMeister
214300,EA3DKP,Roses,,Spain,439.00000,1,-7.600,PEER,TS1 TS2,EA3DKP,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 214 = Spain 1
Time Slot #1 - Group Call 9 = Local 1

Time Slot #2 - Group Call 214 = Spain 2
Time Slot #2 - Group Call 8 = Regional > DF0MOT+DB0AFZ in Germany
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio.


Contact: Ricardo N. Solis, EA3DKP
Email: ea3dkp@yahoo.com,1,DMR-DL
-214301,ED3ZAQ,Castellar del Valles,Cataluna,Spain,438.52500,1,-7.600,PEER,TS1 TS2,EA3ABN,,0,BM
+214301,ED3ZAQ,Castellar del Valles,Cataluna,Spain,438.52500,1,-7.6,PEER,TS1 TS2,EA3ABN,,0,BM
214302,ED3YAC,Castellar del Valles,Cataluna,Spain,438.80000,1,-7.6,PEER,TS1 TS2,EA3ABN,,0,DMR-plus
214303,ED3ZAK,Barcelona Tibidabo,Cataluna,Spain,438.41250,1,-7.600,PEER,TS1 TS2,EA3ABN,,0,BM
-214304,ED3ZAN,Rocacorba (Girona),Cataluna,Spain,438.31250,1,-7.600,Peer,TS1 TS2,EA3ABN,,0,DMR-plus
+214304,ED3ZAN,Rocacorba (Girona),Cataluna,Spain,145.70000,1,-0.600,Peer,TS1 TS2,EA3ABN,,0,BM
214305,ED3ZAH,Barcelona,Cataluna,Spain,439.00000,1,-7.6,PEER,TS1 TS2,EA3IK,,0,DMR-plus
-214306,ED3YAI,GIRONA,Cataluna,Spain,439.37500,1,-7.600,PEER,TS1 TS2,EA3IK,,0,DMR-plus
+214306,ED3YAI,GIRONA,Cataluna,Spain,439.37500,1,-7.6,PEER,TS1 TS2,EA3IK,,0,DMR-plus
214307,ED3YAY,Lleida,Cataluna,Spain,439.17500,1,-7.600,PEER,TS1 TS2,EA3HKB,,0,Hytera
214308,ED3ZAG,Barcelona,Cataluna,Spain,438.31250,1,-7.6,PEER,TS1 TS2,EA3ABN,,0,DMR-plus
214309,ED3YAK,Montjuic - Barcelona,Cataluna,Spain,438.36250,1,-7.600,PEER,TS1 TS2,EA3FRB,,0,DMR-plus
214310,ED3YAH,Caro,Cataluna,Spain,439.27500,1,-7.600,PEER,TS1 TS2,EB3TC,,0,Hytera
214311,ED3YAM,Collsuspina,Cataluna,Spain,438.77500,1,-7.600,PEER,TS1 TS2,EB3TC,,0,Hytera
214312,ED3ZAA,Montseny,Cataluna,Spain,438.20000,1,-7.600,,,EA3GFS,,0,BrandMeister
+214313,ED3YAP,Figueres,Cataluna,Spain,145.70000,1,-0.600,PEER,TS1 TS2,EA3HSI,,0,BrandMeister
214314,ED3ZAR,Almoster-Tarragona,Cataluna,Spain,438.45000,1,-7.6,,,EA3ES,,0,DMR-plus
+214315,ED3YAK,Montjuic - Barcelona,Cataluna,Spain,438.43750,1,-7.600,,,EB3GHN,,0,BrandMeister
214319,ED3YAN,BADALONA,Cataluna,Spain,438.46250,1,-7.600,,,EB3GHN,,0,BrandMeister
214333,ED3YAB,Montserrat - BCN,Cataluna,Spain,439.41250,1,-7.6,PEER,TS1 TS2,EA3IK,,0,DMR-plus
214401,ED4ZAC,In60xa,excluding Albacete,Spain,438.30000,1,-7.600,PEER,TS1 TS2,EA4HL,,0,BM
@@ -226,9 +235,9 @@ 214501,ED5ZAH,Chinchilla,Castile-La Mancha,Spain,438.50000,1,-7.600,PEER,TS1 TS2,EA5IJC,,0,BM
214502,ED5ZAE,MURCIA-CARRASCOY,Regiuan de Murcia,Spain,438.30000,1,-7.600,PEER,TS1 TS2,EA5GVK,,0,Hytera
214503,ED5ZAJ,Alicante,Valencian Community,Spain,438.50000,1,-7.600,PEER,TS1 TS2,EA5IHI,,0,BM
-214504,EA5ERC,Chert, Castellon,Valencian Community,Spain,438.43750,1,-7.600,,,EB3GHN,,0,BrandMeister
+214504,EA5ERC,Chert, Castellon,Valencian Community,Spain,438.26250,1,-7.600,,,EB3GHN,,0,BM
214555,ED5ZAD,Cid, Petrer Alicante,Comunidad Valenciana,Spain,439.17500,1,-7.600,PEER,TS1 TS2,EA5GF,,0,BM
-214601,ED6ZAA,FELANITX - MALLORCA,Islas Baleares,Spain,430.65000,1,7.600,,,EA6QJ,,0,DMR-plus
+214601,ED6ZAA,FELANITX - MALLORCA,Islas Baleares,Spain,430.65000,1,7.6,,,EA6QJ,,0,DMR-plus
214602,ED6ZAB,Randa - Mallorca,Islas Baleares,Spain,438.45000,1,-7.600,,,EA6QJ,,0,BrandMeister
214701,ED7ZAJ,CCMD/Gibalbin-Cadiz,Andalucia,Spain,438.30000,1,-7.6,PEER,TS1 TS2,EA7DYY,,0,DMR-plus
214702,ED7ZAC,Malaga,Andalucia,Spain,438.45000,1,-7.600,PEER,TS1 TS2,EA7BJ,,0,Hytera
@@ -250,6 +259,7 @@ 216702,HG7RUG,Dobogoko,Pest County,Hungary,438.52500,1,-7.600,PEER,TS1 TS2,HA3KZ,,0,BM
216790,HG9RUE,Kis-Kohat,Borsod-Abauj-Zemplen,Hungary,438.55000,1,-7.600,PEER,TS1 TS2,HA3KZ,,0,BM
219001,9A0DSK,Cepelis, Petrinja,,Croatia,438.25000,1,-7.600,,,9A6NVI,,0,BrandMeister
+220011,YU0UBV,BEOGRAD,,Serbia,434.95000,1,-1.600,,,YU1VI,,0,BrandMeister
222000,IR0DU,Rome Center,,Italy,430.96250,1,5.000,PEER,TS1 TS2,IK0YYY,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 222 = Italy 1
Time Slot #1 - Group Call 9 = Local 1

Time Slot #2 - Group Call 222 = Italy 2
Time Slot #2 - Group Call 8 = Regional
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio


Contact: Luca Ferrara, IKYYY
Email: ik0yyy@libero.it,1,DMR-plus
222001,IK0YYY,S.Marinella,,Italy,430.93750,1,5.000,PEER,TS1 TS2,IK0YYY,,0,DMR-plus
222002,IR0UEJ,Mt. San Biagio,Lazio,Italy,430.42500,1,5.000,Peer,TS1,IZ0CZW,,0,BM
@@ -265,7 +275,7 @@ 222012,IR0UFZ,M. Orlando - Gaeta,Lazio,Italy,430.45000,1,5.000,PEER,TS1 TS2,IW0CPK,,0,BM
222013,IR0AAC,Bettona,Umbria,Italy,431.43750,1,1.600,PEER,TS1 TS2,IW0RED,,0,None
222014,IR0UGF,Assisi,Umbria,Italy,431.43750,1,1.600,PEER,TS1 TS2,IW0RED,,0,DMR-plus
-222015,IR0UAJ,Castelli Romani,,Italy,430.72500,1,5.000,PEER,TS1 TS2,IW0HRF,,0,BM
+222015,IR0UAJ,Castelli Romani,,Italy,430.72500,1,5.000,PEER,TS1 TS2,IW0HRF,,0,DMR-plus
222016,IR0CQ,Assisi,Umbria,Italy,145.57500,1,-0.600,PEER,TS1 TS2,IW0RED,,0,None
222017,IS0BZC,Senorbi,$cnty,Italy,430.85000,1,5.000,Peer,TS1 TS2,IS0BZC,,0,IT-DMR-Network
222020,IK0HKA,M.te Cassino,Lazio,Italy,430.40000,1,5.000,PEER,TS1 TS2,IZ0ZIP,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 222 = Italy 1
Time Slot #1 - Group Call 9 = Local 1

Time Slot #2 - Group Call 222 = Italy 2
Time Slot #2 - Group Call 8 = Regional
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio,1,DMR-Italia
@@ -278,7 +288,7 @@ 222050,IR0UGM,M.te Cosce,Lazio,Italy,430.17500,1,1.600,PEER,TS1 TS2,IW0REF,,0,None
222051,I0KMJ,Terni,Umbria,Italy,430.93750,1,5.000,Peer,TS1 TS2,I0KMJ,,0,BM
222060,IR0UEI,M.te San Pancrazio,Umbria,Italy,431.46250,1,1.600,PEER,TS1 TS2,IW0REF,,0,BrandMeister
-222067,IK2OVD,Genna Gonnesa,Lombardy,Italy,430.93750,1,5.000,PEER,TS1 TS2,IK2OVD,,0,Motorola
+222067,IK2OVD,Genna Gonnesa,Lombardy,Italy,430.93750,1,5.000,PEER,TS1 TS2,IK2OVD,,0,DMR-plus
222068,IW0RQJ,Assisi,Umbria,Italy,430.42500,1,5.000,PEER,TS1 TS2,IW0RQJ,,0,DMR-plus
222069,IR0UAS,Monte Serano (PG),Umbria,Italy,430.21250,1,5.600,Peer,TS1 TS2,IW0RED,,0,BM
222070,IR0AY,Assisi,Umbria,Italy,431.43750,1,1.600,Peer,TS1 TS2,IW0RED,,0,None
@@ -319,24 +329,26 @@ 222204,IR2UDS,Mt. Penice,Lombardy,Italy,431.37500,1,1.600,Master,TS1 TS2,IW2MIL,,0,BM
222205,IR2UDM,Valcava,Lombardy,Italy,144.62500,1,1.363,Peer,TS1 TS2,IW2DCK,,0,BM
222206,IR2UFO,Sulzano,Lombardy,Italy,430.35000,1,5.500,PEER,TS1 TS2,IW2KPM,,0,BM
-222210,IW2JXY,Vedano Olona (Va),Lombardy,Italy,145.63750,1,-0.600,PEER,TS1 TS2,IW2JXY,,0,DMR-ITALIA
+222210,IW2JXY,Vedano Olona (Va),Lombardy,Italy,145.63750,1,-0.6,PEER,TS1 TS2,IW2JXY,,0,DMR-ITALIA
222215,IR2CL,Gravedona ed Uniti,Lombardy,Italy,430.06250,1,5.000,PEER,TS1 TS2,IK2ZLJ,,0,BM
222216,IR2UGK,Gravedona ed Uniti,Lombardy,Italy,430.18750,1,1.600,Peer,TS1 TS2,IK2ZLJ,,0,Motorola
222260,IZ2FTR,Monte Quarone,Lombardy,Italy,145.58750,1,-0.600,PEER,TS1 TS2,IZ2FTR,,0,BM
-222267,IK2OVD,VENEGONO SUPERIORE,Lombardy,Italy,145.77500,1,-0.600,PEER,TS1 TS2,IK2OVD,,0,DMR-Italia
+222267,IK2OVD,VENEGONO SUPERIORE,Lombardy,Italy,145.77500,1,-0.6,PEER,TS1 TS2,IK2OVD,,0,DMR-Italia
222300,IR3UN,M.te Paganella,Trentino-Alto Adige/,Italy,430.96250,1,5.000,PEER,TS1 TS2,IW3BYL,,0,BM
222301,IK3HHG,Col Visentin,Veneto,Italy,430.70000,1,5.000,Peer,TS1 TS2,IK3HHG,,0,DMR-CISARNET
222303,IR3UDD,Monte Cesen,Veneto,Italy,430.70000,1,5.000,Peer,TS1 TS2,IW3IBG,,0,BM
222304,IW3BTS,M.te Penegal,Tennessee,Italy,430.98750,1,5.000,PEER,TS1 TS2,IW3BTS,,0,BM
222305,IN3CBN,Polsa di Brentonico,Trentino-Alto Adige,Italy,430.93750,1,5.000,Peer,TS1 TS2,IN3CBN,,0,BM
-222306,IW3BTS,PLAN DE CORONES,Tennessee,Italy,430.92500,1,5.000,PEER,TS1 TS2,IW3BUA,,0,BM
+222306,IW3BTS,PLAN DE CORONES,Tennessee,Italy,0.00000,1,0.000,PEER,TS1 TS2,IW3BUA,,0,BM
222307,IN3ELZ,Val di Fassa,Trentino-Alto Adige,Italy,430.92500,1,5.000,PEER,TS1 TS2,IW3BYL,,0,BrandMeister
222308,IR3UGT,Monte Ricco (PD),Veneto,Italy,430.85000,1,5.000,Peer,TS1 TS2,IZ3CLG,,0,BM
222310,IR3DB,Peschiera del Garda,Veneto,Italy,145.79350,1,-0.600,Peer,TS1 TS2,IK3ITU,,0,BM
222311,IZ3VBY,Col Visentin,Veneto,Italy,430.98750,2,5.000,PEER,TS1 TS2,IZ3VBY,,0,BM
222312,IR3UHL,Peschiera del Garda,Veneto,Italy,430.72500,1,5.000,Peer,TS1 TS2,IZ3CLG,,0,Hytera
222315,IR3UGZ,Chioggia Venice,Veneto,Italy,430.87500,1,5.000,Peer,TS1 TS2,IZ3CLG,,0,Hytera
+222320,IR3UFS,Monte Belvedere,Friuli-Venezia Giuli,Italy,430.93750,1,5.000,PEER,TS1 TS2,IW3ROW,,0,BrandMeister
222337,IQ3VO,Verona,Veneto,Italy,430.90000,1,5.000,Peer,TS1 TS2,IZ3ATU,,0,BM
+222345,IR3AO,Vetta Marmolada,Veneto,Italy,430.46250,1,7.400,PEER,TS1 TS2,IZ3WWF,,0,BM
222374,IW3BTS,M.te Plose,Tennessee,Italy,430.91250,1,5.000,Peer,TS1 TS2,IW3BTS,,0,BM
222377,IR3UDX,Polsa di Brentonico,Trentino-Alto Adige,Italy,430.93750,1,5.000,Peer,TS1 TS2,IN3CBN,,0,Motorola
222393,IQ3DD,Monte Rite 2183 m,,Italy,431.46250,1,1.600,PEER,TS1 TS2,IZ3ZUJ,,0,BM
@@ -407,7 +419,7 @@ 226602,YO6OFL,Targu Mures,Mure County,Romania,439.80000,1,-9.400,Peer,TS1 TS2,YO6OFL,,0,BM
226603,YO6NAM,Tampa,Brasov,Romania,145.72500,1,-0.600,Peer,TS1 TS2,YO6OSC,,0,BM
226901,YO9D,Ploiesti,Prahova,Romania,439.80000,1,-9.400,Master,TS1 TS2,YO3HJV,,0,BM
-228001,HB9DR,HAM-RADIO,,Switzerland,438.22500,2,-7.600,PEER,TS1 TS2,HB9SDB,,0,BM
+228001,HB9DR,HAM-RADIO,,Switzerland,438.30000,1,-7.600,PEER,TS1 TS2,HB9SDB,,0,BM
228101,HB9GE,Geneva/City,Geneva,Switzerland,438.67500,1,-7.600,Peer,TS1 TS2,HB9IBG,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 11 = Worldwide French

Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 21 = European French
Time Slot #1 - Group Call 228 = Switzerland 1
Time Slot #1 - Group Call 9 = Local HB9 1


Time Slot #2 - Group Call 228 = Switzerland 2
Time Slot #2 - Group Call 8 = Regional Lake Geneva French-speaking
Time Slot #2 - Group Call 9 = Local HB9 2

You Must Have [ARS] Disabled Within Your Radio.




Contact: Hipo Tournier, HB9IBG
Email: hb9ge@bluewin.ch,1,BM
228102,HB9GE,Meyrin,,Switzerland,438.55000,1,-7.600,PEER,TS1 TS2,HB9IBG,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 11 = Worldwide French

Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 21 = European French
Time Slot #1 - Group Call 228 = Switzerland 1
Time Slot #1 - Group Call 9 = Local HB9 1


Time Slot #2 - Group Call 228 = Switzerland 2
Time Slot #2 - Group Call 8 = Regional Lake Geneva French-speaking
Time Slot #2 - Group Call 9 = Local HB9 2

You Must Have [ARS] Disabled Within Your Radio.





Contact: Hipo Tournier, HB9IBG
Email: hb9ge@bluewin.ch,1,BM
228103,HB9AE,Lutry,Vaud,Switzerland,439.20000,1,-7.600,Peer,TS1 TS2,HB9DBB,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 228 = Switzerland 1
Time Slot #1 - Group Call 9 = Local HB9 1

Time Slot #2 - Group Call 228 = Switzerland 2
Time Slot #2 - Group Call 8 = Regional Lake Geneva French-speaking
Time Slot #2 - Group Call 9 = Local HB9 2
You Must Have [ARS] Disabled Within Your Radio.


Contact: Jean Michel Clerc , HB9DBB
Email: HB9DBB@uska.ch,1,BM
@@ -432,7 +444,7 @@ 228122,HB9MM,Les Pliades/Blonay,Westschweiz-Sud,Switzerland,439.56250,1,-7.600,,,HB9MBP,,0,BM
228123,HB9PE,Pays-d Enhaut VD,Westschweiz-Sud,Switzerland,439.66250,1,-7.600,,,HB9FMF,,0,BM
228124,HB4FL,LA BERNEUSE,Westschweiz-Sud,Switzerland,439.57500,2,-7.600,,,HB9ADJ,,0,BM
-228125,HB9VD,Le Chasseron,Westschweiz-Sud,Switzerland,145.73750,1,-0.600,,,HB9TJU,,0,BM
+228125,HB9VD,Le Chasseron,Westschweiz-Sud,Switzerland,438.33750,1,-7.600,,,HB9TJU,,0,BM
228201,HB9FG,Le Landeron,Westschweiz-Nord,Switzerland,438.45000,1,-7.600,,,HB9EZV,,0,BrandMeister
228300,HB9BO,Interlaken,Bern,Switzerland,439.56250,1,-7.600,Master,TS1 TS2,HB9DUU,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 228 = Switzerland 1
Time Slot #1 - Group Call 9 = Local HB9 1

Time Slot #2 - Group Call 228 = Switzerland 2
Time Slot #2 - Group Call 8 = Regional
German-speaking
Time Slot #2 - Group Call 9 = Local HB9 2
You Must Have [ARS] Disabled Within Your Radio.


Contact: Christian, HB9DUU
Email: hb9duu@gmx.net,1,SwissDMR
228301,HB9F,Brienzer-Rothorn,Bern,Switzerland,439.50000,1,-7.600,Peer,TS1 TS2,HB9DUU,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 228 = Switzerland 1
Time Slot #1 - Group Call 9 = Local HB9 1

Time Slot #2 - Group Call 228 = Switzerland 2
Time Slot #2 - Group Call 8 = Regional
German-speaking
Time Slot #2 - Group Call 9 = Local HB9 2
You Must Have [ARS] Disabled Within Your Radio.


Contact: Christian, HB9DUU
Email: hb9duu@gmx.net,1,BM
@@ -442,7 +454,7 @@ 228305,HB9F,Bern-City,Bern und Oberwallis,Switzerland,438.58750,1,-7.600,PEER,TS1 TS2,HB9DUU,,0,BM
228306,HB9BG,Belp (BE),Bern und Oberwallis,Switzerland,438.23750,1,-7.600,PEER,TS1 TS2,HB9DTZ,,0,DMR-plus
228307,HB9BG,Falkenfluh (BE),Bern und Oberwallis,Switzerland,438.32500,1,-7.600,PEER,TS1 TS2,HB9DTZ,,0,DMR-plus
-228308,HB9AK,Landstuhl / BE,Bern und Oberwallis,Switzerland,438.30000,1,-7.6,PEER,TS1 TS2,HB9RNS,,0,DMR-plus
+228308,HB9AK,Landstuhl / BE,Bern und Oberwallis,Switzerland,438.30000,1,-7.6,PEER,TS1 TS2,HB9SDB,,0,DMR-plus
228309,HB9F,Test / Entwicklung,Bern und Oberwallis,Switzerland,439.15000,1,-7.600,Peer,TS1 TS2,HB9DUU,,0,BM
228310,HB9DC,Muenster VS,Bern und Oberwallis,Switzerland,438.57500,5,-7.600,PEER,TS1 TS2,HB9DRX,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 228 = Switzerland 1
Time Slot #1 - Group Call 9 = Local HB9 1

Time Slot #2 - Group Call 228 = Switzerland 2
Time Slot #2 - Group Call 8 = Regional
German-speaking
Time Slot #2 - Group Call 9 = Local HB9 2
You Must Have [ARS] Disabled Within Your Radio.


Contact: Nick, HB9DRX
Email: sysop@hb9dc.ch (https://3c.web.de/mail/client/mail/mailto;jsessionid=CA4A7F9CA7C3416A0B0BA4ACBE8A6843-n3.bs51a?to=sysop%40hb9dc.ch&selection=tfol11a5e69aed60d300),1,BM
228311,HB9F,Bern-Wankdorf,Bern und Oberwallis,Switzerland,145.68750,1,-0.600,Peer,TS1 TS2,HB9DUU,,0,BM
@@ -461,7 +473,7 @@ 228407,HB9DR,Langendorf / SO,Basel/Solothurn,Switzerland,438.50000,3,-7.6,PEER,TS1 TS2,HB9SDB,,0,DMR-plus
228408,HB9NFB,Reinach (BL),Basel/Solothurn,Switzerland,438.37500,1,-7.600,Peer,TS1 TS2,HB9FWC,,0,None
228409,HB9DM,Langenbruck,Basel/Solothurn,Switzerland,438.38750,1,-7.600,Peer,TS1 TS2,HB9FEF,,0,BM
-228501,HB9DR,Wohlen / AG,Aargau,Switzerland,438.20000,1,-7.6,PEER,TS1 TS2,HB9DQY,,0,DMR-plus
+228501,HB9DR,Wohlen / AG,Aargau,Switzerland,438.20000,1,-7.6,PEER,TS1 TS2,HB9SDB,,0,DMR-plus
228601,HB9DD,Mt. Generoso,Zentralschweiz und T,Switzerland,438.48750,1,-7.600,PEER,TS1 TS2,HB9ODP,,0,BM
228602,HB9DD,Mt. Tamaro,Zentralschweiz und T,Switzerland,438.46250,1,-7.600,PEER,TS1 TS2,HB9ODP,,0,BM
228603,HB9DD,Airolo,Zentralschweiz und T,Switzerland,438.48750,1,-7.600,,,HB9ODP,,0,BM
@@ -477,24 +489,25 @@ 228701,HB9DD,Poschiavo / GR,Graubuenden,Switzerland,438.48750,1,-7.6,PEER,TS1 TS2,HB9FPO,,0,DMR-plus
228702,HB9HAI,Weissfluh GR,Graubuenden,Switzerland,439.47500,7,-7.600,Peer,TS1 TS2,HB9DRX,,0,Motorola
228703,HB9DR,Chur / GR,Graubuenden,Switzerland,438.26250,1,-7.6,PEER,TS1 TS2,HB9SDB,,0,DMR-plus
-228704,HB9OK,Viano / GR,Graubuenden,Switzerland,439.56250,1,-7.6,PEER,TS1 TS2,HB9FPO,,0,DMR-plus
+228704,HB9OK,Viano / GR,Graubuenden,Switzerland,439.56250,1,-7.6,PEER,TS1 TS2,HB9SDB,,0,DMR-plus
228706,HB9DR,Hinterrhein / GR,Graubuenden,Switzerland,439.56250,2,-7.6,PEER,TS1 TS2,HB9SDB,,0,DMR-plus
228801,HB9DC,Lake of Zuerich,,Switzerland,439.07500,5,-7.600,PEER,TS1 TS2,HB9DRX,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 228 = Switzerland 1
Time Slot #1 - Group Call 9 = Local HB9 1

Time Slot #2 - Group Call 228 = Switzerland 2
Time Slot #2 - Group Call 8 = Regional
German-speaking
Time Slot #2 - Group Call 9 = Local HB9 2
You Must Have [ARS] Disabled Within Your Radio.


Contact: Nick, HB9DRX
Email: sysop@hb9dc.ch (https://3c.web.de/mail/client/mail/mailto;jsessionid=CA4A7F9CA7C3416A0B0BA4ACBE8A6843-n3.bs51a?to=sysop%40hb9dc.ch&selection=tfol11a5e69aed60d300),1,SwissDMR
228802,HB9DC,Test/Entwicklung,Zuerich und Thurgau,Switzerland,438.33750,5,-7.600,PEER,TS1 TS2,HB9DRX,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 228 = Switzerland 1
Time Slot #1 - Group Call 9 = Local HB9 1

Time Slot #2 - Group Call 228 = Switzerland 2
Time Slot #2 - Group Call 8 = Regional
German-speaking
Time Slot #2 - Group Call 9 = Local HB9 2
You Must Have [ARS] Disabled Within Your Radio.



Contact: Nick, HB9DRX
Email: sysop@hb9dc.ch (https://3c.web.de/mail/client/mail/mailto;jsessionid=CA4A7F9CA7C3416A0B0BA4ACBE8A6843-n3.bs51a?to=sysop%40hb9dc.ch&selection=tfol11a5e69aed60d300),1,BM
228803,HB9DC,Zuerichsee / Test,Zuerich und Thurgau,Switzerland,438.57500,5,-7.600,PEER,TS1 TS2,HB9DRX,,0,BM
228804,HB9SP,Zuerich/City,,Switzerland,439.00000,5,-7.600,PEER,TS1 TS2,HB9DRX,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 228 = Switzerland 1
Time Slot #1 - Group Call 9 = Local HB9 1

Time Slot #2 - Group Call 228 = Switzerland 2
Time Slot #2 - Group Call 8 = Regional
German-speaking
Time Slot #2 - Group Call 9 = Local HB9 2
You Must Have [ARS] Disabled Within Your Radio.


Contact: Dany, HB9ZIC
Email: hb9zic@uska.ch,1,SwissDMR
-228805,HB9DR,Immenberg / TG,Zuerich und Thurgau,Switzerland,439.43750,1,-7.6,PEER,TS1 TS2,HB9EIY,,0,DMR-plus
+228805,HB9DR,Immenberg / TG,Zuerich und Thurgau,Switzerland,439.43750,1,-7.6,PEER,TS1 TS2,HB9SDB,,0,DMR-plus
228806,HB9DC,Limmernsee GL,Zuerich und Thurgau,Switzerland,145.68750,5,-0.600,PEER,TS1 TS2,HB9DRX,,0,SwissDMR
-228807,HB9ZF,Bachtel / ZH,Zuerich und Thurgau,Switzerland,439.10000,1,-7.6,PEER,TS1 TS2,HB9MNP,,0,DMR-plus
+228807,HB9ZF,Bachtel / ZH,Zuerich und Thurgau,Switzerland,439.10000,1,-7.600,PEER,TS1 TS2,HB9MNP,,0,BM
228808,HB9DC,Maennedorf ZH,Zuerich und Thurgau,Switzerland,438.48750,5,-7.600,PEER,TS1 TS2,HB9DRX,,0,BM
228809,HB9AK,Hoernli / ZH,Zuerich und Thurgau,Switzerland,438.60000,1,-7.6,PEER,TS1 TS2,HB9PAE,,0,DMR-plus
-228810,HB9DR,Sulgen / TG,Zuerich und Thurgau,Switzerland,439.57500,1,-7.6,PEER,TS1 TS2,HB9KOQ,,0,DMR-plus
+228810,HB9DR,Sulgen / TG,Zuerich und Thurgau,Switzerland,439.57500,1,-7.6,PEER,TS1 TS2,HB9SDB,,0,DMR-plus
228811,HB9ZF,Uetliberg / ZH,Zuerich und Thurgau,Switzerland,438.26250,2,-7.6,PEER,TS1 TS2,HB9MNP,,0,DMR-plus
228812,HB9SP,Siblinger Randen,Zuerich und Thurgau,Switzerland,438.46250,5,-7.600,Peer,TS1 TS2,HB9DRX,,0,Motorola
228891,HB9DR,Waedenswil / ZH,,Switzerland,438.50000,2,-7.6,PEER,TS1 TS2,HB9SDB,,0,DMR-plus
228892,HB9DR,IT-DMR,,Switzerland,439.48750,1,-7.6,PEER,TS1 TS2,HB9SDB,,0,IPSC
228893,HB9DR,FR-DMR,Zuerich und Thurgau,Switzerland,439.92500,1,-9.4,PEER,TS1 TS2,HB9SDB,,0,IPSC
-228901,HB9DR,St.Gallen-City / SG,Ostschweiz,Switzerland,438.22500,2,-7.6,PEER,TS1 TS2,HB9ASF,,0,DMR-plus
+228901,HB9DR,St.Gallen-City / SG,Ostschweiz,Switzerland,438.22500,2,-7.6,PEER,TS1 TS2,HB9SDB,,0,DMR-plus
+228902,HB9DR,Walzenhausen / AR,Ostschweiz,Switzerland,438.48750,1,-7.600,PEER,TS1 TS2,HB9SDB,,0,DMR+
230101,OK0DBY,Praha 6,Hlavni mesto Praha,Czech Republic,439.32500,1,-7.600,Peer,TS1 TS2,OK1MDX,,0,Hytera
230110,OK0DRB,Plavec, Jesenice,Central Bohemian Reg,Czech Republic,439.48750,1,-7.600,Peer,TS1 TS2,OK7RB,,0,BrandMeister
230199,OK0OMX,Praha,ustu nad Labem Regio,Czech Republic,439.52500,1,-7.600,PEER,TS1 TS2,OK1MX,,0,BM
@@ -529,7 +542,7 @@ 232103,OE3XWU,Hochwechsel,Niederoesterreich,Austria,439.07500,1,-7.600,Peer,TS1 TS2,OE4KMU,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #2 - Group Call 232 = Austria

You Must Have [ARS] Disabled Within Your Radio.

Coverage Map (http://wiki.oevsv.at/images/f/fa/DMR-footprint_oe3xwu_Hochwechsel.jpg),1,OE-DMR
232104,OE3XQA,Exelberg,,Oesterreich/Austria,438.67500,1,-7.6,PEER,TS1 TS2,OE1KBC,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #2 - Group Call 232 = Austria

You Must Have [ARS] Disabled Within Your Radio.

Coverage Map (http://wiki.oevsv.at/images/6/68/DMR-footprint_oe3xqa_Exelberg.jpg),1,DMR-plus
232108,OE8XKK,Pyramidenkogel,Kaernten,Oesterreich/Austria,438.60000,1,-7.6,PEER,TS1 TS2,OE8HJK,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #2 - Group Call 232 = Austria

You Must Have [ARS] Disabled Within Your Radio.

Coverage Map (http://wiki.oevsv.at/images/6/6f/DMR-footprint_oe8xkk_Pyramidenkogel.jpg),1,DMR-plus
-232110,OE1XIK,Wien 22,Wien,Oesterreich/Austria,438.50000,1,-7.600,,,OE1KBC,,0,Motorola
+232110,OE1XIK,Wien 22,Wien,Oesterreich/Austria,438.50000,1,-7.600,,,OE1KBC,,0,DMR-plus
232112,OE1XIK,Wien 22,Wien,Oesterreich/Austria,438.50000,1,-7.600,,,OE1KBC,,0,Motorola
232169,OE0XMP,Wien,Wien,Oesterreich/Austria,438.40000,1,-7.6,PEER,TS1 TS2,OE1KBC,,0,DMR-plus
232191,OE1XIK,Wien 22,Wien,Austria,438.42500,1,-7.600,PEER,TS1 TS2,OE1KBC,,0,DMR-plus
@@ -578,6 +591,8 @@ 232896,OE8XLK,Koralm,Kaernten,Oesterreich/Austria,438.70000,1,-7.600,PEER,TS1 TS2,OE8URQ,,0,DMR-plus
232991,OE9XVJ,Pfaender / Bregenz,Vorarlberg,Oesterreich/Austria,438.50000,1,-7.6,PEER,TS1 TS2,OE9LTV,,0,DMR-plus
234127,GB3IP,Stafford,England,United Kingdom,145.76250,1,-0.600,PEER,TS1 TS2,G0RDI,,0,Motorola
+234236,GB7AU,Amersham,,United Kingdom,430.86250,1,7.600,PEER,TS1 TS2,G0RDI,,0,BM
+234280,GB7HA,Halstead,England,United Kingdom,439.57500,3,-9.000,PEER,TS1 TS2,M0NAS,,0,Motorola
234504,GB7HB,Tandragee,Northern Ireland,United Kingdom,439.62500,1,-9.000,PEER,TS1 TS2,MI0MSO,,0,Motorola
234900,GB3TU,Tring,England,United Kingdom,433.22500,3,1.600,PEER,TS1 TS2,G0RDI,,0,DMR-plus
235100,GB7TD,Wakefield,West Yorkshire,United Kingdom,439.16250,1,-9.000,Master,TS1 TS2,G1XCC,Time Slot#1 - Group Call 1 = Worldwide Calling (2 min max)
Time Slot#1 - Group Call 2 = Europe
Time Slot#1 - Group Call 13 = Worldwide English
Time Slot#2 - Group Call 235 = UK Repeater
Time Slot#2 - Group Call 8 = Regional
Time Slot#2 - Group Call 9 = Local

You must DISABLE ARS on all time slots

Contact: Michael Lockwood, G1XCC
Email: mailto: Michael@michaellockwood.orangehome.co.uk,1,BM
@@ -607,11 +622,11 @@ 235124,GB7BJ,Herefordshire,England,United Kingdom,439.73750,13,-9.000,PEER,TS1 TS2,G1MAW,,0,Motorola
235125,GB7EL,Nelson, Lancashire,England,United Kingdom,439.71250,2,-9.000,Peer,TS1 TS2,G4MLB,,0,BM
235126,GB7PK,Portsmouth,England,United Kingdom,439.52500,1,-9.000,PEER,TS1 TS2,G7RPG,,0,BM
-235127,GB3IP,Stafford,England,United Kingdom,145.76250,1,-0.600,PEER,TS1 TS2,G4EML,,0,Motorola
+235127,GB3IP,Stafford,England,United Kingdom,145.76250,1,-0.6,PEER,TS1 TS2,G4EML,,0,DMR-plus
235128,GB7LR,Leicester, UK,England,United Kingdom,439.47500,1,-9.000,PEER,TS1 TS2,M1FJB,,0,None
235129,GB7AK,Barking,England,United Kingdom,439.52500,3,-9.000,PEER,TS1 TS2,G8YPK,,0,Motorola
235130,GB7NS,Caterham,,United Kingdom,439.16250,3,-9.000,PEER,TS1 TS2,G0OLX,Time Slot#1 - Group Call 1 = Worldwide Calling (2 min max)

Time Slot#1 - Group Call 2 = Europe
Time Slot#1 - Group Call 13 = Worldwide English
Time Slot#2 - Group Call 235 = UK Repeater
Time Slot#2 - Group Call 8 = Regional
Time Slot#2 - Group Call 9 = Local

You must DISABLE ARS on all time slots

Contact: Denis Stanton, G0OLX
Email: mailto:
denis.stanton@ntlworld.com,1,DMRUK
-235131,GB7GF,Guildford,England,United Kingdom,439.68750,3,-9.000,Peer,TS1 TS2,G4EML,,0,Motorola
+235131,GB7GF,Guildford,England,United Kingdom,439.68750,3,-9.000,Peer,TS1 TS2,G4EML,,0,DMR-plus
235132,GB7YR,Doncaster,England,United Kingdom,439.52500,2,9.000,PEER,TS1 TS2,M1DAH,,0,BrandMeister
235133,GB7OZ,Oswestry,England,United Kingdom,439.62500,8,-9.000,PEER,TS1 TS2,G0DNI,,0,None
235134,GB7FU,Pointon,England,United Kingdom,439.16250,3,-9.000,Peer,TS1 TS2,G0RDI,,0,Motorola
@@ -619,7 +634,7 @@ 235136,GB7SU,Southampton,England,United Kingdom,439.45000,8,-9.000,Peer,TS1 TS2,G6IGA,,0,Motorola
235137,GB7SE,Thurrock,England,United Kingdom,439.47500,3,-9.000,Peer,TS1 TS2,M0PFX,,0,DMR-plus
235138,GB7SK,Skeffington,England,United Kingdom,439.46250,1,-9.000,PEER,TS1 TS2,G0RDI,,0,Motorola
-235139,GB7VS,Shropham,England,United Kingdom,439.41250,1,-9.000,PEER,TS1 TS2,M0ZAH,,0,Motorola
+235139,GB7VS,Attleborough,England,United Kingdom,439.41250,1,-9.000,PEER,TS1 TS2,G0LGJ,,0,Motorola
235140,GB7HX,Huddersfield,West Yorkshire,United Kingdom,439.57500,1,-9.000,Peer,TS1 TS2,G0PRF,Time Slot#1 - Group Call 2 = Europe
Time Slot#1 - Group Call 13 = Worldwide English
Time Slot#2 - Group Call 235 = UK Repeater
Time Slot#2 - Group Call 8 = Regional
Time Slot#2 - Group Call 9 = Local

You must DISABLE ARS on all time slots

Contact: John Goodwin, G0PRF
Email: john.a.goodwin@btinternet.com,1,BM
235141,GB7TP,Keighley,,United Kingdom,439.68750,1,-9.000,PEER,TS1 TS2,G8ZMG,Time Slot#1 - Group Call 1 = Worldwide Calling (2 min max)

Time Slot#1 - Group Call 2 = Europe
Time Slot#1 - Group Call 13 = Worldwide English
Time Slot#2 - Group Call 235 = UK Repeater
Time Slot#2 - Group Call 8 = Regional
Time Slot#2 - Group Call 9 = Local

You must DISABLE ARS on all time slots

Contact: Steve Watson, G8ZMG
Email: steve.G8ZMG@crossley-watson.me.uk,1,BM
235142,GW1SYG,TEST/Chester,England,United Kingdom,439.68750,1,-9.000,Peer,TS1 TS2,GW1SYG,,0,DMRUK
@@ -648,7 +663,7 @@ 235172,GB7BK,BlueBell Hill, Kent,England,United Kingdom,439.57500,4,-9.000,Peer,TS1 TS2,2E1GTB,,0,Motorola
235175,GB3RF,Accrington, Lancashi,England,United Kingdom,145.77500,2,-0.600,PEER,TS1 TS2,G0BMH,,0,DMR-plus
235176,GB3TU,Tring,England,United Kingdom,433.22500,3,1.600,,,G0RDI,,0,DMR-plus
-235177,GB7CT,Tring,England,United Kingdom,439.01250,3,-7.600,PEER,TS1 TS2,G0RDI,GB7CT 145.6375 -0.6 MHz Color Code 3
Time Slot#1 - Group Call 1 = Worldwide Calling (2 min max)
Time Slot#1 - Group Call 13 = Worldwide English

Time Slot#1 - Group Call 2 = Europe
Time Slot#2 - Group Call 235 = UK Repeater
Time Slot#2 - Group Call 8 = Regional
Time Slot#2 - Group Call 9 = Local

You must DISABLE ARS on all time slots

Contact: Iain Philipps , G0RDI
Email: iain@77hz.net,1,DMRUK
+235177,GB7CT,Tring,,United Kingdom,439.01250,3,-7.6,PEER,TS1 TS2,G0RDI,GB7CT 145.6375 -0.6 MHz Color Code 3
Time Slot#1 - Group Call 1 = Worldwide Calling (2 min max)
Time Slot#1 - Group Call 13 = Worldwide English

Time Slot#1 - Group Call 2 = Europe
Time Slot#2 - Group Call 235 = UK Repeater
Time Slot#2 - Group Call 8 = Regional
Time Slot#2 - Group Call 9 = Local

You must DISABLE ARS on all time slots

Contact: Iain Philipps , G0RDI
Email: iain@77hz.net,1,DMR-Plus
235180,GB7BH,Brighton,England,United Kingdom,439.57500,4,-9.000,PEER,TS1 TS2,G7TXU,,0,BM
235181,GB7UZ,Lancaster,England,United Kingdom,439.50000,1,-9.000,PEER,TS1 TS2,G4TUZ,,0,Motorola
235188,GB7FI,Cheddar Somerset,England,United Kingdom,430.88750,3,7.600,PEER,TS1 TS2,G4RKY,,0,Motorola
@@ -674,7 +689,7 @@ 235240,GB7RE,Retford,England,United Kingdom,439.71250,1,-9.000,PEER,TS1 TS2,G0RDI,,0,BM
235242,GB7NF,Newhaven Sussex UK,England,United Kingdom,439.48750,1,-9.000,PEER,TS1 TS2,G0TJH,,0,Hytera
235250,GB7TC,Swindon,,United Kingdom,439.52500,2,-9.000,PEER,TS1 TS2,G8VRI,,0,None
-235252,GB7IQ,Stafford,England,United Kingdom,439.61250,1,-9.000,PEER,TS1 TS2,G4EML,,0,Motorola
+235252,GB7IQ,Stafford,England,United Kingdom,439.61250,1,-9.000,PEER,TS1 TS2,G4EML,,0,DMR-plus
235260,GB7MH,Turners Hill,England,United Kingdom,439.63750,2,-9.000,PEER,TS1 TS2,G3NZP,,0,BrandMeister
235269,GB7FU,Pointon,,United Kingdom,439.16250,3,-9.000,PEER,TS1 TS2,G0RDI,,0,OpenDMR
235280,GB7HA,Halstead,England,United Kingdom,439.57500,3,9.000,PEER,TS1 TS2,M0NAS,,0,Motorola
@@ -791,19 +806,21 @@ 240013,SK0MQ,Taby,Stockholm,Sweden,434.56250,1,-2.000,PEER,TS1 TS2,SM0TSC,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 240 = Sweden 1
Time Slot #1 - Group Call 9 = Local 1

Time Slot #2 - Group Call 240 = Sweden 2
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio.


Contact: Johan Hansson, SM0TSC
Email: sm0tsc@gmail.com,1,BM
240015,SK0MM,Varmdoe,Stockholms laen,Sweden,434.97500,1,-2.000,PEER,TS1 TS2,SM0OAZ,,0,BM
240024,SK0RPF,Sigtuna,Stockholm County,Sweden,434.88750,1,-2.000,PEER,TS1 TS2,SM0VKU,,0,DMR-plus
+240037,SK0PT,JO89UL,,Sweden,434.55000,1,-2.000,PEER,TS1 TS2,SM0JZT,,0,BrandMeister
240090,SK0SX,Upplands Vaesby,Stockholms luon,Sweden,434.57500,1,-2.000,PEER,TS1 TS2,SM0SHG,,0,Motorola
240097,SK0RYG,Upplands Vasby,Stockholms luon,Sweden,434.76250,1,-2.000,PEER,TS1 TS2,SM0RGQ,,0,BM
240098,SG0DMR,Soedertaelje,Stockholm County,Sweden,434.50000,1,-2.000,Peer,TS1 TS2,SM0TSC,,0,DMR-plus
240099,SK0MG,Stockholm City,Stockholm County,Sweden,434.68750,1,-2.000,PEER,TS1 TS2,SM0TSC,,0,DMR-plus
240201,SK2RGJ,Kiruna,Norrbotten County,Sweden,434.51250,2,-2.000,PEER,TS1 TS2,SA2CJG,,0,BM
240301,SK3RFG,Sundsvall,Jaemtlands laen,Sweden,434.80000,3,-2.000,PEER,TS1 TS2,SM3EFS,,0,DMR+
+240302,SK3XX,Soderhamn,,Sweden,434.52500,3,-2.000,PEER,TS1 TS2,SM3DYE,,0,BrandMeister
240401,SK4BW,Borlange - Sweden,Dalarna County,Sweden,434.85000,12,-2.000,PEER,TS1 TS2,SM4XBL,,0,BM
240501,SL5ZYT,FRO Norrkoping,ustergutland County,Sweden,434.95000,1,-2.000,PEER,TS1 TS2,SM5YLG,,0,BM
240502,SL5ZO,Finspng,ustergutland County,Sweden,434.92500,1,-2.000,PEER,TS1 TS2,SM5YLG,,0,DMR-plus
240601,SL6ZAQ,Uddevalla,Vuostra Gutaland Cou,Sweden,145.63750,1,-0.600,PEER,TS1 TS2,SM6WZR,,0,BM
240610,SM6TKT,Boras,,Sweden,434.55000,6,-2.000,PEER,TS1 TS2,SM6TKT,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 240 = Sweden 1
Time Slot #1 - Group Call 9 = Local 1

Time Slot #2 - Group Call 240 = Sweden 2
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio.


Contact: Claes Kylemark, SM6TKT
Email: info@multilocator.com,1,BM
240611,SK6DZ,Vargarda,,Sweden,434.57500,2,-2.000,PEER,TS1 TS2,SM6VUL,,0,BM
-240612,SK6DZ,Vargarda,Vaestra Goetaland Co,Sweden,434.22500,6,-2.000,PEER,TS1 TS2,SA6AUN,,0,BrandMeister
+240612,SK6DZ,Vargarda,Vaestra Goetaland Co,Sweden,434.53750,6,-2.000,PEER,TS1 TS2,SA6AUN,,0,BM
240666,SE6H,Gothenburg (Lunden),Vuostra Gutaland County,Sweden,433.52500,2,0.000,PEER,TS1 TS2,SA6CJN,,0,None
240699,SG6DMR,Goeteborg,Vuostra Gutaland Cou,Sweden,434.57500,1,-2.000,PEER,TS1 TS2,SM0TSC,,0,DMR-plus
240700,SG7DMR,Skane,,Sweden,434.61250,7,-2.000,PEER,TS1 TS2,SM7SKI,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 240 = Sweden 1
Time Slot #1 - Group Call 9 = Local 1

Time Slot #2 - Group Call 240 = Sweden 2
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio.


Contact:Patrik Nilsson, SM7URN
Email: sm7urn@ssa.se,1,BM
@@ -838,7 +855,7 @@ 244599,OH5DMR,Lappeenranta,Kymi,Finland,434.53750,1,-2.000,PEER,TS1 TS2,OH5HCJ,,0,Motorola
244801,OH8RUA,Kempele, Finland,Oulu,Finland,434.75000,1,-2.000,PEER,TS1 TS2,OH6NVG,,0,Motorola
244802,OH8RMD,Radiotie, Kiiminki,Oulu,Finland,145.63750,1,-0.600,PEER,TS1 TS2,OH6NVG,,0,Motorola
-247004,YL3RCL,Riga,,Latvia,438.67500,1,-7.600,,,YL3CL,,0,BrandMeister
+247004,YL3RCL,Riga,,Latvia,438.67500,1,-7.600,,,YL3CL,,0,BM
250001,RR3DAC,Moscow,,Russia,434.72500,1,5.100,Peer,TS1 TS2,R2DFR,,0,Motorola
250333,RR3DAB,Moscow,,Russia,434.65000,1,5.200,Peer,TS1 TS2,R2DDM,,0,Motorola
250777,RR3DT,Moscow (Podolsk),,Russia,145.67500,1,-0.600,Peer,TS1 TS2,R2DDS,,0,Motorola
@@ -854,7 +871,7 @@ 255992,UR0WUB,Lviv,,Ukraine,439.45000,1,-7.600,PEER,TS1 TS2,UZ5DX,,0,BM
255993,UR0EUA,Dnipropetrovsk,,Ukraine,438.75000,1,-7.600,PEER,TS1 TS2,UZ5DX,,0,BM
255994,UR0WUA,Trostyan, Slavske,,Ukraine,438.75000,1,-7.600,PEER,TS1 TS2,UZ5DX,,0,BM
-255995,UR0DMU,Mukachevo,,Ukraine,438.96250,1,-7.600,PEER,TS1 TS2,UZ5DX,,0,BM
+255995,UR0DMU,Mukachevo,,Ukraine,439.27500,1,-7.600,PEER,TS1 TS2,UZ5DX,,0,BM
255996,UR0DMV,Vinogradov,,Ukraine,438.77500,1,-7.600,PEER,TS1 TS2,UZ5DX,,0,BM
255997,UR0UVU,Kyiv,,Ukraine,438.65000,1,-7.600,PEER,TS1 TS2,UZ5DX,,0,DMR-plus
255998,UR0DMS,Rokosovo,,Ukraine,438.67500,1,-7.600,PEER,TS1 TS2,UZ5DX,,0,BM
@@ -868,16 +885,17 @@ 260301,SR3DMR,Poznan,Greater Poland Voivo,Poland,145.61250,1,-0.600,PEER,TS1 TS2,SP3YOR,,0,BM
260350,SR3UVP,Poznan Piatkowo,Greater Poland Voivo,Poland,439.43750,1,-7.600,,,SP3VSS,,0,BrandMeister
260401,SR4ONT,Olsztyn,Warmian-Masurian Voi,Poland,438.50000,1,-7.600,Peer,TS1 TS2,SQ4BJA,,0,BM
-260402,SR4MID,Milki,Maine,Poland,438.22500,1,-7.600,PEER,TS1 TS2,SQ4FXY,,0,BM
+260402,SR4MID,Milki,Maine,Poland,0.00000,1,0.000,PEER,TS1 TS2,SQ4FXY,,0,BM
260404,SR4KT,Ketrzyn,Warmian-Masurian Voi,Poland,439.27500,1,-7.600,Peer,TS1 TS2,SQ4AFJ,,0,Hytera
260410,SR4DGD,Gora Dylewska,Warminsko-Mazurskie,Poland,438.25000,1,-7.600,,,SQ4LWO,,0,BM
260440,SR4UVE,Paslek,Warmian-Masurian Voi,Poland,438.60000,1,-7.600,Peer,TS1 TS2,SQ4KDK,,0,Motorola
260444,SR4MR,Mragowo/Mazury,warmisko-mazurskie,Poland,439.15000,1,7.600,Peer,TS1 TS2,SQ4FAE,,0,None
+260488,SR4DMR,Grajewo,Podlaskie Voivodeshi,Poland,439.52500,1,-7.600,,,SP4XKB,,0,None
260501,SR5WB,Warszawa / Pruszkow,Mazowieckie,Poland,438.55000,1,-7.600,PEER,TS1 TS2,SQ9JTI,,0,BM
260502,SR5WZ,Moszna Parcela,Mazowieckie,Poland,439.00000,1,-7.600,PEER,TS1 TS2,SP5QWK,,0,Hytera
260504,SR5C,Nasierowo-Dziurawien,Mazowieckie,Poland,438.72500,1,-7.600,,,SQ5OMZ,,0,BrandMeister
260510,SQ5H,Moszna-Parcela,Mazowieckie,Poland,438.60000,1,-7.600,Peer,TS1 TS2,SQ5H,,0,None
-260601,SR6DMR,Wroclaw,,Poland,438.48750,1,-7.600,PEER,TS1 TS2,SQ6NCJ,,0,
+260601,SR6DMR,Wroclaw,,Poland,438.48750,1,-7.600,PEER,TS1 TS2,SQ6NCJ,,0,BM
260602,SR6DMO,Olawa,Lower Silesian Voivo,Poland,438.62500,1,-7.600,PEER,TS1 TS2,SQ6NCJ,,0,Motorola
260603,SR6UVO,Brzezie k. Opola,Opole Voivodeship,Poland,439.38750,1,-7.600,,,SQ6IUB,,0,BrandMeister
260604,SR6WB,Wroclaw,Lower Silesian Voivo,Poland,439.46250,1,-7.600,,,SQ6ROK,,0,BrandMeister
@@ -888,6 +906,7 @@ 260808,SR8UVC,Chotylow,Lublin Voivodeship,Poland,439.55000,1,-7.600,,,SP8QEO,,0,BrandMeister
260860,SR8MOT,Biala Podlaska,Lublin Voivodeship,Poland,145.58750,8,-0.600,,,SQ8ISJ,,0,Hytera
260888,SR8UVL,Lublin,Lublin Voivodeship,Poland,438.82500,1,7.600,Peer,TS1 TS2,SQ8OHR,,0,Motorola
+260899,SR8DMR,RTCN Chotycze,,Poland,438.83750,1,-7.600,PEER,TS1 TS2,SQ8ISJ,,0,BrandMeister
260901,SR9VDM,Tarnow,Lesser Poland,Poland,438.20000,1,-7.600,PEER,TS1 TS2,SQ9JTI,,0,BM
260902,SR9RB,Rybnik,Silesian Voivodeship,Poland,438.50000,1,-7.600,PEER,TS1 TS2,SQ9VH,,0,BM
260903,SR9DMR,Katowice,Silesian Voivodeship,Poland,438.45000,1,-7.600,PEER,TS1 TS2,SQ9JTI,,0,BM
@@ -898,7 +917,7 @@ 260908,SR9BN,Bedzin,Silesian Voivodeship,Poland,439.22500,1,-7.600,Peer,TS1 TS2,SQ9GIN,,0,Hytera
260909,SR9DBN,Bedzin,Silesian Voivodeship,Poland,438.47500,1,-7.600,Peer,TS1 TS2,SQ9GIN,,0,Hytera
260910,SR9UVR,Raba Wyzna-Bukowina,Lesser Poland Voivod,Poland,439.30000,1,-7.600,,,SQ9OKR,,0,BrandMeister
-260911,SR9UVT,Gron-Lesnica,maeopolskie,Poland,439.23750,1,-7.600,,,SP9SVH,,0,BrandMeister
+260911,SR9UVT,Gron-Lesnica,maeopolskie,Poland,439.23750,1,-7.600,,,SP9SVH,,0,BM
260987,SR9TR,Lichwin,Lesser Poland Voivod,Poland,439.17500,1,-7.600,,,SQ9PCH,,0,BrandMeister
260997,SR9VVO,Lichwin / Tarnow,Malopolskie,Poland,439.43750,1,-7.600,Peer,TS1 TS2,SQ9PCH,,0,Hytera
260998,SR9DRB,Rybnik,Silesian Voivodeship,Poland,438.50000,1,-7.600,PEER,TS1 TS2,SQ9JTI,,0,DMR-plus
@@ -946,7 +965,7 @@ 262222,DB0ZE,Hamburg,,Germany,438.92500,1,-7.600,PEER,TS1 TS2,DL9DAK,,0,BM
262226,DB0PR,Armstedt,Niedersachsen,Germany,439.35000,1,-7.600,Peer,TS1 TS2,DG1HT,,0,DMR-plus
262230,DB0BRV,Bremervoerde,Niedersachsen,Germany,438.46250,1,-7.600,PEER,TS1 TS2,DL4BBD,,0,BM
-262231,DO0TPB,Basedow,Schleswig-Holstein,Germany,438.83750,1,-7.600,,,DO7TPB,,0,DMR-plus
+262231,DO0TPB,Basedow,Schleswig-Holstein,Germany,438.83750,1,-7.6,,,DO7TPB,,0,DMR-plus
262240,DB0HPA,Laegerdorf,Schleswig-Holstein,Germany,439.51250,1,-7.6,Peer,TS1 TS2,DL9HPA,,0,DMR-plus
262250,DB0HHO,Grosshansdorf,Schleswig-Holstein,Germany,439.52500,1,-7.6,PEER,TS1 TS2,DL5KUA,,0,DMR-plus
262260,DB0KUA,Luetjensee,Schleswig-Holstein,Germany,438.52500,1,-7.6,,,DL5KUA,,0,DMR-plus
@@ -983,11 +1002,11 @@ 262325,DB0TVH,Hannover/Stadt,Niedersachsen,Germany,439.90000,1,-9.4,PEER,TS1 TS2,DL9OBD,,0,DMR-plus
262326,DO1KBL,Osterholz-Scharmbeck,Niedersachsen,Germany,439.27500,1,-7.6,PEER,TS1 TS2,DO1KBL,,0,DMR-plus
262327,DB0KRE,Einbeck,Lower Saxony,Germany,438.38750,1,-7.6,PEER,TS1 TS2,DJ3OW,,0,DMR-plus
-262328,DB0OX,Norden,West Virginia,Germany,439.30000,1,-7.600,PEER,TS1 TS2,DG1BGS,,0,DMR-plus
+262328,DB0OX,Norden,West Virginia,Germany,439.30000,1,-7.6,PEER,TS1 TS2,DG1BGS,,0,DMR-plus
262329,DB0HHG,Goettingen,Niedersachsen,Germany,439.25000,1,-7.600,Peer,TS1 TS2,DG3ABY,,0,None
262330,DB0TVH,Hannover/Stadt,Niedersachsen,Germany,439.58750,1,-7.600,PEER,TS1 TS2,DL9OBD,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 262 = Germany 1
Time Slot #1 - Group Call 9 = Local 1
Time Slot #2 - Group Call 262 = Germany 2
Time Slot #2 - Group Call 8 = Regional
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio


Contact: Tomas Rose, DL9OBD
Email: dl9obd@darc.de,1,BM
262331,DO0HB,Bremen,Bremen,Germany,438.32500,1,-7.6,Peer,TS1 TS2,DO6BCO,,0,DMR-plus
-262332,DJ2QW,Georgsmarienhuette,Niedersachsen,Germany,438.40000,1,-7.600,PEER,TS1 TS2,DJ2QW,,0,DMR-plus
+262332,DJ2QW,Georgsmarienhuette,Niedersachsen,Germany,439.87500,1,-9.4,PEER,TS1 TS2,DJ2QW,,0,DMR-plus
262333,DM0NGU,Isterberg,Niedersachsen,Germany,438.50000,1,-7.6,PEER,TS1 TS2,DF3BM,,0,DMR-plus
262334,DB0NGU,Uelsen,Niedersachsen,Germany,438.50000,1,-7.600,Peer,TS1 TS2,DF3BM,,0,Hytera
262335,DB0ROD,Hannover/Deister,,Germany,438.68750,1,-7.600,PEER,TS1 TS2,DG4OAE,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 262 = Germany 1
Time Slot #1 - Group Call 9 = Local 1
Time Slot #2 - Group Call 262 = Germany 2
Time Slot #2 - Group Call 8 = Regional
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio

Contact: Martin Sjuts, DG5BCM
Email: martin.sjuts@atsonline.de (https://3c.web.de/mail/client/mail/mailto;jsessionid=FD5BA33956A5DE2BBCD5461784268D0F-n1.bs20b?to=martin.sjuts%40atsonline.de&selection=tfol1310b3689a5dbfd2),1,BM
@@ -1011,7 +1030,7 @@ 262394,DB0HYT,Bad Muender,Niedersachsen,Germany,439.35000,1,-7.600,Peer,TS1 TS2,DJ2VA,,0,DMR-plus
262395,DB0HYT,Bad Muender,Niedersachsen,Germany,434.83750,1,-2.000,Peer,TS1 TS2,DJ2VA,,0,Hytera
262396,DB0XY,Bocksberg/ Harz,Niedersachsen,Germany,439.87500,1,-9.4,Peer,TS1 TS2,DH1ALF,,0,DMR-plus
-262397,DB0ABZ,Salzgitter-Druette,Niedersachsen,Germany,439.82500,1,-9.400,PEER,TS1 TS2,DH1ALF,,0,DMR-plus
+262397,DB0ABZ,Salzgitter-Druette,Niedersachsen,Germany,439.82500,1,-9.4,PEER,TS1 TS2,DH1ALF,,0,DMR-plus
262398,DB0DLR,DLR Braunschweig,Niedersachsen,Germany,439.48750,1,-7.600,PEER,TS1 TS2,DH1ALF,,0,None
262399,DB0DVR,Braunschweig,Niedersachsen,Germany,438.57500,1,-7.6,PEER,TS1 TS2,DH1ALF,,0,DMR-plus
262400,DB0NG,Marl,NRW,Germany,438.90000,1,-7.6,PEER,TS1 TS2,DL1YBL,,0,DMR-plus
@@ -1033,12 +1052,13 @@ 262424,DB0WT,Lemgo,NRW,Germany,439.92500,1,-9.4,Peer,TS1 TS2,DF2MM,,0,DMR-plus
262425,DF2MM,Detmold,Nordrhein-Westfalen,Germany,439.92500,1,-9.400,Peer,TS1 TS2,DF2MM,,0,Hytera
262430,DB0AVR,Stolberg/Aachen,,Germany,439.83750,1,-9.400,PEER,TS1 TS2,DH6KQ,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 3 = North America
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 262 = Germany 1
Time Slot #1 - Group Call 9 = Local 1
Time Slot #2 - Group Call 262 = Germany 2
Time Slot #2 - Group Call 8 = Regional
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio


Contact: Andreas Fromm, DH6KQ
Email: dh6kq@t-online.de,1,DMR-DL
-262434,DB0HE,Herten,Nordrhein-Westfalen,Germany,438.26250,1,-7.6,Peer,TS1 TS2,DL5BQ,,0,BrandMeister
+262434,DB0HE,Herten,Nordrhein-Westfalen,Germany,438.26250,1,-7.6,Peer,TS1 TS2,DL5BQ,,0,DMR-plus
262435,DB0II,Moenchengladbach,Nordrhein-Westfalen,Germany,439.31250,1,-7.600,PEER,TS1 TS2,DF6EF,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 262 = Germany 1
Time Slot #1 - Group Call 9 = Local 1
Time Slot #2 - Group Call 262 = Germany 2
Time Slot #2 - Group Call 8 = Regional
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio


Contact: Christian Jansen, DF6EF
Email: christian@df6ef.de,1,DMR-DL
262437,DB0MY,Juelich,Nordrhein-Westfalen,Germany,438.36250,1,-7.6,PEER,TS1 TS2,DG9KAF,,0,DMR-plus
262440,DB0DDS,Dortmund,Nordrhein-Westfalen,Germany,439.85000,1,-9.4,PEER,TS1 TS2,DF1VB,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 262 = Germany 1
Time Slot #1 - Group Call 9 = Local 1
Time Slot #2 - Group Call 262 = Germany 2
Time Slot #2 - Group Call 8 = Regional
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio,1,DMR-plus
262442,DB0ACC,Haltern am See,Nordrhein-Westfalen,Germany,438.45000,1,-7.6,PEER,TS1 TS2,DL8YBL,,0,DMR-plus
262444,DB0WQ,Espelkamp,Nordrhein-Westfalen,Germany,438.71250,1,-7.6,PEER,TS1 TS2,DL7JW,,0,DMR-plus
+262445,DB0RTV,Rheine,Nordrhein-Westfalen,Germany,438.51250,1,-7.600,,,DL9YCC,,0,BrandMeister
262450,DB0DRE,Recklinghausen,NRW,Germany,439.97500,1,-9.400,Peer,TS1 TS2,DL1YBL,,0,DMR-DL
262452,DB0KX,Viersen,Nordrhein-Westfalen,Germany,438.40000,1,-7.600,Peer,TS1 TS2,DL1ER,,0,None
262454,DB0CW,Gummersbach,Nordrhein-Westfalen,Germany,145.66250,1,-0.6,PEER,TS1 TS2,DJ3CW,,0,DMR-plus
@@ -1098,6 +1118,9 @@ 262650,DB0REI,Reinhardshain,Hessen,Germany,439.81250,1,-9.4,PEER,TS1 TS2,DB4ZZ,,0,DMR-plus
262660,DB0KH,Hessen Knuell,Hessen,Germany,439.95000,1,-9.4,Peer,TS1 TS2,DH1FR,,0,DMR-plus
262661,DB0WK,Wasserkuppe,Hessen,Germany,439.46250,1,-7.6,PEER,TS1 TS2,DG7FBS,,0,DMR-plus
+262663,DB0SRS,Golf-Club Alsberg,Hessen,Germany,145.71250,1,-0.600,,,DG8FAC,,0,DMR-plus
+262664,DB0DTV,Steinau-Seidenroth,Hessen,Germany,438.87500,1,-7.600,,,DG8FAC,,0,DMR-plus
+262665,DB0NQ,Steinau,Hessen,Germany,439.85000,1,-9.400,,,DG8FAC,,0,DMR-plus
262666,DO0DXE,Kassel,Hessen,Germany,438.32500,1,-7.6,PEER,TS1 TS2,DO5WE,,0,DMR-plus
262667,DG1FFD,Fuldabrueck,Hessen,Germany,439.96250,1,-9.400,PEER,TS1 TS2,,,0,DMR-plus
262670,DB0RHN,Rhoen,Hessen,Germany,439.83750,1,-9.4,PEER,TS1 TS2,DG8FAC,,0,DMR-plus
@@ -1122,10 +1145,11 @@ 262711,DB0RV,Ravensburg,Baden-Wuerttemberg,Germany,439.41250,1,-7.6,PEER,TS1 TS2,DC6MS,,0,DMR-plus
262712,DB0RB,Bruchsal,Baden-Wuerttemberg,Germany,439.81250,1,-9.400,PEER,TS1 TS2,DH2MD,,0,Hytera
262713,DB0ARH,Herrenberg AlterRain,Baden-Wuerttemberg,Germany,439.85000,1,-9.400,PEER,TS1 TS2,DL8SCU,,0,BM
+262714,DB0STB,Stocksberg,Baden-Wuerttemberg,Germany,439.52500,1,7.600,,,DC7TU,,0,BrandMeister
262717,DM0KB,Konstanz,Baden-Wuerttemberg,Germany,145.60000,1,-0.6,Peer,TS1 TS2,DG8GL,,0,DMR-plus
262719,DB0SAA,Oberkochen,Baden-Wuerttemberg,Germany,438.47500,1,-7.600,PEER,TS1 TS2,DF7AJ,,0,DMR-DL
262720,DB0FAA,Aalen/Braunenberg,Baden-Wuerttemberg,Germany,439.48750,1,-7.6,PEER,TS1 TS2,DL8SFG,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 262 = Germany 1
Time Slot #1 - Group Call 8 = > DB0FHA-2m-DMR
Time Slot #1 - Group Call 9 = Local 1
Time Slot #2 - Group Call 9 = Local 2

You Must Have [ARS] Disabled Within Your Radio


Contact: Bjoern Buelow, DL8SFG
Email: dl8sfg@qslnet.de
Web: http://www.qslnet.de/db0faa,1,DMR-plus
-262721,DB0FHA,Aalen/Onatsfeld,Baden-Wuerttemberg,Germany,438.45000,1,-7.6,PEER,TS1 TS2,DL8SFG,,0,DMR-plus
+262721,DB0FHA,Aalen/Onatsfeld,Baden-Wuerttemberg,Germany,439.01250,1,-7.6,PEER,TS1 TS2,DL8SFG,,0,DMR-plus
262722,DB0FHA,Aalen/Onatsfeld,Baden-Wuerttemberg,Germany,439.01250,1,-7.6,PEER,TS1 TS2,DL8SFG,,0,DMR-plus
262723,DB0CRA,Frankenhardt,Baden-Wuerttemberg,Germany,438.53750,1,-7.6,Peer,TS1 TS2,DG2SDW,,0,DMR-plus
262724,DB0FAA,Aalen/Braunenberg,Baden-Wuerttemberg,Germany,439.11250,1,-7.6,Peer,TS1 TS2,DL8SFG,,0,DMR-plus
@@ -1163,13 +1187,13 @@ 262801,DB0FUE,Fuerth,Bayern,Germany,439.85000,1,-9.400,Peer,TS1 TS2,DJ7ACM,,0,BM
262802,DM0FFL,Landshut,Bayern,Germany,439.87500,1,-9.4,PEER,TS1 TS2,DL4STE,,0,DMR-plus
262803,DB0IN,Ingolstadt,Bayern,Germany,438.93750,1,-7.600,Peer,TS1 TS2,DL2MHB,,0,DMR-plus
-262804,DB0OAL,Tegelberg,Bayern,Germany,438.93750,1,-7.600,,,DB7MJ,,0,DMR-plus
+262804,DB0OAL,Tegelberg,Bayern,Germany,438.93750,1,-7.6,,,DB7MJ,,0,DMR-plus
262805,DB0HLB,Hesselberg,Bayern,Germany,439.97500,1,-9.4,PEER,TS1 TS2,DC9NYC,,0,DMR-plus
262807,DB0LC,Scheidegg,Bayern,Germany,439.37500,1,-7.6,Peer,TS1 TS2,DG6MDG,,0,DMR-plus
262808,DB0AAT,Hochberg/Traunstein,Bayern,Germany,439.55000,1,-7.6,PEER,TS1 TS2,DC5MC,,0,DMR-plus
262809,DM0GER,Germering,Bayern,Germany,145.58750,1,-0.600,Peer,TS1 TS2,DL3MX,,0,DMR-plus
262810,DB0FEU,Feuchtwangen,Bayern,Germany,439.57500,1,-7.6,PEER,TS1 TS2,DC9NYC,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 262 = Germany 1
Time Slot #1 - Group Call 9 = Local 1

Time Slot #2 - Group Call 262 = Germany 2
Time Slot #2 - Group Call 8 = Regional Bayern
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio


Contact: Ralf Schmidl, DC9NYC
Email: dc9nyc@db0feu.de,1,DMR-plus
-262811,DB0MI,Moenchberg,Bayern,Germany,439.55000,1,-7.6,PEER,TS1 TS2,DH4FAJ,,0,DMR-plus
+262811,DB0MI,Moenchberg,Bayern,Germany,439.87500,1,-9.4,PEER,TS1 TS2,DH4FAJ,,0,DMR-plus
262812,DM0AX,Neumarkt / Dillberg,Bayern,Germany,438.38750,1,-7.600,Peer,TS1 TS2,DF1AX,,0,BrandMeister
262813,DB0ARB,Zwiesel,Bayern,Germany,439.22500,1,-7.6,,,DJ1RKS,,0,DMR-plus
262815,DB0DMR,Feuchtwangen,Bayern,Germany,439.47500,1,-7.6,PEER,TS1 TS2,DC9NYC,,0,DMR-plus
@@ -1205,8 +1229,8 @@ 262878,DB0FHC,Coburg,Bayern,Germany,439.45000,1,-7.600,,,DC7RY,,0,BrandMeister
262885,DM0RDT,Karlskron,Bayern,Germany,439.82500,1,-9.400,Peer,TS1 TS2,DH6MBT,,0,DMR-plus
262888,DB0RP,Regensburg,Bayern,Germany,439.10000,1,-7.6,PEER,TS1 TS2,DL5RDW,,0,DMR-plus
-262890,DM0ET,Frensdorf/Bamberg,Bayern,Germany,439.41250,1,-7.6,PEER,TS1 TS2,DK2ET,,0,DMR-plus
-262898,DK6PX,Dietramszell,Bayern,Germany,439.85000,1,-9.400,PEER,TS1 TS2,DK6PX,,0,DMR-plus
+262890,DM0ET,Frensdorf/Bamberg,Bayern,Germany,439.11250,1,-7.6,PEER,TS1 TS2,DK2ET,,0,DMR-plus
+262898,DK6PX,Dietramszell,Bayern,Germany,439.85000,1,-9.4,PEER,TS1 TS2,DK6PX,,0,DMR-plus
262899,DB0TTB,Hohenpeissenberg,Bayern,Germany,439.58750,1,-7.6,PEER,TS1 TS2,DL4TTB,,0,DMR-plus
262901,DB0LE,Leipzig West,Saxony,Germany,439.57500,1,-7.600,Peer,TS1 TS2,DC8YM,,0,DMR-plus
262902,DO0ERZ,Thalheim / Erzgeb.,Saxony,Germany,439.43750,1,-7.600,PEER,TS1 TS2,DO8GT,,0,BM
@@ -1244,6 +1268,8 @@ 284000,LZ0DMR,Sofia,,Bulgaria,439.10000,1,-7.600,PEER,TS1 TS2,LZ1LZN,,0,DMR-plus
284002,LZ0HAM,Pk.Botev,,Bulgaria,439.50000,1,-7.600,PEER,TS1 TS2,LZ1LZN,,0,DMR-plus
293001,S55DMR,Lisca,,Slovenia,439.07500,1,-7.600,,,S56CT,,0,None
+293002,S55DTR,Sv. Planina,,Slovenia,439.05000,1,-7.600,,,S56CT,,0,BrandMeister
+293003,S55DZV,Zagarski vrh (LJ),,Slovenia,438.55000,1,-7.600,,,S57NIX,,0,BrandMeister
294001,Z35UIT,Skopje,,Macedonia,439.70000,1,-7.600,Master,Mixed Mode,Z32IT,,0,BrandMeister
302001,VE1CRA,Charlottetown,Prince Edward Island,Canada,441.95000,1,+5.000,Peer,TS2,VE1AIC,,0,BM
302200,VE2REX,Covey Hill,Quebec,Canada,448.52500,1,-5.000,Peer,TS1 TS2,VA2SPB,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 13 = WW English
Time Slot #1 - Group Call 11 = WW French
Time Slot #1 - Group Call 3 = North America
Time Slot #1 - Group Call 302 = Canada
Time Slot #1 - Group Call 310 = TAC310
Time Slot #1 - Group Call 9999 = Audio Test
Time Slot #2 - Group Call 3023 = Ontario
Time Slot #2 - Group Call 3022 = Quebec
Time Slot #2 - Group Call 3024 = Manitoba
Time Slot #2 - Group Call 3026 = Alberta
Time Slot #2 - Group Call 3029 = New Brunswick
Time Slot #2 - Group Call 3027 = British Columbia
Time Slot #2 - Group Call 2 = Local

You Must Have [ARS] Disabled in Your Radio

Coverage Area (http://www.dmr-marc.net/images/va2cyh-coverage.jpg)

Contact: Alain Reid, VA2SPB
E-mail: va2spb@coveyhilltelecom.com
Website: www.ve2cyh.org,1,DMR-MARC Canada
@@ -1267,9 +1293,9 @@ 302218,VE2UCD,QUEBEC,Quebec,Canada,448.62500,1,-5.000,Peer,TS1 TS2,VE2JKA,,1,dmr-marc
302219,VA2RVB,St-Félix-de-Valois,Quebec,Canada,442.80000,2,+5.000,Master,TS1 TS2,VE2VB,,0,BrandMeister
302220,VE2RRC,Roxboro,Quebec,Canada,448.50000,1,-5.000,Peer,TS1 TS2,VE2RI,,0,Brandmeister
-302221,VE2RWE,DIXVILLE,Quebec,Canada,448.12500,1,-5.000,Peer,TS1 TS2,VE2JKA,,1,BELAIR
-302222,VA2OZ,GORE,Quebec,Canada,447.37500,1,-5.000,Peer,TS1 TS2,VE2JKA,,1,BELAIR
-302223,VE2JKA,Montreal,Quebec,Canada,448.37500,7,-5.000,Peer,TS1 TS2,VE2JKA,,1,BELAIR
+302221,VE2RWE,DIXVILLE,Quebec,Canada,448.12500,1,-5.000,Peer,TS1 TS2,VE2JKA,,1,DMR-Quebec
+302222,VA2OZ,GORE,Quebec,Canada,447.37500,1,-5.000,Peer,TS1 TS2,VE2JKA,,1,DMR-Quebec
+302223,VE2JKA,Montreal,Quebec,Canada,448.37500,7,-5.000,Peer,TS1 TS2,VE2JKA,,1,DMR-Quebec
302300,VE3RGM,London,Ontario,Canada,444.61250,7,+5.000,Peer,TS1 TS2,VE3NMZ,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 13 = WW English
Time Slot #1 - Group Call 3 = North America
Time Slot #1 - Group Call 302 = Canada
Time Slot #1 - Group Call 310 = TAC310
Time Slot #1 - Group Call 9999 = Audio Test
Time Slot #2 - Group Call 3023 = Ontario
Time Slot #2 - Group Call 3022 = Quebec
Time Slot #2 - Group Call 3024 = Manitoba
Time Slot #2 - Group Call 3026 = Alberta
Time Slot #2 - Group Call 3029 = New Brunswick
Time Slot #2 - Group Call 3027 = British Columbia
Time Slot #2 - Group Call 2 = Local

You Must Have [ARS] Disabled in Your Radio

Contact: Jim Wake, VE3NMZ
Email: jim.wake@spectrumpaging.ca,1,DMR-MARC Canada
302301,VE3NXS,Kitchener,Ontario,Canada,444.53750,7,+5.000,Peer,TS1 TS2,VE3NXT,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 13 = WW English
Time Slot #1 - Group Call 3 = North America
Time Slot #1 - Group Call 302 = Canada
Time Slot #1 - Group Call 310 = TAC310
Time Slot #1 - Group Call 9999 = Audio Test
Time Slot #2 - Group Call 3023 = Ontario
Time Slot #2 - Group Call 3022 = Quebec
Time Slot #2 - Group Call 3024 = Manitoba
Time Slot #2 - Group Call 3026 = Alberta
Time Slot #2 - Group Call 3029 = New Brunswick
Time Slot #2 - Group Call 3027 = British Columbia
Time Slot #2 - Group Call 2 = Local

You Must Have [ARS] Disabled in Your Radio

Coverage Area (http://www.dmr-marc.net/images/ve3nxs-coverage.jpg)

Contact: Bob Moyer, VE3NXT
Email: rbmoyer@gmail.com,1,DMR-MARC Canada
302302,VE3BNI,Milton,Ontario,Canada,443.98750,1,+5.000,Peer,TS1 TS2,VE3BNI,,0,DMR-MARC - Canada
@@ -1350,6 +1376,7 @@ 310420,K7DMK,Mesa,Arizona,United States,441.75000,1,+5.000,Peer,TS1 TS2,K7DMK,,0,Brandmeister
310421,KD4IML,Phoenix,Arizona,United States,442.35000,1,+5.000,Master,None,N7TWW,,0,AZTRBONET
310422,NX7R,Concho ,Arizona,United States,449.46000,1,-5.000,Peer,TS1 TS2,NX7R,,0,BrandMeister
+310423,N7HND,Mt Lemon,Arizona,United States,447.87500,1,-5.000,Peer,TS1,N7TWW,,0,AZTRBONET
310501,K5NSX,Little Rock,Arkansas,United States,442.65000,1,+5.000,Peer,TS1 TS2,N5QM,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 13 = WW English
Time Slot #1 - Group Call 3 = N.America
Time Slot #1 - Group Call 310 = TAC 310
Time Slot #1 - Group Call 3100 = Bridge
Time Slot #1 - Group Call 3777215 - Comm 1

Time Slot #2 - Group Call 2 = Local
Time Slot #2 - Group Call 3105 = Arkansas
Time Slot #2 - Group Call 3174 = Southeast Regional

Other talkgroups are also available, please visit our website
for the most current information.

Contact Name: Robert, N5QM
Email: robert@n5qm.com
Website: k5nsx.com (http://k5nsx.com),1,DMRLinks-
310502,W5NWA,Harrison,Arkansas,United States,442.90000,1,+5.000,Peer,TS1 TS2,N5NBJ,,0,BrandMeister
310503,KE5LXK,Springdale,Arkansas,United States,442.45000,1,+5.000,Peer,Mixed Mode,NX5V,,0,BrandMeister
@@ -1443,7 +1470,7 @@ 310680,W6ELL,Yorba Linda,California,United States,449.46000,1,-5.000,Peer,TS1 TS2,W6ELL,Local 2 1 Always On
Regional TG Varies 1 Always On
SoCal 1 - PTT 721 1 10 Mins
SoCal 2 - PTT 722 1 10 Mins
SoCal Talk Group 76225 1 Always ON
CenCal - PTT 236225 1 10 Mins
NorCal 5150 - PTT 5150 1 10 Mins,1,SoCal,
310681,N6WZK,Riverside,California,United States,449.36000,1,-5.000,Master,TS1 TS2,N6WZK,,0,BrandMeister
310682,KC7NP,Moreno Valley,California,United States,425.42500,1,+3.000,Master,Mixed Mode,KC7NP,,0,dmr
-310683,WX6D,Clovis,California,United States,145.45000,1,-0.600,Master,TS1 TS2,N6IB,Time Slot #2 - Group Call 2 = Local
Time Slot #2 - Group Call 3185 = Cactus
Time Slot #2 - Group Call 31066 = SoCal
Time Slot #2 - Group Call 31068 = NorCal
Time Slot #2 - Group Call 31062 = Mountain West
Time Slot #2 - Group Call 31063 = Mountain West 1
Time Slot #1 - Group Call 3106 = California
Time Slot #1 - Group Call 31061 = California 1
Time Slot #1 - Group Call 3176 = Southwest
Time Slot #1 - Group Call 31761 = Southwest 1
Time Slot #1 - Group Call 93 = North America
Time Slot #1 - Group Call 91 = World
Time Slot #1 - Group Call 31096 = Call Zone 6
Time Slot #1 - Group Call 310 = TAC 310
Time Slot #1 - Group Call 3777215 = Comm 1
Time Slot #1 - Group Call 31268 = SNARS
Time Slot #1 - Group Call 3168 = I-5
Time Slot #1 - Group Call 9999 = Audio Meter
Time Slot #1 - Group Call 9998 = Parrot (Echo)

You Must Have [ARS] Disabled Within Your Radio

Contact: Mark Ward, N6IB
Email: n6ib@me.com,1, Mountain West DMR
+310683,WX6D,Clovis,California,United States,145.45000,1,-0.600,Master,TS1 TS2,N6IB,Time Slot #2 - Group Call 2 = Local
Time Slot #2 - Group Call 3185 = Cactus
Time Slot #2 - Group Call 31066 = SoCal
Time Slot #2 - Group Call 31068 = NorCal
Time Slot #2 - Group Call 31062 = Mountain West
Time Slot #2 - Group Call 31063 = Mountain West 1
Time Slot #1 - Group Call 3106 = California
Time Slot #1 - Group Call 31061 = California 1
Time Slot #1 - Group Call 3176 = Southwest
Time Slot #1 - Group Call 31761 = Southwest 1
Time Slot #1 - Group Call 93 = North America
Time Slot #1 - Group Call 91 = World
Time Slot #1 - Group Call 31096 = Call Zone 6
Time Slot #1 - Group Call 310 = TAC 310
Time Slot #1 - Group Call 3777215 = Comm 1
Time Slot #1 - Group Call 31268 = SNARS
Time Slot #1 - Group Call 3168 = I-5
Time Slot #1 - Group Call 9999 = Audio Meter
Time Slot #1 - Group Call 9998 = Parrot (Echo)

You Must Have [ARS] Disabled Within Your Radio

Contact: Mark Ward, N6IB
Email: n6ib@me.com,1,BrandMeister
310684,KA6P,Wrightwood,California,United States,449.03750,2,-5.000,Peer,TS1 TS2,KA6P,TS 1

Local TG 2 AA
CenCal TG 236225 AA
SoCal TG 76225 AA
SoCal 1 TG 721 UA 5min

TS 2

CAL TG 3107 AA
CAL 1 TG 2251 UA 5 min
Southwest TG 3176 AA
Southwest 1 TG 31761 UA 5
N America TG 3 UA 5
WW English TG 13 UA 5
WW TG 1 UA 5
WW Eng UA 1 TG 113 UA 5
WW Eng UA 2 TG 123 UA 5
COMM-1 TG 3777215 AA
TAC 310 TG 310 UA 5
Jenny TG 8675309 UA 5
Parrot TG 9998 UA 5
Audio Test TG 9999 UA 5

Website:,1,SoCal
310685,WA6YVX,San Diego,California,United States,449.86250,1,-5.000,Master,TS1 TS2,WA6YVX,TS1 TG2 Local
TS1 TG3 Regional
TS1 TG76225 SoCal
TS1 TG721 SoCal 1 -UA

TS2 TG3107 California Calling
TS2 TG2251 California 1 -UA
TS2 TG3176 Southwest Region
TS2 TG31761 Southwest 1 UA
TS2 TG3 North America Calling
TS2 TG113 UA English 1
TS2 TG123 UA English 2
TS2 TG13 WW UA
TS2 TG9998 Parrot - UA
TS2 TG9999 NorCal Audio Test - UA

You Must Have [ARS] Disabled Within Your Radio

Contact: WA6YVX, Ed Flinn
Email: wa6yvx@aol.com
,1,SoCal
310686,N6JKF,Santa Monica,California,United States,446.08000,1,-5.000,Master,TS1 TS2,WD6FZA,,0,BrandMeister
@@ -1480,7 +1507,7 @@ 310718,K6BIV,Pittsburg,California,United States,440.60000,1,+5.000,Peer,TS1 TS2,K6BIV,,0,BrandMeister
310719,N6LDJ,Pleasanton,California,United States,444.58750,1,+5.000,Peer,TS1 TS2,N6LDJ,,0,BrandMeister
310720,K6BIV,Pittsburg,California,United States,440.60000,2,+5.000,Peer,TS1 TS2,K6BIV,,0,BrandMeister
-310721,WA6UEO,Ventura,California,United States,449.56000,2,-5.000,Master,TS1 TS2,WA6UEO,,0,BrandMeister
+310721,WA6UEO,Ventura,California,United States,446.32500,2,-5.000,Master,TS1 TS2,WA6UEO,,0,BrandMeister
310722,K4DJN,Carlsbad,California,United States,447.60000,7,-5.000,Peer,TS1 TS2,AA4CD,,0,BrandMeister
310723,W6BML,Mount Shasta,California,United States,441.27500,1,+5.000,Master,TS1 TS2,NR6J,,0,D-Star/DMR/C4FM
310724,K6TMD,Pine Cove,California,United States,446.06000,3,-5.000,Master,TS1 TS2,WA6PYJ,,1,Mountian West
@@ -1613,7 +1640,7 @@ 311212,K4AUS,Groveland,Florida,United States,444.05000,1,+5.000,Peer,TS1 TS2,K4AUS,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 13 = WW English
Time Slot #1 - Group Call 3 = N. America
Time Slot #2 - Group Call 2 = Local
Time Slot #2- Group Call 3112- Florida Statewide
Time Slot #2 - Group Call 3174- Southeast Regional

You Must Have [ARS] Disabled Within Your Radio

Coverage Area (http://dmr-marc.net/images/k4aus-coverage.jpg)

Contact Name: Jason Matthews, K4AUS
Email:jason@lcso.org,1,DMR-MARC
311213,K4SRN,Port St. Lucie,Florida,United States,444.00000,1,+5.000,Master,TS1 TS2,K4SRN,,0,DMR-MARC-IPSC2
311214,KJ4OVA,Orlando,Florida,United States,443.13750,1,+5.000,Master,TS1 TS2,W4ORL,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 13 = WW English
Time Slot #1 - Group Call 3 = N. America
Time Slot #2 - Group Call 2 = Local
Time Slot #2- Group Call 3112- Florida Statewide
Time Slot #2 - Group Call 3174- Southeast Regional

You Must Have [ARS] Disabled Within Your Radio

Coverage Area (http://dmr-marc.net/images/kj4ova-coverage.jpg)

Contact Name: Ralph Betts, W4ORL
Email:w4orl@w4orl.us,1,DMR-MARC
-311215,KJ4SHL,Tampa,Florida,United States,443.60000,1,+5.000,Master,TS1 TS2,KJ4SHL,TS 1 TG-3 = US-DMR (PTT 5 Min)
TS 1 TG-310 = TAC310 [DCI] (ON)
TS 1 TG-311 = TAC311 [DCI] (PTT 15 Min.)
TS 1 TG-410 = TAC410 [FL-DMR] (PTT 5 Min)


TS 2 TG-2 = LOCAL USERS [FL-DMR] (ON)
TS 2 TG-400 = TAC400 [FL-DMR] (PTT 5 Min.)
TS 2 TG-3112 = FLORIDA STATE [FL-DMR] (ON)
TS 2 TG-9998 = The Parrot [DCI] (PTT 5 Min)

You Must Have [ARS] Disabled Within Your Radio

Contact Name: RYAN, KJ4SHL
Email: RYAN@KJ4SHL.COM
Website: KJ4SHL.COM,1,FL-DMR
+311215,KJ4SHL,Tampa International ,Florida,United States,443.60000,1,+5.000,Master,TS1 TS2,KJ4SHL,TS 1 TG-3 = US-DMR (PTT 5 Min)
TS 1 TG-310 = TAC310 [DCI] (ON)
TS 1 TG-311 = TAC311 [DCI] (PTT 15 Min.)
TS 1 TG-410 = TAC410 [FL-DMR] (PTT 5 Min)


TS 2 TG-2 = LOCAL USERS [FL-DMR] (ON)
TS 2 TG-400 = TAC400 [FL-DMR] (PTT 5 Min.)
TS 2 TG-3112 = FLORIDA STATE [FL-DMR] (ON)
TS 2 TG-9998 = The Parrot [DCI] (PTT 5 Min)

You Must Have [ARS] Disabled Within Your Radio

Contact Name: RYAN, KJ4SHL
Email: RYAN@KJ4SHL.COM
Website: KJ4SHL.COM,1,MotoDMR
311216,KD4EFM,Lakeland,Florida,United States,444.66250,1,+5.000,Peer,TS1 TS2,KD4EFM,,1,DMR-MARC
311217,KC4RPP,Naples,Florida,United States,443.10000,0,+5.000,Master,Mixed Mode,KC4RPP,,0,Hytera
311218,N4MOT,Fort Lauderdale,Florida,United States,442.40000,1,+5.000,Peer,TS1,K4XF,Time Slot #1 - Group Call 1 = World Wide (PTT activated with 5 min inactivity timeout)
Time Slot #1 - Group Call 13= WW English
Time Slot #1 - Group Call 3 = N. America
Time Slot #2 - Group Call 2 = Local
Time Slot #2- Group Call 3112- Florida Statewide
Time Slot #2 - Group Call 3174- Southeast Regional

You Must Have [ARS] Disabled Within Your Radio

Coverage Area

Contact Name: Rich Pratt, K4XF
Email: w4mot.club@gmail.com
Website: http://www.qrz.com/db/w4mot,1,DMR-MARC
@@ -1959,7 +1986,7 @@ 312620,KC8LTS,Novi,Michigan,United States,442.21250,1,+5.000,Peer,TS1,KC8LTS,Primary Talkgroups
Time Slot #2- TG 2 = MI5-STATEW2
Time Slot #1- TG 3 = DMR-MARCNA
Time Slot #1- TG 1 = DMR-MARCWW

Secondary Talkgroups
Time Slot #1- TG 51 = MI5-STATEW1
Time Slot #1- TG 53 = MI5-EVENT1
Time Slot #2- TG 54 = MI5-EVENT2
Time Slot #1- TG 55 = MI5-EVENT3
Time Slot #2- TG 56 = MI5-EVENT4

You Must Have [ARS] Disabled Within Your Radio

Contact: Fred Moses, W8FSM
Email: fred@moses.bz
Website: http://w8cmn.net/dmr/mi5,1,DMR-Mi5
312621,KB8POO,Waterloo,Michigan,United States,147.31000,1,+0.600,Peer,TS1 TS2,N8URW,Time Slot #1- TG 3126 =Michigan Statewide
Time Slot #1- TG 3160 = DCI 1
Time Slot #1- TG 3777215 = Comm 1(TRBO-6)
Time Slot #2- TG 3163= DMR-MARC NA
Time Slot #2- TG 3161= DMR-MARC WW
Time Slot #2- TG 3777216= Comm 2 (TRBO-6)
Time Slot #2- TG 3162= DCI 2
Time Slot #2- TG 310= TAC-310
Time Slot #2- TG 3100 = The Bridge


You Must Have [ARS] Disabled Within Your Radio


Contact: Jason Bailey, N8URW
Email: j2840fl@yahoo.com (http://mc/compose?to=j2840fl@yahoo.com)
Website: http://www.trbo.info (http://www.trbo.info/),1,DCI
312622,KA8WYN,Bad Axe,Michigan,United States,442.03750,2,+5.000,Peer,TS1 TS2,KA8WYN,,0,DCI
-312623,KA8WYN,Warren,Michigan,United States,442.03750,3,+5.000,Peer,TS1 TS2,KA8WYN,Talkgroup Talkgroup ID TimeSlot
Audio Test 2 9999 2
Bridge 2 3100 2
California 1 3106 1
Canada 2 302 2
Comm 1 3777215 1
Comm 2 3777216 2
DCI 1 3160 1
DCI 2 3162 2
Illinois 2 3117 2
Iowa 2 3119 2
Local 2 3166 2
Massachusetts 1 3125 1
Michigan 1 3126 1
Michigan 2 3126 2
Midwest Reg 2 3169 2
North America 2 3163 2
Ohio 1 3139 1
Ontario 2 3023 2
Parrot 1 9998 1
Pennsylvania 1 3142 1
TAC 1 8951 2
TAC 310 310 2
TAC 311 311 2
Washington 1 3153 1
Worldwide 2 3161 2
Worldwide Eng 2 13 2

For Coverage Map:
http://www.ve2dbe.com/rmonline/user/w8cmc/covs/RMD23892B87194_2.zip (http://www.ve2dbe.com/rmonline/user/w8cmc/covs/RMD23)


Contact: Colin, W8CMC
Email: w8cmc@arrl.net
Website:,1,Michigan Net
+312623,KA8WYN,Warren,Michigan,United States,442.03750,3,+5.000,Peer,TS1 TS2,KA8WYN,Time Slot #2 - Group Call 9999 = Audio Test
Time Slot #2 - Group Call 3100 = Bridge USA
Time Slot #1 - Group Call 3181 = Local Net 1
Time Slot #2 - Group Call 3166 = Local Net 2
Time Slot #2 - Group Call 310 = Tac 310
Time Slot #2 - Group Call 311 = TAC 311
Time Slot #1 - Group Call 3777215 = Comm 1
Time Slot #2 - Group Call 3777216 = Comm 2
Time Slot #1 - Group Call 3160 = DCI 1
Time Slot #2 - Group Call 3162 = DCI 2
Time Slot #2 - Group Call 3117 = Illinois
Time Slot #2 - Group Call 3119 = Iowa
Time Slot #1 - Group Call 3125 = Massachusetts
Time Slot #1 - Group Call 3126 = Michigan
Time Slot #2 - Group Call 3126 = Michigan
Time Slot #2 - Group Call 3169 = Midwest Reg
Time Slot #2 - Group Call 3163 = North America
Time Slot #1 - Group Call 3139 = Ohio
Time Slot #2 - Group Call 3023 = Ontario
Time Slot #1 - Group Call 9998 = Parrot
Time Slot #1 - Group Call 3142 = Pennsylvania
Time Slot #1 - Group Call 3106 = California
Time Slot #2 - Group Call 302 = Canada
Time Slot #2 - Group Call 8951 = TACÂ 1
Time Slot #1 - Group Call 3153 = Washington
Time Slot #2 - Group Call 3161 = Worldwide
Time Slot #2 - Group Call 13 = Worldwide Eng

For Coverage Map:
http://www.ve2dbe.com/rmonline/user/w8cmc/covs/RMD23892B87194_2.zip
(http://www.ve2dbe.com/rmonline/user/w8cmc/covs/RMD23
)


Contact: Colin, W8CMC
Email: w8cmc@arrl.net
Website:,1,Michigan Net
312624,N8WAV,Houghton,Michigan,United States,147.12000,1,+0.600,Peer,TS1 TS2,N8WAV,,0,DMR-MARC-W8YY
312625,KD8RXD,Kent City,Michigan,United States,442.21250,1,+5.000,Peer,TS1 TS2,KB8ZGL,Primary Talkgroups
Time Slot #2- TG 52 = MI5-STATEW2
Time Slot #1- TG 3 = DMR-MARCNA
Time Slot #1- TG 1 = DMR-MARCWW

Secondary Talkgroups
Time Slot #1- TG 51 = MI5-STATEW1
Time Slot #1- TG 53 = MI5-EVENT1
Time Slot #2- TG 54 = MI5-EVENT2
Time Slot #1- TG 55 = MI5-EVENT3
Time Slot #2- TG 56 = MI5-EVENT4

You Must Have [ARS] Disabled Within Your Radio

Contact: Fred Moses, W8FSM
Email: fred@moses.bz
Website: http://w8cmn.net/dmr/mi5,1,DMR-Mi5
312626,KD8RXD,Greenville,Michigan,United States,443.38750,1,+5.000,Peer,TS1 TS2,KB8ZGL,Please visit http://mi5.cc before using this machine.

Contact: Fred Moses, W8FSM
Email: fred@moses.bz,1,DMR-Mi5
@@ -1975,8 +2002,8 @@ 312636,N8HEE,CHARLOTTE,Michigan,United States,443.60000,1,+5.000,Peer,TS1 TS2,N8HEE,,0,Mi5
312637,KA8WYN,Warren,Michigan,United States,443.55000,3,+5.000,Peer,None,KA8WYN,,0,DCI
312638,K8COP,Muskegon,Michigan,United States,444.95000,1,+5.000,Peer,TS1 TS2,W8FSM,,0,Mi5
-312639,KB8VLL,Marine City,Michigan,United States,443.88750,2,+5.000,Peer,TS1 TS2,KB8VLL,Talkgroup Talkgroup ID TimeSlot
Audio Test 2 9999 2
Bridge 2 3100 2
California 1 3106 1
Canada 2 302 2
Comm 1 3777215 1
Comm 2 3777216 2
DCI 1 3160 1
DCI 2 3162 2
Illinois 2 3117 2
Iowa 2 3119 2
Local 2 3166 2
Massachusetts 1 3125 1
Michigan 1 3126 1
Michigan 2 3126 2
Midwest Reg 2 3169 2
North America 2 3163 2
Ohio 1 3139 1
Ontario 2 3023 2
Parrot 1 9998 1
Pennsylvania 1 3142 1
TAC 1 8951 2
TAC 310 310 2
TAC 311 311 2
Washington 1 3153 1
Worldwide 2 3161 2
Worldwide Eng 2 13 2

For Coverage Map:
http://www.ve2dbe.com/rmonline/user/w8cmc/covs/RMD23892B87194_2.zip (http://www.ve2dbe.com/rmonline/user/w8cmc/covs/RMD23)


Contact: Colin, W8CMC
Email: w8cmc@arrl.net
Website:,1,Michigan Net
-312640,KD8VIV,Clarkston,Michigan,United States,444.83750,2,+5.000,Peer,TS1 TS2,KD8VIV,Talkgroup Talkgroup ID TimeSlot
Audio Test 2 9999 2
Bridge 2 3100 2
California 1 3106 1
Canada 2 302 2
Comm 1 3777215 1
Comm 2 3777216 2
DCI 1 3160 1
DCI 2 3162 2
Illinois 2 3117 2
Iowa 2 3119 2
Local 2 3166 2
Massachusetts 1 3125 1
Michigan 1 3126 1
Michigan 2 3126 2
Midwest Reg 2 3169 2
North America 2 3163 2
Ohio 1 3139 1
Ontario 2 3023 2
Parrot 1 9998 1
Pennsylvania 1 3142 1
TAC 1 8951 2
TAC 310 310 2
TAC 311 311 2
Washington 1 3153 1
Worldwide 2 3161 2
Worldwide Eng 2 13 2

For Coverage Map:
http://www.ve2dbe.com/rmonline/user/w8cmc/covs/RMD23892B87194_2.zip (http://www.ve2dbe.com/rmonline/user/w8cmc/covs/RMD23)


Contact: Colin, W8CMC
Email: w8cmc@arrl.net
Website:,1,Michigan Net
+312639,KB8VLL,Marine City,Michigan,United States,443.88750,2,+5.000,Peer,TS1 TS2,KB8VLL,Time Slot #2 - Group Call 9999 = Audio Test
Time Slot #2 - Group Call 3100 = Bridge USA
Time Slot #1 - Group Call 3181 = Local Net 1
Time Slot #2 - Group Call 3166 = Local Net 2
Time Slot #2 - Group Call 310 = Tac 310
Time Slot #2 - Group Call 311 = TAC 311
Time Slot #1 - Group Call 3777215 = Comm 1
Time Slot #2 - Group Call 3777216 = Comm 2
Time Slot #1 - Group Call 3160 = DCI 1
Time Slot #2 - Group Call 3162 = DCI 2
Time Slot #2 - Group Call 3117 = Illinois
Time Slot #2 - Group Call 3119 = Iowa
Time Slot #1 - Group Call 3125 = Massachusetts
Time Slot #1 - Group Call 3126 = Michigan
Time Slot #2 - Group Call 3126 = Michigan
Time Slot #2 - Group Call 3169 = Midwest Reg
Time Slot #2 - Group Call 3163 = North America
Time Slot #1 - Group Call 3139 = Ohio
Time Slot #2 - Group Call 3023 = Ontario
Time Slot #1 - Group Call 9998 = Parrot
Time Slot #1 - Group Call 3142 = Pennsylvania
Time Slot #1 - Group Call 3106 = California
Time Slot #2 - Group Call 302 = Canada
Time Slot #2 - Group Call 8951 = TACÂ 1
Time Slot #1 - Group Call 3153 = Washington
Time Slot #2 - Group Call 3161 = Worldwide
Time Slot #2 - Group Call 13 = Worldwide Eng

For Coverage Map:
http://www.ve2dbe.com/rmonline/user/w8cmc/covs/RMD23892B87194_2.zip
(http://www.ve2dbe.com/rmonline/user/w8cmc/covs/RMD23)


Contact: Colin, W8CMC
Email: w8cmc@arrl.net
Website:,1,Michigan Net
+312640,KD8VIV,Clarkston,Michigan,United States,444.83750,2,+5.000,Peer,TS1 TS2,KD8VIV,Time Slot #2 - Group Call 9999 = Audio Test
Time Slot #2 - Group Call 3100 = Bridge USA
Time Slot #1 - Group Call 3181 = Local Net 1
Time Slot #2 - Group Call 3166 = Local Net 2
Time Slot #2 - Group Call 310 = Tac 310
Time Slot #2 - Group Call 311 = TAC 311
Time Slot #1 - Group Call 3777215 = Comm 1
Time Slot #2 - Group Call 3777216 = Comm 2
Time Slot #1 - Group Call 3160 = DCI 1
Time Slot #2 - Group Call 3162 = DCI 2
Time Slot #2 - Group Call 3117 = Illinois
Time Slot #2 - Group Call 3119 = Iowa
Time Slot #1 - Group Call 3125 = Massachusetts
Time Slot #1 - Group Call 3126 = Michigan
Time Slot #2 - Group Call 3126 = Michigan
Time Slot #2 - Group Call 3169 = Midwest Reg
Time Slot #2 - Group Call 3163 = North America
Time Slot #1 - Group Call 3139 = Ohio
Time Slot #2 - Group Call 3023 = Ontario
Time Slot #1 - Group Call 9998 = Parrot
Time Slot #1 - Group Call 3142 = Pennsylvania
Time Slot #1 - Group Call 3106 = California
Time Slot #2 - Group Call 302 = Canada
Time Slot #2 - Group Call 8951 = TAC 1
Time Slot #1 - Group Call 3153 = Washington
Time Slot #2 - Group Call 3161 = Worldwide
Time Slot #2 - Group Call 13 = Worldwide Eng

For Coverage Map:
http://www.ve2dbe.com/rmonline/user/w8cmc/covs/RMD23892B87194_2.zip
(http://www.ve2dbe.com/rmonline/user/w8cmc/covs/RMD23
)


Contact: Colin, W8CMC
Email: w8cmc@arrl.net
Website:,1,Michigan Net
312641,KC8LMI,Pleasant Lk.,Michigan,United States,442.51250,1,+5.000,Peer,TS1 TS2,KC8LMI,,0,DCI-Michigan
312642,W8FSM,Detroit,Michigan,United States,444.00000,1,5.000,Peer,TS1 TS2,W8FSM,,0,Mi5
312643,W8CMN,Grass Lake,Michigan,United States,443.81250,1,+5.000,Peer,TS1 TS2,W8FSM,Please visit http://mi5.cc before using this machine.

Contact: Fred Moses, W8FSM
Email: fred@moses.bz,1,DMR-Mi5
@@ -1990,6 +2017,8 @@ 312651,N8WAV,Houghton,Michigan,United States,435.00000,1,+5.000,Peer,TS1 TS2,N8WAV,,1,DMR-MARC
312652,W8YY,Phoenix,Michigan,United States,444.75000,1,+5.000,Peer,TS1 TS2,KD8CPX,,0,HARC
312653,K8SN,Moline,Michigan,United States,442.26250,1,+5.000,None,TS1 TS2,K8SN,,0,BrandMeister
+312654,W8PGW,Ann Arbor,Michigan,United States,443.50000,0,+5.000,Peer,TS1 TS2,K8NOS,,0,BrandMeister
+312655,N8NOE,WATERFORD,Michigan,United States,442.28750,1,+5.000,None,Mixed Mode,N8NOE,,0,Unknown at this time
312701,NH7CY,Minneapolis,Minnesota,United States,442.42500,1,+5.000,Master,TS1 TS2,NH7CY,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 13 = WW English
Time Slot #1 - Group Call 3 =N. America

Time Slot #1 - Group Call 310= TAC 310 (PTT activated)
Time Slot #2 - Group Call 2 = Local
Time Slot #2- Group Call 3169 = Midwest Regional

You Must Have [ARS] Disabled Within Your Radio




Contact Name: Jason, NH7CY
Email: ballesteros.jasonh@gmail.com
Website:,1,Independent
312702,N0YNT,Oakdale,Minnesota,United States,443.42500,1,+5.000,Peer,TS1 TS2,N0YNT,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 13 = WW English
Time Slot #1 - Group Call 3 =N. America
Time Slot #1 - Group Call 310= TAC 310 (PTT activated)
Time Slot #2 - Group Call 2 = Local
Time Slot #2- Group Call 3169 = Midwest Regional

You Must Have [ARS] Disabled Within Your Radio

Contact: Matt, N0YNT
Email: mgenelin@fastcomputerserviceco.com,1,K4USD Net
312703,N0YNT,Saint Paul,Minnesota,United States,442.02500,1,+5.000,Peer,TS1 TS2,N0YNT,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 13 = WW English
Time Slot #1 - Group Call 3 =N. America

Time Slot #1 - Group Call 310= TAC 310 (PTT activated)
Time Slot #2 - Group Call 2 = Local
Time Slot #2- Group Call 3169 = Midwest Regional

You Must Have [ARS] Disabled Within Your Radio

Contact Name: Matt, N0YNT
Email: mgenelin@gmail.com
Website:,1,K4USD Net
@@ -2011,7 +2040,7 @@ 312719,N0BVE,MSP-Airport,Minnesota,United States,444.92500,11,+5.000,Peer,TS1 TS2,N0BVE,,1,K4USD
312720,KC0ARX,Saint Cloud,Minnesota,United States,442.22500,3,+5.000,Peer,TS1 TS2,KC0ARX,,1,K4USD
312721,K0GOI,Centervill,Minnesota,United States,443.67500,11,+5.000,Peer,TS1 TS2,N0GOI,,1,K4USD
-312722,KC0CAP,Litchfield,Minnesota,United States,443.80000,3,+5.000,Master,Mixed Mode,KC0CAP,,1,K4USD
+312722,KC0CAP,Litchfield,Minnesota,United States,443.80000,3,+5.000,Peer,TS1 TS2,KC0CAP,,1,K4USD
312801,KD4VVZ,Lucedale,Mississippi,United States,444.20000,1,+5.000,Master,TS1 TS2,KD4VVZ,TS1 TG 13 WW Eng (PTT)
TS1 TG 3 NA
TS2 TG 3174 SE Regional
TS2 TG 2 Local
TS1 TG 31121 FCDMR (NE FL/SE GA) (PTT)
TS2 TG 3113 GA State
TS1 TG 310 Tac 310 (PTT)
TS2 TG 311 Tac 311 (PTT)
TS1 TG 113 UA English 1 (PTT)
TS1 TG 123 UA English 2 (PTT)
TS2 TG 9998 Parrot (PTT)
TS2 TG 9999 Audio Test (PTT)

Contact: General, KD4VVZ
Email: kd4vvz@gmail.com
Coverage: https://drive.google.com/file/d/0B60YxqeFJBIxVEhWZnZKd3ZWN1E/view?usp=sharing,1,DMR-MARC
312802,K5WHB,corinth,Mississippi,United States,147.28500,1,+0.600,Master,Mixed Mode,K5WHB,,0,ham
312900,W0WJB,Kansas City,Missouri,United States,443.45000,1,+5.000,Peer,TS1,W0WJB,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 3 = North America/English Speaking
Time Slot #2 - Group Call 2 = Local Only
Time Slot #2- Group Call 3169 =
Midwest Regional

You Must Have [ARS] Disabled Within Your Radio

Coverage Area (http://www.dmr-marc.net/images/w0wjb-coverage.jpg),1,KS DMR- Kansas City
@@ -2123,7 +2152,7 @@ 313420,N2IXU,Toms River,New Jersey,United States,441.90000,1,+5.000,Peer,TS1 TS2,N2IXU,Time Slot
#1 - Group Call TG 444 NY Metro System wide-FT
#1 - Group Call TG 1 = World Wide -PTT
#1 - Group Call TG 3 = North America  - PTT
#1 - Group Call TG 13 = World Wide English-PTT
#1 - Group Call TG 3172 = NE / Regional-PTT
#1 - Group Call TG 310 = Tac 310- PTT
#1 - Group Call TG 311 = Tac 311- PTT
#1 - Group Call TG 9998 = Parrot , Audio Test Server-PTT
#2 - member only private Talk Groups

You Must Have [ARS] Disabled Within Your Radio

Contact Name: Bernie, NY4Z
Email: ny4z@yahoo.com,1,Bronx-TRBO
313421,WA2JWR,Toms River,New Jersey,United States,445.77500,3,-5.000,Peer,TS1 TS2,WA2JWR,Time Slot
#1 - Group Call TG 444 NY Metro System wide-FT
#1 - Group Call TG 1 = World Wide - PTT
#1 - Group Call TG 3 = North America  - PTT
#1 - Group Call TG 13 = World Wide English-PTT
#1 - Group Call TG 3172 = NE / Regional-PTT
#1 - Group Call TG 310 = Tac 310 -PTT
#1 - Group Call TG 311 = Tac 311 -PTT
#1 - Group Call TG 312 = Tac 312 -PTT
#1 - Group Call TG 3100 = DCI Bridge -PTT
#1 - Group Call TG 9998 = Parrot , Audio Test Server-PTT
#2 - member only private Talk Groups

You Must Have [ARS] Disabled Within Your Radio

Contact Name: Bernie, NY4Z
Email: ny4z@yahoo.com,1,Bronx-TRBO
313422,N2ICV,Blackwood,New Jersey,United States,440.70000,2,+5.000,None,TS1 TS2,N2ICV,,0,none (=
-313423,KD2KWD,Paramus,New Jersey,United States,444.15000,0,+5.000,Peer,TS1 TS2,KD2KWD,TS1 TG=444 = BronxTRBO Local (ON)
TS 1 TG-1 = MARC Worldwide (PTT)
TS 1 TG-3 = MARC North America (PTT)
TS 1 TG-3100 = Bridge-3100 (PTT)
TS 1 TG-310 = TAC-310 (PTT)
TS 1 TG-311 = TAC-311 (PTT)
TS 1 TG-312 = TAC-312 (PTT)
TS 1 TG-8951= TAC-1
America (PTT)
TS 1 TG-113 = UA English 1 (PTT)
TS 1 TG-9998 = Parrot (PTT)
TS 2 TG-9 = Local-Repeater (ON)
TS 2 TG-123 = UA English 2 (PTT)
TS 2 TG-3134 = New Jersey Statewide (PTT)


Contact Name: Michael KD2KWD
Email: Michael@kd2kwd.com
Website: KD2KWD.COM
,1,FL-DMR
+313423,KM4WUD,Paramus,New Jersey,United States,444.15000,0,+5.000,Peer,TS1 TS2,KD2KWD,TS1 TG=444 = BronxTRBO Local (ON)
TS 1 TG-1 = MARC Worldwide (PTT)
TS 1 TG-3 = MARC North America (PTT)
TS 1 TG-3100 = Bridge-3100 (PTT)
TS 1 TG-310 = TAC-310 (PTT)
TS 1 TG-311 = TAC-311 (PTT)
TS 1 TG-312 = TAC-312 (PTT)
TS 1 TG-8951= TAC-1
America (PTT)
TS 1 TG-113 = UA English 1 (PTT)
TS 1 TG-9998 = Parrot (PTT)
TS 2 TG-9 = Local-Repeater (ON)
TS 2 TG-123 = UA English 2 (PTT)
TS 2 TG-3134 = New Jersey Statewide (PTT)


Contact Name: Michael KD2KWD
Email: Michael@kd2kwd.com
Website: KD2KWD.COM
,1,MotoDMR
313424,KD2HUY,Plainfield,New Jersey,United States,444.40000,1,+5.000,Peer,TS1 TS2,KC2VRJ,,0,Brandmister
313425,KC2WBJ,Kendall Park,New Jersey,United States,440.76250,1,+5.000,Master,TS1 TS2,KB2EAR,,0,BrandMeister
313426,W2QW,Green Brook,New Jersey,United States,442.25000,1,+5.000,None,TS1 TS2,W2UDT ,,0,Brandmister
@@ -2132,7 +2161,7 @@ 313429,KB2EAR,Kendall Park,New Jersey,United States,440.76250,1,+5.000,None,Mixed Mode,KB2EAR,,0,Brandmeister
313430,AA2QD,bayonne,New Jersey,United States,446.62500,1,-5.000,Master,TS1 TS2,N2OVA,,0,none
313431,WR3IRS,Corbin City,New Jersey,United States,440.40000,1,+5.000,Peer,TS1 TS2,WN3A,,1,K4USD
-313432,KD2KWD,Mount Olive,New Jersey,United States,444.08750,0,+5.000,Master,TS1 TS2,KD2KWD,,0,MotoDMR
+313432,KM4WUD,Portable,New Jersey,United States,444.08750,0,+5.000,Master,TS1 TS2,KD2KWD,,0,MotoDMR
313501,N5UBJ,Farmington,New Mexico,United States,442.32500,1,+5.000,Peer,TS1 TS2,N5UBJ,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 13 = WW English
Time Slot #1 - Group Call 3 = N. America
Time Slot #2 = Group Call 2 = AZ/NM Local
Time Slot #2 = Group Call 3100 = DCI Bridge
Time Slot #2 = Group Call 3176 = Regional SW
Time Slot #2 - Group Call 310 = TAC310

You Must Have [ARS] Disabled Within Your Radio

Contact Information: Bill, N5UBJ
Email: vanhuss@swwmail.net,1,AZ-TRBONET
313502,N5UBJ,Aztec,New Mexico,United States,442.25000,1,+5.000,Peer,TS1 TS2,N5UBJ,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 13 = WW English
Time Slot #1 - Group Call 3 = N. America
Time Slot #2 = Group Call 2 = AZ/NM Local
Time Slot #2 = Group Call 3100 = DCI Bridge
Time Slot #2 = Group Call 3176 = Regional SW
Time Slot #2 - Group Call 310 = TAC310

You Must Have [ARS] Disabled Within Your Radio

Contact Information: Bill, N5UBJ
Email: vanhuss@swwmail.net,1,AZ-TRBONET
313503,KA8JMW,Albuquerque,New Mexico,United States,442.90000,7,+5.000,Peer,TS1 TS2,KA8JMW,Time Slot#1 - Group Call 700 = Colorado Wide
Time Slot#2 - Group Call 719 = Colorado South

You Must Have [ARS] Disabled Within Your Radio.

Contact: Ed, KA8JMW
Email: ka8jmw@arrl.org,1,Rocky Mtn
@@ -2278,7 +2307,7 @@ 313920,KD8EVR,Mansfield,Ohio,United States,444.70000,7,+5.000,Master,Mixed Mode,KD8EVR,,0,Brandmeister
313921,W8TRB,Columbus,Ohio,United States,145.37000,1,-0.600,Master,TS1 TS2,W8KHW,W5BSG 443.150 +5 MHz Color Code 0
W8TRB 927.0125 -25 MHz Color Code 1

Contact: Kevin, W8KHW
Email: w8khw@arrl.net
Website: http://www.codig.com,1,CODIG-
313922,KD8DRG,Norton,Ohio,United States,443.85000,7,+5.000,Peer,TS1 TS2,WD8KNL,,0,BrandMeister
-313923,KD8AVO,Medina,Ohio,United States,442.47500,7,+0.500,Peer,TS1 TS2,KD8AVO,,0,Hytera
+313923,KD8AVO,Montville,Ohio,United States,442.47500,7,+0.500,Peer,TS1 TS2,KD8AVO,,0,Hytera
313924,N8OHU,Andover,Ohio,United States,444.25000,1,+5.000,Master,TS1,N8OHU,,0,DMR-Plus
313925,WB8SCT,Dayton,Ohio,United States,444.60000,1,+5.000,Master,TS1 TS2,WB8SCT,,0,K4USD
313926,N8CXU,21550 BALL AVE,Ohio,United States,449.85000,1,5.000,Peer,TS1 TS2,N8CXU,,0,Motorola
@@ -2299,6 +2328,8 @@ 313941,N9AGC,Mentor,Ohio,United States,444.47500,1,+5.000,None,TS1 TS2,N9AGC,,0,mixed
313942,N8OJ,Marietta,Ohio,United States,145.33000,1,-0.600,Peer,TS1 TS2,W8JL,,0,Brandmeister
313943,N8NOD,Mentor ,Ohio,United States,444.47500,1,+5.000,Peer,TS1 TS2,N9AGC,,1,K4USD
+313944,N8OND,Medina,Ohio,United States,443.32500,1,+05.000,Master,TS1 TS2,N8OND,,0,yes
+313945,KB8UDE,PORTABLE,Ohio,United States,442.00000,15,+5.000,Peer,TS1 TS2,KB8UDE,,0,Undecided
314000,AE5DN,Yukon,Oklahoma,United States,444.32500,1,+5.000,Peer,TS1 TS2,AE5DN,Time Slot #1 - Group Call 1 = WW All, PTT 10 min.
Time Slot #1 - Group Call 13= WW English, PTT 10 min.
Time Slot #1 - Group Call 3 = DMR-MARC North America Time Slot #1 - Group Call 310 = TAC-310, PTT 10 min. Time Slot #1 - Group Call 311 = TAC-311, PTT 10 min. Time Slot #1 - Group Call 9999 = Audio Test with VU Meter on NORCALDMR.com , PTT, 5 min. time out Time Slot #2 - Group Call 3140 = OK-KS Temporary Time Slot #2 - Group Call 3175= TX-OK Regional
Time Slot #2 - Group Call 2 = Local
Time Slot #2 - Group Call 9998 = Audio Test (Parrot)

Contact: AE5DN, Mark
Email: mark.matalik@gmail.com,1,OK
314001,W5RAB,Bartlesville,Oklahoma,United States,442.18750,1,+5.000,Peer,TS1 TS2,W5RAB,Time Slot #1 - Group Call 1 = WW All, PTT 10 min.
Time Slot #1 - Group Call 13= WW English, PTT 10 min.
Time Slot #1 - Group Call 3 = DMR-MARC North America Time Slot #1 - Group Call 310 = TAC-310, PTT 10 min. Time Slot #1 - Group Call 311 = TAC-311, PTT 10 min. Time Slot #1 - Group Call 9999 = Audio Test with VU Meter on NORCALDMR.com , PTT, 5 min. time out Time Slot #2 - Group Call 3140 = OK-KS Temporary Time Slot #2 - Group Call 3175= TX-OK Regional
Time Slot #2 - Group Call 2 = Local
Time Slot #2 - Group Call 9998 = Audio Test (Parrot)

Contact: Bob, W5RAB
Email: rbuford@bartnet.net,1,OK
314002,WA5LVT,Tulsa South,Oklahoma,United States,442.16250,2,+5.000,Peer,TS1 TS2,WD5ETD,Time Slot #1 - Group Call 1 = WW All, PTT 10 min.
Time Slot #1 - Group Call 13= WW English, PTT 10 min.
Time Slot #1 - Group Call 3 = DMR-MARC North America Time Slot #1 - Group Call 310 = TAC-310, PTT 10 min. Time Slot #1 - Group Call 311 = TAC-311, PTT 10 min. Time Slot #1 - Group Call 9999 = Audio Test with VU Meter on NORCALDMR.com , PTT, 5 min. time out Time Slot #2 - Group Call 3140 = OK-KS Temporary Time Slot #2 - Group Call 3175= TX-OK Regional
Time Slot #2 - Group Call 2 = Local
Time Slot #2 - Group Call 9998 = Audio Test (Parrot)
Contact: Rick, WD5ETD
Email: wd5etd@gmail.com,1,OK
@@ -2355,6 +2386,8 @@ 314221,WB0YLE,Morrisville,Pennsylvania,United States,444.98750,1,+5.000,Peer,TS1 TS2,WB0YLE,,0,Brandmeister
314222,N3FE,Arnot,Pennsylvania,United States,444.85000,1,+5.000,Master,TS1 TS2,N3FE,,0,Private
314223,N3FE,Mansfield,Pennsylvania,United States,146.91000,1,-0.600,Peer,TS1 TS2,N3FE,,0,Private
+314224,W3WGX,Seven Springs,Pennsylvania,United States,146.83500,1,-0.600,Peer,TS1 TS2,W3KKC,,1,K4USD
+314225,W3BXW,Summerdale PA,Pennsylvania,United States,442.45000,1,+5.000,Peer,TS1 TS2,WA3BXW,,1,NJ-Trbo
314400,KB1ISZ,Smithfield,Rhode Island,United States,446.42500,1,-5.000,Peer,TS1 TS2,KB1ISZ,,0,DMR-plus
314401,W1DMR,Cumberland,Rhode Island,United States,146.62500,0,-0.600,Peer,TS1 TS2,KB1ISZ,,0,BrandMeister
314402,KA1REO,Kingston,Rhode Island,United States,446.52500,1,-5.000,Master,TS1 TS2,KA1REO,,0,Mixed Mode
@@ -2476,7 +2509,7 @@ 314859,K5TRA,Austin,Texas,United States,927.18750,1,-25.000,Peer,Mixed Mode,K5TRA,,0,Brandmeister
314860,N5SLI,Harlingen,Texas,United States,443.87500,1,+5.000,Peer,TS1,N5SLI,,0,Brandmeister
314861,N5GDL,Carrollton,Texas,United States,444.07500,1,+5.000,Peer,TS1 TS2,N5GDL,,0,TBD
-314862,KE5FGC,Tyler,Texas,United States,444.87500,1,+5.000,Master,TS1 TS2,KE5FGC,,0,Lonestar
+314862,KE5FGC,Tyler,Texas,United States,443.57500,1,+5.000,Master,TS1 TS2,KE5FGC,Time Slot #1-Group Call 1 = Worldwide (PTT)
Time Slot #1-Group Call 3 = North America
Time Slot #1-Group Call 13 = Worldwide English
Time Slot #2-Group Call 3148 = TX Statewide
Time Slot #2-Group Call 3175 =TX-OK Regional
Time Slot #2-Group Call 2 = DFW Metro,1,Lonestar
314900,N6DVZ,Salt Lake City,Utah,United States,447.93750,1,-5.000,Master,TS1 TS2,N6DVZ,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 13 = World Wide English
Time Slot #1 - Group Call 3 = U.S. / English Speaking Countries
Time Slot #1 - Group Call 311 = Tac 311
Time Slot #1 - Group Call 13149 = Utah State 2
Time Slot #1 - Group Call 1776 = USA
Time Slot #1 - Group Call 9998 = Echo Test
Time Slot #2 - Group Call 2 = Local Only
Time Slot #2 - Group Call 3177 = Mountain Regional
Time Slot #2 - Group Call 3149 = Utah State 1
Time Slot #2 - Group Call 310 = Tac 310
Time Slot #2 - Group Call 3100 = Bridge Group

Coverage Map

Contact Name: Roger Davies
Website: dmr-utah.net
Email:1n6dvz@gmail.com,1,Utah-DMR
314901,KC7WST,Woodland Hills,Utah,United States,449.80000,1,-5.000,Master,TS1 TS2,KC7WSU,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 13 = WW English
Time Slot #1 - Group Call 3 = N. America
Time Slot #2 - Group Call 2 = Local
Time Slot #2 - Group Call 3149 = Utah
Time Slot #2 - Group Call 3177 = Mountain

Contact: Chris Andrist, KC7WSU
Email: dmr@yeahmon.net
Website: http://www.yeahmon.net/dmr/,1,Utah-DMR
314902,NU7TS,Logan,Utah,United States,447.00000,1,-5.000,Peer,TS1 TS2,WA7KMF,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 13 = World Wide English
Time Slot #1 - Group Call 3 = U.S. / English Speaking Countries
Time Slot #1 - Group Call 311 = Tac 311
Time Slot #1 - Group Call 13149 = Utah State 2
Time Slot #1 - Group Call 1776 = USA
Time Slot #1 - Group Call 9998 = Echo Test
Time Slot #2 - Group Call 2 = Local Only
Time Slot #2 - Group Call 3177 = Mountain Regional
Time Slot #2 - Group Call 3149 = Utah State 1
Time Slot #2 - Group Call 310 = Tac 310
Time Slot #2 - Group Call 3100 = Bridge Group

Coverage Map
Website: dmr-utah.net

Contact: Bill Neville, WA7KMF
Email: Bill.Neville@gmail.com,1,Utah-DMR
@@ -2491,7 +2524,8 @@ 315001,WR1VT,Brattleboro,Vermont,United States,444.40000,1,+5.000,Peer,TS1 TS2,N1ESK,Time Slot #1 - Group Call 1 = World Wide (Sat. Net)
Time Slot #1 - Group Call 13 = WW English
Time Slot #1 - Group Call 3 = North America
Time Slot #1 - Group Call 3172 = Northeast
Time Slot #2 - Group Call 3181= New England
Time Slot #2 - Group Call 8 = Region North
Time Slot #2 - Group Call 3150 = VT Statewide
Time Slot #2 - Group Call 3133 = NH Statewide (PTT)
Time Slot #2 - Group Call 3125 = MA Statewide (PTT)
Time Slot #2 - Group Call 9 = Local Site

Note: All New England repeaters also have TAC310, TAC311, UA113, UA123

Contact: Dave, N1ESK
Email: n1esk@comcast.net

Website: http://nedecn.org,1,NE-TRBO
315002,W1IMD,Pico Peak,Vermont,United States,444.50000,1,+5.000,Peer,TS1 TS2,W1IMD,Time Slot #1 - Group Call 1 = World Wide (Sat. Net)
Time Slot #1 - Group Call 13 = WW English
Time Slot #1 - Group Call 3 = North America
Time Slot #1 - Group Call 3172 = Northeast
Time Slot #2 - Group Call 3181= New England
Time Slot #2 - Group Call 8 = Region North
Time Slot #2 - Group Call 3150 = VT Statewide
Time Slot #2 - Group Call 3133 = NH Statewide (PTT)
Time Slot #2 - Group Call 9 = Local Site

Note: All New England repeaters also have TAC310, TAC311, UA113, UA123

Contact: Paul, W1IMD
Email: w1imd@arrl.net

Website: http://nedecn.org,1,NE-TRBO
315003,W1UWS,Mt. Ascutney,Vermont,United States,448.47500,5,-5.000,Master,TS1 TS2,WB2NWR,Time Slot #1 - Group Call 1 = World Wide (Sat. Net)
Time Slot #1 - Group Call 13 = WW English
Time Slot #1 - Group Call 3 = North America
Time Slot #1 - Group Call 3172 = Northeast
Time Slot #2 - Group Call 3181= New England
Time Slot #2 - Group Call 8 = Region North
Time Slot #2 - Group Call 3150 = VT Statewide
Time Slot #2 - Group Call 3133 = NH Statewide (PTT)
Time Slot #2 - Group Call 9 = Local Site

Note: All New England repeaters also have TAC310, TAC311, UA113, UA123

Contact: Jeff, WB2NWR
Email: katchenj@hotmail.com

Website: http://nedecn.org,1,NE-TRBO
-315004,K1VIT,Warren,Vermont,United States,145.41000,1,-0.600,Peer,TS1 TS2,WA2LRE,Time Slot #1 - Group Call 1 = World Wide*
Time Slot #1 - Group Call 13 = WW English*
Time Slot #1 - Group Call 11 = WW French*
Time Slot #1 - Group Call 3 = North America
Time Slot #1 - Group Call 302 = Canada*
Time Slot #1 - Group Call 310 = TAC310*
Time Slot #1 - Group Call 9999 = Audio Test*
Time Slot #2 - Group Call 3023 = Ontario*
Time Slot #2 - Group Call 3022 = Quebec*
Time Slot #2 - Group Call 3029 = New Brunswick*
Time Slot #2 - Group Call 3150 = Vermont
Time Slot #2 - Group Call 8 = Northern New Eng*
Time Slot #2 - Group Call 3181 = New England*
Time Slot #2 - Group Call 2 = Local

* Indicates PTT Activation required
You Must Have [ARS] Disabled in Your Radio

Trustee: Tony, WA2LRE
Email: css3000@westelcom.com,1,DMR-MARC-CANADA
+315004,K1VIT,Warren,Vermont,United States,145.41000,1,-0.600,Peer,TS1 TS2,N1GBB,Time Slot #1 - Group Call 1 = World Wide*
Time Slot #1 - Group Call 13 = WW English*
Time Slot #1 - Group Call 11 = WW French*
Time Slot #1 - Group Call 3 = North America
Time Slot #1 - Group Call 302 = Canada*
Time Slot #1 - Group Call 310 = TAC310*
Time Slot #1 - Group Call 9999 = Audio Test*
Time Slot #2 - Group Call 3023 = Ontario*
Time Slot #2 - Group Call 3022 = Quebec*
Time Slot #2 - Group Call 3029 = New Brunswick*
Time Slot #2 - Group Call 3150 = Vermont
Time Slot #2 - Group Call 8 = Northern New Eng*
Time Slot #2 - Group Call 3181 = New England*
Time Slot #2 - Group Call 2 = Local

* Indicates PTT Activation required
You Must Have [ARS] Disabled in Your Radio

Trustee: Chris, N1GBB
Email: n1gbb@trans-video.net,1,DMR-MARC-CANADA
+315005,N1GBB,Mt. Snow,Vermont,United States,446.27500,6,-5.000,Peer,TS1 TS2,N1GBB,,0,NE-TRBO
315100,W4YP,Haymarket,Virginia,United States,448.97500,6,-5.000,Peer,TS1 TS2,W4YP,Time Slot #1 - Group Call 1 = Worldwide (PTT)
Time Slot #1 - Group Call 3 = North America
Time Slot #1 - Group Call 13= Worldwide English
Time Slot #2 - Group Call 3172=Northeast Region
Time Slot #2 - Group Call 2 = Local Only

Coverage Area (http://www.dmr-marc.net/images/W4YP-coverage.jpg)

Contact Name: Bob Spindle
Email: w4yp@verizon.net,1,K4USD
315101,W4RAT,Richmond,Virginia,United States,443.58750,1,+5.000,Peer,TS1 TS2,KD4BPZ,Time Slot #2 Group Call 3151 = RVA Statewide
Time Slot #1 Group Call 27500 = Local
Time Slot #1 Group Call 310 = TAC 310
Time Slot #1 Group Call 8951 = TAC 1
Time Slot #1 Group Call 3100 = Bridge
Time Slot #1 Group Call 3174 = DMR-MARC Southeast
Time Slot #1 Group Call 3173 = DMR-MARC Mid-Atlantic
Time Slot #1 Group Call 27501 = VA TAC A
Time Slot #1 Group Call 27502 = VA TAC B
Time Slot #2 Group Call 2= PRN

Richmond Amateur Radio Telecommunications Society “RATS” / FieldComm Association
Contact: Jay Lovelady
http://www.dmrva.org/

You Must Have [ARS] Disables Within Your Radio
Click here to view the Repeater's Coverage Area (http://24.172.25.174:85/resources/richmond_coverage_map.jpg)

,1,DMRVA
315102,WX4F,Fancy Gap,Virginia,United States,443.93750,1,+5.000,Peer,TS1 TS2,WX4F,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 13 = WW English
Time Slot #1 - Group Call 3 = N. America
Time Slot #2 - Group Call 2 = North Carolina/Tennessee

You Must Have [ARS] Disabled Within Your Radio

Click here to view the Repeater's Coverage Area (http://24.172.25.174:85/resources/fancy_gap_coverage_map.jpg)

Contact Name: Gray, WX4F

Email: grayfulk@embarqmail.com,1,NC-PRN-
@@ -2513,6 +2547,8 @@ 315118,K4JK,Harrisonburg,Virginia,United States,444.66250,1,+5.000,Master,TS1 TS2,K4JK,Time Slot #2 Group Call 3151 = RVA Statewide
Time Slot #1 Group Call 27500 = Local
Time Slot #1 Group Call 310 = TAC 310
Time Slot #1 Group Call 8951 = TAC 1
Time Slot #1 Group Call 3100 = Bridge
Time Slot #1 Group Call 3174 = DMR-MARC Southeast
Time Slot #1 Group Call 3173 = DMR-MARC Mid-Atlantic
Time Slot #1 Group Call 27501 = VA TAC A
Time Slot #1 Group Call 27502 = VA TAC B
Time Slot #2 Group Call 2= PRN

Contact: James Kirkham
http://www.dmrva.org/

You Must Have [ARS] Disabled Within Your Radio,1,DMRVA
315119,WA4FC,Charlottesville,Virginia,United States,444.91250,1,+5.000,Master,TS1 TS2,KD4BPZ,Time Slot #2 – Group Call 3151 = VA Statewide
Time Slot #1 – Group Call 27500 = Local
Time Slot #1 – Group Call 310 = DMRX TAC 310
Time Slot #1 – Group Call 8951 = DMRX TAC 1
Time Slot #1 – Group Call 3100 = DCI Bridge/Brandmeister
Time Slot #1 – Group Call 3174 = DMR-MARC Southeast
Time Slot #1 – Group Call 3173 = DMR-MARC Mid-Atlantic
Time Slot #1 – Group Call 27501 = VA TAC A
Time Slot #1 – Group Call 27502 = VA TAC B
Time Slot #2 – Group Call 2= PRN
FieldComm Association
Contact: Jay Lovelady
http://www.dmrva.org/

You Must Have [ARS] Disables Within Your Radio,1,DMRVA
315120,N3QEM,Herndon,Virginia,United States,442.90000,1,+5.000,Master,TS1,N3QEM,,0,none-yet
+315121,N3QEM,Herndon,Virginia,United States,442.43750,1,+5.000,Master,TS1 TS2,N3QEM,,0,None-yet
+315122,N9KET,Vienna,Virginia,United States,442.87500,2,+5.000,Peer,TS1 TS2,N9KET,,1,Chicagoland
315300,N07RF,Winthrop ,Washington,United States,145.21000,3,+2.780,Peer,TS1 TS2,NO7RF,,0,DCI
315301,NO7RF,Winthrop,Washington,United States,444.85000,3,+5.000,Peer,TS1 TS2,NO7RF,Time Slot #2 - Group Call 3161 = DMR-MARC World Wide
Time Slot #2 - DMR-MARC Group Call 3163 = DMR-MARC N. America
Time Slot #1- Group Call 3160 = DCI 1
Time Slot #1- Group Call 3777215 = Comm 1

Time Slot #1- Group Call 3153 = Washington Statewide 1

Time Slot #2- Group Call 3100 = Bridge 2
Time Slot #2- Group Call 3100 = Mountain Regional 3177

Contact Name: Mike, NO7RF
Email: no7rf@otwc.net

Website: http://dci.trbo.info,1,DCI-
315302,NO7RF,Mazama,Washington,United States,433.15000,0,+16.000,Peer,TS1 TS2,NO7RF,,0,DCI
@@ -2592,6 +2628,7 @@ 334104,XE3RCC,Cancún,Quintana Roo,Mexico,438.92500,1,-5.000,Peer,TS1 TS2,XE3RCC,,0,DMR-MARC-XE3RCC
334105,XE1EFQ,Mexico City,Distrito Federal,Mexico,438.20000,1,-5.000,Peer,TS1 TS2,XE1EFQ,Time Slot #1 - Grp Call 1 = World Wide PTT 2 min
Time Slot #1 - Grp Call 3 = North America PTT 15
Time Slot #1 - Grp 13 = WW English PTT 15
Time Slot #1 - Grp Call 14 = WW Spanish
Time Slot #1 - Grp Call 334 = Mexico
Time Slot #2 - Grp Call 2 = Local D.F.
Time Slot #2 - Grp Call 310 = TAC310 PTT 15
Time Slot #2 - Grp Call 8951 = TAC1 PTT 15
Time Slot #2 - Grp Call 3100 = Bridge PTT 15
Time Slot #2 - Grp Call 9998 = Parrot PTT 2

You Must Have [ARS] Disabled Within Your Radio

Contact Name: Juan Carlos, KM4NNO
Email: wodielite@mac.com,1,WLPS-DMR-MARC
334106,XE1FXT,LOS ALTOS DE JALISCO,Jalisco,Mexico,145.37000,1,-0.600,Peer,TS1 TS2,XE1FXT,,1,DMRMARC
+334107,XE1HAX,Guadalajara,Jalisco,Mexico,147.30000,1,+0.600,Peer,TS1 TS2,XE1HAX,,0,Mixed Mode
334201,XE2ITZ,Chihuahua,Chihuahua,Mexico,438.15000,1,-5.000,Peer,TS1 TS2,XE2PMP,Time Slot #1 - Group Call 1 = Worldwide Calling (PTT activation, 2min limit)
Time Slot #1 - Group Call 14 = Spanish Worldwide
Time Slot #2 - Group Call 222 = Local Chihuahua
Time Slot #2 - Group Call 334 Mexico

You Must Have [ARS] Disabled Within Your Radio

Contact Name: Pablo, XE2PMP
Email: pablomp@prodigy.net.mx,1,DMR-MARC
334202,XE2XX,Monterrey,Nuevo Leon,Mexico,438.20000,1,-5.000,Peer,TS1 TS2,XE2XX,,0,Brandmeister
334301,XE3RCC,Cancun,Quintana Roo,Mexico,439.92500,1,-5.000,Peer,TS1 TS2,XE3RA,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 14 = Spanish Worldwide
Time Slot #2 - Group Call 222 = Local Cancun
Time Slot #2 - Group Call 334 Mexico

You Must Have [ARS] Disabled Within Your Radio


Contact Name: Guillermo, XE3RA
Email: xe3ra@yahoo.com,1,DMR-MARC
@@ -2608,6 +2645,7 @@ 460001,BD7II,Shenzhen,All Others,China,438.46000,12,-8.000,Master,TS1,BD7IXF,,0,Shenzhen local
460002,BG8CVQ,wen zhou,,China,439.98000,1,-5.000,Master,TS2,BG8CVQ,,0,TELNET
460003,VR2HKR,Kowloon,Hong Kong,China,435.70000,5,-5.000,None,TS2,VR2UCL,,1,CQARA
+466101,BX1AAK,Keelung,Northern Taiwan,Taiwan,430.64000,1,+0.600,None,TS1 TS2,BX1AAK,,1,bx1aak.ntou.edu.tw
502200,9M4RMM,Penang,East Malaysia,Malaysia,146.70000,1,-0.600,Peer,TS1 TS2,9M2AOC,Time Slot#1 - Group Call 1 = Worldwide Calling (2 min max)
Time Slot #1- Group Call 13 = Worldwide English
Time Slot #2- Group Call 5 = VK/ZL Regional

You Must Have [ARS] Disabled Within Your Radio.

Contact: 9M2AOC
Email:,1,DMR-MARC
502201,9M4RPH,Georgetown,West Malaysia,Malaysia,145.82500,12,-0.600,Master,TS2,9W2POP,,0,DMRNET
502601,9M4RPB,Kota Kinabalu,East Malaysia,Malaysia,146.40000,1,+0.600,Master,TS1 TS2,9M6LK,,0,DMR
@@ -2648,6 +2686,7 @@ 505600,VK6RRR,Perth,Western Australia,Australia,438.20000,1,-5.400,Peer,TS1 TS2,VK6ZTN,Time Slot #1 - Group Call 1 = Worldwide Calling (2 min max)
Time Slot #1 - Group Call 13 = Worldwide English
Time Slot #1 - Group Call 100 = Tech Talk
Time Slot #1 - Group Call 113= UA English 1
Time Slot #1 - Group Call 123= UA English 2
Time Slot #2- Group Call 5 = VK/ZL Regional

You Must Have [ARS] Disabled Within Your Radio.

Contact: Joe Nevin, VK6ZTN
Email: joe.nevin@gmail.com,1,VK-DMR
505601,VK6ZTN,Perth,Western Australia,Australia,438.20000,1,-5.400,Peer,TS1 TS2,VK6ZTN,Time Slot#1 - Group Call 1 = Worldwide Calling (2 min max)
Time Slot#1 - Group Call 13 = Worldwide English
Time Slot#1 - Group Call 113= UA English 1
Time Slot#1 - Group Call 123= UA English 2
Time Slot#2- Group Call 5 = VK/ZL Regional

You Must Have [ARS] Disabled Within Your Radio.

Contact: Joe Nevin, VK6ZTN
Email: joe.nevin@gmail.com,1,VK-DMR
505602,VK6AG,PERTH,Western Australia,Australia,438.20000,1,-5.400,Peer,TS1 TS2,VK6AG,,1,VK-DMR
+505603,VK6RDM,Perth,Western Australia,Australia,439.86250,1,-5.000,Peer,TS1 TS2,VK6ML,,0,unsure
505701,VK7RCR,hobart,Tasmania,Australia,438.52500,10,-5.000,Master,Mixed Mode,VK7ZCR,,0,10.0.0.0
505702,VK7RAA,Launceston,Tasmania,Australia,438.60000,1,-7.000,Peer,TS1 TS2,VK7JD,Time Slot#1 - Group Call 1 = Worldwide Calling (2 min max)
Time Slot#1 - Group Call 13 = Worldwide English
Time Slot#1 - Group Call 113= UA English 1
Time Slot#1 - Group Call 123= UA English 2
Time Slot#1 - Group Call 100 = Tech Talk
Time Slot#2- Group Call 5 = VK/ZL Regional

You Must Have [ARS] Disabled Within Your Radio.,1,VK-DMR
505703,VK7RCR,hobart,Tasmania,Australia,438.52500,1,-5.000,Master,TS1 TS2,VK7ZCR,,0,TUBO
@@ -2684,7 +2723,7 @@ 655500,ZS5HAM,Durban,Kwazulu-Natal,South Africa,438.20000,1,-7.600,Peer,TS1,ZS5BG,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 13 = WW English
Time Slot #2 - Group Call 2 = Local Only

You Must Have [ARS] Disabled Within Your Radio.,1,DMR-MARC
655501,ZS5CEY,Amanzimtoti,Kwazulu-Natal,South Africa,438.30000,1,-7.600,Peer,TS1 TS2,ZS5CEY,,0,None
655502,ZS0PMB,Pietermaritzburg,Kwazulu-Natal,South Africa,438.22500,1,-7.600,Peer,TS1 TS2,ZR5S,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 13 = WW English
Time Slot #2 - Group Call 2 = Local Only

You Must Have [ARS] Disabled Within Your Radio.,1,Motorola
-655600,ZS6TJ,Johannesburg,Gauteng,South Africa,438.65000,1,-7.600,Peer,TS1,ZS6RVC,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 13 = WW English
Time Slot #2 - Group Call 2 = Local Only

You Must Have [ARS] Disabled Within Your Radio.,1,DMR-EUROPE
+655600,ZS6TJ,Johannesburg,Gauteng,South Africa,438.20000,1,-7.600,Peer,TS1,ZS6RVC,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 13 = WW English
Time Slot #2 - Group Call 2 = Local Only

You Must Have [ARS] Disabled Within Your Radio.,1,BM
655601,ZS6VTB,Brakfontein,Gauteng/Mpumalanga,South Africa,438.22500,1,-7.600,Peer,TS1 TS2,ZS6EY,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 13 = WW English
Time Slot #2 - Group Call 2 = Local Only

You Must Have [ARS] Disabled Within Your Radio.,1,BM
655602,ZS0JPL,Pretoria,Gauteng/Mpumalanga,South Africa,438.25000,1,-7.600,PEER,TS1 TS2,ZS6JPL,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 13 = WW English
Time Slot #2 - Group Call 2 = Local Only

You Must Have [ARS] Disabled Within Your Radio.,1,Motorola
655603,ZS6TJ,Johannesburg,Gauteng/Mpumalanga,South Africa,438.30000,1,-7.600,Peer,TS1 TS2,ZS6RVC,,0,BM
@@ -2699,12 +2738,13 @@ 724102,PY1YRF,Rio de Janeiro,Rio de Janeiro,Brazil,438.67500,1,-5.000,Peer,TS1 TS2,PY4CEP,,1,Dmrplus
724103,PY1MRB,Rio de janeiro,Rio de Janeiro,Brazil,146.93000,1,-0.6,Master,TS1 TS2,PU1LOY,,0,DMR-BRAZIL
724104,PY1RSV,rio de janeiro,Rio de Janeiro,Brazil,146.93000,1,-0.600,Peer,TS1 TS2,PU1LOY,,0,DMR-BRAZIL
+724105,PY1EGR,Rio de Janeiro,Rio de Janeiro,Brazil,439.90000,1,-5.000,None,None,PY1EGG,,1,DMR-MARC
724200,PY2KSM,Sao Paulo,Sao Paulo,Brazil,147.36000,1,0.6,Peer,TS1 TS2,PY2PE,,1,DMR-MARC-PY4REP
724201,PY2KMA,Louveira,Sao Paulo,Brazil,439.47500,6,-5.000,None,TS1 TS2,PU2PKE,,0,7242
724202,PY2KSP,Louveira,Sao Paulo,Brazil,147.30000,15,0.6,None,TS1 TS2,PU2PKE,,0,DMR
724203,PY2KMA,São Paulo,Sao Paulo,Brazil,145.33000,15,-0.600,Master,TS2,PY2XH,,0,amrase
724204,PY2KMS,São Paulo,Sao Paulo,Brazil,147.36000,1,0.6,Peer,TS1 TS2,PY4CEP,,1,DMR+ Brazil
-724205,PY2KSM,Sao Paulo,Sao Paulo,Brazil,147.36000,1,+0.600,Peer,TS1 TS2,PY4CEP,,0,DMR+ Brazil
+724205,PY2KSM,Sao Paulo,Sao Paulo,Brazil,147.36000,1,0.6,Peer,TS1 TS2,PY4CEP,,0,DMR+ Brazil
724400,PY4REP,Divinopolis,,Brasil,438.30000,1,-7.6,PEER,TS1 TS2,PY4CEP,,0,
724401,PY4RSE,Mateus Leme,Minas Gerais,Brazil,146.75000,1,-0.6,Peer,TS1 TS2,PY4CEP,Time Slot #1 - Group Call 1 = World Wide English
Time Slot #1 - Group Call 75 = Portuguese Worldwide
Time Slot #2 - Group Call 724= Brazil


You Must Have [ARS] Disabled Within Your Radio


Contact Name: Carlos Pereira PY4CEP

Email: py4cep@oi.com.br,1,DMR-MARC-PY4REP
724402,PY4RLD,Oca de Pitangui,Minas Gerais,Brazil,146.75000,1,-0.600,Peer,TS1 TS2,PY4CEP,Time Slot #1 - Group Call 1 = World Wide English
Time Slot #1 - Group Call 75 = Portuguese Worldwide
Time Slot #2 - Group Call 724= Brazil


You Must Have [ARS] Disabled Within Your Radio


Contact Name: Carlos Pereira PY4CEP

Email: py4cep@oi.com.br,1,DMR-MARC-PY4REP
@@ -2720,6 +2760,7 @@ 730101,CE1RRA,Arica,Antofagasta,Atacama,Tarapac,Chile,146.97000,1,-0.600,Peer,TS1 TS2,CE1PDL,Time Slot #1 - Group Call 1 = World Wide English
Time Slot #1 - Group Call 14 = Spanish Worldwide
Time Slot #2 - Group Call 730 = Chile

You Must Have [ARS] Disabled Within Your Radio
Contact Name: CE1PDL
Email: ca2@cag.cl,1,DMR-MARC
730102,CE2LS,El Salvador,Antofagasta,Chile,147.27000,1,+0.600,Peer,TS1 TS2,CE2LS,Time Slot #1 - Group Call 1 = World Wide English
Time Slot #1 - Group Call 14 = Spanish Worldwide
Time Slot #2 - Group Call 730 = Chile

You Must Have [ARS] Disabled Within Your Radio
Contact Name: CE2LS
Email: ca2@cag.cl,1,DMR-MARC
730103,CE1RLP,Calama,Antofagasta,Chile,433.10000,1,+5.000,Master,TS1 TS2,CE1RLP,,0,Brandmeister
+730104,CE1PKV,copiapo,Atacama,Chile,147.06000,1,+0.600,Master,TS1 TS2,CE1PKV,,0,no
730200,CE2LS,La Serena,Coquimbo,Chile,146.82000,1,-0.600,Master,TS1,CE2LS,Time Slot #1 - Group Call 1 = World Wide English
Time Slot #1 - Group Call 14 = Spanish Worldwide
Time Slot #2 - Group Call 730 = Chile


You Must Have [ARS] Disabled Within Your Radio


Contact Name: Jerardo CE2NXW




Email: ce2nxw@gmail.com,1,DMR-MARC-
730201,CE2LS,Anacollo,Aisen,Los Lagos,Chile,147.00000,1,-0.600,Peer,TS1,CE2LS,Time Slot #1 - Group Call 1 = World Wide English
Time Slot #1 - Group Call 14 = Spanish Worldwide
Time Slot #2 - Group Call 730 = Chile

You Must Have [ARS] Disabled Within Your Radio

Contact Name: Jerardo CE2NXW

Email: ce2nxw@gmail.com,1,DMR-MARC
730202,CE2LS,Paihuano,Aisen,Los Lagos,Chile,147.63000,1,-0.600,Peer,TS1,C2LS,Time Slot #1 - Group Call 1 = World Wide English
Time Slot #1 - Group Call 14 = Spanish Worldwide
Time Slot #2 - Group Call 730 = Chile

You Must Have [ARS] Disabled Within Your Radio

Contact Name: Gabriela Mistral

Email: ca2dmr@gmail.com,1,DMR-MARC
@@ -2736,6 +2777,7 @@ 730305,CE3RSC,santiago,Reg.Metr. de Santiago,Chile,146.97000,1,-0.600,Peer,TS1 TS2,CE3CTF,,0,brandmeister
730306,CE3RSC,santiago,Reg.Metr. de Santiago,Chile,147.00000,1,+0.600,Peer,TS1 TS2,CE3CTF,,0,brandmeister
730307,CE3AA,SANTIAGO,Reg.Metr. de Santiago,Chile,146.64000,1,-0.600,None,None,CE3AA,,1,DMR-MARC
+730308,CD3FTS,Maipu,Reg.Metr. de Santiago,Chile,147.00000,1,-0.600,Master,TS1,CD3FTS,,0,192.168.11.1
730601,CE6RTV,Valdivia,Los Lagos,Chile,147.12000,1,+0.600,Peer,TS1,CD6JAU,,0,N/A
730602,CE7RFS,CASTRO,Los Lagos,Chile,154.26250,1,+0.650,Master,Mixed Mode,CE7RFS,,0,YES
734500,YV5DMR,Caracas,Distrito Capital,Venezuela,147.24000,1,+0.600,Peer,TS1 ,YV5OF,Time Slot #1 - Group Call 1 = Worldwide Calling (PTT activation, 2min limit)
Time Slot #1 - Group Call 13 = English Worldwide (PTT activation)
Time Slot #1 - Group Call 14 = Spanish Worldwide
Time Slot #2 - Group call 734- Venezuela Nacional,1,DMR-MARC
diff --git a/subscriber_ids.csv b/subscriber_ids.csv index d877c48..13159ac 100644 --- a/subscriber_ids.csv +++ b/subscriber_ids.csv @@ -315,7 +315,7 @@ 1112317,KG4TRV,Alex H De Carvalho,,Miami,Florida,United States,CCS7
1112318,KM4YDO,Andrew Ortega,,Gainesville,Florida,United States,DMR
1112319,KM4VGY,Clifford W Turk,,Orlando,Florida,United States,DMR
-1112320,KC2TUS,Joseph A Cardani,,Orlando,Florida,United States,DMR
+1112320,W3FOY,Joseph A Cardani,,Orlando,Florida,United States,DMR
1112321,WK3P,Robert W Hanbury,,Davenport,Florida,United States,CCS7
1112322,W4EE,James A Laughter,Jim,Palm Bay,Florida,United States,Other
1112323,KG4ZVW,Phillip Waltman,,Merritt Island,Florida,United States,DMR
@@ -350,13 +350,34 @@ 1112353,NU2B,Timothy A Lauer,,Vero Beach,Florida,United States,DMR
1112354,KN2D,Kenneth Countess,,Longwood,Florida,United States,DMR
1112355,KM4DIF,Bernard J Doherty,Greygost,Boynton Beach,Florida,United States,DMR
-1112356,KM4YNL,Michael Girard,Mike,Apopka,Florida,United States,DMR
+1112356,KM4YNL,Michael Girard,Mike,Altamonte Springs,Florida,United States,DMR
1112357,WZ4SKY,David Bankston,,Naples,Florida,United States,DMR
1112358,N9AMI,John C Mc Grath,,Weston,Florida,United States,DMR
1112359,KK4EXX,Richard K Mullennex,Dick,North Port,Florida,United States,DMR
1112360,WB4YUC,Bruce A Burke,,N. Lausderdale,Florida,United States,DMR
1112361,K2BWA,Paul Greenberg,,West Palm Beach,Florida,United States,DMR
1112362,KK4KOQ,Charles B Hall,,Orlando,Florida,United States,Other
+1112363,K4KXX,John E Wildeman,,Punta Gorda,Florida,United States,DMR
+1112364,AG8R,Brandon C Gerber,,Clearwater,Florida,United States,DMR
+1112365,KM4RYM,Richard A Smith,,Lake Worth,Florida,United States,DMR
+1112366,W4IEE,Thomas Porada,Tom,Venice,Florida,United States,DMR
+1112367,KG4QIV,Ronnie Farley Farley,,Punta Gorda,Florida,United States,DMR
+1112368,KK4GBD,Richard A Kouns,,Cocoa Beach,Florida,United States,DMR
+1112369,KA2SEY,Philip Casey,,Lehigh Acres,Florida,United States,DMR
+1112370,N4APG,William B Pfost,Bill,Nokomis,Florida,United States,DMR
+1112371,KK4HFP,Ed Palm Bay Digital Repeater Association,Pbdra,Palm Bay, Fl,Florida,United States,DMR
+1112372,KM4MNZ,Jerry Woodbury,,West Palm Beach,Florida,United States,DMR
+1112373,KM4MNZ,Jerry D Woodbury,,West Palm Beach,Florida,United States,DMR
+1112374,AJ4WD,Rachel A Weiss,,Vero Beach,Florida,United States,DMR
+1112375,N4UMS,Bill Boyle Boyle,,New Port Richey,Florida,United States,DMR
+1112376,N9OEV,Michael Douglas,Mike,Wauchula,Florida,United States,DMR
+1112377,WX4JCW,Jason C Webb,Jason,Maitland,Florida,United States,DMR
+1112378,N9OEV,Michael Douglas,Mike,Wauchula,Florida,United States,DMR
+1112379,N2HAY,Hayden Kaufman,,Ocala,Florida,United States,DMR
+1112380,K4GFD,Norm Scholer,Norm,Greensboro,Florida,United States,DMR
+1112381,K4SIP,Byron D Felts,,Riverview,Florida,United States,CCS7
+1112382,KK4WYL,Joseph Conti,,Brandon,Florida,United States,DMR
+1112383,WB4ATV,Donald B Coy,,Melbourne,Florida,United States,DMR
1136001,K2FPC,Antonio Lipari,Tony,Champlain,New York,United States,DMR
1136002,KB2JM,James S Meahl,Jim,Lockport,New York,United States,DMR
1136003,K2BRT,Paul Polischuk,,New Windsor,New York,United States,DMR
@@ -487,11 +508,35 @@ 1136130,K2RHK,Alan H Rose,,New York,New York,United States,DMR
1136131,N2NTX,Jeffrey D Grey,,Hyde Park,New York,United States,DMR
1136132,KD2LWB,Mark Barbaro,,Lockport,New York,United States,DMR
+1136133,N2HPO,Jeffrey M Schneller,,Flushing,New York,United States,DMR
1136134,N2WNU,Jamieson D Provan,Spare 2,Brooklyn,New York,United States,DMR
1136135,N2MCI,Peter A Dziomba,Pete,Kingston,New York,United States,DMR
+1136136,KQ2A,Victor J Arnone,Vic,Eastchester,New York,United States,DMR
1136137,KC2WJD,Josue Vigo,,Bronx,New York,United States,DMR
1136138,KC2WJD,Josue Vigo,,Bronx,New York,United States,DMR
1136139,N2YGK,Alan Crosswell Crosswell,Alan,Briarcliff Manor,New York,United States,DMR
+1136140,WB2GTC,George L Geller,,Long Beach,New York,United States,DMR
+1136141,N2HPO,Jeffrey M Schneller,,Flushing,New York,United States,DMR
+1136142,KA2EJD,Lance G Aue,,Amityville,New York,United States,DMR
+1136143,W2NET,Anthony La Macchia,Tony,New York,New York,United States,DMR
+1136144,N2BGR,William P Butler,Bill,Staten Island,New York,United States,DMR
+1136145,K2RB,Richard Bressler Bressler,Rick,Glen Cove,New York,United States,DMR
+1136146,N2NWZ,Anthony J Licata,,Hartsdale ,New York,United States,DMR
+1136147,KC0MMY,Andre P Wald,,Whitehall,New York,United States,DMR
+1136148,KC2SBO,Berge K Jermakian,,Valley Stream,New York,United States,DMR
+1136149,KD2MEA,Justin Thuren,,Islip ,New York,United States,DMR
+1136150,KC2ZWX,Cris A Zanow,Cris,Barker,New York,United States,DMR
+1136151,N2WNU,Jamieson D Provan,Spare 1, Brooklyn,New York,United States,DMR
+1136153,KC2ZWX,Cris A Zanow,,Barker,New York,United States,DMR
+1136154,KC2ZOQ,Yun Mao Mao,Will,Massapequa,New York,United States,DMR
+1136155,N2FXC,Ruth L Olson,,Rocky Point,New York,United States,DMR
+1136156,N2LEA,Douglas Maset Maset,Doug,Newburgh,New York,United States,DMR
+1136157,KC2TJC,Juan C Britos,,Lindenhurst,New York,United States,DMR
+1136158,K2HAK,Sean M Hausauer,,Lewiston,New York,United States,DMR
+1136159,W2PDX,Craig M Scatola,,Yorktown,New York,United States,DMR
+1136160,WB2ZII,HT1 Westchester Emerg Comm Assn Inc,,Yorktown Heights,New York,United States,DMR
+1136161,W2PDX,Craig M Scatola,,Yorktown,New York,United States,DMR
+1136162,KD2KOL,Melanie S Oliver,,Lyndonville,New York,United States,DMR
1137001,K4SWL,Thomas H Witherspoon,Thomas,Swannanoa,North Carolina,United States,DMR
1137002,KK4RKU,Glenn A Allison,Allen,Canton,North Carolina,United States,DMR
1137003,KM4IOU,Marty D Bumgarner,Marty,Granite Falls,North Carolina,United States,DMR
@@ -818,6 +863,13 @@ 1137328,N4KON,Anthony V Poleo,,Providence,North Carolina,United States,DMR
1137329,KJ4BDZ,Kenneth F Shields,,Wallace,North Carolina,United States,DMR
1137330,KE4ZUN,James L Tesseneer,Jim,Shelby,North Carolina,United States,DMR
+1137331,KI4GBR,Christopher E Ridgell,Chris,Granite Quarry,North Carolina,United States,DMR
+1137332,K4ARY,Bobbi Piland,,Conway,North Carolina,United States,DMR
+1137333,WE4HAM,David J Hamm,,Raleigh,North Carolina,United States,DMR
+1137334,KM4YGR,Jonathan D Smith,Jon,Bryson City,North Carolina,United States,DMR
+1137335,KK4SEP,David Duffer,,Bath,North Carolina,United States,DMR
+1137336,KM4YTY,John Chase,,Asheville,North Carolina,United States,DMR
+1137337,KM4QPS,David Ellis,,Winston-Salem,North Carolina,United States,DMR
2021001,SV1BYK,Babis Kappatos,Babis,Athens,Attica,Greece,
2021002,SV1PDW,Ioannis Barbat-Soskos,Ioannis,Athens,Attica,Greece,
2021003,SV1IW,Manos Darkadakis,Manos,Athens,Attica,Greece,
@@ -868,6 +920,7 @@ 2021048,SZ1RSF,RSF HELLAS Ambulance,RSF Ambulance,MOSCHATO Athens,Attica,Greece,
2021049,SY1AWU,Nikosmar Onuniaeu,Nikosmar,ATHENS MAROUSI,Attiki,Greece,
2021050,SV1JHV,George Dimos,George,Agrinio,Sterea Ellada,Greece,
+2021051,SV1EAG,George Chilas,George,ASPROPYRGOS,Attiki,Greece,
2022001,SV2XI,Kleanthis ,Kleanthis,Thessaloniki,Makedonia Thraki,Greece,
2022002,SV2RGC,Konstantinos Makris,Konstantinos,Kastoria,Ipiros Ditiki Makedo,Greece,
2022003,SV2LLJ,Ioannis Kokovidis,Giannis,Naoussa,Makedonia Thraki,Greece,
@@ -904,6 +957,9 @@ 2026011,SV6RDN,Konstantinos Tousis,Konstantinos,Ioannina,Ipeiros,Greece,
2026012,SV6GIM,Konstantinos Saltas,Gimis,Ioannina,Ipeiros,Greece,
2026013,SV6GIR,Ioannis Koutroumpas,Giryannis,Ioannina,Ipeiros,Greece,
+2026014,SV6JIK,Giorgos Mantzios,Giorgos,Ioannina,Ipeiros,Greece,
+2026015,SV6EXJ,Ioannis Pylarinos,Ioannis,Ioannina,Ipeiros,Greece,
+2026016,SV6NOG,Theofanis Kapelis,Fanis,Ioannina,Ipeiros,Greece,
2027001,SV7GBI,Konstantinos Tsikouras,Kostas,Serres,Anatoliki Makedonia,Greece,
2028001,SV8KOA,Nikos Mousouras,Nikos,Zakynthos,Other Greek Islands,Greece,
2029001,SV9DKB,Ioannis Tsiampas,Ioannis,Heraklion,Kriti,Greece,
@@ -1033,7 +1089,7 @@ 2041123,PD1APF,Paul Veldhuisen,Paul,Amstelveen,Noord-Holland,Netherlands,
2041124,PA3DRU,Piet Van wijk,Piet,Den Helder,Noord-Holland,Netherlands,
2041125,PA3FMP,Dirk Hendriks,Dirk,Uitgeest,Noord-Holland,Netherlands,
-2041126,PD6AMS,Event Station,Event,Amsterdam,Noord-Holland,Netherlands,
+2041126,PI4ASD,Event Station,Event,Amsterdam,Noord-Holland,Netherlands,
2041127,PD5RVG,Ron Van Gemert,Ron,Hoorn,Noord-Holland,Netherlands,
2041128,PA3NFN,Lucas Beumer,Lucas,Alkmaar,Noord-Holland,Netherlands,
2041129,PD5WVE,Willem Van Eijsden,Willem,De Rijp,Noord-Holland,Netherlands,
@@ -1087,6 +1143,12 @@ 2041177,PA4WIM,Wim Wiersma,Wim,Enkhuizen,Noord-Holland,Netherlands,
2041178,PA3Q,Wil Van Egdom,Wil,Hoofddorp,Noord-Holland,Netherlands,
2041179,PD1JSV,Jeroen Schouwerwou,Jeroen,Ijmuiden,Noord-Holland,Netherlands,
+2041180,PH0HAN,Han Halewijn,Han,Hoogkarspel,Noord-Holland,Netherlands,
+2041181,PD0LLA,Ron Bor,Ron,Haarlem,Noord-Holland,Netherlands,
+2041182,PA1RAB,Rob Scherpenzeel,Rob,Hilversum,Noord-Holland,Netherlands,
+2041183,PD0DVB,Robbert Peters,GizMoCuz,Hilversum,Noord-Holland,Netherlands,
+2041184,PE1PTP,Rolf NA,Rolf,Amstelveen,Noord-Holland,Netherlands,
+2041185,PE1JZQ,Hans-Willem Geitz,Hans-Willem,Hilversum,Noord-Holland,Netherlands,
2042001,PA0HTW,Henk ,Henk,Rotterdam,Zuid-Holland,Netherlands,Portable
2042002,PA0HTW,Henk ,Henk,Rotterdam,Zuid-Holland,Netherlands,Mobile
2042003,PA3DFN,Philip ,Philip,Spijkenisse,Zuid-Holland,Netherlands,Portable
@@ -1210,7 +1272,7 @@ 2042121,PA1V,Frank Van Pelt,Frank,Leidschendam,Zuid-Holland,Netherlands,
2042122,PD0ORB,Eric Spanjaard,Eric,Den Haag,Zuid-Holland,Netherlands,
2042123,PH3GAL,Remzi N Kuskan,Remzi N,Spijkenisse,Zuid-Holland,Netherlands,
-2042124,PA3WL,Wil Luijten,Wil,Leidschendam,Zuid-Holland,Netherlands,
+2042124,PA3WL,Wil Luijten,Wil,Zoetermeer,Zuid-Holland,Netherlands,
2042125,PD2PDZ,Peter Raaijmakers,Peter,Bodegraven,Zuid-Holland,Netherlands,
2042126,PA4LE,Leo Bot,Leo,Hillegom,Zuid-Holland,Netherlands,
2042127,PD2GCM,Gerard Molengraaff,Gerard,Oud-Beijerland,Zuid-Holland,Netherlands,
@@ -1356,6 +1418,15 @@ 2042267,PA6RCG,Robert Putz,Robert,Voorschoten,Zuid-Holland,Netherlands,
2042268,PA3DFR,Paul Van Strien,PA3DFRJ,Zoetermeer,Zuid-Holland,Netherlands,
2042269,PA6OCK,Michel Honig,Jota Rimboejagers,Den Haag,Zuid-Holland,Netherlands,
+2042270,PD1CAD,Aad Wiersma,Aad,Dordrecht,Zuid-Holland,Netherlands,
+2042271,PD4I,Tim Oversier,Tim,Dordrecht,Zuid-Holland,Netherlands,
+2042272,PE1LON,John Nieuwerth,John,Barendrecht,Zuid-Holland,Netherlands,
+2042273,PA2ERP,Cees Sloof,Cees,Hellevoetsluis,Zuid-Holland,Netherlands,
+2042274,PD0NLR,Jan Fokke,Jan,Zoetermeer,Zuid-Holland,Netherlands,
+2042275,PD2MKE,Marcel Kerkvliet,Marcel,Boskoop,Zuid-Holland,Netherlands,
+2042276,PA3XA,Geert NA,Geert,Leiderdorp,Zuid-Holland,Netherlands,
+2042277,PD1ODE,Jeroen De Weerdt,Jeroen,Den Haag,Zuid-Holland,Netherlands,
+2042279,PA0TKI,Eduard Zwamborn,Ed,Zoetermeer,Zuid-Holland,Netherlands,
2043001,PA1MOS,Marco ,Marco,Amersfoort,Utrecht,Netherlands,Mobile
2043002,PA1GF,Gerjan ,Gerjan,Amersfoort,Utrecht,Netherlands,Portable#1
2043003,PE1NWR,Tineke ,Tineke,Amersfoort,Utrecht,Netherlands,Portable
@@ -1480,6 +1551,10 @@ 2043122,PD5PS,Pons Stouthart,Pons,Ijsselstein,Utrecht,Netherlands,
2043123,PA90IMP,Scouting Impeesa Scouting Impeesa,Scouting Impeesa,Amersfoort,Utrecht,Netherlands,
2043124,PA6RCG,Robert Putz,JOTA Rover Crofts Gr,Bilthoven,Utrecht,Netherlands,
+2043125,PE3FRX,Frank Zendamateur,Frank,Utrecht,Utrecht,Netherlands,
+2043126,PA3BWK,Wilko Hollemans,Wilko,Hollandsche Rading,Utrecht,Netherlands,
+2043127,PA0LUB,Ton Van der Lubbe,Ton,Wilnis,Utrecht,Netherlands,
+2043128,PD0RWM,Nico Veer,Nico,Amersfoort,Utrecht,Netherlands,
2044001,PD4RS,Ruud ,Ruud,Heerlen,Limburg,Netherlands,Portable
2044002,PD4RS,Ruud ,Ruud,Heerlen,Limburg,Netherlands,Mobile
2044003,PA7DVM,Duncan ,Duncan,Kerkrade,Limburg,Netherlands,Mobile
@@ -1593,6 +1668,7 @@ 2044111,PD0FDA,Bert Hendriks,Bert,Gennep,Limburg,Netherlands,
2044112,PD9DST,Danny Stutje,Danny,Kats,Zeeland,Netherlands,
2044113,PA9A,Frank Bogers,Frank,Voeren (B),Limburg,Netherlands,
+2044114,PA1SH,Steven Hamelink,Steven,Terneuzen,cnty,Netherlands,
2045001,PD0AQK,Ruud ,Ruud SK,Uden,,Netherlands,Portable
2045002,PD0AQK,Ruud ,Ruud SK,Uden,,Netherlands,Mobile
2045003,PA0RTU,Klaas ,Klaas,Nuenen,Noord-Brabant,Netherlands,Mobile
@@ -1717,6 +1793,11 @@ 2045122,PI4DLZ,Berrie Sleijster,Clubstation DLZA,Breda,Noord-Brabant,Netherlands,
2045123,PD0TZ,Yermolai Cantineau,Yermolai,Terheijden,Noord-Brabant,Netherlands,
2045124,PD8ARP,Barbara Zandboer,Barbara,Breda,Noord-Brabant,Netherlands,
+2045125,PB0FH,Roy Van Dongen,Roy,Etten - Leur,Noord-Brabant,Netherlands,
+2045126,PD2CWM,Catharina Arts,Ineke,Eindhoven,Noord-Brabant,Netherlands,
+2045127,PA3DZW,Gerard Weerman,Gerard,Tilburg,Noord-Brabant,Netherlands,
+2045128,PA1SAN,Thea Camp,Thea,Oss,Noord-Brabant,Netherlands,
+2045129,PA8AA,Peter Heiden,Peter,Eindhoven,Noord-Brabant,Netherlands,
2046001,PD2WGN,Walter Garretsen,Walter,Nijkerkerveen,,Netherlands,Mobile
2046002,PA1WW,Walther ,Walther,Voorthuizen,Gelderland,Netherlands,Mobile
2046003,PD0PVL,Robert ,Robert,Hoenderloo,Gelderland,Netherlands,Portable
@@ -1744,7 +1825,7 @@ 2046025,PD0KHN,Martin ,Martin,Arnhem,Gelderland,Netherlands,Mobile
2046026,PD0CHF,Berry ,Berry,Apeldoorn,Gelderland,Netherlands,Portable
2046027,PA3ASW,Wim ,Wim,Nijmegen,Gelderland,Netherlands,Portable
-2046028,PA3THE,Theo ,Theo,Zetten,,Netherlands,
+2046028,PA3THE,Theo ,Theo,Zetten,,Netherlands,Mobile
2046029,PE1MEW,Remko ,Remko,Apeldoorn,Gelderland,Netherlands,Portable
2046030,PA3BAS,Bastiaan ,Bastiaan,Velp,Gelderland,Netherlands,Mobile
2046031,PE2CVF,Roel ,Roel,Arnhem,Gelderland,Netherlands,Mobile
@@ -1763,7 +1844,7 @@ 2046044,PA0VIC,Vic ,Vic,Lent,Gelderland,Netherlands,Mobile
2046045,PA3CPH,Ton ,Ton,Zevenaar,Gelderland,Netherlands,Mobile
2046046,PE2CVF,Roel ,Roel,Arnhem,Gelderland,Netherlands,Portable
-2046047,PD0JX,Jan ,Jan,Arnhem,,Netherlands,
+2046047,PD0JX,Jan ,Jan,Arnhem,,Netherlands,Portable
2046048,PA1RBZ,Cil Hubertse,Cil,Ermelo,Gelderland,Netherlands,
2046049,PA3CDM,Lex Kuper,Lex,Apeldoorn,Gelderland,Netherlands,
2046050,PE1ROG,Karl-Heinz Knauf,Karl-Heinz,S-Heerenberg,Gelderland,Netherlands,
@@ -1870,6 +1951,12 @@ 2046151,PE1W,Wim Minnen,Wim,Eerbeek,Gelderland,Netherlands,
2046152,PI4ANH,Veron A06 Arnhem,Veron A06,Arnhem,Gelderland,Netherlands,
2046153,PA40LAB,Robin Van Bure,Robin,Nijmegen,Gelderland,Netherlands,
+2046154,PD0OVQ,Henk Holtland,Henk,Aalten,Gelderland,Netherlands,
+2046155,PA3CFR,Wim Van der Ziel,Wim,Hattem,Gelderland,Netherlands,
+2046156,PA9W,Willem Sletterink,Willem,Nijwegen,Gelderland,Netherlands,
+2046157,PA1JB,Jelmer Bruggink,Jelmer,Otterlo,Gelderland,Netherlands,
+2046158,PE1RNA,Jacco Jong,Jacco,Apeldoorn,Gelderland,Netherlands,
+2046159,PE1POI,Jan Vink,Jan,Kerkdriel,Gelderland,Netherlands,
2046900,PI4AJS,Henry ,Club station ARAC,Neede,Gelderland,Netherlands,
2047001,PD0ZWL,Marcel ,Marcel,Zwolle,Overijssel,Netherlands,Portable
2047002,PD0ZWL,Marcel ,Marcel,Zwolle,Overijssel,Netherlands,Mobile
@@ -2029,6 +2116,10 @@ 2047156,PD2JH,Joost Hutten,Joost,Olst,cnty,Netherlands,
2047157,PE55JP,Andre Heuver,Jota station,Hengelo,cnty,Netherlands,
2047158,PD0HOD,Tom Tomei,Tom,Almere,Flevoland,Netherlands,
+2047159,PD1WST,Wim Steeg,Wim,Enschede,Overijsseel,Netherlands,
+2047160,PD8H,Hennie Edelenbos,Hennie,Enschede,cnty,Netherlands,
+2047161,PA5HF,Frank Hoffman,Frank,Swifterbant,Flevoland,Netherlands,
+2047162,PA5PS,Peter Scheltema,Peter,Almere,Flevoland,Netherlands,
2048001,PD1ASH,Rolf ,Rolf,Niebert,Groningen,Netherlands,Mobile
2048002,PD1ALW,Andre ,Andre,Wijnaldum,Friesland,Netherlands,Mobile
2048003,PE1PWF,Edwin ,Edwin,Leeuwarden,Friesland,Netherlands,Portable
@@ -2057,7 +2148,7 @@ 2048026,PA4DEN,Dennis ,Dennis,Boijl,Friesland,Netherlands,Portable
2048027,PA3GET,Gert ,Gert,Groningen,Groningen,Netherlands,Portable
2048028,PA4TJ,Teun ,Teun,Emmen,Drenthe,Netherlands,
-2048029,PH0H,Henri Hendriksen,Henri,Nieuw Amsterdam,,Netherlands,
+2048029,PH0H,Henri Hendriksen,Henri,Nieuw Amsterdam,,Netherlands,Portable
2048030,PA3DIW,Gerben ,Gerben,Drachten,Friesland,Netherlands,Portable
2048031,PD0CER, Ron,,Borger,,Netherlands,
2048032,PA1HVD,Henk Van Drooge,Henk,Wijckel,Friesland,Netherlands,
@@ -2180,7 +2271,10 @@ 2048149,PD0BOB,Bob Van der Wal,Bob,Leeuwarden,Frysland,Netherlands,
2048150,PA3ABG,Paul Kolenbrander,Paul,Roden,Drenthe,Netherlands,
2048151,PD1JA,Jacob Van der Molen,Jacob,Groningen,Groningen,Netherlands,
-2048154,PD0AM,Peter ,,Visvliet,Groningen,Netherlands,
+2048152,PA7SKB,Steven Blaauw,Steven,Oldekerk,Groningen,Netherlands,
+2048153,PD0LEW,Johan Holstein,Johan,Zuidlaren,Drenthe,Netherlands,
+2048154,PD0AM,Peter Petersen,Peter,Visvliet,Groningen,Netherlands,
+2048155,PE1HTB,Hendrik Ten Boom,Hendrik,Ouwsternijega,Frysland,Netherlands,
2060001,ON4AIM,Aime ,Aime,Oostende,West-Vlaanderen,Belgium,Portable
2060002,ON3AN,Ann ,Ann,Oostende,West-Vlaanderen,Belgium,Portable
2060003,ON2WIK,Marc ,Marc,Oostende,West-Vlaanderen,Belgium,Portable
@@ -2294,6 +2388,8 @@ 2060111,ON3LUK,Luc Huilmand,Luc,Oostende,West-Vlaanderen,Belgium,
2060112,ON2CG,Gerard Cappelle,Gerard,Oostende,West-Vlaanderen,Belgium,
2060113,ON3DEG,Gerdy Decherf,Gerdy,Zonnebeke,West-Vlaanderen,Belgium,
+2060114,ON3AIM,Ivon Maertens,Ivo,Knokke-Heist,West-Vlaanderen,Belgium,
+2060115,ON7BT,Bart Vandenbroucke,Bart,Brugge,West-Vlaanderen,Belgium,
2061001,ON8SVH,Stijn Vanden Hende ,,Oudenaarde,Oost-Vlaanderen,Belgium,Portable
2061002,ON8SI,Simon ,Simon,Oosterzele,Oost-Vlaanderen,Belgium,Portable
2061003,ON5LUC,Luc ,Luc,Gent,Oost-Vlaanderen,Belgium,Portable
@@ -2476,6 +2572,8 @@ 2061180,ON8DYL,Bodijn Dylan,Bodijn,Oudenaarde,Oost-Vlaanderen,Belgium,
2061181,ON1BH,Herman Brackenier,Herman,Denderhoutem,Oost-Vlaanderen,Belgium,
2061182,ON3IY,Jurgen Troch,Jurgen,Wetteren,Oost-Vlaanderen,Belgium,
+2061183,ON4ARV,Ronny De Wachter,Ronny,SINT-NIKLAAS,Oost-Vlaanderen,Belgium,
+2061184,ON7FVM,Francois Van Mol,Francois,Sint Gillis-Waas,Oost-Vlaanderen,Belgium,
2062001,ON7DS,Dirk ,Dirk,Kontich,Antwerp,Belgium,Portable
2062002,ON2DMT,Martine ,Martine,Kontich,Antwerp,Belgium,Portable
2062003,ON7PDW,Peter ,Peter,Boom,Antwerp,Belgium,Mobile
@@ -2540,6 +2638,8 @@ 2062062,ON3ITA,Carlo Carrozzo,Carlo,Bornem,Antwerp,Belgium,
2062063,ON4AFW,Wilfried Fonteyn,Wilfried,Koningshooikt,Antwerp,Belgium,
2062064,ON3MD,Marc Heyndrickx,Aristo,Mechelen,Antwerp,Belgium,
+2062065,ON5DM,Herbert De Mol,Herbert,Stabroek,Antwerp,Belgium,
+2062066,ON3HGD,Georges Huysmans,Georges,Aartselaar,Antwerp,Belgium,
2062999,ON4DBC,Geert Bellens,GeertB,Lint,Antwerp,Belgium,
2063001,ON6BB,Pieter ,Pieter,Roosdaal,Vlaams Brabant,Belgium,Mobile
2063002,ON4BDC,Gunther ,Gunther,Halle,Vlaams Brabant,Belgium,Portable
@@ -2588,6 +2688,9 @@ 2063045,ON3GVE,Glen Van Ermen,Glen,Wilsele,Vlaams Brabant,Belgium,
2063046,ON6SX,Axel Van Bellingen,Axel,Herent,Vlaams Brabant,Belgium,
2063047,ON9CPM,Peter Moulaert,Peter,Leuven Heverlee,Vlaams Brabant,Belgium,
+2063048,ON8IM,Ivan Mouraux,Ivan,LANDEN,Vlaams Brabant,Belgium,
+2063049,ON7CL,Rudi Claes,Rudi,Boutersem,Vlaams Brabant,Belgium,
+2063050,ON3KVN,Kris Van Nieuwenhuyse,Kris,Huizingen,Vlaams Brabant,Belgium,
2064001,ON4AZP,Dominic ,Dominic,Zonhoven,Limburg,Belgium,
2064002,ON2PCO,Paul ,Paul,Riemst,Limburg,Belgium,Mobile
2064003,ON8RAT,Marco ,Marco,Lanaken,Limburg,Belgium,
@@ -2667,6 +2770,7 @@ 2064077,ON5WC,Walter Camatel,Walter,GENK,Limburg,Belgium,
2064078,ON3WOO,Wouter Hermans,Wouter,Hoeselt,Limburg,Belgium,
2064079,ON4ABS,Marc Berwaerts,Marc,Velm,Limburg,Belgium,
+2064080,ON4VJ,Johny Verhoeven,Johny,Neerpelt,Limburg,Belgium,
2065001,ON4REC,REEC ,REEC,Beauvechain,Brabant wallon,Belgium,Portable
2065002,ON3XBS,Serge Schleusner,Serge,Beauvechain,Wal. Brabant,Belgium,
2065003,ON3CCM,Moreno Caveye,Moreno,Menen,Wal. Brabant,Belgium,
@@ -2682,6 +2786,8 @@ 2065013,ON6LR,Marc Christiaens,Marc,Rebecq,Wal. Brabant,Belgium,
2065014,ON3BUT,Patrick Buttiens,Patrick,Genappe,Wal. Brabant,Belgium,
2065015,ON5BEM,Michel Bernard,Michel,Court-Saint-Etienne,Wal. Brabant,Belgium,
+2065016,ON4MS,Guy De Pre,Guy,Jodoigne-Souveraine,Wal. Brabant,Belgium,
+2065017,ON7CFI,Jan Moeyersons,Jantje,Dongelberg,Wal. Brabant,Belgium,
2066001,ON6PU,De ,De,Duffel,Antwerp,Belgium,Portable
2066002,ON7GE,Eddy ,Eddy,La Hestre,Hainaut,Belgium,Mobile
2066003,ON4KTU,Jean-Marie ,Jean-Marie,Silly,Hainaut,Belgium,Mobile
@@ -2824,6 +2930,8 @@ 2069037,ON3KDP,Philippe Debrigode,Philippe,Vesqueville,Luxemburg,Belgium,
2069038,ON4PX,Jean-Claude Pil,Jean-Claude,Brussels,Brussels,Belgium,
2069039,ON4KVI,Renauld Halbardier,Renauld,Vielsalm,Luxemburg,Belgium,
+2069040,ON5XA,RED CROSS Bussels,BruCap,Brussels,Brussels,Belgium,
+2069041,ON5XL,RED CROSS Bussels,BruCap,Brussels,Brussels,Belgium,
2069999,ON3BDM,Bjorn ,Bjorn,Brussels,Brussels,Belgium,Portable
2080001,F5NVG,Pascal ,Pascal,Colombes,Paris,France,Portable
2080002,F1HBG,Jose ,Jose,Paris,Île-de-France,France,Mobile
@@ -2968,6 +3076,13 @@ 2080141,F4HIC,Quentin Canel,F4HIC,Le Me sur Seine,le-de-France,France,
2080142,F6CLX,PHILIPPE JEANBLANC,PHILIPPE,BOISSY LE CHATEL,le-de-France,France,
2080143,F4HFD,Sebastien FREIS,Sebastien,Savigny Le Temple,le-de-France,France,
+2080144,F1NVX,PHILIPPE Preszburger,PHILIPPE,Savigny sur orge,le-de-France,France,
+2080145,F1TGF,Cyril Bramat,Cyril,Linas,le-de-France,France,
+2080146,F1GEI,Alain DENIZE,AD,Ballancourt,le-de-France,France,
+2080147,F1GVY,Jean-Claude Quillet,Jean-Claude,Antony,le-de-France,France,
+2080148,F4HKH,Marc Victor,Marc,Les Ulis,le-de-France,France,
+2080149,F8DSF,Bernard Raffin,Bernard,Corbeil essonnes,le-de-France,France,
+2080150,F6ANO,Michel AMIARD,Michel,TOURNAN-EN-BRIE,le-de-France,France,
2081001,F1UOT,Olivier Guerin,Olivier,Suresnes,Île-de-France,France,Portable
2081002,F4ACD,Romain ,Romain,Poitiers,Vienne,France,Portable
2081003,F1TDI,Daniel ,Daniel,Suresnes,Paris,France,Portable
@@ -3007,6 +3122,8 @@ 2081037,F1DZI,Jacques DEROME,Jacques,Nice,Provence-Alpes-Cte d,France,
2081038,F4ESK,Patrice VIGNERON,Patrice,Vitrolles,Provence-Alpes-Cte d,France,
2081039,F5LHI,Dominique Thibout,Dominique,CAMPS LA SOURCE,Provence-Alpes-Cte d,France,
+2081040,F6HTG,Jean-Jacques PAULET,Gigi,Simiane-Collongue,Provence-Alpes-Cte d,France,
+2081041,F4ULY,Fabrice SERVIERE,Fabrice,CABASSE,Provence-Alpes-Cte d,France,
2082001,F4FUL,Cyril ,Cyril,Sciez,Rhone-Alpes,France,
2082002,F5VIN,Heiko Damerau,Heiko,Thoiry,Rhone-Alpes,France,
2082003,F1AGU,Charles-Henri SAP,Charles-Henri,Aillon Le Vieux,RhÃÂne-Alpes,France,
@@ -3099,7 +3216,15 @@ 2082090,F4FLO,Jerome Simonato,Jerome,Saint genest lerpt,Rhne-Alpes,France,
2082091,F4ECA,Frederic Philippon,F4eca,Saint-Galmier,Rhne-Alpes,France,
2082092,F1FDZ,Christian GIRARD,F1FDZ,CHALEINS,Rhne-Alpes,France,
+2082093,F1BTI,Cedric Lapasin,Cedric,Le chambon-feugeroll,Rhne-Alpes,France,
2082094,F4GSO,Olivier PAYET,Olivier,Beaujeu,Rhne-Alpes,France,
+2082095,F5LIK,Pascal Dannerolle,Paspoil,Saint-chamond,Rhne-Alpes,France,
+2082096,F4VRX,Malcolm Howe,Malcolm,Algrange,Rhne-Alpes,France,
+2082097,F5DN,Pierre Dehen,Pierre,ANNEMASSE,Rhne-Alpes,France,
+2082098,F4HQV,Michel SPAETER,Michel,VOIRON,Rhne-Alpes,France,
+2082099,F5RVG,PIERRE PASTORELLO,PIERRE,LE TOUVET,Rhne-Alpes,France,
+2082100,F4BGE,Joseph Martinez,Joseph,Villeurbanne,Rhne-Alpes,France,
+2082101,F8BSI,Thierry VANBAELINGHEM,Thierry,MARCY LETOILE,Rhne-Alpes,France,
2083001,F1IZL,Jean-Yves Ricklin,Jean-Yves,La Tour Du Crieu,Midi-Pyrénées,France,
2083002,F4GEM,Arnaud DAVRINCHE,Arnaud,CORNEBARRIEU,Midi-Pyrénées,France,
2083003,F1BBG,Gerard Samson,Gerard,Tarascon sur ariege,Midi-Pyrénées,France,
@@ -3142,6 +3267,8 @@ 2083040,F5SHD,PHILIPPE NEBOUT,Aucun,Tarbes,Midi-Pyrnes,France,
2083041,F5BSF,Stephan GRAS,Stephan,Tourrenquets,Midi-Pyrnes,France,
2083042,F4ILX,Thomas AIME,Thomas,Lescout,Midi-Pyrnes,France,
+2083045,F6HLK,Henri FIORIDO,No,Labarthe sur Lze,Midi-Pyrnes,France,
+2083046,F5PAT,Edgard JACOMINO,Edgard,PRESERVILLE,Midi-Pyrnes,France,
2084001,F4EEZ,Nicolas ,Nicolas,Strasbourg,Alsace,France,Portable
2084002,F4AVI,Fabrice ,Fabrice,Still,Alsace,France,
2084003,F5LTM,Pierre Kiehl,Pierre,Lampertheim,,France,Portable
@@ -3207,6 +3334,7 @@ 2085025,F5HBF,GERARD CHEMINET,GERARD,AMILLY,Pays de la Loire,France,
2085026,F5BCB,Jean-Francois TESTE,Jean-Francois,CARQUEFOU,Pays de la Loire,France,
2085027,F1INT,Henri Desmontils,Henri,Fay de Bretagne,Pays de la Loire,France,
+2085028,F3KT,Michel DESVILLES,Michel,PONT SAINT MARTIN,Pays de la Loire,France,
2086001,F5DZZ,Albert CAPDECOMME,Albert,Soustons,,France,
2086002,F5JGK,Regin Thierry,Regin,Lescar,Aquitaine,France,
2086003,F5NSL,Eric Tiffon,Eric,Bruges,Aquitaine,France,
@@ -3236,6 +3364,7 @@ 2086027,F1SJX,HERVE MANNUCCI,F1SJX,Saint Pierre dIrube,Aquitaine,France,
2086028,F5CDE,Nathalie LAULHE,Natacha,Saint Vincent de Tyr,Aquitaine,France,
2086029,F5OZP,JEAN-PAUL CAVALERIE,JP,SOUSTONS,Aquitaine,France,
+2086030,F4GMT,Francis GILLET,Faryland,BRISCOUS,Aquitaine,France,
2087001,F6HTJ,Michel ,Michel,Perpignan,Languedoc-Roussillon,France,Portable
2087002,F8BSY,Xavier MORE,Xavier,Ste Marie la Mer,Languedoc-Roussillon,France,
2087003,F5UPV,Samuel Fouchier,Samuel,Nimes,Languedoc-Roussillon,France,
@@ -3264,6 +3393,7 @@ 2087026,F4DEU,Sebastien RUEDA,Sebastien,BEZIERS,Languedoc-Roussillon,France,
2087027,F6GOI,ANDRE NIERGA,ANDRE,PERPIGNAN,Languedoc-Roussillon,France,
2087028,F4BPE,Christian Doriot,Foxy,ST LAURENT DE LA SAL,Languedoc-Roussillon,France,
+2087029,F5FSD,PATRICK JAYAT,PATRICK,BAGES,Languedoc-Roussillon,France,
2087030,F4LIX,Jean-Pierre MONVOISIN,Jean-Pierre,PIA,Languedoc-Roussillon,France,
2087031,F4TWK,Georges Beaux,Gabriel,Mont-louis,Languedoc-Roussillon,France,
2088001,F1VEO,Felix Symann,Felix,Treffiagat,Brittany,France,
@@ -3470,6 +3600,9 @@ 2089185,F1JVY,Jean-Marc Manenti,Jean-Marc,Metz,All Others,France,
2089186,F8FLK,THIERRY MAUZE,TITI,Chepy,All Others,France,
2089187,F4BIT,STEPHANE MANGEOLLE,F4BIT,NEUVES-MAISONS,All Others,France,
+2089189,F6IPR,Frederic Zara,Frederic,Nuits Saint Georges,All Others,France,
+2089190,F4EMG,Brasy Olivier,Piti,Campagne les guines,All Others,France,
+2089192,F6FIU,Eric Liste Orange,F6FIU,VILLENEUVE DASCQ,All Others,France,
2089998,F8KGD,RADIO CLUB F8KGD ,,Fontenay Trsigny,Île-de-France,France,
2089999,F5DAN,Daniel ,,Vitry sur Seine,Île-de-France,France,
2130001,C31AR,Anibal Rodrigues Caralho,Anibal,Pas De La Casa,,Andorra,
@@ -3700,10 +3833,19 @@ 2141218,EA1HFJ,Arturo Malnero,EA1HFJ,Gijon,cnty,Spain,
2141219,EA1SH,Manuel Vazquez Crespo,Manu,Lugo,Galicia,Spain,
2141220,EA1AUR,Jose Teodoro Andreu Munoz-Orea,Theo,Aldearrubia,Castilla y Leon,Spain,
+2141221,EC1KD,Hector Ruiz,EC1KD, Hector Ruiz,Leon,Castilla y Leon,Spain,
+2141222,EA1ICN,JORGE IGNACIO URRIBARRI FERNANDEZ,RANA,BURGOS,cnty,Spain,
2141223,EB1ERD,Eva Colloto Herrera,Eva,Oviedo,Asturias,Spain,
2141224,EA1GCZ,Andres Arranz Garcia,Andres Arranz,Aviles,Asturias,Spain,
2141225,EA1ESO,Rafael Correa Fernandez,Rafa,Coto Carcedo,cnty,Spain,
-2141228,EA1FZ,JUAN ,,Logroo,La Rioja,Spain,
+2141226,EB1EDS,Pablo Rodriguez Trapote,Pablo,Gijon,Asturias,Spain,
+2141228,EA1FZ,JUAN CARLOS,Juan Carlos,Logroo,La Rioja,Spain,
+2141229,EB1FMN,ANTONIO NOGUEIRA FANDINO,Antonio EB1FMN,Mos,Galicia,Spain,
+2141230,EB1FJG,Javier Rodriguez Llanos,Eb1fjg,Len,Castilla y Leon,Spain,
+2141231,EA1GWM,Braulio Lopez,Braulio,Ferrol,Galicia,Spain,
+2141232,EA1GFY,Antonio Martinez Mendoza,EA1GFY,Logroo,La Rioja,Spain,
+2141233,EA1VIL,Dani Miguel Lazaro,Norato,Villoria,Castilla y Leon,Spain,
+2141234,EA1GCM,Juan Manuel ,,Mieres,Asturias,Spain,
2142001,EA2IP,Jesus ,Jesus,Sestao,Basque Country,Spain,
2142002,EA2IV,Alex BONILLO,Alex,Huesca,Aragon,Spain,
2142003,EA2FT,Juan Angel De la Fuente Mata,Juan Angel,Zaragoza,Aragun,Spain,
@@ -3762,7 +3904,7 @@ 2142056,EA2RS,Rogelio Vazquez Iglesias,Rogelio,San Sebastian,Basque Country,Spain,
2142057,EA2EIS,Antonio lopez martin Toin,Toin,El burgo de ebro,Araguan,Spain,
2142058,EA2DCR,Agustin Zubasti madoz,Agustin,Artica-navarra,Navarra,Spain,
-2142059,EB2GEV,Jos Miguel Orueta Michelena,EB2GEV,Bilbao,Basque Country,Spain,
+2142059,EB2GEV,Jose Miguel Orueta Michelena,Jose Miguel,Bilbao,Basque Country,Spain,
2142060,EB2YA,JESUS OBREGON,EB2YA,Vitoria,Basque Country,Spain,
2142061,EA2AR,Angel Ramos,EA2AR,Obanos,Navarra,Spain,
2142062,EB2DCY,ENRIQUE CASTRENSE SANCHEZ,ENRIQUE,ANDOAIN,Euskadi,Spain,
@@ -3831,7 +3973,7 @@ 2142125,EA2RCP,URP-RCP Radioclub Pamplona,URP-RCP,Pamplona,Navarra,Spain,
2142126,EA2DDI,Jose Antonio Campos Moreno,EA2DDI,Bilbao,Pais Vasco,Spain,
2142127,EA2DVT,ALEJANDRO LABARGA,EA2DVT,ZARAGOZA,Aragon,Spain,
-2142128,EA2BAJ,Eduardo Eduardo,JEdu,Bilbao,Pais Vasco,Spain,
+2142128,EA2BAJ,Eduardo Jacob,JEdu,Bilbao,Pais Vasco,Spain,
2142129,EA2RCX,RADIOCLUB ESCUELA INGENIEROS DE BILBAO,GAURKO,Bilbao,Pais Vasco,Spain,
2142130,EA2AMB,Angel Abadias,Angel,Zaragoza,Aragon,Spain,
2142131,EA2BIN,ANTONIO SANCHEZ FERNANDEZ,EA2BIN,BURLADA,Navarra,Spain,
@@ -3842,9 +3984,22 @@ 2142136,EB2DYG,Andoni Maizkurrena,Andoni,Bilbao,Pais Vasco,Spain,
2142137,EA2DFS,ESTER AROCENA,EA2DFS,ARANAZ,Navarra,Spain,
2142138,EA2EKQ,ALEX GONZALEZ,ALILLO,PORTUGALETE,Pais Vasco,Spain,
-2142142,EA2DOW,Felix ,,Bilbao,Pais Vasco,Spain,
-2142143,EA2AF,Roberto ,EA2AF,Elgoibar,Pais Vasco,Spain,
-2142144,EB2KX,Alfredo ,,Sestao,cnty,Spain,
+2142139,EA2EON,Cesar Labarga,Cesar,Zaragoza,Aragon,Spain,
+2142140,EA2OY,Jesus Maria Cacho,EA2OY,Pamplona,Navarra,Spain,
+2142141,EA2ARU,Jabi Aguirre,Jabi Aguirre,Abadiano,cnty,Spain,
+2142142,EA2DOW,Felix C.B.,Felix,Bilbao,Pais Vasco,Spain,
+2142143,EA2AF,Roberto Sanchez Rodriguez,EA2AF,Elgoibar,Pais Vasco,Spain,
+2142144,EB2KX,Alfredo Rojo,Alfredo,Sestao,cnty,Spain,
+2142145,EA2CRI,Adolfo Martin,Adolfo,Elgoibar,Pais Vasco,Spain,
+2142146,EA2CQ,Inigo Bastarrika,EA2CQ,Vitoria,Basque Country,Spain,
+2142147,EA2HA,Humberto Arteche,Humberto,Eibar,Pais Vasco,Spain,
+2142148,EA2EKA,Adrian Caton,Ea2eka,Pamplona,Navarra,Spain,
+2142149,EA2EHI,Iker Santamaria,EA2EHI,Getxo,Pais Vasco,Spain,
+2142150,EA2BEE,Fernando Tusell,Etptupaf,DERIO,Pais Vasco,Spain,
+2142151,EB2AOS,Garmendia Imanol,EB2AOS,Sopelana,Pais Vasco,Spain,
+2142152,EA2EFO,FRANCISCO HERNANDEZ,PAKO,SESTAO,Pais Vasco,Spain,
+2142153,EA2IUG,Inigo Uzkudun,Inigo,Irun,cnty,Spain,
+2142154,EA2GE,Luis Alberto ,Luis,Bilbao,Pais Vasco,Spain,
2143001,EA3DKP,Ricardo ,Ricardo,Roses,Girona,Spain,Portable #1
2143002,EA3DKP,Ricardo ,Ricardo,Roses,Girona,Spain,Portable #2
2143003,EA3DKP,Ricardo ,Ricardo,Roses,Girona,Spain,Portable #3
@@ -4041,9 +4196,27 @@ 2143194,EA3AMI,Juan Adria,Juan,Barcelona,Cataluna,Spain,
2143195,EA3GCU,Julio Soriano,Julio,Barcelona,Cataluna,Spain,
2143196,EA3EE,TONI VICO,TONI VICO,Sant Vicen dels Hort,Cataluna,Spain,
-2143198,EA3GWC,Jos Luis ,,Badalona,Cataluna,Spain,
-2143199,EB3CUZ,Juan ,,Montgat,Cataluna,Spain,
-2143200,EA3HTM,Paya ,,Barcelona,Cataluna,Spain,
+2143197,EB3DKH,Requena Martinez,Luis,Gava,Cataluna,Spain,
+2143198,EA3GWC,Jos Luis Marrtinez,Jos,Badalona,Cataluna,Spain,
+2143199,EB3CUZ,Juan Ramon,Juan,Montgat,Cataluna,Spain,
+2143200,EA3HTM,Paya Vilar,Nito,Barcelona,Cataluna,Spain,
+2143201,EA3GQU,Jose antonio Lopez,Diaz,Torredembarra Tarrag,Cataluna,Spain,
+2143202,EA3HGL,Ivan Vazquez,Ivan,Llana,Cataluna,Spain,
+2143203,EB3FIS,ALBERT RIGALL,MONTCANUT,Figueres,Cataluna,Spain,
+2143204,EA3DUW,PEDRO CANAVATE,RODRIGUEZ,FIGUERES,Cataluna,Spain,
+2143205,EA3HVF,Jose Leon,Josep,Sant Feliu de Llobre,Cataluna,Spain,
+2143206,EA3EIZ,Manel Diaz,Manel,Barcelona,Cataluna,Spain,
+2143207,EA3EG,Eduard Gorina,Eduard,Arenys de Munt,Cataluna,Spain,
+2143208,EA3ES,Enrique Belmonte Pozo,Enric,Almoster,Cataluna,Spain,
+2143209,EA3IE,Josep Onieva Roca,Josep,St Vicen d Horts,Cataluna,Spain,
+2143210,EA3HVD,Marcel Brosa Castells,Mbrosa,Les Masies de Voltre,Cataluna,Spain,
+2143211,EB3EUP,Josep maria Serra ripoll,Josep maria,Barcelona,Cataluna,Spain,
+2143212,ED3YAK,URBLL Eduardo,Rodriguez,Montjuic - Barcelona,Cataluna,Spain,
+2143213,EA3CIX,FRANcESC ROIG,FRANcESC,REUS,Cataluna,Spain,
+2143214,EA3CLY,JOAN DOMENEC GALVE SALES,JOAN,REUS,Cataluna,Spain,
+2143215,EB3FGM,Raul Jaime aguilar,Raul,Terrassa,Cataluna,Spain,
+2143217,EA3AZL,Juan Francisco ,,Caldes dEstrac-Barce,Cataluna,Spain,
+2143218,EA3CPL,VICTOR ,,Sabadell,Cataluna,Spain,
2144001,EA5IIO,ANTONIO ,,Albacete,Castile-La Mancha,Spain,
2144002,EA4GQW,Pablo Cortes,Pablo,Madrid,Community of Madrid,Spain,
2144003,EA4AAE,Javier Coso,Javier,Madrid,Community of Madrid,Spain,
@@ -4185,11 +4358,27 @@ 2144139,EA4GFC,Santiago Dominguez,Cosme,San lorenzo del esco,excluding Albacete,Spain,
2144140,EA4GUY,JOSE LUIS LOPEZ IBARRA,JOSE LUIS,PARACUELLOS DE JARAM,excluding Albacete,Spain,
2144141,EA4GSL,Luciano Rubio,Lucas,Madrid,excluding Albacete,Spain,
-2144142,EA4IV,MIGUEL ANGEL ,,MADRID,excluding Albacete,Spain,
-2144143,EA4RCR,REM ,REM,MADRID,excluding Albacete,Spain,
-2144144,ED4YAO,Miguel ,,Plasencia,excluding Albacete,Spain,
-2144145,EA4GUK,Oscar ,,Madrid,excluding Albacete,Spain,
-2144151,EA4DGY,Jesus ,,Mostoles,excluding Albacete,Spain,
+2144142,EA4IV,MIGUEL ANGEL GARCIA MARTIN,EA4IV_Miguel,MADRID,excluding Albacete,Spain,
+2144143,EA4RCR,REM ASOCIACION DE RADIO,REM,MADRID,excluding Albacete,Spain,
+2144144,ED4YAO,Miguel Sinchez,Miguel,Plasencia,excluding Albacete,Spain,
+2144145,EA4GUK,Oscar Romo Lozano,Oscar,Madrid,excluding Albacete,Spain,
+2144146,EA4GAT,Javier Ruiz medina,EA4GAT,Valdemoro,excluding Albacete,Spain,
+2144147,EA4ALM,Lito Masferrer payo,Lito,Madrid,excluding Albacete,Spain,
+2144148,EA4GHX,Rafael Barbero,Rafael,Madrid,excluding Albacete,Spain,
+2144149,EA4SG,David Romero,EA4SG,Colmenar Viejo,excluding Albacete,Spain,
+2144150,EB4FJV,Andres Calleja,EB4FJV,Colmenar Viejp,excluding Albacete,Spain,
+2144151,EA4DGY,Jesus Espaa,Jesus,Mostoles,excluding Albacete,Spain,
+2144152,EA4AWE,Pablo Esteban Herranz,Ea4awe,GUADARRAMA,excluding Albacete,Spain,
+2144153,EA4GWA,Francisco Javier Sanchez,Baltasar,Leganes,excluding Albacete,Spain,
+2144154,EA4GSF,Tomas Gonzalez,Totoro,Moralzarzal,excluding Albacete,Spain,
+2144155,EA4FVU,Juan Lebrusan,Ea4fvu,Madrid,excluding Albacete,Spain,
+2144156,EA4GRX,FRANCISCO GARCIA CANO,FRANCISCO,MADRID,excluding Albacete,Spain,
+2144157,EA4GAY,Angel Luis Dominguez Alcon,Angel Luis,Montehermoso,excluding Albacete,Spain,
+2144158,EA4CM,Angel Garcia,Angel,Madrid,excluding Albacete,Spain,
+2144160,EA4MW,DE LA FUENTE HERNAN,HERNAN,MADRID,excluding Albacete,Spain,
+2144161,EA4GQL,FRANCISCO CABALLERO,PACO,MAJADAHONDA,excluding Albacete,Spain,
+2144162,EA4DVA,Santiago Jimenez,Santiago,Madrid,excluding Albacete,Spain,
+2144163,EA4GQM,Sergio ,,Torrejon de ardoz m,excluding Albacete,Spain,
2145001,EA5AWM,Vicente ,Vicente,Valencia,Valencia,Spain,Mobile
2145002,EA5AWM,Vicente ,Vicente,Valencia,Valencia,Spain,Portable
2145003,EA5HJX,Alex ,Alex,Valencia,Valencia,Spain,Mobile
@@ -4320,7 +4509,14 @@ 2145128,EA5SW,Jose Lopez,EA5SW,Valencia,Valencia,Spain,
2145129,EA5IDR,FRANCISCO JOSE PEaeAS PERAN,FRANCISCO JOSE,ALHAMA DE MURCIA,Murcia,Spain,
2145130,EA5URB,Ea5urb U.R.B,EA5URB,Benidorm,Valencia,Spain,
-2145131,EA5IHR,Alfredo ,,Valencia,Valencia,Spain,
+2145131,EA5IHR,Alfredo Alfredo,Alfredo,Valencia,Valencia,Spain,
+2145132,EA5RCK,Radioclub Campello Radioclub Campello,EA5RCK,El Campello,Valencia,Spain,
+2145133,EA5GXQ,ANGEL REDONDO JARA,POSITRON,ALMANSA,Albecete,Spain,
+2145134,EB5IYU,Norberto Legidos Bautista,EB5IYU,Almansa,Albecete,Spain,
+2145135,EB5AGX,JOSE JAVIER LOZANO,JOSE JAVIER,ABARAN,Murcia,Spain,
+2145136,EB5BYP,JAVIER CULEBRA HERNANDEZ,JAVIER,EL CAMPELLO,Valencia,Spain,
+2145137,EB5AG,Manuel Luis ,,Novelda,cnty,Spain,
+2145138,EA5IQC,Jose Luis ,,Almenara,Valencia,Spain,
2146001,EA6AFZ,Antonio Lopez,Antonio,Inca,Islas Baleares,Spain,
2146002,EA6AID,Ana Macian,Ana,Inca,Islas Baleares,Spain,
2146003,EA6AFZ,Antonio Lopez Segade,Antonio,Inca,Islas Baleares,Spain,
@@ -4457,11 +4653,37 @@ 2147117,EA7ALP,Alfonso Manuel Delgado Lozano,Ea7alp,Sevilla,Andalucia,Spain,
2147118,EB7EZC,Antonio Pelaez,Antonio,Caleta de Velez,Andalucia,Spain,
2147119,EA7HGL,Antonio Domingo Reina Garfia,ADRG,Mairena del Aljarafe,Andalucia,Spain,
-2147122,EA7HQG,David ,,Espartinas,Andalucia,Spain,
-2147123,EA7IPF,Arboladas ,,Linares Jaen,Andalucia,Spain,
-2147124,EA7GS,Arboladas ,,Linares Jaen,Andalucia,Spain,
-2147125,EA7FYX,Entrenas ,,Linares Jaen,Andalucia,Spain,
-2147126,EA7HFY,Antonio ,,El Alquian (Almera),Andalucia,Spain,
+2147120,EA7OP,JAVIER BERRUECO,JJ,CORDOBA,Andalucia,Spain,
+2147121,EC7CUH,Jesus Toucedo Rodriguez,Ramdoor,Sevilla,Andalucia,Spain,
+2147122,EA7HQG,David Mora,David,Espartinas,Andalucia,Spain,
+2147123,EA7IPF,Arboladas Entrenas,Baltasar,Linares Jaen,Andalucia,Spain,
+2147124,EA7GS,Arboladas Cabrero,Baltasar,Linares Jaen,Andalucia,Spain,
+2147125,EA7FYX,Entrenas Martin,Mati,Linares Jaen,Andalucia,Spain,
+2147126,EA7HFY,Antonio Peinado Martinez,Antonio,El Alquian (Almera),Andalucia,Spain,
+2147127,EA7BS,Salvador Buoncuore Addeo,Salvador,Milaga,Andalucia,Spain,
+2147128,EA7GWD,JOSE SANCHEZ MARIN,PEPE (SIERPES),Sevilla,Andalucia,Spain,
+2147129,EA7IGM,ESTEBAN EXPOSITO DELGADO,ESTEBAN,SEVILLA,Andalucia,Spain,
+2147130,EA7CXJ,Manuel Medrano,ManiManuel,Sevilla,Andalucia,Spain,
+2147131,EA7CCQ,Gabriel Gomez Munoz,Gabriel,El Ejido,Andalucia,Spain,
+2147132,EB7CSL,TOM SKOG MEYER,EB7CSL,MALAGA,Andalucia,Spain,
+2147133,EA7GMQ,Fermin Mesa Alonso,EA7GMQ,Sevilla,Andalucia,Spain,
+2147134,EA7VA,RUBEN MARMOL MORENO,RUBEN,ALHAURIN,Andalucia,Spain,
+2147135,EA7HXA,SEBASTIAN BONILLA GARCIA,SEBASTIAN,HINOJOS,Andalucia,Spain,
+2147136,EA7JVT,ISAAC DUARTE ROJO,EA7JVT,ECIJA,Andalucia,Spain,
+2147137,EB7DPL,Rafael De la Cruz Delgado,Rafael de la Cruz,Sanlucar de Barramed,Andalucia,Spain,
+2147138,EA7JYA,Antonio Cardona,Antonio,ALMERIA,Andalucia,Spain,
+2147139,EA7BHR,FRANCISCO M GUTIERREZ MUaeOZ,Paco,ALMERIA,Andalucia,Spain,
+2147140,EA7RX,Rafael Roman,EA7RX,Jaen,Andalucia,Spain,
+2147141,EA7KK,Benjamin Gallego,EA7KK,Montellano,Andalucia,Spain,
+2147142,EA7AMU,Antonio Munoz,Amp,Sevilla,Andalucia,Spain,
+2147143,EA7ZT,Jose Garcia,Pepe Garcia,Sevilla,Andalucia,Spain,
+2147144,EA7QY,Francisco javier Rodriguez,EA7QY,Moron de la frontera,Andalucia,Spain,
+2147145,EA7LD,PACO RICO,BLANCA,JAEN,Andalucia,Spain,
+2147146,EA7OR,Francisco DURAN DIAZ,Paco_Duran,CORDOBA,Andalucia,Spain,
+2147147,EA7BPN,JUAN DOMINGUEZ,JUAN,SEVILLA,Andalucia,Spain,
+2147148,EA7HNF,SERAFIN GOMEZ CRIADO,SERAFIN,EL EJIDO,Andalucia,Spain,
+2147149,EA7GCI,Pedro ,,Sevilla,Andalucia,Spain,
+2147150,EA7KAS,SANTIAGO ,GALINDO77,MALAGA,Andalucia,Spain,
2148001,EA8YAT,Alfred ,Alfred,Las Palmas,Islas Canarias,Spain,Portable
2148002,EA8EE,Jose ,Jose,Las Palmas,Islas Canarias,Spain,
2148003,EA8EE,Jose Manuel Martinez,Jose Manuel,Las Palmas,Islas Canarias,Spain,
@@ -4497,7 +4719,13 @@ 2148033,EA8CBB,Tomas Aguilar Gutierrez,Tomas,Taco - La Laguna - T,Islas Canarias,Spain,
2148034,EA8II,Eduardo Diaz,Eduardo,La Laguna,Islas Canarias,Spain,
2148035,EA8TV,Juan Jose Tavio Gonzalez,Juan Jose,La Victoria de Acent,Islas Canarias,Spain,
+2148036,EA8BQU,ANTONIO MELIAN,TONY,TELDE,Islas Canarias,Spain,
2148037,EA8AQI,ROGELIO MARTEL LOPEZ,ROGELIO,TELDE,Islas Canarias,Spain,
+2148038,EA8BWD,MARIA DOMINGA DEL CASTILLO,MARIA,Santa Cruz de Teneri,Islas Canarias,Spain,
+2148039,EA8XT,JOSE LUIS SAIZ,JOSE LUIS,LAS PALMAS,Islas Canarias,Spain,
+2148040,EA8CPM,JUAN CARLOS GALLEGO,JUAN CARLOS,ARUCAS,Islas Canarias,Spain,
+2148041,EA8BKB,GERMAN LOPEZ,GERMAN,TELDE,Islas Canarias,Spain,
+2148042,EA8CAY,ANTONIO CAaeELLAS,TONI-EA8CAY,TELDE,Islas Canarias,Spain,
2149001,EA9PE,Alvaro ,Alvaro,Ceuta,Ceuta,Spain,Portable
2149002,EB9PB,Alejandro ,Alejandro,Ceuta,Ceuta,Spain,Mobile
2149003,EA9AAD,Lara Ostio Almudena,Lara Ostio,Ceuta,Ceuta,Spain,
@@ -4524,7 +4752,7 @@ 2161015,HA3AMR,Adolf Maximilian Roetsch,Adolf Maximilian,Sopron,Gyor-Moson-Sopron,Hungary,
2161016,HA1DBO,Toth Imre,Toth,Gyorszemere,Gyor-Moson-Sopron,Hungary,
2161017,HA2ALI,Albert Borsos,Ali,Dorog,Komuarom-Esztergom,Hungary,
-2161018,HA1BL,Borbely Lajos,Lui,Bagyogszovat,Gyor-Moson-Sopron,Hungary,
+2161018,HA1BL,Lajos Borbely,Lui,Bagyogszovat,Gyor-Moson-Sopron,Hungary,
2161019,HG1KCJ,Csaba Kovcs,Csaba,Babot,Gyor-Moson-Sopron,Hungary,
2161020,HG1DFP,Laszlo Fettik,Laci,Jinossomorja,Gyor-Moson-Sopron,Hungary,
2161021,HA1CP,Laszlo Domjin,Laci,Nagykanizsa,Zala County,Hungary,
@@ -4542,6 +4770,11 @@ 2161033,HG2QGK,Attila Kozik,Attila,Esztergom Kertviros,Komarom-Esztergom,Hungary,
2161034,HA2BJ,Jozsef Babai,Joci,Hereg,Komarom-Esztergom,Hungary,
2161035,HA4ULB,Gabor Gyorgyi,Gabor,Alap,Fejer,Hungary,
+2161036,HG1MA,Akos Marton,Akos,Nagykanizsa,Zala County,Hungary,
+2161037,HG2EBH,Zsolt Csaszar,Zsolt,Gyor,Gyur-Moson-Sopron,Hungary,
+2161038,HA4SA,Attila Szendrei,Attila,Pakozd,cnty,Hungary,
+2161039,HA1DFN,Attila Toth,Attila,Gyorujbarat,Gyor-Moson-Sopron,Hungary,
+2161040,HA1MCI,Marton Kurcsics,Marton,Gyor,Gyor,Hungary,
2163001,HG3GG,Gabor ,Gabor,Kaposvar,Somogy,Hungary,Portable#1
2163002,HG3GG,Gabor ,Gabor,Kaposvar,Somogy,Hungary,Portable#2
2163003,HA3KZ,Zoltan Herczeg,Zoltan,Kaposvar,Somogy County,Hungary,
@@ -4565,6 +4798,8 @@ 2163021,HA3LMR,Kiss Meirosu Laszlo,Kiss Meirosu,Pecs,Baranya,Hungary,
2163022,HA3HJ,Jozsef Heiszler,Jozsef,Darany,Somogy,Hungary,
2163023,HA3TQ,Gabor Dr Nagy,Gabor,Pecs,Baranya,Hungary,
+2163024,HA3TA,Zsolt Harmuth,Zsolti,Pecs,Baranya,Hungary,
+2163025,HG3TR,Gaborne Dr Nagy,Eszter,Pecs,cnty,Hungary,
2165001,HA5CJN,Ivan Nagy,Ivan,Budapest,Budapest,Hungary,
2165002,HA5BHX,Gabor Breitner,Gabor,Budapest,Budapest,Hungary,
2165003,HG5OHT,Tuende Herczegn Katona,Tuende,Budapest,Budapest,Hungary,
@@ -4606,7 +4841,7 @@ 2165039,HG5CHN,Laszlo Vizsy,Laszlo,Budapest,Budapest,Hungary,
2165040,HG5CDA,Jezso Zoltan,Jezso,Budapest,Budapest,Hungary,
2165041,HG5CCT,Tibor Turcsan,Tibor,Budapest,Budapest,Hungary,
-2165042,HG5OSI,Oslanyi Laszlo,Laci,Budapest,Budapest,Hungary,
+2165042,HG5OSI,Laszlo Oslanyi,Laci,Budapest,Budapest,Hungary,
2165043,HG5AIU,Istvan Kropok,Istvan,Budapest,Budapest,Hungary,
2165044,HA5BM,Jinos Benesovits,Jinos,Budapest,Budapest,Hungary,
2165045,HA5BW,Kalman Horogh,Kalman,Budapest,Budapest,Hungary,
@@ -4638,6 +4873,7 @@ 2165071,HA5RG,Gibor Rozsa,Gabi,Budapest,Budapest,Hungary,
2165072,HG5BYO,Zoltin Pidir,Zoltin,Budapest,Budapest,Hungary,
2165073,HA5ASS,Zsolt Lombar,Zsolt,Budapest,Budapest,Hungary,
+2165074,HA5BXR,Istvan Muranyi,Istvan,Budapest,Budapest,Hungary,
2167001,HG7JML,Otto Vincze,Otto,Erd,Calabarzon,Hungary,
2167002,HA5OGR,Lajos Horvath,Lajos,Dunavarsany,Pest County,Hungary,
2167003,HA7TP,Peter Till,Peter,Veresegyhaz,Pest County,Hungary,
@@ -4656,7 +4892,7 @@ 2167016,HA9BG,Bihary Gyula,Bihary,MAD,Maryland,Hungary,
2167017,HA9MJ,Janos Mate,Janos,Miskolc,Borsod-Abauj-Zemplun,Hungary,
2167018,HG7WBR,Jozsef Szenasi,Jozsef,Aszod,Pest County,Hungary,
-2167019,HA7BJA,Beres Jozsef,Beres,Urom,Pest County,Hungary,
+2167019,HA7BJA,Jozsef Beres,Jozsef,Urom,Pest County,Hungary,
2167020,HG7ZSO,Zsoldi Zsolt,Zsoldi,Peteri,Pest County,Hungary,
2167021,HA5OGR,Lajos Horvath,Lajos,Dunavarsany,Pest County,Hungary,
2167022,HA7JOK,Karoly Mate,Karoly,Veresegyhaz,Pest County,Hungary,
@@ -4678,6 +4914,7 @@ 2167038,HA6CX,Tibor Birkinyi,Tibor,Gyoengyoes,Heves,Hungary,
2167039,HA6KL,Lajos Kralik,Lajos,Gyoengyoes,Heves,Hungary,
2167040,HA7JZ,Zoltan Rigo,Zoli,Jasztelek,cnty,Hungary,
+2167041,HA7JRD,Tibor Barath,Tibor,Jaszbereny,Jasz-Nagykun-Szolnok,Hungary,
2168001,HA3TL,Laszlo Kardos,Laszlo,Debrecen,Veszprum,Hungary,
2168002,HA0BW,Imre Gardo,Imre,Debrecen,Hajdu-Bihar,Hungary,
2168003,HA0DR,Lajos Gergely,Lajos,Debrecen,Hajdu-Bihar,Hungary,
@@ -4687,6 +4924,7 @@ 2168007,HA8LN,Janos Csabai,Janos,Magyarbinhegyes,Buakuas County,Hungary,
2168008,HA8LN,Jinos Csabai,Janos,Magyarbinhegyes,Buakuas County,Hungary,
2168009,HG8LW,Sandor Gyapjas,Sanyi,Nyregyhiza,cnty,Hungary,
+2168010,HA8LLH,Ferenc Csiki,Feri,Sarkad,cnty,Hungary,
2180001,E74OF,Pedja Jovanovic,Pedja,Sarajevo,,Bosnia and Hercegovi,
2180002,E73JN,Nenad Jovanovic,Nenad,Sarajevo,,Bosnia and Hercegovi,
2180003,E74NK,Nail Klisura,Nail,Fojnica,,Bosnia and Hercegovi,
@@ -4710,6 +4948,31 @@ 2200002,YU1VI,Slobodan Nikolic,Slobodan,Belgrade,,Serbia,
2200003,YU5JZI,Igor Joncic,Jonca,Belgrade,,Serbia,
2200004,YU5RDK,Darko Kovaievic,Darko,Belgrade,,Serbia,
+2200005,YU3ZZ,Zoran Djordjevic,Zoran,Belgrade,,Serbia,
+2200006,YU1AM,Dusan Drljaca,Dule,Belgrade,,Serbia,
+2200007,YT3CCB,Goran Jovanovic,Goran,Belgrade,,Serbia,
+2200008,YT1BAL,Biljana Jovanovic,Bilja,Belgrade,,Serbia,
+2200009,YT5AVZ,Aleksandar Zivkovic,Sale,Belgrade,,Serbia,
+2200010,YT3GTI,Vladan Jovancic,Vlada,Belgrade,,Serbia,
+2200011,YT3EW,Aleksandar Djurovic,Alex,Belgrade,,Serbia,
+2200012,YU4EMT,Ivan Jovanovic,Ivan,Belgrade,,Serbia,
+2200013,YU5PRO,Filip Djuric,Filip,Uzice,,Serbia,
+2200014,YU1FW,Branko Drljaca,Branko,Belgrade,,Serbia,
+2200015,YT1RXA,Radomir Antonic,Rajko,Beograd,,Serbia,
+2200016,YT1ZVM,Veljko Matic,Veljko,Zitiste,,Serbia,
+2200017,YT1MYA,Milena Antonic,Mica,Beograd,,Serbia,
+2200018,YT1ZMZ,Zora Matic,Zoki,Zitiste,,Serbia,
+2200019,YT1ASN,Suzana Ninkovic,Suzi,Aleksandrovo,,Serbia,
+2200020,YU4MES,Florijan Predrag,Floki,Belgrade,,Serbia,
+2200021,YU4GBB,Bozo Glusac,Boo,Novi Banovci,,Serbia,
+2200022,YT5ZEC,Nikola Stojkovic,Nix,Beograd,,Serbia,
+2200023,YT2LB,Bogoljub Lazarevic,Bogica,Aljudovo,,Serbia,
+2200024,YU1PRM,Milan Radovanovic,Pole,Pirot,,Serbia,
+2200025,YU1CA,Aleksandar Blagojevic,Aca,Beograd,,Serbia,
+2200026,YU1RMR,Miodrag Rstic,Miodrag,Beograd,,Serbia,
+2200027,YT1XDB,Danijela Blagojevic,Dana,Belgrade,,Serbia,
+2200028,YU5TDI,Dejan Blagojevic,Deki,Belgrade,,Serbia,
+2200029,YT1PEU,Miroslav Gavranov,Gavra,Beograd,,Serbia,
2220001,IK0YYY,Luca Ferrara,3y,Rome,,Italy,Portable#1
2220002,IK0YYY,Luca Ferrara,3Y,Roma,Umbria,Italy,
2220003,IW0BEC,Eugenio ,Eugenio,Rome,Lazio,Italy,Portable
@@ -5074,9 +5337,27 @@ 2220362,IW0EFI,Christian Pallucci,Chris,Gallinaro,Lazio,Italy,
2220363,I0LYL,Lucio Perrone,ILYL,Pomezia,Lazio,Italy,
2220364,IZ0WLI,BENVENUTI FRANCO,BENVENUTI,ROMA,Lazio,Italy,
-2220365,IW0DVV,Mariano ,,Civitavecchia,Lazio,Italy,
-2220366,IZ0YCA,SANDRO ,,ROMA,Lazio,Italy,
-2220367,IZ0UUP,VITTORIO ,,SantAngelo Romano,Lazio,Italy,
+2220365,IW0DVV,Mariano Mezzetti,Mariano,Civitavecchia,Lazio,Italy,
+2220366,IZ0YCA,SANDRO BONFANTINI,SANDRO,ROMA,Lazio,Italy,
+2220367,IZ0UUP,VITTORIO DI GIANFRANCESCO,VITTORIO,SantAngelo Romano,Lazio,Italy,
+2220369,IW0FEO,ANGELO IMPERO ZANONI,ANGELO IMPERO,SAN LORENZO NUOVO,Lazio,Italy,
+2220370,IK0TCL,Antonello Tiroli,Antonello,Citta di Castello,Umbria,Italy,
+2220371,I0GXK,David Fantini,I0GXK,Terni,Umbria,Italy,
+2220372,IW0EIS,Marco Marra,Spaccabit,Rome,cnty,Italy,
+2220373,IW0GYT,Fabrizio Gaucci,Fabrizio,Rome,Lazio,Italy,
+2220374,IK0EHZ,Patrizio Maria Adamo,Pat,Latina,Lazio,Italy,
+2220375,IU0CXS,Danilo Gazzelloni,IU0CXS,Roma,Lazio,Italy,
+2220376,IU0HUN,Fabrizio ,,Roma,Lazio,Italy,
+2220377,IK0NNB,Emilio ,,Roma,cnty,Italy,
+2220378,IK0IXI,FABIO ,,CIVITAVECCHIA,Lazio,Italy,
+2220379,IU0GML,Cristian ,,Civitavecchia,Lazio,Italy,
+2220380,IW0DGQ,ROBERTO ,,TARQUINIA,Lazio,Italy,
+2220381,IZ0JBM,Maurizio ,,Cerveteri,Lazio,Italy,
+2220382,IZ0RPS,Marcello ,,CIVITAVECCHIA,Lazio,Italy,
+2220383,IU0GIL,Roberto ,,Civitavecchia,Lazio,Italy,
+2220384,IK0JOS,Roberto ,,Civitavecchia,Lazio,Italy,
+2220385,IZ0HSR,Gian Carlo ,,Tarquinia,Lazio,Italy,
+2220386,IZ0KAT,Fabio ,,Civitavecchia,cnty,Italy,
2220900,IW0UIF,Natale ,Natale,Oristano,Sardinia,Italy,Mobile
2220901,IS0XDA,Gianni ,Gianni,Sinnai,Sardinia,Italy,Mobile
2220902,IS0AYI,Paolo ,Paolo,Cagliari,Sardinia,Italy,Mobile
@@ -5229,7 +5510,7 @@ 2221137,IZ1WWR,Claudio Beltramo,Claudio,Nichelino,Piemonte,Italy,
2221138,IK1COA,Alfredo Canessa,Alfredo,Rapallo,Liguria,Italy,
2221139,IW1QBH,Roberto Monticelli,Roberto,Genova,Liguria,Italy,
-2221140,IZ1FYZ,Andrea Cariglia,IX1FZK,Sanremo,Liguria,Italy,
+2221140,IZ1FYZ,Andrea Cariglia,IK1FYZ,Sanremo,Liguria,Italy,
2221141,IW1QEF,Raffaele Porcella,Raffaele,Chiavari,Liguria,Italy,
2221142,IZ1UMI,Cesare Rosso,Cesare,Torino,Piedmont,Italy,
2221143,IU1BAY,Roberto Tonelli,Roberto,Piossasco,Piemonte,Italy,
@@ -5372,7 +5653,7 @@ 2221280,IK1JMJ,Carlo Poggio,Carlo,Torino,Piedmont,Italy,
2221281,IW1CMX,Pier Giorgio Martinetto,Piergiorgio57,CastellAlfero (AT),Piedmont,Italy,
2221282,IW1FYE,FABIO DI MARCO,Fabio,Grugliasco,Piedmont,Italy,
-2221283,IZ1VAZ,Samuel ,,Beinasco torino,Piedmont,Italy,
+2221283,IZ1VAZ,Samuel Magistro,IZ1VAZ,Beinasco torino,Piedmont,Italy,
2221284,IZ1TGB,Andrea Pineschi,Andypin,LA Spezia,Liguria,Italy,
2221285,IZ1BCJ,Gianluca Crafa,IZ1BCJ,Torino,Piedmont,Italy,
2221286,IU1DXU,ENNIO POLETTA,ENNIO,CHIVASSO,Piedmont,Italy,
@@ -5387,11 +5668,36 @@ 2221295,IZ1GZF,Luca Feletti,IZ1GZF,Bussoleno (TO),Piedmont,Italy,
2221296,IW1EYZ,P Paolo CARPINELLI,IW1EYZ,Genova,Liguria,Italy,
2221297,IZ1VWE,Dario Occhiogrosso,Iz1vwe,Genova,Liguria,Italy,
-2221298,IK1TAQ,Benazzo ,,Alessandria,cnty,Italy,
-2221299,IK1JMJ,CARLO ,,Torino,Piedmont,Italy,
-2221300,IU1HIJ,Stefano ,,Turin,Piedmont,Italy,
-2221301,IZ1TMF,Cech ,,Trana,Piedmont,Italy,
-2221302,IK1ASR,Enrico ,,RAPALLO,Liguria,Italy,
+2221298,IK1TAQ,Benazzo Ginetto,Gino,Alessandria,cnty,Italy,
+2221299,IK1JMJ,CARLO POGGIO,IK1JMJ,Torino,Piedmont,Italy,
+2221300,IU1HIJ,Stefano Curti,Curz,Turin,Piedmont,Italy,
+2221301,IZ1TMF,Cech Marco,Cech,Trana,Piedmont,Italy,
+2221302,IK1ASR,Enrico Cazzulino,Ik1asr,RAPALLO,Liguria,Italy,
+2221303,IZ1VWD,EMILIANO SCANIGLIA,EMMI,GENOVA,Liguria,Italy,
+2221304,IU1FJW,Edoardo Fagiano,Edoardo,Carmagnola,Piedmont,Italy,
+2221305,IU1ADU,Renato Dagostino,IU1ADU,Sanremo,Liguria,Italy,
+2221306,IZ1RVS,Giuseppe Genovesi,Iz1rvs,Riva Ligure,Liguria,Italy,
+2221308,IZ1UQG,Alessandro Gagliardi,IZ1UQG,Verbania,Piedmont,Italy,
+2221309,IZ1UKB,Roberto Anic,Marino,Genova,Liguria,Italy,
+2221310,IZ1RFM,CARLO PONSO,CARLO,MORETTA (CN),Piedmont,Italy,
+2221311,IK1JNS,Pino Panniello,Pino,Rivoli,Piemonte,Italy,
+2221312,IK1PKH,FABRIZIO MAZZONI,FABRY,Ronco Scrivia,Liguria,Italy,
+2221313,I1GFV,Giacomo Bocchi,Gian,Busalla (GE),Liguria,Italy,
+2221314,IK1VDI,Giorgio Basso,Ik1vdi giorgio,Borgaro Torinese,cnty,Italy,
+2221315,IZ1DRY,Lorenzo Beccati,Iz1dry Lorenzo,San Maurizio canaves,Piedmont,Italy,
+2221316,IX1AOU,ENRICO COLLOMB,ENRICO,AOSTA,Aosta,Italy,
+2221317,IZ1CQY,Piero Valle,Piero,Rivoli,Piedmont,Italy,
+2221318,IZ1TMR,Loredano Leone,Iz1tmr Loredano,Avigliana,cnty,Italy,
+2221319,I1KAQ,Marco Astesiano,I1kaq - Marco,Monastero Bormida,cnty,Italy,
+2221320,IZ1XBB,Pier Paolo Liuzzo,IZ1XBB,Tortona,Piedmont,Italy,
+2221321,I1OFN,Franco Lauro,Franco,Genova,Liguria,Italy,
+2221322,IZ1YPF,Michele Ferrari,Micheleypf,Genova,Liguria,Italy,
+2221323,I1OXZ,Bassano ,,Tigliole,Piedmont,Italy,
+2221324,IZ1PAZ,Giuseppe-Silvio ,,Genova,Liguria,Italy,
+2221325,IK1MOT,Raffaele ,,Casalnoceto,Piedmont,Italy,
+2221326,I1XZZ,Giancarlo ,,Genova,Liguria,Italy,
+2221327,IZ1RFV,Paolo ,,Tortona,Piedmont,Italy,
+2221328,IZ1UIB,Mauro ,,Omegna,Piedmont,Italy,
2222001,IW2DCK,Germano ,Germano,Capriate San Gervasi,Lombardy,Italy,Portable
2222002,IW2BCF,Roberto ,Roberto,Milano,Lombardy,Italy,Mobile
2222003,IZ2JGB,Giorgio ,Giorgio,Legano,Lombardy,Italy,Portable
@@ -5702,7 +6008,7 @@ 2222308,IZ2LSJ,Stefano Giacomo DInca,iz2lsj,Trezzano Rosa,Lombardy,Italy,
2222309,IW2EHH,Marco Carminati,IW2EHH,Milano,Lombardy,Italy,
2222310,IW2DWG,Enrico Ceruti,iw2dwg,COMO,Lombardy,Italy,
-2222311,IW2BSF,Rodolfo Parisio,iw2bsf,Stradella,Lombardy,Italy,
+2222311,IW2BSF,Rudy Parisio,iw2bsf,Oltrepo pavese,Lombardy,Italy,
2222312,IU2BFT,Simone Marani,IU2BFT,Bollate,Lombardy,Italy,
2222313,IK2PYX,Pierluigi Cremonesi,ik2pyx,Lodi,Lombardy,Italy,
2222314,IK2WZN,Gianni Onorati,ik2wzn,Desenzano del Garda,Lombardy,Italy,
@@ -5806,7 +6112,7 @@ 2222412,IW2LJB,MASSIMO BRAGONZI,Maxbrago,Casaletto Ceredano,Lombardy,Italy,
2222413,IW2MMX,Ennio Rizzi,Ennio,Brescia,Lombardy,Italy,
2222414,IU2BWK,Eddy Padovani,IU2BWK,Sesto San Giovanni,Lombardy,Italy,
-2222415,IU2GZQ,Alessandro Castellini,AlexDj,Montirone,Lombardy,Italy,
+2222415,IU2GZQ,Alessandro Castellini,Alex,Montirone,Lombardy,Italy,
2222416,IU2HEE,Marco Barzasi,BARMAC,Onore,Lombardy,Italy,
2222417,IZ2PAG,Bonny Marco Bonomi,Bonny,Fonteno,Lombardy,Italy,
2222418,IW2FMU,Marco Boglioni,IW2FMU,Brescia,Lombardy,Italy,
@@ -5837,18 +6143,39 @@ 2222443,IZ2WSQ,Armando Sala,Armando Sala,Arcore,Lombardy,Italy,
2222444,IW2LVG,LURATI CLAUDIO,IW2LVG,OLGIATE COMASCO,Lombardy,Italy,
2222445,IW2DKU,Paolo Malerba,Malepao,Sondrio,Lombardy,Italy,
+2222446,IW2KXU,Gerri Mingoia,Calogero,Missaglia,Lombardy,Italy,
2222447,IU2GFL,Maurizio Minali,IU2GFL,Brembate Sopra,Lombardy,Italy,
-2222448,IK2ARZ,TULLIO ,,CREMONA,Lombardy,Italy,
-2222449,IU2ABV,Fabio ,,Cusago,Lombardy,Italy,
-2222450,IZ2QEJ,Paolo ,,Milano,Lombardy,Italy,
-2222451,IZ2SRS,Federico Paolo ,,Milano,Lombardy,Italy,
-2222452,IZ2YWI,Marco ,,Oggiono,Lombardy,Italy,
-2222453,IK2WPO,Mauro ,,Mandello Del Lario,Lombardy,Italy,
-2222454,IW2ETV,Giancarlo ,,Voghera,Lombardy,Italy,
-2222455,IW2FCH,ANTONIO ,,Brescia,Lombardy,Italy,
-2222456,IZ2LPI,Maurizio ,,Vignate,Lombardy,Italy,
-2222457,IW2NGW,Diego ,,Seveso,Lombardy,Italy,
-2222458,IU2HUQ,Claudio ,,Milano,Lombardy,Italy,
+2222448,IK2ARZ,TULLIO MAZZINI,TULLIO,CREMONA,Lombardy,Italy,
+2222449,IU2ABV,Fabio Rancati,Iu2abv,Cusago,Lombardy,Italy,
+2222450,IZ2QEJ,Paolo Loprete,PaulLofish,Milano,Lombardy,Italy,
+2222451,IZ2SRS,Federico Paolo Loprete,Fede94,Milano,Lombardy,Italy,
+2222452,IZ2YWI,Marco Nolberti,IZ2YWI,Oggiono,Lombardy,Italy,
+2222453,IK2WPO,Mauro Curioni,Mau,Mandello Del Lario,Lombardy,Italy,
+2222454,IW2ETV,Giancarlo Angeleri,Giancarlo,Voghera,Lombardy,Italy,
+2222455,IW2FCH,ANTONIO ARZENTON,Tony,Brescia,Lombardy,Italy,
+2222456,IZ2LPI,Maurizio Manzato,IZ2LPI,Vignate,Lombardy,Italy,
+2222457,IW2NGW,Diego Reginato,IW2NGW,Seveso,Lombardy,Italy,
+2222458,IU2HUQ,Claudio Pezzini,Claudio,Milano,Lombardy,Italy,
+2222459,IU2DDA,Luca Luca,Franco,Milano,Lombardy,Italy,
+2222460,IW2MGX,Gianni Bonaiti,Gianni,Carenno,Lombardy,Italy,
+2222461,IW2GBJ,Pierluigi Barbieri,Pierluigi,Gerenzago,Lombardy,Italy,
+2222462,IW2EPM,Paolo Tedeschi,Tedo,Milan,Lombardy,Italy,
+2222463,IK2HTY,Roberto Roberti,Ik2hty,Milano,Lombardy,Italy,
+2222464,IZ2ZQC,Napolitano Stefano,Napolitano,Santo Stefano Ticino,Lombardy,Italy,
+2222465,IZ2MOB,Maurizio Malavasi,IZ2MOB,San Giorgio di manto,Lombardy,Italy,
+2222466,IZ2MGU,Luca Carozzi,Luca,Trezzano rosa milano,Lombardy,Italy,
+2222467,IZ2NSY,Pietro Valerio Cozzi,Mark,Robecco sul naviglio,Lombardy,Italy,
+2222468,IW2ERZ,Luciano Cordara,Luciano,Garlasco,Lombardy,Italy,
+2222469,IW2FPI,Augusto Giammarioli,Augusto,Como,Lombardy,Italy,
+2222470,IW2END,Francesco Terenghi,IW2END,Comabbio (va),Lombardy,Italy,
+2222471,IW2LFD,Luciano Arrigoni,Luciano,Comabbio,Lombardy,Italy,
+2222472,IU2FIN,FABRIZIO ,,VIGEVANO,Lombardy,Italy,
+2222473,IW2NXE,Gianfranco ,,Pavia,Lombardy,Italy,
+2222474,IW2FPL,Claudio ,,Tavernerio,Lombardy,Italy,
+2222475,IU2BXL,Giuseppe ,,Lurago DErba,Lombardy,Italy,
+2222476,IU2CAP,Filippo ,,Terno disola,Lombardy,Italy,
+2222477,IZ2NAB,GIANCARLO ,,Milano,Lombardy,Italy,
+2222478,IZ2ABV,LUIGI GIUSEPPE ,,TRAVAGLIATO,Lombardy,Italy,
2223001,IW3SRH,Stefano ,Stefano,Trieste,Friuli-Venetia Giuli,Italy,Portable
2223002,IV3DVE,Corrado ,Corrado,Trieste,Friuli-Venetia Giuli,Italy,Portable
2223003,IV3FHS,Antonio ,Antonio,Latisana,Friuli-Venetia Giuli,Italy,Portable
@@ -6190,24 +6517,36 @@ 2223339,IZ3KZX,Federico Merlo,Federico,Zelarino,cnty,Italy,
2223340,IU3BXP,Loris Siega,Loris,Martellago,Veneto,Italy,
2223341,IZ3VTH,Alessandro Murador,Ale IZ3VTH,Favaro Veneto,Veneto,Italy,
+2223342,IW3FKI,Albino Marchioro,Alby,Piove di Sacco,Veneto,Italy,
2223343,IK3FXK,Gaetano Schiavon,El Macia,Padova,Veneto,Italy,
2223344,IN3GME,Moritz Amort,IN3GME Moritz,Brixen,Trentino-Alto Adige,Italy,
2223345,IK3PDD,Umberto Querenghi,IK3PDD,Verona,cnty,Italy,
-2223346,IU3BUW,PAOLO ,,SCORZE,Veneto,Italy,
-2223347,IK3FXC,Giuseppe Luciano ,,Pozzoleone,Veneto,Italy,
-2223348,IV3EVJ,Paolo ,,S.daniele del Friuli,Friuli-Venezia Giuli,Italy,
-2223349,I3SWR,Renzo ,,Treviso,Veneto,Italy,
-2223350,IZ3RCE,ANTONIO ,,TREVISO,Veneto,Italy,
-2223351,IW3IIK,GENNARO ,,NOALE,cnty,Italy,
-2223352,IK3UBQ,Maielli ,,Santa Margherita dAd,Veneto,Italy,
-2223354,IZ3AWU,Carlo ,,Due Carrare,Veneto,Italy,
-2223356,IZ3ZVO,Ettorearra ,,Belluno,Veneto,Italy,
-2223357,IU3BRB,Alberto ,,San Vendemiano,Veneto,Italy,
+2223346,IU3BUW,PAOLO ZORZETTO,PAOLO,SCORZE,Veneto,Italy,
+2223347,IK3FXC,Giuseppe Luciano Serafini,Giuseppe Luciano,Pozzoleone,Veneto,Italy,
+2223348,IV3EVJ,Paolo Pastor,Paolo,S.daniele del Friuli,Friuli-Venezia Giuli,Italy,
+2223349,I3SWR,Renzo Sartori,Renzo I3SWR,Treviso,Veneto,Italy,
+2223350,IZ3RCE,ANTONIO VARALLO,ANTONIO,TREVISO,Veneto,Italy,
+2223351,IW3IIK,GENNARO PICARDI,GENNARO,NOALE,cnty,Italy,
+2223352,IK3UBQ,Maielli Daniele,IK3UBQ,Santa Margherita dAd,Veneto,Italy,
+2223353,IU3FSD,Ermanno Peltrera,Ecopapa,MIRA,Veneto,Italy,
+2223354,IZ3AWU,Carlo Lo Nigro,Carlo,Due Carrare,Veneto,Italy,
+2223356,IZ3ZVO,Ettore Dal Farra,IZ3ZVO,Belluno,Veneto,Italy,
+2223357,IU3BRB,Alberto Bellotto,IU3BRB,San Vendemiano,Veneto,Italy,
+2223359,IU3GJT,Duilio Da Campo,Duilio,Voltago Agordino,cnty,Italy,
+2223360,IW3QID,Ugo Variola,IW3QID,Trieste,Friuli-Venetia Giuli,Italy,
+2223361,IN3EAW,Alessandro Sbarra,IN3EAW,Aldeno,Trentino-Alto Adige,Italy,
+2223362,IW3HKY,Umberto Ballarin,Umbe,Treviso,Veneto,Italy,
+2223363,IW3HXV,Giulio Girardello,IW3HXV,Vicenza,Veneto,Italy,
+2223364,IW3IOG,Davide Gobetti,IW3IOG,Arcole,Veneto,Italy,
+2223365,IZ3SPQ,Tiziano Libralesso,Tizi,Martellago,Veneto,Italy,
+2223366,IW3RPW,Dario Gonnella,Dario,Trieste,Friuli-Venetia Giuli,Italy,
+2223367,IK3OUB,Bruno Martinolli,Bruno,Cortina dAmpezzo,Veneto,Italy,
+2223369,IN3LOY,Marco ,,Tesero,Trentino-Alto Adige,Italy,
2224001,IZ4RDT,Monica ,Monica,Piacenza,Emilia-Romagna,Italy,Mobile
2224002,IZ4YEP,Alex ,Alex,Piacenza,Emilia-Romagna,Italy,Mobile
2224003,IW4BVN,Paolo ,Paolo,Salsomaggiore Terme,Emilia-Romagna,Italy,Portable
2224004,IK4UPB,Gabriele ,Gabriele,Castelfranco Emilia,Emilia-Romagna,Italy,Portable
-2224005,IZ4HBZ,Stefano ,Stefano,Castelfranco Emilia,,Italy,
+2224005,IZ4HBZ,Stefano ,Stefano,Castelfranco Emilia,,Italy,Portable
2224006,IZ4VUG,Andrea Pezzella,Andrea,Bologna,Emilia-Romagna,Italy,
2224007,IW4EJU,Mattia Verucchi,Mattia,Modena,Emilia-Romagna,Italy,
2224008,IW4ELL,Dario Guidetti,Dario,Castelnovo ne Monti,Emilia-Romagna,Italy,
@@ -6355,10 +6694,26 @@ 2224150,I4KYO,Giorgio Cavicchioli,Giocav,Carpi,Emilia-Romagna,Italy,
2224151,IU4HMZ,Massimiliano Fiorillo,Massimiliano,FERRARA,Emilia-Romagna,Italy,
2224152,IU4AOY,Davide Piazzi,Dade81fe (Iu4aoy),Ferrara,Emilia-Romagna,Italy,
-2224153,I4YH,Massimo ,,Ferrara,Emilia-Romagna,Italy,
-2224154,I4JXE,Gabriele ,,Ferrara,Emilia-Romagna,Italy,
-2224155,IW4DLP,Girolamo ,,Bondeno,Emilia-Romagna,Italy,
-2224156,IZ4TNS,Loris ,,Bologna,Emilia-Romagna,Italy,
+2224153,I4YH,Massimo Biolcati,Max,Ferrara,Emilia-Romagna,Italy,
+2224154,I4JXE,Gabriele Bergami,Gabri,Ferrara,Emilia-Romagna,Italy,
+2224155,IW4DLP,Girolamo Chillemi,IW4DLP,Bondeno,Emilia-Romagna,Italy,
+2224156,IZ4TNS,Loris Malossi,Loris,Bologna,Emilia-Romagna,Italy,
+2224157,IK4MTR,Francesco Dalla Porta,IK4MTR,Castelnovo ne Monti,Emilia-Romagna,Italy,
+2224158,IU4HOB,Paolo Beltrame,Paolo,Copparo (FE),Emilia-Romagna,Italy,
+2224159,IU4AOT,Cristiano Boicelli,IU4AOT,Bondeno,Emilia-Romagna,Italy,
+2224160,IK4JSF,Roberto Pola,IK4JSF,Bondeno,Emilia-Romagna,Italy,
+2224161,IW4BNN,Mauro POLETTI,IW4BNN,Bondeno,Emilia-Romagna,Italy,
+2224162,IZ4FTC,Claudio Dalmonte,Iz4ftc,Bologna,Emilia-Romagna,Italy,
+2224163,IK4HZW,Eric Benassi,IK4HZW,Reggio Emilia,Emilia-Romagna,Italy,
+2224165,IZ4HEO,Pietro Occhi,Iz4heo,Fidenza,Emilia-Romagna,Italy,
+2224166,IU8GVS,ALFONSO MOLLO,ALFONSO,Massalubrense,Emilia-Romagna,Italy,
+2224167,IU4DTV,Massimo Pecoraro,Massimo,Carpi,Emilia-Romagna,Italy,
+2224168,IW4DS,Maurizio Gelmini,Iw4ds,Carpi,Emilia-Romagna,Italy,
+2224169,IK4UOZ,Ennio Lazzarini,Ennio,Parma,Emilia-Romagna,Italy,
+2224170,IZ4HZW,Eric Benassi,IZ4HZW,Reggio Emilia,Emilia-Romagna,Italy,
+2224171,IZ4BES,Roberto ,,Voghiera (FE),Emilia-Romagna,Italy,
+2224172,IU4DKN,Riccardo ,,Ferrara,Emilia-Romagna,Italy,
+2224173,IZ4SJI,Arno ,,Porto Garibaldi (FE),Emilia-Romagna,Italy,
2225001,IZ5IOM,Renzo ,Renzo,Quarrata,Tuscany,Italy,Portable
2225002,IZ5HRO,Emanuele ,Emanuele,Pistoia,Tuscany,Italy,Portable
2225003,IZ5YLV,Valentina ,Valentina,Pistoia,Tuscany,Italy,Portable
@@ -6490,11 +6845,15 @@ 2225129,IU5HIW,Nino Gualdoni,Moooose,Castelnuovo berarden,Tuscany,Italy,
2225130,IU5HTN,Paolo Pasquali,IU5HTN,Lastra a signa,Tuscany,Italy,
2225131,IK5QQB,Riccardo Attina,IK5QQB,Monsummano Terme,Tuscany,Italy,
-2225132,IZ5UHD,Daniele ,,Vaiano-Valbisenzio,Tuscany,Italy,
-2225133,IZ5VUA,Damiano ,,Quarrata (PT),Tuscany,Italy,
-2225134,I5WCV,Emidio ,,Viareggio,Tuscany,Italy,
-2225135,IZ5QRH,STEFANO ,,SCANSANO,Tuscany,Italy,
-2225136,IU5HIB,Riccardo ,,PISA,Tuscany,Italy,
+2225132,IZ5UHD,Daniele Degli Innocenti,Iz5uhd,Vaiano-Valbisenzio,Tuscany,Italy,
+2225133,IZ5VUA,Damiano Guerrini,LordByte,Quarrata (PT),Tuscany,Italy,
+2225134,I5WCV,Emidio Baggiani,Emidio,Viareggio,Tuscany,Italy,
+2225135,IZ5QRH,STEFANO RANALDI,BOSS,SCANSANO,Tuscany,Italy,
+2225136,IU5HIB,Riccardo Benassi,Riccardo16,PISA,Tuscany,Italy,
+2225137,I5JJO,Roberto Mazzanti,Roberto,Carrara,Tuscany,Italy,
+2225138,IU5CGE,Adriano Bani,ZIoBani,Campi Bisenzio,Tuscany,Italy,
+2225139,IK5YOJ,Giuseppe Giunti,Joe,Empoli,Tuscany,Italy,
+2225140,IU5HMK,NIKO ,,Monte san savino,Tuscany,Italy,
2226001,IZ6FGP,Mario ,Mario,Ortona,Abruzzo,Italy,Portable
2226002,IK6TTE,Plinio ,Plinio,Casalbordino,Abruzzo,Italy,Portable
2226003,IZ6FGP,Mario ,Mario,Ortona,Abruzzo,Italy,Mobile
@@ -6656,6 +7015,7 @@ 2226159,IU6FOW,Alessandro Angeli,IU6FOW,Montecalvo In Foglia,Marche,Italy,
2226160,IZ6EJY,Marco Di Vittorio,Marco,Scoppito,Abruzzo,Italy,
2226161,IK6GBO,Sante Di Prinzio,IK6GBO,Guardiagrele,cnty,Italy,
+2226162,IK6PSM,Giovanni De Benedictis,Ik6psm,LAquila,Abruzzo,Italy,
2226163,IK6TUV,Schioppa Emidio,IK6TUV,Teramo,Abruzzo,Italy,
2226164,IU6EPG,Leo Di Paolo,Iu6epg,Crecchio,cnty,Italy,
2226165,IU6EAX,Marco Basili,IU6EAX,Pedaso,Marche,Italy,
@@ -6663,9 +7023,12 @@ 2226167,IU6HKA,Giovanni Mauro,Giovanni,Pescara,cnty,Italy,
2226168,IU6DJR,Christian Marinelli,Christian,Genga Stazione,Marche,Italy,
2226169,IZ6YQD,Guido Torelli,IZ6YQD,LAquila,Abruzzo,Italy,
+2226170,IW6CNM,Davide ,,Pesaro,Marche,Italy,
2226171,IZ6PAF,Marco Angelozzi,Iz6paf,San Giovanni Teatino,Abruzzo,Italy,
2226172,IU6FOW,Alessandro Angeli,Alex,Montecalvo In Foglia,Marche,Italy,
2226173,IU6FOP,GIOVANNI PAOLINELLI,GIOVANNI,FANO,Marche,Italy,
+2226174,I6YJD,Aldo DAlfonso,Aldo DAlfonso,Ofena,Abruzzo,Italy,
+2226175,IZ6PGZ,Manuele De Benedictis,IZ6PGZ,LAquila,Abruzzo,Italy,
2227001,IZ7OIX,Domingo ,Domingo,Bari,Apulia,Italy,Portable
2227002,IZ7GLL,Massimo ,Massimo,Bari,Apulia,Italy,Mobile
2227003,IZ7ZFT,Silvio ,Silvio,Rutigliano,Apulia,Italy,Mobile
@@ -6790,10 +7153,19 @@ 2227122,IK7SEC,Alessandro Amedeo Bracciolini,Ik7sec,Triggiano - Bari,Apulia,Italy,
2227123,IW7DIG,Claudio Michele Liguori,Claudio Liguori,Neviano (LE),Apulia,Italy,
2227124,IU7GHD,Pasquale Chiappinelli,Lino,Bari,Apulia,Italy,
-2227125,IW7EGG,Vincenzo ,,Cassano delle Murge,Apulia,Italy,
-2227126,IK7XBH,Carmelo ,,Ostuni,cnty,Italy,
-2227127,IW7CQB,Pasquale ,,Taranto,Apulia,Italy,
-2227128,I8ZSE,Giorgio ,,Potenza,Basilicata,Italy,
+2227125,IW7EGG,Vincenzo Palumbo,IW7EGG,Cassano delle Murge,Apulia,Italy,
+2227126,IK7XBH,Carmelo Milazzo,IK7XBH,Ostuni,cnty,Italy,
+2227127,IW7CQB,Pasquale Melucci,IW7CQB,Taranto,Apulia,Italy,
+2227128,I8ZSE,Giorgio Rutigliano,I8ZSE,Potenza,Basilicata,Italy,
+2227129,IU7HSD,Giacomo AMORUSO,IU7HSD,Trani,Apulia,Italy,
+2227130,IK7TAI,MARCELLO LIACI,MARLIACI,Bari,Apulia,Italy,
+2227131,IW7EFJ,Evangelio Marco,Evangelio,Foggia,Apulia,Italy,
+2227132,IZ7QOG,Pasquale Luceri,IZ7QOG,Galatina,Apulia,Italy,
+2227133,IZ7XMY,Procopio Ricatti,Prok,Bari,Apulia,Italy,
+2227134,IZ7CFE,ROCCO BORRELLI,ROCCO,CASAMASSIMA,cnty,Italy,
+2227135,IU7EHB,JOHN ,,BARI,Apulia,Italy,
+2227136,IZ7XIB,Fabio ,,GRAVINA IN PUGLIA,Apulia,Italy,
+2227137,IW7BIM,GIUSEPPE ,,Gravina in Puglia,Apulia,Italy,
2228001,IZ8IYJ,Nicola ,Nicola,Cosenza,Calabria,Italy,Portable
2228002,IW8XQP,Elio ,Elio,Isernia,Molise,Italy,Mobile
2228003,IZ8XSS,Federico ,Federico,Aversa,Campania,Italy,Mobile
@@ -6954,11 +7326,22 @@ 2228158,IW8BDB,Fabio Lobascio,Fabio,Napoli,Campania,Italy,
2228159,IZ8TBR,Stefano Paolacci,IZ8TBR,Recale,Campania,Italy,
2228160,IZ8BXM,Roberto Pareto,Roberto,Santagapito,cnty,Italy,
+2228161,IZ8OSO,Vittorio Mattiello,Schizzatello,Napoli,Campania,Italy,
2228162,IZ8WDZ,Giuseppe Conte,Peppe,S.nicola la strada (,cnty,Italy,
-2228163,IZ8MBT,Claudio ,,Massa Lubrense,Campania,Italy,
-2228164,IK8MNV,GIUSEPPE ,,Giugliano in campani,Campania,Italy,
-2228165,IK8UHA,ANTONIO ,,Napoli,Campania,Italy,
-2228166,IZ8MRZ,Mario ,,Raviscanina,Campania,Italy,
+2228163,IZ8MBT,Claudio Fusco,Claudio,Massa Lubrense,Campania,Italy,
+2228164,IK8MNV,GIUSEPPE DEL GIUDICE,GIUSEPPE,Giugliano in campani,Campania,Italy,
+2228165,IK8UHA,ANTONIO BARBATO,TONY,Napoli,Campania,Italy,
+2228166,IZ8MRZ,Mario Mancini,Picchio,Raviscanina,Campania,Italy,
+2228168,IZ8UMO,GIULIA MARROCCO,GIULIA,Napoli,Campania,Italy,
+2228169,IZ8LFI,Vincenzo Esposito,Enzo,Napoli,Campania,Italy,
+2228170,IZ8ALA,Giancarlo VALLETTA,IZ8ALA,SAN TAMMARO (CE),cnty,Italy,
+2228172,IW8DGZ,Antonio Russo,Iw8dgz,Grottaminarda (av),Campania,Italy,
+2228173,IZ8HGA,Paolo Lanzotti,Paolo,Naples,Campania,Italy,
+2228174,IK8SOL,FRANCESCO ROSSETTI,IK8SOL,Casapulla,Campania,Italy,
+2228175,IU8AUH,Guido Allegri,IU8AUH,Isernia,Molise,Italy,
+2228176,IK8TLZ,Ezio Calarco,Ezio,Napoli,Campania,Italy,
+2228177,IZ5HQA,Giuseppe Occhionero,GIUSEPPE,Campomarino,Molise,Italy,
+2228178,IU8HOZ,Stefano Pio ,,San sosti,Calabria,Italy,
2229001,IT9YFO,Andrea ,Andrea,Catania,Sicily,Italy,Mobile
2229002,IT9ZON,Francesco ,Francesco,Catania,Sicily,Italy,Mobile
2229003,IT9UUT,Salvo ,Salvo,Ispica,Sicily,Italy,Portable
@@ -7051,7 +7434,8 @@ 2229090,IT9GNC,Fabio Beffumo,IT9GNC,Catania,Sicily,Italy,
2229091,IW9HGZ,Giuseppe Raciti,Giuseppe,Catania,Sicily,Italy,
2229092,IT9GQB,Igor Giuffrida,Igor,San Gregorio di Cata,Sicily,Italy,
-2229093,IT9SWH,Alfredo ,,Catania,Sicily,Italy,
+2229093,IT9SWH,Alfredo Scire,Alfredo,Catania,Sicily,Italy,
+2229094,IT9GNJ,Sorin ,,Piazza Armerina,Sicily,Italy,
2261001,YO3GTS,Dan ,Dan,Bucharest,Bucharest,Romania,Mobile
2262001,YO2LOJ,Marius Petrescu,Marius,Timisoara,Judeul Timi,Romania,
2262002,YO2LIC,Vali Ungur,Vali,Timisoara,Judeul Timi,Romania,
@@ -7062,6 +7446,9 @@ 2262007,YO2LLQ,Dan Stoian,Dan,Timisoara,Timis,Romania,
2262008,YO2MIZ,Alin Fitu,Alin,Timisoara,Timis,Romania,
2262009,YO2LOR,Ciprian Florea,Ciprian,Timisoara,Timis,Romania,
+2262010,YO2MGR,Ioana Botea,Ioana,Dumbravita,Timis,Romania,
+2262011,YO2LLZ,ADRIAN MANUEL Eparu,Epy,Timisoara,Timis,Romania,
+2262013,YO2LGP,Emanuel Vasile ,Manu,Timisoara,Timis,Romania,
2263000,YO3KSR,ASRR ,ASRR,Bucharest,Bucharest,Romania,Mobile
2263001,YO3GTS,Dan ,Dan,Bucharest,Bucharest,Romania,Mobile
2263002,YO3HJV,Adrian ,Adrian,Bucharest,Bucharest,Romania,Mobile
@@ -7127,10 +7514,12 @@ 2263062,YO3GON,Grososiu Vasile,Grososiu,Bucharest,Judeoul Ilfov,Romania,
2263063,YO3IUV,Cristian Varvas,Cristian,Bucuresti,Bucuresti,Romania,
2263064,YO3DRK,Radu Oprisan,Radu,Bucuresti,cnty,Romania,
+2263065,YO3IJB,Irima Teodorian,Irima,Bucuresti,Bucuresti,Romania,
2264001,YO6FWI,Nagy Mihail,Nagy,Brasov,Judeul Braov,Romania,
2264002,YO4FRF,Constantin Benedic,Constantin,Constanta,Judeul Arad,Romania,
2264003,YO4WM,Gabriel Florin Mihaila,Gabi,Braila,Judeoul Timi,Romania,
2264004,YO4ISC,Cristel Teodorescu,Cristel,Constanta,Judeoul Arad,Romania,
+2264005,YO4RKN,Rusu Romeo,Rusu,Adjud,Vrancea,Romania,
2265001,YO2MPH,Ciurdarescu Lucian Cosmin,Ciurdarescu,Alba Iulia,Judeul Alba,Romania,
2265002,YO5ATL,Attila Soos,Attila,Cluj-Napoca,Judeul Cluj,Romania,
2265003,YO5DSG,Daniel Salagean,Denis,Cluj-Napoca,Judeoul Cluj,Romania,
@@ -7172,6 +7561,9 @@ 2266035,YO6HSH,Attila Covacs,Otty,Sacele,Brasov,Romania,
2266036,YO6FLW,Arcire Viorel,Arcire,Sf.Gheorghe,Judeul Covasna,Romania,
2266037,YO6CFB,Laszlo Bako-Szabo,Lacy,Miercurea-Ciuc,Harghita,Romania,
+2266038,YO6OHD,Onofrei Daniel,Dan,Corunca,Mure County,Romania,
+2266039,YO6OAH,Mihai Suciu,Mihai,Targu-Mures,cnty,Romania,
+2266040,YO6ANZ,Marin Nanu,Marcel,Brasov,Brasov,Romania,
2268001,YO8TEH,Isidor Stirbu,Isidor,Bacau,Bacu County,Romania,
2268002,YO8RCM,Teodor RADU,Teodor,ROMAN,Neamo County,Romania,
2268003,YO8TES,Eduard Tamas,Edy,Bacau,Judeoul Timi,Romania,
@@ -7194,6 +7586,7 @@ 2269009,YO9IBC,Sitaru Eduard,Sitaru,Giurgiu,Judeul Dolj,Romania,
2269010,YO9IQS,Valentin Ciufu,Valentin,Pitulicea,Buzau,Romania,
2269011,YO9RVE,Silviu Isari,Sisari,Bucharest,Judeoul Teleorman,Romania,
+2269012,YO9FYP,Ioan Alexandru,Alex,Giurgiu,Giurgiu,Romania,
2280000,HB9XXX,not registered not registered,not registered,No qth,Zuerich und Thurgau,Switzerland,===========
2280001,DG1HT1,Torsten ,,Hamburg,,Germany,
2281001,HB3YNV,Cedric ,Cedric,Saint-Cergue,,Switzerland,Portable
@@ -7326,6 +7719,8 @@ 2281128,HB9FWV,Pascal Porchet,Pascal,Villars-Sainte-Croix,Westschweiz-Sud,Switzerland,
2281129,HB9FT,- -,FeederLine Team,Chotel-St-Denis,Westschweiz-Sud,Switzerland,
2281130,HB9TON,Jean-Francois Varidel,Jean-Francois,Yvonand,Westschweiz-Sud,Switzerland,
+2281131,HB9BAX,Jean-Francois Moulin,Jean-Francois,Volleges,Westschweiz-Sud,Switzerland,
+2281132,HB9TRY,Moreira Diaz Manuel Fernando,Manu,Chavornay,Westschweiz-Sud,Switzerland,
2282001,HB9OOI,Stephan ,Stephan,Grenchen,Solothurn,Switzerland,Portable
2282002,HB9BEI,Bruno Knuchel,Bruno,Taeuffelen,Bern,Switzerland,Portable
2282003,HB9EZV,Michel Perrenoud,Michel,La Neuveville,Westschweiz-Nord,Switzerland,
@@ -7573,6 +7968,8 @@ 2284114,HB9NFB,Tom Braendle,Clubstation NFB,Reinach,Basel/Solothurn,Switzerland,
2284115,HB9FRQ,German Geisslinger,German,Moehlin,Basel/Solothurn,Switzerland,
2284116,HB9DLF,Sergio Quirici,Sergio,Oftringen,Basel/Solothurn,Switzerland,
+2284117,HB9SXD,Daniel Jeanneret,Daniel,Wahlen bei Laufen,Basel/Solothurn,Switzerland,
+2284118,HB9DFP,Bruno Projer,Bruno,Augst,Basel/Solothurn,Switzerland,
2285001,HB9CNT,Paul ,Paul,Untersiggenthal,Baden,Switzerland,Portable#1
2285002,HB9CNT,Paul ,Paul,Untersiggenthal,Baden,Switzerland,Portable#2
2285003,HB9CNT,Paul ,Paul,Untersiggenthal,Baden,Switzerland,Mobil
@@ -7608,6 +8005,7 @@ 2285033,HB9GHY,Peter T Klaentschi,Peter,Sarmenstorf,Aargau,Switzerland,
2285034,HB9FKU,Marco Cazzato,Marco,Muri,Aargau,Switzerland,
2285035,HB9DWZ,Michael Busch,Michael,Nussbaumen,Aargau,Switzerland,
+2285036,HB9IRB,Pasquale Stella,Pasky,Gontenschwil,Aargau,Switzerland,
2286001,HB9BMC,Robert Murer,Robert,Steinhausen,Zentralschweiz und T,Switzerland,Portable
2286002,HB9CPY,Peter ,Peter,Altdorf,Uri,Switzerland,Portable
2286003,HB3YVK,Luca ,Luca,Comano,Tessin,Switzerland,
@@ -7667,7 +8065,7 @@ 2286057,HB9FPN,Matteo Scaccabarozzi,Matteo,Lugano,Zentralschweiz und T,Switzerland,
2286058,HB9EZU,Roland Achermann,Roland,Brunnen,Zentralschweiz und T,Switzerland,
2286059,HB9FLE,Rondelli Numa,Rondelli,Bellinzona,Zentralschweiz und T,Switzerland,
-2286060,HB3YDN,Hausi Steiner,Hausi,Schwyz,Zentralschweiz und T,Switzerland,
+2286060,HB3YDN,Hausi Steiner,Hausi,Ibach / SZ,Zentralschweiz und T,Switzerland,
2286061,HB9WDH,Peter Heri,Peter,Luzern,Zentralschweiz und T,Switzerland,
2286062,HB9DBK,Hanspeter Bless Bless,Hanspeter Bless,Kriens,Zentralschweiz und T,Switzerland,
2286063,HB9WAD,Konrad Schnetzler,Konrad,Kriens,Zentralschweiz und T,Switzerland,
@@ -7689,7 +8087,7 @@ 2286079,HB9OAB,Franco Borsa,Franco,Bellinzona,Zentralschweiz und T,Switzerland,
2286080,HB9OK,Radio Club Tera Radio Club Tera,Radio Club Tera,Vezia,Zentralschweiz und T,Switzerland,
2286081,HB9WCH,Daniel Schwoerer,Daniel,Eich,Zentralschweiz und T,Switzerland,
-2286082,HB9TSI,Andre Rieser,Andre,Goeschenen,Zentralschweiz und Tessin,Switzerland,
+2286082,HB9TSI,Andre Rieser,Andre,Goeschenen,Zentralschweiz und T,Switzerland,
2286083,HB9BQI,Rene Schmitt,Rene,Emmen,Zentralschweiz und T,Switzerland,
2286084,HB9EXG,Giulio Mondia,Giulio,Lugano,Zentralschweiz und T,Switzerland,
2286085,HB3YNS,Peppino Panarisi,Peppino,Rivera,Zentralschweiz und T,Switzerland,
@@ -7741,6 +8139,9 @@ 2286131,HB9FKL,Claudia Fava,Claudia,Lugano,Zentralschweiz und T,Switzerland,
2286132,HB9ODI,Rolf Gasser,Rolf,Riva San Vitale / Ti,Zentralschweiz und T,Switzerland,
2286133,HB9ODK,Manuel Donati,Melindo,Pianezzo,Zentralschweiz und T,Switzerland,
+2286134,HB9TSI,Andre Rieser,Andre,Goeschenen,Zentralschweiz und T,Switzerland,
+2286135,HB9EWZ,Philipp Wilhelm,Philipp,Luzern,Zentralschweiz und T,Switzerland,
+2286136,HB9EHW,Gabriele Della Casa,Gabriele,San Pietro di Stabio,Zentralschweiz und T,Switzerland,
2287001,HB9FPO,Stefano ,Stefano,Poschiavo,Graubuenden,Switzerland,
2287002,HB9HAN,Roland Peter,Roland,Sargans,Graubuenden,Switzerland,
2287003,HB9FPO,Stefano Foppoli,Stefano,Poschiavo,Graubuenden,Switzerland,
@@ -7921,6 +8322,7 @@ 2288157,HB3YDP,Mike Patthey,Mike,Oberglatt,Zuerich und Thurgau,Switzerland,
2288158,HB9LDA,Hansjoerg Bachmann,Hansjoerg,Bauma,Zuerich und Thurgau,Switzerland,
2288159,HB9JNH,Markus Zimmermann,Markus,Aadorf,Zuerich und Thurgau,Switzerland,
+2288160,HB9PPN,Hansjoerg Gass,Hansjoerg,Sirnach,Zuerich und Thurgau,Switzerland,
2288542,HB9ANF,Hans-Joerg Spring,Hans-Joerg,Wiesendangen,Zuerich und Thurgau,Switzerland,
2288822,HB9SDB,Rolf Tschumi,Rolf,Waedenswil,Zuerich und Thurgau,Switzerland,
2288867,HB9BXQ,Renato Schlittler,Renato,Zuerich,Zuerich und Thurgau,Switzerland,
@@ -8015,6 +8417,9 @@ 2301059,OK1JPQ,Tomas Privratsky,Tomas,Praha 4,cnty,Czech Republic,
2301060,OK1DBE,Daniel Cermak,Dan,Hostivice,cnty,Czech Republic,
2301061,OK1OO,Pavel Zelezo,Pavel,Sestajovice,Stredocesky,Czech Republic,
+2301062,OK1PMP,Michal Posekany,Michal,Praha,Hlavni mesto Praha,Czech Republic,
+2301063,OK1AMR,Hugo Merth,Hugo,Prague 10,Hlavni mesto Praha,Czech Republic,
+2301064,OK8GG,Giuseppe Giunti,Joe,Praha,Hlavni mesto Praha,Czech Republic,
2302001,OK8APJ,Torsten Schlegel,Torsten,Marianske Lazne,Karlovy Vary Region,Czech Republic,
2302002,OK1BLG,Peter Krissak,Peter,Rokycany,Plze Region,Czech Republic,
2302003,OK1VHB,Martin Cerny,Martin,Psek,Jihocesky,Czech Republic,
@@ -8042,12 +8447,14 @@ 2303007,OK1PDM,Petr Kunz,Petr,Most,ustu nad Labem Regio,Czech Republic,
2303008,OK1CTM,Pavel Drdlik,Pavel,Litvinov,ustu nad Labem Regio,Czech Republic,
2303009,OK1ITE,Roland Peruth,Roland,Kadae,Ustecky,Czech Republic,
+2303010,OK3NR,Lukas Dlab,Lukas,Roudnice nad Labem,Ustecky,Czech Republic,
2304001,OK1ZOO,Martin Kukla,Martin,Jablonec nad Nisou,Liberecky,Czech Republic,
2304002,OK7US,Miroslav Reznicek,Miroslav,MEZIMESTI,Kralovehradecki,Czech Republic,
2304003,OK1TPG,Vladimir Plestil,Vladimir,Turnov,Liberec Region,Czech Republic,
2304004,OK1TPF,Lubos Palic,Lubos,Turnov,Liberec Region,Czech Republic,
2304005,OK1MAX,Vera Maresova,Vera,Pencin,Liberec Region,Czech Republic,
2304006,OK1TEC,Martin Musil,Martin,Liberec,Liberec Region,Czech Republic,
+2304007,OK1AYR,Jan Vanicky,Jan,Rychnov n.Kn.,Kralovehradecki,Czech Republic,
2305001,OK1MSU,Martin Ustr,Martin,Jevicko,Pardubice Region,Czech Republic,
2305002,OK2MIB,Silvestr Badal,Silvestr,Jaromerice,Pardubice Region,Czech Republic,
2305003,OK1BF,Roman Vanek,Roman,Pardubice,$cnty,Czech Republic,
@@ -8070,7 +8477,7 @@ 2305020,OK9THE,Roman Dusek,Roman,Rosice u Chrasti,Pardubicky,Czech Republic,
2306001,OK2BKR,Jiri ,Jiri,Brno,Jihomoravsky,Czech Republic,Mobile
2306002,OK4PS,Pavel ,,Kromeriz,Zlinsky,Czech Republic,Portable
-2306003,OK4PS,Pavel ,,Kromeriz,Zlinsky,Czech Republic,Mobile
+2306003,OK2MKM,Marcel Zach,Marcel,Kromo,Zlinsky,Czech Republic,Mobile
2306004,OK2IT,Jiri ,Jiri,Brno,Jihomoravsky,Czech Republic,Portable
2306005,OK2ULQ,Petr ,Petr,Brno,Jihomoravsky,Czech Republic,Portable
2306006,OK2PMU,Pavel ,Pavel,Brno,Jihomoravsky,Czech Republic,Portable
@@ -8131,7 +8538,7 @@ 2311003,OM1EI,Marian Nagy,Marian,Bratislava,Bratislavsky,Slovakia,
2311004,OM1ADS,Dusan Sobotka,Dusan,Bratislava,Bratislavsky,Slovakia,
2311005,OM1ALV,Vladimir Janeba,Vladimir,Bratislava,Bratislavsky,Slovakia,
-2311006,OM1QQ,Marcel ,,Bratislava,Bratislavsky,Slovakia,
+2311006,OM1QQ,Marcel Cvacho,Marcel,Bratislava,Bratislavsky,Slovakia,
2312001,OM4TN,Rastislav Opatovsky,Rastislav,Trencianska Turna,Trenun Region,Slovakia,
2312002,OM4AVG,Mojmir Opatovsky,Mojmir,Trencianska Turna,Trenun Region,Slovakia,
2312003,OM4AJO,Juraj Cervenan,Juraj,Trencianska Turna,Trenun Region,Slovakia,
@@ -8149,6 +8556,8 @@ 2313007,OM3WAN,Alojz Benko,Alojz,Brodno,ilina Region,Slovakia,
2313008,OM3WIM,Vladislav Heczko,Vlado,Zilina,ilina Region,Slovakia,
2313009,OM7AJK,Gejza Steinhuebel,Gejza,Zvolen,Banskobystricky,Slovakia,
+2313010,OM6ACB,Ivan Marcieik,Ivan,KoiNany nad Turcom,Zilinsky,Slovakia,
+2313011,OM7AXT,Peter Javorsky,Tekk,Banska Bystrica,Banskobystricky,Slovakia,
2314001,OM8AIB,Stefan Sabo,Stefan,Kosice,$cnty,Slovakia,
2314002,OM8AKX,Peter Kratochvil,Peter,Kosice,Kosicky,Slovakia,
2314003,OM8KT,Martin Baran,Martin,Kosice,Kosicky,Slovakia,
@@ -8243,6 +8652,7 @@ 2321072,OE1PYA,Peter Koenig,Peter,Wien,Wien,Oesterreich/Austria,
2321073,OE1SPS,Peter Schittelkopf,Peter,Wien,Wien,Oesterreich/Austria,
2321074,OE1LHU,Lukas Huber,Lukas,Wien,Wien,Oesterreich/Austria,
+2321075,OE1KHU,Karl Hengl,Karl,Roetzergasse 44,Wien,Oesterreich/Austria,
2321101,OE1WDS,Wolfgang ,Wolfgang,Wien,Wien,Austria,Partable
2321105,OE1PSW,Stefan ,Stefan,Wien,Wien,Austria,Portable
2321106,OE1MSA,Manfred ,Manfred,Wien,Wien,Austria,Mobile
@@ -8313,6 +8723,7 @@ 2322011,OE2JHN,Johann Neulinger,Hannes,Salzburg,Salzburg,Oesterreich/Austria,
2322012,OE2FKM,Manfred Krahbichler,Manfred,Maishofen,Salzburg,Oesterreich/Austria,
2322013,OE2HPO,Hubert Ploderer,Hubert,Bad Gastein,Salzburg,Oesterreich/Austria,
+2322014,OE2HPO,Hubert Ploderer,Hubert,Bad Gastein,Salzburg,Oesterreich/Austria,
2323001,OE3OLU,Robert Lang ,,Klosterneuburg,Niederoesterreich,Austria,Portable#1
2323002,OE3OLU,Robert ,Robert,Klosterneuburg,Niederoesterreich,Austria,Portable#2
2323003,OE3RGB,Rainer ,Rainer,Heidenreichstein,Niederoesterreich,Austria,
@@ -8409,6 +8820,7 @@ 2323094,OE3JJS,Josef Jahn,Josef,Boeheimkirchen,Niederoesterreich,Oesterreich/Austria,
2323095,OE3LOA,Andreas Loetsch,Andreas,Berndorf,Niederoesterreich,Oesterreich/Austria,
2323096,OE3MBU,Marcus Bednar,Marcus,Langenzersdorf,Niederoesterreich,Oesterreich/Austria,
+2323097,OE3VSW,Wolfgang Schnelzer,Wolfgang,Wiener Neustadt,Niederoesterreich,Oesterreich/Austria,
2323101,OE3GRU,Gerhard ,Gerhard,Guenselsdorf,Niederoesterreich,Austria,Portable
2323102,OE3BOB,Robert ,Robert,Baden,Niederoesterreich,Austria,Portable
2323103,OE3EHS,Ernst ,Ernst,Enzesfeld,Niederoesterreich,Austria,Portable
@@ -8544,6 +8956,8 @@ 2325040,OE5RCA,Rudolf Curik Dr.,Rudolf,Linz / Donau,Oberoesterreich,Oesterreich/Austria,
2325041,OE5TGM,Georg Thurner,Georg,St. Marienkirchen,Oberoesterreich,Oesterreich/Austria,
2325042,OE5XSN,Rainer Weninger,Rainer,Bad Leonfelden,Oberoesterreich,Oesterreich/Austria,
+2325043,OE5GNB,Franz Gruber,Franz,Waldhausen im Strude,Oberoesterreich,Oesterreich/Austria,
+2325044,OE5LBO,Bogoljub Lazarevic,Bogo,Braunau am Inn,Oberoesterreich,Oesterreich/Austria,
2325051,OE5PFM,Patrik ,Patrik,Sipbachzell,Oberoesterreich,Austria,Portable
2325053,OE5TTL,Johann ,Johann,Linz,Oberoesterreich,Austria,Portable
2325055,OE5ROM,Robert ,Robert,Kirchschlag/Linz,Oberoesterreich,Austria,
@@ -8734,6 +9148,8 @@ 2327092,OE7EAJ,Reinhart Walter,Reini,Schwaz,Tirol,Oesterreich/Austria,
2327093,OE7XTR,Michael Koller,Michael,Landeck,Tirol,Oesterreich/Austria,
2327094,OE7LMT,Hans Stoeckl,Hans,Hippach,Tirol,Oesterreich/Austria,
+2327095,OE7DXT,Gernot Hoertnagl,Gernot,Landeck,Tirol,Oesterreich/Austria,
+2327096,OE7HPJ,Stefan Leo,Stefan,Mayrhofen,Tirol,Oesterreich/Austria,
2327101,OE7ANH,Alois ,Alois,Wiesing,Tirol,Austria,Portable
2327102,OE7ANH,Alois ,Alois,Wiesing,Tirol,Austria,Mobile
2327141,OE7ERJ,Erwin ,Erwin,Zams,Tirol,Austria,Portable
@@ -8864,7 +9280,10 @@ 2329055,OE9VMR,Markus Riedesser,Markus,Bregenz,Vorarlberg,Oesterreich/Austria,
2329056,OE9DEV,Dominique Eberle,Dominique,Lauterach,Vorarlberg,Oesterreich/Austria,
2329057,OE9TNT,Wilfried Mollina,OE9TNT,Bregenz,Vorarlberg,Oesterreich/Austria,
-2341001,M0ADI,Iain Philipps,Iain,Bourne,England,United Kingdom,
+2329058,OE9SBV,Samuel Blessing,Samuel,Dornbirn,Vorarlberg,Oesterreich/Austria,
+2340000,G8SJP,Iain Philipps,Iain,Aylesbury,,United Kingdom,
+2340001,G8SJP,Iain ,Iain,Aylesbury,,United Kingdom,
+2341001,G0RDI,Iain Philipps,Iain,Bourne,England,United Kingdom,
2341002,G4NEY,Jonathan Jarvis,Jonathan,Cambridge,England,United Kingdom,
2341003,M6NAE,NEIL RYDINGS,NEIL,Manchester,England,United Kingdom,
2341004,G4RQG,Steve Baggaley,Steve,Stoke On Trent,England,United Kingdom,
@@ -10193,6 +10612,7 @@ 2342327,G7NPW,Dominic Caulton,Dom,Derby,England,United Kingdom,
2342328,G1LVH,Davy Barnett,Speedy-Diesel,Newark,England,United Kingdom,
2342329,G1BQQ,John Sowerbutts,John,Accrington,England,United Kingdom,
+2342330,M6JXK,John Kelly,John,Birmingham,England,United Kingdom,
2342331,G0NMY,Mark Longson,G0NMY,Stoke-on-Trent,England,United Kingdom,
2342332,M3BDL,Stephen Knock,Stephen,Ipswich,England,United Kingdom,
2342333,G8NSD,Frank Taylor,Frank,Chesterfield,England,United Kingdom,
@@ -10356,17 +10776,17 @@ 2342491,MB6INW,Frank Taylor,Frank,North Wingfield,England,United Kingdom,
2342492,M0WBK,Wayne Knapp,Wayne,Shoeburyness,England,United Kingdom,
2342493,M0HZQ,Grzegorz Maciejewski,Greg,London,England,United Kingdom,
-2342494,2E0DQD,Paul ,,Dewsbury,England,United Kingdom,
+2342494,2E0DQD,Paul DRIVER,Paul,Dewsbury,England,United Kingdom,
2342495,2E0ELW,Elwyn York,Elwyn,Coventry,England,United Kingdom,
2342496,G6MNB,Mark Bulmer,G6MNB,Hale, Cheshire,England,United Kingdom,
2342497,G0RNB,Neil Brooks,Wappy,Sheffield,England,United Kingdom,
-2342498,G7HID,Mike ,,Slough,England,United Kingdom,
+2342498,G7HID,Mike Burgess,G7HID,Slough,England,United Kingdom,
2342499,M6RNZ,Richard Baldwin,Ghostwarrior,Essex,England,United Kingdom,
2342500,G6BRH,Melvin Kendall,BADARS,Braintree,England,United Kingdom,
2342501,M6HGR,Steven Yardley,Stizz,Manchester,England,United Kingdom,
2342502,G7CKX,Martin Steele,MartinS,Stoke On Trent,England,United Kingdom,
2342503,M3GFO,NIGEL FOX,NIDGE,DONCASTER,England,United Kingdom,
-2342504,2E0XVX,Mick ,,Market Harborough,England,United Kingdom,
+2342504,2E0XVX,Mick Lawrence,Mick,Market Harborough,England,United Kingdom,
2342505,MB6PF,Paul Foster Foster,Paul Foster,Liverpool,England,United Kingdom,
2342506,G0HPZ,Frank Derbyshire,Biker,Oldham,England,United Kingdom,
2342507,G7DNT,Keith Handscombe,Keith,Ipswich,England,United Kingdom,
@@ -10437,24 +10857,24 @@ 2342572,M3JUX,Clifford Quilter,Clifford,London,England,United Kingdom,
2342573,G0VHT,Paul Morrison,Paul,Windsor,England,United Kingdom,
2342574,G4HLF,Paul Westwell,G4HLF,Bracknell,England,United Kingdom,
-2342575,2E0TSP,Rob ,,Coventry,England,United Kingdom,
-2342576,G0TNC,George ,,Sittingbourne,England,United Kingdom,
+2342575,2E0TSP,Rob Connolly,Rob,Coventry,England,United Kingdom,
+2342576,G0TNC,George Stephenson,G0TNC,Sittingbourne,England,United Kingdom,
2342577,G7BRV,Mark Hackett,Mark,Bognor Regis,England,United Kingdom,
2342578,M1BWN,STEVE JARRETT,STEVE,CHELMSFORD,England,United Kingdom,
2342579,2E1MPC,Michael Clewes,Michael,Stoke on trent,England,United Kingdom,
2342580,M0OYG,Brian Nuttall,Brian,Blackpool,England,United Kingdom,
2342581,G4BUD,Barry Underwood,Baz,Warwick,England,United Kingdom,
-2342582,2E0ONV,John ,John,Minehead,England,United Kingdom,
+2342582,2E0ONV,John Bonar,John,Minehead,England,United Kingdom,
2342583,M3EEY,Chris Hall,Chris,Leeds,England,United Kingdom,
2342584,G0IBD,Dave Ball,Dave,Dudley,England,United Kingdom,
2342585,2E0ZPM,Christopher Williams,Christopher,Southam,England,United Kingdom,
2342586,G6AIO,Philip Hillier,Phil,Norwich,England,United Kingdom,
2342587,G0MDV,Mark Bellas,Mark,Penrith,England,United Kingdom,
-2342588,G1FGB,Colin ,,Wokingham,England,United Kingdom,
-2342589,G7VRI,Jon ,,Glossop,England,United Kingdom,
+2342588,G1FGB,Colin Brown,Colin,Wokingham,England,United Kingdom,
+2342589,G7VRI,Jon Spriggs,Jon,Glossop,England,United Kingdom,
2342590,G2DGB,George Short,George,Dorchester,England,United Kingdom,
2342591,M6TRW,Tom Wheatley,Tractor tom,Nottinghamshire,England,United Kingdom,
-2342592,G0BGD,Craig ,,March,England,United Kingdom,
+2342592,G0BGD,Craig Joly,CJ,March,England,United Kingdom,
2342593,G4CKS,DAVID FITZGERALD,DAVID,London,England,United Kingdom,
2342594,G0TNC,George Stephenson,G0TNC,Sittingbourne,England,United Kingdom,
2342595,G7RXG,Ken Butterfield,Ken,Derby,England,United Kingdom,
@@ -10463,36 +10883,37 @@ 2342598,M6ENS,DAVID SPENCER,SPENNY,NELSON,England,United Kingdom,
2342599,2E0CQN,Barry Mcglynn,Baz349,Keighley,England,United Kingdom,
2342600,G1TYV,Martin Hallard,Martin,Dudley,England,United Kingdom,
-2342601,G7SRI,Maurice Lowe,MLo,North Leverton,England,United Kingdom,
-2342602,G4OHB,Paul ,,Halesowen,England,United Kingdom,
+2342601,G7SRI,Geoff Lowe,Geoff,North Leverton,England,United Kingdom,
+2342602,G4OHB,Paul Taylor,Paul,Halesowen,England,United Kingdom,
2342603,M6MQL,Michael Boyle,Boylie,Middlesbrough,England,United Kingdom,
2342604,G4HDU,Barry Keal,Barry,Maghull,England,United Kingdom,
2342605,M0NCN,Michael Gillingham,Mike,Sheffield,England,United Kingdom,
2342606,M0RJE,Ray Edwards,Ray,Ruislip,England,United Kingdom,
-2342607,MB6IAL,Graham ,,Alnmouth,England,United Kingdom,
+2342607,MB6IAL,Graham Temple,MB6IAL,Alnmouth,England,United Kingdom,
2342608,M6PIV,Stephane Urdy,Stef,Harrogate,England,United Kingdom,
2342609,MB6BH,R Langton,MB6BH,Birkenhead,England,United Kingdom,
2342610,G8AQH,Rodney Hine,Rod,Bradford,England,United Kingdom,
2342611,G0UTN,Steve Harrison,Steve,Nottingham,England,United Kingdom,
2342612,M6BFT,Philip Keirl,Philip,Wakefield,England,United Kingdom,
2342613,G7VZE,Padraic Cunniffe,Padraic,Harrow,England,United Kingdom,
-2342614,G7PDZ,Peter ,,Newark,England,United Kingdom,
-2342615,G8DXV,Howard ,,Brentwood,England,United Kingdom,
+2342614,G7PDZ,Peter Balm,Shaggy,Newark,England,United Kingdom,
+2342615,G8DXV,Howard King,Engineer,Brentwood,England,United Kingdom,
2342616,2E1SKY,Paul Staerck,SKY,Worksop,England,United Kingdom,
-2342617,2E0TKI,Roy ,,Walsaw,England,United Kingdom,
+2342617,2E0TKI,Roy Baines,2E0TKI,Walsaw,England,United Kingdom,
2342618,G6BD,Martin Farmer,Martin,Lincoln,England,United Kingdom,
2342619,G1WVS,Peter Gibson,Gibby,Daventry,England,United Kingdom,
-2342620,G0VRL,Paul ,,Hayling Island,England,United Kingdom,
+2342620,G0VRL,Paul Saunders,Paul,Hayling Island,England,United Kingdom,
2342621,M5ZAP,Andrew Morgan,Andy,Coventry,England,United Kingdom,
2342622,G7FSC,Keith John Davis,Keith John,Nuneaton,England,United Kingdom,
-2342623,G4YYB,Ernest ,,Hindley,England,United Kingdom,
+2342623,G4YYB,Ernest Holme,G4YYB Ernie,Hindley,England,United Kingdom,
2342624,G1ONV,Robert Bonar,Bob,Minehead,England,United Kingdom,
2342625,M0EBX,Matt Tween,Matt,Haslemere,England,United Kingdom,
2342626,G6VOV,Richard Leavold,Richard,North Walsham,England,United Kingdom,
-2342627,M6SLQ,Dale ,,Cashalton,England,United Kingdom,
-2342628,M3NYK,Kurt ,,Bognor,England,United Kingdom,
+2342627,M6SLQ,Dale McMurray,DaleMcM,Cashalton,England,United Kingdom,
+2342628,M3NYK,Kurt Nye,Kurt,Bognor,England,United Kingdom,
2342629,G4HZN,Terence Lockwood,Terry,Doncaster,England,United Kingdom,
-2342630,M3EOG,Carlson ,,Grimsby,England,United Kingdom,
+2342630,M3EOG,Carlson Flynn,Carlson,Grimsby,England,United Kingdom,
+2342631,G7OBY,Dave Burrows,Dave,Pickenham,England,United Kingdom,
2342632,M0GWI,Stephen Hill,Stephen,St Leonards on Sea,England,United Kingdom,
2342633,2E1PAW,Paul Woodward,Woody,Essex,England,United Kingdom,
2342634,2E1WEB,Christopher WEBB,Christopher,Cambridge,England,United Kingdom,
@@ -10506,13 +10927,17 @@ 2342642,M6FWV,Roger Sage,Kernow rog,Hayle,England,United Kingdom,
2342643,2E0AAI,David Simmons,Blakey37,Cofton Hackett,England,United Kingdom,
2342644,2E0RRC,Richard Wilson,Dave Wilson,Coventry,England,United Kingdom,
+2342645,M0TDC,Robert Stevenson,Bob,CREWE,England,United Kingdom,
2342646,M3ZND,Steven Hunter,Hunter0161,Manchester,England,United Kingdom,
2342647,2E0KMK,Keith Key,Keith,Nottingham,England,United Kingdom,
2342648,G6SPC,Mark Challis,Landy,Cambridge,England,United Kingdom,
2342649,M0BOX,Simone Wilson,BOX,Cambridge,England,United Kingdom,
2342650,G0DUU,Christopher Banks,Christopher,Bristol,England,United Kingdom,
+2342651,G1IVL,Richard Hudson,Richard,Worcester,England,United Kingdom,
+2342652,G7UDP,Ricky Taylor,Ricky,Hingham,England,United Kingdom,
2342653,G6LGR,Alan Picot,Alanp,Orpington,England,United Kingdom,
2342654,M1TLK,Robert Sanderson,Andy,Milton Keynes,England,United Kingdom,
+2342655,MB6IPP,Paul Price,Paul,Cheddar,England,United Kingdom,
2342656,G1KHH,Harry Mosley,Harry,Nottingham,England,United Kingdom,
2342657,G6PRL,DENNIS BROWN,HOVIS,CAMBRIDGESHIRE,England,United Kingdom,
2342658,M6LYY,Andy Allgood,Andy,Chatteris,England,United Kingdom,
@@ -10522,13 +10947,15 @@ 2342662,M0CNL,Paul Glover,M0CNL,Clacton on sea,England,United Kingdom,
2342663,M6WYX,Neil Soane,Neil S,Burgess Hill,England,United Kingdom,
2342664,G4EHN,Julian Axe,Julian,London,England,United Kingdom,
-2342665,M6NBP,Norman ,,Brighton,England,United Kingdom,
+2342665,M6NBP,Norman Williams,Norman,Brighton,England,United Kingdom,
2342666,G7DSU,Chris Tong,Chris,ROCHESTER,England,United Kingdom,
2342667,G0USL,Mark Orchard,BlueGoblin,Cheltenham,England,United Kingdom,
+2342668,2E0SEY,Jake Mottram,Jake,Nantwich,England,United Kingdom,
2342669,G8JGU,Raymond Hallam,Ray,Wigan,England,United Kingdom,
2342670,G0PJO,Martin Waller,Martin,Ipswich,England,United Kingdom,
2342671,M6GTE,Graham Tomkns,Tommo,Orpington,England,United Kingdom,
2342672,M6CRE,Cyril Etches,Cyril,Boston,England,United Kingdom,
+2342673,M6PBR,Keith Butt,Keith,Southampton,England,United Kingdom,
2342674,M6LMT,Gary Wilson,Gary,London,England,United Kingdom,
2342675,G7EQM,Nick Buckley,Nick,Banbury,England,United Kingdom,
2342676,M1AJB,Alex Bloor,Alex,Westerham,England,United Kingdom,
@@ -10545,32 +10972,86 @@ 2342687,M3HQG,Richard Coates,RichC,Birmingham,England,United Kingdom,
2342688,2E1EXP,Catherine Staerck,Cath,Worksop,England,United Kingdom,
2342689,G7THI,Frank Gillespie,Frank,Appleby,England,United Kingdom,
-2342690,G7RZU,Simon ,,Worthing,England,United Kingdom,
-2342691,2E0VTT,John ,,Bristol,England,United Kingdom,
-2342692,G6IBQ,Stephen ,,Lincoln,England,United Kingdom,
-2342693,G4FCN,Colin ,,Ipplepen,England,United Kingdom,
-2342696,G4KXG,Ken ,,Kettering,England,United Kingdom,
-2342697,G0CBM,Charles ,,Sutton on Sea,England,United Kingdom,
-2342698,G1IVG,Colin ,,Market Harborough,England,United Kingdom,
-2342699,2E0BXF,Peter ,,Hatfield,England,United Kingdom,
-2342700,M0BHN,Paul ,,Wolverhampton,England,United Kingdom,
-2342701,G2TO,James ,,Bury St Edmunds,England,United Kingdom,
-2342702,2E0CTO,James ,,Walkeringham,England,United Kingdom,
-2342703,2E1COD,BRIAN ,,OTLEY,England,United Kingdom,
-2342704,M6ERW,Ian ,,Chorley,England,United Kingdom,
-2342705,M0HOW,Daniel ,,Rye,England,United Kingdom,
-2342706,M6CIN,Robert ,,West Butterwick,England,United Kingdom,
-2342707,M6AUY,Mark ,,London,England,United Kingdom,
-2342708,G1IHL,Steve ,,Bristol,England,United Kingdom,
-2342709,M6EXH,Dan ,,Coventry,England,United Kingdom,
-2342710,M6LIP,Steven ,,BRIERLEY HILL,England,United Kingdom,
-2342711,G0HND,Anthony ,,High wycombe,England,United Kingdom,
-2342712,G1OAC,Anthony ,,Grimsby,England,United Kingdom,
-2342714,M3OTM,Owen ,,Peterlee,England,United Kingdom,
-2342715,2E0SER,Michelle ,,Suffolk,England,United Kingdom,
-2342716,M6GQR,JOHN ,,Nottingham,England,United Kingdom,
-2342717,G6RFL,Richard ,,Bradford,England,United Kingdom,
-2342718,G8CQH,Peter ,,Birmingham,England,United Kingdom,
+2342690,G7RZU,Simon Adlem,Simon,Worthing,England,United Kingdom,
+2342691,2E0VTT,John Owen,2E0VTT,Bristol,England,United Kingdom,
+2342692,G6IBQ,Stephen Brown,Steve,Lincoln,England,United Kingdom,
+2342693,G4FCN,Colin Coker,Colin,Ipplepen,England,United Kingdom,
+2342694,G4TSN,Jon ,,Nottingham,England,United Kingdom,
+2342696,G4KXG,Ken Jackson,G4kxg,Kettering,England,United Kingdom,
+2342697,G0CBM,Charles Wilkie,Charlie,Sutton on Sea,England,United Kingdom,
+2342698,G1IVG,Colin Lowe,G1IVG,Market Harborough,England,United Kingdom,
+2342699,2E0BXF,Peter Freeman,Toby,Hatfield,England,United Kingdom,
+2342700,M0BHN,Paul Jarvis,Pj,Wolverhampton,England,United Kingdom,
+2342701,G2TO,James Large,BSEARS,Bury St Edmunds,England,United Kingdom,
+2342702,2E0CTO,James Killman,Jim,Walkeringham,England,United Kingdom,
+2342703,2E1COD,BRIAN CALL,BRI,OTLEY,England,United Kingdom,
+2342704,M6ERW,Ian Westby,Ian,Chorley,England,United Kingdom,
+2342705,M0HOW,Daniel Adkin,Danieladkin,Rye,England,United Kingdom,
+2342706,M6CIN,Robert Ridley,Robert,West Butterwick,England,United Kingdom,
+2342707,M6AUY,Mark Stanhope,Thunderchild,London,England,United Kingdom,
+2342708,G1IHL,Steve Hopkins,Steve,Bristol,England,United Kingdom,
+2342709,M6EXH,Dan Phelps,Dan,Coventry,England,United Kingdom,
+2342710,M6LIP,Steven Shakespeare,Flinty,BRIERLEY HILL,England,United Kingdom,
+2342711,G0HND,Anthony Simmonds,Tony,High wycombe,England,United Kingdom,
+2342712,G1OAC,Anthony Mills,Anthony,Grimsby,England,United Kingdom,
+2342714,M3OTM,Owen Morris,M3OTM,Peterlee,England,United Kingdom,
+2342715,2E0SER,Michelle Edmonds,Michelle,Suffolk,England,United Kingdom,
+2342716,M6GQR,JOHN TOWNSEND,NM-17,Nottingham,England,United Kingdom,
+2342717,G6RFL,Richard Rothery,Rico,Bradford,England,United Kingdom,
+2342718,G8CQH,Peter Best,Peter,Birmingham,England,United Kingdom,
+2342719,G4PQA,Wil Tongue,Wil,Kingswinford,England,United Kingdom,
+2342720,M6TQY,James Richards,Jay,Torquay,England,United Kingdom,
+2342721,G0JIW,Michelle Edwards,Mish,St Neots,England,United Kingdom,
+2342722,M0LUI,Andrew Gale,Andy,Ilkley,England,United Kingdom,
+2342723,M0NPN,Christine Gale,Christine,Ilkley,England,United Kingdom,
+2342725,G6BHX,Chris Walker,Chris,Corby,England,United Kingdom,
+2342726,M6HVV,Jonathan Bannister,Jonny,Reading,England,United Kingdom,
+2342727,G8UXX,Keith Brazington,Keith,Tamworth,England,United Kingdom,
+2342728,G6ZKC,David Usher,Dave,Helston,England,United Kingdom,
+2342729,M3UHQ,Lawrie Richardson,Lawrie,Plymouth,England,United Kingdom,
+2342730,2E0TWT,James Colbourne,TK,Wolverhampton,England,United Kingdom,
+2342731,G1ONV,Robert Bonar,Bob,Minehead,England,United Kingdom,
+2342732,2E0ONV,John Bonar,John,Minehead,England,United Kingdom,
+2342733,M0HOB,Garell Brotherhood,Gary,Mansfield,England,United Kingdom,
+2342736,M6ZGP,Mark Harris,Mark,London,England,United Kingdom,
+2342737,G6TNW,Ian Webb,Webbiant,St.Neots,England,United Kingdom,
+2342738,G7KFQ,Nicholas Camp,Nicholas,Newquay,England,United Kingdom,
+2342739,M1EAG,Kevin Asher,Ginge,Derby,England,United Kingdom,
+2342740,M6ODC,Glenn Wellstead,M6ODC,West Moors,England,United Kingdom,
+2342741,M0XRS,Chris Rowan,Chris,Leyland,England,United Kingdom,
+2342742,M0ZMF,Martin Fearn,Martin,Retford,England,United Kingdom,
+2342743,2E0DWU,Andre Edmonds,Andre,Ipswich,England,United Kingdom,
+2342744,G0HDI,Brian Walker,Brian,Southampton,England,United Kingdom,
+2342745,M0WUL,Wullie Stewart,Wullie,UTTOXETER,England,United Kingdom,
+2342746,G0LAT,David Murray,Davym,Peterborough,England,United Kingdom,
+2342747,2E0YJF,David Moran,David,Tavistock,England,United Kingdom,
+2342748,M0YDJ,Darran Jackson,DJ,Manchester,England,United Kingdom,
+2342749,2E0DZY,David Atkins,Dave,Peterborough,England,United Kingdom,
+2342750,2E0JEF,Geoff Gibbs,Geoff,Chemsford,England,United Kingdom,
+2342751,2E0DVK,RICHARD STEELE,Quadrant2005,STOKE-ON-TRENT,England,United Kingdom,
+2342752,G4YGY,Robert Fawke,Rob,Gloucester,England,United Kingdom,
+2342753,2E1FJP,Barry Melling,Barry,Preston,England,United Kingdom,
+2342754,M0NED,Peter Kelly,Nedkelly,Preston,England,United Kingdom,
+2342755,M3YCJ,Violet Powell,Tugboat vi,Banbury,England,United Kingdom,
+2342756,M6GOX,Darren Chadwick,Daz,Manchester,England,United Kingdom,
+2342757,M1DAH,James Saiger,James,Doncaster,England,United Kingdom,
+2342758,2E0DUE,Ian Warnecke,Ian,Margate,England,United Kingdom,
+2342759,G1AAR,Mark West,Clunk,Newhaven,England,United Kingdom,
+2342760,2E0BHS,Neil Tideswell,Neil,Hove,England,United Kingdom,
+2342761,M6OAU,Lee Boylan,Lee B,Liverpool,England,United Kingdom,
+2342762,M5AEH,Colin ,,IPSWICH,England,United Kingdom,
+2342763,M6BEY,Christopher ,,Chorley,England,United Kingdom,
+2342764,MB6IRV,Keith ,,Ravensden,England,United Kingdom,
+2342765,G7WDT,David ,,Northampton,England,United Kingdom,
+2342766,G6ZIM,Anthony ,,Taunton Somerset,England,United Kingdom,
+2342767,M6TVE,Steve ,,Tonbridge,England,United Kingdom,
+2342768,G6TDR,Robert ,,Ilkley,England,United Kingdom,
+2342769,G4OTJ,John ,,Bristol,England,United Kingdom,
+2342770,G0WRT,Paul ,,LEEDS,England,United Kingdom,
+2342771,G0OFY,Eddy ,,Southport,England,United Kingdom,
+2342772,M1EQB,Gerald ,,Bexhill on sea,England,United Kingdom,
+2342773,M6UZZ,David ,,Rotherham,England,United Kingdom,
+2342774,M0WDG,David ,,Walderslade,England,United Kingdom,
2351001,G0PRF,John ,John,Huddersfield,West Yorkshire,United Kingdom,Portable
2351002,G0PRF,John Goodwin ,,Huddersfield,West Yorkshire,United Kingdom,Mobile
2351003,G7LWT,Darren ,Darren,Manchester,North West England,United Kingdom,Portable #1
@@ -10632,7 +11113,7 @@ 2351059,G6VBJ,Peter ,Peter,Woking,Surrey,United Kingdom,Portable#3
2351060,G0OLX,Denis ,Denis,Caterham,Surrey,United Kingdom,Portable
2351061,G0OLX,Denis ,Denis,Caterham,Surrey,United Kingdom,Mobile
-2351062,M3AWY,Jeff ,Jeff,Telford,Oxfordshire,United Kingdom,Portable#1
+2351062,M0JHH,Jeff ,Jeff,Telford,,United Kingdom,Portable#1
2351063,M0TNG,Stu ,Stu,Sheffield,South Yorkshire,United Kingdom,Mobile
2351064,G8WOY,Mike ,Mike,London,Middlesex,United Kingdom,Mobile
2351065,M0CFM,Andrew ,Andrew,Edgware,Middlesex,United Kingdom,Mobile
@@ -10705,7 +11186,7 @@ 2351132,G4CJZ,Tony ,Tony,Alveston,Gloucestershire,United Kingdom,Mobile
2351133,G4CJZ,Tony ,Tony,Alveston,Gloucestershire,United Kingdom,Portable
2351134,M6JKA,Andrew ,Andrew,Halstead,Essex,United Kingdom,Portable
-2351135,M3AWY,Jeff ,Jeff,Telford,Oxfordshire,United Kingdom,Portable#2
+2351135,M0JHH,Jeff ,Jeff,Telford,,United Kingdom,Portable#2
2351136,M6BBT,Mark ,Mark,Huddersfield,West Yorkshire,United Kingdom,Portable
2351137,G0RAS,Vic ,Vic,Aylesbury,Buckinghamshire,United Kingdom,Portable
2351138,G3WIC,Ken ,Ken,Heswall,Merseyside,United Kingdom,Portable
@@ -11118,7 +11599,7 @@ 2351545,G0UKP,Brian Jopson,Brian,Essex,England,United Kingdom,
2351546,2E0CUU,Malcolm Boon,Malcolm,Wickford,England,United Kingdom,
2351547,M3PAU,Paul Laing,Paul,Barrow in Furnees,England,United Kingdom,
-2351548,G2BAR,Barrington Hill,Barrington,Bristol,England,United Kingdom,
+2351548,G2BAR,Barry Hill,Barry,Bristol,,United Kingdom,
2351549,G3ZXX,Dave Boniface,Dave,Somerset,England,United Kingdom,
2351550,G0OID,John Tett,John,Wiltshire,England,United Kingdom,
2351551,G8CYV,Jan Boniface,Jan,Wincanton,England,United Kingdom,
@@ -12594,7 +13075,7 @@ 2353026,MW6XCT,Carl Thornton,Carl,Wrexham,Wales,United Kingdom,
2353027,GW0EZY,Terry Jeacock,Terry,Newtown,Wales,United Kingdom,
2353028,GW8MLA,Philip Richardson,Philip,Llanfechain,Wales,United Kingdom,
-2353029,MW3AWY,Jeff Hoofe,Jeff,Swansea,Wales,United Kingdom,
+2353029,MW0JHH,Jeff Hoofe,Jeff,Swansea,Wales,United Kingdom,
2353030,GW0KAX,Petrie Owen,Petrie,Bridgend,Wales,United Kingdom,
2353031,GW0GVY,Chris Joseph,Chris,Swansea,Wales,United Kingdom,
2353032,MW0ECB,Ken Gaul,Ken,Wrexham,Wales,United Kingdom,
@@ -12793,19 +13274,23 @@ 2353225,GW6UGD,David Pellegrini,Pelledr,Cardiff,Wales,United Kingdom,
2353226,GW1ATZ,Geoff Morris,Contest,Shotton,Wales,United Kingdom,
2353227,MW0WYN,Dulyn Davies,Dul,Blaenau Ffestiniog,Wales,United Kingdom,
-2353228,2W0CDZ,Paul ,,Cardiff,Wales,United Kingdom,
+2353228,2W0CDZ,Paul Gough,Paul,Cardiff,Wales,United Kingdom,
2353229,MC0IBI,Ashley Burns,TAFF VALE ARC,Merthyr tydfil,Wales,United Kingdom,
2353230,MW6EUK,Stephen Taylor,Stevo,Prestatyn,Wales,United Kingdom,
2353231,MW0VTK,John Martin,John,Tal Y Bont,Wales,United Kingdom,
2353232,MW6XGD,Gareth Jukes,Gary,Cardiff,Wales,United Kingdom,
2353233,2W1EPO,Francis Hodge,Stuttera,Rhyl,denbighshire,Wales,United Kingdom,
+2353234,GW7GDH,Garry Jones,Gaz,Gwent,Wales,United Kingdom,
2353235,2W0PJM,Philip Mclaren,Phil,Ruthin,Wales,United Kingdom,
2353236,GW7SSN,Nigel Cole,Nigel,Cwmbran,Wales,United Kingdom,
+2353237,MW3YNK,Gerald Lane,Gerald,Bangor,Wales,United Kingdom,
2353238,MW0DSV,Roland Price,Roland,PEmbroke,Wales,United Kingdom,
2353239,GW0PYN,Charles Rogers,Charles,Rhyl denbighshire,Wales,United Kingdom,
2353240,MW0KEQ,KEVIN MOGFORD,MOGGY,Newport,Wales,United Kingdom,
2353241,MB6BA,Dave Thomas,Dave Thomas,Barry,Wales,United Kingdom,
-2353243,MW0GUK,George ,,Abergavenny,Wales,United Kingdom,
+2353242,MW6NWM,NIKOLAS ,,Pentwynmawr,Wales,United Kingdom,
+2353243,MW0GUK,George Skea,Doc,Abergavenny,Wales,United Kingdom,
+2353244,MW3VJN,Tristan ,,New Castle Emlyn,Wales,United Kingdom,
2354001,MM0MBK,Mark ,Mark,Cairneyhill,Scotland,United Kingdom,Base
2354002,MM0MBK,Mark ,Mark,Cairneyhill,Scotland,United Kingdom,Mobile
2354003,MM0MBK,Mark ,Mark,Cairneyhill,Scotland,United Kingdom,Portable
@@ -12995,7 +13480,9 @@ 2354187,GM7DRY,Stuart Graham,Stuart,Edinburgh,Scotland,United Kingdom,
2354188,MM0OVD,Derek Adamson,Derek,Ardrossan,Scotland,United Kingdom,
2354189,GM4JJJ,David Anderson,GM4JJJ,Dunfermline,Scotland,United Kingdom,
+2354190,MM6EWR,Allan Robson,Buffy,Glasgow,Scotland,United Kingdom,
2354192,MM6HQE,Alasdair McCormick,Ali,Edinburgh,Scotland,United Kingdom,
+2354193,GM4ZMK,Richard Coyle,Rikki,Glasgow,Scotland,United Kingdom,
2354194,GM4YWI,THOMAS ROSS,THOMAS,EDINBURGH,Scotland,United Kingdom,
2354195,GM8DKB,Eric Taynton,Eric,Edinburgh,Scotland,United Kingdom,
2354196,2M0KNY,Kenny Macrae,Kenny,Glasgow,Scotland,United Kingdom,
@@ -13003,6 +13490,8 @@ 2354198,MM0CXA,Andy Burns,Andy,Forfar,Scotland,United Kingdom,
2354199,MM6IPO,Paddy OHara,Paddy,Glasgow,Scotland,United Kingdom,
2354200,MM6CHM,Robert Russell,Cyrus,Glasgow,Scotland,United Kingdom,
+2354201,MM6AHB,Andrew Hearty,Andy,Newmains Wishaw,Scotland,United Kingdom,
+2354202,MM6JAW,John White,Johnny,East Kilbride,Scotland,United Kingdom,
2355001,MI3WWF,Mark ,Mark,Bangor,Northern Ireland,United Kingdom,
2355002,GI8VKA,Roy Coulter,Roy,Ballynure,Northern Ireland,United Kingdom,
2355003,MI0AAZ,John Anderson,John,Kilrea, Coleraine,Northern Ireland,United Kingdom,
@@ -13257,8 +13746,10 @@ 2355252,2I0SJV,Dave Parkinson,Big Dave,Moira,Northern Ireland,United Kingdom,
2355253,MI6HQS,William Mckenna,William,Larne,Northern Ireland,United Kingdom,
2355254,GI4SZW,Michael James Keenan,Seamus GI4SZW,Newry,Northern Ireland,United Kingdom,
+2355255,GI6ZIR,Adrian Duffy,Agrian,Enniskillen,Northern Ireland,United Kingdom,
2355256,GI0UTV,Ian Ross,Ian,Belfast,Northern Ireland,United Kingdom,
-2355258,GI6MTL,Mervyn ,,Craigavon,Northern Ireland,United Kingdom,
+2355258,GI6MTL,Mervyn McCutcheon,Merv,Craigavon,Northern Ireland,United Kingdom,
+2355259,MI6WMN,William Mcmullen,Willie,Newry,Northern Ireland,United Kingdom,
2356001,GD6XHG,Ed ,Ed,Douglas,Isle of Man,United Kingdom,Portable#1
2356002,GD6XHG,Ed ,Ed,Douglas,Isle of Man,United Kingdom,Portable#2
2356003,GD0NFN,John Butler,John,Isle of Man,Isle of Man,United Kingdom,
@@ -13369,7 +13860,8 @@ 2381075,OZ3DVM,Ole Andersen,Ole,Aalborg st,Nordjylland,Denmark,
2381076,OZ1FSI,Jens Groenfeldt,Greenbean,Frederikshavn,Nordjylland,Denmark,
2381077,OZ5PZ,Poul Rosenbeck,Poul,Nibe,Nordjylland,Denmark,
-2381078,OZ2JHT,Jens ,,Aalestrup,Nordjylland,Denmark,
+2381078,OZ2JHT,Jens Thomsen,Jens,Aalestrup,Nordjylland,Denmark,
+2381079,OZ7YD,Thorvald Jespersen,Thorvald,Hurup,Nordjylland,Denmark,
2382001,OZ6C,Kim ,Kim,Silkeborg,Midtjylland,Denmark,
2382002,OZ1JN,Jesper ,Jesper,Aarhus,Midtjylland,Denmark,
2382003,OZ3HP,Hardy ,Hardy,Aarhus,Midtjylland,Denmark,
@@ -13471,7 +13963,7 @@ 2382099,OZ1FOJ,Hans Jensen,Hans,Holstebro,Midtjylland,Denmark,
2382100,OZ3KTE,Kim Espersen,Kim silkeborg,Silkeborg,Midtjylland,Denmark,
2382101,OZ3FTE,Finn Espersen,Oz3fte finn,Silkeborg,Midtjylland,Denmark,
-2382102,OZ3AGJ,Per ,,Viborg,Midtjylland,Denmark,
+2382102,OZ3AGJ,Per Schou,Per,Viborg,Midtjylland,Denmark,
2383001,OZ1BM,Brian ,Brian,Odense,Syddanmark,Denmark,Portable
2383002,OZ1KFY,Christian ,Christian,Fredericia,Syddanmark,Denmark,
2383003,OZ3DM,Dennis ,Dennis,Haarby,Syddanmark,Denmark,
@@ -13510,7 +14002,7 @@ 2383036,OZ3K,Erik Poulsen,Erik,Snder Stenderup,Syddanmark,Denmark,
2383037,OZ1IOM,Allan Thorsen,Allan,Blaavand,Syddanmark,Denmark,
2383038,OZ9DG,Dan Gregersen,Dan,Fredericia,Syddanmark,Denmark,
-2383039,OZ6HQ,Per Rosselt,Per,Middelfart,Syddanmark,Denmark,
+2383039,OZ6HQ,Per Posselt,Per,Middelfart,Syddanmark,Denmark,
2383040,OZ1MSJ,Mark Jaegum,Mark,Odense,Syddanmark,Denmark,
2383041,OZ1KAA,Ivan Kjaer,Ivan,Odense N,Syddanmark,Denmark,
2383042,OZ1HGV,Michael Bigum,Michael,Esbjerg,Syddanmark,Denmark,
@@ -13614,14 +14106,16 @@ 2383140,OZ8JBN,Joan Byg Nissen,OZ8JBN,Haderslev,Syddanmark,Denmark,
2383141,OV9X,Lars Nissen,Lars,Haderslev,Syddanmark,Denmark,
2383142,OZ5CQ,Jacob Bosted,OZ5CQ,Odense,Syddanmark,Denmark,
-2383143,OZ6HQ,Per Rosselt,Per,Middelfart,Syddanmark,Denmark,
+2383143,OZ6HQ,Per Posselt,Per,Middelfart,Syddanmark,Denmark,
2383144,OZ1SEB,Svend-Erik Buch,Svend-Erik,Middelfart,Syddanmark,Denmark,
2383145,OZ7FOC,Niels Rask,Niels,Nyborg,Syddanmark,Denmark,
2383146,OZ1LXW,Benny Kronborg,OZ1LXW,Kvrndrup,Syddanmark,Denmark,
-2383147,OZ2LGD,Blondie ,,Vejle,Syddanmark,Denmark,
+2383147,OZ2LGD,Blondie Kluge,Oz2lgd,Vejle,Syddanmark,Denmark,
2383148,OZ4TE,Frank Tom Henriksen,Frank,Bogense,Syddanmark,Denmark,
2383149,OZ8OL,Ove Lundvald,Ove,Tommerup St.,Syddanmark,Denmark,
-2383150,OZ5ACC,Hans-Peter ,,Esbjerg,Syddanmark,Denmark,
+2383150,OZ5ACC,Hans-Peter Hansen,Hans-Peter,Esbjerg,Syddanmark,Denmark,
+2383151,OZ1JUX,Kim Wind,Kim,Jelling,Syddanmark,Denmark,
+2383152,OZ5AFM,Kurt Hansen,Kurt,Otterup,Syddanmark,Denmark,
2384001,OZ3MAJ,Martin ,Martin,Herlev,Hovestaden,Denmark,Portable
2384002,OZ3MAJ,Martin ,Martin,Herlev,Hovestaden,Denmark,Mobile
2384003,OZ1BZJ,Michael ,Michael,Sengeloese,Hovestaden,Denmark,Portable
@@ -13839,6 +14333,8 @@ 2384215,OZ7R,Jens Krogh,Jensk,Kbenhavn,Hovedstaden,Denmark,
2384216,OZ1LET,Bo Weiland,Bo,Jaegerspris,Hovedstaden,Denmark,
2384217,OZ13JK,Torben Brandstrup,TBP,Kbenhavn S,Hovedstaden,Denmark,
+2384218,OZ5AGQ,Preben Andersen,Prebsi,Stenloese,Hovedstaden,Denmark,
+2384219,OZ5ABO,Per Brix,Per,Rungsted Kyst,Hovedstaden,Denmark,
2384400,OZ3MAJ,Martin ,,Herlev,Hovedstaden,Denmark,
2384444,OZ0GC,Gifted Children DK,Gifted Children,Hvidovre,Hovedstaden,Denmark,
2384500,OZ1HWN,Einar T,Einar,Alleroed,Hovedstaden,Denmark,
@@ -14001,9 +14497,10 @@ 2385155,OZ3AGR,Ronni Pradid,Ronni,Eskebjerg,Sjaelland,Denmark,
2385156,OZ1CBW,Peter Andreasen,Peter,Stenloese,Sjaelland,Denmark,
2385157,OZ2SL,Steen Lundsteen,Steen,Ringsted,Sjaelland,Denmark,
+2385158,OZ6LTL,Hjalte Magnussen,Hjalte,Vanlse,Sjaelland,Denmark,
2385159,OZ1IOA,Knud Nielsen,Oz1ioa,Vemmelev,Sjaelland,Denmark,
2385160,OZ1GZZ,Soeren Thornberg Petersen,Soeren,Aalsgaarde,Sjaelland,Denmark,
-2385161,OZ4WOK,Frank ,,Tune,Sjaelland,Denmark,
+2385161,OZ4WOK,Frank Leipold,Frank,Tune,Sjaelland,Denmark,
2385555,OZ3BB,Mogens Johansson,Mogens,Roedby,Sjaelland,Denmark,
2385999,5Q5XX,Hans ,,Nyk Sj,Sjaelland,Denmark,
2388888,CBRIDGE,CBridgeOZTest Parrot,CBrigdeOZ,Vig,Sjaelland,Denmark,
@@ -14211,9 +14708,10 @@ 2400202,SM0VXI,Tobias Wallin,SM0VXI,STOCKHOLM,Stockholm City-A,Sweden,
2400203,SA0MBA,Mathias Anefelt,SA0MBA,Taeby,Stockholm City-A,Sweden,
2400204,SM0YXI,Robert Lind,Rhl,Skogas,New York,Sweden,
-2400205,SG0RPF,Uffe ,,Sigtuna,Stockholm Laen-B,Sweden,
-2400206,SA0FBR,Fredrik ,,Stockholm,Stockholm City-A,Sweden,
-2400207,SM0JZT,Tilman ,,Kungsaengen,cnty,Sweden,
+2400205,SG0RPF,Uffe ...,Uffe,Sigtuna,Stockholm Laen-B,Sweden,
+2400206,SA0FBR,Fredrik Brask,SA0FBR,Stockholm,Stockholm City-A,Sweden,
+2400207,SM0JZT,Tilman Thulesius,SM0JZT,Kungsaengen,cnty,Sweden,
+2400208,SM0OFV,Jan Andersson,Janne,Solna,Stockholm County,Sweden,
2401001,SM6UDU,Marcus ,,Uddevalla,Gotland-I,Sweden,
2402001,SA2CMY,Tomas Isaksson,Tomas,Lulea,Norrbotten,Sweden,
2402002,SA2BNO,Peter Larsson,Peter,Kiruna,Norrbotten County,Sweden,
@@ -14243,7 +14741,7 @@ 2402026,SA2CIR,Rickard Garvare,SA2CIR,Gammelstad,Norrbottens laen,Sweden,
2402027,SM2GCQ,Bert Larsson,SM2GCQ,LuleN,Norrbotten County,Sweden,
2402028,SA2BBU,Ulf Johansson,SA2BBU,Nordmaling,Vaesterbotten County,Sweden,
-2402029,SM2EJE,Sigvard ,,Kalix,Norrbotten-BD,Sweden,
+2402029,SM2EJE,Sigvard Haapalahti,Sigvard,Kalix,Norrbotten-BD,Sweden,
2403001,SM3XZF,Fredrik ,Fredrik,Kilafors,Gaevleborg County,Sweden,
2403002,SA3BDE,Martin Starkman,Martin,Bollnas,Gavleborg County,Sweden,
2403003,SA3BPE,Henrik Persson,Henrik,Hudiksvall,Gavleborg County,Sweden,
@@ -14327,8 +14825,8 @@ 2403081,SA3BGC,Jan Eliasson,SA3BGC,Oernskoeldsvik,Vaesternorrland-Y,Sweden,
2403082,SA3ARQ,Martin Crowther,SA3ARQ,Gaevle,Gaevleborg-X,Sweden,
2403083,SM3WEO,Michael Jillebo,Micke,Gaevle,Gaevleborg-X,Sweden,
-2403084,SA3ADT,Roland ,,Sundsvall,Vaesternorrland-Y,Sweden,
-2403085,SA3CAT,Owe ,,Kvissleby,Vaesternorrland-Y,Sweden,
+2403084,SA3ADT,Roland Nilsson,Rolle,Sundsvall,Vaesternorrland-Y,Sweden,
+2403085,SA3CAT,Owe Oestberg,Owe,Kvissleby,Vaesternorrland-Y,Sweden,
2404001,SM4XBL,Christopher ,Christopher,Borlange,Dalarnas Laen,Sweden,Portable
2404002,SM4WOA,Claes ,Claes,Borlange,Dalarnas Laen,Sweden,Portable
2404003,SM4WWO,Robert ,Robert,Insjoen,Dalarnas Laen,Sweden,Portable
@@ -14393,7 +14891,8 @@ 2404062,SA4BHE,Johan Ekeheien,Johan,Ludvika,cnty,Sweden,
2404063,SG4OUF,Per Helmfridsson,Per,JP70QM,Koppaberg-W,Sweden,
2404064,SA4MDN,Michael Newbury,Mick,Olshammar,Oerebro-T,Sweden,
-2404065,SM4EPR,Mats ,,Lindesberg,Oerebro-T,Sweden,
+2404065,SM4EPR,Mats Ericson,Mats,Lindesberg,Oerebro-T,Sweden,
+2404066,SG4AXQ,Joachim Olsson,Jocke,SUNNE,Vaermland-S,Sweden,
2405001,SM5OEM,Ronny ,Ronny,Aby,Oestergoetland Laen,Sweden,Portable
2405002,SM5BMK,Anders ,Anders,Torshalla,Soedermanland County,Sweden,
2405003,SM5ULX,Morgan ,Morgan,Eskilstuna,Soedermanland County,Sweden,
@@ -14471,7 +14970,8 @@ 2405075,SM5TGV,Anders Svensson,Anders,Eskilstuna,Soedermanland-D,Sweden,
2405076,SA5SDR,Mikael Kuisma,Kuisma,Uppsala,Uppsala luon,Sweden,
2405077,SA5LKC,Joakim Lind,SA5LKC,KolmNrden,Oestergoetlands laen,Sweden,
-2405078,SG5TAH,Mats ,,Flen,Oestergoetland-E,Sweden,
+2405078,SG5TAH,Mats Ekstroem,Mats,Flen,Oestergoetland-E,Sweden,
+2405079,SE0YOS,Thomas Bostroem,Thomas Bostroem,Stockholm,cnty,Sweden,
2406001,SM6TKT,Claes ,Claes,Boras,Västergötland,Sweden,Portable#1
2406002,SM6TKT,Claes ,Claes,Boras,Västergötland,Sweden,Mobile#1
2406003,SA6BPC,Christian ,Christian,Boras,Västergötland,Sweden,Portable
@@ -14618,7 +15118,9 @@ 2406144,SA6CCZ,Niklas Goeransson,2080,Kungaelv,Goeteborg och Bohus-,Sweden,
2406145,SA6AUO,Joergen Andersson,Joergen,VNrgNrda,Aelvborg-P,Sweden,
2406146,SM6VZU,Mikael Karlander,Mikael,Trollhattan,cnty,Sweden,
-2406147,SA6BXM,Michael ,,Goeteborg,Goeteborg och Bohus-O,Sweden,
+2406147,SA6BXM,Michael Arvidsson,Mike,Goeteborg,Goeteborg och Bohus-,Sweden,
+2406148,SM6WNR,Per Majloef,Per Majloef,Vargarda,Aelvborg-P,Sweden,
+2406149,SM6TJI,Kjell Arturson,Kjell SM6TJI,SimlNngsdalen,cnty,Sweden,
2407001,SM7URN,Patrik ,Patrik,Sölvesborg,Blekinge Laen,Sweden,Portable
2407002,SM7URN,Patrik ,Patrik,Sölvesborg,Blekinge Laen,Sweden,Mobile
2407003,SA7BRM,Robert ,Robert,Malmoe,Skane,Sweden,Portabel
@@ -14808,8 +15310,11 @@ 2407187,SM7MBD,Bengt Erlandsson,Ben,Oxie Malmoe,Malmoehus-M,Sweden,
2407188,SG7IKJ,Ronny Strandh Strandh,Ronny,JO76DJ, Lonsboda,Skune County,Sweden,
2407189,SM7AWE,Leif Holst,SM7AWE,Simrishamn,Malmoehus-M,Sweden,
-2407190,SA7LNK,Kasper ,,Naesum,Kristianstad-L,Sweden,
-2407191,SA7TOR,Tord ,,Ystad,Malmoehus-M,Sweden,
+2407190,SA7LNK,Kasper Myram,Kasper,Naesum,Kristianstad-L,Sweden,
+2407191,SA7TOR,Tord Hallenberg,SA7TOR,Ystad,Malmoehus-M,Sweden,
+2407192,SM7JCR,Roger Johansson,Roger,Naessjoe,Joenkoeping-F,Sweden,
+2407193,SM7YKX,Peter Sjoebergsjoe,Peter,Bara,Sudermanlands luon,Sweden,
+2407194,SM7XSK,Peter ,,Lomma,Malmoehus-M,Sweden,
2420001,LA3RIA,Mushtaq ,Mushtaq,Oslo,Oslo,Norway,
2420002,LA1KP,Oivind ,Oivind,Oslo,Oslo,Norway,
2420003,LA4JL,Per Eftang,Per,Oslo,Oslo,Norway,
@@ -14842,6 +15347,8 @@ 2420030,LA1KP,Oivind Solli,La1kp,Oslo,Oslo,Norway,
2420031,LA9RT,Bent Vangli,LA9RT,Oslo,Oslo,Norway,
2420032,LB3AH,Anders DegNrd,LB3AH,Oslo,Oslo,Norway,
+2420033,LA7URA,Andre Hansen,AH,Oslo,Oslo,Norway,
+2420034,LB2IH,Merete Andersen,Mea,Oslo,Oslo,Norway,
2421001,LA6VMA,Tommy ,Tommy,Dal,Akershus,Norway,
2421002,LA7ZKA,Arve Moller,Arve,Trollasen,Akershus,Norway,
2421003,LA2YUA,Robin Holm,Robin,Strmmen,Akershus,Norway,
@@ -14887,6 +15394,8 @@ 2421043,LA2XNA,Magne Stendan,LA2XNA,Hakadal,Akershus,Norway,
2421044,LB1PG,Lars Foyn Ranheimster,Lars,SterNs,Akershus,Norway,
2421045,LB0KG,Thor Ivar Tandberg Johansen,Thor,Rykkinn,Akershus,Norway,
+2421046,LA9RTA,Roger Olsen,LA9RTA,RYKKINN,Akershus,Norway,
+2421047,LB7PG,Harald ,,Hovik,Akershus,Norway,
2422001,LA3QMA,Kai ,Kai,Bergen,Hordaland,Norway,Portable#1
2422002,LA3QMA,Kai ,Kai,Bergen,Hordaland,Norway,Portable#2
2422003,LA3QMA,Kai ,Kai,Bergen,Hordaland,Norway,Mobile
@@ -14908,6 +15417,7 @@ 2422019,LB0K,Peter Ebsworth,Peter,Steinsland,Hordaland,Norway,
2422020,LA9NKA,Anders Kvalvaag,LA9NKA Anders,Lepsy,Hordaland,Norway,
2422021,LB6WG,Glen Waldron,Kaldevass,Bergen,Hordaland,Norway,
+2422022,LB3SH,Frank robert Solbakk,Lb3sh,TJELDST,Hordaland,Norway,
2423001,LA9XFA,Eivind ,Eivind,Sandnes,Rogaland,Norway,
2423002,LA3JKA,Svein Handeland,Svein,Hundvaag, Stavanger,Rogaland,Norway,
2423003,LA3JKA,Svein Handeland,Svein,Hundvaag, Stavanger,Rogaland,Norway,
@@ -14948,6 +15458,7 @@ 2423038,LA2PIA,Petter Sorensen,Petter,Kvernaland,Rogaland,Norway,
2423039,LA1ONA,Inge Hagen,LA1ONA,Bryne,Rogaland,Norway,
2423040,LA6YMA,Rune Bjorlo,Rune,Jorpeland,Rogaland,Norway,
+2423041,LA3XTA,NjNl ,,HOMMERSaK,Rogaland,Norway,
2424001,LA7TMA,Torstein Olsen,Torstein,Flornes,Nord-Trondelag,Norway,
2424002,LB3AG,Kre Arnfinn Fostad,Kre Arnfinn,Levanger,Nord-Trondelag,Norway,
2424003,LA3KL,Tore Barlindhaug,Tore,Trondheim,Sur-Trundelag,Norway,
@@ -15045,7 +15556,8 @@ 2426068,LA6ETA,Henrik Solhaug,La6eta,Hunndalen,Oppland,Norway,
2426069,LB4GH,Torkell Opedal Wullum,LB4GH,Heidal,Oppland,Norway,
2426070,LB4WD,Thor Anton Torkehagen,Thor Anton,Gjvik,Oppland,Norway,
-2426071,LB1BF,Ebbe ,,Lillehammer,Oppland,Norway,
+2426071,LB1BF,Ebbe Horneman,Lb1bf,Lillehammer,Oppland,Norway,
+2426072,LA6ZFA,Ivar Grnn,Ivar,Lier,Buskerud,Norway,
2427001,LA3VW,Odd Skogjordet,Odd,ARENDAL,Aust-Agder,Norway,
2427002,LA4CSA,Tarjei Lundarvollen,Tarjei,Vinje,Telemark,Norway,
2427003,LA7LW,Ole Andreas Olsen,Ole Andreas,Arendal,Aust-Agder,Norway,
@@ -15061,7 +15573,8 @@ 2427013,LA4KRA,Geir Rosland,Geir,Spangereid,Vest-Agder,Norway,
2427014,LA4XOA,Rune Birketvedt,Rune,Lindesnes,Vest-Agder,Norway,
2427015,LA4YGA,Jerzy Trzcinski,Jurek,Kristiansand,Vest-Agder,Norway,
-2427016,LB7YE,Martin ,,Lillesand,Aust-Agder,Norway,
+2427016,LB7YE,Martin Baanrud,Martin,Lillesand,Aust-Agder,Norway,
+2427017,LA3LUA,Stig Auestad,Stig,Fevik,Aust-Agder,Norway,
2428001,LA9CKA,Tom ,Tom,Sandefjord,Vestfold,Norway,Portable
2428002,LA9CKA,Tom ,Tom,Sandefjord,Vestfold,Norway,Mobile
2428003,LA8UU,Odd ,Odd,Sande,Vestfold,Norway,
@@ -15091,6 +15604,8 @@ 2428027,LA4JNA,Nils Kristoffer Rren,Johan Paa Snippen,Tolvsrd,Vestfold,Norway,
2428028,LA9GN,Tom Arild Magnussen,Arild,Halden,stfold,Norway,
2428029,LB3SA,Are Barstad,Are,Skoppum,Vestfold,Norway,
+2428030,LB6DG,Kjetil Bochelie,Kjetil,Horten,Vestfold,Norway,
+2428031,LA1ILA,Jon Bakken,Jon,Melsomvik,Vestfold,Norway,
2429001,LA5LIA,Steinar Hanssen,Steinar,Sandnessjoen,Nordland,Norway,
2429002,LA1PHA,Tom Arntzen,Tom,Mo i Rana,Nordland,Norway,
2429003,LA5JK,Jan Gunnar Johannessen,Jan Gunnar,Mo i Rana,Nordland,Norway,
@@ -15140,7 +15655,7 @@ 2429047,LA8HSA,Kristoffer Hofstad,Kris,Harstad,Troms,Norway,
2429048,LA8ISA,Jon-yvind Windstad,Jon,Harstad,Troms,Norway,
2429049,LA8DSA,Jon Windstad,Jon,Harstad,Troms,Norway,
-2429050,LA4NL,Svein ,,Harstad,Troms,Norway,
+2429050,LA4NL,Svein Verningsen,Svein,Harstad,Troms,Norway,
2440001,OH0CD,Mikael ,Mikael,Finstrom,Aland Is,Finland,
2440002,OH0KCE,Leif Perjus,Leif,Palsbole,Aland Is,Finland,
2440003,OH0AZX,Roland Danielsson,Roland,Mariehamn,Aland Is,Finland,
@@ -15355,8 +15870,11 @@ 2443081,OH3KRH,Jari Leivo,Jari,Parola,Haeme,Finland,
2443082,OH3FLZ,Tuomas Mikkola,Tuomas,Forssa,Haeme,Finland,
2443083,OH2OP,Olli-Jukka Paloneva,Olli,Hollola,Haeme,Finland,
-2443084,OH3HPV,Keijo ,,Laengelmaeki,Haeme,Finland,
-2443085,OH8HZX,Janne ,,Tampere,Haeme,Finland,
+2443084,OH3HPV,Keijo Pakkanen,Keijo,Laengelmaeki,Haeme,Finland,
+2443085,OH8HZX,Janne Himanka,Shem,Tampere,Haeme,Finland,
+2443086,OH1EZC,Mikko Liukkonen,Lipa,Pirkkala,Haeme,Finland,
+2443087,OH3KWW,Mika Rissanen,Mika,Tampere,Haeme,Finland,
+2443088,OH3HZ,Ari Lehto,Ari,Lahti,Haeme,Finland,
2444001,OH4JP,Juha-Pekka Rantalainen,Juha-Pekka,Mikkeli,Mikkeli,Finland,
2444002,OH4EA,Vesa Kauppinen,Vesa,Naarajaervi,Mikkeli,Finland,
2444003,OH4TK,Tatyana Kauppinen,Tan,Naarajarvi,Mikkeli,Finland,
@@ -15426,6 +15944,8 @@ 2446034,OH6HLH,Hannu Virtanen,Hannuvir,Jaemsae,Keski-Suomi,Finland,
2446035,OH6MWQ,Jukka Pappinen,Jukka,Viitasaari,cnty,Finland,
2446036,OH6WD,Jaakko Pekkarinen,Jaska,Viitasaari,cnty,Finland,
+2446037,OH6JAT,Jouni Lehtonen,Jouni,Jamsa,Keski-Suomi,Finland,
+2446038,OH5GE,Vili ,,Jyvaskyla,Central Finland,Finland,
2447000,OH3HAM,Radio ,Radio,Kuopio,Kuopio,Finland,Club
2447001,OH7EOW,Jani Kontturi,Jands,Joensuu,cnty,Finland,
2447002,OH7KFA,Veini Airaksinen,OH7KFA,TERVO,Kuopio,Finland,
@@ -15474,7 +15994,7 @@ 2448036,OH8KAW,Kai Salo,Kaitsu,OULU,Oulu,Finland,
2448037,OH8KW,Vesa Jaervelaeinen,Vesa,Oulu,Oulu,Finland,
2448038,OH6EZF,Kari Saarela,Kari OH6EZF,Kalajoki,Oulu,Finland,
-2448039,OH8EVG,Petteri ,,Haapajaervi,Oulu,Finland,
+2448039,OH8EVG,Petteri Tiitto,Pete,Haapajaervi,Oulu,Finland,
2449001,OH9LNA,Jari Lammi,Jari,Tornio,Lappi,Finland,
2449002,OH9NGW,Markku Mokko,Markku,Tornio,Lappi,Finland,
2449003,OH9ELA,Jouni Jaakkola,Jones,TORNIO,Lappi,Finland,
@@ -15493,6 +16013,11 @@ 2470009,YL2UI,Egils Ivcenko,Egils,Liepaja,,Latvia,
2470010,YL3HI,Vladislavs Himins,Vladislavs,Riga,,Latvia,
2470011,YL3GIE,Valdis Sunakslis,Valdis,Liepaja,,Latvia,
+2470012,YL3AJK,Jevgenijs Kuznecovs,Jevgenijs,Daugavpils,,Latvia,
+2470013,YL3AIY,Normunds Bisnieks,Normunds,Cesis,,Latvia,
+2470014,YL3DJ,Jurijs Karpilins,Yuri,Riga,,Latvia,
+2470015,YL3CAAA,Nemiro Jurijs,Jurapers,Riga,,Latvia,
+2470016,YL3CAAB,Arsenijs Sarovs,Arsenijs,Cesis,,Latvia,
2480001,ES2AST,Marek Astrik,SiiliOnu,Kose,,Estonia,
2480002,ES1FJR,Ivan Shebanov,Ivan,Tallinn,,Estonia,
2480003,ES1BRD,Dmitri Sinitsa,Dmitri,Tallinn,,Estonia,
@@ -15541,13 +16066,15 @@ 2503034,RU3DVW,Maxim ,Maxim,,,Russia,
2503036,RX3AQG,Sergey ,Sergey,,,Russia,
2503043,RD3ANL,Vladimir ,Vladimir,,,Russia,
-2503049,R3UFM,Ivan ,Ivan,,,Russia,
+2503049,R3UF,Ivan ,Ivan,,,Russia,
2503052,R3UAL,Sergey ,Sergey,,,Russia,
2503053,R3UAE,Dmitry ,Dmitry,,,Russia,
2503056,UA3ARF,Sergey ,Sergey,,,Russia,
2503061,UA3USQ,Andrey ,Andrey,,,Russia,
2503064,RV3ADJ,Anton ,Anton,,,Russia,
2503068,UB3AGT,Artem ,Artem,,,Russia,
+2503070,UC3UAB,Ivan ,Ivan,,,Russia,
+2503071,UA3UTY,Aleksandr ,Aleksandr,,,Russia,
2504002,UD4NAD,Alexey ,Alexey,,,Russia,
2505001,R5DK,Alexey ,Alexey,,,Russia,
2505002,R5ACQ,Kirill ,Kirill,,,Russia,
@@ -15690,6 +16217,7 @@ 2550118,UT3UHV,Roman Borys,Borman,Kyiv,,Ukraine,
2550119,UW5EDP,Pavel Khorishko,Pavel,Dnipro,,Ukraine,
2550120,UX2LX,Oleksandr Logvinov,Alex,Kharkiv,,Ukraine,
+2550121,UR5FKD,Dmitry Goverdovsky,Dmitry,Odessa,,Ukraine,
2570001,EW7AS,Vladimir Zakharchenko,Vladimir,Klimovichi,,,
2570002,EW7AS,Vladimir Zakharchenko,Vladimir,Klimovichi,,Belarus/Belorussia,
2601001,SP1XNE,Maciek ,Maciek,Szczecin,Zachodniopomorskie,Poland,
@@ -15786,6 +16314,7 @@ 2603038,SP3WWV,Ryszard Kwiatkowski,Ryszard,Gorzow Wlkp.,Lubusz Voivodeship,Poland,
2603039,SQ3KKV,Piotr Klimas,Piotr,Sulecin,Lubuskie,Poland,
2603040,SQ3OGO,Arkadiusz Galiski,Arkadiusz,Pozna,Greater Poland Voivo,Poland,
+2603041,SQ3PJN,Henryk Kisly,Henryk,Zielona Gora,Lubuskie,Poland,
2603042,SO3AK,Greg Jung,Greg,Biedrusko,Wielkopolskie,Poland,
2603044,SQ3LVD,Tomasz Zawarty,Tomek,Poznan,Wielkopolskie,Poland,
2603045,SQ8IFI,Krzysztof Przybylski,Krzysztof,Tomaszow Lubelski,Wielkopolskie,Poland,
@@ -15826,6 +16355,7 @@ 2604034,SQ4RSU,Barteomiej Gres,Gryf,Sokeka,Podlaskie,Poland,
2604035,SP4XKB,Konrad Czaplicki,Cezar,Grajewo,Podlaskie,Poland,
2604036,SP4WRZ,Ireneusz Zacharewicz,Irek,Bialowieza,Podlaskie,Poland,
+2604037,SP4RZA,Andrzej Rzepniewski,Andrzej,Bialystok,Podlaskie,Poland,
2605001,SP5GDM,Jan ,Jan,Wierzbica,Mazowieckie,Poland,Portable#1
2605002,SP5GDM,Jan ,Jan,Wierzbica,Mazowieckie,Poland,Portable#2
2605003,SP5GDM,Jan ,Jan,Wierzbica,Mazowieckie,Poland,Mobile
@@ -15968,6 +16498,11 @@ 2605140,SQ5IRI,Grzegorz Golebiewski,Grzegorz,Rzekun,Mazowieckie,Poland,
2605141,SP5TDK,Tadeusz Dymerski,Tadeusz,Kadzidlo,Mazowieckie,Poland,
2605142,SP5IOU,Marcin Boboli,Marcin,Warszawa,Mazowieckie,Poland,
+2605143,SP5DLX,Michal Piorczynski,Michal,Siedlce,Mazowieckie,Poland,
+2605144,SO5M,Michal Piorczynski,Michal,Ozarow Mazowiecki,Mazowieckie,Poland,
+2605146,SP5MET,Tomasz Lemanski,Methyl,Warszawa,Mazowieckie,Poland,
+2605147,SP5SMY,Pawel Gluchowski,Pawel,Siedlce,Mazowieckie,Poland,
+2605148,SQ5SCV,Piotr Milczarek,SQ5SCV,Warsaw,Mazowieckie,Poland,
2606001,SQ6ROK,Andrzej ,Andrzej,Wroclaw,Lower Silesian Voivo,Poland,
2606002,SQ6NCJ,Jacek Diaczek,Jacek,Olawa,Lower Silesian Voivo,Poland,
2606003,SQ6IUB,Kamil Szmajda,Kamil,Opole,Opole Voivodeship,Poland,
@@ -16008,6 +16543,8 @@ 2606038,SQ6POG,Pawel Gomulka,Pawel,Legnica,Dolnoslaskie,Poland,
2606039,SP6VXU,Jacek Dziuban,Jacek,Wroclaw,Lower Silesian Voivo,Poland,
2606040,SQ6LAE,Jarek Koper,Jarek,Legnica,cnty,Poland,
+2606041,SQ6MNN,Michal Krzyszton,SQ6MNN,Komprachcice,Opolskie,Poland,
+2606042,SP6BAT,Bartlomiej Tomczak,Bartek,Wroclaw,Dolnoslaskie,Poland,
2607001,SQ7FKT,Bartek ,Bartek,Lodz,Lodzki,Poland,Portable
2607002,SQ7SCC,Arek ,Arek,Lodz,Lodzki,Poland,
2607003,SQ7LRX,Adam ,Adam,Lodz,Lodzki,Poland,
@@ -16046,6 +16583,8 @@ 2607036,SP7EP,Maciej Herman,Maciej,Piotrkw Trybunalski,Lodzkie,Poland,
2607037,SP7LAK,Krzysztof Pawlowski,Krzysztof,Kutno,Lodzkie,Poland,
2607038,SQ7RJX,Jacek Chruscinski,Jacek,Dzialoszyn,Lodzkie,Poland,
+2607039,SP7RDI,Roman Kulesza,Roman,Lodz,Lodzkie,Poland,
+2607040,SP7B,Boguslaw Kolis,Bog,Glowno,Lodzkie,Poland,
2608001,SP8WJS,Andrzej Pencarski,Andrzej,Ustrzyki Dolne,Wojewudztwo podkarpa,Poland,
2608002,SQ8NXF,Grzegorz Kowalski,Grzegorz,Zamosc,lubelskie,Poland,
2608003,SQ8LUN,Lukasz Kuzma,Lukasz,LUBLIN,Lublin Voivodeship,Poland,
@@ -16172,6 +16711,13 @@ 2609100,SQ9LBT,Tomasz Miksa,Tomasz,Ory,Slaskie,Poland,
2609101,SQ9OZM,Marcin Bajer,Marcin,Dobczyce,Malopolskie,Poland,
2609102,SQ9NKH,Lukasz Czaplak,Lukasz,Zakrzowiec,Malopolskie,Poland,
+2609103,SQ9OKR,Jacek Jasinski,Jacek,Krakow,cnty,Poland,
+2609104,SP9SVH,Krzysztof Podgorski,Krzysztof,Krakow,Malopolskie,Poland,
+2609105,SP9WZO,Brosnislaw Kus,Brosnislaw,CIESZYN,Slaskie,Poland,
+2609106,SQ9ZAY,Michal Matusik,Michal,Niepolomice,Malopolskie,Poland,
+2609108,SP9MAX,Andrzej Lacheta,Andrzej,Krakow,Malopolskie,Poland,
+2609109,SP9CLQ,Andrzej Klaja,Andrzej,Krakw,Malopolskie,Poland,
+2609110,SP9MAT,Bozena Lacheta,Bozena,Krakow,cnty,Poland,
2620001,DD8OA,Jan ,Jan,Friedrichsbrunn,Sachsen-Anhalt,Germany,Portable
2620002,DB1JBA,Jens ,Jens,Wismar,Mecklenburg-Vorpomme,Germany,Mobile
2620003,DG0CCO,Joerg ,Joerg,Tangermuende,Sachsen-Anhalt,Germany,Portable
@@ -16265,6 +16811,8 @@ 2620091,DL7JMJ,Juergen Jesche,Juergen,Glowe,Mecklenburg-Vorpomme,Germany,
2620092,DG7MZA,Michael Ziehm,Michael,Arneburg,Sachsen-Anhalt,Germany,
2620094,DB0WOF,Guenter Boehm,Guenter,Bitterfeld-Wolfen,Sachsen-Anhalt,Germany,
+2620095,DL2AFA,Rene Ritter,Rene,Halle / Saale,Sachsen-Anhalt,Germany,
+2620097,DJ8AW,Dieter Behr,Dieter,Wismar,Mecklenburg-Vorpomme,Germany,
2621001,DL7AJ,Wolfgang ,Wolfgang,Berlin,Berlin,Germany,
2621002,DG4FEY,Thomas ,Thomas,Berlin,Berlin,Germany,
2621003,DL7ATA,Frank ,Frank,Berlin,Berlin,Germany,Portable
@@ -16446,6 +16994,9 @@ 2621179,DO2TO,Uwe Skaerke,Uwe,Ahrensfelde/OT Blumb,Brandenburg,Germany,
2621180,DG2BZE,Guenter Mueller,Guenter,Neuenhagen,Brandenburg,Germany,
2621181,DC7BWK,Joerg Schaeffer,Joerg,Berlin,Berlin,Germany,
+2621182,DA0THW,Clubstation THW Besser,Clubstation THW,Fuerstenwalde / Spre,Brandenburg,Germany,
+2621183,DM7CV,Christian Voigtlaender,Christian,Glienicke,Brandenburg,Germany,
+2621184,DD6RL,Rene Lange,Rene,Berlin,Berlin,Germany,
2622000,DF4HN,Joerg Neugebauer,Joerg,Hamburg,HAMBURG/SCHLESWIG-HO,Germany,
2622001,DL6LIM,Iven ,Iven,Twedt/Schleswig,Schleswig-Holstein,Germany,Portable
2622002,DJ3HZ,Klaus ,Klaus,Norderstedt,Schleswig-Holstein,Germany,Portable
@@ -16481,7 +17032,7 @@ 2622032,DK7HE,Eckhard Haeckt,Eckhard,Neumuenster,Schleswig-Holstein,Germany,
2622033,DO7TPB,Thomas Paetzold,Thomas,Basedow,Schleswig-Holstein,Germany,
2622034,DC9LR,Michael Gottburg,Michael,Oeversee,Schleswig-Holstein,Germany,
-2622035,DB9HE,Michael Einfeldt,Michael,Heiligenhafen,Schleswig-Holstein,Germany,
+2622035,DB9HE,Michael Einfeldt,Michael,Hohwachter Bucht,Schleswig-Holstein,Germany,
2622036,DO5LTH,Tim Haack,Tim,Holm,Schleswig-Holstein,Germany,
2622037,DK9HJ,Reinhard Jaeger,Reinhard,Hamburg,Hamburg,Germany,
2622038,DK6HP,Gerd Lindau,Gerd,Hamburg,Hamburg,Germany,
@@ -16797,6 +17348,11 @@ 2622348,DL5LY,Lydia Cordsen,Lydia,Neuberend,Schleswig-Holstein,Germany,
2622349,DJ4LC,Thomas Littmann,Thomas,Breitenburg-Nordoe,cnty,Germany,
2622350,DL5LA,Paolo Altamura,Paolo,Soerup,Schleswig-Holstein,Germany,
+2622351,DK9XQ,Hans Schmidt,Hans,Hamburg,Hamburg,Germany,
+2622352,DL3HAT,Albert Thoms,Albert,Hamburg,Hamburg,Germany,
+2622353,DL4HAO,Dietmar Otterstaetter,Dietmar,Norderstedt,Schleswig-Holstein,Germany,
+2622354,DL1BEG,Geert Schulte,Geert,Itzehoe,Schleswig-Holstein,Germany,
+2622355,DF8LJM,Jens Mueller,Jens,Nuetzen,Schleswig-Holstein,Germany,
2623001,DL4BCG,Paul Hag ,,Schneverdingen,Niedersachsen,Germany,Portable
2623002,DG5AV,Gerd May,Gerd,Einbeck,Lower Saxony,Germany,
2623003,DO1HSN,Hendrik ,Hendrik,Pewsum,Niedersachsen,Germany,Portable
@@ -17704,6 +18260,13 @@ 2623905,DL4DD,Uli Lahme,Uli,Krummendeich,Niedersachen,Germany,
2623906,DH8RS,Rainer Schenkemeier,Rainer,Hildesheim,Niedersachen,Germany,
2623907,DJ2XW,Werner Buss,Werner,Hildesheim,Niedersachen,Germany,
+2623908,DJ6RL,Guenter Weisser,Guenter,Goslar,cnty,Germany,
+2623909,DL5OCB,Juergen Kamm,Juergen,Wedemark,Niedersachen,Germany,
+2623910,DO9KBW,Kevin Barbe,Kevin,Wolfenbuettel,Niedersachen,Germany,
+2623911,DO3MRB,Matthias Ranke,Matthias,Bremen,Bremen,Germany,
+2623913,DB3OA,Karl Hagemann,Karl,Gronau/Leine,Niedersachen,Germany,
+2623914,DG1OAV,Heiner De Jong,Heiner,Hameln,Niedersachen,Germany,
+2623916,DC2BK,Marco Lohwasser,Marco,Berne,Niedersachen,Germany,
2624001,DF2ER,Walter ,Walter,Heiligenhaus,Nordrhein-Westfalen,Germany,Portable
2624002,DD2JU,Rudolf ,Rudolf,Ratingen,Nordrhein-Westfalen,Germany,Portable
2624003,DL1YBL,Jochen ,Jochen,Marl,Nordrhein-Westfalen,Germany,Portable
@@ -19080,6 +19643,13 @@ 2625375,DO8CN,Christian Nagel,Christian,Neustadt / Weinstras,Rheinland-Pfalz,Germany,
2625376,DC8VA,Robert Wilhelm,Robert,Rodalben,Rheinland-Pfalz,Germany,
2625377,DK8VD,Dieter Hoffmann,Dieter,Bernkastel-Kues,Rheinland-Pfalz,Germany,
+2625378,DH3RD,Dirk Rinder,Dirk,Kaiserslautern,cnty,Germany,
+2625379,DG3PT,Thomas Reschke,Thomas,Speicher,Rheinland-Pfalz,Germany,
+2625380,DO9JW,Juergen Kachler,Juergen,Wirges,Rheinland-Pfalz,Germany,
+2625381,DO8ALX,Alex De Roma,Alex,Greimerath,Rheinland-Pfalz,Germany,
+2625382,DL4VAP,Marcus Meier,Marcus,Schiffweiler,cnty,Germany,
+2625383,DF6IK,Dietrich Bardens,Dietrich,Ludwigshafen,Rheinland-Pfalz,Germany,
+2625384,DO2PJ,Johannes Paechnatz,Joh,Bad Kreuznach,Rheinland-Pfalz,Germany,
2625998,DB0MYK,Hans-Juergen ,Hans-Juergen,Gaensehals,Thuaringen,Germany,
2625999,DB0LJ,D-Star-Gateway Barthen,DSTAR-DMR-Gateway,Kruft,Rhineland-Palatinate,Germany,
2626000,DF6RK,Ralf ,Ralf,Glashuetten,Hessen,Germany,Base Station
@@ -19603,7 +20173,7 @@ 2626518,DL3FWA,Werner Ahl,Werner,Gross-Rohrheim,Hessen,Germany,
2626519,DL4FDI,Rolf Fey,Rolf,Wiesbaden,Hessen,Germany,
2626520,DO2DW,Karsten Altschner,Karsten,Witzenhausen,Hessen,Germany,
-2626521,DB4MW,Michael Wiesner,Michael,Haiger,Hessen,Germany,
+2626521,DL6HN,Hartwig Hermann,Hartwig,Herborn,Hessen,Germany,
2626522,DL5FAC,Andreas Hess,Andreas,Weiterstadt,Hessen,Germany,
2626523,DC1FH,Herbert Lindenborn,Herbert,Habichtswald,Hessen,Germany,
2626524,DG7ZE,Willi Samec,Willi,Wiesbaden,Hessen,Germany,
@@ -19651,6 +20221,14 @@ 2626566,DL6FAK,Wolfgang Schilling,Wolfgang,Freigericht,Hessen,Germany,
2626567,DO1OKM,Simon Maiberger,Simon,Biebergemuend,Hessen,Germany,
2626568,DL2FHM,Horst Umbach,Horst,Immenhausen,Hessen,Germany,
+2626569,DK9ZI,Walter Fuck,Walter,Biebesheim am Rhein,Hessen,Germany,
+2626570,DH2FAZ,Andreas Koester,Andreas,Walluf,Hessen,Germany,
+2626571,DO1LOG,Joachim Moeller,Joachim,Eichenzell,Hessen,Germany,
+2626572,DO9CW,Kai Wagner,Kai,Taunusstein,Hessen,Germany,
+2626573,DH5HG,Harald Geddert,Harald,Vellmar,Hessen,Germany,
+2626574,DL5FCW,Guenter Wagner,Guenter,Hochheim am Main,Hessen,Germany,
+2626575,DL1FCV,Hartmut Kullmann,Hartmut,Limburg/Lahn,cnty,Germany,
+2626576,DO3SHH,Stefan Heumueller,Stefan,Gemuenden,Hessen,Germany,
2627001,DC4GD,Claus ,Claus,Villingen-Schwenning,Baden-Wuerttemberg,Germany,Mobile #1
2627002,DC4GD,Claus ,Claus,Villingen-Schwenning,Baden-Wuerttemberg,Germany,Mobile #2
2627003,DC4GD,Claus ,Claus,Villingen-Schwenning,Baden-Wuerttemberg,Germany,Portable
@@ -19751,7 +20329,7 @@ 2627098,DL4GH,Helmut ,Helmut,Friedrichshafen,Baden-Wuerttemberg,Germany,
2627099,DO1AFU,Thorsten ,Thorsten,Buehl,Baden-Wuerttemberg,Germany,
2627100,DL0FAA,Clubstation ,Clubstation,Aalen,Baden-Wuerttemberg,Germany,Mobile
-2627101,DH2ID,Alexander ,Alexander,Karlsruhe,Baden-Wuerttemberg,Germany,
+2627101,DH2ID,Alexander H Hahn Hahn,Alexander H Hahn,Karlsruhe,,Germany,
2627102,DC9GI,Peter ,Peter,Stockach,Baden-Wuerttemberg,Germany,
2627103,DG2GZA,Armin ,Armin,Friedrichshafen,Baden-Wuerttemberg,Germany,
2627104,DG1GLG,Gerald ,Gerald,Buehl,Baden-Wuerttemberg,Germany,
@@ -20356,10 +20934,39 @@ 2627703,DK8SN,Ilmar Reisman,Ilmar,Dornstadt,Baden-Wuerttemberg,Germany,
2627704,DF6SH,Guenther Dihlmann,Guenther,Marbach,Baden-Wuerttemberg,Germany,
2627705,DG4SBZ,Konrad Schnaible,Konrad,Weil der Stadt,Baden-Wuerttemberg,Germany,
+2627706,DK5MR,Andreas Schmidtlein,Andreas,Tamm,Baden-Wuerttemberg,Germany,
2627707,DG2ST,Bernd Knobel,Bernd,Heilbronn,Baden-Wuerttemberg,Germany,
2627708,DO7SJ,Jochen Schwalb,Jochen,Abstatt,Baden-Wuerttemberg,Germany,
2627709,DO7SA,Angelika Schwalb,Angelika,Abstatt,Baden-Wuerttemberg,Germany,
2627710,DK9WF,Fred Wagner,Fred,Ulm,Baden-Wuerttemberg,Germany,
+2627712,DB4IQ,Rainer Galler,Rainer,Mannheim,Baden-Wuerttemberg,Germany,
+2627713,DL1WM,Wolfgang Mahler,Wolfgang,Stuttgart,Baden-Wuerttemberg,Germany,
+2627714,DL8GBT,Reiner Schneider,Reiner,Berg,Baden-Wuerttemberg,Germany,
+2627715,DO4GME,Michael Elsner,Michael,Fluorn-Winzeln,Baden-Wuerttemberg,Germany,
+2627716,DK5OF,Reinhard Eckert,Reinhard,Horb,Baden-Wuerttemberg,Germany,
+2627717,DK8SJ,Rolf-Dieter Schmidt,Rolf,Rielasingen-Worbling,Baden-Wuerttemberg,Germany,
+2627718,DL7TG,Giuseppe Ciancia,Giuseppe,Rheinfelden,Baden-Wuerttemberg,Germany,
+2627719,DL9SBY,Thomas Haehnle,Thomas,Winnenden,Baden-Wuerttemberg,Germany,
+2627720,DL6GAC,Frank Genswein,Frank,Kirchzarten,Baden-Wuerttemberg,Germany,
+2627721,DH2SAO,Horst Selzer,Horst,Heilbronn,Baden-Wuerttemberg,Germany,
+2627722,DO9RK,Renate Knorrn-Fanz,Renate,Neckarwestheim,Baden-Wuerttemberg,Germany,
+2627723,DC7TU,Markus Zuegel,Markus,Stocksberg,Baden-Wuerttemberg,Germany,
+2627724,DK0ABT,Clubstation Abstatt Schmidtlein,Clubstation Abstatt,Abstatt,Baden-Wuerttemberg,Germany,
+2627725,DH1GAP,Peter Ihrig,Peter,Orsingen,Baden-Wuerttemberg,Germany,
+2627726,DL6IMU,Mark Krohmer,Mark,Erkenbrechtsweiler,Baden-Wuerttemberg,Germany,
+2627727,DO1DTK,Daniel Krohmer,Daniel,Erkenbrechtsweiler,Baden-Wuerttemberg,Germany,
+2627728,DL8SCD,Joachim Sack,Joachim,Heilbronn,Baden-Wuerttemberg,Germany,
+2627729,DL4SR,Reinhard Von Brandenstein,Reinhard,Grosserlach,Baden-Wuerttemberg,Germany,
+2627730,DJ5JT,Friedhelm Schoechlin,Friedhelm,Endingen,Baden-Wuerttemberg,Germany,
+2627731,DL1SJJ,Stefan Blesch,Stefan,Heilbronn,Baden-Wuerttemberg,Germany,
+2627732,DJ4PK,Sebastian Krajenski,Sebastian,Esslingen,Baden-Wuerttemberg,Germany,
+2627733,DH1SAV,Hansjoerg Weiss,Hansjoerg,Waeschenbeuren,Baden-Wuerttemberg,Germany,
+2627734,DL1GSD,Steffen Anger,Steffen,Rottenburg,Baden-Wuerttemberg,Germany,
+2627735,DJ9YS,Dieter Sonnentag,Dieter,Schoenaich,Baden-Wuerttemberg,Germany,
+2627736,DG1SBV,Otto Riedel,Otto,Sachsenheim,Baden-Wuerttemberg,Germany,
+2627737,DB1MIC,Michael Collet,Michael,Mannheim,Baden-Wuerttemberg,Germany,
+2627738,DG2SKK,Karl-Heinz Kiemle,Karl-Heinz,Nordheim,Baden-Wuerttemberg,Germany,
+2627739,DL1GHV,Harro Vollmar,Harro,Wangen,Baden-Wuerttemberg,Germany,
2628001,DL1BNO,Bernd ,Bernd,Geiselbach,Bayern,Germany,Mobile
2628002,DL5NBZ,Rainer ,Rainer,Nuernberg,Bayern,Germany,Mobile
2628003,DK7NKR,Ralf ,Ralf,Nuernberg,Bayern,Germany,Portable
@@ -21207,6 +21814,23 @@ 2628845,DF4RMI,Michael Farmbauer,Michael,Obertraubling,Bayern,Germany,
2628846,DO2DMB,Didi Rosenlehner,Didi,Falkenberg,Bayern,Germany,
2628847,DG4AO,Anton Oeder,Anton,Markt Frickenhausen,Bayern,Germany,
+2628848,DD5EF,Hakan Kayal,Hakan,Wuerzburg,Bayern,Germany,
+2628849,DO1CE,Christian Englert,Christian,Aschaffenburg,Bayern,Germany,
+2628850,DL6ZB,Rolf Heine,Rolf,Hausen,Bayern,Germany,
+2628851,DL9ZU,Michael Redl,Michael,Vilgertshofen,Bayern,Germany,
+2628852,DJ1RKS,Stefan Krottenthaler,Stefan,Zwiesel,Bayern,Germany,
+2628853,DL6FZ,Daniel Dibbets,DL6FZ,Holzkirchen,Bayern,Germany,
+2628854,DO1JEH,Juergen Huether,Juergen,Neudrossenfeld,Bayern,Germany,
+2628855,DD0YR,Wolfgang Erkens,Wolfgang,Ingolstadt,Bayern,Germany,
+2628856,DO5LJJ,Mario Gamperle,Mario,Dengling,Bayern,Germany,
+2628857,DF0ZW,Stefan Krottenthaler,FunkfreundeArberland,Zwiesel,Bayern,Germany,
+2628858,DD8RW,Walter Muehlbauer,Walter,Teisnach,Bayern,Germany,
+2628859,DO3THB,Tobias Bader,Tobias,Garmisch-Partenkirch,Bayern,Germany,
+2628860,DG5RBB,Josef Seidl,Josef,Cham,Bayern,Germany,
+2628861,DO1MRG,Robert Gebhart,Robert,Muenchen,Bayern,Germany,
+2628862,DC3THO,Thomas Schwiede,Thomas,Altenmarkt,Bayern,Germany,
+2628863,DO7MAR,Markus Ribbrock,Markus,Tettau,Bayern,Germany,
+2628864,DB5JR,Joachim Regus,Joachim,Nuernberg,Bayern,Germany,
2629001,DC8YM,Maik ,Maik,Leipzig,Sachsen,Germany,Portable#1
2629002,DC8YM,Maik ,Maik,Leipzig,Sachsen,Germany,Portable#2
2629003,DC8YM,Maik ,Maik,Leipzig,Sachsen,Germany,Mobile
@@ -21476,7 +22100,7 @@ 2634126,DO1KDS,Klaus-Dieter Steinhage,Klaus-Dieter,Luegde,Nordrhein-Westfalen,Germany,
2634127,DG3YJB,Jan Beba,Jan,Recklinghausen,Nordrhein-Westfalen,Germany,
2634128,DG6JC,Manfred Rensing,DG6JC,Duesseldorf,Nordrhein-Westfalen,Germany,
-2634129,DO4JM,Julian Wild,Julian,Krefeld,Nordrhein-Westfalen,Germany,
+2634129,DL9YCC,Hans Schubert,Hans,Rheine,Nordrhein-Westfalen,Germany,
2634130,DO3STK,Stefan Kinzel,Stefan,Dortmund,Nordrhein-Westfalen,Germany,
2634131,DB3JO,Helmut Zeidler,Helmut,Kempen,Nordrhein-Westfalen,Germany,
2634132,DG1FKA,Falko Kerner,Falko,Dortmund,Nordrhein-Westfalen,Germany,
@@ -21666,6 +22290,7 @@ 2634316,DH6MB,Michael Burzywoda,Michael,Duelmen,Nordrhein-Westfalen,Germany,
2634317,DO1YH,Yannick Hariga,Yannick,Mettmann,Nordrhein-Westfalen,Germany,
2634318,DL9DJ,Gisela Dohmen,Gisela,Pulheim,Nordrhein-Westfalen,Germany,
+2634319,DJ0HF,Ian Spencer,Ian,Much,Nordrhein-Westfalen,Germany,
2634320,DO1YAC,Axel Albers,Axel,Greven,Nordrhein-Westfalen,Germany,
2634321,DM1GS,Hans-Georg Struck,Hans-Georg,Essen,Nordrhein-Westfalen,Germany,
2634322,DO3VV,Mark Schraven,Mark,Paderborn,Nordrhein-Westfalen,Germany,
@@ -21698,6 +22323,26 @@ 2634349,DO6BD,Daniel Battke,Daniel,Bergheim,Nordrhein-Westfalen,Germany,
2634350,DL9DBB,Friedhelm Siepe,Friedhelm,Hallenberg,Nordrhein-Westfalen,Germany,
2634351,DM1EE,Rolf Moellmann,Rolf,Dorsten,Nordrhein-Westfalen,Germany,
+2634352,DK0HN,Udo Hornfischer,OV Herten N20,Herten,Nordrhein-Westfalen,Germany,
+2634353,DG5MK,Michael Knitter,Michael,Herten,Nordrhein-Westfalen,Germany,
+2634354,DC0DX,Peter Florath,Peter,Muelheim an der Ruhr,Nordrhein-Westfalen,Germany,
+2634355,DO1EHS,Holger Straube,Holger,Haan,Nordrhein-Westfalen,Germany,
+2634356,DO6RR,Stefan Fischer,Stefan,Duesseldorf,Nordrhein-Westfalen,Germany,
+2634357,DM2TIM,Stefan Kammann,Stefan,Willich,Nordrhein-Westfalen,Germany,
+2634358,DB3EF,Stefan Katerkamp,Stefan,Duesseldorf,Nordrhein-Westfalen,Germany,
+2634359,DL5BOC,Christian Hermanowski,Christian,Bochum,Nordrhein-Westfalen,Germany,
+2634360,DH5KAH,Gerd Heimann,Gerd,Erkelenz,Nordrhein-Westfalen,Germany,
+2634361,DJ7SE,Fritz Hueske,Fritz,Neuenkirchen,Nordrhein-Westfalen,Germany,
+2634362,DL6KU,Peter Zwar,Peter,Koeln,Nordrhein-Westfalen,Germany,
+2634363,DO1PBL,Peter Blumenau,Peter,Leverkusen,Nordrhein-Westfalen,Germany,
+2634364,DL4DG,Josef Saller,Josef,Bochum,Nordrhein-Westfalen,Germany,
+2634365,DL1DMB,Michael Bern,Michael,Heiligenhaus,Nordrhein-Westfalen,Germany,
+2634366,DF5JZ,Detlef Meis,Detlef,Voerde,Nordrhein-Westfalen,Germany,
+2634367,DH9KB,Klaus Blei,Klaus,Ruppichteroth,Nordrhein-Westfalen,Germany,
+2634368,DG9DCR,Georg Rogge,Georg,Hemer,Nordrhein-Westfalen,Germany,
+2634369,DF6DT,Hans Dieter Mytra,Hans Dieter,Dortmund,Nordrhein-Westfalen,Germany,
+2634370,DO6LH,Hartmut Link,Hartmut,Siegen,Nordrhein-Westfalen,Germany,
+2634371,DO4JML,Joerg Michael Longwitz,Joerg Michael,Castrop-Rauxel,Nordrhein-Westfalen,Germany,
2681001,CT2HMR,Manuel ,Manuel,Amarante,Porto District,Portugal,
2681002,CT1DQV,Eduardo Goncalves,Eduardo,Chaves,Vila Real,Portugal,
2681003,CT2GSW,Rui Calada,Rui,Maia,Porto District,Portugal,
@@ -21746,6 +22391,9 @@ 2681046,CT4OI,Rui Lopes,Rui,Porto,cnty,Portugal,
2681047,CT1HFS,Rui Alves,Ruca,Espinho,Porto,Portugal,
2681048,CT1HXJ,Vitor Ferreira,Vitor,Maia,Porto,Portugal,
+2681049,CT2JAO,Fernando Manuel Teixeira,Fernando,Chaves,Vila Real District,Portugal,
+2681050,CT1HXJ,Vitor Ferreira,Vitor,Maia,Porto,Portugal,
+2681051,CT1BDS,Jose Tavares,Jose,Rio Tinto,Porto,Portugal,
2682001,CS7ACF,Nuno ,Nuno,Viseu,Viseu,Portugal,
2682002,CT1BAT,Jose Machado,Jose,Coimbra,Coimbra,Portugal,
2682003,CT2JWV,Carlos Marques,Carlos,Estarreja,Aveiro,Portugal,
@@ -21789,7 +22437,7 @@ 2682041,CR7ALP,Jose Tavares,Jose,Coimbra,Coimbra District,Portugal,
2682042,CT2GCO,Antonio Mesquita,Antonio,Coimbra,Coimbra,Portugal,
2682043,CT1EFR,Albertino Guapo,Albertino,Albergaria dos Doze,Leiria,Portugal,
-2682044,CT1AFS,Vitor Oliveira,Vitor,Aguada de Cima,Aveiro,Portugal,
+2682044,CT1AFS,Victor Oliveira,Vitor,Aguada de Cima,Aveiro,Portugal,
2682045,CT1BCP,Jose Fernando Almeida,Jose,Tocha, Coimbra,Coimbra,Portugal,
2682046,CT2HTY,Jose Praca,Jose,Ovar,cnty,Portugal,
2682047,CT1EGJ,Jose Sousa,Kostas,Viseu,Viseu,Portugal,
@@ -21804,6 +22452,9 @@ 2682056,CT1ESJ,Henrique Portas,Henrique,Sabugal,Guarda,Portugal,
2682057,CS7AFA,Pedro Ferraz,Pedro,Guia PBL,Leiria,Portugal,
2682058,CT1HFW,Nuno Miguel Duarte Mendes,Nuno Miguel,Tomar,Leiria,Portugal,
+2682059,CT1PR,Manuel Cardoso,Manuel,Coimbra,Coimbra,Portugal,
+2682060,CS5GVW,Luis Marques,ARCoimbra,Coimbra,Coimbra,Portugal,
+2682061,CR7AOB,Rui Ventura,Rui,Alqueves,Coimbra,Portugal,
2683001,CT1HDC,Paulo ,Paulo,Lisboa,Lisboa,Portugal,Portable
2683002,CR7AIC,Fernando ,Fernando,Lisboa,Lisbon,Portugal,
2683003,CS7AFO,Hugo ,Hugo,Amadora,Lisbon,Portugal,
@@ -21970,6 +22621,11 @@ 2683165,CT1AWR,Manuel Santos,Manuel,Buraca,Lisboa,Portugal,
2683166,CT1EBZ,Jouo Encarnauo,Jouo,Carnaxide,Lisboa,Portugal,
2683167,CT1FW,Manuel Antunes,Manuel,Portela de Sintra,Lisboa,Portugal,
+2683168,CT5IPX,Bruno Luengo,Bruno,Lisboa,Lisboa,Portugal,
+2683169,CT2IQE,Rui Romao,Rui,Amora,Setubal,Portugal,
+2683170,CS1RLA,Jorge Santos,George,Setubal,cnty,Portugal,
+2683171,CT1ETG,Fernando Castanheira,Fernando,Alcabideche,Lisboa,Portugal,
+2683172,CT1FHW,Jose Alves,Jose,Feijo,Setubal,Portugal,
2684001,CT2BXN,Jose ,Jose,Beja,Alentejo,Portugal,Mobile#1
2684002,CT2BXN,Jose ,Jose,Beja,Alentejo,Portugal,Mobile#2
2684003,CT1DUM,Carlos ,Carlos,Elvas,Portalegre District,Portugal,
@@ -22008,6 +22664,7 @@ 2686007,CU3CO,Carlos Ramos,Carlos,Angra Do Heroismo,Azores,Portugal,
2686008,CU3YO,Ermelinda Ramos,Ermelinda,Angra Do Heroismo,Azores,Portugal,
2686009,CU3BL,Manuel De Oliveira,Manuel,Angra do Heroismo,Azores,Portugal,
+2686010,CU3AC,Antonio Mendes,Antonio,Angra do Heroismo,Azores,Portugal,
2687001,CT3PE,Jorge Silva Cardoso,Jorge,Canico,Madeira,Portugal,
2687002,CT3FG,Tomas Corte,Tomas,Funchal,Madeira,Portugal,
2701001,LX1CK,Christian ,Christian,Hautcharage,Luxembourg,Luxemburg,Mobile
@@ -22089,6 +22746,10 @@ 2701077,LX1CD,Carlo Diedert,Carlo,Fentange,Luxemburg,Luxemburg,
2701078,LX6RG,Rene Grignard,Rene,Hagen,Luxemburg,Luxemburg,
2701079,LX1QF,Peter Vekinis,Peter,Canach,Luxemburg,Luxemburg,
+2701080,LX2A,Philippe Lutty,LX2A,Sandweiler,Luxemburg,Luxemburg,
+2701081,LX7I,Philippe Lutty,LX7I,Sandweiler,Luxemburg,Luxemburg,
+2701083,LX1GG,Gilbert Gira,Gilbert,Hesperange,Luxemburg,Luxemburg,
+2701084,LX1SA,Alain Schreiner,Alain,Strassen,Luxemburg,Luxemburg,
2701120,LX4E,LARU EMC WG LARU,LARU EMC WG,Diekirch,,Luxemburg,
2701121,LX4E,LARU EMC WG LARU,LARU EMC WG,Diekirch,,Luxemburg,
2701122,LX4E,LARU EMC WG LARU,LARU EMC WG,Diekirch,,Luxemburg,
@@ -22099,7 +22760,7 @@ 2701127,LX4E,LARU EMC WG LARU,LARU EMC WG,Diekirch,,Luxemburg,
2701128,LX4E,LARU EMC WG LARU,LARU EMC WG,Diekirch,,Luxemburg,
2701129,LX4E,LARU EMC WG LARU,LARU EMC WG,Diekirch,,Luxemburg,
-2701130,LX4LARO,CIS ,CIS-Larochette,Larochette,,,
+2701130,LX4LARO,CIS Larochette,CIS-Larochette,Larochette,,,
2720001,EI4EW,William Kelly,William,Dublin,,Ireland,
2720002,EI8JE,Richard Cullinan,Richard,Nenagh,,Ireland,
2720003,EI2ET,Manfred Lauterborn,Manfred,Galway,Galway,Ireland,
@@ -22130,6 +22791,7 @@ 2720028,EI2KL,Henry Patrick OLoughlin,Harry,Shannon,,Ireland,
2740001,TF3PKN,Pier Kaspersma,Pier,Reykjavik,,Iceland,
2740002,TF8KP,Krzysztof Przybylski,Kristof,Keflavik,,Iceland,
+2740003,TF8KP,Krzysztof Przybylski,Kristof,Keflavik,,Iceland,
2780001,9H1US,Antoine Debattista,Antoine,Birkirkara,,Malta,
2780002,9H1DH,Herbert Debattista,Herbert,Gwardamangia,,Malta,
2780003,9H1DH,Herbert Debattista,Herbert,Gwardamangia,,Malta,
@@ -22214,10 +22876,12 @@ 2840064,LZ1DGM,Dimitar Martinov,Mitko,Sofia,,Bulgaria,
2840065,LZ1CLD,Dimitar Ilkov,Dimitar,Sofia,,Bulgaria,
2840066,LZ1SDF,Svetlin Haralampiev,Svetlin,Sofia,,Bulgaria,
+2840067,LZ1PLC,Petar Atanasov,Petar,Plovdiv,,Bulgaria,
2860001,TA2AWV,Mirac YILMAZ,Mirac,Istanbul,,Turkey,
2860002,TA5ACC,Cihan Culha,Cihan,Adana,,Turkey,
2860003,TA2UKC,Cem Burak Kocak,Cem Burak,Istanbul,,Turkey,
2860004,TA2LLS,Seyit Tekirdag,Seyit,Kocaeli,,Turkey,
+2860005,TA2LY,Ismail Cilesiz,Ismail,Bolu,,Turkey,
2862001,TA2OI,Özel ,Özel,Sulakyurt,Kirikkale,Turkey,Portable
2900001,OX3HI,Holger Hey Mortensen,Holger Hey,Kangerlussuaq,,Greenland,
2920001,T77GR,Renato Giovagnoli,Renato,San marino,,San Marino,
@@ -22231,6 +22895,18 @@ 2930006,S56KZ,Beno Sever,Beno,Sentjur,,Slovenia,
2930007,S57BMU,Milan Urbanija,Milan,Zagorje ob Savi,,Slovenia,
2930008,S58DB,Danilo Bozic,Danilo,Sevnica,,Slovenia,
+2930009,S56WDN,Dejan Novak,Dejan,Kamnik,,Slovenia,
+2930010,S56LOE,Brane Svecak,Brane,Ljubljana,,Slovenia,
+2930011,S56HVF,Roman Obreza,Roman,Trbovlje,,Slovenia,
+2930012,S56LLS,Savo Luzar,Savo,Akofja Loka,,Slovenia,
+2930013,S54CAT,Janez Kotnik,Yani,Ljubljana,,Slovenia,
+2930014,S57DV,Domen Vodopivec,Abdomen,Podgrad,,Slovenia,
+2930015,S56CUV,Franc Vidovic,Freddy,Sevnica,,Slovenia,
+2930016,S53JB,Boitjan Jankovii,Boitjan,Kriko,,Slovenia,
+2930017,S53SI,Ivan Supovec,Supi,Ljubljana,,Slovenia,
+2930018,S50KH,Matej Primozic,Matej,Ljubljana,,Slovenia,
+2930019,S50UM,Urska Kozelj,Urska,Kamnik,,Slovenia,
+2930020,S56MP,Mitja Papez,Mitja,Ljubljana,,Slovenia,
2940001,Z36AEC,Herolind Useini,Herolind,Gostivar,Gostivar,Macedonia,
2940002,Z32IT,Dragan Spiroski,Dragan,Skopje,,Macedonia,
2940003,Z32IT,Dragan Spiroski,Dragan,Skopje,,Macedonia,
@@ -22243,6 +22919,12 @@ 2940010,Z31GOC,Goce Boshkovski,Goce,Skopje,,Macedonia,
2940011,Z36AMB,Zoran Sekuloski,Z36AMB,Prilep,,Macedonia,
2940012,Z32EA,Dimitar Poposki,Dimitar,Skopje,,Macedonia,
+2940013,Z31CW,Dejan Vukanovic,Dejan,Kumanovo,,Macedonia,
+2940014,Z31AB,Aleksandar Bozhinovski,Aleksandar,Skopje,,Macedonia,
+2940015,Z34GOC,Goce Loparski,Goce,Skopje,,Macedonia,
+2940016,Z33RTF,Andrej Mickov,Andrej,Bitola,,Macedonia,
+2940017,Z31GH,Ljubomir Dimovski,Ljubomir,Bitola,,Macedonia,
+2940018,Z34DDB,Darko Blazevski,Darko,Skopje,,Macedonia,
2958001,HB0SPH,Pius Schumacher,Pius,Wallenstadt,,Liechtenstein,
2959001,HB0BP,Andreas Verling,Andreas,Triesen,,Liechtenstein,
2959002,HB0PJ,Patrick Jakob,Patrick,Vaduz,Vaduz,Liechtenstein,
@@ -22262,6 +22944,9 @@ 3021008,VE1PJS,Peter Surette,,Truro,Nova Scotia,Canada,DMR
3021009,VE1VOX,Dana Rushton,,Truro Heights,Nova Scotia,Canada,DMR
3021010,VE1ER,David Chapman,,Truro,Nova Scotia,Canada,DMR
+3021011,VE1AOE,Donald Roland,Don,Truro,Nova Scotia,Canada,DMR
+3021012,VE1LV,W. Harold Rodd,Hal,Truro,Nova Scotia,Canada,DMR
+3021013,VE1LV,W. Harold Rodd,Hal,Truro,Nova Scotia,Canada,DMR
3022000,VA2XPR,CAN-TRBO .,CAN-TRBO,Montreal,Quebec,Canada,DMR
3022001,VA2TDF,Daniel Trillaud,,Montreal,Quebec,Canada,Portable
3022002,VE2NBZ,Eric Gauvin-dufour,,Trois-Rivires,Quebec,Canada,Portable
@@ -22596,6 +23281,10 @@ 3022336,VE2MPZ,Stephane Leclerc,,Chateauguay,Quebec,Canada,DMR
3022338,VE2USS,Brian Luker,,Lachute,Quebec,Canada,DMR
3022339,VA2PU,Michel Blouin,,Sherbrooke,Quebec,Canada,DMR
+3022340,VE2LAM,Sylvain Lamarre,,Rimouski,Quebec,Canada,CCS7
+3022341,VA2FR,Daniel Trillaud,Daniel,Outremont,Quebec,Canada,DMR
+3022342,VA2GRE,Rejean Garand,Ponpier,Saint-Dominique,Quebec,Canada,DMR
+3022343,VE2JPH,Pierre Hamel,,Beloeil,Quebec,Canada,DMR
3023001,VE3XF,Steve Jones,,Stayner,Ontario,Canada,Mobile
3023002,VE3KFQ,Doug Hodgson,,Toronto,Ontario,Canada,Mobile
3023003,VE3SAQ,Marshall Mcbride,,Cornwall,Ontario,Canada,Portable
@@ -23297,6 +23986,23 @@ 3023703,VA3SQD,Dan Colquhoun,Datasquid,Waterloo,Ontario,Canada,DMR
3023704,VE3WAH,William Alfred Hopkins,,Lindsay,Ontario,Canada,DMR
3023705,VE3GUO,Tony Guo,,Brampton,Ontario,Canada,DMR
+3023706,VA3VXN,Margaret Tidman,,Ottawa,Ontario,Canada,DMR
+3023707,VE3IRR,Clayton Smith,,Kanata,Ontario,Canada,DMR
+3023708,VA3GPA,David C Gibson,,Richmond Hill,Ontario,Canada,DMR
+3023709,VE3RHF,Rod Hardman,,Oakville,Ontario,Canada,DMR
+3023710,VA3ON,Rod Hardman,,Oakville,Ontario,Canada,DMR
+3023711,VE3XTD,Eric Reilly,,Gravenhurst,Ontario,Canada,DMR
+3023712,VA3XL,Don Sandison Sandison,,St. Catharines,Ontario,Canada,DMR
+3023713,VE3YCA,Jason Kendall,Coolacid,Severn,Ontario,Canada,DMR
+3023714,VE3WOO,Stephen Gordon Woo,,Markham,Ontario,Canada,DMR
+3023715,VE3ZSD,Rick Northup,,Havelock,Ontario,Canada,DMR
+3023716,VA3GI,Robert Edward Sues,,Earlton,Ontario,Canada,DMR
+3023717,VE3EPI,Andrew Neelands,Andrew,Toronto,Ontario,Canada,DMR
+3023718,VE3TMG,Terry Greenwood Greenwood,,Windsor,Ontario,Canada,DMR
+3023719,VE3OKV,George Davis,,Milton,Ontario,Canada,DMR
+3023720,VA3AMK,Ahsan K,,Mississauga,Ontario,Canada,DMR
+3023721,VE3CWR,Gerard Randall,,Bowmanville,Ontario,Canada,DMR
+3023722,VA3DBT,Melvin Monit,Mel,Mississauga,Ontario,Canada,DMR
3024001,VE4RRB,Rob Boux,,Blumenort,Manitoba,Canada,DMR
3024002,VE4RRB,Rob Boux,,Blumenort,Manitoba,Canada,DMR
3024003,VE4AI,Shaun Mcleod,,Winnipeg,Manitoba,Canada,Portable
@@ -23491,6 +24197,8 @@ 3026136,VE6JMK,John Kellas Kellas,,Banff,Alberta,Canada,DMR
3026137,VA6EC,Eric Haley,,Calgary,Alberta,Canada,Other
3026138,VA6RIP,Derek Robertson,,Camrose,Alberta,Canada,Other
+3026139,VE6JES,John E Sauvey,,Medicine Hat,Alberta,Canada,Other
+3026140,VE6SQU,Jordan Black,,Calgary,Alberta,Canada,DMR
3027001,VE7NWX,Emcomm N. Wstmnstr,,New Westminster,British Columbia,Canada,Portable #1
3027002,VE7NWX,Emcomm N. Wstmnstr,,New Westminster,British Columbia,Canada,Portable #2
3027003,VE7NWX,Emcomm N. Wstmnstr,,New Westminster,British Columbia,Canada,Portable #3
@@ -23605,6 +24313,12 @@ 3027113,VA7CRO,Dom Kapac,,Victoria,British Columbia,Canada,DMR
3027114,VE7VSL,Charla Mason,,Victoria,British Columbia,Canada,DMR
3027115,VA7EM,Rick Phillips,,Vernon,British Columbia,Canada,DMR
+3027116,VE7LMP,Linda M Peterson,,Vancouver,British Columbia,Canada,DMR
+3027117,VE7XMC,Michael Cavallin,,Victoria,British Columbia,Canada,DMR
+3027118,VA7BC,Greg Franklin,,Vancouver,British Columbia,Canada,DMR
+3027119,VA7HL,Jean-Luc Franklin,,West Vancouver,British Columbia,Canada,DMR
+3027120,VE7FXG,Greg Franklin,,West Vancouver,British Columbia,Canada,DMR
+3027121,VE7IRL,Gordon Killally,Gordz1,Mission,British Columbia,Canada,DMR
3027198,VE7ZZT,Kevin Wright,,New Westminster,British Columbia,Canada,Portable
3027199,VE7ZZT,Kevin Wright,,New Westminster,British Columbia,Canada,Mobile
3028001,VY1CA,Kelly Quocksister,,Whitehorse,Yukon,Canada,Mobile
@@ -23824,6 +24538,9 @@ 3101177,KM4KTC,William C Weir,Chris,Madison,Alabama,United States,DMR
3101178,KR4WTF,Keith Rising,,Owens Cross Roads,Alabama,United States,DMR
3101179,NA4A,Tristam I Greaney,Tris,Hartselle,Alabama,United States,CCS7
+3101180,KB4CQ,Randall Hearn Hearn,,Huntsville,Alabama,United States,DMR
+3101181,K4AXE,Kristopher M Garner,,Auburn,Alabama,United States,CCS7
+3101182,W4LTP,Bobby J Head,,Rehobeth,Alabama,United States,DMR
3102001,KL2AV,Brian Corty,,Delta Junction ,Alaska,United States,Portable
3102002,KL7PS,Paul Spatzek,,Ancorage,Alaska,United States,Portable
3102003,KL7RW,Ralph Wilkerson,Ralph,Anchorage,Alaska,United States,Portable
@@ -23835,6 +24552,10 @@ 3102009,AL7U,Andrew Rosenberger,,Chugiak,Alaska,United States,DMR
3102010,KL4GR,Larry A Zuccaro,,Homer,Alaska,United States,DMR
3102011,KL2JE,Keith Austin,Keith,Anchorage,Alaska,United States,DMR
+3102012,WL7DN,David M Noll,,Wasilla,Alaska,United States,DMR
+3102013,KL2KM,Donald M Fell,,Homer,Alaska,United States,DMR
+3102014,KL4GU,Martin S Kitson,,Anchor Point,Alaska,United States,DMR
+3102015,KH6EB,Eric A Brundage,,Ontereo,Alaska,United States,DMR
3104001,WB9EXL,Ron Peters,,Scottsdale,Arizona,United States,Portable
3104002,N7MK,Mark Krotz,,Mesa,Arizona,United States,Portable #1
3104003,N7TWW,Chris Radicke,,Scottsdale,Arizona,United States,Portable #1
@@ -24232,7 +24953,7 @@ 3104397,KF7ZVL,Law Kelley,,Scottsdale,Arizona,United States,DMR
3104398,AG3NT,Adam Rader,,Phoenix,Arizona,United States,DMR
3104399,KF7HGI,Terry Hopewell,,Mesa,Arizona,United States,DMR
-3104400,K7RTM,Tim J Chase,Tim J,Chandler,Arizona,United States,DMR
+3104400,K7RTM,Tim Chase,Tim ,Chandler,Arizona,United States,DMR
3104401,KE7GRV,James T Ryan,James T,Tempe,Arizona,United States,DMR
3104402,KC7JOE,Joe Racco,,Cave Creek,Arizona,United States,DMR
3104403,N7UZP,Carl E Maness,,Mesa,Arizona,United States,DMR
@@ -24320,10 +25041,17 @@ 3104487,KI7UP,Norman Seeley Jr,Normanseeleyjr,Scottsdale,Arizona,United States,DMR
3104488,W2AD,Norman W Rich Jr Rich,Norm,Phoenix,Arizona,United States,DMR
3104489,N7UJY,Brian K Lehmann,,Phoenix,Arizona,United States,DMR
-3104490,KG7ISX,Kevin Cockerham,,Goodyear,Arizona,United States,DMR
+3104490,KG7ISX,Kevin Cockerham,,Litchfield Park,Arizona,United States,DMR
3104491,KI7HPE,Chuck Bryant,,Scottsdale,Arizona,United States,DMR
3104492,AG3NT,Adam Rader Rader,Adam,Phoenix,Arizona,United States,DMR
3104493,KD7OBQ,Jerry L Jensen,,Maricopa,Arizona,United States,DMR
+3104494,K7WSB,William Beare,Bill,Arizona City,Arizona,United States,DMR
+3104495,AH6OD,David A Pacheco,,Queens Creek,Arizona,United States,DMR
+3104496,AA7K,Sonny Horton,Sonny,Queen Creek,Arizona,United States,DMR
+3104497,KI7HZG,Joseph Jorgensen Jorgensen,Joe,Gilbert,Arizona,United States,DMR
+3104498,KI7HZG,Joseph Jorgensen,Joe,Gilbert,Arizona,United States,DMR
+3104499,W7DLT,Donna L Traphagan,,Mesa,Arizona,United States,DMR
+3104500,N7AS,Grant C Armstrong,,Prescott Valley,Arizona,United States,Other
3105001,N5QM,Robert Garcia,,Little Rock,Arkansas,United States,Portable
3105002,KB6FO,George Roher,,Edgemont,Arkansas,United States,Portable
3105003,W5KEC,Kenneth Carpenter,,Edgemont,Arkansas,United States,Portable
@@ -24339,7 +25067,7 @@ 3105013,KD5RQL,Bill Clay,,Little Rock,Arkansas,United States,Portable
3105014,N5DBC,Dan Cassidy,,Sherwood,Arkansas,United States,Portable
3105015,KD50CQ,Charlie Roberts,,Little Rock,Arkansas,United States,Portable
-3105016,KF5TPF,Ryan Nelson,,Edgemont,Arkansas,United States,Portable
+3105016,W1ZM,Ryan Nelson,,Edgemont,Arkansas,United States,DMR
3105017,KF5LFQ,Michael Denby,,Jacksonville,Arkansas,United States,Portable
3105018,N5NBJ,Jason Brisco,,Harrison,Arkansas,United States,Mobile
3105019,KE5SQC,Randy Graves,,Lamar,Arkansas,United States,
@@ -24525,6 +25253,11 @@ 3105200,N5QKH,Judy M Hambuchen,Judy,Conway,Arkansas,United States,DMR
3105201,KF5FKF,Tyler Roberts,,Conway,Arkansas,United States,DMR
3105202,NW5AR,Mark Parmer Parmer,Mark,Springdale,Arkansas,United States,DMR
+3105203,NW5AR,Mark Parmer Parmer,Mark,Springdale,Arkansas,United States,DMR
+3105204,AE5CP,William L Hyatt,,Fayetteville,Arkansas,United States,CCS7
+3105205,KG5ANI,Charles E Bushong,,Fayetteville,Arkansas,United States,DMR
+3105206,KG5QEW,Jo Sanders,Joann,Paron,Arkansas,United States,DMR
+3105207,KG5QEX,Rheta Spurlin,Rheta,Paron,Arkansas,United States,DMR
3106001,K6EH,Paul Metzger,,Downey,California,United States,Portable #1
3106002,K6EH,Paul Metzger,,Downey,California,United States,Mobile
3106003,K6EH,Paul Metzger,,Downey,California,United States,Base
@@ -26317,7 +27050,6 @@ 3107799,N0DEC,Delyan Raychev,,San Jose,California,United States,Other
3107800,KI4POB,Nicholas G Bates,,Galt,California,United States,DMR
3107801,KM6COB,Chung N Lee,,Cerritos,California,United States,DMR
-3107802,KJ6CE,James O Wickham,Jim,Clovis,California,United States,DMR
3107803,WB6RPS,Deborah A Siposs,,Carlsbad,California,United States,DMR
3107804,KJ6YJR,Andrew Bowen,,San Gabriel,California,United States,Other
3107805,KM6ETS,Frederick Kautz,,Fremont,California,United States,DMR
@@ -26456,7 +27188,7 @@ 3107938,AF6FZ,Daniel Dibbets,,San Carlos,California,United States,DMR
3107939,W6ABJ,Richard W Larson,,Merced,California,United States,DMR
3107940,KC6YDH,Ralph Kugler,,Daly City,California,United States,DMR
-3107941,KE6YJC,Ted Freitas,Roip Radio,Fresno,California,United States,DMR
+3107941,KE6YJC,MountainWest RoIP,RoIP Radio,Fresno,California,United States,Other
3107942,KJ6YOG,Jaime Devaud,,Aliso Viejo,California,United States,DMR
3107943,AK6Y,Eric D Gomes,,Castro Valley,California,United States,DMR
3107944,KE6VRK ,Edward R Lemus,Ed,Culver City ,California,United States,DMR
@@ -26466,6 +27198,30 @@ 3107948,KK6USF,Abbey K Armenta,Ab,Roseville,California,United States,DMR
3107949,K6DJS,Daniel J Sharp,,Northridge,California,United States,DMR
3107950,KE6VRK,Edward R Lemus,Ed,Culver City,California,United States,DMR
+3107951,KJ6VTP,Ray J Dzek,,Morgan Hill,California,United States,DMR
+3107952,KJ6ZEB,Robert Gammons Gammons,,Paradise,California,United States,DMR
+3107953,KK6PGA,Richard D Jones,,San Rafael ,California,United States,DMR
+3107954,K6JWB,John W Berry Berry,,San Diego,California,United States,DMR
+3107955,KI6ZHD,David A Ranch,,Santa Clara,California,United States,DMR
+3107956,K7DAA,David C Andrus,Dave,Morgan Hill,California,United States,DMR
+3107957,N9KTR,Michael R Check,,Colma,California,United States,DMR
+3107958,KK6QPE,Larry H Bradley,,Concord,California,United States,DMR
+3107959,WA6EQQ,Leslie E Ballinger,Les,Turlock,California,United States,DMR
+3107960,KK6JGJ,Richard L Premo,Spreckoak,Oakland,California,United States,CCS7
+3107961,W6PNQ,Oscar Reyna,,Lakewood,California,United States,DMR
+3107962,K6BRW,Patrick May May,,Clovis,California,United States,DMR
+3107963,NW6UP,Masahito Kagawa Kagawa,Masa,Cupertino,California,United States,CCS7
+3107965,KK6MMZ,Joon H Sok,Joono,La Palma,California,United States,DMR
+3107966,AD6NH,Phillip B Pacier,,Orange,California,United States,DMR
+3107967,KK6HH,Hung L Hu Hu,Ben,Los Altos Hills,California,United States,DMR
+3107968,KG6TFM,Thomas G Sprick,,Escondido,California,United States,DMR
+3107969,W6MNL,Stephen C Walch,,Sunnyvale,California,United States,DMR
+3107970,KI6BQL,Hovan G Salibian,,Oxnard,California,United States,DMR
+3107971,WB6PFJ,James Branum,Jim,San Jose,California,United States,DMR
+3107972,N6RLL,Richard Labowitz Labowitz,,Laguna Hills,California,United States,DMR
+3107973,KJ6LXX,Dan E Labani,,Morgan Hill,California,United States,DMR
+3107974,KB6QCM,Charles Kreling,,Walnut Creek,California,United States,DMR
+3107975,KT6AKU,Norman Mc Anulty,Takumori,Sunnyvale,California,United States,DMR
3108001,NR2Y,Marinus Jacobs,,Colorado Springs,Colorado,United States,Portable
3108002,WA2YZT,Paul Deeth,,Golden,Colorado,United States,Mobile
3108003,K0JSC,Jeff Carrier,,Canon City,Colorado,United States,Portable #1
@@ -27278,7 +28034,7 @@ 3108813,AE0AT,James E Peterson,,Peyton,Colorado,United States,DMR
3108814,KC0OUP,Marino T Lerma,,Broomfield,Colorado,United States,DMR
3108815,KC0WKU,Billy Rose,,Colorado Springs,Colorado,United States,Other
-3108816,KE0HGS,Jeffrey B Potter,Jeff,Aurora,Colorado,United States,DMR
+3108816,KB0JEF,Jeffrey B Potter,Jeff,Aurora,Colorado,United States,DMR
3108817,KD0YMC,Robert Ray,,Colorado Springs,Colorado,United States,DMR
3108818,KJ6DMS,David M Smith,,Colorado Springs,Colorado,United States,DMR
3108819,N0RCJ,Richard Jones,,Castle Rock,Colorado,United States,DMR
@@ -27287,7 +28043,7 @@ 3108822,K0ATF,James W Winchester,Jim,Castle Rock,Colorado,United States,DMR
3108823,W0ARP,Wayne R Graves Graves,Wayne,Parker,Colorado,United States,DMR
3108824,N0CFM,Robert F Polson,,Westminster,Colorado,United States,DMR
-3108825,K0BJR,Brad Ramsey Ramsey,,Westminster,Colorado,United States,DMR
+3108825,K0BJR,Brad Ramsey,,Westminster,Colorado,United States,DMR
3108826,K0JEG,John E Grumling,Eric,Battlement Mesa,Colorado,United States,DMR
3108827,KE0BFY,Brad A Snyder,,Colorado Springs,Colorado,United States,DMR
3108828,KE0BFY,Brad A Snyder,,Colorado Springs,Colorado,United States,DMR
@@ -27321,7 +28077,10 @@ 3108856,AC0VQ,Charles A Williams,,Highlands Ranch,Colorado,United States,DMR
3108857,KG0VY,Philip Murdy,Phil,Cascade,Colorado,United States,DMR
3108858,AE0BS,Bryan Steffey Steffey,,Littleton,Colorado,United States,DMR
+3108859,AD0GI,Theodore M Amenta,,Breckenridge,Colorado,United States,DMR
3108860,KE0KHZ,Anderson Flores,,Aurora,Colorado,United States,DMR
+3108861,KD0ZVG,Jorge Basulto,,Parker,Colorado,United States,DMR
+3108862,N0THU,Steve E Fischer Fischer,,Windsor,Colorado,United States,DMR
3109001,WA2WCB,Michael D. Arsenie,,Roxbury,Connecticut,United States,Portable
3109002,N1MCC,Kit Kocielo,,Old Lyme,Connecticut,United States,Portable
3109003,N1MCC,Kit Kocielo,,Old Lyme,Connecticut,United States,Mobile
@@ -27468,7 +28227,7 @@ 3109144,W1GTT,William Covey,,East Lyme,Connecticut,United States,Mobile
3109145,W1DRC,Terry Wright,,Granby,Connecticut,United States,Portable
3109146,W1QJ,Louis Parascondola,,Danbury,Connecticut,United States,Portable
-3109147,WB2RYV,Jon Perelstein,,Stamford,Connecticut,United States,Portable
+3109147,AI1V,Jon Perelstein,,Stamford,Connecticut,United States,DMR
3109148,K1VSC,Ronald Pariseau,,Pomfret Center,Connecticut,United States,Portable
3109149,KB1ZAC,David Teagarden,,Bethel,Connecticut,United States,Portable
3109150,KA1ZMZ,Bruce Adams,,Norwich,Connecticut,United States,Portable
@@ -27919,17 +28678,27 @@ 3109596,KB1VBB,William East Granby Emergency Communications Tea,,East Granby,Connecticut,United States,DMR
3109597,N1UIS,Austin Mongillo,,Southington,Connecticut,United States,DMR
3109598,N1QLN,Michael F Sanders,Mike,New Britain,Connecticut,United States,DMR
-3109599,KC1CHB,Region 1 Demhs,,Bridgeport,Connecticut,United States,DMR
-3109600,KC1CHB,Region 2 Demhs,,Middletown,Connecticut,United States,DMR
-3109601,KC1CHB,Region 3 Demhs,,Hartford,Connecticut,United States,DMR
-3109602,KC1CHB,Region 4 Demhs,,Colchester,Connecticut,United States,DMR
-3109603,KC1CHB,Region 5 Demhs,,Waterbury,Connecticut,United States,DMR
+3109599,KC1CHB,REG-1 Demhs,,Bridgeport,Connecticut,United States,DMR
+3109600,KC1CHB,REG-2 Demhs,,Middletown,Connecticut,United States,DMR
+3109601,KC1CHB,REG-3 Demhs,,Hartford,Connecticut,United States,DMR
+3109602,KC1CHB,REG-4 Demhs,,Colchester,Connecticut,United States,DMR
+3109603,KC1CHB,REG-5 Demhs,,Waterbury,Connecticut,United States,DMR
3109604,KC1CHB,Armory Eoc Demhs,,Hartford,Connecticut,United States,DMR
3109605,KC1BWR,Gregory E Hanson,Greg,Milford,Connecticut,United States,DMR
3109606,KB1OQR,Stuart I Cobb,,Willington,Connecticut,United States,DMR
3109607,N1VID,Bruce A Weitzman,,New Britain,Connecticut,United States,CCS7
3109608,N1NWN,Jay J Mongillo,,Plantsville,Connecticut,United States,DMR
3109609,KB1QFO,Mary A Bacon,Mary,Plantsville,Connecticut,United States,DMR
+3109610,N1XTK,Keith A Randino,,Tolland,Connecticut,United States,DMR
+3109611,KC1DAE,Christian R Zerilli,,Wilton,Connecticut,United States,DMR
+3109612,K1HSN,Robert T Stathis,Bob,Southington,Connecticut,United States,DMR
+3109613,KA1ILH,Harold C Bacon,Chet,Plantsville,Connecticut,United States,DMR
+3109614,KB1TBL,David J Laliberte,,Bristol,Connecticut,United States,DMR
+3109615,KK1F,Richard Lukas,Rick,Southington,Connecticut,United States,DMR
+3109616,K1WY,William A Yoreo,,West Hartford,Connecticut,United States,DMR
+3109617,W1JEY,Roderick K Nichols,Rick,Hampton,Connecticut,United States,DMR
+3109618,KC1EBN,Evan Winslow,,Southington ,Connecticut,United States,DMR
+3109619,N1UIR,Steven G Raleigh,Steve,Plantsville,Connecticut,United States,DMR
3110001,N2VRQ,David Larson,,Bear,Delaware,United States,DMR
3110002,KB3WQH,Robert Dobie,,Newark,Delaware,United States,Portable
3110003,KC3BNZ,Street, Earl,,Claymont,Delaware,United States,Portable
@@ -27951,6 +28720,7 @@ 3110019,N3OB,Edward L Porter Porter,Ed,Millsboro,Delaware,United States,DMR
3110020,N3NSP,John A Webb Jr.,,Selbyville,Delaware,United States,DMR
3110021,AB3SD,James T Smithson Smithson,,Millsboro,Delaware,United States,DMR
+3110022,W3MLK,Martin L Kirby,,Millsboro ,Delaware,United States,DMR
3111001,W2NJS,Tom Donohoe,,Washington,District of Columbia,United States,Portable
3111002,W3DCA,Michael Kiron,,Washington,District of Columbia,United States,Mobile
3111003,WA1ESQ,Jason Wareham,,Washington,District of Columbia,United States,Portable
@@ -27960,6 +28730,7 @@ 3111007,KC9WER,Andrew Roszak,ANDY,WASHINGTON,District of Columbia,United States,DMR
3111008,KB3YVF,Matt Sparveri,,Washington,District Of Columbia,United States,DMR
3111009,KC9WER,Andrew Roszak,Andy,Washington,District of Columbia,United States,DMR
+3111010,K3CUU,Donal S Heidenblad,,Washington,District Of Columbia,United States,DMR
3111011,KC3DGK,Sara Roszak,,WASHINGTON,District of Columbia,United States,DMR
3111012,KC3GLC,Christopher Oliphant,Chris,Washington,District of Columbia,United States,DMR
3112001,KC2SKU,Walter Mentzel,,Ft. Lauderdale,Florida,United States,Portable
@@ -28240,7 +29011,7 @@ 3112277,N4RTS,Robert Strickland,,Windermere,Florida,United States,Portable
3112278,KA4HLO,Carl Jagielski,,Miami,Florida,United States,Portable
3112279,W4BFL,Gennaro Aaza,,Boca Raton,Florida,United States,Portable
-3112280,WA4KWK,John Garko,,Seminole,Florida,United States,Mobile
+3112280,WA4KWK,John Garko,,Dunedin,Florida,United States,DMR
3112281,KK4JHR,Dwayne Smith,,Port St. Lucie,Florida,United States,
3112282,N2PE,Robert Sileo,,Coral Springs,Florida,United States,Mobile
3112283,KE4CRC,Randy Michael,,Lakeland,Florida,United States,Portable
@@ -29381,6 +30152,15 @@ 3113428,W3CP,Bryan Dunn,,Cumming,Georgia,United States,DMR
3113429,WA4RDL,Robert D Lewis,Bobby,Dawsonville,Georgia,United States,DMR
3113430,KM4QHI,Bradley P Bitzkowski,Brad,Cleveland,Georgia,United States,DMR
+3113431,WB2OGY,Steven Back Back,Steve,Lawrenceville,Georgia,United States,DMR
+3113432,WD4LYV,Wayne Harrell Harrell,,Sycamore,Georgia,United States,DMR
+3113433,KM4VEW,Jimmy L Thomas,,Newnan,Georgia,United States,DMR
+3113434,KC2OBZ,Dominic G Profaci,,Roswell,Georgia,United States,DMR
+3113435,K4BNB,David M Wilson,,Grayson,Georgia,United States,DMR
+3113436,W4TGA,Barrett M Kanne,Barry,Dunwoody,Georgia,United States,DMR
+3113437,K4DO,Marion C Wall,,Kingsland,Georgia,United States,DMR
+3113438,KA3JIJ,Ron Olexa,,Gainesville,Georgia,United States,DMR
+3113439,KJ4HWX,Reinhold Wuerzner,,Monroe,Georgia,United States,DMR
3115001,NH7YS,Tad Miura,,Lihue,Hawaii,United States,Mobile
3115002,KH6DQ,Jack Tsujimura,,Honolulu,Hawaii,United States,Portable
3115003,AH6PR,Mark Pascal,,Kailua,Hawaii,United States,Portable
@@ -29605,6 +30385,9 @@ 3116047,N7BMH,Brian M Hamilton,Backroad Explorer,Mccall,Idaho,United States,DMR
3116048,KG7VMB,Patrick M Mclaughlin,Patwackp01,Boise,Idaho,United States,DMR
3116049,W6LOR,Mandi Grantham,,Middleton,Idaho,United States,DMR
+3116050,N7PGI,Bryant R Nielson,,Idaho Falls,Idaho,United States,CCS7
+3116051,KE7SYM,Derek Nielson,,Idaho Falls,Idaho,United States,CCS7
+3116052,K7OZD,Jeffrey K Moeser,,Meridian,Idaho,United States,DMR
3117001,KB9LIQ,Ben Manley,,Moweaqua,Illinois,United States,Portable
3117002,KB9LIQ,Ben Manley,,Moweaqua,Illinois,United States,V-Portable
3117003,KB9LIQ,Ben Manley,,Moweaqua,Illinois,United States,V/U Mobiles
@@ -30165,7 +30948,7 @@ 3117559,AB1Z,Warren Miedema,,Hawthorn Woods,Illinois,United States,DMR
3117560,W9CV,Ralph Tessmann,,Plainfield,Illinois,United States,DMR
3117561,K9LOT,Jerry Watts,,Frankfort,Illinois,United States,DMR
-3117562,K9BOO,Mark Anderson,,Chicago,Illinois,United States,DMR
+3117562,WT0E,Mark Anderson,,Chicago,Illinois,United States,DMR
3117563,KC9WME,Burt Krain,,Northbrook,Illinois,United States,DMR
3117564,N9KTW,Howard R Goldberg,,Libertyville ,Illinois,United States,Other
3117565,KC9ZLH,Conlan J Fay,,Chicago,Illinois,United States,DMR
@@ -30367,6 +31150,15 @@ 3117761,N9TAK,Dennis E Karnes,Sparky,Murphysboro,Illinois,United States,DMR
3117762,N9ZR,Brent D Payne,,Decatur,Illinois,United States,DMR
3117763,W9TSM,Samuel L Mc Donald,,Chicago,Illinois,United States,DMR
+3117764,KC8DHY,Colin R Vallance,,Chicago,Illinois,United States,DMR
+3117765,N9STO,Michael L Morgan,,Brighton,Illinois,United States,Other
+3117766,W9MXC,Larry H Roberts,,Godfrey,Illinois,United States,Other
+3117767,WA9RD,Dennis D Hutchins,,Bethalto,Illinois,United States,Other
+3117768,N9GY,James Guibord Guibord,Todd,Crystal Lake,Illinois,United States,DMR
+3117769,KD9BWW,Angela Guibord,,Crystal Lake,Illinois,United States,DMR
+3117770,KC9BOZ,Robert B Lewis,,Pocahontas,Illinois,United States,DMR
+3117771,AA9RH,Michael F Reisner,,Hp,Illinois,United States,DMR
+3117772,AC9NV,Martin D Mills,,Buffalo Grove,Illinois,United States,DMR
3118001,KK9EJ,Ej Caylor,,Noblesville,Indiana,United States,Portable
3118002,KG9NN,Robert Long,,Auburn,Indiana,United States,Portable
3118003,KC8PTE,David Wild,,Bloomington,Indiana,United States,Portable
@@ -30866,7 +31658,7 @@ 3118497,KB9KIK,Daniel Brown,Dan,Lafayette,Indiana,United States,
3118498,W9DF,David Filmer,Dave,W. Lafayette,Indiana,United States,
3118499,K9DEW,Dewey Thrash,DEWEY,Bristol,Indiana,United States,
-3118500,KC9AOM,Michael Dewey,Mike,Hartford City,Indiana,United States,
+3118500,KC9AOM,Michael Dewey,Mike,Bluffton,Indiana,United States,DMR
3118501,KC9ZTM,Thomas Yaryan,,Bargersville,Indiana,United States,Portable
3118502,W9NES,Timothy Delong,,Indianapolis,Indiana,United States,DMR
3118503,WA9AAV,Pat Wagner,,Shelbyville,Indiana,United States,Portable
@@ -31158,6 +31950,17 @@ 3118790,K9EO,Eugene J Orzechowicz,Gene,Highland,Indiana,United States,DMR
3118791,N9GTO,Louis Hinkel Hinkel,,Clarksville,Indiana,United States,DMR
3118792,N9GTO,Louis Hinkel Hinkel,Lou,Clarksville,Indiana,United States,DMR
+3118793,AB9QU,Bill C Carter,,Trail Creek,Indiana,United States,DMR
+3118794,KC9WXM,John D Hash,John,Manilla,Indiana,United States,DMR
+3118795,KD9HFZ,Geoff Saulmon,,Kokomo,Indiana,United States,DMR
+3118796,KD9DQG,Dustin W Hoover,,Elkhart,Indiana,United States,DMR
+3118797,KC9WXM,John D Hash,John,Manilla,Indiana,United States,DMR
+3118798,AB9QB,Christopher W Niehaus,Chris,Indianapolis,Indiana,United States,DMR
+3118799,KB9PGP,Trikam D Parmar,Trikam,Indianapolis,Indiana,United States,DMR
+3118800,KD9HEO,Christopher Chambers,Chris,Columbus,Indiana,United States,DMR
+3118801,WD8ARZ,William F Stamps,Bill,South Bend,Indiana,United States,DMR
+3118802,KF9ZA,Steven M Kremer,,Carmel,Indiana,United States,DMR
+3118803,KA9YKN,William L Spann,,Mooresville,Indiana,United States,DMR
3119002,WD0FIA,Keith Carpenter,Keith,Bridgewater,Iowa,United States,
3119003,W0DT,Donald Talaska,,Cedar Falls,Iowa,United States,Portable
3119004,KD0WY,Roger Gorzney,,CLINTON,Iowa,United States,Mobile
@@ -31343,6 +32146,8 @@ 3120108,N0PGH,Brian K Scott,,De Soto,Kansas,United States,DMR
3120109,WD0EMR,Ken Johnson,,Lawrence,Kansas,United States,Portable
3120110,WD0BWE,Don Morris,,Linwood,Kansas,United States,Portable
+3120111,WA0DTH,Terry K Reim,,Spring Hill,Kansas,United States,DMR
+3120112,KG4UHV,Rosendo Trevino Trevino,Chendo,Kansas City,Kansas,United States,DMR
3120113,KA2RZO,Rob Perez,,Lawrence,Kansas,United States,Portable
3120114,WA5RGU,Travis Bran,,Lawrence,Kansas,United States,Portable
3120115,KC0NFL,Bill Musick,,Lawrence,Kansas,United States,Portable
@@ -31374,8 +32179,10 @@ 3120141,K0JWH,Jordan Henion,,Wichita,Kansas,United States,Portable
3120142,N1LGX,Lee Grunberger,,Olathe,Kansas,United States,Portable
3120143,KA0RID,Marion Miller,,Victoria,Kansas,United States,Portable
+3120144,N0CVW,Charles W Van Way,Charlie,Fairway,Kansas,United States,DMR
3120145,KD0LFF,Floyd Craig,,Lawrence,Kansas,United States,Portable
3120146,KD0EZQ,Timothy Batt,,Russell,Kansas,United States,Portable
+3120147,N0JDS,John Schultz,,Olathe,Kansas,United States,DMR
3120148,KC0WSX,Joshua Lockett,,Wichita,Kansas,United States,Mobile
3120149,KS1EMS,Jay Holmes,,Riley,Kansas,United States,Portable
3120150,KC0ZME,Matt Whitfield,,Derby,Kansas,United States,Portable
@@ -31406,6 +32213,7 @@ 3120175,W0AIB,Laurance Staples Jr,,Shawnee Mission,Kansas,United States,Portable
3120176,N0SWP,Steve Polley,,Osawatomie,Kansas,United States,Portable
3120177,KA1EBQ,Josh Othniel,,Independence,Kansas,United States,Portable
+3120178,KK4MHI,David A Mclemore,,Overland Park,Kansas,United States,Other
3120180,N6UOP,John Harris,,Baldwin City,Kansas,United States,Portable
3120181,K0HCV,Harold Van Daveer,,Olathe,Kansas,United States,Portable
3120182,WA0CBW,Bill Brinker,,Shawnee,Kansas,United States,Portable
@@ -31632,6 +32440,16 @@ 3121214,KF4LNB,Paul R Delong,,Hagerhill,Kentucky,United States,DMR
3121215,KK4ZDZ,Matthew B Simons,Mbsimons,Louisville,Kentucky,United States,DMR
3121216,KD4SWR,Scott W Risley,,Central City,Kentucky,United States,CCS7
+3121217,KM4WRD,Eric Daniels Daniels,,Louisville,Kentucky,United States,DMR
+3121218,WD4HXE,Henry D Mills,Doyle,Frankfort,Kentucky,United States,DMR
+3121219,KW4CJ,Christopher Hancock,Chris,Vine Grove,Kentucky,United States,DMR
+3121220,KK4CZ,Brock A Persons,Brock,Louisville,Kentucky,United States,DMR
+3121221,KM4WPF,Robert M Carper,Bob,Owensboro,Kentucky,United States,DMR
+3121222,KM4WPF,Robert M Carper,Bob,Utica,Kentucky,United States,DMR
+3121223,KV4YK,Joseph L O'Bryan,Joe,Owensboro,Kentucky,United States,DMR
+3121224,KK4CZ,Brock A Persons,,Louisville45,Kentucky,United States,DMR
+3121225,KB4QNR,Charles R Rolph,,Lexington,Kentucky,United States,DMR
+3121226,KD4UKN,Danny J Logsdon,,Louisville,Kentucky,United States,DMR
3122001,KD5SSQ,Anthony Tango,,Covington,Louisiana,United States,Portable
3122002,W5ELM,Earl Morrow,,Oberlin,Louisiana,United States,Portable
3122003,KB5UDF,Jean Boudreaux,,Lafayette,Louisiana,United States,Portable
@@ -31668,6 +32486,10 @@ 3122035,WA5KBH,Deacon George Carr Carr,,Lake Charles,Louisiana,United States,DMR
3122036,KG5BTN,James E Ogden,,Bastrop,Louisiana,United States,DMR
3122037,KG5PRP ,Sandra R Griffin,Renee,West Monroe,Louisiana,United States,DMR
+3122038,W5MLE,Fred R Marshall,,Carencro,Louisiana,United States,DMR
+3122039,AF5XP,Christopher W Fuselier,,Sulphur,Louisiana,United States,CCS7
+3122040,KG5OGK,William A Hoover,,Lake Charles,Louisiana,United States,CCS7
+3122041,KD5ZZK,Andrew Z Norman,,Baton Rouge,Louisiana,United States,DMR
3123001,N1XBM,Robert Newberry,,Raymond,Maine,United States,Portable
3123002,WJ1D,James Delancy,,Saint Francis,Maine,United States,Portable
3123003,WJ1D,James Delancy,,Saint Francis,Maine,United States,Mobile
@@ -31955,6 +32777,7 @@ 3123286,W1XXV,Joseph Shortill,,East Waterboro,Maine,United States,DMR
3123287,W1LUC,Luc Perin,,Newburgh,Maine,United States,DMR
3123288,N1TZR,Donald G Trask,Don,Augusta,Maine,United States,DMR
+3123289,KA1VSC,Matthew E Webster,Matt,Biddeford,Maine,United States,DMR
3124001,N3LHD,Tom Provenza,,Davidsonville,Maryland,United States,Portable & Mobile
3124002,N3LHD,Tom Provenza,,Davidsonville,Maryland,United States,Control Station
3124003,N3LHD,Tom Provenza,,Davidsonville,Maryland,United States,Demo
@@ -32220,6 +33043,7 @@ 3124263,N3WZR,Charles A Schertle,Chuck,Westminster,Maryland,United States,DMR
3124264,KC3GCB,Marvin D Walker,,Altimore,Maryland,United States,DMR
3124265,KB2GUN,William H Gunn,,Baltimore,Maryland,United States,DMR
+3124266,W1RHW,Robert H Wilson,Harrison,Gaithersburg,Maryland,United States,DMR
3125001,W1NAU,Tim Nau,,Boston,Massachusetts,United States,Portable
3125002,KT1U,Vivian Podsiadlo,,Mendon,Massachusetts,United States,Portable
3125003,AE1C,Jim Podsiadlo,,Mendon,Massachusetts,United States,Mobile
@@ -32646,6 +33470,12 @@ 3125425,KB1NNH,Gerald D Campbell,,East Falmouth,Massachusetts,United States,Other
3125426,KD1X,Ryan D Merck,,Whitman,Massachusetts,United States,DMR
3125427,KC1FGK,Logan Brown,,Worcester,Massachusetts,United States,DMR
+3125428, KB1EKE,Marc J Tessler,Spinnolio,Westford,Massachusetts,United States,DMR
+3125429,W3STY,John J West,,Weston,Massachusetts,United States,DMR
+3125430,KC1AWI,John G Orosz,Chief,Somerville,Massachusetts,United States,DMR
+3125431,W1RBO,Glenn R Skinner,,Stow,Massachusetts,United States,DMR
+3125432,KB1ZUV,Jillian R Bellville,,Fiskdale,Massachusetts,United States,DMR
+3125433,KC1DDF,Derek W Ashbridge,,Carver,Massachusetts,United States,DMR
3126001,N8CN,Joe Erlewein,,Traverse City,Michigan,United States,Portable
3126002,KD8EYF,David Kierzkowski,,Detroit,Michigan,United States,Portable#1
3126003,W8FSM,Fred Moses,,Fenton,Michigan,United States,Portable #1
@@ -33606,8 +34436,20 @@ 3126959,W8MAR,Jeremy J Balduc,,Ironwood,Michigan,United States,CCS7
3126960,WY8A,Larry L Smith,,Wyandotte,Michigan,United States,DMR
3126961,W8SOX,Laurence E Stocking,,St. Clair Shores,Michigan,United States,Other
+3126962,W8SOX,Laurence E Stocking,,St. Clair Shores,Michigan,United States,DMR
3126963,KD8NPV,Jeffrey R Romence,Jeff,Kalamazoo,Michigan,United States,DMR
3126964,KD4ALC,Ricky W Willbanks,,Holland,Michigan,United States,DMR
+3126965,N8VIL,Sean M Davis,,Lincoln Park,Michigan,United States,DMR
+3126966,KD8JGN,Adam C Collard,,Eaton Rapids,Michigan,United States,DMR
+3126967,N8NOE,Jeffrey Swiger,,Waterford,Michigan,United States,DMR
+3126968,KE8EEG,Douglas E Giese,Doug,Macomb,Michigan,United States,DMR
+3126969,KD5RSA,Ron Lewis,Ron,Saline,Michigan,United States,DMR
+3126970,N8VIL,Sean M Davis,,Lincoln Park,Michigan,United States,DMR
+3126971,KE8ARH,Sergio D Hoppe,,Dorr,Michigan,United States,DMR
+3126972,KB8KZM,David L Hoppe,,Dorr,Michigan,United States,DMR
+3126973,KE8CRP,Lisa M Hoppe,,Dorr,Michigan,United States,DMR
+3126975,KC8RGO,Vance B Nelson Nelson,,Houghton,Michigan,United States,DMR
+3126976,KB8QAS,James A Soles,,Hudsnville,Michigan,United States,DMR
3127001,N0NMZ,Shep Shepardson,,Roseville,Minnesota,United States,Mobile
3127002,NH7CY,Jason Ballesteros,,Saint Paul,Minnesota,United States,Portable
3127003,NH7CY,Jason Ballesteros,,Saint Paul,Minnesota,United States,Demo
@@ -33637,10 +34479,10 @@ 3127027,KA0KMJ,John Czech,,Brooklyn Park,Minnesota,United States,Mobile
3127028,KE0FHF,Parker Wright,,Carver,Minnesota,United States,Portable
3127029,K0LTZ,Francis Husnik,,Vadnais Heights,Minnesota,United States,DMR
-3127030,NQ0G,Christopher Wolf,,Le Center,Minnesota,United States,Portable
+3127030,NQ0G,Christopher Wolf,Chris,Le Center,Minnesota,United States,DMR
3127031,N0PQK,John Rowan,,Faribault,Minnesota,United States,Control Station
3127032,KA0JWC,Scott Blixt,,Montgomery,Minnesota,United States,Portable
-3127033,KQ0RS,Dwight Gibson,,COON RAPIDS,Minnesota,United States,Portable
+3127033,KQ0RS,Dwight Gibson,Sparky,White Bear Lake,Minnesota,United States,DMR
3127034,W0LT,Tim Payne,,Eagan,Minnesota,United States,Mobile
3127035,KC0DGY,Kent Peterson,,Minneapolis,Minnesota,United States,Portable
3127036,KC0BBK,Galen Erickson,,Falcon Heights,Minnesota,United States,Portable
@@ -33794,7 +34636,7 @@ 3127185,KC0TSY,King W Fung,,Falcon Heights,Minnesota,United States,DMR
3127186,KE0DDX,Barry K Brigham,,Mantorville,Minnesota,United States,DMR
3127187,KC0DME,Jerome A Erickson,,Minnetonka,Minnesota,United States,DMR
-3127188,KD0WUT,Brian D Kunkel,Brian,Clearwater,Minnesota,United States,DMR
+3127188,N0RLY,Brian D Kunkel,Brian,Clearwater,Minnesota,United States,DMR
3127189,KE0DDX,Barry K Brigham,,Mantorville,Minnesota,United States,DMR
3127190,KL0FOX,Keith R Ellis,Vulan,Eagan,Minnesota,United States,DMR
3127191,KE0IFT,Richard D Dworsky,Rick,St Louis Park,Minnesota,United States,Other
@@ -33839,7 +34681,7 @@ 3127232,AA0IJ,Jeff Walker Walker,Jeff,Chanhassen,Minnesota,United States,DMR
3127233,KD0WHU,Alex M Hartman,,Saint Cloud,Minnesota,United States,DMR
3127234,KC0OIO,Joseph R Heitzinger Heitzinger,Joseph,Saint Paul,Minnesota,United States,DMR
-3127235,KQ0RS,Dwight Gibson Gibson,Sparky,White Bear Lake,Minnesota,United States,DMR
+3127235,KQ0RS,Dwight Gibson,Sparky,White Bear Lake,Minnesota,United States,DMR
3127236,KD0IWA,Max Mcdougall,,Saint Paul,Minnesota,United States,DMR
3127237,KE0FEN,Michael J Engel,,Brooklyn Center,Minnesota,United States,DMR
3127238,KD0MLO,Harold Middleton,Harold,Brooklyn Center,Minnesota,United States,DMR
@@ -33888,6 +34730,14 @@ 3127281,N0JSA ,Jon S Asplund,,St. Cloud ,Minnesota,United States,DMR
3127282,KD0BMV,Gregory H Howell,,Cokato,Minnesota,United States,DMR
3127283,KE0IYN,Collin D O,,Oak Park Heights,Minnesota,United States,DMR
+3127284,KC0YFX,Chris R Schultz,,Saint Cloud,Minnesota,United States,DMR
+3127285,K0CQW,John R Edwardson,,New London,Minnesota,United States,DMR
+3127286,KB0UEU,Kevin M Plummer,,Burnsville,Minnesota,United States,DMR
+3127287,KE0KCX,James Ernest Blair Blair,Jim,Eagan,Minnesota,United States,DMR
+3127288,KE0KCX,Jim Blair Blair,,Eagan,Minnesota,United States,DMR
+3127289,K0VFR,John E Lafnd,,St Cloud,Minnesota,United States,DMR
+3127290,W0REW,Roy E Wood Wood,,Big Lake,Minnesota,United States,DMR
+3127291,K6RCO,Robert Oden,Bob,Brainerd,Minnesota,United States,DMR
3128001,KF5MWE,Gary White,,Quitman,Mississippi,United States,Portable
3128002,K5WSM,Lemuel Smith,,Fulton,Mississippi,United States,
3128003,KD4VVZ,General Dailey,,Lucedale,Mississippi,United States,Portable
@@ -34132,6 +34982,12 @@ 3129194,KE0FVN,Archiebald Croux,Archie,Belton,Missouri,United States,DMR
3129195,KE0GRG,Howard C Hoyt,,Lees Summit,Missouri,United States,DMR
3129196,KD0RSX,Forrest Creason,,Belton,Missouri,United States,DMR
+3129197,N0EIR,David R Salaman,Dave,Kansas City,Missouri,United States,CCS7
+3129198,WB0PLW,John B Monson,,Lee'S Summit,Missouri,United States,DMR
+3129199,AB0YO,Bruce W Barr,Mrgadgets,Lees Summit,Missouri,United States,DMR
+3129200,KD0PBZ,Andrew Brady,,Salem,Missouri,United States,DMR
+3129201,KE0KHQ,Kenneth N Oelger,,St. Charles,Missouri,United States,CCS7
+3129202,KA0TER,Daniel L Busse,Dan,Saint Louis,Missouri,United States,DMR
3130001,K7MT,Bill Erhardt,Bill,Helena,Montana,United States,DMR
3130002,KG6MQE,Jim Robinson,,Hamilton,Montana,United States,Portable
3130003,AE7OD,Jeff Cherry,,HAMILTON,Montana,United States,Portable
@@ -34175,6 +35031,7 @@ 3130041,KG7SYW,William S White,,Helena,Montana,United States,DMR
3130042,KA7MHP,Dale D Osborne,,Helena,Montana,United States,DMR
3130043,N7MHQ,Douglas L Bruggemeyer,,Missoula,Montana,United States,DMR
+3130044,N7PWC,William W Loman,,Billings,Montana,United States,DMR
3131001,K0BOY,Doug Halbert,,Omaha,Nebraska,United States,Portable
3131002,K0BOY,Doug Halbert,,Omaha,Nebraska,United States,Mobile
3131003,WB0QQK,Frank Vondra,,Omaha,Nebraska,United States,Portable
@@ -34268,7 +35125,7 @@ 3131091,N0NSD,Jerry L Rotschafer,JERRY R,Denton,Nebraska,United States,DMR
3131092,W0TVS,Brad Case,Brad,Bellevue,Nebraska,United States,DMR
3131093,KA0VNY,Kevin P Hill,,Gretna,Nebraska,United States,DMR
-3131094,WB0SIP,William D Seier,Bill,Lincoln,Nebraska,United States,DMR
+3131094,W0IOO,William D Seier,Bill,Lincoln,Nebraska,United States,DMR
3131095,N0UP,Stephen J Schmitz,Steve,Papillion,Nebraska,United States,DMR
3131096,K0OQL,Joel A Stacy,,Omaha,Nebraska,United States,DMR
3131097,KC0BDZ,Karl H Davlin,,Omaha,Nebraska,United States,DMR
@@ -34404,7 +35261,7 @@ 3132103,N7BWN,Bruce Newfelt,,Reno,Nevada,United States,Portable
3132104,KG7AIQ,John Klein,,Reno,Nevada,United States,Mobile
3132105,N9GGG,George Tucker,,Las Vegas,Nevada,United States,Mobile TRBO-6
-3132106,W7KDX, Mario Iasevoli,,Minden,Nevada,United States,Portable
+3132106,NY7DX,Mario Iasevoli,,Minden,Nevada,United States,DMR
3132107,W7VD,Robert Dickerson,,Reno,Nevada,United States,Portable
3132108,KE7JMN,Edgardo Montenegro,,Reno,Nevada,United States,Portable
3132109,WA6EPD,Lou Meiss,,Las Vegas,Nevada,United States,Portable
@@ -34708,10 +35565,14 @@ 3132407,K7UAS,John D Dunn,John,Reno,Nevada,United States,DMR
3132408,K7UAS,John D Dunn,,Reno,Nevada,United States,DMR
3132409,AF7CE,Eric J Christianson,Chris,Cold Springs,Nevada,United States,DMR
-3132410,N5TYH,Johnny M Sappington,,Boulder City,Nevada,United States,DMR
+3132410,N5TYH,Mark Sappington,,Boulder City,Nevada,United States,DMR
3132411,KD7QDG,James A Deane,,Minden,Nevada,United States,DMR
3132412,KF7EEC,Michael H Cox,,N Las Vegas,Nevada,United States,DMR
3132413,AF7CE,Eric J Christianson,Chris,Cold Springs,Nevada,United States,DMR
+3132414,AC9GX,Ralf Mueller,,Minden,Nevada,United States,DMR
+3132415,W5SAT,Brad Schumacher,,Las Vegas,Nevada,United States,DMR
+3132416,KI6JBX,Mark J Morgan,,Reno,Nevada,United States,DMR
+3132417,KI6VEJ,Francisco G Silva,,Las Vegas,Nevada,United States,DMR
3133001,NE1B,Bill Barber,,Hudson,New Hampshire,United States,Portable
3133002,NE1B,Bill Barber,,Hudson,New Hampshire,United States,Mobile
3133003,WA2IYO,Pat Barber,,Hudson ,New Hampshire,United States,
@@ -34992,6 +35853,9 @@ 3133279,W1DAY,David E Day,Dave,Epping,New Hampshire,United States,DMR
3133280,W1QKR,Mark W Barker,,Boscawen,New Hampshire,United States,DMR
3133281,N1DQQ,Dennis C Donah,Pawnsax,Hudson,New Hampshire,United States,DMR
+3133282,N1EZ,Steven R Berry,Steve,Londonderry,New Hampshire,United States,DMR
+3133283,KC1EJK,Scott A Talbot,,Westmoreland,New Hampshire,United States,DMR
+3133284,N2LAW,Adam L Jacobs,,Brookline,New Hampshire,United States,DMR
3134001,K2XTS,Alex Chadis-ny Sysop,,Hoboken,New Jersey,United States,Portable
3134002,K2XTS,Alex Chadis-ny Sysop,,Hoboken,New Jersey,United States,Mobile
3134003,KC2WNG,Israel Goldstein,,East Brunswick,New Jersey,United States,Portable
@@ -35605,6 +36469,11 @@ 3134611,KD2FDX,Michael L Cleckner,Mike,Ewing,New Jersey,United States,CCS7
3134612,WS2Q,Harvey Klein,,Morristown ,New Jersey,United States,DMR
3134613,N2PTR,James O Schneider,,Monroe,New Jersey,United States,DMR
+3134614,K2DNR,Robert A Dubenezic,,Newark,New Jersey,United States,DMR
+3134615,KC2MMC,Terry Rutledge,,Newark,New Jersey,United States,DMR
+3134616,N2TYB,Daniel Conti Conti,,Ridgefield,New Jersey,United States,DMR
+3134617,KD2KYZ,Zalmy Rosenberg,,Lakewood,New Jersey,United States,DMR
+3134618,W2SJW,Scott J Wilson,,Washington ,New Jersey,United States,DMR
3135001,N5BG,Larry Griggs,,Virden,New Mexico,United States,Mobile
3135002,N5BG,Larry Griggs,,Virden,New Mexico,United States,Mobile
3135003,N5UBJ,William Van Huss,,Farmington,New Mexico,United States,Mobile
@@ -35927,7 +36796,7 @@ 3136250,KD2MAJ,Cristian Balan,,Plattsburgh,New York,United States,Portables
3136251,KB2PSM,Robert Robinson,,Long Beach,New York,United States,Portable
3136252,N2LBT,Dennis Hudson,,Albany,New York,United States,Portable
-3136253,KD2GAX,Bill Milonas,,Flushing,New York,United States,
+3136253,W2NMA,Bill Milonas,,Flushing,New York,United States,DMR
3136254,W2PB,Paul Beeman,,East Islip,New York,United States,Portable
3136255,KC2CYC,Maggie Macdonald,,Mattituck,New York,United States,Portable
3136256,KB2SCS,John Blowsky,,Ronkonkoma,New York,United States,Portable
@@ -36350,7 +37219,6 @@ 3136674,N2IFU,Gerardo Arias,,NYC,New York,United States,Portable
3136675,WA2MZZ,David Rosner,,Irvington,New York,United States,Portable
3136676,KD2JVN,Kyle Weiss,,Palisades,New York,United States,Portable
-3136677,K2RHK,Alan Rose,,New York,New York,United States,Mobile
3136678,N2KTS,John Pomponio,,YONKERS,New York,United States,Portable
3136679,KC2ICF,Michael Nelson,,Maryland,New York,United States,Portable
3136680,KC2DYY,Cesar Perez,,BROOKLYN,New York,United States,Portable
@@ -37734,7 +38602,7 @@ 3139060,KD8QBH,James Swanson,,Oregon,Ohio,United States,Portable
3139061,W8WDS,William Schramm,,Cincinnati,Ohio,United States,Portable
3139062,KD8WYA,Kevin Mcmurray,,Hamilton,Ohio,United States,Portable
-3139063,W8MRL,Myrl Lindsay,,Hamilton,Ohio,United States,Portable
+3139063,W8MRL,Rob Lindsay,,Hamilton,Ohio,United States,DMR
3139064,W8DJB,Dean Baker,,Cincinnati,Ohio,United States,Portable
3139065,WB8NUT,Duffy Beischel,,Cincinnati,Ohio,United States,Portable
3139066,K7DN,Matt Yellen,,Urbana,Ohio,United States,Portable
@@ -38468,7 +39336,7 @@ 3139799,K8ZGW,Donald A Ritchie,,Twinsburg,Ohio,United States,DMR
3139800,KM4WEK,Bob Bennett Bennett,Bob,Dallas,Ohio,United States,DMR
3139801,K8BVX,Warren G Matthew,,Fairfield,Ohio,United States,DMR
-3139802,WX8TOK,Scott Harshman,,Middletown,Ohio,United States,DMR
+3139802,WX8SMH,Scott Harshman,,Middletown,Ohio,United States,DMR
3139803,KB2SAI,Ruben Clark,,Mount Vernon,Ohio,United States,DMR
3139804,KG6NFJ,Eric Vinande,,Centerville,Ohio,United States,DMR
3139805,NI8T,Stephen P Schauer,Steve,Dayton,Ohio,United States,DMR
@@ -38551,6 +39419,28 @@ 3139883,AC8JT,Thomas Wright Wright,Thomas,East Liverpool,Ohio,United States,DMR
3139884,KC8YJJ,Gary L Rosenlieb,,Toronto,Ohio,United States,DMR
3139885,KB8RWZ,Paul R Rawlings,,Akron,Ohio,United States,DMR
+3139886,AA8IA,Michael B Tindor,Mike,Carrollton,Ohio,United States,DMR
+3139887,N8OND,Scott Foschke,,Brunswick,Ohio,United States,DMR
+3139888,KD8MFX,Jody L Zink,,Toledo,Ohio,United States,DMR
+3139889,KE8BMX,Matthew S Gersper,,Geneva,Ohio,United States,DMR
+3139890,KE8FFK,Michael J Hooper,Hoopty,Toledo,Ohio,United States,DMR
+3139891,N8DEA,Dean B Benninger,,Cleveland,Ohio,United States,DMR
+3139892,W8DMM,Dave Mattingly Mattingly,Dave,Mentor,Ohio,United States,Other
+3139893,WB8YYS,Gregg Gary,,Kent,Ohio,United States,DMR
+3139894,KD8POW,Matthew Carey,,Lorain,Ohio,United States,DMR
+3139895,N8DEA,Dean Benninger Benninger,Dean,Cleveland,Ohio,United States,DMR
+3139896,N8NOQ,Richard Nemer,Rick,Fairlawn,Ohio,United States,DMR
+3139897,K8WBL,Timothy M Kass,,Cincinnati,Ohio,United States,DMR
+3139898,K8TAT,Tim Trombley,,Westerville,Ohio,United States,DMR
+3139899,KD8SCL,John B Stemen,Bret,Pataskala,Ohio,United States,DMR
+3139900,KE8CQC,Scott A Vargovich,,Maumer,Ohio,United States,DMR
+3139901,KC8VJK,Craig E James,,Rio Grande,Ohio,United States,DMR
+3139902,KX8W,William G Schaffer,,Akron,Ohio,United States,DMR
+3139903,KC8ARD,William W Goodwin,,Akron,Ohio,United States,DMR
+3139904,KB8KMC,Michael S Murton,,Eastlake,Ohio,United States,DMR
+3139905,KA8ZNY,Thomas O Taft,,Columbus,Ohio,United States,CCS7
+3139906,K8TAT,Timothy Trombley Trombley,,Westerville,Ohio,United States,DMR
+3139907,KC8DDQ,Paul T Williams,,Columbus,Ohio,United States,DMR
3140001,AE5DN,Mark Matalik,,Oklahoma City,Oklahoma,United States,Portable
3140002,AE5DN,Mark Matalik,,Oklahoma City,Oklahoma,United States,Mobile
3140003,KE5BDG,Leah Matalik,,Oklahoma City,Oklahoma,United States,Portable
@@ -38985,6 +39875,19 @@ 3140432,KD5WPU,Ronald R Sweeten,,Bartlesville,Oklahoma,United States,DMR
3140433,K5KBA,James S Broom,,Tulsa,Oklahoma,United States,DMR
3140434,WE5Z,Norbert Suchanek,Norbie,Norman,Oklahoma,United States,Other
+3140435,N1LLK,Wayne Tetlow Tetlow,Bryan,Duncan,Oklahoma,United States,DMR
+3140436,W5TJO,Theodore J Oyler,,Watonga ,Oklahoma,United States,DMR
+3140437,W5BM,Daniel A Woods,San,Tulsa,Oklahoma,United States,DMR
+3140438,KE4KGU,David P Wooten,,Oklahoma City,Oklahoma,United States,DMR
+3140439,N5YEI,Jeffrey T Dalrymple,,Jay,Oklahoma,United States,DMR
+3140440,W1PDQ,Christopher R Hadley,,Tecumseh,Oklahoma,United States,DMR
+3140441,WX5NWM,Nwm National Weather Museum Amateur Radio Cl,Nwm,Norman,Oklahoma,United States,DMR
+3140442,W1PDQ,Christopher R Hadley,Gator,Tecumseh,Oklahoma,United States,DMR
+3140443,K5WTX,Markus D Thomerson,,Piedmont,Oklahoma,United States,DMR
+3140444,KG5GQ,Richard M Small,Rich,Depew,Oklahoma,United States,DMR
+3140445,KG5QEY,Ryan Dawkins,,Yukon,Oklahoma,United States,DMR
+3140446,AG5HT,Bradley Wallet,Brad,Norman,Oklahoma,United States,DMR
+3140448,WB5IEK,Donald W Bruner,Don,Mcloud,Oklahoma,United States,DMR
3141001,N7MAQ,Jim Hanrahan,,Woodbum,Oregon,United States,Portable
3141002,N7MAQ,Jim Hanrahan,,Woodbum,Oregon,United States,Mobile
3141003,KC7HBU,David Rogers,,Portland,Oregon,United States,Portable
@@ -39100,6 +40003,8 @@ 3141113,N7TLY,Randal E Casper,,Astoria,Oregon,United States,DMR
3141114,WJ6FOX,Joshua Fox,,Central Point,Oregon,United States,DMR
3141115,KD7THQ,Lee White,,Lebanon,Oregon,United States,DMR
+3141116,KA7RMY,Marc A Taylor,,Sherwood,Oregon,United States,DMR
+3141117,KG7ULH,Robert N Farquhar,,Portland,Oregon,United States,DMR
3142001,N3ST,Bryan Dorbert,,Littlestown,Pennsylvania,United States,Portable
3142002,K4MTP,Mike Priebe,,Effort,Pennsylvania,United States,Mobile
3142003,N3OBL,Frank Smoyer,,Pittsburgh,Pennsylvania,United States,Portable
@@ -39432,7 +40337,7 @@ 3142330,K3LSY,Kelsey Seymour,,Wellsboro,Pennsylvania,United States,DMR
3142331,KB2GGS,Robert T Worrall,,Easton,Pennsylvania,United States,DMR
3142332,K3TI,Berks Amateur Radio Club Berks Amateur Radio Club,Barc,Reading,Pennsylvania,United States,DMR
-3142333,K3NXU,John J La Martina,,Shrewsbury,Pennsylvania,United States,DMR
+3142333,K3NXU,John J La Martina,,York,Pennsylvania,United States,DMR
3142334,KC2ABV,Jose M Vargas,,Bethlehem,Pennsylvania,United States,DMR
3142335,KB2GGS,Robert T Worrall,Todd,Eason,Pennsylvania,United States,DMR
3142336,NJ3Z,Lawrence H Bennett,,Eagleville,Pennsylvania,United States,DMR
@@ -39521,12 +40426,16 @@ 3142420,KB3YBW,Timothy M Horne,Tim,Chester,Pennsylvania,United States,DMR
3142421,KB2ITR,Michael Cintron,Mike,E-Stroudsburg,Pennsylvania,United States,Other
3142422,KE3IN,Bradford J Bobbitt,Brad,Etters,Pennsylvania,United States,DMR
-3142423,K3NXU,John Lamartina,John,Shrewsbury,Pennsylvania,United States,DMR
+3142423,K3NXU,John Lamartina,John,York,Pennsylvania,United States,DMR
3142424,N3RMM,Angela M Treffinger,,Etters,Pennsylvania,United States,DMR
3142425,KA3MYI,Michael G Senica,,Warrington,Pennsylvania,United States,DMR
3142426,W3ZW,Andrew W Mcluckie,Drew,Wayne,Pennsylvania,United States,DMR
3142427,W3ZW,Andrew W Mcluckie,Drew,Wayne,Pennsylvania,United States,DMR
3142428,W3KKC,Kevin K Custer,Kuggie,Warren,Pennsylvania,United States,DMR
+3142429,N3NCG,Tim H Longan,,Milton,Pennsylvania,United States,DMR
+3142430,N3KCR,David Swaney,David P.,Mifflinburg,Pennsylvania,United States,DMR
+3142431,N3NCG,Tim H Longan,,Milton,Pennsylvania,United States,DMR
+3142433,KC3BMZ,Joshua Alberts,Josh,Pittsburgh,Pennsylvania,United States,DMR
3144001,KB1ISZ,William Carlson,,Smithfield,Rhode Island,United States,Hytera Portable
3144002,KB1ISZ,William Carlson,,Smithfield,Rhode Island,United States,Hytera Loaner
3144003,KC2FMI,Joseph Miklovic,,North Kingstown,Rhode Island,United States,Portable
@@ -39561,6 +40470,7 @@ 3144032,WB4SON,Bob Beatty Beatty,Bob,North Kingstown,Rhode Island,United States,DMR
3144033,K1YBE,Paul H Fredette,Flyer,Portsmouth,Rhode Island,United States,DMR
3144034,N1CKT,Charles E Kesson,Chuck,Newport,Rhode Island,United States,DMR
+3144035,N1MGC,Matthew Grace,Matt,Coventry,Rhode Island,United States,DMR
3145001,KN4SWB,Matthew Littleton,,Easley,South Carolina,United States,Portable #1
3145002,KN4SWB,Matthew Littleton,,Easley,South Carolina,United States,Portable #2
3145003,N4LRD,Lane Donald,,Pendleton,South Carolina,United States,Portable
@@ -39852,7 +40762,7 @@ 3145289,KD5VIP,John Wilson,,Simpsonville ,South Carolina,United States,Portable
3145290,NV4I,Joe Schmitt,,Goose Creek,South Carolina,United States,Mobile
3145291,KM4DRN,Darrel Mckeown,,North Charleston,South Carolina,United States,Portable
-3145292,KM4MIP,Joshua Smith,,Greer,South Carolina,United States,Mobile
+3145292,N4SMH,Joshua Smith,,Greer,South Carolina,United States,DMR
3145293,KD4TXX,John A Durland,,Charleston,South Carolina,United States,Portable
3145294,KD4TXX,John A Durland,,Charleston,South Carolina,United States,Mobile
3145295,W4LGR,Larry Ross,,Bluffton,South Carolina,United States,Portable
@@ -40189,6 +41099,10 @@ 3145631,K8HID,Gary D Foster,,Inman,South Carolina,United States,DMR
3145632,KO4ZB,Tony Bisogna,,Whitmire,South Carolina,United States,DMR
3145633,W3BRB,Beverly Boyd Boyd,,Dorchester,South Carolina,United States,DMR
+3145634,W3MIF,Donald A Zupon,Donald,North Augusta,South Carolina,United States,DMR
+3145635,W4ZMJ,Jamey L Busbee,,Lexington,South Carolina,United States,DMR
+3145636,N4LYB,Daniel M Schmiedt,Dan,Westminster,South Carolina,United States,DMR
+3145637,KW4BET,Brian E Timms,,Chester,South Carolina,United States,DMR
3146001,KG6JLB,Thomas Rohwer,,Madison,South Dakota,United States,Portable
3146002,AD0BN,Aaron Locker,,Sioux Falls,South Dakota,United States,Portable
3146003,KD0QYR,Dustin Schnabel,,Sioux Falls,South Dakota,United States,Non-DMR
@@ -40693,6 +41607,11 @@ 3147492,N4KV,John P Gager,,Knoxville,Tennessee,United States,DMR
3147493,KK4WHN,Timothy A Rhodes,,Alcoa,Tennessee,United States,DMR
3147494,N4MAW,Michael Wright,Michael,Lebanon,Tennessee,United States,DMR
+3147495,KI4HYF,William R Condray,,Jackson,Tennessee,United States,DMR
+3147496,W4BBH,Barry L Hodgin,,Tellico Plains,Tennessee,United States,DMR
+3147497,N4KAC,Gregory A Taylor,,Knoxville,Tennessee,United States,DMR
+3147498,W9LMJ,Sam Dillingham Dillingham,,Gallatin,Tennessee,United States,DMR
+3147499,AA4BP,William B Powers,Brandon,Madisonville,Tennessee,United States,DMR
3148001,W5EBQ,Jim Hopper,,Dallas,Texas,United States,
3148002,N4MSE,Jeff Alexander,,Dallas,Texas,United States,
3148003,KE4QLC,Cliff Jenkins,,Commerce,Texas,United States,Portable
@@ -40965,7 +41884,7 @@ 3148270,KB2WF,Alan Isaachsen,,Houston ,Texas,United States,Portable
3148271,KG5AHI,Corey Driver,,Haltom City,Texas,United States,Mobile
3148272,WA5TXI,Thomas Ketchum,,Fort Worth,Texas,United States,Portable
-3148273,W5HFT,Tommy Hamilton,,Brownfield,Texas,United States,Portable
+3148273,KI5DX,Richard N Lenoir,,Paris,Texas,United States,DMR
3148274,WJ5Z,Roy Sherow,,Tyler,Texas,United States,Mobile
3148275,W5EXY,Julian Sergeant,,port aransas,Texas,United States,Mobile
3148276,K5YUI,Mark Anthony Deleon,,Alice,Texas,United States,Mobile
@@ -41493,7 +42412,6 @@ 3148798,K5ILS,Robert A Mcneill,,Katy,Texas,United States,Other
3148799,W3DH,David A Hammer,Dave,Mcdade,Texas,United States,DMR
3148800,AG5GY,Thomas J Edmonson,Tom,College Station,Texas,United States,CCS7
-3148801,WB5NIA,Bobby Woodson,Bob,Brownfield,Texas,United States,DMR
3148802,AG5GY,Thomas J Edmonson,Tom,College Station,Texas,United States,DMR
3148803,N5ECG,Ronald G Waltisperger,,Round Rock,Texas,United States,DMR
3148804,W5BRY,Roscoe F St John,,Salado,Texas,United States,DMR
@@ -41590,6 +42508,18 @@ 3148895,KG5LQZ,James R Coapland,Coap,San Antonio,Texas,United States,DMR
3148896,KD5DNT,David A Seglem,,Allen,Texas,United States,DMR
3148897,N5MHI,Jon Penner,,Austin,Texas,United States,DMR
+3148898,KC5MOL,Javier E Moreno,Xman,Brownsville,Texas,United States,DMR
+3148899,KF5SEL,Bianca Serna,Bianca,Brownsville,Texas,United States,DMR
+3148900,W5RAH,Robert A Hold,,Cypress,Texas,United States,DMR
+3148901,KC5MOL,Javier E Moreno,,Brownsville,Texas,United States,DMR
+3148902,KF5RVR,Steven Mcdermott,Steven,Crowley,Texas,United States,DMR
+3148903,K5MSZ,Matt Zavadsky,Matt,Fort Worth,Texas,United States,DMR
+3148905,AB5JK,Jimi R Klaevemann,,Uvalde,Texas,United States,DMR
+3148906,KC5NLP,Michael A Contreras,,Harlingen,Texas,United States,DMR
+3148907,N9PBJ,Jorge D Patino,,Universal City,Texas,United States,DMR
+3148908,AD5MD,Ernesto M Ong,Ernie,Brownsville,Texas,United States,DMR
+3148909,KC5RY,Jorge Patino,,Selma,Texas,United States,DMR
+3148910,KG5JBC,Jerry W Wade,,Azle,Texas,United States,DMR
3149001,N6DVZ,Roger Davies,,West Jordan,Utah,United States,Portable
3149002,KC7WSU,Chris Andrist,,Lehi,Utah,United States,DMR
3149003,WR7O,Douglas Datwyler,,Sandy,Utah,United States,Portable
@@ -41758,6 +42688,10 @@ 3150073,KB1ZYP,Colleen D,,Rutland,Vermont,United States,DMR
3150074,KA1LDL,Miles M Silk,,Barre,Vermont,United States,DMR
3150075,K1EUH,Frank C Buswell,,Essex Junction,Vermont,United States,DMR
+3150076,N1NPQ,William R Jalbert,,West Rutland,Vermont,United States,DMR
+3150077,KB1WIO,David M Bishop,,Rutland,Vermont,United States,DMR
+3150078,N1NPQ,William R Jalbert,Bill,West Rutland ,Vermont,United States,DMR
+3150079,KA1ILH/1,Harold C Bacon,Chet,Cabot,Vermont,United States,DMR
3151001,N8RK,Ralf Klingler,,Hayes,Virginia,United States,
3151002,W4YP,Bob Spindle,,Haymarket,Virginia,United States,Portable
3151003,W4YP,Bob Spindle,,Haymarket,Virginia,United States,Control Station
@@ -42214,6 +43148,22 @@ 3151456,WA4ONG,James Dearras,Jim,Richmond,Virginia,United States,DMR
3151457,KE2N,Kenneth Jamrogowicz,Ken,Haymarket,Virginia,United States,CCS7
3151458,KO4VET,Jeffery C Groves,Jeff,Bealeton,Virginia,United States,DMR
+3151459,N4LSP,Michael L Baker,Mike,Moseley,Virginia,United States,DMR
+3151460,N3KDX,Thomas G Surface,Tom,Chesterfield,Virginia,United States,CCS7
+3151461,KM4WTA,Mark D Sowder,,Kilmarnock,Virginia,United States,DMR
+3151462,KI4CMX,Thomas A Floss,,Amherst,Virginia,United States,DMR
+3151463,NG7H,Jess J Rutherford,Jofo,Herndon,Virginia,United States,DMR
+3151464,KC3BBE,Nicholas Sapienza,Nick,Blacksburg,Virginia,United States,DMR
+3151465,KJ4JNP,Don Bailey,Beetle,Rockingham,Virginia,United States,DMR
+3151466,K4HYE,Les Sears Sears,Les,Rich Creek,,Virginia,United States,DMR
+3151467,WB4WHH,Claude N Mc Kinney,,Victoria,Virginia,United States,DMR
+3151468,KM4WTA,Mark D Sowder,,Kilmarnock,Virginia,United States,Other
+3151469,KE2N,Ken Jamrogowicz,Ken,Haymarket,Virginia,United States,DMR
+3151470,KB3TOH,David M Nolton,,Ashburn ,Virginia,United States,DMR
+3151471,W4GNE,George E Ackinclose,,Chesterfield,Virginia,United States,DMR
+3151472,N4HY,Robert W Mc Gwier,Bob,Elliston,Virginia,United States,DMR
+3151473,KD4JJS,William W Ward,,Salem,Virginia,United States,DMR
+3151474,KC5NXR,John S Bour,,Richmond,Virginia,United States,DMR
3153001,KD7AKB,Chris Palmer,,Bremerton,Washington,United States,Mobile
3153002,NF6C,Gregory Krantz,,Orting,Washington,United States,Mobile
3153003,NF6C,Gregory Krantz,,Orting,Washington,United States,Portable
@@ -42341,7 +43291,7 @@ 3153125,KE7SSS,Alex ,Alex,Woodinville,Washington,United States,
3153126,KE7SST,Peter Sohn,Peter,Woodinville,Washington,United States,Non-DMR
3153127,KE7SSU,Liz Sohn,Liz,Woodinville,Washington,United States,Non-DMR
-3153128,KD7KDC,Steve Scott,Steve,Deer Park,Washington,United States,Portable
+3153128,AB7MR,Steve Scott,Steve,Deer Park,Washington,United States,DMR
3153129,AB7NI,Gary Webbenhurst,Gary,Mead,Washington,United States,DMR
3153130,KG7SKB,Jeff Harris,Jeff,Woodland,Washington,United States,Mobile
3153131,AF6FR,Mark Obrien,Mark,Seattle,Washington,United States,
@@ -42516,6 +43466,13 @@ 3153300,KI7HPT,Daniel Manchado Gonzalez,,New Orchard,Washington,United States,DMR
3153301,KC9YOG,Ian Finder,Tr1nitr0n,Seattle,Washington,United States,DMR
3153302,KE7SFF,Terence Chan,,Redmond,Washington,United States,DMR
+3153303,KG7UCE,George Mclain,Adam,Edmonds,Washington,United States,DMR
+3153304,KA7UZU,David R Taylor,,Tumwater,Washington,United States,DMR
+3153305,WH6EGM,Monte R Vories,,Tacoma,Washington,United States,DMR
+3153306,AF7MG,Anthony J Terranova,A.J.,Renton,Washington,United States,DMR
+3153307,N3KPU,Mike Ping,,Tacoma,Washington,United States,DMR
+3153308,KI7DMJ,Leeray Perez,,Ferndale,Washington,United States,DMR
+3153309,AG7S,Raymond C Phillips,Ray,Pasco,Washington,United States,DMR
3154001,WV8VFD,Tyler Lewis,,Parkersburg,West Virginia,United States,Portable
3154002,WB3JPB,Bruce Conley,,Inwood,West Virginia,United States,Portable
3154003,WB8WKO,Mike Vargo,,Mount Hope,West Virginia,United States,Portable
@@ -42645,6 +43602,11 @@ 3154127,K8CVW,Carl Williams,,Brandywine,West Virginia,United States,DMR
3154128,KE8BEE,Harley S Justice,,Madison,West Virginia,United States,DMR
3154129,KD8MFG,John M Crump,,Princewick,West Virginia,United States,DMR
+3154130,KD8MFG,John M Crump,,Princewick,West Virginia,United States,DMR
+3154131,KE8ENC,Tristan N Morgan,,Switzer,West Virginia,United States,DMR
+3154132,K8JMH,Jeffrey M Holstein,Jeff,Point Pleasant,West Virginia,United States,DMR
+3154133,KD8YNY,Dean A Thompson,,Morgantown,West Virginia,United States,DMR
+3154134,KD8SKZ,Levi M Anderson,,Weirton,West Virginia,United States,DMR
3155001,N9NLZ,Craig Ochs,,Brookfield,Wisconsin,United States,Portable
3155002,KB9VLL,Dan Albert,,South Milwaukee,Wisconsin,United States,Portable
3155003,KB9ENO,William Niemuth,,Hortonville,Wisconsin,United States,Portable
@@ -42700,7 +43662,7 @@ 3155053,WX9KVH,Kyle Van Hoogen,,Burlington,Wisconsin,United States,Portable
3155054,KD9AEZ,Matthew Zimmermann,,Mukwonago,Wisconsin,United States,Portable
3155055,KC9UHI,Matthew Denamur,,Little Chute,Wisconsin,United States,Mobile
-3155056,AC9GX,Ralf Mueller,,Ripon,Wisconsin,United States,Portable
+3155056,K9AYL,Albert J Rognsvoog,Bert,Mount Pleasant,Wisconsin,United States,DMR
3155057,KP3JOS,Jose A Caballero,,Oak Creek,Wisconsin,United States,Portable
3155058,N9NRA,Andrew Meitzner,,Wausau,Wisconsin,United States,Portable
3155059,N9OIG,Drissel Kevin,,Union Grove,Wisconsin,United States,Other
@@ -42858,6 +43820,11 @@ 3155212,N0EEM,Edward E Murray,Eddie,Superior,Wisconsin,United States,DMR
3155213,N4UCM,Douglas W Lofreddo,,Waunakee,Wisconsin,United States,DMR
3155214,K9AYL,Albert Rognsvoog,Bert,Mount Pleasant,Wisconsin,United States,DMR
+3155215,KD9ANT,Ryan F Bresnahan,,Woodruff,Wisconsin,United States,CCS7
+3155216,W9JOL,Christopher D Tarr,,Mukwonago,Wisconsin,United States,DMR
+3155217,KD9HDR,Blake W Byrd,,Cumberland,Wisconsin,United States,DMR
+3155218,K9LRD ,Lawrence R Dudzinski,,Elroy,Wisconsin,United States,DMR
+3155219,WI9HRO,HRO Milwaukee Employees ARC,,Milwaukee,Wisconsin,United States,DMR
3156001,KC7YRA,Brad Lutz,,Casper,Wyoming,United States,Portable
3156002,KC7YRA,Brad Lutz,,Casper,Wyoming,United States,Mobile
3156003,KC0ZHF,Rodney Waln,,Cheyenne,Wyoming,United States,Portable
@@ -42974,6 +43941,7 @@ 3301006,WP4RD,Alfonso Torres,,Camuy,San Juan,Puerto Rico,DMR
3301007,KP4BKD,Hector V De Jesus Rosado,,Camuy Pr,San Juan,Puerto Rico,CCS7
3301008,KP3IV,Ivan Valentin Jimenez,,Manati,San Juan,Puerto Rico,DMR
+3301009,KP3A,AsdrúBal LúGaro LúGaro,Al,Camuy,San Juan,Puerto Rico,DMR
3303001,WP4PSG,Ramon A Maldonado,Taz,Toa Alta,Guayanabo,Puerto Rico,DMR
3304001,KP4EEC,Esteban Echevarria,Stevi,Penuelas,Ponce,Puerto Rico,DMR
3305001,NP4DS,David Vega,,aguadilla,Mayaguez,Puerto Rico,DMR
@@ -43030,6 +43998,7 @@ 3341050,XE1GYY,Margarita Jauregui Diaz,Xe1gyy,Guadalajara,Jalisco,Mexico,DMR
3341051,XE1GYY,Margarita Jauregui Diaz,Xe1gyy,Guadalajara,Jalisco,Mexico,DMR
3341052,XE1FXT,Jose Luis Nu�Ez Garcia,Jose Luis,Atotonilco El Alto,Jalisco,Mexico,DMR
+3341053,XE1GUU,Asociacion De Radioaficionados Jaliscienses,Arjac,Guadalajara,Jalisco,Mexico,DMR
3342001,XE2PMP,Pablo Mejia,,Chihuahua,Chihuahua,Mexico,Portable
3342002,XE2JEG,Eduardo Gallegos,,Chihuahua,Chihuahua,Mexico,Mobile
3342003,XE2JEG,Eduardo Gallegos,,Chihuahua,Chihuahua,Mexico,Portable
@@ -43122,6 +44091,7 @@ 3708023,HI8JRG,Rafael Genao,Rafael Genao,Hollywood Florid,Distrito Nacional,Dominican Republic,DMR
3708024,HI8V,Victor Baez (Vic),,Santo Domingo, Este,Distrito Nacional,Dominican Republic,DMR
3708025,HI8W,Waldo Pons Cabral,,Santo Domingo,Distrito Nacional,Dominican Republic,DMR
+3708026,HI8EGP,Alberto Emilio Garcia Perdomo,,Santo Domingo,Distrito Nacional,Dominican Republic,DMR
3740001,9Y4DH,Dexter Harroo,,San Juan,,Trinidad and Tobago,Loaner
3740002,9Z4RG,Ravindranath Goswami,Robby,Port-Of-Spain,Woodbrook,Trinidad and Tobago,DMR
3740004,9Y4G7HEK,Andy Owen,,Port Of Spain,Woodbrook,Trinidad and Tobago,DMR
@@ -43165,6 +44135,7 @@ 4253006,4Z4ZQ,Ronen Pinchuk,,Haifa,Haifa,Israel,DMR
4253007,4X1ON,Ezra Ofer,Ofer,Afula,Haifa,Israel,Other
4253008,4X4MF,Amos Sobel,,Haifa,Haifa,Israel,DMR
+4253009,4Z7DIA,Avishay Dinar,,Haifa,Haifa,Israel,DMR
4254001,4Z5YR,Yoram Rotbach,,Modiin,Central,Israel,Non-DMR
4254002,4X5AA,Dotan Tal,,Tel-Mond,Central,Israel,Portable
4254003,4X1HF,Albo Avinoam,,Mazkeret Batya,Central,Israel,DMR
@@ -43185,6 +44156,7 @@ 4254018,4X1KS,Mark Rosenberg,,Hashmonaim ,Central,Israel,DMR
4254019,4Z9III,Jim Janssen,Jimbo,Yavne,Central,Israel,DMR
4254020,4X1TS,Ted Seitles,,Netanya,Central,Israel,DMR
+4254021,4Z5AB,Ronen Bachar,,Rehovot,Central,Israel,DMR
4255001,4Z5VK,Remco Meeder,,eilat,Southern,Israel,Portable
4255002,4Z5VK,Meeder Remco,,eilat,Southern,Israel,Portable
4255003,4X5AS,Sasson Amiel,,eilat,Southern,Israel,Portable
@@ -43194,6 +44166,7 @@ 4255007,4Z7DFI,Kobi Terno,,Beer-Sheva,Southern,Israel,DMR
4255008,4X1TI,Efraim Rosenzweig,Efi,Beer Sheva,Southern,Israel,DMR
4255009,4Z7FED,Doron Federman,,Ashkelon,Southern,Israel,DMR
+4255010,4X6KM,Michael Kantar,,Kiriat Malachi,Southern,Israel,DMR
4320001,EP2KL,Khalil Ladjevardi,,Tehran,Teheran,Iran,Portable
4400001,JJ0NNU,Toshirou Maruyama,,niigata,Shinetsu,Japan,Other
4400002,JJ0NNU,Toshirou Maruyama,,niigata,Shinetsu,Japan,Other
@@ -43325,6 +44298,10 @@ 4407023,JH7ZER,Aomori Tsukimiryou,Tsuki,Aomori City,Tohoku,Japan,DMR
4407024,JK7BEJ,Hiroyuki Mamada,,Hachinohe,Tohoku,Japan,CCS7
4407025,JE7ZDC,Shinya Takase,Shin,Fukushima,Tohoku,Japan,CCS7
+4407026,JR7YVT,Toshihiro Momoi,Hiro,Sendai City,Tohoku,Japan,DMR
+4407027,JA7ROC,Norishige Sasaki,,Tome,Tohoku,Japan,CCS7
+4407028,JR7YVT,Toshihiro Momoi,Hiro,Sendai City,Tohoku,Japan,DMR
+4407029,JO7EZH,KiHiroshi Sudo,,Ichinoseki,Tohoku,Japan,CCS7
4408001,JI8KVH,Yoshiyasu Akehi,,Kitami,Hokkaido,Japan,Other
4408002,JA8IBG,Konishi Masashi,,Sapporo,Hokkaido,Japan,DMR
4409001,JH9IIA,Ryusho Tanabe,,Tsuruga,Hokuriku,Japan,Mobile
@@ -43429,6 +44406,9 @@ 4500068,HL5BTF,Yuni Kim,Yuni,Busan,Busan Si,Korea S, Republic of,DMR
4500069,HL5KY,Yun Jae Jo,Joe,Busan,Busan Si,Korea S, Republic of,DMR
4500070,HL5IDV,Rhee Kyonggu,Rhee,Busan,BuSan Si,Korea S, Republic of,CCS7
+4500071,DS5KCI,Kwon Teaho,Kwon,Busan,BuSan Si,Korea S, Republic of,CCS7
+4500072,6K5CNR,Jeong In Song,6k5cnr,Ulsan,UlSan Si ,Korea S, Republic of,CCS7
+4500073,6K5CNR,In Song Jeongmy,,Ulsan,Ulsan Si ,Korea S, Republic of,CCS7
4501001,6K2GBE,Seongjin Oh,,Suwon,Chungeheongbuk,Korea, Republic of,
4501002,DS4GYP,Won-gil Jung,,KwangJu,KWangJu Si,Korea S, Republic of,Other
4501003,DS5TUK,Joon Ho Shin,,Suseonggu,Daeku Si,Korea S, Republic of,DMR
@@ -43443,6 +44423,11 @@ 4501012,DS5ZFN,In-No Lee,Lee,Daegu Si,DaeKu Si,Korea S, Republic of,CCS7
4501013,6K5RIW,Soo-Geun Kim,Kim,Daegu Si,DaeKu Si,Korea S, Republic of,CCS7
4501014,6K5UKC,Goung-Ho Joung,Joung,Daegu Si,DaeKu Si,Korea S, Republic of,CCS7
+4501015,DS5ZUP,Geun-Jae Jung,Jung,Daegu Si,DaeKu Si,Korea S, Republic of,CCS7
+4501016,6K5WJU,Su-Won Lee,Lee,Daegu Si,DaeKu Si,Korea S, Republic of,CCS7
+4501017,6K5ZUH,Jae Hun Lee,Korea,Daegu-Si,Daeku Si,Korea S, Republic of,DMR
+4501018,6K5XZE,Chul Hwa Jung,Chul,Daegu,Daeku Si,Korea S, Republic of,DMR
+4501019,6K5XZE,Chul Hwa Jung,Chul,Daegu,Daeku Si,Korea S, Republic of,DMR
4502001,HL3EHN,Man-soo Han,,Daejeon,DaeJeon Si,Korea S, Republic of,Other
4502002,DS3PIC,Kwanghee Cho,,Daejeon Si,Daejeon Si,Korea S, Republic of,Other
4502003,HL2KRV,Kim Byung-Su,Cobiman,Incheon,InChon Si,Korea S, Republic of,Other
@@ -43459,6 +44444,7 @@ 4504009,DS1OUY,Minho Kwon,Minho,Daegu,KyungSang Buk-Do,Korea S, Republic of,CCS7
4504010,6K5DIO,Cho Wook Rae,,Kimhae,KyungSang Nam-Do,Korea S, Republic of,CCS7
4504011,HL5PDQ,Park Seho,,Gimhae,Kyungsang Nam-Do,Korea S, Republic of,DMR
+4504012,DS5BSH,Kim Jin Pyo,,Cheongdo,Kyungsang Buk-Do,Korea S, Republic of,DMR
4505001,HL5BRP,Hwang Chong-Gil,,Hadong-Gun,Chungchong Nam-Do,Korea S, Republic of,DMR
4505005,HL3WQ,Jae Gook Jeon,,Cheonan,Chungchong Nam-Do,Korea S, Republic of,CCS7
4505006,HL3KK,Kwang Ho Kim,,Cheonansi,Chungchong Nam-Do,Korea S, Republic of,DMR
@@ -43466,6 +44452,7 @@ 4505008,DS3LYG,Kimhuihwan Huihwan,Ds3lyg,Seo San- Si,ChungChong Nam-Do,Korea S, Republic of,Other
4505009,HL3EYJ,Kwanghee Cho,,Chungju,ChungChong Buk-Do,Korea S, Republic of,DMR
4505010,DS5RRV,Sangil Yeo,,Seosan,Chungchong Nam-Do,Korea S, Republic of,DMR
+4505013,DS3PEJ,Min-Hyung Choi,,Non-San,ChungChong Nam-Do,Korea S, Republic of,DMR
4506001,HL2KZJ,Kwang-ok Yoo,,GunPO-SI,KyungKi-Do,Korea S, Republic of,Other
4506002,HL2UJ,Kim Gil Tae,,CHEONG PYEONG,KyungKi-Do,Korea S, Republic of,DMR
4506003,DS1AWE,Joel(Seung) Han,,Dongducheon,Kyungki-Do,Korea S, Republic of,Other
@@ -43487,6 +44474,8 @@ 4506019,6K2JOQ,Mr. Kyungmin (Kenneth) Cho,,Yongin-Si, Bojung-Do,Kyungki-Do,Korea S, Republic of,DMR
4506020,6K2FRY,Bong In Jung,,Pyungtaek,Kyungki-Do,Korea S, Republic of,DMR
4506021,HL2OHM,Wonki Kim,,Ansan,Kyungki-Do,Korea S, Republic of,DMR
+4506022,DS1AWE,Joel(Seung) Han,,Dongducheon,Kyungki-Do,Korea S, Republic of,DMR
+4506023,6K2FRY,Bong In Jung,,Pyungtaek,Kyungki-Do,Korea S, Republic of,DMR
4507001,HL1RR,Lim Seong Gyu Lim,Hope,Seoul,Seoul,Korea S, Republic of,DMR
4507002,DS1RHP,Lee Seung-Jae,Ds1rhp,Seoul,Seoul,Korea S, Republic of,DMR
4507003,DS3DNC,Jongil Kim,,Seoul,Seoul,Korea S, Republic of,CCS7
@@ -43883,6 +44872,8 @@ 4661035,BM4KSB,Felix Chan,Bm4ksb,Taichung,Central Taiwan,Taiwan,DMR
4661036,BM4KSB,Felix Chan,Bm4ksb,Taichung,Central Taiwan,Taiwan,DMR
4661037,BX3AH,Lin Miracle,Bx3ah,Taoyuan,Northern Taiwan,Taiwan,DMR
+4661038,BX1AAK,Hsu Chia Cheng Hsu Chia Cheng,Hsu Chia Cheng,Keelung,Northern Taiwan,Taiwan,DMR
+4661039,BM2MQL,Laurence Chang,Glazing,Taipei,Taipei,Taiwan,DMR
5020001,9W2VHN,Hafiznaimi Yahya,HAFIZNAIMI,PENANG,Spratly Is.,Malaysia,Mobile
5022001,9M2AOC,Alexander Oon,,Bayan Lepas,Penang,Malaysia,Portable
5022002,9M2SF,See Fung Lee,,ISland Glades,Penang,Malaysia,Portable
@@ -43948,6 +44939,7 @@ 5051036,VK1EM,Mark C C,,Canberra,Australian Capital Territory,Australia,DMR
5051037,VK2MWP,Andrew Geddes,,Canberra,Australian Capital Territory,Australia,DMR
5051038,VK1OC,Robert Cook,Owen,Canberra,Australian Capital Territory,Australia,DMR
+5051039,VK1EA,Carlos Peco,Carlos,Canberra,Australian Capital Territory,Australia,DMR
5052001,VK2YLO,John Reeves,,Goonellabah,New South Wales,Australia,Mobile
5052002,VK2LK,Matt Ames,,Sydney,New South Wales,Australia,DMR
5052003,VK2YVA,Mal Alexander,,Campbelltown,New South Wales,Australia,
@@ -44145,6 +45137,14 @@ 5052196,VK2PPM,Peter Mills,,Gosford,New South Wales,Australia,DMR
5052197,VK2WIH,Hunter Joyce,,Lake Macquarie,New South Wales,Australia,DMR
5052198,VK2WIH,Hunter Wicen Nsw Inc,,Newcastle,New South Wales,Australia,DMR
+5052199,VK2MW,Mal Whitby,,Quakers Hill,New South Wales,Australia,DMR
+5052200,VK2YGM,Peter R Hopkins,,Wangi Wangi,New South Wales,Australia,DMR
+5052201,VK2OMD,Owen Duffy,,Bowral,New South Wales,Australia,DMR
+5052202,VK2EMI,Mark C_,,Queanbeyan,New South Wales,Australia,DMR
+5052203,VK2KN,Peter Kohlmayer,Pete,Outback,New South Wales,Australia,DMR
+5052204,VK2FH,Peter Tolmie,,Baulkham Hills,New South Wales,Australia,DMR
+5052205,VK2TEQ,Greg J Mcculkin,,Blacktown,New South Wales,Australia,DMR
+5052206,VK2SRD,Steven Deskovic,,Dural,New South Wales,Australia,DMR
5053001,VK3XDE,Paul Engler,,Melbourne,Victoria,Australia,Mobile
5053002,VK3TE,Peter Brennan,,Karingal,Victoria,Australia,Portable
5053003,VK3AJ,Peter Chaplin,,Upwey,Victoria,Australia,Mobile
@@ -44246,6 +45246,8 @@ 5053099,VK3JJL,Jack Lilley,Sfs,Bendigo,Victoria,Australia,DMR
5053100,VK3AJO,Joe Primerano,,Endeavour Hills,Victoria,Australia,DMR
5053101,VK3WV,Dennis Sillett,,Melbourne,Victoria,Australia,DMR
+5053102,VK3CSJ,Clint S Jeffrey,Clint,Narre Warren South,Victoria,Australia,Other
+5053103,VK3CE,Ross Pittard,,Bendigo,Victoria,Australia,DMR
5054001,VK4QF,Andrew Chapman,,Toowoomba,Queensland,Australia,DMR
5054002,VK4QF,Andrew Chapman,,Toowoomba,Queensland,Australia,DMR
5054003,VK4QF,Andrew Chapman,,Toowoomba,Queensland,Australia,DMR
@@ -44354,6 +45356,7 @@ 5054107,VK4LGW,Graeme Willox,,Brisbane,Queensland,Australia,DMR
5054108,VK4TV,Roger Wilson,,Hervey Bay,Queensland,Australia,DMR
5054109,VK4BO,Zacharias Paul Smit,Paul,Brisbane,Queensland,Australia,DMR
+5054110,VK4LC,Peter Kohlmayer,Pete,Brisvegus,Queensland,Australia,DMR
5055001,VK5FBFB,Brendan Blackman,,adelaide,South Australia,Australia,Portable
5055002,VK5FBFB,Brendan Blackman,,Adelaide ,South Australia,Australia,DMR
5055003,VK5RZ,Stephan Forka,,Seaford Rise,South Australia,Australia,Other
@@ -44370,6 +45373,7 @@ 5055014,VK5SFA,Steve Adler,,Adelaide,South Australia,Australia,DMR
5055015,VK5BAR,Adelaide Hills Amateur Radio Societ Ahars Inc,,Adelaide,South Australia,Australia,DMR
5055016,VK5BW,Barry R Williams,,Bridgewater,South Australia,Australia,DMR
+5055017,VK5BJE,Maurice John Dawes,,Adelaide,South Australia,Australia,DMR
5056001,VK6ZTN,Joe Nevin,,Perth,Western Australia,Australia,Portable
5056002,VK6TWO,Heath ,,Perth,Western Australia,Australia,Mobile
5056003,VK6ZTN,Joe Nevin,,Perth,Western Australia,Australia,Portable #2
@@ -44427,6 +45431,8 @@ 5056055,VK6MST,Allan Huitema,,Perth,Western Australia,Australia,DMR
5056056,VK6NCS,Gary Rentenaar,,Perth,Western Australia,Australia,DMR
5056057,VK6VZS,Dave Botha Botha,,Perth,Western Australia,Australia,DMR
+5056058,VK6LSB,Stuart Bedford,Stuie,Ballajura,Western Australia,Australia,DMR
+5056059,VK6PCB,Carsten J Bauer,,Perth,Western Australia,Australia,DMR
5056100,VK100ANZ,Hmas Stirling - Gard,,Garden Island,Western Australia,Australia,John McNamee VK6AG
5057001,VK7YXX,Don Nolder,,Richmond,Tasmania,Australia,
5057002,VK7JA,John Andrewartha,,Scottsdale,Tasmania,Australia,Mobile
@@ -44576,6 +45582,9 @@ 5200110,HS2XTL,Prasaudsub O,Sub,Muang,Bangkok,Thailand,CCS7
5200111,HS8MSJ,Krissana Kamkaew,Eat,Phuket,Phuket,Thailand,DMR
5200112,E24SUR,Hakim Leewamoh,Kim,Bangkok,Bangkok,Thailand,Other
+5200113,HS9STL,Mr. Chayakorn Ongkaloy,Pom,Songkhla,Nakhon,Thailand,DMR
+5200114,HS8NDE,Guntapith Visuthsiri,Biw,Phuket,Phuket,Thailand,CCS7
+5200115,E20WMJ,Yodsapon Poonsawad,Jay,Phuket,Phuket,Thailand,CCS7
5206001,HS0ZET,Ralf Klingler,,Nongkrot,Nakhon Sawan,Thailand,Portable
5206002,HS3LIQ,Wiwat Metheekasiwat,,Nakhonratchasima,Nakhon Ratchasima,Thailand,
5250001,9V1JC,Wiyanto Jacob,Jacob,Singapore,Singapore,Singapore,DMR
@@ -44955,11 +45964,12 @@ 6470036,FR1DI,BRUNO VALEAMA,BRUNO,RAVINE DES CABRIS,,Reunion,
6470037,FR4FE,JMARC LEGROS,MARC,Saint-Louis,,Reunion,
6470038,FR4PY,Liste orange Liste orange,Lucas,Liste orange,,Reunion,
+6470039,FR4FH,Lilian CADET,Lilian,Saint-Pierre,,Reunion,
6491001,V51JP,Werner ,Werner,Windhoek,Karas,Namibia,
6491002,V51V,Victor ,Victor,Windhoek,Khomas,Namibia,
6530001,3DA0MF,Jean Louis Haye ,JL,Manzini,,Swaziland,DMR
6551001,ZS1JPL,Johan Lehmann,Johan,Simons Town,Cape,South Africa,
-6551002,ZS1AG,Alexander Bauer,AG,Cape Town,Cape,South Africa,
+6551002,ZS6AGB,Alexander Bauer,AG,Johannesburg,Gauteng/Mpumalanga,South Africa,
6551003,ZS1V,Paul Van Spronsen,Paul,Cape Town,Cape,South Africa,
6551004,ZS1VDV,Jan Van der Vyver,Jan,Stellenbosch,Cape,South Africa,
6551005,ZS1MTF,Matt Feinstein,Matt,Cape Town,Cape,South Africa,
@@ -44972,6 +45982,7 @@ 6551012,ZS1YT,Jakobus Erasmus,Rassie,Strand,Cape,South Africa,
6551013,ZS1ZW,Jason Codd,Jason,Cape Town,Cape,South Africa,
6551014,ZS1OSK,Ian Stanbridge,Ian,Cape Town,Cape,South Africa,
+6551015,ZS1K,Kobus Conradie,Kobus,Kraaifontein,Cape,South Africa,
6552001,ZS2ABF,Peter Tottle,Peter,East Loindon,Eastern Cape,South Africa,
6554001,ZS4OIL,Mark Warner,Mark,Sasolburg,Freestate,South Africa,
6555001,ZS5GR,Tony ,Tony,Durban,Kwazulu-Natal,South Africa,Mobile
@@ -45103,6 +46114,8 @@ 6556076,ZS6JMG,Jaco McGrillen,Jaco,Meyerton,Gauteng/Mpumalanga,South Africa,
6556077,ZS6EY,Hennie Van Rensburg,Hennie,Vanderbijlpark,Gauteng/Mpumalanga,South Africa,
6556078,ZS6IIX,Pieter Hendrik Rood,Henry,Benoni,Gauteng/Mpumalanga,South Africa,
+6556081,ZS6JMN,Gerhard Fourie,Gerhard,Pretoria,Gauteng/Mpumalanga,South Africa,
+6556082,ZS6ZN,Natalia Nevskaya,Natalia,Gauteng,Gauteng/Mpumalanga,South Africa,
7020001,V31MP,Martin Pask,,Benque,San Ignacio,Belize,
7020002,V31DL,Andre Scholz,,Cayo,Cayo District,Belize,Portable
7020003,V3V,Dr Scholz,,Cayo,Cayo District,Belize,Club Fleet
@@ -45243,6 +46256,7 @@ 7241048,PY1LUA,Jasiel Alves Dos Santos,,Rio De Janeiro,Rio De Janeiro,Brazil,DMR
7241049,PU1YCP,Marcio Queiroz,,Rio De Janeiro,Rio de Janeiro,Brazil,DMR
7241050,PY1VHF,Anderson Colla,,Macae,Rio De Janeiro,Brazil,DMR
+7241051,PY1EGG,Carlos R. M. Levy .,Carlos,Rio De Janeiro,Rio de Janeiro,Brazil,Other
7242001,PY2EQJ,Julio Ramos,,Casa Branca,Sao Paulo,Brazil,
7242002,PY2IV,Igor Munhoz,,Sao Jose do Rio Pret,Sao Paulo,Brazil,
7242003,PU2TKL,Gilvin Santos,,Osasco,Sao Paulo,Brazil,
@@ -45306,6 +46320,21 @@ 7242065,PU2TSN,AntóNio Santana Dos Santos,Santana,Mogi GuaçU,Sao Paulo,Brazil,DMR
7242066,PY2DZA,Dennis E Zasnicoff,,Sao Paulo,Sao Paulo,Brazil,Other
7242067,PY2RN,Eduardo Erlemann,,Vinhedo,Sao Paulo,Brazil,DMR
+7242068,PY2AG,Fernando Goncalo,,SãO Paulo,Sao Paulo,Brazil,DMR
+7242069,PU2LHQ,Fabiano Formiga,Pascoal,Atibaia,Sao Paulo,Brazil,DMR
+7242070,PU2KIH,Hamilton Peixoto,Peixoto,TaubatÉ,Sao Paulo,Brazil,DMR
+7242071,PU2KIH,Hamilton Peixoto,Peixoto,TaubatÉ,Sao Paulo,Brazil,DMR
+7242072,PU2MRS,Aparecido Moreira,CidÃO,Barueri,Sao Paulo,Brazil,DMR
+7242073,PU2KTX,Clayton Amante,Cara De Concha,Taubaté,Sao Paulo,Brazil,DMR
+7242074,PU2KTX,Clayton Amante,Cara De Concha,Taubaté,Sao Paulo,Brazil,DMR
+7242075,PU2PYI,Paulo Henrique Santos,PaulãO,Taubaté,Sao Paulo,Brazil,DMR
+7242077,PY2AG,Fernando Gon�Alo,,Sao Paulo,Sao Paulo,Brazil,DMR
+7242078,PY2IAO,Jose Carlos,,Sao Paulo,Sao Paulo,Brazil,DMR
+7242079,PU2LQS,Jose Ariovaldo Da Cunha,,BragançA Paulista,Sao Paulo,Brazil,DMR
+7242080,PY2BH,Agnaldo Soares,,Sao Paulo,Sao Paulo,Brazil,DMR
+7242081,PU2RZZ,Ricardo Dos Reis,,Itapevi,Sao Paulo,Brazil,DMR
+7242082,PY2IAO,Jose Carlos,,Sao Paulo,Sao Paulo,Brazil,DMR
+7242083,PY2AMX,Rogerio Leao,Roger,Sao Paulo,Sao Paulo,Brazil,DMR
7243001,PU3DSS,Delvair Dos Santos Soares,,Granado,Rio Grande do Sul,Brazil,Mobile
7243002,PY3DCC,Daniel Conceicao,,Porto Alegre,Rio Grande do Sol,Brazil,Mobile
7243003,PY3NY,Andr� Luis Rodrigues,André,SãO Leopoldo,Rio Grande Do Sol,Brazil,Other
@@ -45313,6 +46342,7 @@ 7243005,PY3CC,Jorge Luiz Marinoni,,Sao Leopoldo,Rio Grande Do Sol,Brazil,DMR
7243006,PY3OR,JoãO Antonio Raul,,Canoas,Rio Grande Do Sol,Brazil,DMR
7243007,PU3WIW,Vicente Pellin,,Antonio Prado,Rio Grande Do Sol,Brazil,CCS7
+7243008,PP5AK,Joao Antonio Raul,Raul,Florianopolis,Santa Catarina,Brazil,DMR
7244001,PY4CEP,Carlos Pereira,,Divinopolis,Minas Gerais,Brazil,Mobile
7244002,PY4AC,Claudio Abalen,,Nova Lima,Minas Gerais,Brazil,Mobile
7244003,PY4CQQ,Rogerio Luiz,,Divinopolis,Minas Gerais,Brazil,
@@ -45357,6 +46387,7 @@ 7246005,PP6PP,Jose Fernando,,Aracaju,Bahia,Brazil,DMR
7246006,PU6USA,Barbieri Diego,Diego Usa,Lauro De Freitas,Bahia,Brazil,DMR
7246007,PP6CFN,Carlos Nascimento,Nascimento,Ns. Do Socorro / Ser,SERGIPE,Brazil,CCS7
+7246008,PP6AJM,Alberto Jorge Mesquita Da Costa,Mesquita,Aracaju,Sergipe,Brazil,DMR
7247001,PU7MKI,Fabrizio Bratta,,Fortaleza,Caera,Brazil,Portable
7249001,PY7JD,Jadilson João Dos Santos,,Caruaru,Permambucos,Brazil,Mobile
7249002,PY7JD,Jadilson João Dos Santos,,Caruaru,Permambucos,Brazil,Mobile
@@ -45378,6 +46409,9 @@ 7249018,PY7MS,Marcos Cezar De Sena Carvalho,,Jaboatao Dos Guarara,Pernambuco,Brazil,CCS7
7249019,PS7MW,Christian Bayerlein,,Natal,Pernambuco,Brazil,CCS7
7249020,PR7BCP,Antonio (Tota) L. Garcia,Tota,Joao Pessoa,Pernambuco,Brazil,CCS7
+7249021,PY7FRS,Florisval Dos Santos,Rodrigues,Garanhuns,Pernambuco,Brazil,DMR
+7249022,PU7RCH,Aristofanes Fernandes Da Rocha Barros,Rocha,Recife,Pernambuco,Brazil,DMR
+7249023,PY7MBL,Manoel Benvinuto . ,,Caruaru,Pernambuco,Brazil,DMR
7300001,CD6CNV,Nicolas Vallejos,Nico,Rio Bueno,Others,Chile,DMR
7300002,CE1WOY,Mauricio Romero,Mauro,Arica,Others,Chile,DMR
7300003,CD6CNV,Claudio Vallejos,Nicolas,Rio Bueno,Others,Chile,DMR
@@ -45421,11 +46455,13 @@ 7301038,CD1FJW,Francisco Javier Villalobos Palma,Droptic,Antofagasta,Antofagasta,Chile,DMR
7301039,CE1WOY,Mauricio Romero,Mauro,Calama,Antofagasta,Chile,DMR
7301040,CE1GCJ,Juan Daniel Godoy Codorni�,Nito,Calama,Antofagasta,Chile,DMR
+7301041,CE1UWL,Luis Guillermo Morales Arcaino,Willy,Copiapo,Atacama,Chile,DMR
7301042,CA1JNN,Jhon NuñEz,,Calama,Antofagasta,Chile,DMR
7301043,CA1ROY,Rodrigo Garcia,Roro,Calama,Antofagasta,Chile,DMR
7301044,CA1IZA,Ivan Alonso Zapata Alderete,,Calama,Antofagasta,Chile,DMR
7301045,CE1REA,Raul Eduardo Araya Vega,,Calama,Antofagasta,Chile,DMR
7301046,CE1VSV,Victor Valdivi,Victorcalama,Calama,Antofagasta,Chile,DMR
+7301047,CE1RXY,Jose Orlando Maldonado,,Copiapo,Atacama,Chile,DMR
7302001,CE2LS,Radio Club Of La Serena,,La Serena,Cuarta,Chile,
7302002,CE2NXW,Jerardo Peralta,,La Serena,Elqui,Chile,Mobile
7302003,CA2DMR,Ruben Dario Munoz,,La Serena,Elqui,Chile,Mobile
@@ -45543,8 +46579,11 @@ 7302116,CD2SBV,Florentino Romero,Cd2sbv,Valparaiso,Valparaiso,Chile,DMR
7302117,CE2IYR,Gustavo A. Pacheco Bianchetti,Ce2iyr,Vina Del Mar,Valparaiso,Chile,DMR
7302118,CE2NGN,Claudio Chamorro,Ce2ngn,ViñA Del Mar,Valparaiso,Chile,DMR
-7302119,CE2IYR,Gustavo A. Pacheco Bianchetti,Ce2iyr,ViñA Del Mar,Valparaiso,Chile,DMR
7302120,CE2FTF,Andres Fuentes,Andres,Valparaiso,Valparaiso,Chile,DMR
+7302121,CE2OXH,Marco Antonio,Molina Castillo,ViñA Del Mar,Valparaiso,Chile,DMR
+7302122,CE2STU,Stuardo Tirado,Stuardo,La Serena,Coquimbo,Chile,DMR
+7302123,CD2EAK,Esteban Alvarez,Esteban,La Serena,Coquimbo,Chile,DMR
+7302124,CD2FZC,Ferid Zamur C.,Ferid,La Serena,Coquimbo,Chile,DMR
7303001,CA3SOC,Raul Romero,,Santiago,Reg.Metr. de Santiago,Chile,Mobile
7303002,CE3YP,George ,George,Jorge,Reg.Metr. de Santiag,Chile,
7303003,CE3BFE,Mario Reyne,romeopapa,Lampa,Reg.Metr. de Santiago,Chile,Otro
@@ -45595,9 +46634,16 @@ 7303049,CD3KHO,Arturo A. Medina,,Santiago,Reg.Metr. de Santiago,Chile,DMR
7303050,CD3OPD,Cesar Mucherl,,Santiago,Reg.Metr. de Santiago,Chile,DMR
7303051,CE3KW,Pedro Pablo Salvatierra,,Puente Alto,Reg.Metr. de Santiago,Chile,DMR
+7303052,CE3OEE,Jorge Toro,Jorgito,Santiago,Reg.Metr. De Santiago,Chile,DMR
+7303053,CA3PRJ,Juan Fernandez,Juan,Santiago,Reg.Metr. de Santiago,Chile,DMR
+7303054,CE3TRO,Victor Lopez,VíCtor ,Santiago ,Reg.Metr. De Santiago,Chile,DMR
+7303055,CD3FTS,Felipe Turrieta,,Maipu,Reg.Metr. De Santiago,Chile,DMR
7304001,CE4CSC,Carlos SáEz ,,Cauquenes,Maule,Chile,DMR
7304002,CA4KRC,Jonathan Valderrama,,Chillan Viejo,Maule,Chile,DMR
7304003,CE4RAY,Fernando Seguy,,Curico,Maule,Chile,DMR
+7304004,CE4RMA,Radio Club Del Maule,,Talca,Maule,Chile,Club Fleet
+7304005,CE4RAY,Fernando Seguy,,Chanco,Maule,Chile,DMR
+7304006,CE4CHP,Carlos HernáNdez ,Ce4chp54,Cauquenes ,Maule,Chile,DMR
7305001,CE5RHS,Miguel Vergara O.,,Coronel,Bio Bio,Chile,DMR
7305002,CE5KBR,Mauricio Vasquez C,,Los Angeles,Bio Bio,Chile,DMR
7305003,CA5SBT,Esteban Osorio,Esalos,ConcepcióN,Bio Bio,Chile,DMR
@@ -45607,6 +46653,9 @@ 7305007,CA4KRC,Jonathan Valderrama,,Chillan Viejo,Bio Bio,Chile,DMR
7305008,CE5RWJ,Rodolfo Vergara Orellana,Rodolfo Veraga,Chiguayante,Bio Bio,Chile,DMR
7305009,CE5RWJ,Rodolfo Vergara Orellana,Rodolfo Vergara,Chiguayante,Bio Bio,Chile,DMR
+7305010,CE5SBT,Esteban Osorio,Esalos,Concepcion,Bio Bio,Chile,DMR
+7305013,CA5MBR,Christian Eduardo Moya,,Hualpen,Bio Bio,Chile,DMR
+7305014,CA5MBR,Christian Eduardo Moya,,Hualpen,Bio Bio,Chile,DMR
7306001,XQ6UMR,Saint-jean Guillermo,,Osorno,La Araucania,Los Lagos,Chile,Mobile
7306002,XQ6UMR,Guillermo Saint-jean,,Osorno,La Araucania,Los Lagos,Chile,Mobile
7306003,XQ6UMR,Saint-jean Guillermo,,Osorno,La Araucania,Los Lagos,Chile,Mobile
@@ -45617,10 +46666,12 @@ 7306008,CE7RFS,Hugo Soto,,Castro,Los Lagos,Chile,DMR
7306009,XQ6BXP,Marcelo Salazar Iba�Ez,,Temuco,La Araucania,Chile,DMR
7306010,CA6BNV,Victor Bahamondez,Mativic,Temuco,La Araucania,Chile,DMR
+7306011,CA6RUC,Ruben Soto,Ruben,Valdivia,Los Lagos,Chile,DMR
7308001,CE8WDB,Rodrigo Lucero Valenzuela,Ce8wdb,Punta Arenas,Magallanes,Chile,DMR
7320001,HK4BES,Jorge Naranjo,,Medellin,Antioquia,Colombia,DMR
7320002,HK4CZE,Jorge Alfredo Mejia,,Rionegro,Antioquia,Colombia,DMR
7320003,HK3AVR,Jim Carrender,Jaime,Bogota,Cundinamarca,Colombia,CCS7
+7320004,HJ5LAM,Fransisco Lam ,Hj5lam,Cali,Valle Del Cauca,Colombia,DMR
7321001,HK6CAN,William Serrato,,Neiva,Huila,Colombia,
7341001,YV1GAG,Hernedy Arrieta,,MARACAIBO,Falcon,Trujillo,Zulia,Venezuela,Mobile
7341002,YV1GAG,Hernedy Arrieta,yv1gag,maracaibo,Falcon,Trujillo,Zulia,Venezuela,DMR
@@ -45629,6 +46680,8 @@ 7341005,YV1ENM,Temistocle Contreras,,Maracaibo,Falcon,Trujillo,Zulia,Venezuela,Other
7341006,YY1MAV,Miguel Angel Villasmil Yanez,,Maracaibo,Falcon,Trujillo,Zulia,Venezuela,DMR
7341007,YV1EMH,Bruno J Villalobos R,,Maracaibo,Falcon,Trujillo,Zulia,Venezuela,DMR
+7341008,YY1ARE,Alfredo Estevez,Estevezar,Zulia,Falcon,Trujillo,Zulia,Venezuela,DMR
+7341009,YV1ARV,Hernedy Arrieta Arrieta,,Maracaibo,Falcon,Trujillo,Zulia,Venezuela,DMR
7344001,YV4WC,Winkock Chang,,Valencia,Aragua,Carabobo,Cojedes,Venezuela,DMR
7344002,YV4CWK,Ruben Angel Villar Fernandez,,Valencia,Aragua,Carabobo,Cojedes,Venezuela,DMR
7345001,YV5AJ,Club Venezuelo,,Caracas,Distrito Capital,Venezuela,Mobile
@@ -45650,6 +46703,9 @@ 7380001,8R1B,Julian Embrack,,Georgetown,Georgetown,Guyana,DMR
7400001,HC1ER ,Edison Perez,,Quito,All,Ecuador,DMR
7400002,HC2GBT,Gerald Gawaldo,Gerry,Guayaquil,All,Ecuador,DMR
+7400003,HC3AP,Cesar Palacios,,Machala,All,Ecuador,DMR
+7400004,HC2ED,Ernesto Duran Salcedo,,Guayaquil,All,Ecuador,DMR
+7400005,HC2GF,Francisco Diaz Granados Ayala,Frank,Guayaquil,All,Ecuador,DMR
7440001,ZP3BGA,Jose Raul Invernizzi,,Pedro Juan Caballero,,Paraguay,Mobile
7440002,ZP3BGA,Jose Raul Invernizzi,Jose Raul,Pedro Juan Caballero,Amabay,Paraguay,CCS7
7481001,CX2AL,Hipolito Tournier,,Montevideo,Montevideo,Uruguay,DMR
From cf21b3a13c4018a00911fd68072b19c7be0b41bb Mon Sep 17 00:00:00 2001 From: Cort Buffington Date: Tue, 15 Nov 2016 14:50:09 -0600 Subject: [PATCH 16/38] Progress - but untested COMPLETELY --- hb_router.py | 53 ++++++++++++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 51 insertions(+), 2 deletions(-) diff --git a/hb_router.py b/hb_router.py index 8980e6a..76b9fdf 100755 --- a/hb_router.py +++ b/hb_router.py @@ -149,22 +149,71 @@ class routerMASTER(HBMASTER): for rule in RULES[self._master]['GROUP_VOICE']: _target = rule['DST_NET'] + _target_status = systems[_target].STATUS + if (rule['SRC_GROUP'] == _dst_id and rule['SRC_TS'] == _slot and rule['ACTIVE'] == True): + + # BEGIN CONTENTION HANDLING + # + # The rules for each of the 4 "ifs" below are listed here for readability. The Frame To Send is: + # From a different group than last RX from this HBP system, but it has been less than Group Hangtime + # From a different group than last TX to this HBP system, but it has been less than Group Hangtime + # From the same group as the last RX from this HBP system, but from a different stream ID, and it has been less than TS Clear Time + # From the same group as the last TX to this HBP system, but a different stream ID, and it has been less than TS Clear Time + # The "continue" at the end of each means the next iteration of the for loop that tests for matching rules + # + if ((rule['DST_GROUP'] != _target_status[_slot]['RX_TGID']) and ((pkt_time - _status[_slot]['RX_TIME']) < RULES[self._master]['GROUP_HANGTIME'])): + if _dtype_vseq == const.HBPF_SLT_VHEAD: + logger.info('(%s) Call not bridged, target active or in group hangtime: HBP system %s, %s, TGID%s', self._master, _target,_slot, int_id(rule['DST_GROUP'])) + continue + if ((rule['DST_GROUP'] != _status[_slot]['TX_GROUP']) and ((pkt_time - _status[_slot]['TX_TIME']) < RULES[self._master]['GROUP_HANGTIME'])): + if _dtype_vseq == const.HBPF_SLT_VHEAD: + logger.info('(%s) Call not bridged to destination on TGID %s, target in group hangtime: HBP system %s, %s, TGID%s', self._master, int_id(_status[_slot]['TX_GROUP']), _target,_slot, int_id(rule['DST_GROUP'])) + continue + if (rule['DST_GROUP'] == _status[_slot]['RX_STREAM_ID']) and ((pkt_time - _status[_slot]['RX_TIME']) < const.STREAM_TO): + if _dtype_vseq == const.HBPF_SLT_VHEAD: + logger.info('(%s) Call not bridged, matching call already active on target: HBP system %s, %s, TGID%s', self._master, _target,_slot, int_id(rule['DST_GROUP'])) + continue + if (rule['DST_GROUP'] == _status[_slot]['TX_GROUP']) and (_src_sub != _status[_slot]['TX_STREAM_ID']) and ((pkt_time - _status[_slot]['TX_TIME']) < const.STREAM_TO): + if _dtype_vseq == const.HBPF_SLT_VHEAD: + logger.info('(%s) Call not bridged, call bridge in progress from %s, target: HBP system %s, %s, TGID%s', self._master, int_id(_src_sub), _target,_slot, int_id(rule['DST_GROUP'])) + continue + + # Set values for the contention handler to test next time there is a frame to forward + target_status[_slot]['TX_GROUP'] = rule['DST_GROUP'] + target_status[_slot]['TX_TIME'] = pkt_time + target_status[_slot]['TX_STREAM_ID'] = _stream_id + + + # Handle any necessary re-writes for the destination if rule['SRC_TS'] != rule['DST_TS']: _tmp_bits = _bits ^ 1 << 7 else: _tmp_bits = _bits + + + # MUST TEST FOR NEW STREAM AND IF SO, RE-WRITE THE LC FOR THE TARGET + # MUST RE-WRITE DESTINATION TGID IF DIFFERENT + + + # Assemble transmit packet _tmp_data = _data[:8] + rule['DST_GROUP'] + _data[11:15] + chr(_tmp_bits) + _data[16:] + + # Transmit the packet to the destination system systems[_target].send_system(_tmp_data) logger.debug('(%s) Packet routed to %s system: %s', self._master, CONFIG['SYSTEMS'][_target]['MODE'], _target) - # Final actions - Is this a voice terminator? and set the last packet type + # Final actions - Is this a voice terminator? if (_frame_type == const.HBPF_DATA_SYNC) and (_dtype_vseq == const.HBPF_SLT_VTERM) and (self.STATUS[_slot]['RX_TYPE'] != const.HBPF_SLT_VTERM): self.STATUS[_slot]['LC'] = '' logger.info('(%s) Call stream END with STREAM ID: %s SUB: %s REPEATER: %s TGID %s, SLOT %s', self._master, int_id(_stream_id), int_id(_rf_src), int_id(_radio_id), int_id(_dst_id), _slot) - self.STATUS[_slot]['RX_TYPE'] = _dtype_vseq + + # Mark status variables for use later + self.STATUS[_slot]['RX_TYPE'] = _dtype_vseq + self.STATUS[_slot]['RX_GROUP'] = _dst_group + self.STATUS[_slot]['RX_TIME'] = pkt_time class routerCLIENT(HBCLIENT): From 93ce2650f9f740f62b76cfda2ba52a0bd0131c00 Mon Sep 17 00:00:00 2001 From: Cort Buffington Date: Tue, 15 Nov 2016 20:35:08 -0600 Subject: [PATCH 17/38] significant progress towards header rewrite --- hb_router.py | 243 +++++++++++++++++++++++++++++---------------------- 1 file changed, 137 insertions(+), 106 deletions(-) diff --git a/hb_router.py b/hb_router.py index 76b9fdf..25d09e0 100755 --- a/hb_router.py +++ b/hb_router.py @@ -25,6 +25,7 @@ from twisted.internet import task # Things we import from the main hblink module from hblink import CONFIG, HBMASTER, HBCLIENT, logger, systems, hex_str_3, int_id import dec_dmr +import bptc import constants as const # Import Bridging rules @@ -40,7 +41,6 @@ except ImportError: # Convert integer GROUP ID numbers from the config into hex strings # we need to send in the actual data packets. for _system in RULES_FILE: - RULES_FILE[_system]['GROUP_HANGTIME'] = RULES_FILE[_system]['GROUP_HANGTIME'] * 1000 for _rule in RULES_FILE[_system]['GROUP_VOICE']: _rule['SRC_GROUP'] = hex_str_3(_rule['SRC_GROUP']) _rule['DST_GROUP'] = hex_str_3(_rule['DST_GROUP']) @@ -76,6 +76,142 @@ class routerMASTER(HBMASTER): def __init__(self, *args, **kwargs): HBMASTER.__init__(self, *args, **kwargs) + # Status information for the system, TS1 & TS2 + # 1 & 2 are "timeslot" + # In TX_EMB_LC, 2-5 are burst B-E + self.STATUS = { + 1: { + 'RX_STREAM_ID': '\x00', + 'TX_STREAM_ID': '\x00', + 'RX_TGID': '\x00\x00\x00', + 'TX_TGID': '\x00\x00\x00', + 'RX_TIME': time(), + 'TX_TIME': time(), + 'RX_TYPE': const.HBPF_SLT_VTERM, + 'RX_LC': '\x00', + 'TX_LC': '\x00', + 'TX_EMB_LC': { + 2: '\x00', + 3: '\x00', + 4: '\x00', + 5: '\x00', + } + }, + 2: { + 'RX_STREAM_ID': '\x00', + 'TX_STREAM_ID': '\x00', + 'RX_TGID': '\x00\x00\x00', + 'TX_TGID': '\x00\x00\x00', + 'RX_TIME': time(), + 'TX_TIME': time(), + 'RX_TYPE': const.HBPF_SLT_VTERM, + 'RX_LC': '\x00', + 'TX_LC': '\x00', + 'TX_EMB_LC': { + 2: '\x00', + 3: '\x00', + 4: '\x00', + 5: '\x00', + } + } + } + + def dmrd_received(self, _radio_id, _rf_src, _dst_id, _seq, _slot, _call_type, _frame_type, _dtype_vseq, _stream_id, _data): + pkt_time = time() + dmrpkt = _data[20:54] + _bits = int_id(_data[15]) + + if _call_type == 'group': + + # Is this a new call stream? + if (_stream_id != self.STATUS[_slot]['RX_STREAM_ID']): + if ((self.STATUS[_slot]['RX_TYPE'] != const.HBPF_SLT_VTERM) or (pkt_time < self.STATUS[_slot]['RX_TIME'] + const.STREAM_TO)): + logger.warning('(%s) Packet received with STREAM ID: %s SUB: %s REPEATER: %s TGID %s, SLOT %s collided with existing call', self._master, int_id(_stream_id), int_id(_rf_src), int_id(_radio_id), int_id(_dst_id), _slot) + return + + # This is a new call stream + logger.info('(%s) Call stream START with STREAM ID: %s SUB: %s REPEATER: %s TGID %s, SLOT %s', self._master, int_id(_stream_id), int_id(_rf_src), int_id(_radio_id), int_id(_dst_id), _slot) + + # If we can, use the LC from the voice header as to keep all options intact + if _frame_type == const.HBPF_DATA_SYNC and _dtype_vseq == const.HBPF_SLT_VHEAD: + decoded = dec_dmr.voice_head_term(dmrpkt) + self.STATUS[_slot]['RX_LC'] = decoded['LC'] + + # If we don't have a voice header then don't wait to decode it from the Embedded LC + # just make a new one from the HBP header. This is good enough, and it saves lots of time + else: + self.STATUS[_slot]['RX_LC'] = const.LC_OPT + _dst_id + _rf_src + + + + for rule in RULES[self._master]['GROUP_VOICE']: + _target = rule['DST_NET'] + _target_status = systems[_target].STATUS + + if (rule['SRC_GROUP'] == _dst_id and rule['SRC_TS'] == _slot and rule['ACTIVE'] == True): + + # BEGIN CONTENTION HANDLING + # + # The rules for each of the 4 "ifs" below are listed here for readability. The Frame To Send is: + # From a different group than last TX to the target HBP system, but it has been less than Group Hangtime + # From the same group as the last TX to the target HBP system, but stream ID is different, and it is less than stream timout + # The "continue" at the end of each means the next iteration of the for loop that tests for matching rules + # + if ((rule['DST_GROUP'] != _target_status[_slot]['TX_TGID']) and ((pkt_time - self.STATUS[_slot]['RX_TIME']) < RULES[self._master]['GROUP_HANGTIME'])): + if const.HBPF_DATA_SYNC and _dtype_vseq == const.HBPF_SLT_VHEAD: + logger.info('(%s) Call not routed, target active or in group hangtime: HBP system %s, TS%s, TGID%s', self._master, _target, _slot, int_id(rule['DST_GROUP'])) + continue + if (rule['DST_GROUP'] == self.STATUS[_slot]['TX_TGID']) and (_stream_id != self.STATUS[_slot]['TX_STREAM_ID']) and ((pkt_time - _status[_slot]['TX_TIME']) < const.STREAM_TO): + if const.HBPF_DATA_SYNC and _dtype_vseq == const.HBPF_SLT_VHEAD: + logger.info('(%s) Call not routed, call bridge in progress from %s, target: HBP system %s, TS%s, TGID%s', self._master, int_id(_src_sub), _target, _slot, int_id(rule['DST_GROUP'])) + continue + + # Set values for the contention handler to test next time there is a frame to forward + _target_status[_slot]['TX_TIME'] = pkt_time + + if _stream_id != self.STATUS[_slot]['RX_STREAM_ID']: + _target_status[_slot]['TX_TGID'] = rule['DST_GROUP'] + _target_status[_slot]['TX_STREAM_ID'] = _stream_id + _target_status[_slot]['TX_LC'] = bptc.encode_header_lc(self.STATUS[_slot]['RX_LC'][0:3] + rule['DST_GROUP'] + _rf_src) + print('new stream id, calcuate/store stuff', h(bptc.decode_full_lc(_target_status[_slot]['TX_LC']).tobytes())) + + # Handle any necessary re-writes for the destination + if rule['SRC_TS'] != rule['DST_TS']: + _tmp_bits = _bits ^ 1 << 7 + else: + _tmp_bits = _bits + + + # MUST TEST FOR NEW STREAM AND IF SO, RE-WRITE THE LC FOR THE TARGET + # MUST RE-WRITE DESTINATION TGID IF DIFFERENT + + + # Assemble transmit packet + _tmp_data = _data[:8] + rule['DST_GROUP'] + _data[11:15] + chr(_tmp_bits) + _data[16:] + + # Transmit the packet to the destination system + systems[_target].send_system(_tmp_data) + logger.debug('(%s) Packet routed to %s system: %s', self._master, CONFIG['SYSTEMS'][_target]['MODE'], _target) + + + + # Final actions - Is this a voice terminator? + if (_frame_type == const.HBPF_DATA_SYNC) and (_dtype_vseq == const.HBPF_SLT_VTERM) and (self.STATUS[_slot]['RX_TYPE'] != const.HBPF_SLT_VTERM): + self.STATUS[_slot]['LC'] = '' + logger.info('(%s) Call stream END with STREAM ID: %s SUB: %s REPEATER: %s TGID %s, SLOT %s', self._master, int_id(_stream_id), int_id(_rf_src), int_id(_radio_id), int_id(_dst_id), _slot) + + # Mark status variables for use later + self.STATUS[_slot]['RX_TYPE'] = _dtype_vseq + self.STATUS[_slot]['RX_TGID'] = _dst_id + self.STATUS[_slot]['RX_TIME'] = pkt_time + self.STATUS[_slot]['RX_STREAM_ID'] = _stream_id + + +class routerCLIENT(HBCLIENT): + + def __init__(self, *args, **kwargs): + HBCLIENT.__init__(self, *args, **kwargs) + # Status information for the system, TS1 & TS2 # 1 & 2 are "timeslot" # In TX_EMB_LC, 2-5 are burst B-E @@ -115,111 +251,6 @@ class routerMASTER(HBMASTER): } } } - - def dmrd_received(self, _radio_id, _rf_src, _dst_id, _seq, _slot, _call_type, _frame_type, _dtype_vseq, _stream_id, _data): - pkt_time = time() - dmrpkt = _data[20:54] - _bits = int_id(_data[15]) - - if _call_type == 'group': - - # Is this a new call stream? - if (_stream_id != self.STATUS[_slot]['RX_STREAM_ID']): - if ((self.STATUS[_slot]['RX_TYPE'] != const.HBPF_SLT_VTERM) or (pkt_time < self.STATUS[_slot]['RX_TIME'] + const.STREAM_TO)): - logger.warning('(%s) Packet received with STREAM ID: %s SUB: %s REPEATER: %s TGID %s, SLOT %s collided with existing call', self._master, int_id(_stream_id), int_id(_rf_src), int_id(_radio_id), int_id(_dst_id), _slot) - return - - # This is a new call stream - logger.info('(%s) Call stream START with STREAM ID: %s SUB: %s REPEATER: %s TGID %s, SLOT %s', self._master, int_id(_stream_id), int_id(_rf_src), int_id(_radio_id), int_id(_dst_id), _slot) - self.STATUS[_slot]['RX_STREAM_ID'] = _stream_id - self.STATUS[_slot]['RX_TIME'] = pkt_time - self.STATUS[_slot]['RX_TGID'] = _dst_id - - # If we can, use the LC from the voice header as to keep all options intact - if _frame_type == const.HBPF_DATA_SYNC and _dtype_vseq == const.HBPF_SLT_VHEAD: - decoded = dec_dmr.voice_head_term(dmrpkt) - self.STATUS[_slot]['RX_LC'] = decoded['LC'] - - # If we don't have a voice header then don't wait to decode it from the Embedded LC - # just make a new one from the HBP header. This is good enough, and it saves lots of time - else: - self.STATUS[_slot]['RX_LC'] = const.LC_OPT + _dst_id + _rf_src - - - - for rule in RULES[self._master]['GROUP_VOICE']: - _target = rule['DST_NET'] - _target_status = systems[_target].STATUS - - if (rule['SRC_GROUP'] == _dst_id and rule['SRC_TS'] == _slot and rule['ACTIVE'] == True): - - # BEGIN CONTENTION HANDLING - # - # The rules for each of the 4 "ifs" below are listed here for readability. The Frame To Send is: - # From a different group than last RX from this HBP system, but it has been less than Group Hangtime - # From a different group than last TX to this HBP system, but it has been less than Group Hangtime - # From the same group as the last RX from this HBP system, but from a different stream ID, and it has been less than TS Clear Time - # From the same group as the last TX to this HBP system, but a different stream ID, and it has been less than TS Clear Time - # The "continue" at the end of each means the next iteration of the for loop that tests for matching rules - # - if ((rule['DST_GROUP'] != _target_status[_slot]['RX_TGID']) and ((pkt_time - _status[_slot]['RX_TIME']) < RULES[self._master]['GROUP_HANGTIME'])): - if _dtype_vseq == const.HBPF_SLT_VHEAD: - logger.info('(%s) Call not bridged, target active or in group hangtime: HBP system %s, %s, TGID%s', self._master, _target,_slot, int_id(rule['DST_GROUP'])) - continue - if ((rule['DST_GROUP'] != _status[_slot]['TX_GROUP']) and ((pkt_time - _status[_slot]['TX_TIME']) < RULES[self._master]['GROUP_HANGTIME'])): - if _dtype_vseq == const.HBPF_SLT_VHEAD: - logger.info('(%s) Call not bridged to destination on TGID %s, target in group hangtime: HBP system %s, %s, TGID%s', self._master, int_id(_status[_slot]['TX_GROUP']), _target,_slot, int_id(rule['DST_GROUP'])) - continue - if (rule['DST_GROUP'] == _status[_slot]['RX_STREAM_ID']) and ((pkt_time - _status[_slot]['RX_TIME']) < const.STREAM_TO): - if _dtype_vseq == const.HBPF_SLT_VHEAD: - logger.info('(%s) Call not bridged, matching call already active on target: HBP system %s, %s, TGID%s', self._master, _target,_slot, int_id(rule['DST_GROUP'])) - continue - if (rule['DST_GROUP'] == _status[_slot]['TX_GROUP']) and (_src_sub != _status[_slot]['TX_STREAM_ID']) and ((pkt_time - _status[_slot]['TX_TIME']) < const.STREAM_TO): - if _dtype_vseq == const.HBPF_SLT_VHEAD: - logger.info('(%s) Call not bridged, call bridge in progress from %s, target: HBP system %s, %s, TGID%s', self._master, int_id(_src_sub), _target,_slot, int_id(rule['DST_GROUP'])) - continue - - # Set values for the contention handler to test next time there is a frame to forward - target_status[_slot]['TX_GROUP'] = rule['DST_GROUP'] - target_status[_slot]['TX_TIME'] = pkt_time - target_status[_slot]['TX_STREAM_ID'] = _stream_id - - - # Handle any necessary re-writes for the destination - if rule['SRC_TS'] != rule['DST_TS']: - _tmp_bits = _bits ^ 1 << 7 - else: - _tmp_bits = _bits - - - # MUST TEST FOR NEW STREAM AND IF SO, RE-WRITE THE LC FOR THE TARGET - # MUST RE-WRITE DESTINATION TGID IF DIFFERENT - - - # Assemble transmit packet - _tmp_data = _data[:8] + rule['DST_GROUP'] + _data[11:15] + chr(_tmp_bits) + _data[16:] - - # Transmit the packet to the destination system - systems[_target].send_system(_tmp_data) - logger.debug('(%s) Packet routed to %s system: %s', self._master, CONFIG['SYSTEMS'][_target]['MODE'], _target) - - - - # Final actions - Is this a voice terminator? - if (_frame_type == const.HBPF_DATA_SYNC) and (_dtype_vseq == const.HBPF_SLT_VTERM) and (self.STATUS[_slot]['RX_TYPE'] != const.HBPF_SLT_VTERM): - self.STATUS[_slot]['LC'] = '' - logger.info('(%s) Call stream END with STREAM ID: %s SUB: %s REPEATER: %s TGID %s, SLOT %s', self._master, int_id(_stream_id), int_id(_rf_src), int_id(_radio_id), int_id(_dst_id), _slot) - - # Mark status variables for use later - self.STATUS[_slot]['RX_TYPE'] = _dtype_vseq - self.STATUS[_slot]['RX_GROUP'] = _dst_group - self.STATUS[_slot]['RX_TIME'] = pkt_time - - -class routerCLIENT(HBCLIENT): - - def __init__(self, *args, **kwargs): - HBCLIENT.__init__(self, *args, **kwargs) def dmrd_received(self, _radio_id, _rf_src, _dst_id, _seq, _slot, _call_type, _frame_type, _dtype_vseq, _stream_id, _data): return From 25c240d0a387fae2932fa56725cce3c032be4efc Mon Sep 17 00:00:00 2001 From: Cort Buffington Date: Wed, 16 Nov 2016 11:05:01 -0600 Subject: [PATCH 18/38] CLIENT and MASTER are now one class --- hb_router.py | 78 ++++---------------- hblink.py | 202 +++++++++++++++++++++------------------------------ 2 files changed, 98 insertions(+), 182 deletions(-) diff --git a/hb_router.py b/hb_router.py index 25d09e0..f3d5ff1 100755 --- a/hb_router.py +++ b/hb_router.py @@ -23,7 +23,7 @@ from twisted.internet import reactor from twisted.internet import task # Things we import from the main hblink module -from hblink import CONFIG, HBMASTER, HBCLIENT, logger, systems, hex_str_3, int_id +from hblink import CONFIG, HBSYSTEM, logger, systems, hex_str_3, int_id import dec_dmr import bptc import constants as const @@ -71,10 +71,10 @@ __email__ = 'n0mjs@me.com' __status__ = 'pre-alpha' -class routerMASTER(HBMASTER): +class routerSYSTEM(HBSYSTEM): def __init__(self, *args, **kwargs): - HBMASTER.__init__(self, *args, **kwargs) + HBSYSTEM.__init__(self, *args, **kwargs) # Status information for the system, TS1 & TS2 # 1 & 2 are "timeslot" @@ -126,11 +126,11 @@ class routerMASTER(HBMASTER): # Is this a new call stream? if (_stream_id != self.STATUS[_slot]['RX_STREAM_ID']): if ((self.STATUS[_slot]['RX_TYPE'] != const.HBPF_SLT_VTERM) or (pkt_time < self.STATUS[_slot]['RX_TIME'] + const.STREAM_TO)): - logger.warning('(%s) Packet received with STREAM ID: %s SUB: %s REPEATER: %s TGID %s, SLOT %s collided with existing call', self._master, int_id(_stream_id), int_id(_rf_src), int_id(_radio_id), int_id(_dst_id), _slot) + logger.warning('(%s) Packet received with STREAM ID: %s SUB: %s REPEATER: %s TGID %s, SLOT %s collided with existing call', self._system, int_id(_stream_id), int_id(_rf_src), int_id(_radio_id), int_id(_dst_id), _slot) return # This is a new call stream - logger.info('(%s) Call stream START with STREAM ID: %s SUB: %s REPEATER: %s TGID %s, SLOT %s', self._master, int_id(_stream_id), int_id(_rf_src), int_id(_radio_id), int_id(_dst_id), _slot) + logger.info('(%s) Call stream START with STREAM ID: %s SUB: %s REPEATER: %s TGID %s, SLOT %s', self._system, int_id(_stream_id), int_id(_rf_src), int_id(_radio_id), int_id(_dst_id), _slot) # If we can, use the LC from the voice header as to keep all options intact if _frame_type == const.HBPF_DATA_SYNC and _dtype_vseq == const.HBPF_SLT_VHEAD: @@ -144,7 +144,7 @@ class routerMASTER(HBMASTER): - for rule in RULES[self._master]['GROUP_VOICE']: + for rule in RULES[self._system]['GROUP_VOICE']: _target = rule['DST_NET'] _target_status = systems[_target].STATUS @@ -157,13 +157,13 @@ class routerMASTER(HBMASTER): # From the same group as the last TX to the target HBP system, but stream ID is different, and it is less than stream timout # The "continue" at the end of each means the next iteration of the for loop that tests for matching rules # - if ((rule['DST_GROUP'] != _target_status[_slot]['TX_TGID']) and ((pkt_time - self.STATUS[_slot]['RX_TIME']) < RULES[self._master]['GROUP_HANGTIME'])): + if ((rule['DST_GROUP'] != _target_status[_slot]['TX_TGID']) and ((pkt_time - self.STATUS[_slot]['RX_TIME']) < RULES[self._system]['GROUP_HANGTIME'])): if const.HBPF_DATA_SYNC and _dtype_vseq == const.HBPF_SLT_VHEAD: - logger.info('(%s) Call not routed, target active or in group hangtime: HBP system %s, TS%s, TGID%s', self._master, _target, _slot, int_id(rule['DST_GROUP'])) + logger.info('(%s) Call not routed, target active or in group hangtime: HBP system %s, TS%s, TGID%s', self._system, _target, _slot, int_id(rule['DST_GROUP'])) continue if (rule['DST_GROUP'] == self.STATUS[_slot]['TX_TGID']) and (_stream_id != self.STATUS[_slot]['TX_STREAM_ID']) and ((pkt_time - _status[_slot]['TX_TIME']) < const.STREAM_TO): if const.HBPF_DATA_SYNC and _dtype_vseq == const.HBPF_SLT_VHEAD: - logger.info('(%s) Call not routed, call bridge in progress from %s, target: HBP system %s, TS%s, TGID%s', self._master, int_id(_src_sub), _target, _slot, int_id(rule['DST_GROUP'])) + logger.info('(%s) Call not routed, call bridge in progress from %s, target: HBP system %s, TS%s, TGID%s', self._system, int_id(_src_sub), _target, _slot, int_id(rule['DST_GROUP'])) continue # Set values for the contention handler to test next time there is a frame to forward @@ -173,7 +173,7 @@ class routerMASTER(HBMASTER): _target_status[_slot]['TX_TGID'] = rule['DST_GROUP'] _target_status[_slot]['TX_STREAM_ID'] = _stream_id _target_status[_slot]['TX_LC'] = bptc.encode_header_lc(self.STATUS[_slot]['RX_LC'][0:3] + rule['DST_GROUP'] + _rf_src) - print('new stream id, calcuate/store stuff', h(bptc.decode_full_lc(_target_status[_slot]['TX_LC']).tobytes())) + #make EMB LC fragments next # Handle any necessary re-writes for the destination if rule['SRC_TS'] != rule['DST_TS']: @@ -191,14 +191,14 @@ class routerMASTER(HBMASTER): # Transmit the packet to the destination system systems[_target].send_system(_tmp_data) - logger.debug('(%s) Packet routed to %s system: %s', self._master, CONFIG['SYSTEMS'][_target]['MODE'], _target) + logger.debug('(%s) Packet routed by rule: %s to %s system: %s', self._system, rule['NAME'], CONFIG['SYSTEMS'][_target]['MODE'], _target) # Final actions - Is this a voice terminator? if (_frame_type == const.HBPF_DATA_SYNC) and (_dtype_vseq == const.HBPF_SLT_VTERM) and (self.STATUS[_slot]['RX_TYPE'] != const.HBPF_SLT_VTERM): self.STATUS[_slot]['LC'] = '' - logger.info('(%s) Call stream END with STREAM ID: %s SUB: %s REPEATER: %s TGID %s, SLOT %s', self._master, int_id(_stream_id), int_id(_rf_src), int_id(_radio_id), int_id(_dst_id), _slot) + logger.info('(%s) Call stream END with STREAM ID: %s SUB: %s REPEATER: %s TGID %s, SLOT %s', self._system, int_id(_stream_id), int_id(_rf_src), int_id(_radio_id), int_id(_dst_id), _slot) # Mark status variables for use later self.STATUS[_slot]['RX_TYPE'] = _dtype_vseq @@ -206,54 +206,6 @@ class routerMASTER(HBMASTER): self.STATUS[_slot]['RX_TIME'] = pkt_time self.STATUS[_slot]['RX_STREAM_ID'] = _stream_id - -class routerCLIENT(HBCLIENT): - - def __init__(self, *args, **kwargs): - HBCLIENT.__init__(self, *args, **kwargs) - - # Status information for the system, TS1 & TS2 - # 1 & 2 are "timeslot" - # In TX_EMB_LC, 2-5 are burst B-E - self.STATUS = { - 1: { - 'RX_STREAM_ID': '\x00', - 'TX_STREAM_ID': '\x00', - 'RX_TGID': '\x00', - 'TX_TGID': '\x00', - 'RX_TIME': time(), - 'TX_TIME': time(), - 'RX_TYPE': const.HBPF_SLT_VTERM, - 'RX_LC': '\x00', - 'TX_LC': '\x00', - 'TX_EMB_LC': { - 2: '\x00', - 3: '\x00', - 4: '\x00', - 5: '\x00', - } - }, - 2: { - 'RX_STREAM_ID': '\x00', - 'TX_STREAM_ID': '\x00', - 'RX_TGID': '\x00', - 'TX_TGID': '\x00', - 'RX_TIME': time(), - 'TX_TIME': time(), - 'RX_TYPE': const.HBPF_SLT_VTERM, - 'RX_LC': '\x00', - 'TX_LC': '\x00', - 'TX_EMB_LC': { - 2: '\x00', - 3: '\x00', - 4: '\x00', - 5: '\x00', - } - } - } - - def dmrd_received(self, _radio_id, _rf_src, _dst_id, _seq, _slot, _call_type, _frame_type, _dtype_vseq, _stream_id, _data): - return #************************************************ # MAIN PROGRAM LOOP STARTS HERE @@ -262,13 +214,11 @@ class routerCLIENT(HBCLIENT): if __name__ == '__main__': logger.info('HBlink \'hb_router.py\' (c) 2016 N0MJS & the K0USY Group - SYSTEM STARTING...') + # HBlink instance creation # HBlink instance creation for system in CONFIG['SYSTEMS']: if CONFIG['SYSTEMS'][system]['ENABLED']: - if CONFIG['SYSTEMS'][system]['MODE'] == 'MASTER': - systems[system] = routerMASTER(system) - elif CONFIG['SYSTEMS'][system]['MODE'] == 'CLIENT': - systems[system] = routerCLIENT(system) + systems[system] = routerSYSTEM(system) reactor.listenUDP(CONFIG['SYSTEMS'][system]['PORT'], systems[system], interface=CONFIG['SYSTEMS'][system]['IP']) logger.debug('%s instance created: %s, %s', CONFIG['SYSTEMS'][system]['MODE'], system, systems[system]) diff --git a/hblink.py b/hblink.py index 253d62a..57ed1c6 100755 --- a/hblink.py +++ b/hblink.py @@ -212,42 +212,70 @@ class AMBE: # HB MASTER CLASS #************************************************ -class HBMASTER(DatagramProtocol): +class HBSYSTEM(DatagramProtocol): def __init__(self, *args, **kwargs): if len(args) == 1: # Define a few shortcuts to make the rest of the class more readable - self._master = args[0] - self._system = self._master - self._config = CONFIG['SYSTEMS'][self._master] - self._clients = CONFIG['SYSTEMS'][self._master]['CLIENTS'] - + self._system = args[0] + self._config = CONFIG['SYSTEMS'][self._system] + + # Define shortcuts and generic function names based on the type of system we are + if self._config['MODE'] == 'MASTER': + self._clients = CONFIG['SYSTEMS'][self._system]['CLIENTS'] + self.send_system = self.send_clients + self.maintenance_loop = self.master_maintenance_loop + self.datagramReceived = self.master_datagramReceived + + elif self._config['MODE'] == 'CLIENT': + self._stats = self._config['STATS'] + self.send_system = self.send_master + self.maintenance_loop = self.client_maintenance_loop + self.datagramReceived = self.client_datagramReceived + # Configure for AMBE audio export if enabled if self._config['EXPORT_AMBE']: self._ambe = AMBE() else: # If we didn't get called correctly, log it and quit. - logger.error('(%s) HBMASTER was not called with an argument. Terminating', self._master) + logger.error('(%s) HBMASTER was not called with an argument. Terminating', self._system) sys.exit() def startProtocol(self): # Set up periodic loop for tracking pings from clients. Run every 'PING_TIME' seconds - self._master_maintenance = task.LoopingCall(self.master_maintenance_loop) - self._master_maintenance_loop = self._master_maintenance.start(CONFIG['GLOBAL']['PING_TIME']) - + self._system_maintenance = task.LoopingCall(self.maintenance_loop) + self._system_maintenance_loop = self._system_maintenance.start(CONFIG['GLOBAL']['PING_TIME']) + + # Aliased in __init__ to maintenance_loop if system is a master def master_maintenance_loop(self): - logger.debug('(%s) Master maintenance loop started', self._master) + logger.debug('(%s) Master maintenance loop started', self._system) for client in self._clients: _this_client = self._clients[client] # Check to see if any of the clients have been quiet (no ping) longer than allowed if _this_client['LAST_PING']+CONFIG['GLOBAL']['PING_TIME']*CONFIG['GLOBAL']['MAX_MISSED'] < time(): - logger.info('(%s) Client %s (%s) has timed out', self._master, _this_client['CALLSIGN'], _this_client['RADIO_ID']) + logger.info('(%s) Client %s (%s) has timed out', self._system, _this_client['CALLSIGN'], _this_client['RADIO_ID']) # Remove any timed out clients from the configuration - del CONFIG['SYSTEMS'][self._master]['CLIENTS'][client] + del CONFIG['SYSTEMS'][self._system]['CLIENTS'][client] + + # Aliased in __init__ to maintenance_loop if system is a client + def client_maintenance_loop(self): + logger.debug('(%s) Client maintenance loop started', self._system) + # If we're not connected, zero out the stats and send a login request RPTL + if self._stats['CONNECTION'] == 'NO' or self._stats['CONNECTION'] == 'RTPL_SENT': + self._stats['PINGS_SENT'] = 0 + self._stats['PINGS_ACKD'] = 0 + self._stats['CONNECTION'] = 'RTPL_SENT' + self.send_master('RPTL'+self._config['RADIO_ID']) + logger.info('(%s) Sending login request to master %s:%s', self._system, self._config['MASTER_IP'], self._config['MASTER_PORT']) + # If we are connected, sent a ping to the master and increment the counter + if self._stats['CONNECTION'] == 'YES': + self.send_master('RPTPING'+self._config['RADIO_ID']) + self._stats['PINGS_SENT'] += 1 + logger.debug('(%s) RPTPING Sent to Master. Pings Since Connected: %s', self._system, self._stats['PINGS_SENT']) def send_clients(self, _packet): for _client in self._clients: self.send_client(_client, _packet) - #logger.debug('(%s) Packet sent to client %s', self._master, self._clients[_client]['RADIO_ID']) + #logger.debug('(%s) Packet sent to client %s', self._system, self._clients[_client]['RADIO_ID']) def send_client(self, _client, _packet): _ip = self._clients[_client]['IP'] @@ -256,16 +284,18 @@ class HBMASTER(DatagramProtocol): # KEEP THE FOLLOWING COMMENTED OUT UNLESS YOU'RE DEBUGGING DEEPLY!!!! #logger.debug('(%s) TX Packet to %s on port %s: %s', self._clients[_client]['RADIO_ID'], self._clients[_client]['IP'], self._clients[_client]['PORT'], h(_packet)) - # Alias for other programs to use a common name to send a packet - # regardless of the system type (MASTER or CLIENT) - send_system = send_clients + def send_master(self, _packet): + self.transport.write(_packet, (self._config['MASTER_IP'], self._config['MASTER_PORT'])) + # KEEP THE FOLLOWING COMMENTED OUT UNLESS YOU'RE DEBUGGING DEEPLY!!!! + #logger.debug('(%s) TX Packet to %s:%s -- %s', self._system, self._config['MASTER_IP'], self._config['MASTER_PORT'], h(_packet)) def dmrd_received(self, _radio_id, _rf_src, _dst_id, _seq, _slot, _call_type, _frame_type, _dtype_vseq, _stream_id, _data): pass - - def datagramReceived(self, _data, (_host, _port)): + + # Aliased in __init__ to datagramReceived if system is a master + def master_datagramReceived(self, _data, (_host, _port)): # Keep This Line Commented Unless HEAVILY Debugging! - #logger.debug('(%s) RX packet from %s:%s -- %s', self._master, _host, _port, h(_data)) + #logger.debug('(%s) RX packet from %s:%s -- %s', self._system, _host, _port, h(_data)) # Extract the command, which is various length, all but one 4 significant characters -- RPTCL _command = _data[:4] @@ -285,18 +315,18 @@ class HBMASTER(DatagramProtocol): _frame_type = (_bits & 0x30) >> 4 _dtype_vseq = (_bits & 0xF) # data, 1=voice header, 2=voice terminator; voice, 0=burst A ... 5=burst F _stream_id = _data[16:20] - #logger.debug('(%s) DMRD - Seqence: %s, RF Source: %s, Destination ID: %s', self._master, int_id(_seq), int_id(_rf_src), int_id(_dst_id)) + #logger.debug('(%s) DMRD - Seqence: %s, RF Source: %s, Destination ID: %s', self._system, int_id(_seq), int_id(_rf_src), int_id(_dst_id)) # If AMBE audio exporting is configured... if self._config['EXPORT_AMBE']: - self._ambe.parseAMBE(self._master, _data) + self._ambe.parseAMBE(self._system, _data) # The basic purpose of a master is to repeat to the clients if self._config['REPEAT'] == True: for _client in self._clients: if _client != _radio_id: self.send_client(_client, _data) - logger.debug('(%s) Packet on TS%s from %s (%s) for destination ID %s repeated to client: %s (%s) [Stream ID: %s]', self._master, _slot, self._clients[_radio_id]['CALLSIGN'], int_id(_radio_id), int_id(_dst_id), self._clients[_client]['CALLSIGN'], int_id(_client), int_id(_stream_id)) + logger.debug('(%s) Packet on TS%s from %s (%s) for destination ID %s repeated to client: %s (%s) [Stream ID: %s]', self._system, _slot, self._clients[_radio_id]['CALLSIGN'], int_id(_radio_id), int_id(_dst_id), self._clients[_client]['CALLSIGN'], int_id(_client), int_id(_stream_id)) # Userland actions -- typically this is the function you subclass for an application self.dmrd_received(_radio_id, _rf_src, _dst_id, _seq, _slot, _call_type, _frame_type, _dtype_vseq, _stream_id, _data) @@ -327,14 +357,14 @@ class HBMASTER(DatagramProtocol): 'SOFTWARE_ID': '', 'PACKAGE_ID': '', }}) - logger.info('(%s) Repeater Logging in with Radio ID: %s, %s:%s', self._master, int_id(_radio_id), _host, _port) + logger.info('(%s) Repeater Logging in with Radio ID: %s, %s:%s', self._system, int_id(_radio_id), _host, _port) _salt_str = hex_str_4(self._clients[_radio_id]['SALT']) self.send_client(_radio_id, 'RPTACK'+_salt_str) self._clients[_radio_id]['CONNECTION'] = 'CHALLENGE_SENT' - logger.info('(%s) Sent Challenge Response to %s for login: %s', self._master, int_id(_radio_id), self._clients[_radio_id]['SALT']) + logger.info('(%s) Sent Challenge Response to %s for login: %s', self._system, int_id(_radio_id), self._clients[_radio_id]['SALT']) else: self.transport.write('MSTNAK'+_radio_id, (_host, _port)) - logger.warning('(%s) Invalid Login from Radio ID: %s', self._master, int_id(_radio_id)) + logger.warning('(%s) Invalid Login from Radio ID: %s', self._system, int_id(_radio_id)) elif _command == 'RPTK': # Repeater has answered our login challenge _radio_id = _data[4:8] @@ -350,14 +380,14 @@ class HBMASTER(DatagramProtocol): if _sent_hash == _calc_hash: _this_client['CONNECTION'] = 'WAITING_CONFIG' self.send_client(_radio_id, 'RPTACK'+_radio_id) - logger.info('(%s) Client %s has completed the login exchange successfully', self._master, _this_client['RADIO_ID']) + logger.info('(%s) Client %s has completed the login exchange successfully', self._system, _this_client['RADIO_ID']) else: - logger.info('(%s) Client %s has FAILED the login exchange successfully', self._master, _this_client['RADIO_ID']) + logger.info('(%s) Client %s has FAILED the login exchange successfully', self._system, _this_client['RADIO_ID']) self.transport.write('MSTNAK'+_radio_id, (_host, _port)) del self._clients[_radio_id] else: self.transport.write('MSTNAK'+_radio_id, (_host, _port)) - logger.warning('(%s) Login challenge from Radio ID that has not logged in: %s', self._master, int_id(_radio_id)) + logger.warning('(%s) Login challenge from Radio ID that has not logged in: %s', self._system, int_id(_radio_id)) elif _command == 'RPTC': # Repeater is sending it's configuraiton OR disconnecting if _data[:5] == 'RPTCL': # Disconnect command @@ -366,7 +396,7 @@ class HBMASTER(DatagramProtocol): and self._clients[_radio_id]['CONNECTION'] == 'YES' \ and self._clients[_radio_id]['IP'] == _host \ and self._clients[_radio_id]['PORT'] == _port: - logger.info('(%s) Client is closing down: %s (%s)', self._master, self._clients[_radio_id]['CALLSIGN'], int_id(_radio_id)) + logger.info('(%s) Client is closing down: %s (%s)', self._system, self._clients[_radio_id]['CALLSIGN'], int_id(_radio_id)) self.transport.write('MSTNAK'+_radio_id, (_host, _port)) del self._clients[_radio_id] else: @@ -394,10 +424,10 @@ class HBMASTER(DatagramProtocol): _this_client['PACKAGE_ID'] = _data[264:304] self.send_client(_radio_id, 'RPTACK'+_radio_id) - logger.info('(%s) Client %s (%s) has sent repeater configuration', self._master, _this_client['CALLSIGN'], _this_client['RADIO_ID']) + logger.info('(%s) Client %s (%s) has sent repeater configuration', self._system, _this_client['CALLSIGN'], _this_client['RADIO_ID']) else: self.transport.write('MSTNAK'+_radio_id, (_host, _port)) - logger.warning('(%s) Client info from Radio ID that has not logged in: %s', self._master, int_id(_radio_id)) + logger.warning('(%s) Client info from Radio ID that has not logged in: %s', self._system, int_id(_radio_id)) elif _command == 'RPTP': # RPTPing -- client is pinging us _radio_id = _data[7:11] @@ -407,70 +437,18 @@ class HBMASTER(DatagramProtocol): and self._clients[_radio_id]['PORT'] == _port: self._clients[_radio_id]['LAST_PING'] = time() self.send_client(_radio_id, 'MSTPONG'+_radio_id) - logger.debug('(%s) Received and answered RPTPING from client %s (%s)', self._master, self._clients[_radio_id]['CALLSIGN'], int_id(_radio_id)) + logger.debug('(%s) Received and answered RPTPING from client %s (%s)', self._system, self._clients[_radio_id]['CALLSIGN'], int_id(_radio_id)) else: self.transport.write('MSTNAK'+_radio_id, (_host, _port)) - logger.warning('(%s) Client info from Radio ID that has not logged in: %s', self._master, int_id(_radio_id)) + logger.warning('(%s) Client info from Radio ID that has not logged in: %s', self._system, int_id(_radio_id)) else: - logger.error('(%s) Unrecognized command from: %s. Packet: %s', self._master, int_id(_radio_id), h(_data)) - -#************************************************ -# HB CLIENT CLASS -#************************************************ - -class HBCLIENT(DatagramProtocol): - - def __init__(self, *args, **kwargs): - if len(args) == 1: - self._client = args[0] - self._system = self._client - self._config = CONFIG['SYSTEMS'][self._client] - self._stats = self._config['STATS'] - - # Configure for AMBE audio export if enabled - if self._config['EXPORT_AMBE']: - self._ambe = AMBE() - else: - # If we didn't get called correctly, log it! - logger.error('(%s) HBCLIENT was not called with an argument. Terminating', self._client) - sys.exit() - - def startProtocol(self): - # Set up periodic loop for sending pings to the master. Run every 'PING_TIME' seconds - self._client_maintenance = task.LoopingCall(self.client_maintenance_loop) - self._client_maintenance_loop = self._client_maintenance.start(CONFIG['GLOBAL']['PING_TIME']) - - def client_maintenance_loop(self): - logger.debug('(%s) Client maintenance loop started', self._client) - # If we're not connected, zero out the stats and send a login request RPTL - if self._stats['CONNECTION'] == 'NO' or self._stats['CONNECTION'] == 'RTPL_SENT': - self._stats['PINGS_SENT'] = 0 - self._stats['PINGS_ACKD'] = 0 - self._stats['CONNECTION'] = 'RTPL_SENT' - self.send_master('RPTL'+self._config['RADIO_ID']) - logger.info('(%s) Sending login request to master %s:%s', self._client, self._config['MASTER_IP'], self._config['MASTER_PORT']) - # If we are connected, sent a ping to the master and increment the counter - if self._stats['CONNECTION'] == 'YES': - self.send_master('RPTPING'+self._config['RADIO_ID']) - self._stats['PINGS_SENT'] += 1 - logger.debug('(%s) RPTPING Sent to Master. Pings Since Connected: %s', self._client, self._stats['PINGS_SENT']) - - def send_master(self, _packet): - self.transport.write(_packet, (self._config['MASTER_IP'], self._config['MASTER_PORT'])) - # KEEP THE FOLLOWING COMMENTED OUT UNLESS YOU'RE DEBUGGING DEEPLY!!!! - #logger.debug('(%s) TX Packet to %s:%s -- %s', self._client, self._config['MASTER_IP'], self._config['MASTER_PORT'], h(_packet)) - - # Alias for other programs to use a common name to send a packet - # regardless of the system type (MASTER or CLIENT) - send_system = send_master - - def dmrd_received(self, _radio_id, _rf_src, _dst_id, _seq, _slot, _call_type, _frame_type, _dtype_vseq, _stream_id, _data): - pass - - def datagramReceived(self, _data, (_host, _port)): + logger.error('(%s) Unrecognized command from: %s. Packet: %s', self._system, int_id(_radio_id), h(_data)) + + # Aliased in __init__ to datagramReceived if system is a client + def client_datagramReceived(self, _data, (_host, _port)): # Keep This Line Commented Unless HEAVILY Debugging! - # logger.debug('(%s) RX packet from %s:%s -- %s', self._client, _host, _port, h(_data)) + # logger.debug('(%s) RX packet from %s:%s -- %s', self._system, _host, _port, h(_data)) # Validate that we receveived this packet from the master - security check! if self._config['MASTER_IP'] == _host and self._config['MASTER_PORT'] == _port: @@ -485,23 +463,14 @@ class HBCLIENT(DatagramProtocol): _bits = int_id(_data[15]) _slot = 2 if (_bits & 0x80) else 1 _call_type = 'unit' if (_bits & 0x40) else 'group' - _raw_frame_type = (_bits & 0x30) >> 4 - if _raw_frame_type == 0b00: - _frame_type = 'voice' - elif _raw_frame_type == 0b01: - _frame_type = 'voice_sync' - elif _raw_frame_type == 0b10: - _frame_type = 'data_sync' - else: - _frame_type = 'none' + _frame_type = (_bits & 0x30) >> 4 _dtype_vseq = (_bits & 0xF) # data, 1=voice header, 2=voice terminator; voice, 0=burst A ... 5=burst F _stream_id = _data[16:20] - - #logger.debug('(%s) DMRD - Seqence: %s, RF Source: %s, Destination ID: %s', self._client, h(_seq), int_id(_rf_src), int_id(_dst_id)) + #logger.debug('(%s) DMRD - Seqence: %s, RF Source: %s, Destination ID: %s', self._system, int_id(_seq), int_id(_rf_src), int_id(_dst_id)) # If AMBE audio exporting is configured... if self._config['EXPORT_AMBE']: - self._ambe.parseAMBE(self._client, _data) + self._ambe.parseAMBE(self._system, _data) # Userland actions -- typically this is the function you subclass for an application self.dmrd_received(_radio_id, _rf_src, _dst_id, _seq, _slot, _call_type, _frame_type, _dtype_vseq, _stream_id, _data) @@ -509,14 +478,14 @@ class HBCLIENT(DatagramProtocol): elif _command == 'MSTN': # Actually MSTNAK -- a NACK from the master _radio_id = _data[4:8] if _radio_id == self._config['RADIO_ID']: # Validate the source and intended target - logger.warning('(%s) MSTNAK Received', self._client) + logger.warning('(%s) MSTNAK Received', self._system) self._stats['CONNECTION'] = 'NO' # Disconnect ourselves and re-register elif _command == 'RPTA': # Actually RPTACK -- an ACK from the master # Depending on the state, an RPTACK means different things, in each clause, we check and/or set the state if self._stats['CONNECTION'] == 'RTPL_SENT': # If we've sent a login request... _login_int32 = _data[6:10] - logger.info('(%s) Repeater Login ACK Received with 32bit ID: %s', self._client, int_id(_login_int32)) + logger.info('(%s) Repeater Login ACK Received with 32bit ID: %s', self._system, int_id(_login_int32)) _pass_hash = sha256(_login_int32+self._config['PASSPHRASE']).hexdigest() _pass_hash = a(_pass_hash) self.send_master('RPTK'+self._config['RADIO_ID']+_pass_hash) @@ -524,7 +493,7 @@ class HBCLIENT(DatagramProtocol): elif self._stats['CONNECTION'] == 'AUTHENTICATED': # If we've sent the login challenge... if _data[6:10] == self._config['RADIO_ID']: - logger.info('(%s) Repeater Authentication Accepted', self._client) + logger.info('(%s) Repeater Authentication Accepted', self._system) _config_packet = self._config['RADIO_ID']+\ self._config['CALLSIGN']+\ self._config['RX_FREQ']+\ @@ -543,32 +512,32 @@ class HBCLIENT(DatagramProtocol): self.send_master('RPTC'+_config_packet) self._stats['CONNECTION'] = 'CONFIG-SENT' - logger.info('(%s) Repeater Configuration Sent', self._client) + logger.info('(%s) Repeater Configuration Sent', self._system) else: self._stats['CONNECTION'] = 'NO' - logger.error('(%s) Master ACK Contained wrong ID - Connection Reset', self._client) + logger.error('(%s) Master ACK Contained wrong ID - Connection Reset', self._system) elif self._stats['CONNECTION'] == 'CONFIG-SENT': # If we've sent out configuration to the master if _data[6:10] == self._config['RADIO_ID']: - logger.info('(%s) Repeater Configuration Accepted', self._client) + logger.info('(%s) Repeater Configuration Accepted', self._system) self._stats['CONNECTION'] = 'YES' - logger.info('(%s) Connection to Master Completed', self._client) + logger.info('(%s) Connection to Master Completed', self._system) else: self._stats['CONNECTION'] = 'NO' - logger.error('(%s) Master ACK Contained wrong ID - Connection Reset', self._client) + logger.error('(%s) Master ACK Contained wrong ID - Connection Reset', self._system) elif _command == 'MSTP': # Actually MSTPONG -- a reply to RPTPING (send by client) if _data [7:11] == self._config['RADIO_ID']: self._stats['PINGS_ACKD'] += 1 - logger.debug('(%s) MSTPONG Received. Pongs Since Connected: %s', self._client, self._stats['PINGS_ACKD']) + logger.debug('(%s) MSTPONG Received. Pongs Since Connected: %s', self._system, self._stats['PINGS_ACKD']) elif _command == 'MSTC': # Actually MSTCL -- notify us the master is closing down if _data[5:9] == self._config['RADIO_ID']: self._stats['CONNECTION'] = 'NO' - logger.info('(%s) MSTCL Recieved', self._client) + logger.info('(%s) MSTCL Recieved', self._system) else: - logger.error('(%s) Received an invalid command in packet: %s', self._client, h(_data)) + logger.error('(%s) Received an invalid command in packet: %s', self._system, h(_data)) #************************************************ @@ -581,10 +550,7 @@ if __name__ == '__main__': # HBlink instance creation for system in CONFIG['SYSTEMS']: if CONFIG['SYSTEMS'][system]['ENABLED']: - if CONFIG['SYSTEMS'][system]['MODE'] == 'MASTER': - systems[system] = HBMASTER(system) - elif CONFIG['SYSTEMS'][system]['MODE'] == 'CLIENT': - systems[system] = HBCLIENT(system) + systems[system] = HBSYSTEM(system) reactor.listenUDP(CONFIG['SYSTEMS'][system]['PORT'], systems[system], interface=CONFIG['SYSTEMS'][system]['IP']) logger.debug('%s instance created: %s, %s', CONFIG['SYSTEMS'][system]['MODE'], system, systems[system]) From 9ae2d3e8194575ac814d0661cac270d8c7e0ca8b Mon Sep 17 00:00:00 2001 From: Cort Buffington Date: Wed, 16 Nov 2016 11:32:58 -0600 Subject: [PATCH 19/38] Almost There... --- bptc.py | 7 +++++-- hb_router.py | 26 ++++++++++++++++++-------- 2 files changed, 23 insertions(+), 10 deletions(-) diff --git a/bptc.py b/bptc.py index 2dcd88c..1a1cd6f 100755 --- a/bptc.py +++ b/bptc.py @@ -114,7 +114,10 @@ def encode_header_lc(_lc): return full_lc def encode_terminator_lc(_lc): - lc_rs = _lc + rs129.lc_terminator_encode(_lc) + full_lc = _lc + rs129.lc_terminator_encode(_lc) + full_lc = encode_19696(full_lc) + full_lc = interleave_19696(full_lc) + return full_lc #------------------------------------------------------------------------------ # BPTC Embedded LC Decoding Routines @@ -190,7 +193,7 @@ def encode_emblc(_lc): emblc_e.extend([_binlc[14],_binlc[30],_binlc[46],_binlc[62],_binlc[78],_binlc[94],_binlc[110],_binlc[126]]) emblc_e.extend([_binlc[15],_binlc[31],_binlc[47],_binlc[63],_binlc[79],_binlc[95],_binlc[111],_binlc[127]]) - return([emblc_b, emblc_c, emblc_d, emblc_e]) + return({2: emblc_b, 3: emblc_c, 4: emblc_d, 5: emblc_e}) #------------------------------------------------------------------------------ # Used to execute the module directly to run built-in tests diff --git a/hb_router.py b/hb_router.py index f3d5ff1..14d4a9d 100755 --- a/hb_router.py +++ b/hb_router.py @@ -158,11 +158,11 @@ class routerSYSTEM(HBSYSTEM): # The "continue" at the end of each means the next iteration of the for loop that tests for matching rules # if ((rule['DST_GROUP'] != _target_status[_slot]['TX_TGID']) and ((pkt_time - self.STATUS[_slot]['RX_TIME']) < RULES[self._system]['GROUP_HANGTIME'])): - if const.HBPF_DATA_SYNC and _dtype_vseq == const.HBPF_SLT_VHEAD: + if _frame_type == const.HBPF_DATA_SYNC and _dtype_vseq == const.HBPF_SLT_VHEAD: logger.info('(%s) Call not routed, target active or in group hangtime: HBP system %s, TS%s, TGID%s', self._system, _target, _slot, int_id(rule['DST_GROUP'])) continue if (rule['DST_GROUP'] == self.STATUS[_slot]['TX_TGID']) and (_stream_id != self.STATUS[_slot]['TX_STREAM_ID']) and ((pkt_time - _status[_slot]['TX_TIME']) < const.STREAM_TO): - if const.HBPF_DATA_SYNC and _dtype_vseq == const.HBPF_SLT_VHEAD: + if _frame_type == const.HBPF_DATA_SYNC and _dtype_vseq == const.HBPF_SLT_VHEAD: logger.info('(%s) Call not routed, call bridge in progress from %s, target: HBP system %s, TS%s, TGID%s', self._system, int_id(_src_sub), _target, _slot, int_id(rule['DST_GROUP'])) continue @@ -170,10 +170,13 @@ class routerSYSTEM(HBSYSTEM): _target_status[_slot]['TX_TIME'] = pkt_time if _stream_id != self.STATUS[_slot]['RX_STREAM_ID']: + # Record the DST TGID and Stream ID _target_status[_slot]['TX_TGID'] = rule['DST_GROUP'] _target_status[_slot]['TX_STREAM_ID'] = _stream_id - _target_status[_slot]['TX_LC'] = bptc.encode_header_lc(self.STATUS[_slot]['RX_LC'][0:3] + rule['DST_GROUP'] + _rf_src) - #make EMB LC fragments next + # Generate LCs (full and EMB) for the TX stream + dst_lc = self.STATUS[_slot]['RX_LC'][0:3] + rule['DST_GROUP'] + _rf_src + _target_status[_slot]['TX_LC'] = bptc.encode_header_lc(dst_lc) + _target_status[_slot]['TX_EMB_LC'] = bptc.encode_emblc(dst_lc) # Handle any necessary re-writes for the destination if rule['SRC_TS'] != rule['DST_TS']: @@ -181,13 +184,19 @@ class routerSYSTEM(HBSYSTEM): else: _tmp_bits = _bits + # Assemble transmit HBP packet header + _tmp_data = _data[:8] + rule['DST_GROUP'] + _data[11:15] + chr(_tmp_bits) + _data[16:20] # MUST TEST FOR NEW STREAM AND IF SO, RE-WRITE THE LC FOR THE TARGET # MUST RE-WRITE DESTINATION TGID IF DIFFERENT + if _frame_type == const.HBPF_DATA_SYNC and _dtype_vseq == const.HBPF_SLT_VHEAD: + pass # build a new DMR voice header packet with the TX Full LC + elif _frame_type == const.HBPF_DATA_SYNC and _dtype_vseq == const.HBPF_SLT_VTERM: + pass # build a new DMR voice terminator packet with the TX Full LC + elif _dtype_vseq in [2,3,4,5]: + pass # build a new DMR voice packet for burst B,C,D,E based on EMB LC - - # Assemble transmit packet - _tmp_data = _data[:8] + rule['DST_GROUP'] + _data[11:15] + chr(_tmp_bits) + _data[16:] + _tmp_data = _tmp_data + dmrpkt # Transmit the packet to the destination system systems[_target].send_system(_tmp_data) @@ -197,7 +206,8 @@ class routerSYSTEM(HBSYSTEM): # Final actions - Is this a voice terminator? if (_frame_type == const.HBPF_DATA_SYNC) and (_dtype_vseq == const.HBPF_SLT_VTERM) and (self.STATUS[_slot]['RX_TYPE'] != const.HBPF_SLT_VTERM): - self.STATUS[_slot]['LC'] = '' + #self.STATUS[_slot]['LC'] = '\x00\x00\x00' + #self.STATUS[_slot]['EMB_LC'] = {2: '\x00', 3: '\x00', 4: '\x00', 5: '\x00'} logger.info('(%s) Call stream END with STREAM ID: %s SUB: %s REPEATER: %s TGID %s, SLOT %s', self._system, int_id(_stream_id), int_id(_rf_src), int_id(_radio_id), int_id(_dst_id), _slot) # Mark status variables for use later From 1a1510714ca34f2337611012a19bc4c5bc0ac0be Mon Sep 17 00:00:00 2001 From: Cort Buffington Date: Wed, 16 Nov 2016 11:51:02 -0600 Subject: [PATCH 20/38] ONLY calculate and insert new LCs if needed --- hb_router.py | 21 ++++++++++++--------- 1 file changed, 12 insertions(+), 9 deletions(-) diff --git a/hb_router.py b/hb_router.py index 14d4a9d..a924e6f 100755 --- a/hb_router.py +++ b/hb_router.py @@ -174,9 +174,11 @@ class routerSYSTEM(HBSYSTEM): _target_status[_slot]['TX_TGID'] = rule['DST_GROUP'] _target_status[_slot]['TX_STREAM_ID'] = _stream_id # Generate LCs (full and EMB) for the TX stream - dst_lc = self.STATUS[_slot]['RX_LC'][0:3] + rule['DST_GROUP'] + _rf_src - _target_status[_slot]['TX_LC'] = bptc.encode_header_lc(dst_lc) - _target_status[_slot]['TX_EMB_LC'] = bptc.encode_emblc(dst_lc) + if _dst_id != rule['DST_GROUP']: + dst_lc = self.STATUS[_slot]['RX_LC'][0:3] + rule['DST_GROUP'] + _rf_src + _target_status[_slot]['TX_LC'] = bptc.encode_header_lc(dst_lc) + _target_status[_slot]['TX_EMB_LC'] = bptc.encode_emblc(dst_lc) + logger.debug('(%s) Packet DST TGID (%s) does not match SRC TGID(%s) - Generating FULL and EMB LCs', self._system, int_id(rule['DST_GROUP']), int_id(_dst_id)) # Handle any necessary re-writes for the destination if rule['SRC_TS'] != rule['DST_TS']: @@ -189,12 +191,13 @@ class routerSYSTEM(HBSYSTEM): # MUST TEST FOR NEW STREAM AND IF SO, RE-WRITE THE LC FOR THE TARGET # MUST RE-WRITE DESTINATION TGID IF DIFFERENT - if _frame_type == const.HBPF_DATA_SYNC and _dtype_vseq == const.HBPF_SLT_VHEAD: - pass # build a new DMR voice header packet with the TX Full LC - elif _frame_type == const.HBPF_DATA_SYNC and _dtype_vseq == const.HBPF_SLT_VTERM: - pass # build a new DMR voice terminator packet with the TX Full LC - elif _dtype_vseq in [2,3,4,5]: - pass # build a new DMR voice packet for burst B,C,D,E based on EMB LC + if _dst_id != rule['DST_GROUP']: + if _frame_type == const.HBPF_DATA_SYNC and _dtype_vseq == const.HBPF_SLT_VHEAD: + pass # build a new DMR voice header packet with the TX Full LC + elif _frame_type == const.HBPF_DATA_SYNC and _dtype_vseq == const.HBPF_SLT_VTERM: + pass # build a new DMR voice terminator packet with the TX Full LC + elif _dtype_vseq in [2,3,4,5]: + pass # build a new DMR voice packet for burst B,C,D,E based on EMB LC _tmp_data = _tmp_data + dmrpkt From 490e6ef6f90dd70c42540657a4b04a74eb95fef4 Mon Sep 17 00:00:00 2001 From: Cort Buffington Date: Wed, 16 Nov 2016 14:48:40 -0600 Subject: [PATCH 21/38] TGID & TS Transcoding WORKS!!! --- bptc.py | 2 +- hb_router.py | 42 +++++++++++++++++++++++++----------------- 2 files changed, 26 insertions(+), 18 deletions(-) diff --git a/bptc.py b/bptc.py index 1a1cd6f..663d493 100755 --- a/bptc.py +++ b/bptc.py @@ -193,7 +193,7 @@ def encode_emblc(_lc): emblc_e.extend([_binlc[14],_binlc[30],_binlc[46],_binlc[62],_binlc[78],_binlc[94],_binlc[110],_binlc[126]]) emblc_e.extend([_binlc[15],_binlc[31],_binlc[47],_binlc[63],_binlc[79],_binlc[95],_binlc[111],_binlc[127]]) - return({2: emblc_b, 3: emblc_c, 4: emblc_d, 5: emblc_e}) + return({1: emblc_b, 2: emblc_c, 3: emblc_d, 4: emblc_e}) #------------------------------------------------------------------------------ # Used to execute the module directly to run built-in tests diff --git a/hb_router.py b/hb_router.py index a924e6f..1e398ac 100755 --- a/hb_router.py +++ b/hb_router.py @@ -88,13 +88,14 @@ class routerSYSTEM(HBSYSTEM): 'RX_TIME': time(), 'TX_TIME': time(), 'RX_TYPE': const.HBPF_SLT_VTERM, - 'RX_LC': '\x00', - 'TX_LC': '\x00', + 'RX_LC': '\x00', + 'TX_H_LC': '\x00', + 'TX_T_LC': '\x00', 'TX_EMB_LC': { + 1: '\x00', 2: '\x00', 3: '\x00', 4: '\x00', - 5: '\x00', } }, 2: { @@ -105,20 +106,21 @@ class routerSYSTEM(HBSYSTEM): 'RX_TIME': time(), 'TX_TIME': time(), 'RX_TYPE': const.HBPF_SLT_VTERM, - 'RX_LC': '\x00', - 'TX_LC': '\x00', + 'RX_LC': '\x00', + 'TX_H_LC': '\x00', + 'TX_T_LC': '\x00', 'TX_EMB_LC': { + 1: '\x00', 2: '\x00', 3: '\x00', 4: '\x00', - 5: '\x00', } } } def dmrd_received(self, _radio_id, _rf_src, _dst_id, _seq, _slot, _call_type, _frame_type, _dtype_vseq, _stream_id, _data): pkt_time = time() - dmrpkt = _data[20:54] + dmrpkt = _data[20:53] _bits = int_id(_data[15]) if _call_type == 'group': @@ -161,7 +163,7 @@ class routerSYSTEM(HBSYSTEM): if _frame_type == const.HBPF_DATA_SYNC and _dtype_vseq == const.HBPF_SLT_VHEAD: logger.info('(%s) Call not routed, target active or in group hangtime: HBP system %s, TS%s, TGID%s', self._system, _target, _slot, int_id(rule['DST_GROUP'])) continue - if (rule['DST_GROUP'] == self.STATUS[_slot]['TX_TGID']) and (_stream_id != self.STATUS[_slot]['TX_STREAM_ID']) and ((pkt_time - _status[_slot]['TX_TIME']) < const.STREAM_TO): + if (rule['DST_GROUP'] == self.STATUS[_slot]['TX_TGID']) and (_stream_id != self.STATUS[_slot]['TX_STREAM_ID']) and ((pkt_time - self.STATUS[_slot]['TX_TIME']) < const.STREAM_TO): if _frame_type == const.HBPF_DATA_SYNC and _dtype_vseq == const.HBPF_SLT_VHEAD: logger.info('(%s) Call not routed, call bridge in progress from %s, target: HBP system %s, TS%s, TGID%s', self._system, int_id(_src_sub), _target, _slot, int_id(rule['DST_GROUP'])) continue @@ -174,9 +176,10 @@ class routerSYSTEM(HBSYSTEM): _target_status[_slot]['TX_TGID'] = rule['DST_GROUP'] _target_status[_slot]['TX_STREAM_ID'] = _stream_id # Generate LCs (full and EMB) for the TX stream - if _dst_id != rule['DST_GROUP']: + if True: #_dst_id != rule['DST_GROUP']: dst_lc = self.STATUS[_slot]['RX_LC'][0:3] + rule['DST_GROUP'] + _rf_src - _target_status[_slot]['TX_LC'] = bptc.encode_header_lc(dst_lc) + _target_status[_slot]['TX_H_LC'] = bptc.encode_header_lc(dst_lc) + _target_status[_slot]['TX_T_LC'] = bptc.encode_terminator_lc(dst_lc) _target_status[_slot]['TX_EMB_LC'] = bptc.encode_emblc(dst_lc) logger.debug('(%s) Packet DST TGID (%s) does not match SRC TGID(%s) - Generating FULL and EMB LCs', self._system, int_id(rule['DST_GROUP']), int_id(_dst_id)) @@ -191,15 +194,20 @@ class routerSYSTEM(HBSYSTEM): # MUST TEST FOR NEW STREAM AND IF SO, RE-WRITE THE LC FOR THE TARGET # MUST RE-WRITE DESTINATION TGID IF DIFFERENT - if _dst_id != rule['DST_GROUP']: + if True: #_dst_id != rule['DST_GROUP']: + dmrbits = bitarray(endian='big') + dmrbits.frombytes(dmrpkt) + # Create a voice header packet (FULL LC) if _frame_type == const.HBPF_DATA_SYNC and _dtype_vseq == const.HBPF_SLT_VHEAD: - pass # build a new DMR voice header packet with the TX Full LC + dmrbits = _target_status[_slot]['TX_H_LC'][0:98] + dmrbits[98:166] + _target_status[_slot]['TX_H_LC'][98:197] + # Create a voice terminator packet (FULL LC) elif _frame_type == const.HBPF_DATA_SYNC and _dtype_vseq == const.HBPF_SLT_VTERM: - pass # build a new DMR voice terminator packet with the TX Full LC - elif _dtype_vseq in [2,3,4,5]: - pass # build a new DMR voice packet for burst B,C,D,E based on EMB LC - - _tmp_data = _tmp_data + dmrpkt + dmrbits = _target_status[_slot]['TX_T_LC'][0:98] + dmrbits[98:166] + _target_status[_slot]['TX_T_LC'][98:197] + # Create a Burst B-E packet (Embedded LC) + elif _dtype_vseq in [1,2,3,4]: + dmrbits = dmrbits[0:116] + _target_status[_slot]['TX_EMB_LC'][_dtype_vseq] + dmrbits[148:264] + dmrpkt = dmrbits.tobytes() + _tmp_data = _tmp_data + dmrpkt + _data[53:55] # Transmit the packet to the destination system systems[_target].send_system(_tmp_data) From df59dc1483bf8b98d6e801002252275591450a79 Mon Sep 17 00:00:00 2001 From: Cort Buffington Date: Wed, 16 Nov 2016 15:02:56 -0600 Subject: [PATCH 22/38] Last update for today --- hb_router.py | 10 ++++------ talkgroup_ids.csv | 2 +- 2 files changed, 5 insertions(+), 7 deletions(-) diff --git a/hb_router.py b/hb_router.py index 1e398ac..9ef3316 100755 --- a/hb_router.py +++ b/hb_router.py @@ -23,7 +23,7 @@ from twisted.internet import reactor from twisted.internet import task # Things we import from the main hblink module -from hblink import CONFIG, HBSYSTEM, logger, systems, hex_str_3, int_id +from hblink import CONFIG, HBSYSTEM, logger, systems, hex_str_3, int_id, sub_alias, peer_alias, tg_alias import dec_dmr import bptc import constants as const @@ -132,7 +132,7 @@ class routerSYSTEM(HBSYSTEM): return # This is a new call stream - logger.info('(%s) Call stream START with STREAM ID: %s SUB: %s REPEATER: %s TGID %s, SLOT %s', self._system, int_id(_stream_id), int_id(_rf_src), int_id(_radio_id), int_id(_dst_id), _slot) + logger.info('(%s) Call stream START with STREAM ID: %s SUB: %s REPEATER: %s TGID %s, SLOT %s', self._system, int_id(_stream_id), sub_alias(_rf_src), peer_alias(_radio_id), tg_alias(_dst_id), _slot) # If we can, use the LC from the voice header as to keep all options intact if _frame_type == const.HBPF_DATA_SYNC and _dtype_vseq == const.HBPF_SLT_VHEAD: @@ -217,10 +217,8 @@ class routerSYSTEM(HBSYSTEM): # Final actions - Is this a voice terminator? if (_frame_type == const.HBPF_DATA_SYNC) and (_dtype_vseq == const.HBPF_SLT_VTERM) and (self.STATUS[_slot]['RX_TYPE'] != const.HBPF_SLT_VTERM): - #self.STATUS[_slot]['LC'] = '\x00\x00\x00' - #self.STATUS[_slot]['EMB_LC'] = {2: '\x00', 3: '\x00', 4: '\x00', 5: '\x00'} - logger.info('(%s) Call stream END with STREAM ID: %s SUB: %s REPEATER: %s TGID %s, SLOT %s', self._system, int_id(_stream_id), int_id(_rf_src), int_id(_radio_id), int_id(_dst_id), _slot) - + logger.info('(%s) Call stream END with STREAM ID: %s SUB: %s REPEATER: %s TGID %s, SLOT %s', self._system, int_id(_stream_id), sub_alias(_rf_src), peer_alias(_radio_id), tg_alias(_dst_id), _slot) + # Mark status variables for use later self.STATUS[_slot]['RX_TYPE'] = _dtype_vseq self.STATUS[_slot]['RX_TGID'] = _dst_id diff --git a/talkgroup_ids.csv b/talkgroup_ids.csv index bd71ee4..85e4e27 100644 --- a/talkgroup_ids.csv +++ b/talkgroup_ids.csv @@ -1 +1 @@ -1,Worldwide 2,Local 3,North America 9,BrandMeister 13,Worldwide English 310,TAC 310 3100,DCI Bridge 2 3160,DCI 1 3169,Midwest 3172,Northeast 3174,Southeast 3112,Flordia 3120,Kansas Statewide 3125,Massachussetts 3129,Missouri 3777215,DCI Comm 1 9998,Echo Server \ No newline at end of file +1,Worldwide 2,Local 3,North America 9,BrandMeister 13,Worldwide English 310,TAC 310 3100,DCI Bridge 2 3160,DCI 1 3169,Midwest 3172,Northeast 3174,Southeast 3112,Flordia 3120,Kansas Statewide 3125,Massachussetts 3129,Missouri 31201,BYRG KC 3777215,DCI Comm 1 9998,Echo Server \ No newline at end of file From fbe9dd137383cb3bad40fbab08c91ef31aa2829e Mon Sep 17 00:00:00 2001 From: Cort Buffington Date: Thu, 17 Nov 2016 06:24:28 -0600 Subject: [PATCH 23/38] Starting to add in-band signaling (UA rules) --- hb_router.py | 37 ++++++++++++++++++++++++++++++++++--- 1 file changed, 34 insertions(+), 3 deletions(-) diff --git a/hb_router.py b/hb_router.py index 9ef3316..f6bba34 100755 --- a/hb_router.py +++ b/hb_router.py @@ -50,6 +50,8 @@ for _system in RULES_FILE: _rule['ON'][i] = hex_str_3(_rule['ON'][i]) for i, e in enumerate(_rule['OFF']): _rule['OFF'][i] = hex_str_3(_rule['OFF'][i]) + _rule['TIMEOUT']= _rule['TIMEOUT']*60 + _rule['TIMER'] = time() + _rule['TIMEOUT'] if _system not in CONFIG['SYSTEMS']: sys.exit('ERROR: Routing rules found for system not configured main configuration') for _system in CONFIG['SYSTEMS']: @@ -71,6 +73,32 @@ __email__ = 'n0mjs@me.com' __status__ = 'pre-alpha' +# Run this every minute for rule timer updates +def rule_timer_loop(): + logger.debug('(ALL HBSYSTEMS) Rule timer loop started') + _now = time() + for _system in RULES: + for _rule in RULES[_system]['GROUP_VOICE']: + if _rule['TO_TYPE'] == 'ON': + if _rule['ACTIVE'] == True: + if _rule['TIMER'] < _now: + _rule['ACTIVE'] = False + logger.info('(%s) Rule timout DEACTIVATE: Rule name: %s, Target HBSystem: %s, TS: %s, TGID: %s', _system, _rule['NAME'], _rule['DST_NET'], _rule['DST_TS']+1, int_id(_rule['DST_GROUP'])) + else: + timeout_in = _rule['TIMER'] - _now + logger.info('(%s) Rule ACTIVE with ON timer running: Timeout eligible in: %ds, Rule name: %s, Target HBSystem: %s, TS: %s, TGID: %s', _system, timeout_in, _rule['NAME'], _rule['DST_NET'], _rule['DST_TS']+1, int_id(_rule['DST_GROUP'])) + elif _rule['TO_TYPE'] == 'OFF': + if _rule['ACTIVE'] == False: + if _rule['TIMER'] < _now: + _rule['ACTIVE'] = True + logger.info('(%s) Rule timout ACTIVATE: Rule name: %s, Target HBSystem: %s, TS: %s, TGID: %s', _system, _rule['NAME'], _rule['DST_NET'], _rule['DST_TS']+1, int_id(_rule['DST_GROUP'])) + else: + timeout_in = _rule['TIMER'] - _now + logger.info('(%s) Rule DEACTIVE with OFF timer running: Timeout eligible in: %ds, Rule name: %s, Target HBSystem: %s, TS: %s, TGID: %s', _system, timeout_in, _rule['NAME'], _rule['DST_NET'], _rule['DST_TS']+1, int_id(_rule['DST_GROUP'])) + else: + logger.debug('Rule timer loop made no rule changes') + + class routerSYSTEM(HBSYSTEM): def __init__(self, *args, **kwargs): @@ -143,9 +171,8 @@ class routerSYSTEM(HBSYSTEM): # just make a new one from the HBP header. This is good enough, and it saves lots of time else: self.STATUS[_slot]['RX_LC'] = const.LC_OPT + _dst_id + _rf_src - - - + + for rule in RULES[self._system]['GROUP_VOICE']: _target = rule['DST_NET'] _target_status = systems[_target].STATUS @@ -240,5 +267,9 @@ if __name__ == '__main__': systems[system] = routerSYSTEM(system) reactor.listenUDP(CONFIG['SYSTEMS'][system]['PORT'], systems[system], interface=CONFIG['SYSTEMS'][system]['IP']) logger.debug('%s instance created: %s, %s', CONFIG['SYSTEMS'][system]['MODE'], system, systems[system]) + + # Initialize the rule timer -- this if for user activated stuff + rule_timer = task.LoopingCall(rule_timer_loop) + rule_timer.start(60) reactor.run() \ No newline at end of file From 3138de53c93a36f82de5d36006bd0b46bc73e2e3 Mon Sep 17 00:00:00 2001 From: Cort Buffington Date: Thu, 17 Nov 2016 16:37:43 -0600 Subject: [PATCH 24/38] Fixes from G4EML --- hb_router.py | 46 +++++++++++++++++++++++++++------------------- hblink.py | 5 +++-- 2 files changed, 30 insertions(+), 21 deletions(-) diff --git a/hb_router.py b/hb_router.py index f6bba34..5145425 100755 --- a/hb_router.py +++ b/hb_router.py @@ -109,16 +109,18 @@ class routerSYSTEM(HBSYSTEM): # In TX_EMB_LC, 2-5 are burst B-E self.STATUS = { 1: { + 'RX_RFS': '\x00', + 'TX_RFS': '\x00', 'RX_STREAM_ID': '\x00', 'TX_STREAM_ID': '\x00', - 'RX_TGID': '\x00\x00\x00', - 'TX_TGID': '\x00\x00\x00', - 'RX_TIME': time(), - 'TX_TIME': time(), - 'RX_TYPE': const.HBPF_SLT_VTERM, - 'RX_LC': '\x00', - 'TX_H_LC': '\x00', - 'TX_T_LC': '\x00', + 'RX_TGID': '\x00\x00\x00', + 'TX_TGID': '\x00\x00\x00', + 'RX_TIME': time(), + 'TX_TIME': time(), + 'RX_TYPE': const.HBPF_SLT_VTERM, + 'RX_LC': '\x00', + 'TX_H_LC': '\x00', + 'TX_T_LC': '\x00', 'TX_EMB_LC': { 1: '\x00', 2: '\x00', @@ -127,16 +129,18 @@ class routerSYSTEM(HBSYSTEM): } }, 2: { + 'RX_RFS': '\x00', + 'TX_RFS': '\x00', 'RX_STREAM_ID': '\x00', 'TX_STREAM_ID': '\x00', - 'RX_TGID': '\x00\x00\x00', - 'TX_TGID': '\x00\x00\x00', - 'RX_TIME': time(), - 'TX_TIME': time(), - 'RX_TYPE': const.HBPF_SLT_VTERM, - 'RX_LC': '\x00', - 'TX_H_LC': '\x00', - 'TX_T_LC': '\x00', + 'RX_TGID': '\x00\x00\x00', + 'TX_TGID': '\x00\x00\x00', + 'RX_TIME': time(), + 'TX_TIME': time(), + 'RX_TYPE': const.HBPF_SLT_VTERM, + 'RX_LC': '\x00', + 'TX_H_LC': '\x00', + 'TX_T_LC': '\x00', 'TX_EMB_LC': { 1: '\x00', 2: '\x00', @@ -148,6 +152,7 @@ class routerSYSTEM(HBSYSTEM): def dmrd_received(self, _radio_id, _rf_src, _dst_id, _seq, _slot, _call_type, _frame_type, _dtype_vseq, _stream_id, _data): pkt_time = time() + new_stream = False dmrpkt = _data[20:53] _bits = int_id(_data[15]) @@ -155,11 +160,12 @@ class routerSYSTEM(HBSYSTEM): # Is this a new call stream? if (_stream_id != self.STATUS[_slot]['RX_STREAM_ID']): - if ((self.STATUS[_slot]['RX_TYPE'] != const.HBPF_SLT_VTERM) or (pkt_time < self.STATUS[_slot]['RX_TIME'] + const.STREAM_TO)): + if (self.STATUS[_slot]['RX_TYPE'] != const.HBPF_SLT_VTERM) or ((pkt_time < self.STATUS[_slot]['RX_TIME'] + const.STREAM_TO) and (_rf_src != self.STATUS[_slot]['RX_SRC'])): logger.warning('(%s) Packet received with STREAM ID: %s SUB: %s REPEATER: %s TGID %s, SLOT %s collided with existing call', self._system, int_id(_stream_id), int_id(_rf_src), int_id(_radio_id), int_id(_dst_id), _slot) return # This is a new call stream + new_stream = True logger.info('(%s) Call stream START with STREAM ID: %s SUB: %s REPEATER: %s TGID %s, SLOT %s', self._system, int_id(_stream_id), sub_alias(_rf_src), peer_alias(_radio_id), tg_alias(_dst_id), _slot) # If we can, use the LC from the voice header as to keep all options intact @@ -190,9 +196,9 @@ class routerSYSTEM(HBSYSTEM): if _frame_type == const.HBPF_DATA_SYNC and _dtype_vseq == const.HBPF_SLT_VHEAD: logger.info('(%s) Call not routed, target active or in group hangtime: HBP system %s, TS%s, TGID%s', self._system, _target, _slot, int_id(rule['DST_GROUP'])) continue - if (rule['DST_GROUP'] == self.STATUS[_slot]['TX_TGID']) and (_stream_id != self.STATUS[_slot]['TX_STREAM_ID']) and ((pkt_time - self.STATUS[_slot]['TX_TIME']) < const.STREAM_TO): + if (rule['DST_GROUP'] == self.STATUS[_slot]['TX_TGID']) and (_stream_id != self.STATUS[_slot]['TX_STREAM_ID']) and (((pkt_time - self.STATUS[_slot]['TX_TIME']) < const.STREAM_TO) and (_rf_src != self.STATUS[_slot]['TX_RFS'])): if _frame_type == const.HBPF_DATA_SYNC and _dtype_vseq == const.HBPF_SLT_VHEAD: - logger.info('(%s) Call not routed, call bridge in progress from %s, target: HBP system %s, TS%s, TGID%s', self._system, int_id(_src_sub), _target, _slot, int_id(rule['DST_GROUP'])) + logger.info('(%s) Call not routed, call in progress: %s, target: HBP system %s, TS%s, TGID%s', self._system, int_id(_src_sub), _target, _slot, int_id(rule['DST_GROUP'])) continue # Set values for the contention handler to test next time there is a frame to forward @@ -202,6 +208,7 @@ class routerSYSTEM(HBSYSTEM): # Record the DST TGID and Stream ID _target_status[_slot]['TX_TGID'] = rule['DST_GROUP'] _target_status[_slot]['TX_STREAM_ID'] = _stream_id + _target_status[_slot]['TX_RFS'] = _rf_src # Generate LCs (full and EMB) for the TX stream if True: #_dst_id != rule['DST_GROUP']: dst_lc = self.STATUS[_slot]['RX_LC'][0:3] + rule['DST_GROUP'] + _rf_src @@ -247,6 +254,7 @@ class routerSYSTEM(HBSYSTEM): logger.info('(%s) Call stream END with STREAM ID: %s SUB: %s REPEATER: %s TGID %s, SLOT %s', self._system, int_id(_stream_id), sub_alias(_rf_src), peer_alias(_radio_id), tg_alias(_dst_id), _slot) # Mark status variables for use later + self.STATUS[_slot]['RX_RFS'] = _rf_src self.STATUS[_slot]['RX_TYPE'] = _dtype_vseq self.STATUS[_slot]['RX_TGID'] = _dst_id self.STATUS[_slot]['RX_TIME'] = pkt_time diff --git a/hblink.py b/hblink.py index 57ed1c6..d5ec142 100755 --- a/hblink.py +++ b/hblink.py @@ -149,7 +149,7 @@ def handler(_signal, _frame): reactor.stop() # Set signal handers so that we can gracefully exit if need be -for sig in [signal.SIGTERM, signal.SIGINT, signal.SIGQUIT]: +for sig in [signal.SIGTERM, signal.SIGINT]: signal.signal(sig, handler) @@ -167,7 +167,8 @@ def hex_str_3(_int_id): # Create a 4 byte hex string from an integer def hex_str_4(_int_id): try: - return hex(_int_id)[2:].rjust(8,'0').decode('hex') + #return hex(_int_id)[2:].rjust(8,'0').decode('hex') + format(_int_id,'x').rjust(8,'0').decode('hex') except TypeError: logger.error('hex_str_4: invalid integer length') From 992c157d3a7313f5cb605e04a9609ef24a282f6f Mon Sep 17 00:00:00 2001 From: Cort Buffington Date: Thu, 17 Nov 2016 17:21:31 -0600 Subject: [PATCH 25/38] error correction --- hblink.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hblink.py b/hblink.py index d5ec142..492b66c 100755 --- a/hblink.py +++ b/hblink.py @@ -168,7 +168,7 @@ def hex_str_3(_int_id): def hex_str_4(_int_id): try: #return hex(_int_id)[2:].rjust(8,'0').decode('hex') - format(_int_id,'x').rjust(8,'0').decode('hex') + return format(_int_id,'x').rjust(8,'0').decode('hex') except TypeError: logger.error('hex_str_4: invalid integer length') From 421e0ec44e1c24118cd9c84a90aa79bef63bde66 Mon Sep 17 00:00:00 2001 From: Cort Buffington Date: Thu, 17 Nov 2016 19:01:16 -0600 Subject: [PATCH 26/38] Logging - Minor update --- hb_router.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hb_router.py b/hb_router.py index 5145425..3cb3f1e 100755 --- a/hb_router.py +++ b/hb_router.py @@ -166,7 +166,7 @@ class routerSYSTEM(HBSYSTEM): # This is a new call stream new_stream = True - logger.info('(%s) Call stream START with STREAM ID: %s SUB: %s REPEATER: %s TGID %s, SLOT %s', self._system, int_id(_stream_id), sub_alias(_rf_src), peer_alias(_radio_id), tg_alias(_dst_id), _slot) + logger.info('(%s) *CALL START* STREAM ID: %s SUB: %s (%s) REPEATER: %s (%s) TGID %s (%s), TS %s', self._system, int_id(_stream_id), sub_alias(_rf_src), int_id(_rf_src), peer_alias(_radio_id), int_id(_radio_id), tg_alias(_dst_id), int_id(_dst_id), _slot) # If we can, use the LC from the voice header as to keep all options intact if _frame_type == const.HBPF_DATA_SYNC and _dtype_vseq == const.HBPF_SLT_VHEAD: @@ -251,7 +251,7 @@ class routerSYSTEM(HBSYSTEM): # Final actions - Is this a voice terminator? if (_frame_type == const.HBPF_DATA_SYNC) and (_dtype_vseq == const.HBPF_SLT_VTERM) and (self.STATUS[_slot]['RX_TYPE'] != const.HBPF_SLT_VTERM): - logger.info('(%s) Call stream END with STREAM ID: %s SUB: %s REPEATER: %s TGID %s, SLOT %s', self._system, int_id(_stream_id), sub_alias(_rf_src), peer_alias(_radio_id), tg_alias(_dst_id), _slot) + logger.info('(%s) *CALL END* STREAM ID: %s SUB: %s (%s) REPEATER: %s (%s) TGID %s (%s), TS %s', self._system, int_id(_stream_id), sub_alias(_rf_src), int_id(_rf_src), peer_alias(_radio_id), int_id(_radio_id), tg_alias(_dst_id), int_id(_dst_id), _slot) # Mark status variables for use later self.STATUS[_slot]['RX_RFS'] = _rf_src From 447ee1fdc2bbee6dac647039b3ce2d43eaa3b878 Mon Sep 17 00:00:00 2001 From: Cort Buffington Date: Fri, 18 Nov 2016 07:47:15 -0600 Subject: [PATCH 27/38] Fixed type --- hb_router.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hb_router.py b/hb_router.py index 3cb3f1e..24fe2fe 100755 --- a/hb_router.py +++ b/hb_router.py @@ -160,7 +160,7 @@ class routerSYSTEM(HBSYSTEM): # Is this a new call stream? if (_stream_id != self.STATUS[_slot]['RX_STREAM_ID']): - if (self.STATUS[_slot]['RX_TYPE'] != const.HBPF_SLT_VTERM) or ((pkt_time < self.STATUS[_slot]['RX_TIME'] + const.STREAM_TO) and (_rf_src != self.STATUS[_slot]['RX_SRC'])): + if (self.STATUS[_slot]['RX_TYPE'] != const.HBPF_SLT_VTERM) or ((pkt_time < self.STATUS[_slot]['RX_TIME'] + const.STREAM_TO) and (_rf_src != self.STATUS[_slot]['RX_RFS'])): logger.warning('(%s) Packet received with STREAM ID: %s SUB: %s REPEATER: %s TGID %s, SLOT %s collided with existing call', self._system, int_id(_stream_id), int_id(_rf_src), int_id(_radio_id), int_id(_dst_id), _slot) return From 02fda0e31dd39011dfbf074d7d52a535b7c3ac4e Mon Sep 17 00:00:00 2001 From: root Date: Fri, 18 Nov 2016 09:27:57 -0500 Subject: [PATCH 28/38] Match 'client' login from MMDVMHost --- hb_config.py | 12 ++++++------ hblink.py | 19 ++++++++++--------- 2 files changed, 16 insertions(+), 15 deletions(-) diff --git a/hb_config.py b/hb_config.py index 4e69e60..14dd0f2 100755 --- a/hb_config.py +++ b/hb_config.py @@ -79,14 +79,14 @@ def build_config(_config_file): 'MASTER_IP': gethostbyname(config.get(section, 'MASTER_IP')), 'MASTER_PORT': config.getint(section, 'MASTER_PORT'), 'PASSPHRASE': config.get(section, 'PASSPHRASE'), - 'CALLSIGN': config.get(section, 'CALLSIGN').ljust(8), + 'CALLSIGN': config.get(section, 'CALLSIGN').ljust(8)[:8], 'RADIO_ID': hex(int(config.get(section, 'RADIO_ID')))[2:].rjust(8,'0').decode('hex'), - 'RX_FREQ': config.get(section, 'RX_FREQ').ljust(9), - 'TX_FREQ': config.get(section, 'TX_FREQ').ljust(9), + 'RX_FREQ': config.get(section, 'RX_FREQ').ljust(9)[:9], + 'TX_FREQ': config.get(section, 'TX_FREQ').ljust(9)[:9], 'TX_POWER': config.get(section, 'TX_POWER').rjust(2,'0'), 'COLORCODE': config.get(section, 'COLORCODE').rjust(2,'0'), - 'LATITUDE': config.get(section, 'LATITUDE').ljust(9), - 'LONGITUDE': config.get(section, 'LONGITUDE').ljust(10), + 'LATITUDE': config.get(section, 'LATITUDE').ljust(8)[:8], + 'LONGITUDE': config.get(section, 'LONGITUDE').ljust(9)[:9], 'HEIGHT': config.get(section, 'HEIGHT').rjust(3,'0'), 'LOCATION': config.get(section, 'LOCATION').ljust(20)[:20], 'DESCRIPTION': config.get(section, 'DESCRIPTION').ljust(19)[:19], @@ -148,4 +148,4 @@ if __name__ == '__main__': cli_args.CONFIG_FILE = os.path.dirname(os.path.abspath(__file__))+'/hblink.cfg' - pprint(build_config(cli_args.CONFIG_FILE)) \ No newline at end of file + pprint(build_config(cli_args.CONFIG_FILE)) diff --git a/hblink.py b/hblink.py index 492b66c..e47f6e5 100755 --- a/hblink.py +++ b/hblink.py @@ -400,6 +400,7 @@ class HBSYSTEM(DatagramProtocol): logger.info('(%s) Client is closing down: %s (%s)', self._system, self._clients[_radio_id]['CALLSIGN'], int_id(_radio_id)) self.transport.write('MSTNAK'+_radio_id, (_host, _port)) del self._clients[_radio_id] + else: _radio_id = _data[4:8] # Configure Command if _radio_id in self._clients \ @@ -414,15 +415,15 @@ class HBSYSTEM(DatagramProtocol): _this_client['TX_FREQ'] = _data[25:34] _this_client['TX_POWER'] = _data[34:36] _this_client['COLORCODE'] = _data[36:38] - _this_client['LATITUDE'] = _data[38:47] - _this_client['LONGITUDE'] = _data[47:57] - _this_client['HEIGHT'] = _data[57:60] - _this_client['LOCATION'] = _data[60:80] - _this_client['DESCRIPTION'] = _data[80:99] - _this_client['SLOTS'] = _data[99:100] - _this_client['URL'] = _data[100:224] - _this_client['SOFTWARE_ID'] = _data[224:264] - _this_client['PACKAGE_ID'] = _data[264:304] + _this_client['LATITUDE'] = _data[38:46] + _this_client['LONGITUDE'] = _data[46:55] + _this_client['HEIGHT'] = _data[55:58] + _this_client['LOCATION'] = _data[58:78] + _this_client['DESCRIPTION'] = _data[78:97] + _this_client['SLOTS'] = _data[97:98] + _this_client['URL'] = _data[98:222] + _this_client['SOFTWARE_ID'] = _data[222:262] + _this_client['PACKAGE_ID'] = _data[262:302] self.send_client(_radio_id, 'RPTACK'+_radio_id) logger.info('(%s) Client %s (%s) has sent repeater configuration', self._system, _this_client['CALLSIGN'], _this_client['RADIO_ID']) From c3ebc7db5c908552efc7f1a1b5815d65b3eb466a Mon Sep 17 00:00:00 2001 From: N4IRS Date: Fri, 18 Nov 2016 11:25:04 -0500 Subject: [PATCH 29/38] Rename for consistency --- RS129.py => rs129.py | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename RS129.py => rs129.py (100%) diff --git a/RS129.py b/rs129.py similarity index 100% rename from RS129.py rename to rs129.py From 2baacf8f820e37961da7b5d7b4bd35e377f44647 Mon Sep 17 00:00:00 2001 From: N4IRS Date: Fri, 18 Nov 2016 12:49:46 -0500 Subject: [PATCH 30/38] Added comments explaining rules --- hb_routing_rules-SAMPLE.py | 26 +++++++++++++++++++++++++- 1 file changed, 25 insertions(+), 1 deletion(-) diff --git a/hb_routing_rules-SAMPLE.py b/hb_routing_rules-SAMPLE.py index 932b7e5..53033f5 100644 --- a/hb_routing_rules-SAMPLE.py +++ b/hb_routing_rules-SAMPLE.py @@ -1,3 +1,27 @@ +''' +THIS EXAMPLE WILL NOT WORK AS IT IS - YOU MUST SPECIFY NAMES AND GROUP IDS!!! +NOTES: + * GROUP_HANGTIME should be set to the same value as the repeaters in the IPSC network + * NAME is any name you want, and is used to match reciprocal rules for user-activateion + * ACTIVE should be set to True if you want the rule active by default, False to be inactive + * ON and OFF are LISTS of Talkgroup IDs used to trigger this rule off and on. Even if you + only want one (as shown in the ON example), it has to be in list format. None can be + handled with an empty list, such as " 'ON': [] ". + * TO_TYPE is timeout type. If you want to use timers, ON means when it's turned on, it will + turn off afer the timout period and OFF means it will turn back on after the timout + period. If you don't want to use timers, set it to anything else, but 'NONE' might be + a good value for documentation! + * TIMOUT is a value in minutes for the timout timer. No, I won't make it 'seconds', so don't + + ask. Timers are performance "expense". +DO YOU THINK THIS FILE IS TOO COMPLICATED? + Because you guys all want more and more features, this file is getting complicated. I have + dabbled with using a parser to make it easier to build. I'm torn. There is a HUGE benefit + to having it like it is. This is a python file. Simply running it + (i.e. "python hb_routing_rules.py) will tell you if there's a syntax error and where. Think + about that for a few minutes :) +''' + RULES = { 'MASTER-1': { 'GROUP_HANGTIME': 5, @@ -25,4 +49,4 @@ RULES = { if __name__ == '__main__': from pprint import pprint - pprint(RULES) \ No newline at end of file + pprint(RULES) From 64b4479c6c8110b762b1ee5ab8d26e5f90d37770 Mon Sep 17 00:00:00 2001 From: Cort Buffington Date: Fri, 18 Nov 2016 14:53:36 -0600 Subject: [PATCH 31/38] Fixed contention handler (again) THX G4EML --- hb_router.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/hb_router.py b/hb_router.py index 24fe2fe..f5d1887 100755 --- a/hb_router.py +++ b/hb_router.py @@ -75,7 +75,7 @@ __status__ = 'pre-alpha' # Run this every minute for rule timer updates def rule_timer_loop(): - logger.debug('(ALL HBSYSTEMS) Rule timer loop started') + logger.info('(ALL HBSYSTEMS) Rule timer loop started') _now = time() for _system in RULES: for _rule in RULES[_system]['GROUP_VOICE']: @@ -160,7 +160,7 @@ class routerSYSTEM(HBSYSTEM): # Is this a new call stream? if (_stream_id != self.STATUS[_slot]['RX_STREAM_ID']): - if (self.STATUS[_slot]['RX_TYPE'] != const.HBPF_SLT_VTERM) or ((pkt_time < self.STATUS[_slot]['RX_TIME'] + const.STREAM_TO) and (_rf_src != self.STATUS[_slot]['RX_RFS'])): + if (self.STATUS[_slot]['RX_TYPE'] != const.HBPF_SLT_VTERM) and (pkt_time < (self.STATUS[_slot]['RX_TIME'] + const.STREAM_TO)) and (_rf_src != self.STATUS[_slot]['RX_RFS']): logger.warning('(%s) Packet received with STREAM ID: %s SUB: %s REPEATER: %s TGID %s, SLOT %s collided with existing call', self._system, int_id(_stream_id), int_id(_rf_src), int_id(_radio_id), int_id(_dst_id), _slot) return @@ -196,7 +196,7 @@ class routerSYSTEM(HBSYSTEM): if _frame_type == const.HBPF_DATA_SYNC and _dtype_vseq == const.HBPF_SLT_VHEAD: logger.info('(%s) Call not routed, target active or in group hangtime: HBP system %s, TS%s, TGID%s', self._system, _target, _slot, int_id(rule['DST_GROUP'])) continue - if (rule['DST_GROUP'] == self.STATUS[_slot]['TX_TGID']) and (_stream_id != self.STATUS[_slot]['TX_STREAM_ID']) and (((pkt_time - self.STATUS[_slot]['TX_TIME']) < const.STREAM_TO) and (_rf_src != self.STATUS[_slot]['TX_RFS'])): + if (rule['DST_GROUP'] == self.STATUS[_slot]['TX_TGID']) and (_stream_id != self.STATUS[_slot]['TX_STREAM_ID']) and ((pkt_time - self.STATUS[_slot]['TX_TIME']) < const.STREAM_TO) and (_rf_src != self.STATUS[_slot]['TX_RFS']): if _frame_type == const.HBPF_DATA_SYNC and _dtype_vseq == const.HBPF_SLT_VHEAD: logger.info('(%s) Call not routed, call in progress: %s, target: HBP system %s, TS%s, TGID%s', self._system, int_id(_src_sub), _target, _slot, int_id(rule['DST_GROUP'])) continue From 9670a8bec42e4f3ffce2cd6c9619a6fc05354eb7 Mon Sep 17 00:00:00 2001 From: Cort Buffington Date: Fri, 18 Nov 2016 17:10:48 -0600 Subject: [PATCH 32/38] Abandon Stream ID for contention handling Moved back to the system used in DMRlink, and removed dependence on Stream ID. --- hb_router.py | 75 ++++++++++++++++++++++++++++++++++------------------ 1 file changed, 50 insertions(+), 25 deletions(-) diff --git a/hb_router.py b/hb_router.py index f5d1887..beda277 100755 --- a/hb_router.py +++ b/hb_router.py @@ -109,6 +109,8 @@ class routerSYSTEM(HBSYSTEM): # In TX_EMB_LC, 2-5 are burst B-E self.STATUS = { 1: { + 'RX_START': time(), + 'RX_SEQ': '\x00', 'RX_RFS': '\x00', 'TX_RFS': '\x00', 'RX_STREAM_ID': '\x00', @@ -129,6 +131,8 @@ class routerSYSTEM(HBSYSTEM): } }, 2: { + 'RX_START': time(), + 'RX_SEQ': '\x00', 'RX_RFS': '\x00', 'TX_RFS': '\x00', 'RX_STREAM_ID': '\x00', @@ -152,7 +156,6 @@ class routerSYSTEM(HBSYSTEM): def dmrd_received(self, _radio_id, _rf_src, _dst_id, _seq, _slot, _call_type, _frame_type, _dtype_vseq, _stream_id, _data): pkt_time = time() - new_stream = False dmrpkt = _data[20:53] _bits = int_id(_data[15]) @@ -165,7 +168,7 @@ class routerSYSTEM(HBSYSTEM): return # This is a new call stream - new_stream = True + self.STATUS['RX_START'] = pkt_time logger.info('(%s) *CALL START* STREAM ID: %s SUB: %s (%s) REPEATER: %s (%s) TGID %s (%s), TS %s', self._system, int_id(_stream_id), sub_alias(_rf_src), int_id(_rf_src), peer_alias(_radio_id), int_id(_radio_id), tg_alias(_dst_id), int_id(_dst_id), _slot) # If we can, use the LC from the voice header as to keep all options intact @@ -188,10 +191,31 @@ class routerSYSTEM(HBSYSTEM): # BEGIN CONTENTION HANDLING # # The rules for each of the 4 "ifs" below are listed here for readability. The Frame To Send is: - # From a different group than last TX to the target HBP system, but it has been less than Group Hangtime - # From the same group as the last TX to the target HBP system, but stream ID is different, and it is less than stream timout + # From a different group than last RX from this HBSystem, but it has been less than Group Hangtime + # From a different group than last TX to this HBSystem, but it has been less than Group Hangtime + # From the same group as the last RX from this HBSystem, but from a different subscriber, and it has been less than stream timeout + # From the same group as the last TX to this HBSystem, but from a different subscriber, and it has been less than stream timeout # The "continue" at the end of each means the next iteration of the for loop that tests for matching rules # + if ((rule['DST_GROUP'] != _target_status[_slot]['RX_TGID']) and ((pkt_time - _target_status[_slot]['RX_TIME']) < RULES[_target]['GROUP_HANGTIME'])): + if True: #if _frame_type == const.HBPF_DATA_SYNC and _dtype_vseq == const.HBPF_SLT_VHEAD: + logger.info('(%s) Call not routed to TGID%s, target active or in group hangtime: HBSystem %s, %s, TGID%s', self._system, int_id(_target_status[_slot]['TX_TGID']), _target, _slot, int_id(rule['DST_GROUP'])) + continue + if ((rule['DST_GROUP'] != _target_status[_slot]['TX_TGID']) and ((pkt_time - _target_status[_slot]['TX_TIME']) < RULES[_target]['GROUP_HANGTIME'])): + if True: #if _frame_type == const.HBPF_DATA_SYNC and _dtype_vseq == const.HBPF_SLT_VHEAD: + logger.info('(%s) Call not routed to TGID%s, target in group hangtime: HBSystem %s, %s, TGID%s', self._system, int_id(_target_status[_slot]['TX_TGID']), _target, _slot, int_id(rule['DST_GROUP'])) + continue + if (rule['DST_GROUP'] == _target_status[_slot]['RX_TGID']) and ((pkt_time - self.STATUS[_slot]['RX_TIME']) < const.STREAM_TO): + if True: #if _frame_type == const.HBPF_DATA_SYNC and _dtype_vseq == const.HBPF_SLT_VHEAD: + print(repr(rule['DST_GROUP']), repr(self.STATUS[_slot]['RX_TGID']), pkt_time, self.STATUS[_slot]['RX_TIME'], const.STREAM_TO) + logger.info('(%s) Call not routed, matching call already active on target: HBSystem %s, %s, TGID%s', self._system, _target, _slot, int_id(rule['DST_GROUP'])) + continue + if (rule['DST_GROUP'] == _target_status[_slot]['TX_TGID']) and (_rf_src != _target_status[_slot]['TX_RFS']) and ((pkt_time - self.STATUS[_slot]['TX_TIME']) < const.STREAM_TO): + if True: #if _frame_type == const.HBPF_DATA_SYNC and _dtype_vseq == const.HBPF_SLT_VHEAD: + logger.info('(%s) Call not routed, call route in progress from %s, target: HBSystem %s, %s, TGID%s', self._system, _target_status[_slot]['TX_RFS'], _target, _slot, int_id(rule['DST_GROUP'])) + continue + + ''' if ((rule['DST_GROUP'] != _target_status[_slot]['TX_TGID']) and ((pkt_time - self.STATUS[_slot]['RX_TIME']) < RULES[self._system]['GROUP_HANGTIME'])): if _frame_type == const.HBPF_DATA_SYNC and _dtype_vseq == const.HBPF_SLT_VHEAD: logger.info('(%s) Call not routed, target active or in group hangtime: HBP system %s, TS%s, TGID%s', self._system, _target, _slot, int_id(rule['DST_GROUP'])) @@ -200,7 +224,7 @@ class routerSYSTEM(HBSYSTEM): if _frame_type == const.HBPF_DATA_SYNC and _dtype_vseq == const.HBPF_SLT_VHEAD: logger.info('(%s) Call not routed, call in progress: %s, target: HBP system %s, TS%s, TGID%s', self._system, int_id(_src_sub), _target, _slot, int_id(rule['DST_GROUP'])) continue - + ''' # Set values for the contention handler to test next time there is a frame to forward _target_status[_slot]['TX_TIME'] = pkt_time @@ -210,12 +234,12 @@ class routerSYSTEM(HBSYSTEM): _target_status[_slot]['TX_STREAM_ID'] = _stream_id _target_status[_slot]['TX_RFS'] = _rf_src # Generate LCs (full and EMB) for the TX stream - if True: #_dst_id != rule['DST_GROUP']: - dst_lc = self.STATUS[_slot]['RX_LC'][0:3] + rule['DST_GROUP'] + _rf_src - _target_status[_slot]['TX_H_LC'] = bptc.encode_header_lc(dst_lc) - _target_status[_slot]['TX_T_LC'] = bptc.encode_terminator_lc(dst_lc) - _target_status[_slot]['TX_EMB_LC'] = bptc.encode_emblc(dst_lc) - logger.debug('(%s) Packet DST TGID (%s) does not match SRC TGID(%s) - Generating FULL and EMB LCs', self._system, int_id(rule['DST_GROUP']), int_id(_dst_id)) + # if _dst_id != rule['DST_GROUP']: + dst_lc = self.STATUS[_slot]['RX_LC'][0:3] + rule['DST_GROUP'] + _rf_src + _target_status[_slot]['TX_H_LC'] = bptc.encode_header_lc(dst_lc) + _target_status[_slot]['TX_T_LC'] = bptc.encode_terminator_lc(dst_lc) + _target_status[_slot]['TX_EMB_LC'] = bptc.encode_emblc(dst_lc) + logger.debug('(%s) Packet DST TGID (%s) does not match SRC TGID(%s) - Generating FULL and EMB LCs', self._system, int_id(rule['DST_GROUP']), int_id(_dst_id)) # Handle any necessary re-writes for the destination if rule['SRC_TS'] != rule['DST_TS']: @@ -228,19 +252,19 @@ class routerSYSTEM(HBSYSTEM): # MUST TEST FOR NEW STREAM AND IF SO, RE-WRITE THE LC FOR THE TARGET # MUST RE-WRITE DESTINATION TGID IF DIFFERENT - if True: #_dst_id != rule['DST_GROUP']: - dmrbits = bitarray(endian='big') - dmrbits.frombytes(dmrpkt) - # Create a voice header packet (FULL LC) - if _frame_type == const.HBPF_DATA_SYNC and _dtype_vseq == const.HBPF_SLT_VHEAD: - dmrbits = _target_status[_slot]['TX_H_LC'][0:98] + dmrbits[98:166] + _target_status[_slot]['TX_H_LC'][98:197] - # Create a voice terminator packet (FULL LC) - elif _frame_type == const.HBPF_DATA_SYNC and _dtype_vseq == const.HBPF_SLT_VTERM: - dmrbits = _target_status[_slot]['TX_T_LC'][0:98] + dmrbits[98:166] + _target_status[_slot]['TX_T_LC'][98:197] - # Create a Burst B-E packet (Embedded LC) - elif _dtype_vseq in [1,2,3,4]: - dmrbits = dmrbits[0:116] + _target_status[_slot]['TX_EMB_LC'][_dtype_vseq] + dmrbits[148:264] - dmrpkt = dmrbits.tobytes() + # if _dst_id != rule['DST_GROUP']: + dmrbits = bitarray(endian='big') + dmrbits.frombytes(dmrpkt) + # Create a voice header packet (FULL LC) + if _frame_type == const.HBPF_DATA_SYNC and _dtype_vseq == const.HBPF_SLT_VHEAD: + dmrbits = _target_status[_slot]['TX_H_LC'][0:98] + dmrbits[98:166] + _target_status[_slot]['TX_H_LC'][98:197] + # Create a voice terminator packet (FULL LC) + elif _frame_type == const.HBPF_DATA_SYNC and _dtype_vseq == const.HBPF_SLT_VTERM: + dmrbits = _target_status[_slot]['TX_T_LC'][0:98] + dmrbits[98:166] + _target_status[_slot]['TX_T_LC'][98:197] + # Create a Burst B-E packet (Embedded LC) + elif _dtype_vseq in [1,2,3,4]: + dmrbits = dmrbits[0:116] + _target_status[_slot]['TX_EMB_LC'][_dtype_vseq] + dmrbits[148:264] + dmrpkt = dmrbits.tobytes() _tmp_data = _tmp_data + dmrpkt + _data[53:55] # Transmit the packet to the destination system @@ -251,7 +275,8 @@ class routerSYSTEM(HBSYSTEM): # Final actions - Is this a voice terminator? if (_frame_type == const.HBPF_DATA_SYNC) and (_dtype_vseq == const.HBPF_SLT_VTERM) and (self.STATUS[_slot]['RX_TYPE'] != const.HBPF_SLT_VTERM): - logger.info('(%s) *CALL END* STREAM ID: %s SUB: %s (%s) REPEATER: %s (%s) TGID %s (%s), TS %s', self._system, int_id(_stream_id), sub_alias(_rf_src), int_id(_rf_src), peer_alias(_radio_id), int_id(_radio_id), tg_alias(_dst_id), int_id(_dst_id), _slot) + call_duration = pkt_time - self.STATUS['RX_START'] + logger.info('(%s) *CALL END* STREAM ID: %s SUB: %s (%s) REPEATER: %s (%s) TGID %s (%s), TS %s, Duration: %s', self._system, int_id(_stream_id), sub_alias(_rf_src), int_id(_rf_src), peer_alias(_radio_id), int_id(_radio_id), tg_alias(_dst_id), int_id(_dst_id), _slot, call_duration) # Mark status variables for use later self.STATUS[_slot]['RX_RFS'] = _rf_src From 92fe12566c08573099721866c565e5c30f25eee7 Mon Sep 17 00:00:00 2001 From: g4eml Date: Sat, 19 Nov 2016 12:32:00 +0000 Subject: [PATCH 33/38] Changes to Contention code to cover Timeslot changes Hi Cort.. The contention code didn't seem to be working. Especially when the destination timeslot was different to the source. The contention code was using _slot when refering to the target where I think it should be using rule['DST_TS'] This version works better and group hangtime seems to work. ...Colin. --- hb_router.py | 34 +++++++++++++++++----------------- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/hb_router.py b/hb_router.py index beda277..ceaac01 100755 --- a/hb_router.py +++ b/hb_router.py @@ -197,22 +197,22 @@ class routerSYSTEM(HBSYSTEM): # From the same group as the last TX to this HBSystem, but from a different subscriber, and it has been less than stream timeout # The "continue" at the end of each means the next iteration of the for loop that tests for matching rules # - if ((rule['DST_GROUP'] != _target_status[_slot]['RX_TGID']) and ((pkt_time - _target_status[_slot]['RX_TIME']) < RULES[_target]['GROUP_HANGTIME'])): + if ((rule['DST_GROUP'] != _target_status[rule['DST_TS']]['RX_TGID']) and ((pkt_time - _target_status[rule['DST_TS']]['RX_TIME']) < RULES[_target]['GROUP_HANGTIME'])): if True: #if _frame_type == const.HBPF_DATA_SYNC and _dtype_vseq == const.HBPF_SLT_VHEAD: - logger.info('(%s) Call not routed to TGID%s, target active or in group hangtime: HBSystem %s, %s, TGID%s', self._system, int_id(_target_status[_slot]['TX_TGID']), _target, _slot, int_id(rule['DST_GROUP'])) + logger.info('(%s) Call not routed to TGID%s, target active or in group hangtime: HBSystem %s, %s, TGID%s', self._system, int_id(_target_status[rule['DST_TS']]['TX_TGID']), _target, _slot, int_id(rule['DST_GROUP'])) continue - if ((rule['DST_GROUP'] != _target_status[_slot]['TX_TGID']) and ((pkt_time - _target_status[_slot]['TX_TIME']) < RULES[_target]['GROUP_HANGTIME'])): + if ((rule['DST_GROUP'] != _target_status[rule['DST_TS']]['TX_TGID']) and ((pkt_time - _target_status[rule['DST_TS']]['TX_TIME']) < RULES[_target]['GROUP_HANGTIME'])): if True: #if _frame_type == const.HBPF_DATA_SYNC and _dtype_vseq == const.HBPF_SLT_VHEAD: - logger.info('(%s) Call not routed to TGID%s, target in group hangtime: HBSystem %s, %s, TGID%s', self._system, int_id(_target_status[_slot]['TX_TGID']), _target, _slot, int_id(rule['DST_GROUP'])) + logger.info('(%s) Call not routed to TGID%s, target in group hangtime: HBSystem %s, %s, TGID%s', self._system, int_id(_target_status[rule['DST_TS']]['TX_TGID']), _target, _slot, int_id(rule['DST_GROUP'])) continue - if (rule['DST_GROUP'] == _target_status[_slot]['RX_TGID']) and ((pkt_time - self.STATUS[_slot]['RX_TIME']) < const.STREAM_TO): + if (rule['DST_GROUP'] == _target_status[rule['DST_TS']]['RX_TGID']) and ((pkt_time - self.STATUS[_slot]['RX_TIME']) < const.STREAM_TO): if True: #if _frame_type == const.HBPF_DATA_SYNC and _dtype_vseq == const.HBPF_SLT_VHEAD: print(repr(rule['DST_GROUP']), repr(self.STATUS[_slot]['RX_TGID']), pkt_time, self.STATUS[_slot]['RX_TIME'], const.STREAM_TO) logger.info('(%s) Call not routed, matching call already active on target: HBSystem %s, %s, TGID%s', self._system, _target, _slot, int_id(rule['DST_GROUP'])) continue - if (rule['DST_GROUP'] == _target_status[_slot]['TX_TGID']) and (_rf_src != _target_status[_slot]['TX_RFS']) and ((pkt_time - self.STATUS[_slot]['TX_TIME']) < const.STREAM_TO): + if (rule['DST_GROUP'] == _target_status[rule['DST_TS']]['TX_TGID']) and (_rf_src != _target_status[rule['DST_TS']]['TX_RFS']) and ((pkt_time - self.STATUS[_slot]['TX_TIME']) < const.STREAM_TO): if True: #if _frame_type == const.HBPF_DATA_SYNC and _dtype_vseq == const.HBPF_SLT_VHEAD: - logger.info('(%s) Call not routed, call route in progress from %s, target: HBSystem %s, %s, TGID%s', self._system, _target_status[_slot]['TX_RFS'], _target, _slot, int_id(rule['DST_GROUP'])) + logger.info('(%s) Call not routed, call route in progress from %s, target: HBSystem %s, %s, TGID%s', self._system, _target_status[rule['DST_TS']]['TX_RFS'], _target, _slot, int_id(rule['DST_GROUP'])) continue ''' @@ -226,19 +226,19 @@ class routerSYSTEM(HBSYSTEM): continue ''' # Set values for the contention handler to test next time there is a frame to forward - _target_status[_slot]['TX_TIME'] = pkt_time + _target_status[rule['DST_TS']]['TX_TIME'] = pkt_time if _stream_id != self.STATUS[_slot]['RX_STREAM_ID']: # Record the DST TGID and Stream ID - _target_status[_slot]['TX_TGID'] = rule['DST_GROUP'] - _target_status[_slot]['TX_STREAM_ID'] = _stream_id - _target_status[_slot]['TX_RFS'] = _rf_src + _target_status[rule['DST_TS']]['TX_TGID'] = rule['DST_GROUP'] + _target_status[rule['DST_TS']]['TX_STREAM_ID'] = _stream_id + _target_status[rule['DST_TS']]['TX_RFS'] = _rf_src # Generate LCs (full and EMB) for the TX stream # if _dst_id != rule['DST_GROUP']: dst_lc = self.STATUS[_slot]['RX_LC'][0:3] + rule['DST_GROUP'] + _rf_src - _target_status[_slot]['TX_H_LC'] = bptc.encode_header_lc(dst_lc) - _target_status[_slot]['TX_T_LC'] = bptc.encode_terminator_lc(dst_lc) - _target_status[_slot]['TX_EMB_LC'] = bptc.encode_emblc(dst_lc) + _target_status[rule['DST_TS']]['TX_H_LC'] = bptc.encode_header_lc(dst_lc) + _target_status[rule['DST_TS']]['TX_T_LC'] = bptc.encode_terminator_lc(dst_lc) + _target_status[rule['DST_TS']]['TX_EMB_LC'] = bptc.encode_emblc(dst_lc) logger.debug('(%s) Packet DST TGID (%s) does not match SRC TGID(%s) - Generating FULL and EMB LCs', self._system, int_id(rule['DST_GROUP']), int_id(_dst_id)) # Handle any necessary re-writes for the destination @@ -257,13 +257,13 @@ class routerSYSTEM(HBSYSTEM): dmrbits.frombytes(dmrpkt) # Create a voice header packet (FULL LC) if _frame_type == const.HBPF_DATA_SYNC and _dtype_vseq == const.HBPF_SLT_VHEAD: - dmrbits = _target_status[_slot]['TX_H_LC'][0:98] + dmrbits[98:166] + _target_status[_slot]['TX_H_LC'][98:197] + dmrbits = _target_status[rule['DST_TS']]['TX_H_LC'][0:98] + dmrbits[98:166] + _target_status[rule['DST_TS']]['TX_H_LC'][98:197] # Create a voice terminator packet (FULL LC) elif _frame_type == const.HBPF_DATA_SYNC and _dtype_vseq == const.HBPF_SLT_VTERM: - dmrbits = _target_status[_slot]['TX_T_LC'][0:98] + dmrbits[98:166] + _target_status[_slot]['TX_T_LC'][98:197] + dmrbits = _target_status[rule['DST_TS']]['TX_T_LC'][0:98] + dmrbits[98:166] + _target_status[rule['DST_TS']]['TX_T_LC'][98:197] # Create a Burst B-E packet (Embedded LC) elif _dtype_vseq in [1,2,3,4]: - dmrbits = dmrbits[0:116] + _target_status[_slot]['TX_EMB_LC'][_dtype_vseq] + dmrbits[148:264] + dmrbits = dmrbits[0:116] + _target_status[rule['DST_TS']]['TX_EMB_LC'][_dtype_vseq] + dmrbits[148:264] dmrpkt = dmrbits.tobytes() _tmp_data = _tmp_data + dmrpkt + _data[53:55] From 0a23c813eb2726e95e3a0f8c15fa928164abcff3 Mon Sep 17 00:00:00 2001 From: Cort Buffington Date: Sat, 19 Nov 2016 08:33:47 -0600 Subject: [PATCH 34/38] More fixes to follow G4EML's last discovery need to have the contention handler look at the timers on the DESTINATION side instead of source as well. --- hb_router.py | 70 +++++++++++++++++++++++++++++++++++++++++----------- 1 file changed, 55 insertions(+), 15 deletions(-) diff --git a/hb_router.py b/hb_router.py index ceaac01..8b62cb2 100755 --- a/hb_router.py +++ b/hb_router.py @@ -66,7 +66,7 @@ RULES = RULES_FILE # Does anybody read this stuff? There's a PEP somewhere that says I should do this. __author__ = 'Cortney T. Buffington, N0MJS' __copyright__ = 'Copyright (c) 2016 Cortney T. Buffington, N0MJS and the K0USY Group' -__credits__ = 'Colin Durbridge, G4EML, Steve Zingman, N4IRS; Mike Zingman, N4IRR; Jonathan Naylor, G4KLX; Hans Barthen, DL5DI; Torsten Shultze, DG1HT' +__credits__ = 'Colin Durrouting, G4EML, Steve Zingman, N4IRS; Mike Zingman, N4IRR; Jonathan Naylor, G4KLX; Hans Barthen, DL5DI; Torsten Shultze, DG1HT' __license__ = 'Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported' __maintainer__ = 'Cort Buffington, N0MJS' __email__ = 'n0mjs@me.com' @@ -205,26 +205,16 @@ class routerSYSTEM(HBSYSTEM): if True: #if _frame_type == const.HBPF_DATA_SYNC and _dtype_vseq == const.HBPF_SLT_VHEAD: logger.info('(%s) Call not routed to TGID%s, target in group hangtime: HBSystem %s, %s, TGID%s', self._system, int_id(_target_status[rule['DST_TS']]['TX_TGID']), _target, _slot, int_id(rule['DST_GROUP'])) continue - if (rule['DST_GROUP'] == _target_status[rule['DST_TS']]['RX_TGID']) and ((pkt_time - self.STATUS[_slot]['RX_TIME']) < const.STREAM_TO): + if (rule['DST_GROUP'] == _target_status[rule['DST_TS']]['RX_TGID']) and ((pkt_time - _target_status[rule['DST_TS']]['RX_TIME']) < const.STREAM_TO): if True: #if _frame_type == const.HBPF_DATA_SYNC and _dtype_vseq == const.HBPF_SLT_VHEAD: - print(repr(rule['DST_GROUP']), repr(self.STATUS[_slot]['RX_TGID']), pkt_time, self.STATUS[_slot]['RX_TIME'], const.STREAM_TO) + print(repr(rule['DST_GROUP']), repr(_target_status[rule['DST_TS']]['RX_TGID']), pkt_time, _target_status[rule['DST_TS']]['RX_TIME'], const.STREAM_TO) logger.info('(%s) Call not routed, matching call already active on target: HBSystem %s, %s, TGID%s', self._system, _target, _slot, int_id(rule['DST_GROUP'])) continue - if (rule['DST_GROUP'] == _target_status[rule['DST_TS']]['TX_TGID']) and (_rf_src != _target_status[rule['DST_TS']]['TX_RFS']) and ((pkt_time - self.STATUS[_slot]['TX_TIME']) < const.STREAM_TO): + if (rule['DST_GROUP'] == _target_status[rule['DST_TS']]['TX_TGID']) and (_rf_src != _target_status[rule['DST_TS']]['TX_RFS']) and ((pkt_time - _target_status[rule['DST_TS']]['TX_TIME']) < const.STREAM_TO): if True: #if _frame_type == const.HBPF_DATA_SYNC and _dtype_vseq == const.HBPF_SLT_VHEAD: logger.info('(%s) Call not routed, call route in progress from %s, target: HBSystem %s, %s, TGID%s', self._system, _target_status[rule['DST_TS']]['TX_RFS'], _target, _slot, int_id(rule['DST_GROUP'])) continue - - ''' - if ((rule['DST_GROUP'] != _target_status[_slot]['TX_TGID']) and ((pkt_time - self.STATUS[_slot]['RX_TIME']) < RULES[self._system]['GROUP_HANGTIME'])): - if _frame_type == const.HBPF_DATA_SYNC and _dtype_vseq == const.HBPF_SLT_VHEAD: - logger.info('(%s) Call not routed, target active or in group hangtime: HBP system %s, TS%s, TGID%s', self._system, _target, _slot, int_id(rule['DST_GROUP'])) - continue - if (rule['DST_GROUP'] == self.STATUS[_slot]['TX_TGID']) and (_stream_id != self.STATUS[_slot]['TX_STREAM_ID']) and ((pkt_time - self.STATUS[_slot]['TX_TIME']) < const.STREAM_TO) and (_rf_src != self.STATUS[_slot]['TX_RFS']): - if _frame_type == const.HBPF_DATA_SYNC and _dtype_vseq == const.HBPF_SLT_VHEAD: - logger.info('(%s) Call not routed, call in progress: %s, target: HBP system %s, TS%s, TGID%s', self._system, int_id(_src_sub), _target, _slot, int_id(rule['DST_GROUP'])) - continue - ''' + # Set values for the contention handler to test next time there is a frame to forward _target_status[rule['DST_TS']]['TX_TIME'] = pkt_time @@ -278,6 +268,56 @@ class routerSYSTEM(HBSYSTEM): call_duration = pkt_time - self.STATUS['RX_START'] logger.info('(%s) *CALL END* STREAM ID: %s SUB: %s (%s) REPEATER: %s (%s) TGID %s (%s), TS %s, Duration: %s', self._system, int_id(_stream_id), sub_alias(_rf_src), int_id(_rf_src), peer_alias(_radio_id), int_id(_radio_id), tg_alias(_dst_id), int_id(_dst_id), _slot, call_duration) + # + # Begin in-band signalling for call end. This has nothign to do with routing traffic directly. + # + + # Iterate the rules dictionary + for rule in RULES[self._system]['GROUP_VOICE']: + _target = rule['DST_NET'] + + # TGID matches a rule source, reset its timer + if _slot == rule['SRC_TS'] and _dst_id == rule['SRC_GROUP'] and ((rule['TO_TYPE'] == 'ON' and (rule['ACTIVE'] == True)) or (rule['TO_TYPE'] == 'OFF' and rule['ACTIVE'] == False)): + rule['TIMER'] = pkt_time + rule['TIMEOUT'] + logger.info('(%s) Source group transmission match for rule \"%s\". Reset timeout to %s', self._system, rule['NAME'], rule['TIMER']) + + # Scan for reciprocal rules and reset their timers as well. + for target_rule in RULES[_target]['GROUP_VOICE']: + if target_rule['NAME'] == rule['NAME']: + target_rule['TIMER'] = pkt_time + target_rule['TIMEOUT'] + logger.info('(%s) Reciprocal group transmission match for rule \"%s\" on IPSC \"%s\". Reset timeout to %s', self._system, target_rule['NAME'], _target, rule['TIMER']) + + # TGID matches an ACTIVATION trigger + if _dst_id in rule['ON']: + # Set the matching rule as ACTIVE + rule['ACTIVE'] = True + rule['TIMER'] = pkt_time + rule['TIMEOUT'] + logger.info('(%s) Primary routing Rule \"%s\" changed to state: %s', self._system, rule['NAME'], rule['ACTIVE']) + + # Set reciprocal rules for other IPSCs as ACTIVE + for target_rule in RULES[_target]['GROUP_VOICE']: + if target_rule['NAME'] == rule['NAME']: + target_rule['ACTIVE'] = True + target_rule['TIMER'] = pkt_time + target_rule['TIMEOUT'] + logger.info('(%s) Reciprocal routing Rule \"%s\" in IPSC \"%s\" changed to state: %s', self._system, target_rule['NAME'], _target, rule['ACTIVE']) + + # TGID matches an DE-ACTIVATION trigger + if _dst_id in rule['OFF']: + # Set the matching rule as ACTIVE + rule['ACTIVE'] = False + logger.info('(%s) Routing Rule \"%s\" changed to state: %s', self._system, rule['NAME'], rule['ACTIVE']) + + # Set reciprocal rules for other IPSCs as ACTIVE + _target = rule['DST_NET'] + for target_rule in RULES[_target]['GROUP_VOICE']: + if target_rule['NAME'] == rule['NAME']: + target_rule['ACTIVE'] = False + logger.info('(%s) Reciprocal routing Rule \"%s\" in IPSC \"%s\" changed to state: %s', self._system, target_rule['NAME'], _target, rule['ACTIVE']) + # + # END IN-BAND SIGNALLING + # + + # Mark status variables for use later self.STATUS[_slot]['RX_RFS'] = _rf_src self.STATUS[_slot]['RX_TYPE'] = _dtype_vseq From 45528c7877a9cc0b4922e4b1c171ebeb2ed004e7 Mon Sep 17 00:00:00 2001 From: Cort Buffington Date: Sat, 19 Nov 2016 08:43:37 -0600 Subject: [PATCH 35/38] Access Control List & UA/Timer Hooks added --- hb_router.py | 41 ++++++++++++++++++++++++++++++++++++----- sub_acl.py | 4 ++++ 2 files changed, 40 insertions(+), 5 deletions(-) create mode 100644 sub_acl.py diff --git a/hb_router.py b/hb_router.py index 8b62cb2..85ce3f2 100755 --- a/hb_router.py +++ b/hb_router.py @@ -14,9 +14,6 @@ from binascii import b2a_hex as h from bitarray import bitarray from time import time -# Debugging functions -from pprint import pprint - # Twisted is pretty important, so I keep it separate from twisted.internet.protocol import DatagramProtocol from twisted.internet import reactor @@ -60,8 +57,37 @@ for _system in CONFIG['SYSTEMS']: RULES = RULES_FILE -# TEMPORARY DEBUGGING LINE -- TO BE REMOVED LATER -#pprint(RULES) +# Import subscriber ACL +# ACL may be a single list of subscriber IDs +# Global action is to allow or deny them. Multiple lists with different actions and ranges +# are not yet implemented. +try: + from sub_acl import ACL_ACTION, ACL + # uses more memory to build hex strings, but processes MUCH faster when checking for matches + for i, e in enumerate(ACL): + ACL[i] = hex_str_3(ACL[i]) + logger.info('Subscriber access control file found, subscriber ACL imported') +except ImportError: + logger.critical('\'sub_acl.py\' not found - all subscriber IDs are valid') + ACL_ACTION = 'NONE' + +# Depending on which type of ACL is used (PERMIT, DENY... or there isn't one) +# define a differnet function to be used to check the ACL +if ACL_ACTION == 'PERMIT': + def allow_sub(_sub): + if _sub in ACL: + return True + else: + return False +elif ACL_ACTION == 'DENY': + def allow_sub(_sub): + if _sub not in ACL: + return True + else: + return False +else: + def allow_sub(_sub): + return True # Does anybody read this stuff? There's a PEP somewhere that says I should do this. __author__ = 'Cortney T. Buffington, N0MJS' @@ -161,6 +187,11 @@ class routerSYSTEM(HBSYSTEM): if _call_type == 'group': + # Check for ACL match, and return if the subscriber is not allowed + if allow_sub(_rf_src) == False: + logger.warning('(%s) Group Voice Packet ***REJECTED BY ACL*** From: %s, HBP Peer %s, Destination TGID %s', self._system, int_id(_rf_src), int_id(_radio_id), int_id(_dst_id)) + return + # Is this a new call stream? if (_stream_id != self.STATUS[_slot]['RX_STREAM_ID']): if (self.STATUS[_slot]['RX_TYPE'] != const.HBPF_SLT_VTERM) and (pkt_time < (self.STATUS[_slot]['RX_TIME'] + const.STREAM_TO)) and (_rf_src != self.STATUS[_slot]['RX_RFS']): diff --git a/sub_acl.py b/sub_acl.py new file mode 100644 index 0000000..260f654 --- /dev/null +++ b/sub_acl.py @@ -0,0 +1,4 @@ +ACL_ACTION = "DENY" # May be PERMIT|DENY +ACL = [ + 1,2,3,4,5,6,7,8,9,10,100 + ] \ No newline at end of file From 343ba53c8cdeca86b072f2d34b3963cff3dbc23d Mon Sep 17 00:00:00 2001 From: g4eml Date: Sat, 19 Nov 2016 16:02:06 +0000 Subject: [PATCH 36/38] Fix an issue with multiple rules targeting the same talkgroup. If two rules are trying to send simultaneously to the same destination one was correctly being routed and the other rejected. However when the routed stream ended the waiting stream was not processed correctly and was routed with missing packets. This was because the change in stream ID had already happened and was failing to trigger the 'new stream' part of the code. This fix triggers on change of stream or change of source or change of talkgroup. --- hb_router.py | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/hb_router.py b/hb_router.py index 85ce3f2..c43a73d 100755 --- a/hb_router.py +++ b/hb_router.py @@ -92,7 +92,7 @@ else: # Does anybody read this stuff? There's a PEP somewhere that says I should do this. __author__ = 'Cortney T. Buffington, N0MJS' __copyright__ = 'Copyright (c) 2016 Cortney T. Buffington, N0MJS and the K0USY Group' -__credits__ = 'Colin Durrouting, G4EML, Steve Zingman, N4IRS; Mike Zingman, N4IRR; Jonathan Naylor, G4KLX; Hans Barthen, DL5DI; Torsten Shultze, DG1HT' +__credits__ = 'Colin Durbridge, G4EML, Steve Zingman, N4IRS; Mike Zingman, N4IRR; Jonathan Naylor, G4KLX; Hans Barthen, DL5DI; Torsten Shultze, DG1HT' __license__ = 'Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported' __maintainer__ = 'Cort Buffington, N0MJS' __email__ = 'n0mjs@me.com' @@ -229,27 +229,27 @@ class routerSYSTEM(HBSYSTEM): # The "continue" at the end of each means the next iteration of the for loop that tests for matching rules # if ((rule['DST_GROUP'] != _target_status[rule['DST_TS']]['RX_TGID']) and ((pkt_time - _target_status[rule['DST_TS']]['RX_TIME']) < RULES[_target]['GROUP_HANGTIME'])): - if True: #if _frame_type == const.HBPF_DATA_SYNC and _dtype_vseq == const.HBPF_SLT_VHEAD: + if _frame_type == const.HBPF_DATA_SYNC and _dtype_vseq == const.HBPF_SLT_VHEAD: logger.info('(%s) Call not routed to TGID%s, target active or in group hangtime: HBSystem %s, %s, TGID%s', self._system, int_id(_target_status[rule['DST_TS']]['TX_TGID']), _target, _slot, int_id(rule['DST_GROUP'])) continue if ((rule['DST_GROUP'] != _target_status[rule['DST_TS']]['TX_TGID']) and ((pkt_time - _target_status[rule['DST_TS']]['TX_TIME']) < RULES[_target]['GROUP_HANGTIME'])): - if True: #if _frame_type == const.HBPF_DATA_SYNC and _dtype_vseq == const.HBPF_SLT_VHEAD: + if _frame_type == const.HBPF_DATA_SYNC and _dtype_vseq == const.HBPF_SLT_VHEAD: logger.info('(%s) Call not routed to TGID%s, target in group hangtime: HBSystem %s, %s, TGID%s', self._system, int_id(_target_status[rule['DST_TS']]['TX_TGID']), _target, _slot, int_id(rule['DST_GROUP'])) continue if (rule['DST_GROUP'] == _target_status[rule['DST_TS']]['RX_TGID']) and ((pkt_time - _target_status[rule['DST_TS']]['RX_TIME']) < const.STREAM_TO): - if True: #if _frame_type == const.HBPF_DATA_SYNC and _dtype_vseq == const.HBPF_SLT_VHEAD: + if _frame_type == const.HBPF_DATA_SYNC and _dtype_vseq == const.HBPF_SLT_VHEAD: print(repr(rule['DST_GROUP']), repr(_target_status[rule['DST_TS']]['RX_TGID']), pkt_time, _target_status[rule['DST_TS']]['RX_TIME'], const.STREAM_TO) logger.info('(%s) Call not routed, matching call already active on target: HBSystem %s, %s, TGID%s', self._system, _target, _slot, int_id(rule['DST_GROUP'])) continue if (rule['DST_GROUP'] == _target_status[rule['DST_TS']]['TX_TGID']) and (_rf_src != _target_status[rule['DST_TS']]['TX_RFS']) and ((pkt_time - _target_status[rule['DST_TS']]['TX_TIME']) < const.STREAM_TO): - if True: #if _frame_type == const.HBPF_DATA_SYNC and _dtype_vseq == const.HBPF_SLT_VHEAD: - logger.info('(%s) Call not routed, call route in progress from %s, target: HBSystem %s, %s, TGID%s', self._system, _target_status[rule['DST_TS']]['TX_RFS'], _target, _slot, int_id(rule['DST_GROUP'])) + if _frame_type == const.HBPF_DATA_SYNC and _dtype_vseq == const.HBPF_SLT_VHEAD: + logger.info('(%s) Call not routed, call route in progress from %s, target: HBSystem %s, %s, TGID%s', self._system, int_id(_target_status[rule['DST_TS']]['TX_RFS']), _target, _slot, int_id(rule['DST_GROUP'])) continue # Set values for the contention handler to test next time there is a frame to forward _target_status[rule['DST_TS']]['TX_TIME'] = pkt_time - if _stream_id != self.STATUS[_slot]['RX_STREAM_ID']: + if (_stream_id != self.STATUS[_slot]['RX_STREAM_ID']) or (_target_status[rule['DST_TS']]['TX_RFS'] != _rf_src) or (_target_status[rule['DST_TS']]['TX_TGID'] != rule['DST_GROUP']): # Record the DST TGID and Stream ID _target_status[rule['DST_TS']]['TX_TGID'] = rule['DST_GROUP'] _target_status[rule['DST_TS']]['TX_STREAM_ID'] = _stream_id From 92a2d5bd6646ef9655cf448b6de0fc6c2004aa6d Mon Sep 17 00:00:00 2001 From: Cort Buffington Date: Sat, 19 Nov 2016 10:37:09 -0600 Subject: [PATCH 37/38] Logging updates --- hb_router.py | 8 +- peer_ids.csv | 63 ++++-- subscriber_ids.csv | 481 +++++++++++++++++++++++++++++++++++++++++++-- 3 files changed, 511 insertions(+), 41 deletions(-) diff --git a/hb_router.py b/hb_router.py index 85ce3f2..01beefb 100755 --- a/hb_router.py +++ b/hb_router.py @@ -230,20 +230,20 @@ class routerSYSTEM(HBSYSTEM): # if ((rule['DST_GROUP'] != _target_status[rule['DST_TS']]['RX_TGID']) and ((pkt_time - _target_status[rule['DST_TS']]['RX_TIME']) < RULES[_target]['GROUP_HANGTIME'])): if True: #if _frame_type == const.HBPF_DATA_SYNC and _dtype_vseq == const.HBPF_SLT_VHEAD: - logger.info('(%s) Call not routed to TGID%s, target active or in group hangtime: HBSystem %s, %s, TGID%s', self._system, int_id(_target_status[rule['DST_TS']]['TX_TGID']), _target, _slot, int_id(rule['DST_GROUP'])) + logger.info('(%s) Call not routed to TGID%s, target active or in group hangtime: HBSystem: %s, TS: %s, TGID: %s', self._system, int_id(rule['DST_GROUP']), _target, rule['DST_TS'], int_id(_target_status[rule['DST_TS']]['RX_TGID'])) continue if ((rule['DST_GROUP'] != _target_status[rule['DST_TS']]['TX_TGID']) and ((pkt_time - _target_status[rule['DST_TS']]['TX_TIME']) < RULES[_target]['GROUP_HANGTIME'])): if True: #if _frame_type == const.HBPF_DATA_SYNC and _dtype_vseq == const.HBPF_SLT_VHEAD: - logger.info('(%s) Call not routed to TGID%s, target in group hangtime: HBSystem %s, %s, TGID%s', self._system, int_id(_target_status[rule['DST_TS']]['TX_TGID']), _target, _slot, int_id(rule['DST_GROUP'])) + logger.info('(%s) Call not routed to TGID%s, target in group hangtime: HBSystem: %s, TS: %s, TGID: %s', self._system, int_id(rule['DST_GROUP']), _target, rule['DST_TS'], int_id(_target_status[rule['DST_TS']]['TX_TGID'])) continue if (rule['DST_GROUP'] == _target_status[rule['DST_TS']]['RX_TGID']) and ((pkt_time - _target_status[rule['DST_TS']]['RX_TIME']) < const.STREAM_TO): if True: #if _frame_type == const.HBPF_DATA_SYNC and _dtype_vseq == const.HBPF_SLT_VHEAD: print(repr(rule['DST_GROUP']), repr(_target_status[rule['DST_TS']]['RX_TGID']), pkt_time, _target_status[rule['DST_TS']]['RX_TIME'], const.STREAM_TO) - logger.info('(%s) Call not routed, matching call already active on target: HBSystem %s, %s, TGID%s', self._system, _target, _slot, int_id(rule['DST_GROUP'])) + logger.info('(%s) Call not routed to TGID%s, matching call already active on target: HBSystem: %s, TS: %s, TGID: %s', self._system, int_id(rule['DST_GROUP']), _target, rule['DST_TS'], int_id(_target_status[rule['DST_TS']]['RX_TGID'])) continue if (rule['DST_GROUP'] == _target_status[rule['DST_TS']]['TX_TGID']) and (_rf_src != _target_status[rule['DST_TS']]['TX_RFS']) and ((pkt_time - _target_status[rule['DST_TS']]['TX_TIME']) < const.STREAM_TO): if True: #if _frame_type == const.HBPF_DATA_SYNC and _dtype_vseq == const.HBPF_SLT_VHEAD: - logger.info('(%s) Call not routed, call route in progress from %s, target: HBSystem %s, %s, TGID%s', self._system, _target_status[rule['DST_TS']]['TX_RFS'], _target, _slot, int_id(rule['DST_GROUP'])) + logger.info('(%s) Call not routed for subscriber %s, call route in progress on target: HBSystem: %s, TS: %s, TGID: %s, SUB: %s', self._system, int_id(_rf_src), _target, rule['DST_TS'], int_id(_target_status[rule['DST_TS']]['TX_TGID']), _target_status[rule['DST_TS']]['TX_RFS']) continue # Set values for the contention handler to test next time there is a frame to forward diff --git a/peer_ids.csv b/peer_ids.csv index cb84c6c..ad22c4e 100644 --- a/peer_ids.csv +++ b/peer_ids.csv @@ -6,6 +6,7 @@ 111206,KG4IDD,ESPANIOLA,Florida,United States,443.40000,1,+5.000,Peer,TS1 TS2,KG4IDD,,1,Jacksonville, Fl
111207,KJ4SHL,Tampa Downtown,Florida,United States,443.75250,1,+5.000,Master,TS1 TS2,KJ4SHL,,1,MotoDMR
111208,NX4DN,PORTABLE RPT,Florida,United States,444.17500,1,+5.000,Peer,TS1 TS2,K4GFD,,0,K4USD
+111209,KJ4YZI,Vero Beach,Florida,United States,444.32500,1,+5.000,Peer,TS1 TS2,KB4OVL,,0,Brandmeister
113601,WB2ZEX,Brooklyn,New York,United States,438.27500,1,-5.000,Peer,TS1 TS2,WB2ZEX,Time Slot
#1 - Group Call TG 444 NY Metro System wide-FT
#1 - Group Call TG 1 = World Wide -PTT
#1 - Group Call TG 3 = North America-PTT
#1 - Group Call TG 13 = World Wide English-PTT
#1 - Group Call TG 3172 = NE / Regional-PTT
#1 - Group Call TG 310 = Tac 310 -PTT
#1 - Group Call TG 311 = Tac 311 -PTT
#1 - Group Call TG 9998 = Parrot , Audio Test Server-PTT
#2 - member only private Talk Groups
,1,Bronx Trbo
113602,KC2NFB,East Meadow,New York,United States,444.40000,1,+5.000,Peer,TS1 TS2,KC2NFB,Time Slot
#1 - Group Call TG 444 NY Metro System wide  -FT
#2 - member only private Talk Groups,1,Bronx Trbo
113603,N2LEN,Warrensburg,New York,United States,442.05000,1,+5.000,Master,TS1 TS2,N2LEN,,1,DMR-MARC
@@ -21,7 +22,7 @@ 113613,W2RGM,Dix Hills,New York,United States,147.07500,1,+0.600,Peer,TS1 TS2,W2RGM,,1,GARA TS-2, Latino TS-1
113614,N2LEN,New Baltimore,New York,United States,449.02500,1,-5.000,Master,TS1 TS2,N2LEN,,1,DMR-MARC
113615,K2JRC,Bayside,New York,United States,438.58750,3,-5.000,Peer,TS1 TS2,K2JRC,Time Slot
#1 - Group Call TG 9 Local Talk Group - FT
#1 - Group Call TG 9998 = Parrot Audio Test Server-PTT
#1 - Group Call TG 3 = North America  - PTT
#1 - Group Call TG 310 = Tac 310 Talk Group - PTT
#1 - Group Call TG 311 = Tac 311 Talk Group - PTT
#2 - Group Call TG 444 NY Metro System wide-FT

You Must Have [ARS] Disabled Within Your Radio

Coverage Area:

Contact Name: Jerry, K2JRC
Email: jerrycudmore@pobox.com,1,NJ TRBO
-113616,K2JRC,Brooklyn NY,New York,United States,443.70000,3,+5.000,Master,TS1 TS2,K2JRC,,1,Bronx Trbo
+113616,K2JRC,Times Square NYC,New York,United States,443.70000,2,+5.000,Master,TS1 TS2,K2JRC,,1,Bronx Trbo
113618,KB2LFH,York Town Hts,New York,United States,441.56250,3,+5.000,Peer,TS1 TS2,KB2LFH,,0,BrandMeister
113619,K2ATY,Newburgh,New York,United States,441.01875,10,-5.000,Peer,TS1 TS2,K2ATY,,0,NE-TRBO
113620,K2JRC,Glen Oaks,New York,United States,438.61250,3,-5.000,Master,TS1 TS2,K2JRC,Time Slot
#1 - Group Call TG 444 NY Metro System wide-FT
#1 - Group Call TG 347639 Disney -FT( for information about this TG click to go to the BEARS website)
#2 - member only private Talk Groups
,1,Bronx Trbo
@@ -30,6 +31,7 @@ 113623,NY4Z,Briarcliff Manor,New York,United States,443.80000,3,+5.000,Master,TS1 TS2,NY4Z,,0,Bronx TRBO
113624,KC2KVE,Parishville,New York,United States,442.30000,1,+5.000,Peer,TS1 TS2,KE2EMS,Local - TG 2 TS 2- Wide area coverage,Northern NY & Canada
Upstate NY - TG 31361 TS 1
New York Statewide- TG 3136 TS 2
North America- TG 3 TS 1
Worldwide-TG 1 TS 1-*
Worldwide English- TG 13 TS 1
New England 1-TG 8 TS 2- *
New England 2-TG 3181 TS 2- *
Vermont-TG 3150 TS 2-*
Canada Wide-TG 302 TS 1-
Ontario Wide- TG 3023 TS 2-
Tac 310- TG 310 TS 1-*
Tac 311- TG 311 TS 1-*
UA 113- TG 113 TS 1- *
US 123- TG 123 TS 1- *

* PTT

You Must Have [ARS] Disabled in Your Radio

Trustee-KE2EMS
Contact Email- KE2EMS@TWC.COM,1,CAN-TRBO
113625,W2RGM,huntington,New York,United States,448.47500,1,-5.000,Peer,TS1 TS2,W2RGM,,1,cantrbo
+113626,W2OM,Lockport,New York,United States,444.62500,1,+5.000,None,Mixed Mode,W2OM,,0,None
113702,W4GG,Greensboro,North Carolina,United States,444.22500,1,+5.000,Peer,TS1 TS2,W4JLH,,0,PRN
200001,IPSC_EU1,,,Europe,,1,,,,DL5DI,,0,DMR-plus
200002,IPSC_EU2,,,Europe,,1,,,,DL5DI,,0,DMR-plus
@@ -127,7 +129,7 @@ 208010,F1ZWD,Paris,Île-de-France,France,430.15000,1,9.4,PEER,TS1 TS2,F1HBG,,0,DMR-plus
208020,F1ZJU,Rebais,le-de-France,France,430.56250,1,9.400,,,F1SGO,,0,BM
208025,F1ZPQ,Parvis de la Defense,Île-de-France,France,430.23750,1,9.400,PEER,TS1 TS2,F1SHS,,0,Motorola
-208065,F1SHS,,Île-de-France,France,430.23750,1,9.400,PEER,TS1 TS2,F1SHS,,0,DMR-plus
+208065,F1SHS,,Île-de-France,France,430.23750,1,9.4,PEER,TS1 TS2,F1SHS,,0,DMR-plus
208075,F1ZTC,Paris,,France,145.77500,1,-0.600,Peer,TS1 TS2,F1HBG,,0,BM
208077,F1ZHK,NANGIS,le-de-France,France,145.76250,1,-0.600,PEER,TS1 TS2,F4DFJ,,0,BM
208078,F1ZPK,Magnanville,Île-de-France,France,430.27500,1,9.400,PEER,TS1 TS2,F1IKD,,0,DMR-France
@@ -468,7 +470,7 @@ 228402,HB9BA,Weissenstein,Basel,Switzerland,438.22500,1,-7.600,Peer,TS1 TS2,HB9FND,,0,BM
228403,HB9FX,Oftringen,Basel/Solothurn,Switzerland,439.15000,1,-7.600,PEER,TS1 TS2,HB9BHU,,0,BM
228404,HB9DM,Murenberg,Basel/Solothurn,Switzerland,438.43750,1,-7.600,PEER,TS1 TS2,HB9FEF,,0,BM
-228405,HB9CSR,Basel / BS,Basel/Solothurn,Switzerland,438.55000,1,-7.6,PEER,TS1 TS2,HB9TVW,,0,DMR-plus
+228405,HB9CSR,Basel / BS,Basel/Solothurn,Switzerland,438.55000,1,-7.6,PEER,TS1 TS2,HB9TVW,,0,Dmrplus
228406,HB9EAS,Pfeffingen,Basel/Solothurn,Switzerland,438.35000,1,-7.600,PEER,TS1 TS2,HB9TQJ,,0,BM
228407,HB9DR,Langendorf / SO,Basel/Solothurn,Switzerland,438.50000,3,-7.6,PEER,TS1 TS2,HB9SDB,,0,DMR-plus
228408,HB9NFB,Reinach (BL),Basel/Solothurn,Switzerland,438.37500,1,-7.600,Peer,TS1 TS2,HB9FWC,,0,None
@@ -542,7 +544,7 @@ 232103,OE3XWU,Hochwechsel,Niederoesterreich,Austria,439.07500,1,-7.600,Peer,TS1 TS2,OE4KMU,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #2 - Group Call 232 = Austria

You Must Have [ARS] Disabled Within Your Radio.

Coverage Map (http://wiki.oevsv.at/images/f/fa/DMR-footprint_oe3xwu_Hochwechsel.jpg),1,OE-DMR
232104,OE3XQA,Exelberg,,Oesterreich/Austria,438.67500,1,-7.6,PEER,TS1 TS2,OE1KBC,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #2 - Group Call 232 = Austria

You Must Have [ARS] Disabled Within Your Radio.

Coverage Map (http://wiki.oevsv.at/images/6/68/DMR-footprint_oe3xqa_Exelberg.jpg),1,DMR-plus
232108,OE8XKK,Pyramidenkogel,Kaernten,Oesterreich/Austria,438.60000,1,-7.6,PEER,TS1 TS2,OE8HJK,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #2 - Group Call 232 = Austria

You Must Have [ARS] Disabled Within Your Radio.

Coverage Map (http://wiki.oevsv.at/images/6/6f/DMR-footprint_oe8xkk_Pyramidenkogel.jpg),1,DMR-plus
-232110,OE1XIK,Wien 22,Wien,Oesterreich/Austria,438.50000,1,-7.600,,,OE1KBC,,0,DMR-plus
+232110,OE1XIK,Wien 22,Wien,Oesterreich/Austria,438.50000,1,-7.6,,,OE1KBC,,0,DMR-plus
232112,OE1XIK,Wien 22,Wien,Oesterreich/Austria,438.50000,1,-7.600,,,OE1KBC,,0,Motorola
232169,OE0XMP,Wien,Wien,Oesterreich/Austria,438.40000,1,-7.6,PEER,TS1 TS2,OE1KBC,,0,DMR-plus
232191,OE1XIK,Wien 22,Wien,Austria,438.42500,1,-7.600,PEER,TS1 TS2,OE1KBC,,0,DMR-plus
@@ -1058,7 +1060,7 @@ 262440,DB0DDS,Dortmund,Nordrhein-Westfalen,Germany,439.85000,1,-9.4,PEER,TS1 TS2,DF1VB,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 262 = Germany 1
Time Slot #1 - Group Call 9 = Local 1
Time Slot #2 - Group Call 262 = Germany 2
Time Slot #2 - Group Call 8 = Regional
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio,1,DMR-plus
262442,DB0ACC,Haltern am See,Nordrhein-Westfalen,Germany,438.45000,1,-7.6,PEER,TS1 TS2,DL8YBL,,0,DMR-plus
262444,DB0WQ,Espelkamp,Nordrhein-Westfalen,Germany,438.71250,1,-7.6,PEER,TS1 TS2,DL7JW,,0,DMR-plus
-262445,DB0RTV,Rheine,Nordrhein-Westfalen,Germany,438.51250,1,-7.600,,,DL9YCC,,0,BrandMeister
+262445,DB0RTV,Rheine,Nordrhein-Westfalen,Germany,438.51250,1,-7.6,,,DL9YCC,,0,BrandMeister
262450,DB0DRE,Recklinghausen,NRW,Germany,439.97500,1,-9.400,Peer,TS1 TS2,DL1YBL,,0,DMR-DL
262452,DB0KX,Viersen,Nordrhein-Westfalen,Germany,438.40000,1,-7.600,Peer,TS1 TS2,DL1ER,,0,None
262454,DB0CW,Gummersbach,Nordrhein-Westfalen,Germany,145.66250,1,-0.6,PEER,TS1 TS2,DJ3CW,,0,DMR-plus
@@ -1112,7 +1114,7 @@ 262611,DO2FMD,Gross-Gerau,Hessen,Germany,438.17500,1,-7.600,PEER,TS1 TS2,DO2FMD,,0,DMR-plus
262620,DB0LDK,Wetzlar,Hessen,Germany,438.47500,1,-7.6,PEER,TS1 TS2,DD8AKA,,0,DMR-plus
262626,DB0FDA,Darmstadt,Hessen,Germany,438.27500,1,-7.6,PEER,TS1 TS2,DJ1US,,0,DMR-plus
-262630,DB0LM,Limburg / Lahn,Hessen,Germany,438.40000,1,-7.600,PEER,TS1 TS2,DL1MNU,,0,DMR-plus
+262630,DB0LM,Limburg / Lahn,Hessen,Germany,438.40000,1,-7.6,PEER,TS1 TS2,DL1MNU,,0,DMR-plus
262636,DB0MW,Wippershain,Hessen,Germany,439.92500,1,9.400,,,DL2MI,,0,BrandMeister
262640,DM0PX,Eschborn,Hessen,Germany,439.52500,1,-7.6,PEER,TS1 TS2,DB5ZQ,,0,DMR-plus
262650,DB0REI,Reinhardshain,Hessen,Germany,439.81250,1,-9.4,PEER,TS1 TS2,DB4ZZ,,0,DMR-plus
@@ -1149,7 +1151,7 @@ 262717,DM0KB,Konstanz,Baden-Wuerttemberg,Germany,145.60000,1,-0.6,Peer,TS1 TS2,DG8GL,,0,DMR-plus
262719,DB0SAA,Oberkochen,Baden-Wuerttemberg,Germany,438.47500,1,-7.600,PEER,TS1 TS2,DF7AJ,,0,DMR-DL
262720,DB0FAA,Aalen/Braunenberg,Baden-Wuerttemberg,Germany,439.48750,1,-7.6,PEER,TS1 TS2,DL8SFG,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 262 = Germany 1
Time Slot #1 - Group Call 8 = > DB0FHA-2m-DMR
Time Slot #1 - Group Call 9 = Local 1
Time Slot #2 - Group Call 9 = Local 2

You Must Have [ARS] Disabled Within Your Radio


Contact: Bjoern Buelow, DL8SFG
Email: dl8sfg@qslnet.de
Web: http://www.qslnet.de/db0faa,1,DMR-plus
-262721,DB0FHA,Aalen/Onatsfeld,Baden-Wuerttemberg,Germany,439.01250,1,-7.6,PEER,TS1 TS2,DL8SFG,,0,DMR-plus
+262721,DB0FHA,Aalen/Onatsfeld,Baden-Wuerttemberg,Germany,439.81250,1,-9.4,PEER,TS1 TS2,DL8SFG,,0,DMR-plus
262722,DB0FHA,Aalen/Onatsfeld,Baden-Wuerttemberg,Germany,439.01250,1,-7.6,PEER,TS1 TS2,DL8SFG,,0,DMR-plus
262723,DB0CRA,Frankenhardt,Baden-Wuerttemberg,Germany,438.53750,1,-7.6,Peer,TS1 TS2,DG2SDW,,0,DMR-plus
262724,DB0FAA,Aalen/Braunenberg,Baden-Wuerttemberg,Germany,439.11250,1,-7.6,Peer,TS1 TS2,DL8SFG,,0,DMR-plus
@@ -1217,7 +1219,7 @@ 262857,DB0FSG,Langenbach,Bayern,Germany,439.93750,1,-9.4,PEER,TS1 TS2,DL2XP,,0,DMR-plus
262858,DB0UFO,Neubiberg,Bayern,Germany,438.31250,1,-7.6,Peer,TS1 TS2,DL2MEE,,0,DMR-plus
262860,DB0ESS,Gruenten/Allgaeu,Bayern,Germany,438.61250,1,-7.6,PEER,TS1 TS2,DB7MJ,,0,DMR-plus
-262861,DM0ESS,Sonthofen,Bayern,Germany,438.56250,1,-7.600,PEER,TS1 TS2,DB7MJ,,0,BM
+262861,DM0ESS,Sonthofen,Bayern,Germany,439.31250,1,-7.6,PEER,TS1 TS2,DB7MJ,,0,BM
262862,DM0RDH,Wiesenfelden,Bayern,Germany,439.52500,1,-7.6,PEER,TS1 TS2,DL2RDH,,0,DMR-plus
262863,DB0RDH,Grandsberg,Bayern,Germany,439.92500,1,-9.4,PEER,TS1 TS2,DL2RDH,,0,DMR-plus
262864,DB0OAL,Tegelberg,Bayern,Germany,439.91250,1,-9.4,PEER,TS1 TS2,DB7MJ,,0,DMR-plus
@@ -1229,7 +1231,7 @@ 262878,DB0FHC,Coburg,Bayern,Germany,439.45000,1,-7.600,,,DC7RY,,0,BrandMeister
262885,DM0RDT,Karlskron,Bayern,Germany,439.82500,1,-9.400,Peer,TS1 TS2,DH6MBT,,0,DMR-plus
262888,DB0RP,Regensburg,Bayern,Germany,439.10000,1,-7.6,PEER,TS1 TS2,DL5RDW,,0,DMR-plus
-262890,DM0ET,Frensdorf/Bamberg,Bayern,Germany,439.11250,1,-7.6,PEER,TS1 TS2,DK2ET,,0,DMR-plus
+262890,DM0ET,Frensdorf/Bamberg,Bayern,Germany,439.41250,1,-7.6,PEER,TS1 TS2,DK2ET,,0,DMR-plus
262898,DK6PX,Dietramszell,Bayern,Germany,439.85000,1,-9.4,PEER,TS1 TS2,DK6PX,,0,DMR-plus
262899,DB0TTB,Hohenpeissenberg,Bayern,Germany,439.58750,1,-7.6,PEER,TS1 TS2,DL4TTB,,0,DMR-plus
262901,DB0LE,Leipzig West,Saxony,Germany,439.57500,1,-7.600,Peer,TS1 TS2,DC8YM,,0,DMR-plus
@@ -1249,7 +1251,7 @@ 268301,CQ0UCSC,Cascais,Lisboa,Portugal,438.72500,1,-7.600,Peer,TS1 TS2,CT1FHI,CQ0UCSC 438.725 -7.6 MHz, Color Code 1,1,BM
268302,CQ0DRLA,Serra Arrbida,Setubal,Portugal,438.35000,1,-7.6,PEER,TS1 TS2,CT1JIB,,0,DMR-plus
268303,CQ0DMA,S. Arrabida,Setuabal,Portugal,438.35000,1,-7.600,PEER,TS1 TS2,CT1JIB,,0,BM
-268304,CQ0DLX,Lisbon,Lisbon,Portugal,438.50000,1,-7.600,,,CT1JIB,,0,BrandMeister
+268304,CQ0DLX,Lisbon,Lisbon,Portugal,438.50000,1,-7.6,,,CT1JIB,,0,BrandMeister
268399,CQ0DS,Sintra,Lisbon,Portugal,438.22500,1,-7.600,,None,CT2GXU,,0,
270100,LX0RU,Rumelange,,Luxemburg,438.75000,1,-7.6,Peer,TS1 TS2,LX1US,,0,DMR-plus
270101,LX0RU,Hautcharage,,Luxemburg,438.80000,1,-7.600,PEER,TS1 TS2,LX1CK,,0,
@@ -1353,7 +1355,7 @@ 310111,N4MYI,Jasper,Alabama,United States,443.92500,1,+5.000,Peer,TS1 TS2,N4MYI,,1,Alabama DMR
310112,W4FMX,Huntsville,Alabama,United States,444.97500,1,+5.000,Master,TS1 TS2,W4FMX,,1,VolNET
310201,KL2AVDMR,Delta junction,Alaska,United States,444.80000,1,+5.000,Peer,Mixed Mode,KL2AV ,,0,North America
-310202,KL4GR,Homer,Alaska,United States,443.40000,1,+5.000,Peer,TS1 TS2,KL4GR,,1,Crossroads DMR
+310202,KL4GR,Homer,Alaska,United States,443.40000,1,+5.000,Peer,TS1 TS2,KL4GR,TS1-
Local-1 3181
North America 3
Mountain Regional 3177
Parrot 9998
UA English 1 113
Worldwide 1
Worldwide English 13


TS2-
Alaska Statewide 3102
Crossroads 8710
Local-2 3166
Audio Test 9999
DCI Comm-2 3777216
TAC-310 310
TAC-311 311
TAC-312 312
UA English 2 123,1,Crossroads DMR
310400,KE7JFH,Mesa,Arizona,United States,445.83750,1,-5.000,Master,TS1,N7MK,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 13 = WW English
Time Slot #1 - Group Call 3 = N. America
Time Slot #2 = Group Call 2 = AZ/NM Local
Time Slot #2 = Group Call 3100 = DCI Bridge
Time Slot #2 = Group Call 3176 = Regional SW
Time Slot #2 - Group Call 310 = TAC310

You Must Have [ARS] Disabled Within Your Radio

Contact Information:
azham_dmr-owner@yahoogroups.com
TRAVELERS EMAIL for CC info as system is SEMI-CLOSED,1,AZ-TRBONET
310401,N7HND,Tucson,Arizona,United States,445.87500,1,-5.000,Peer,TS1,KB7LMI,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 13 = WW English
Time Slot #1 - Group Call 3 = N. America
Time Slot #2 = Group Call 2 = AZ/NM Local
Time Slot #2 = Group Call 3100 = DCI Bridge
Time Slot #2 = Group Call 3176 = Regional SW
Time Slot #2 - Group Call 310 = TAC310

Coverage Area

You Must Have [ARS] Disabled Within Your Radio


Contact Information:
azham_dmr-owner@yahoogroups.com,1,AZ-TRBONET
310402,WA7KUM,Phoenix,Arizona,United States,440.10000,0,+5.000,Peer,TS1,N7TWW,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 13 = WW English
Time Slot #1 - Group Call 3 = N. America
Time Slot #2 = Group Call 2 = AZ/NM Local
Time Slot #2 = Group Call 3100 = DCI Bridge
Time Slot #2 = Group Call 3176 = Regional SW
Time Slot #2 - Group Call 310 = TAC310

Coverage Area (http://k5ehx.net/repeaters/qrepeater.php?id=27065)

You Must Have [ARS] Disabled Within Your Radio

Contact Information:
azham_dmr-owner@yahoogroups.com
TRAVELERS EMAIL for CC info as system is SEMI-CLOSED,1,AZ-TRBONET
@@ -1492,7 +1494,7 @@ 310703,K6LNK,Vacaville,California,United States,927.17500,3,-25.000,Master,TS1 TS2,N6JOA,,0,BrandMeister
310704,WX6D,Tulare,California,United States,442.47500,2,+5.000,Master,TS1 TS2,N6IB,Time Slot #2 - Group Call 2 = Local
Time Slot #2 - Group Call 3185 = Cactus
Time Slot #2 - Group Call 31066 = SoCal
Time Slot #2 - Group Call 31068 = NorCal
Time Slot #2 - Group Call 31062 = Mountain West
Time Slot #2 - Group Call 31063 = Mountain West 1
Time Slot #1 - Group Call 3106 = California
Time Slot #1 - Group Call 31061 = California 1
Time Slot #1 - Group Call 3176 = Southwest
Time Slot #1 - Group Call 31761 = Southwest 1
Time Slot #1 - Group Call 93 = North America
Time Slot #1 - Group Call 91 = World
Time Slot #1 - Group Call 31096 = Call Zone 6
Time Slot #1 - Group Call 310 = TAC 310
Time Slot #1 - Group Call 3777215 = Comm 1
Time Slot #1 - Group Call 31268 = SNARS
Time Slot #1 - Group Call 3168 = I-5
Time Slot #1 - Group Call 9999 = Audio Meter
Time Slot #1 - Group Call 9998 = Parrot (Echo)

You Must Have [ARS] Disabled Within Your Radio

Contact: Mark Ward, N6IB
Email: n6ib@me.com,1,Mountain West DMR
310705,N6GKJ,Lodi,California,United States,444.22500,1,+5.000,Master,TS1 TS2,N6GKJ,,0,BrandMeister
-310706,KA7QQV,Alameda,California,United States,442.30000,1,+5.000,Master,TS1 TS2,KA7QQV,,0,Mountain West
+310706,KG7NBL,Alameda,California,United States,442.30000,1,+5.000,Master,TS1 TS2,KA7QQV,,0,Mountain West
310707,W6PE,Sonoma,California,United States,440.01250,1,+5.000,Peer,TS1 TS2,NN6J,,0,BrandMeister
310708,AA4CD,San Marcos,California,United States,445.88000,3,-5.000,Master,TS1 TS2,AA4CD,,0,BrandMeister
310709,W6GRC,Redding,California,United States,145.00000,1,+2.500,Master,TS1 TS2,W6GRC,,0,BrandMeister
@@ -1812,7 +1814,7 @@ 311743,N9NLE,Elgin,Illinois,United States,444.52500,15,5.000,Peer,TS1 TS2,N9NLE,N9NLE 444.525 +5 MHz, Color Code 15,1,DMR-MARC
311744,W9DIG,Chicago,Illinois,United States,440.85625,1,+5.000,Master,None,N9OZR,,0,Mixed Mode
311745,WB9PHK,Schaumburg,Illinois,United States,146.70000,1,-0.600,Master,TS1 TS2,WB9PHK,,0,ChicagoLand
-311746,N9CWM,McCook,Illinois,United States,442.12500,1,+5.000,Peer,TS1 TS2,N9CWM,,0,ChicagoLand
+311746,N9CWM,McCook,Illinois,United States,440.75625,1,+5.000,Peer,TS1 TS2,N9CWM,,1,ChicagoLand
311747,K9PW,Schaumburg,Illinois,United States,439.87500,1,-9.4,Master,TS1 TS2,K9PW,,0,DMRPlus
311748,W9DJF,Oblong,Illinois,United States,444.87500,1,+5.000,Peer,TS1 TS2,W9DJF,,1,Hoosier DMR
311749,KC9DTN,Danville,Illinois,United States,443.82500,10,+5.000,Peer,TS1 TS2,KC9DTN,,1,chicago land cc
@@ -1822,6 +1824,8 @@ 311753,AC9CO,Oak Park,Illinois,United States,441.50000,4,+5.000,Master,TS1 TS2,AC9CO,,0,BrandMeister
311754,N9WEW,DANVILLE,Illinois,United States,443.82500,1,+5.000,Peer,TS1 TS2,N9WEW,,1,Crossroads
311755,W9IV,Huntley,Illinois,United States,441.50000,1,+5.000,Peer,TS1 TS2,W9IV,,1,Chicagoland
+311759,W9XA,Elburn,Illinois,United States,443.64375,6,+5.000,Peer,TS1 TS2,W9XA,,1,Chicagoland
+311760,W9XA,Plano,Illinois,United States,443.65625,6,+5.000,Peer,TS1 TS2,W9XA,,1,Chicagoland
311800,W9AMT,Indianapolis,Indiana,United States,441.20000,1,+5.000,Peer,TS1 TS2,W9AMT,Time Slot #1 - Grp Call 1 = World Wide (PTT activated)
Time Slot #1 - Grp Call 13= WW English
Time Slot #1 - Grp Call 3 = N. America
Time Slot #1 - Grp Call 310 = TAC-310 (PTT Activated)
Time Slot #1 - Grp Call 113 = UA English 1 (User Activated)
Time Slot #1 - Grp Call 123 = UA English 2 (User Activated)
Time Slot #1 - Grp Call 9998 = Audio Parrot
Time Slot #1 - Grp Call 9999 = Audio Test
Time Slot #2 - Grp Call 2 = Local
Time Slot #2 - Grp Call 3118 = Indiana Statewide
Time Slot #2 - Grp Call 3169 = Midwest Regional

Coverage Map (http://dmr-marc.net/images/w9amt-coverage.jpg)

Contact: Tony, W9AMT
Email: w9amt@comcast.net,1,Hoosier DMR
311801,K9MMQ,Roanoke,Indiana,United States,442.92500,1,+5.000,Peer,TS1 TS2,K9MMQ,Talk Group info at: http://www.crossroadsdmr.org/?page_id=98

Coverage Map (http://dmr-marc.net/images/wb9vle-coverage.jpg)


Contact: Randy Fisher, WB9VLE
Email: wb9vle@msn.com

You Must Have [ARS] Disabled Within Your Radio,1,Crossroads DMR
311802,N9IAA,Valparaiso,Indiana,United States,441.57500,1,+5.000,Peer,TS1 TS2,N9IAA,Time Slot #1- Group Call 3 = North America (PTT Activated)
Time Slot #1 - Group Call 13 = Worldwide English
Time Slot #1 - Group Call 100= Tech Talk
Time Slot #1- Group Call 113 = UA 113 (PTT Activated)
Time Slot #1- Group Call 3118 = IN Statewide
Time Slot #1- Group Call 3169 = Midwest Regional
Time Slot #1- Group Call 9999 = Audio Test (PTT Activated)
Time Slot #2 - Group Call 2 = Tri-State Local
You Must Have [ARS] Disabled Within Your Radio

Coverage Area (http://dmr-marc.net/images/n9iaa-coverage.jpg)
Contact Name: Kevin Babich, N9IAA
Email: kevin.babich@gmail.com,1,DMR-MARC
@@ -1905,6 +1909,7 @@ 312106,K4AHS,Ashland,Kentucky,United States,145.41000,1,-0.600,None,TS1 TS2,K4AHS,,1,Home
312107,KG4LHQ,Elizabethtown,Kentucky,United States,444.91250,1,+5.000,Peer,TS1 TS2,KG4LHQ,,1,K4USD
312108,W4VJE,Paintsville,Kentucky,United States,145.48000,1,-0.600,Peer,TS1 TS2,W4VJE,,1,k4usd
+312201,W5BII,Lake Charles,Louisiana,United States,449.97500,10,-5.000,Peer,TS1 TS2,WA5KBH,,0,10Mb Down, 3 Mb Up
312300,K1DQ,Shapleigh,Maine,United States,145.11000,4,-0.600,Peer,TS1 TS2,K1DQ,Time Slot #1 - Group Call 1 = World Wide (Sat. Net)
Time Slot #1 - Group Call 13 = WW English
Time Slot #1 - Group Call 3 = North America
Time Slot #1 - Group Call 3172 = Northeast
Time Slot #2 - Group Call 3181= New England
Time Slot #2 - Group Call 8 = Region North
Time Slot #2 - Group Call 3123 = ME Statewide
Time Slot #2 - Group Call 3133 = NH Statewide
Time Slot #2 - Group Call 9 = Local Site

You Must Have [ARS] Disabled Within Your Radio

Coverage Area (http://dmr-marc.net/images/k1dq-coverage.jpg)

Contact Name: Dan Merrifield, K1DQ
Email: k1dq@metrocast.net
Website: http://nedecn.org,1,NE-TRBO
312301,W1IMD,Portland,Maine,United States,145.34000,12,-0.600,Peer,TS1 TS2,W1IMD,Time Slot #1 - Group Call 1 = World Wide (Sat. Net)
Time Slot #1 - Group Call 13 = WW English
Time Slot #1 - Group Call 3 = North America
Time Slot #1 - Group Call 3172 = Northeast
Time Slot #2 - Group Call 3181= New England
Time Slot #2 - Group Call 8 = Region North
Time Slot #2 - Group Call 3123 = ME Statewide
Time Slot #2 - Group Call 3133 = NH Statewide
Time Slot #2 - Group Call 9 = Local Site

You Must Have [ARS] Disabled Within Your Radio

Contact: Paul, W1IMD
Email: w1imd@arrl.net
Website: http://nedecn.org,1,NE-TRBO
312302,N1IPA,Topsham,Maine,United States,145.19000,13,-0.600,Peer,TS1 TS2,N1IPA,Time Slot #1 - Group Call 1 = World Wide (Sat. Net)
Time Slot #1 - Group Call 13 = WW English
Time Slot #1 - Group Call 3 = North America
Time Slot #1 - Group Call 3172 = Northeast
Time Slot #2 - Group Call 3181= New England
Time Slot #2 - Group Call 8 = Region North
Time Slot #2 - Group Call 3123 = ME Statewide
Time Slot #2 - Group Call 3133 = NH Statewide
Time Slot #2 - Group Call 9 = Local Site

You Must Have [ARS] Disabled Within Your Radio

Contact: Jim, N1IPA
Email: arsn1ipa@gmail.com
Website: http://nedecn.org,1,NE-TRBO
@@ -1961,8 +1966,9 @@ 312524,KC1ACI,N Oxford,Massachusetts,United States,447.27500,1,-5.000,Peer,TS1 TS2,W1MSG,,0,BrandMeister
312525,N1QKP,Pittsfield,Massachusetts,United States,449.93750,1,-5.000,Peer,TS1 TS2,N1QKP,,0,DCI
312526,KB1VKI,Boston,Massachusetts,United States,442.05000,2,+5.000,Peer,TS1 TS2,KB1VKI,TS 1:

North America, World Wide , Metro Local , Tac 310 , Tac 311

TS 2:

TG 9 , TG 14 Latin America,1,Bronx-TRBO
-312527,K1RK,Bourne,Massachusetts,United States,145.20000,10,-0.600,Peer,TS1 TS2,WA1GPO,Coming Soon! Target date is Sept. 1, 2016.

Time Slot #1 - Group Call 1 = World Wide (Sat. Net)
Time Slot #1 - Group Call 13 = WW English
Time Slot #1 - Group Call 3 = North America
Time Slot #1 - Group Call 3172 = Northeast
Time Slot #1 - Group Call 310 = TAC310
Time Slot #1 - Group Call 311 = TAC311
Time Slot #1 - Group Call 113 = UA English 1
Time Slot #1 - Group Call 123 = UA English 2
Time Slot #1 - Group Call 8801 = NETAC 1
Time Slot #2 - Group Call 3181= New England
Time Slot #2 - Group Call 8 = Region North
Time Slot #2 - Group Call 3125 = MA Statewide
Time Slot #2 - Group Call 8804 = Cape Net
Time Slot #2 - Group Call 9 = Local Site
Time Slot #2 - Group Call 8802 = NETAC 2

You Must Have [ARS] Disabled Within Your Radio

Contact:
Email:
Website: http://nedecn.org,1,NE-TRBO
+312527,K1RK,Bourne,Massachusetts,United States,145.20000,10,-0.600,Peer,TS1 TS2,WA1GPO,Time Slot #1 - Group Call 1 = World Wide (Sat. Net)
Time Slot #1 - Group Call 13 = WW English
Time Slot #1 - Group Call 3 = North America
Time Slot #1 - Group Call 3172 = Northeast
Time Slot #1 - Group Call 310 = TAC310
Time Slot #1 - Group Call 311 = TAC311
Time Slot #1 - Group Call 113 = UA English 1
Time Slot #1 - Group Call 123 = UA English 2
Time Slot #1 - Group Call 8801 = NETAC 1
Time Slot #2 - Group Call 3181= New England
Time Slot #2 - Group Call 8 = Region North
Time Slot #2 - Group Call 3125 = MA Statewide
Time Slot #2 - Group Call 8804 = Cape Net
Time Slot #2 - Group Call 9 = Local Site
Time Slot #2 - Group Call 8802 = NETAC 2

You Must Have [ARS] Disabled Within Your Radio

Contact:
Email:
Website: http://nedecn.org,1,NE-TRBO
312528,NN1PA,Beverly,Massachusetts,United States,146.49000,1,-1.500,Master,TS1 TS2,N1PA,,0,EWARN
+312529,KB1IHU,Tisbury,Massachusetts,United States,145.22000,10,-0.600,Peer,TS1 TS2,KB1IHU,,0,NE-TRBO
312600,W8FSM,Fenton,Michigan,United States,443.92500,1,+5.000,Master,TS1 TS2,W8FSM,,0,Mi5
312601,KD8EYF,Mt Clemens,Michigan,United States,443.95000,1,+5.000,Peer,TS1 TS2,KD8EYF,Please visit http://mi5.cc before using this machine.

Contact: Fred Moses, W8FSM
Email: fred@moses.bz,1,DMR-Mi5
312602,N8URW,Munith,Michigan,United States,443.89000,0,+5.000,Peer,TS1 TS2,N8URW,Time Slot #1- TG 3126 =Michigan Statewide
Time Slot #1- TG 3160 = DCI 1
Time Slot #1- TG 3777215 = Comm 1(TRBO-6)
Time Slot #2- TG 3163= DMR-MARC NA
Time Slot #2- TG 3161= DMR-MARC WW
Time Slot #2- TG 3777216= Comm 2 (TRBO-6)
Time Slot #2- TG 3162= DCI 2
Time Slot #2- TG 3169 = Midwest Regional
Time Slot #2- TG 3100 = The Bridge


You Must Have [ARS] Disabled Within Your Radio


Contact: Jason Bailey, N8URW
Email: j2840fl@yahoo.com (http://mc/compose?to=j2840fl@yahoo.com)
Website: http://www.trbo.info,1,DCI
@@ -2034,13 +2040,15 @@ 312713,N0NKI,Minneapolis,Minnesota,United States,443.30000,1,+5.000,Master,TS1 TS2,N0NKI,,0,Brandmeister
312714,N8AGJ,Spring Lake PArk,Minnesota,United States,443.87500,11,+5.000,Peer,TS1 TS2,N8AGJ,,0,Unsure
312715,N0AGI,MEDINA,Minnesota,United States,443.20000,11,+5.000,Peer,TS1 TS2,N0AGI,,0,K4USD
-312716,N0NKI,Duluth,Minnesota,United States,443.10000,1,-5.000,Master,TS1 TS2,N0NKI,,0,K4USD
+312716,N0NKI,Duluth,Minnesota,United States,443.30000,1,+5.000,Master,TS1 TS2,N0NKI,,1,K4USD
312717,K0GOI,Saint Paul,Minnesota,United States,442.02500,11,+5.000,Peer,TS1 TS2,N0GOI,,1,K4USD
312718,K0LTZ,White Bear Lake,Minnesota,United States,443.15000,8,+5.000,Master,TS1 TS2,K0LTZ,,0,?
312719,N0BVE,MSP-Airport,Minnesota,United States,444.92500,11,+5.000,Peer,TS1 TS2,N0BVE,,1,K4USD
312720,KC0ARX,Saint Cloud,Minnesota,United States,442.22500,3,+5.000,Peer,TS1 TS2,KC0ARX,,1,K4USD
312721,K0GOI,Centervill,Minnesota,United States,443.67500,11,+5.000,Peer,TS1 TS2,N0GOI,,1,K4USD
312722,KC0CAP,Litchfield,Minnesota,United States,443.80000,3,+5.000,Peer,TS1 TS2,KC0CAP,,1,K4USD
+312723,N0NKI,Bloomington,Minnesota,United States,443.10000,1,+5.000,Master,TS1 TS2,N0NKI,,0,Brandmeister
+312724,N0NKI,WhiteBearTownship/Be,Minnesota,United States,443.95000,1,+5.000,Master,TS1 TS2,N0NKI,,1,K4USD
312801,KD4VVZ,Lucedale,Mississippi,United States,444.20000,1,+5.000,Master,TS1 TS2,KD4VVZ,TS1 TG 13 WW Eng (PTT)
TS1 TG 3 NA
TS2 TG 3174 SE Regional
TS2 TG 2 Local
TS1 TG 31121 FCDMR (NE FL/SE GA) (PTT)
TS2 TG 3113 GA State
TS1 TG 310 Tac 310 (PTT)
TS2 TG 311 Tac 311 (PTT)
TS1 TG 113 UA English 1 (PTT)
TS1 TG 123 UA English 2 (PTT)
TS2 TG 9998 Parrot (PTT)
TS2 TG 9999 Audio Test (PTT)

Contact: General, KD4VVZ
Email: kd4vvz@gmail.com
Coverage: https://drive.google.com/file/d/0B60YxqeFJBIxVEhWZnZKd3ZWN1E/view?usp=sharing,1,DMR-MARC
312802,K5WHB,corinth,Mississippi,United States,147.28500,1,+0.600,Master,Mixed Mode,K5WHB,,0,ham
312900,W0WJB,Kansas City,Missouri,United States,443.45000,1,+5.000,Peer,TS1,W0WJB,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 3 = North America/English Speaking
Time Slot #2 - Group Call 2 = Local Only
Time Slot #2- Group Call 3169 =
Midwest Regional

You Must Have [ARS] Disabled Within Your Radio

Coverage Area (http://www.dmr-marc.net/images/w0wjb-coverage.jpg),1,KS DMR- Kansas City
@@ -2057,6 +2065,7 @@ 312911,WB6PQM,Jacksonville,Missouri,United States,442.65000,1,+5.000,Peer,TS1 TS2,WB6PQM,,0,BrandMeister
312912,WA0QFJ,Kansas City,Missouri,United States,444.05000,4,+5.000,Peer,TS1 TS2,KD0EAV,,0,Brandmeister
312913,WB8SQS,Fulton,Missouri,United States,444.95000,1,+5.000,Peer,TS1 TS2,WB8SQS,,0,Brandmeister
+312914,WB0YRG,Pleasant Hill,Missouri,United States,443.40000,4,+5.000,Peer,TS1 TS2,W0NQX,,0,Brandmesiter
313001,KG6MQE,Hamilton,Montana,United States,422.02500,11,+7.000,Master,TS1 TS2,KG6MQE,Time Slot #1 - Grp Call 1 = World Wide (PTT activated)
Time Slot #1 - Grp Call 13= WW English
Time Slot #1 - Grp Call 3 = N. America
Time Slot #1 - Grp Call 310 = TAC-310 (PTT Activated)
Time Slot #1 - Grp Call 113 = UA English 1 (User Activated)
Time Slot #1 - Grp Call 123 = UA English 2 (User Activated)
Time Slot #1 - Grp Call 9998 = Audio Parrot
Time Slot #1 - Grp Call 9999 = Audio Test
Time Slot #2 - Grp Call 2 = Local

Contact: KG6MQE
Email: kg6mqe@gmail.com,1,WyDMR
313002,WR7HLN,Helena,Montana,United States,444.10000,1,+5.000,Master,Mixed Mode,WR7AGT,Time Slot #1 - Group Call 1 = Worldwide All Languages (PTT activated with 5 min inactivity timeout)
Time Slot #1 - Group Call 3 = North America
Time Slot #1 - Group Call 13= Worldwide English
Time Slot #1 - Group Call 113= UA113 (PTT activated with 10 min inactivity timeout)
Time Slot #2 - Group Call 3130 = MT Statewide
Time Slot #2 - Group Call 3177 = Mountain Regional

Contact: WR7AGT
email: towers@macpassradio.com,0,BrandMeister
313003,WR7HLN,Missoula,Montana,United States,448.90000,1,-5.000,Master,Mixed Mode,WR7AGT,,0,Brand Meister
@@ -2162,6 +2171,7 @@ 313430,AA2QD,bayonne,New Jersey,United States,446.62500,1,-5.000,Master,TS1 TS2,N2OVA,,0,none
313431,WR3IRS,Corbin City,New Jersey,United States,440.40000,1,+5.000,Peer,TS1 TS2,WN3A,,1,K4USD
313432,KM4WUD,Portable,New Jersey,United States,444.08750,0,+5.000,Master,TS1 TS2,KD2KWD,,0,MotoDMR
+313433,KB3MMJ,Cherry Hill,New Jersey,United States,432.10000,1,-0.000,Peer,TS1,KB3MMJ,,0,BrandMeister
313501,N5UBJ,Farmington,New Mexico,United States,442.32500,1,+5.000,Peer,TS1 TS2,N5UBJ,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 13 = WW English
Time Slot #1 - Group Call 3 = N. America
Time Slot #2 = Group Call 2 = AZ/NM Local
Time Slot #2 = Group Call 3100 = DCI Bridge
Time Slot #2 = Group Call 3176 = Regional SW
Time Slot #2 - Group Call 310 = TAC310

You Must Have [ARS] Disabled Within Your Radio

Contact Information: Bill, N5UBJ
Email: vanhuss@swwmail.net,1,AZ-TRBONET
313502,N5UBJ,Aztec,New Mexico,United States,442.25000,1,+5.000,Peer,TS1 TS2,N5UBJ,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 13 = WW English
Time Slot #1 - Group Call 3 = N. America
Time Slot #2 = Group Call 2 = AZ/NM Local
Time Slot #2 = Group Call 3100 = DCI Bridge
Time Slot #2 = Group Call 3176 = Regional SW
Time Slot #2 - Group Call 310 = TAC310

You Must Have [ARS] Disabled Within Your Radio

Contact Information: Bill, N5UBJ
Email: vanhuss@swwmail.net,1,AZ-TRBONET
313503,KA8JMW,Albuquerque,New Mexico,United States,442.90000,7,+5.000,Peer,TS1 TS2,KA8JMW,Time Slot#1 - Group Call 700 = Colorado Wide
Time Slot#2 - Group Call 719 = Colorado South

You Must Have [ARS] Disabled Within Your Radio.

Contact: Ed, KA8JMW
Email: ka8jmw@arrl.org,1,Rocky Mtn
@@ -2330,6 +2340,11 @@ 313943,N8NOD,Mentor ,Ohio,United States,444.47500,1,+5.000,Peer,TS1 TS2,N9AGC,,1,K4USD
313944,N8OND,Medina,Ohio,United States,443.32500,1,+05.000,Master,TS1 TS2,N8OND,,0,yes
313945,KB8UDE,PORTABLE,Ohio,United States,442.00000,15,+5.000,Peer,TS1 TS2,KB8UDE,,0,Undecided
+313946,N8OJ,wellston,Ohio,United States,147.37500,1,+0.600,Peer,TS1 TS2,W8JL,,0,Brandmeister
+313947,N8OJ,wellston,Ohio,United States,443.25000,1,+5.000,Peer,TS1 TS2,W8JL,,0,Brandmeister
+313948,KC8ONR,PORTABLE,Ohio,United States,442.00000,15,+5.000,Peer,TS1 TS2,KB8UDE,,0,Undecided
+313949,N8OJ,Marietta,Ohio,United States,442.47500,1,+5.000,Peer,TS1 TS2,W8JL,,0,Brandmeister
+313950,N8OJ,Marietta,Ohio,United States,442.72500,1,+5.000,Peer,TS1 TS2,W8JL,,0,Brandmeister
314000,AE5DN,Yukon,Oklahoma,United States,444.32500,1,+5.000,Peer,TS1 TS2,AE5DN,Time Slot #1 - Group Call 1 = WW All, PTT 10 min.
Time Slot #1 - Group Call 13= WW English, PTT 10 min.
Time Slot #1 - Group Call 3 = DMR-MARC North America Time Slot #1 - Group Call 310 = TAC-310, PTT 10 min. Time Slot #1 - Group Call 311 = TAC-311, PTT 10 min. Time Slot #1 - Group Call 9999 = Audio Test with VU Meter on NORCALDMR.com , PTT, 5 min. time out Time Slot #2 - Group Call 3140 = OK-KS Temporary Time Slot #2 - Group Call 3175= TX-OK Regional
Time Slot #2 - Group Call 2 = Local
Time Slot #2 - Group Call 9998 = Audio Test (Parrot)

Contact: AE5DN, Mark
Email: mark.matalik@gmail.com,1,OK
314001,W5RAB,Bartlesville,Oklahoma,United States,442.18750,1,+5.000,Peer,TS1 TS2,W5RAB,Time Slot #1 - Group Call 1 = WW All, PTT 10 min.
Time Slot #1 - Group Call 13= WW English, PTT 10 min.
Time Slot #1 - Group Call 3 = DMR-MARC North America Time Slot #1 - Group Call 310 = TAC-310, PTT 10 min. Time Slot #1 - Group Call 311 = TAC-311, PTT 10 min. Time Slot #1 - Group Call 9999 = Audio Test with VU Meter on NORCALDMR.com , PTT, 5 min. time out Time Slot #2 - Group Call 3140 = OK-KS Temporary Time Slot #2 - Group Call 3175= TX-OK Regional
Time Slot #2 - Group Call 2 = Local
Time Slot #2 - Group Call 9998 = Audio Test (Parrot)

Contact: Bob, W5RAB
Email: rbuford@bartnet.net,1,OK
314002,WA5LVT,Tulsa South,Oklahoma,United States,442.16250,2,+5.000,Peer,TS1 TS2,WD5ETD,Time Slot #1 - Group Call 1 = WW All, PTT 10 min.
Time Slot #1 - Group Call 13= WW English, PTT 10 min.
Time Slot #1 - Group Call 3 = DMR-MARC North America Time Slot #1 - Group Call 310 = TAC-310, PTT 10 min. Time Slot #1 - Group Call 311 = TAC-311, PTT 10 min. Time Slot #1 - Group Call 9999 = Audio Test with VU Meter on NORCALDMR.com , PTT, 5 min. time out Time Slot #2 - Group Call 3140 = OK-KS Temporary Time Slot #2 - Group Call 3175= TX-OK Regional
Time Slot #2 - Group Call 2 = Local
Time Slot #2 - Group Call 9998 = Audio Test (Parrot)
Contact: Rick, WD5ETD
Email: wd5etd@gmail.com,1,OK
@@ -2352,6 +2367,7 @@ 314019,W5RLW,Edmond,Oklahoma,United States,443.05000,1,+5.000,Peer,TS1 TS2,W5RLW,,1,OK Net
314020,W5RLW,EDMOND,Oklahoma,United States,442.32500,1,+5.000,Peer,TS1 TS2,W5RLW,,0,brandmeister
314021,W5RAB,Leonard,Oklahoma,United States,443.65000,1,+5.000,Peer,TS1 TS2,W5RAB,,0,Brandmeister
+314022,WD5ETD,TULSA,Oklahoma,United States,441.97500,1,+5.000,Peer,TS1 TS2,WD5ETD,,0,brandmeister
314101,N7MAQ,Woodburn,Oregon,United States,441.32500,1,+5.000,Peer,TS1 TS2,N7MAQ,,1,DCI
314102,N7MAQ,portland,Oregon,United States,440.62500,1,+5.000,Peer,TS1 TS2,KB7APU,,1,dci
314103,N7LF,Corbett,Oregon,United States,443.10000,1,+5.000,Master,TS1 TS2,N7LF,,0,BrandMeister
@@ -2388,6 +2404,8 @@ 314223,N3FE,Mansfield,Pennsylvania,United States,146.91000,1,-0.600,Peer,TS1 TS2,N3FE,,0,Private
314224,W3WGX,Seven Springs,Pennsylvania,United States,146.83500,1,-0.600,Peer,TS1 TS2,W3KKC,,1,K4USD
314225,W3BXW,Summerdale PA,Pennsylvania,United States,442.45000,1,+5.000,Peer,TS1 TS2,WA3BXW,,1,NJ-Trbo
+314226,N3OBL,Portable,Pennsylvania,United States,442.00000,15,+5.000,Peer,TS1 TS2,N3OBL,,0,Undecided
+314228,W2FUV,Morrisville,Pennsylvania,United States,145.25000,1,-0.600,Peer,TS1 TS2,WB0YLE,,0,Brandmeister
314400,KB1ISZ,Smithfield,Rhode Island,United States,446.42500,1,-5.000,Peer,TS1 TS2,KB1ISZ,,0,DMR-plus
314401,W1DMR,Cumberland,Rhode Island,United States,146.62500,0,-0.600,Peer,TS1 TS2,KB1ISZ,,0,BrandMeister
314402,KA1REO,Kingston,Rhode Island,United States,446.52500,1,-5.000,Master,TS1 TS2,KA1REO,,0,Mixed Mode
@@ -2508,8 +2526,9 @@ 314858,WB5RF,Richmond,Texas,United States,441.32500,1,+5.000,Peer,TS1 TS2,WB5RF,,0,Brandmeister
314859,K5TRA,Austin,Texas,United States,927.18750,1,-25.000,Peer,Mixed Mode,K5TRA,,0,Brandmeister
314860,N5SLI,Harlingen,Texas,United States,443.87500,1,+5.000,Peer,TS1,N5SLI,,0,Brandmeister
-314861,N5GDL,Carrollton,Texas,United States,444.07500,1,+5.000,Peer,TS1 TS2,N5GDL,,0,TBD
+314861,N5GDL,Carrollton,Texas,United States,440.45000,1,+5.000,Peer,TS1 TS2,N5GDL,,1,LonestarNet
314862,KE5FGC,Tyler,Texas,United States,443.57500,1,+5.000,Master,TS1 TS2,KE5FGC,Time Slot #1-Group Call 1 = Worldwide (PTT)
Time Slot #1-Group Call 3 = North America
Time Slot #1-Group Call 13 = Worldwide English
Time Slot #2-Group Call 3148 = TX Statewide
Time Slot #2-Group Call 3175 =TX-OK Regional
Time Slot #2-Group Call 2 = DFW Metro,1,Lonestar
+314863,W5LND,Big Spring,Texas,United States,443.43750,1,+5.000,Peer,TS1 TS2,W5LND,,0,BrandMeister
314900,N6DVZ,Salt Lake City,Utah,United States,447.93750,1,-5.000,Master,TS1 TS2,N6DVZ,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 13 = World Wide English
Time Slot #1 - Group Call 3 = U.S. / English Speaking Countries
Time Slot #1 - Group Call 311 = Tac 311
Time Slot #1 - Group Call 13149 = Utah State 2
Time Slot #1 - Group Call 1776 = USA
Time Slot #1 - Group Call 9998 = Echo Test
Time Slot #2 - Group Call 2 = Local Only
Time Slot #2 - Group Call 3177 = Mountain Regional
Time Slot #2 - Group Call 3149 = Utah State 1
Time Slot #2 - Group Call 310 = Tac 310
Time Slot #2 - Group Call 3100 = Bridge Group

Coverage Map

Contact Name: Roger Davies
Website: dmr-utah.net
Email:1n6dvz@gmail.com,1,Utah-DMR
314901,KC7WST,Woodland Hills,Utah,United States,449.80000,1,-5.000,Master,TS1 TS2,KC7WSU,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 13 = WW English
Time Slot #1 - Group Call 3 = N. America
Time Slot #2 - Group Call 2 = Local
Time Slot #2 - Group Call 3149 = Utah
Time Slot #2 - Group Call 3177 = Mountain

Contact: Chris Andrist, KC7WSU
Email: dmr@yeahmon.net
Website: http://www.yeahmon.net/dmr/,1,Utah-DMR
314902,NU7TS,Logan,Utah,United States,447.00000,1,-5.000,Peer,TS1 TS2,WA7KMF,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 13 = World Wide English
Time Slot #1 - Group Call 3 = U.S. / English Speaking Countries
Time Slot #1 - Group Call 311 = Tac 311
Time Slot #1 - Group Call 13149 = Utah State 2
Time Slot #1 - Group Call 1776 = USA
Time Slot #1 - Group Call 9998 = Echo Test
Time Slot #2 - Group Call 2 = Local Only
Time Slot #2 - Group Call 3177 = Mountain Regional
Time Slot #2 - Group Call 3149 = Utah State 1
Time Slot #2 - Group Call 310 = Tac 310
Time Slot #2 - Group Call 3100 = Bridge Group

Coverage Map
Website: dmr-utah.net

Contact: Bill Neville, WA7KMF
Email: Bill.Neville@gmail.com,1,Utah-DMR
@@ -2525,7 +2544,7 @@ 315002,W1IMD,Pico Peak,Vermont,United States,444.50000,1,+5.000,Peer,TS1 TS2,W1IMD,Time Slot #1 - Group Call 1 = World Wide (Sat. Net)
Time Slot #1 - Group Call 13 = WW English
Time Slot #1 - Group Call 3 = North America
Time Slot #1 - Group Call 3172 = Northeast
Time Slot #2 - Group Call 3181= New England
Time Slot #2 - Group Call 8 = Region North
Time Slot #2 - Group Call 3150 = VT Statewide
Time Slot #2 - Group Call 3133 = NH Statewide (PTT)
Time Slot #2 - Group Call 9 = Local Site

Note: All New England repeaters also have TAC310, TAC311, UA113, UA123

Contact: Paul, W1IMD
Email: w1imd@arrl.net

Website: http://nedecn.org,1,NE-TRBO
315003,W1UWS,Mt. Ascutney,Vermont,United States,448.47500,5,-5.000,Master,TS1 TS2,WB2NWR,Time Slot #1 - Group Call 1 = World Wide (Sat. Net)
Time Slot #1 - Group Call 13 = WW English
Time Slot #1 - Group Call 3 = North America
Time Slot #1 - Group Call 3172 = Northeast
Time Slot #2 - Group Call 3181= New England
Time Slot #2 - Group Call 8 = Region North
Time Slot #2 - Group Call 3150 = VT Statewide
Time Slot #2 - Group Call 3133 = NH Statewide (PTT)
Time Slot #2 - Group Call 9 = Local Site

Note: All New England repeaters also have TAC310, TAC311, UA113, UA123

Contact: Jeff, WB2NWR
Email: katchenj@hotmail.com

Website: http://nedecn.org,1,NE-TRBO
315004,K1VIT,Warren,Vermont,United States,145.41000,1,-0.600,Peer,TS1 TS2,N1GBB,Time Slot #1 - Group Call 1 = World Wide*
Time Slot #1 - Group Call 13 = WW English*
Time Slot #1 - Group Call 11 = WW French*
Time Slot #1 - Group Call 3 = North America
Time Slot #1 - Group Call 302 = Canada*
Time Slot #1 - Group Call 310 = TAC310*
Time Slot #1 - Group Call 9999 = Audio Test*
Time Slot #2 - Group Call 3023 = Ontario*
Time Slot #2 - Group Call 3022 = Quebec*
Time Slot #2 - Group Call 3029 = New Brunswick*
Time Slot #2 - Group Call 3150 = Vermont
Time Slot #2 - Group Call 8 = Northern New Eng*
Time Slot #2 - Group Call 3181 = New England*
Time Slot #2 - Group Call 2 = Local

* Indicates PTT Activation required
You Must Have [ARS] Disabled in Your Radio

Trustee: Chris, N1GBB
Email: n1gbb@trans-video.net,1,DMR-MARC-CANADA
-315005,N1GBB,Mt. Snow,Vermont,United States,446.27500,6,-5.000,Peer,TS1 TS2,N1GBB,,0,NE-TRBO
+315005,N1GBB,Mt. Snow,Vermont,United States,446.27500,6,-5.000,Peer,TS1 TS2,N1GBB,Time Slot #1 - Group Call 1 = World Wide (Sat. Net)
Time Slot #1 - Group Call 13 = WW English
Time Slot #1 - Group Call 3 = North America
Time Slot #1 - Group Call 3172 = Northeast
Time Slot #2 - Group Call 3181= New England
Time Slot #2 - Group Call 8 = Region North
Time Slot #2 - Group Call 3150 = VT Statewide
Time Slot #2 - Group Call 3133 = NH Statewide (PTT)
Time Slot #2 - Group Call 3125 = MA Statewide (PTT)
Time Slot #2 - Group Call 9 = Local Site

Note: All New England repeaters also have TAC310, TAC311, UA113, UA123,0,NE-TRBO
315100,W4YP,Haymarket,Virginia,United States,448.97500,6,-5.000,Peer,TS1 TS2,W4YP,Time Slot #1 - Group Call 1 = Worldwide (PTT)
Time Slot #1 - Group Call 3 = North America
Time Slot #1 - Group Call 13= Worldwide English
Time Slot #2 - Group Call 3172=Northeast Region
Time Slot #2 - Group Call 2 = Local Only

Coverage Area (http://www.dmr-marc.net/images/W4YP-coverage.jpg)

Contact Name: Bob Spindle
Email: w4yp@verizon.net,1,K4USD
315101,W4RAT,Richmond,Virginia,United States,443.58750,1,+5.000,Peer,TS1 TS2,KD4BPZ,Time Slot #2 Group Call 3151 = RVA Statewide
Time Slot #1 Group Call 27500 = Local
Time Slot #1 Group Call 310 = TAC 310
Time Slot #1 Group Call 8951 = TAC 1
Time Slot #1 Group Call 3100 = Bridge
Time Slot #1 Group Call 3174 = DMR-MARC Southeast
Time Slot #1 Group Call 3173 = DMR-MARC Mid-Atlantic
Time Slot #1 Group Call 27501 = VA TAC A
Time Slot #1 Group Call 27502 = VA TAC B
Time Slot #2 Group Call 2= PRN

Richmond Amateur Radio Telecommunications Society “RATS” / FieldComm Association
Contact: Jay Lovelady
http://www.dmrva.org/

You Must Have [ARS] Disables Within Your Radio
Click here to view the Repeater's Coverage Area (http://24.172.25.174:85/resources/richmond_coverage_map.jpg)

,1,DMRVA
315102,WX4F,Fancy Gap,Virginia,United States,443.93750,1,+5.000,Peer,TS1 TS2,WX4F,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 13 = WW English
Time Slot #1 - Group Call 3 = N. America
Time Slot #2 - Group Call 2 = North Carolina/Tennessee

You Must Have [ARS] Disabled Within Your Radio

Click here to view the Repeater's Coverage Area (http://24.172.25.174:85/resources/fancy_gap_coverage_map.jpg)

Contact Name: Gray, WX4F

Email: grayfulk@embarqmail.com,1,NC-PRN-
@@ -2546,9 +2565,10 @@ 315117,K4LCT,Norfolk,Virginia,United States,445.51250,7,+5.000,None,TS1 TS2,K4LCT,,0,BRANDMEISTER
315118,K4JK,Harrisonburg,Virginia,United States,444.66250,1,+5.000,Master,TS1 TS2,K4JK,Time Slot #2 Group Call 3151 = RVA Statewide
Time Slot #1 Group Call 27500 = Local
Time Slot #1 Group Call 310 = TAC 310
Time Slot #1 Group Call 8951 = TAC 1
Time Slot #1 Group Call 3100 = Bridge
Time Slot #1 Group Call 3174 = DMR-MARC Southeast
Time Slot #1 Group Call 3173 = DMR-MARC Mid-Atlantic
Time Slot #1 Group Call 27501 = VA TAC A
Time Slot #1 Group Call 27502 = VA TAC B
Time Slot #2 Group Call 2= PRN

Contact: James Kirkham
http://www.dmrva.org/

You Must Have [ARS] Disabled Within Your Radio,1,DMRVA
315119,WA4FC,Charlottesville,Virginia,United States,444.91250,1,+5.000,Master,TS1 TS2,KD4BPZ,Time Slot #2 – Group Call 3151 = VA Statewide
Time Slot #1 – Group Call 27500 = Local
Time Slot #1 – Group Call 310 = DMRX TAC 310
Time Slot #1 – Group Call 8951 = DMRX TAC 1
Time Slot #1 – Group Call 3100 = DCI Bridge/Brandmeister
Time Slot #1 – Group Call 3174 = DMR-MARC Southeast
Time Slot #1 – Group Call 3173 = DMR-MARC Mid-Atlantic
Time Slot #1 – Group Call 27501 = VA TAC A
Time Slot #1 – Group Call 27502 = VA TAC B
Time Slot #2 – Group Call 2= PRN
FieldComm Association
Contact: Jay Lovelady
http://www.dmrva.org/

You Must Have [ARS] Disables Within Your Radio,1,DMRVA
-315120,N3QEM,Herndon,Virginia,United States,442.90000,1,+5.000,Master,TS1,N3QEM,,0,none-yet
+315120,N3QEM,Vienna,Virginia,United States,442.90000,1,+5.000,Peer,TS1 TS2,N3QEM,,0,Chicagoland
315121,N3QEM,Herndon,Virginia,United States,442.43750,1,+5.000,Master,TS1 TS2,N3QEM,,0,None-yet
315122,N9KET,Vienna,Virginia,United States,442.87500,2,+5.000,Peer,TS1 TS2,N9KET,,1,Chicagoland
+315123,N2NXS,Martinsville,Virginia,United States,441.85000,15,+5.000,None,None,N2NXS,,0,None
315300,N07RF,Winthrop ,Washington,United States,145.21000,3,+2.780,Peer,TS1 TS2,NO7RF,,0,DCI
315301,NO7RF,Winthrop,Washington,United States,444.85000,3,+5.000,Peer,TS1 TS2,NO7RF,Time Slot #2 - Group Call 3161 = DMR-MARC World Wide
Time Slot #2 - DMR-MARC Group Call 3163 = DMR-MARC N. America
Time Slot #1- Group Call 3160 = DCI 1
Time Slot #1- Group Call 3777215 = Comm 1

Time Slot #1- Group Call 3153 = Washington Statewide 1

Time Slot #2- Group Call 3100 = Bridge 2
Time Slot #2- Group Call 3100 = Mountain Regional 3177

Contact Name: Mike, NO7RF
Email: no7rf@otwc.net

Website: http://dci.trbo.info,1,DCI-
315302,NO7RF,Mazama,Washington,United States,433.15000,0,+16.000,Peer,TS1 TS2,NO7RF,,0,DCI
@@ -2609,8 +2629,9 @@ 315517,W9PFP,Park Falls,Wisconsin,United States,444.45000,1,+5.000,None,None,N9MUH,,0,wisconsin
315518,N9KRG,Appleton,Wisconsin,United States,444.05000,6,+5.000,Peer,TS1 TS2,N9KRG,,0,BrandMeister
315519,N9OIG,Union Grove,Wisconsin,United States,442.93750,9,+5.000,Peer,TS1 TS2,N9OIG,,0,Brandmeister
-315520,KR9RK,RACINE,Wisconsin,United States,442.00000,9,+5.000,Master,TS1 TS2,KR9RK,,1,ChicagoLand
+315520,KR9RK,Racine,Wisconsin,United States,440.21875,9,+5.000,Master,TS1 TS2,KR9RK,,1,ChicagoLand
315521,N9PAY,New Berlin,Wisconsin,United States,441.43750,1,+5.000,Peer,TS1 TS2,N9PAY,,1,DMR-MARC
+315522,N9OIG,Franklin ,Wisconsin,United States,443.43125,9,+5.000,Peer,TS1 TS2,N9OIG,,1,Chicagoland
315601,WY7EOC,Cheyenne,Wyoming,United States,449.97500,11,-5.000,Peer,TS1 TS2,N7GT,Website: http://wyomingdmr.n7gt.com
Contact: Greg, N7GT
Email: n7gt@hotmail.com,1,WyDMR
315602,KF7OBL,Rock Springs,Wyoming,United States,448.87500,1,-5.000,Master,TS1 TS2,K7DRA,,0,DMR-plus
315603,K7PFJ,Cheyenne,Wyoming,United States,449.93750,7,-5.000,Peer,TS1 TS2,K7PFJ,,0,RMHR
@@ -2663,6 +2684,7 @@ 505210,VK2RFI,Portable,New South Wales,Australia,147.17500,1,+0.600,Peer,TS1 TS2,VK2GG,,0,Brandmeister
505211,VK2YHX,Newcastle,New South Wales,Australia,442.67500,1,-7.000,Peer,TS1 TS2,VK2YHX,,0,Brandmeister
505212,VK2RLE,Engadine,New South Wales,Australia,438.42500,1,-5.000,Peer,TS1 TS2,VK3TE,Time Slot #1 - Group Call 1 = Worldwide Calling (2 min max)
Time Slot #1 - Group Call 13 = Worldwide English
Time Slot #1 - Group Call 100 = Tech Talk
Time Slot #1 - Group Call 113= UA English 1
Time Slot #1 - Group Call 123= UA English 2
Time Slot #2- Group Call 5 = VK/ZL Regional

You Must Have [ARS] Disabled Within Your Radio.

Contact: Peter Brennan, VK3TE
Email: vk3te@bigpond.com,1,VK-DMR
+505213,VK2GG,Lake Macquarie,New South Wales,Australia,438.47500,1,-7.000,Peer,TS1 TS2,VK2GG,,0,Brandmeister
505300,VK3RSU,Melbourne,Victoria,Australia,438.10000,1,-5.400,Peer,TS1 TS2,VK3XDE,Time Slot #1 - Group Call 1 = Worldwide Calling (2 min max)
Time Slot #1 - Group Call 13 = Worldwide English
Time Slot #1 - Group Call 100 = Tech Talk
Time Slot #1 - Group Call 113= UA English 1
Time Slot #1 - Group Call 123= UA English 2
Time Slot #2- Group Call 5 = VK/ZL Regional

You Must Have [ARS] Disabled Within Your Radio.

Contact: Paul Engler, VK3XDE
Email: paul.engler@motorolasolutions.com,1,VK-DMR
505301,VK3TE,Karingal,Victoria,Australia,438.25000,1,-5.400,Peer,TS1 TS2,VK3TE,Time Slot #1 - Group Call 1 = Worldwide Calling (2 min max)
Time Slot #1 - Group Call 13 = Worldwide English
Time Slot #1 - Group Call 100 = Tech Talk
Time Slot #1 - Group Call 113= UA English 1
Time Slot #1 - Group Call 123= UA English 2
Time Slot #2- Group Call 5 = VK/ZL Regional

You Must Have [ARS] Disabled Within Your Radio.

Contact: Peter Brennan, VK3TE
Email: vk3te@bigpond.com,1,VK-DMR
505302,VK3RZU,Mt Buller,Victoria,Australia,439.67500,1,-5.000,Peer,TS1 TS2,VK3TE,Time Slot#1 - Group Call 1 = Worldwide Calling (2 min max)
Time Slot#1 - Group Call 13 = Worldwide English
Time Slot#1 - Group Call 113= UA English 1
Time Slot#1 - Group Call 123= UA English 2
Time Slot#2- Group Call 5 = VK/ZL Regional

You Must Have [ARS] Disabled Within Your Radio.

Contact: VK3TE
Email: vk3te@bigpond.com,1,VK-DMR
@@ -2681,8 +2703,11 @@ 505408,VK4TCA,bracken ridge,Queensland,Australia,439.75000,1,-5.000,Peer,TS1 TS2,VK4TCA,,0,BrandMeister
505409,VK4TUB,townsville,Queensland,Australia,147.50000,1,-0.600,Peer,TS1 TS2,VK4TUB,,0,Brandmeister
505410,VK4RBX,Ipswich,Queensland,Australia,438.83750,1,-7.000,Peer,TS1 TS2,VK4QF,,1,VK-DMR
+505411,VK4RSA,Sarina,Queensland,Australia,147.07500,1,+0.600,Peer,TS1 TS2,VK4BQ,,0,Brandmister
+505412,VK4RBY,Mackay,Queensland,Australia,146.65000,1,-0.600,Peer,TS1 TS2,VK4BQ,,0,BM
505501,VK5REX,PORT LINCOLN,South Australia,Australia,438.26250,1,-5.400,None,TS1 TS2,VK5ZEA,,0,Brandmeister
505502,VK5RSF,Adelaide,South Australia,Australia,438.83750,1,-7.000,Peer,TS1 TS2,VK4QF,Time Slot #1 - Group Call 1 = Worldwide Calling (2 min max)
Time Slot #1 - Group Call 13 = Worldwide English
Time Slot #1 - Group Call 100 = Tech Talk
Time Slot #1 - Group Call 113= UA English 1
Time Slot #1 - Group Call 123= UA English 2
Time Slot #2- Group Call 5 = VK/ZL Regional

You Must Have [ARS] Disabled Within Your Radio.,1,VK-DMR
+505503,VK5SFA,Adelaide,South Australia,Australia,438.83750,1,-7.000,Peer,TS1 TS2,VK5SFA,,1,VK-DMR
505600,VK6RRR,Perth,Western Australia,Australia,438.20000,1,-5.400,Peer,TS1 TS2,VK6ZTN,Time Slot #1 - Group Call 1 = Worldwide Calling (2 min max)
Time Slot #1 - Group Call 13 = Worldwide English
Time Slot #1 - Group Call 100 = Tech Talk
Time Slot #1 - Group Call 113= UA English 1
Time Slot #1 - Group Call 123= UA English 2
Time Slot #2- Group Call 5 = VK/ZL Regional

You Must Have [ARS] Disabled Within Your Radio.

Contact: Joe Nevin, VK6ZTN
Email: joe.nevin@gmail.com,1,VK-DMR
505601,VK6ZTN,Perth,Western Australia,Australia,438.20000,1,-5.400,Peer,TS1 TS2,VK6ZTN,Time Slot#1 - Group Call 1 = Worldwide Calling (2 min max)
Time Slot#1 - Group Call 13 = Worldwide English
Time Slot#1 - Group Call 113= UA English 1
Time Slot#1 - Group Call 123= UA English 2
Time Slot#2- Group Call 5 = VK/ZL Regional

You Must Have [ARS] Disabled Within Your Radio.

Contact: Joe Nevin, VK6ZTN
Email: joe.nevin@gmail.com,1,VK-DMR
505602,VK6AG,PERTH,Western Australia,Australia,438.20000,1,-5.400,Peer,TS1 TS2,VK6AG,,1,VK-DMR
diff --git a/subscriber_ids.csv b/subscriber_ids.csv index 13159ac..428bba4 100644 --- a/subscriber_ids.csv +++ b/subscriber_ids.csv @@ -378,6 +378,18 @@ 1112381,K4SIP,Byron D Felts,,Riverview,Florida,United States,CCS7
1112382,KK4WYL,Joseph Conti,,Brandon,Florida,United States,DMR
1112383,WB4ATV,Donald B Coy,,Melbourne,Florida,United States,DMR
+1112384,KM4AKA,Carlos Crescioni Crescioni,,Clermont,Florida,United States,DMR
+1112385,WA2SAC,William J Pekar Pekar,Jay,Stuart,Florida,United States,DMR
+1112386,KF4IO,Paul S Oldack,,Tampa,Florida,United States,DMR
+1112387,KM4WXH,Carole S Lemon,,Clermont,Florida,United States,DMR
+1112388,K4ONE,Chris Crockett,,Tallahassee,Florida,United States,DMR
+1112389,KJ4JMH,J. Micah Hatch,,Myakka City,Florida,United States,DMR
+1112390,KI4SEM,Gary D Defibaugh,,Pinellas Park,Florida,United States,DMR
+1112392,KM4YZP,Herbert Mooney,Herb,Palm Harbor,Florida,United States,DMR
+1112393,VE3NGW,Chris Katsoufis,,Lauderhill,Florida,United States,DMR
+1112394,WP2AGO,Sandra F Pekar,Sandy,Stuart,Florida,United States,DMR
+1112395,KF4DDY,Terry Watkins,,Clearwater,Florida,United States,DMR
+1112396,W1AVV,Frank A Vassallo,,Clearwater,Florida,United States,DMR
1136001,K2FPC,Antonio Lipari,Tony,Champlain,New York,United States,DMR
1136002,KB2JM,James S Meahl,Jim,Lockport,New York,United States,DMR
1136003,K2BRT,Paul Polischuk,,New Windsor,New York,United States,DMR
@@ -537,6 +549,17 @@ 1136160,WB2ZII,HT1 Westchester Emerg Comm Assn Inc,,Yorktown Heights,New York,United States,DMR
1136161,W2PDX,Craig M Scatola,,Yorktown,New York,United States,DMR
1136162,KD2KOL,Melanie S Oliver,,Lyndonville,New York,United States,DMR
+1136163,N2KLC,James R Brizzolara,Jim,Bloomingburg,New York,United States,DMR
+1136164,N2WOD,John D Mc Graw,,Fulton,New York,United States,DMR
+1136166,AG2AA,Steven Piotrowski,,Clarence,New York,United States,DMR
+1136167,KA2FWN,Robert J Verdon,Bob,Utica,New York,United States,DMR
+1136168,AE2MT,Thomas Pettigrew Pettigrew,,Warrensburg,New York,United States,DMR
+1136169,W2ER,Edward M Brown,,Penfield,New York,United States,CCS7
+1136170,KB2KSW,Gary S Gumowitz,,New York,New York,United States,DMR
+1136171,KD2AWJ,Daniel W Moore,,Farmingville,New York,United States,DMR
+1136172,K2ATY,Alfred T Yerger,Al,Newburgh,New York,United States,DMR
+1136173,KD2FXE,Stacey E Yerger,,Newburgh,New York,United States,DMR
+1136174,KD2KCX,William R Facteau,Sparkey,Tupper Lake,New York,United States,DMR
1137001,K4SWL,Thomas H Witherspoon,Thomas,Swannanoa,North Carolina,United States,DMR
1137002,KK4RKU,Glenn A Allison,Allen,Canton,North Carolina,United States,DMR
1137003,KM4IOU,Marty D Bumgarner,Marty,Granite Falls,North Carolina,United States,DMR
@@ -870,6 +893,14 @@ 1137335,KK4SEP,David Duffer,,Bath,North Carolina,United States,DMR
1137336,KM4YTY,John Chase,,Asheville,North Carolina,United States,DMR
1137337,KM4QPS,David Ellis,,Winston-Salem,North Carolina,United States,DMR
+1137338,KI4HXZ,Matthew R Harrison,,Winston-Salem,North Carolina,United States,DMR
+1137339,KE4ZNR,Marshall P Sherard,Frank,Lillington,North Carolina,United States,DMR
+1137340,KK4WOW,Thomas A Green,Tom,Concord,North Carolina,United States,DMR
+1137341,KG4TWS,Jeffrey S Poteat,Scott,Dallas,North Carolina,United States,DMR
+1137342,WD4KPX,Skip Stotesbury Jr Stotesbury Jr,Skip,Rocky Mount,North Carolina,United States,DMR
+1137343,NC4AB,Paul A Brinkley,Andy,Wallburg,North Carolina,United States,DMR
+1137344,KE4CWN,Johnny W Chestnut,Johnny,New London,North Carolina,United States,DMR
+1137345,KJ4AKB,Samuel E Blazier,,Arden,North Carolina,United States,DMR
2021001,SV1BYK,Babis Kappatos,Babis,Athens,Attica,Greece,
2021002,SV1PDW,Ioannis Barbat-Soskos,Ioannis,Athens,Attica,Greece,
2021003,SV1IW,Manos Darkadakis,Manos,Athens,Attica,Greece,
@@ -1069,7 +1100,7 @@ 2041103,PD0AHE,Hans Logjes,Hans,Westzaan,Noord-Holland,Netherlands,
2041104,PD0MC,Marcel Croese,Marcel,Zwaagdijk-West,Noord-Holland,Netherlands,
2041105,PA3HAE,Antonie Van Gelder,Antonie,Velserbroek,Noord-Holland,Netherlands,
-2041106,PA1VW,Gert Van Westerlaak,Gert,Castricum,Noord-Holland,Netherlands,
+2041106,PA1VW,Gert Van Westerlaak,Gert,Warmenhuizen,Noord-Holland,Netherlands,
2041107,PE5SA,Sjoerd Adema,Sjoerd,Julianadorp,Noord-Holland,Netherlands,
2041108,PA3CBJ,Leo Dijkman Dulkes,Leo,Obdam,Noord-Holland,Netherlands,
2041109,PA1MP,Marc Pol,Marc,Alkmaar,Noord-Holland,Netherlands,
@@ -1149,6 +1180,7 @@ 2041183,PD0DVB,Robbert Peters,GizMoCuz,Hilversum,Noord-Holland,Netherlands,
2041184,PE1PTP,Rolf NA,Rolf,Amstelveen,Noord-Holland,Netherlands,
2041185,PE1JZQ,Hans-Willem Geitz,Hans-Willem,Hilversum,Noord-Holland,Netherlands,
+2041187,PE1JIH,Vincent ,,Amsterdam,Noord-Holland,Netherlands,
2042001,PA0HTW,Henk ,Henk,Rotterdam,Zuid-Holland,Netherlands,Portable
2042002,PA0HTW,Henk ,Henk,Rotterdam,Zuid-Holland,Netherlands,Mobile
2042003,PA3DFN,Philip ,Philip,Spijkenisse,Zuid-Holland,Netherlands,Portable
@@ -1419,7 +1451,7 @@ 2042268,PA3DFR,Paul Van Strien,PA3DFRJ,Zoetermeer,Zuid-Holland,Netherlands,
2042269,PA6OCK,Michel Honig,Jota Rimboejagers,Den Haag,Zuid-Holland,Netherlands,
2042270,PD1CAD,Aad Wiersma,Aad,Dordrecht,Zuid-Holland,Netherlands,
-2042271,PD4I,Tim Oversier,Tim,Dordrecht,Zuid-Holland,Netherlands,
+2042271,PA4I,Tim Oversier,Tim,Dordrecht,Zuid-Holland,Netherlands,
2042272,PE1LON,John Nieuwerth,John,Barendrecht,Zuid-Holland,Netherlands,
2042273,PA2ERP,Cees Sloof,Cees,Hellevoetsluis,Zuid-Holland,Netherlands,
2042274,PD0NLR,Jan Fokke,Jan,Zoetermeer,Zuid-Holland,Netherlands,
@@ -1427,6 +1459,8 @@ 2042276,PA3XA,Geert NA,Geert,Leiderdorp,Zuid-Holland,Netherlands,
2042277,PD1ODE,Jeroen De Weerdt,Jeroen,Den Haag,Zuid-Holland,Netherlands,
2042279,PA0TKI,Eduard Zwamborn,Ed,Zoetermeer,Zuid-Holland,Netherlands,
+2042281,PE1MYF,Rob ,,Vlaardingen,Zuid-Holland,Netherlands,
+2042282,PD0JH,John ,,Den-Haag,Zuid-Holland,Netherlands,
2043001,PA1MOS,Marco ,Marco,Amersfoort,Utrecht,Netherlands,Mobile
2043002,PA1GF,Gerjan ,Gerjan,Amersfoort,Utrecht,Netherlands,Portable#1
2043003,PE1NWR,Tineke ,Tineke,Amersfoort,Utrecht,Netherlands,Portable
@@ -1555,6 +1589,7 @@ 2043126,PA3BWK,Wilko Hollemans,Wilko,Hollandsche Rading,Utrecht,Netherlands,
2043127,PA0LUB,Ton Van der Lubbe,Ton,Wilnis,Utrecht,Netherlands,
2043128,PD0RWM,Nico Veer,Nico,Amersfoort,Utrecht,Netherlands,
+2043131,PE1PEX,Henk ,,Mijdrecht,Utrecht,Netherlands,
2044001,PD4RS,Ruud ,Ruud,Heerlen,Limburg,Netherlands,Portable
2044002,PD4RS,Ruud ,Ruud,Heerlen,Limburg,Netherlands,Mobile
2044003,PA7DVM,Duncan ,Duncan,Kerkrade,Limburg,Netherlands,Mobile
@@ -1669,6 +1704,8 @@ 2044112,PD9DST,Danny Stutje,Danny,Kats,Zeeland,Netherlands,
2044113,PA9A,Frank Bogers,Frank,Voeren (B),Limburg,Netherlands,
2044114,PA1SH,Steven Hamelink,Steven,Terneuzen,cnty,Netherlands,
+2044116,PA3APX,Fred ,,Berg en Terblijt,Limburg,Netherlands,
+2044117,PE7B,Paul ,,MAASTRICHT,Limburg,Netherlands,
2045001,PD0AQK,Ruud ,Ruud SK,Uden,,Netherlands,Portable
2045002,PD0AQK,Ruud ,Ruud SK,Uden,,Netherlands,Mobile
2045003,PA0RTU,Klaas ,Klaas,Nuenen,Noord-Brabant,Netherlands,Mobile
@@ -1798,6 +1835,7 @@ 2045127,PA3DZW,Gerard Weerman,Gerard,Tilburg,Noord-Brabant,Netherlands,
2045128,PA1SAN,Thea Camp,Thea,Oss,Noord-Brabant,Netherlands,
2045129,PA8AA,Peter Heiden,Peter,Eindhoven,Noord-Brabant,Netherlands,
+2045131,PE1MUA,Peter ,,Berkel-Enschot,Noord-Brabant,Netherlands,
2046001,PD2WGN,Walter Garretsen,Walter,Nijkerkerveen,,Netherlands,Mobile
2046002,PA1WW,Walther ,Walther,Voorthuizen,Gelderland,Netherlands,Mobile
2046003,PD0PVL,Robert ,Robert,Hoenderloo,Gelderland,Netherlands,Portable
@@ -1957,6 +1995,7 @@ 2046157,PA1JB,Jelmer Bruggink,Jelmer,Otterlo,Gelderland,Netherlands,
2046158,PE1RNA,Jacco Jong,Jacco,Apeldoorn,Gelderland,Netherlands,
2046159,PE1POI,Jan Vink,Jan,Kerkdriel,Gelderland,Netherlands,
+2046161,PD2K,Peter ,,Heteren,Gelderland,Netherlands,
2046900,PI4AJS,Henry ,Club station ARAC,Neede,Gelderland,Netherlands,
2047001,PD0ZWL,Marcel ,Marcel,Zwolle,Overijssel,Netherlands,Portable
2047002,PD0ZWL,Marcel ,Marcel,Zwolle,Overijssel,Netherlands,Mobile
@@ -2037,7 +2076,7 @@ 2047077,PD1S,Erik Lamboo,Erik,Enschede,Overijssel,Netherlands,
2047078,PA4NL,Jasper Rijnsburger,Jasper,Zwolle,Overijssel,Netherlands,
2047079,PA3EYF,Theo Kok,Theo,Lelystad,Flevoland,Netherlands,
-2047080,PB0H,Henry Bolster,Henry,Hengelo,Overijssel,Netherlands,
+2047080,PC2KY,Henry Bolster,Henry,Hengelo,Overijssel,Netherlands,
2047081,PA4NL,Jasper Rijnsburger,Jasper,Zwolle,Overijssel,Netherlands,
2047082,PD7HJ,Henkjan Kienhuis,Henkjan,Dedemsvaart,Overijssel,Netherlands,
2047083,PD1WBS,Marco Zwiers,Marco,Nijverdal,Overijssel,Netherlands,
@@ -2120,6 +2159,7 @@ 2047160,PD8H,Hennie Edelenbos,Hennie,Enschede,cnty,Netherlands,
2047161,PA5HF,Frank Hoffman,Frank,Swifterbant,Flevoland,Netherlands,
2047162,PA5PS,Peter Scheltema,Peter,Almere,Flevoland,Netherlands,
+2047164,PA7RAY,Raymond ,PA7RAY,Almere,Flevoland,Netherlands,
2048001,PD1ASH,Rolf ,Rolf,Niebert,Groningen,Netherlands,Mobile
2048002,PD1ALW,Andre ,Andre,Wijnaldum,Friesland,Netherlands,Mobile
2048003,PE1PWF,Edwin ,Edwin,Leeuwarden,Friesland,Netherlands,Portable
@@ -2275,6 +2315,7 @@ 2048153,PD0LEW,Johan Holstein,Johan,Zuidlaren,Drenthe,Netherlands,
2048154,PD0AM,Peter Petersen,Peter,Visvliet,Groningen,Netherlands,
2048155,PE1HTB,Hendrik Ten Boom,Hendrik,Ouwsternijega,Frysland,Netherlands,
+2048156,PE0EFG,Auke ,,.,cnty,Netherlands,
2060001,ON4AIM,Aime ,Aime,Oostende,West-Vlaanderen,Belgium,Portable
2060002,ON3AN,Ann ,Ann,Oostende,West-Vlaanderen,Belgium,Portable
2060003,ON2WIK,Marc ,Marc,Oostende,West-Vlaanderen,Belgium,Portable
@@ -3846,6 +3887,9 @@ 2141232,EA1GFY,Antonio Martinez Mendoza,EA1GFY,Logroo,La Rioja,Spain,
2141233,EA1VIL,Dani Miguel Lazaro,Norato,Villoria,Castilla y Leon,Spain,
2141234,EA1GCM,Juan Manuel ,,Mieres,Asturias,Spain,
+2141237,EA1GLE,Roberto ,,VILLARIEZO,Castilla y Len,Spain,
+2141238,EA1HUZ,RAUL ,,Burgos,excluding Albacete,Spain,
+2141239,EA1AR,Sergio ,,Avila,Castilla y Leon,Spain,
2142001,EA2IP,Jesus ,Jesus,Sestao,Basque Country,Spain,
2142002,EA2IV,Alex BONILLO,Alex,Huesca,Aragon,Spain,
2142003,EA2FT,Juan Angel De la Fuente Mata,Juan Angel,Zaragoza,Aragun,Spain,
@@ -4000,6 +4044,14 @@ 2142152,EA2EFO,FRANCISCO HERNANDEZ,PAKO,SESTAO,Pais Vasco,Spain,
2142153,EA2IUG,Inigo Uzkudun,Inigo,Irun,cnty,Spain,
2142154,EA2GE,Luis Alberto ,Luis,Bilbao,Pais Vasco,Spain,
+2142155,EA2MKR,IOSEBA ,,MAKIRRIAIN,Navarra,Spain,
+2142156,EA2DPT,Pedro Mara ,,Zizur Mayor,Navarra,Spain,
+2142157,EA2DPV,Pedro Luis ,,Baraiin,Navarra,Spain,
+2142158,EA2PLN,FELIX ANGEL ,,ALSASUA,Navarra,Spain,
+2142161,EA2ATL,Juan Jos ,,Pamplona,Navarra,Spain,
+2142162,EA2BSD,Antonio ,,Berrioplano,Navarra,Spain,
+2142163,EA2AAW,RAFAEL ,,BARANAIN,Navarra,Spain,
+2142164,EA2DCR,AGUSTIN ,,Artica-navarra,Navarra,Spain,
2143001,EA3DKP,Ricardo ,Ricardo,Roses,Girona,Spain,Portable #1
2143002,EA3DKP,Ricardo ,Ricardo,Roses,Girona,Spain,Portable #2
2143003,EA3DKP,Ricardo ,Ricardo,Roses,Girona,Spain,Portable #3
@@ -4217,6 +4269,9 @@ 2143215,EB3FGM,Raul Jaime aguilar,Raul,Terrassa,Cataluna,Spain,
2143217,EA3AZL,Juan Francisco ,,Caldes dEstrac-Barce,Cataluna,Spain,
2143218,EA3CPL,VICTOR ,,Sabadell,Cataluna,Spain,
+2143219,EA3FCE,ALFREDO ,,VALLS,Cataluna,Spain,
+2143221,EA3RCP,Associaci de ,,Puigcerda,Cataluna,Spain,
+2143222,EA3DHL,ANTONIO IINGNACIO ,,Barcelona,Cataluna,Spain,
2144001,EA5IIO,ANTONIO ,,Albacete,Castile-La Mancha,Spain,
2144002,EA4GQW,Pablo Cortes,Pablo,Madrid,Community of Madrid,Spain,
2144003,EA4AAE,Javier Coso,Javier,Madrid,Community of Madrid,Spain,
@@ -4305,7 +4360,7 @@ 2144086,EB4GRT,Pedro Manuel Hortet Tostado,EB4GRT,Villar del Olmo,excluding Albacete,Spain,
2144087,EA4GKQ,Angel Onoro,EA4GKQ,VILLALBILLA,excluding Albacete,Spain,
2144088,EA4GCW,Camilo Castro Sampedro,EA4GCW,Torrejon de Ardoz,excluding Albacete,Spain,
-2144089,EA4AAI,GERARDO CAMPO CAYUELA,EA4AAI,Madrid,excluding Albacete,Spain,
+2144089,EA4AAI,Gerardo CAMPO CAYUELA,EA4AAI,Madrid,excluding Albacete,Spain,
2144090,EA4FD,Francisco Javier Lopez Otero,Ea4fd,Loeches,excluding Albacete,Spain,
2144091,EA4GGH,German Dimanuel,German,Madrid,excluding Albacete,Spain,
2144092,EA4EPY,Bruno Boglione,Half,Villanueva de la Can,excluding Albacete,Spain,
@@ -4379,6 +4434,9 @@ 2144161,EA4GQL,FRANCISCO CABALLERO,PACO,MAJADAHONDA,excluding Albacete,Spain,
2144162,EA4DVA,Santiago Jimenez,Santiago,Madrid,excluding Albacete,Spain,
2144163,EA4GQM,Sergio ,,Torrejon de ardoz m,excluding Albacete,Spain,
+2144164,EA4FOV,L ALFONSO ,,Madrid,excluding Albacete,Spain,
+2144165,EA4AIV,Jos Luis ,,Ciudad Real,excluding Albacete,Spain,
+2144166,EA4HW,Antonio ,,San Lorenzo del esco,excluding Albacete,Spain,
2145001,EA5AWM,Vicente ,Vicente,Valencia,Valencia,Spain,Mobile
2145002,EA5AWM,Vicente ,Vicente,Valencia,Valencia,Spain,Portable
2145003,EA5HJX,Alex ,Alex,Valencia,Valencia,Spain,Mobile
@@ -4517,6 +4575,8 @@ 2145136,EB5BYP,JAVIER CULEBRA HERNANDEZ,JAVIER,EL CAMPELLO,Valencia,Spain,
2145137,EB5AG,Manuel Luis ,,Novelda,cnty,Spain,
2145138,EA5IQC,Jose Luis ,,Almenara,Valencia,Spain,
+2145139,EA5IIF,Jorge ,,Murcia,Murcia,Spain,
+2145140,EB5CVH,Jos Manuel ,,Paiporta,Valencia,Spain,
2146001,EA6AFZ,Antonio Lopez,Antonio,Inca,Islas Baleares,Spain,
2146002,EA6AID,Ana Macian,Ana,Inca,Islas Baleares,Spain,
2146003,EA6AFZ,Antonio Lopez Segade,Antonio,Inca,Islas Baleares,Spain,
@@ -4534,6 +4594,7 @@ 2146015,EA6WQ,TOMAS ORZAEZ,Tomdmr,MANACOR,Islas Baleares,Spain,
2146016,EB6AOK,Muriel Enrique,EB6AOK,Sant Joan de Labritj,Islas Baleares,Spain,
2146017,EA6RF,Antonio Reynes Pons,Ea6rf toni,Algaida,Islas Baleares,Spain,
+2146019,EA6AMH,Jakob ,,Arta,Islas Baleares,Spain,
2147001,EA7UW,Rafael Ric Millan,Rafael,Malaga,Andalucia,Spain,
2147002,EA7CRA,Jose Manuel Alabarce,Jose Manuel,Granada,Andalucia,Spain,
2147003,EA7JRS,Manuel Canca Snchez,Manuel,Jerez de la frontera,Andalucia,Spain,
@@ -4684,6 +4745,9 @@ 2147148,EA7HNF,SERAFIN GOMEZ CRIADO,SERAFIN,EL EJIDO,Andalucia,Spain,
2147149,EA7GCI,Pedro ,,Sevilla,Andalucia,Spain,
2147150,EA7KAS,SANTIAGO ,GALINDO77,MALAGA,Andalucia,Spain,
+2147153,EA7YY,JORGE ,,Milaga,Andalucia,Spain,
+2147154,EA7HCL,HUGO ,,Marbella,Andalucia,Spain,
+2147155,EA7HOJ,JOSE ,,ALMERIA,Andalucia,Spain,
2148001,EA8YAT,Alfred ,Alfred,Las Palmas,Islas Canarias,Spain,Portable
2148002,EA8EE,Jose ,Jose,Las Palmas,Islas Canarias,Spain,
2148003,EA8EE,Jose Manuel Martinez,Jose Manuel,Las Palmas,Islas Canarias,Spain,
@@ -4726,6 +4790,8 @@ 2148040,EA8CPM,JUAN CARLOS GALLEGO,JUAN CARLOS,ARUCAS,Islas Canarias,Spain,
2148041,EA8BKB,GERMAN LOPEZ,GERMAN,TELDE,Islas Canarias,Spain,
2148042,EA8CAY,ANTONIO CAaeELLAS,TONI-EA8CAY,TELDE,Islas Canarias,Spain,
+2148044,EA8DEP,Eduardo Andres ,,Puerto del Rosario,Islas Canarias,Spain,
+2148045,EA8AWK,JOSE LUIS ,,ARUCAS,Islas Canarias,Spain,
2149001,EA9PE,Alvaro ,Alvaro,Ceuta,Ceuta,Spain,Portable
2149002,EB9PB,Alejandro ,Alejandro,Ceuta,Ceuta,Spain,Mobile
2149003,EA9AAD,Lara Ostio Almudena,Lara Ostio,Ceuta,Ceuta,Spain,
@@ -4975,7 +5041,7 @@ 2200029,YT1PEU,Miroslav Gavranov,Gavra,Beograd,,Serbia,
2220001,IK0YYY,Luca Ferrara,3y,Rome,,Italy,Portable#1
2220002,IK0YYY,Luca Ferrara,3Y,Roma,Umbria,Italy,
-2220003,IW0BEC,Eugenio ,Eugenio,Rome,Lazio,Italy,Portable
+2220003,IW0BEC,Eugenio ,Eugenio,Rome,,Italy,
2220004,IT9LRZ,Giovanni ,Giovanni,Rome,Lazio,Italy,Portable
2220005,IZ0XBM,Andrea ,Andrea,Rome,Lazio,Italy,Portable
2220006,IK0RTA,Antonio ,Antonio,Rome,Lazio,Italy,Portable
@@ -5340,6 +5406,7 @@ 2220365,IW0DVV,Mariano Mezzetti,Mariano,Civitavecchia,Lazio,Italy,
2220366,IZ0YCA,SANDRO BONFANTINI,SANDRO,ROMA,Lazio,Italy,
2220367,IZ0UUP,VITTORIO DI GIANFRANCESCO,VITTORIO,SantAngelo Romano,Lazio,Italy,
+2220368,IW0RZY,MATTEO ,,Perugia,Umbria,Italy,
2220369,IW0FEO,ANGELO IMPERO ZANONI,ANGELO IMPERO,SAN LORENZO NUOVO,Lazio,Italy,
2220370,IK0TCL,Antonello Tiroli,Antonello,Citta di Castello,Umbria,Italy,
2220371,I0GXK,David Fantini,I0GXK,Terni,Umbria,Italy,
@@ -5358,6 +5425,14 @@ 2220384,IK0JOS,Roberto ,,Civitavecchia,Lazio,Italy,
2220385,IZ0HSR,Gian Carlo ,,Tarquinia,Lazio,Italy,
2220386,IZ0KAT,Fabio ,,Civitavecchia,cnty,Italy,
+2220387,IU0AFP,Riccardo ,,Marino,Lazio,Italy,
+2220388,IU0BCN,Paolo ,,Gerano,Lazio,Italy,
+2220389,IW0HK,Andrea ,,Roma,Lazio,Italy,
+2220390,IU0DLI,Vincenzo ,,Itri,Lazio,Italy,
+2220391,IZ0QSZ,Ceritello ,,Sezze,Lazio,Italy,
+2220392,IZ0MTU,Vittorio ,,Civitavecchia,Lazio,Italy,
+2220393,I0OOZ,Maurizio ,,Roma,Lazio,Italy,
+2220394,IZ0HEI,Luigi ,,Ariccia,Lazio,Italy,
2220900,IW0UIF,Natale ,Natale,Oristano,Sardinia,Italy,Mobile
2220901,IS0XDA,Gianni ,Gianni,Sinnai,Sardinia,Italy,Mobile
2220902,IS0AYI,Paolo ,Paolo,Cagliari,Sardinia,Italy,Mobile
@@ -5698,6 +5773,14 @@ 2221326,I1XZZ,Giancarlo ,,Genova,Liguria,Italy,
2221327,IZ1RFV,Paolo ,,Tortona,Piedmont,Italy,
2221328,IZ1UIB,Mauro ,,Omegna,Piedmont,Italy,
+2221329,IK1OXE,Maurizio ,,Ventimiglia,Liguria,Italy,
+2221330,IZ1KIH,Sergio ,,Torino,cnty,Italy,
+2221331,IW1QNQ,Roberto ,,Genova,Liguria,Italy,
+2221332,IK1DML,Walter ,,Busano,Piedmont,Italy,
+2221333,IK1BXN,Giorgio ,,Busalla,Liguria,Italy,
+2221334,IW1QGR,Giovannino ,,Sanremo,Liguria,Italy,
+2221335,IU1DOR,Carlo ,,Felizzano,Piedmont,Italy,
+2221336,IZ1PPS,Adriano ,,Carmagnola,Piedmont,Italy,
2222001,IW2DCK,Germano ,Germano,Capriate San Gervasi,Lombardy,Italy,Portable
2222002,IW2BCF,Roberto ,Roberto,Milano,Lombardy,Italy,Mobile
2222003,IZ2JGB,Giorgio ,Giorgio,Legano,Lombardy,Italy,Portable
@@ -6176,6 +6259,20 @@ 2222476,IU2CAP,Filippo ,,Terno disola,Lombardy,Italy,
2222477,IZ2NAB,GIANCARLO ,,Milano,Lombardy,Italy,
2222478,IZ2ABV,LUIGI GIUSEPPE ,,TRAVAGLIATO,Lombardy,Italy,
+2222479,IZ2WVG,Matteo ,,Pavia,Lombardy,Italy,
+2222480,IW2GOM,MASSIMO ,,CESANO MADERNO,Lombardy,Italy,
+2222481,IK2SON,Antonio ,,Lodi,Lombardy,Italy,
+2222482,IW2OAI,Andrea ,,Lonato del Garda (BS,Lombardy,Italy,
+2222483,IQ2BG,Marco ,,Bergamo,Lombardy,Italy,
+2222484,IZ2NZQ,Paolo Vincenzo ,,Busto Arsizio,Lombardy,Italy,
+2222485,IU2GQW,Marco ,,Sesto San Giovanni,Lombardy,Italy,
+2222486,IU2BXA,Federico ,,Casnate con Bernate,Lombardy,Italy,
+2222487,IW2GXK,Maurizio ,,Varedo,Lombardy,Italy,
+2222488,IZ2QYZ,Tommaso ,,Carimate,Lombardy,Italy,
+2222489,IU2HFN,Marco ,,Paderno Dugnano,Lombardy,Italy,
+2222490,IK2WPM,Dario ,,Milano,Lombardy,Italy,
+2222491,IW2OHP,Claudio ,,Mozzate,Lombardy,Italy,
+2222492,IW2ELY,Luigi ,,Gropello Cairoli,Lombardy,Italy,
2223001,IW3SRH,Stefano ,Stefano,Trieste,Friuli-Venetia Giuli,Italy,Portable
2223002,IV3DVE,Corrado ,Corrado,Trieste,Friuli-Venetia Giuli,Italy,Portable
2223003,IV3FHS,Antonio ,Antonio,Latisana,Friuli-Venetia Giuli,Italy,Portable
@@ -6541,7 +6638,12 @@ 2223365,IZ3SPQ,Tiziano Libralesso,Tizi,Martellago,Veneto,Italy,
2223366,IW3RPW,Dario Gonnella,Dario,Trieste,Friuli-Venetia Giuli,Italy,
2223367,IK3OUB,Bruno Martinolli,Bruno,Cortina dAmpezzo,Veneto,Italy,
+2223368,IZ3NWP,Luca ,,Brendola,Veneto,Italy,
2223369,IN3LOY,Marco ,,Tesero,Trentino-Alto Adige,Italy,
+2223370,IU3HQB,Pietro ,,Padova,Veneto,Italy,
+2223371,IW3IPB,Teo ,,Venezia,Veneto,Italy,
+2223372,IK3QAO,Giovannino ,,Padova,Veneto,Italy,
+2223373,IU3BXO,Alessandro ,,Orsago,Veneto,Italy,
2224001,IZ4RDT,Monica ,Monica,Piacenza,Emilia-Romagna,Italy,Mobile
2224002,IZ4YEP,Alex ,Alex,Piacenza,Emilia-Romagna,Italy,Mobile
2224003,IW4BVN,Paolo ,Paolo,Salsomaggiore Terme,Emilia-Romagna,Italy,Portable
@@ -6675,7 +6777,7 @@ 2224131,IW4EQO,Alessandro Storchi,Iw4eqo,Novellara (Re),Emilia-Romagna,Italy,
2224132,IU4FMW,Cagnina Giuseppe,Cagno,Sorbolo,Emilia-Romagna,Italy,
2224133,IZ4FUA,FAUSTO FONTANA,FAUSTO,Cortemaggiore pc,Emilia-Romagna,Italy,
-2224134,IU4DKT,Rossi Tiziano,Rossi,Piacenza,Emilia-Romagna,Italy,
+2224134,IU4DKT,Tiziano Tiziano,Rossi,Piacenza,Emilia-Romagna,Italy,
2224135,IW4BSG,ANDREA ANCARANI,ANDREA,RIVERGARO,Emilia-Romagna,Italy,
2224136,IZ4IPU,Davide Santori,Dave,Gropparello,Emilia-Romagna,Italy,
2224137,IZ4BKK,Andrea Braga,Andrea IZ4BKK,Piacenza,Emilia-Romagna,Italy,
@@ -6705,6 +6807,7 @@ 2224161,IW4BNN,Mauro POLETTI,IW4BNN,Bondeno,Emilia-Romagna,Italy,
2224162,IZ4FTC,Claudio Dalmonte,Iz4ftc,Bologna,Emilia-Romagna,Italy,
2224163,IK4HZW,Eric Benassi,IK4HZW,Reggio Emilia,Emilia-Romagna,Italy,
+2224164,IU4AZC,Enrico ,,Ferrara,Emilia-Romagna,Italy,
2224165,IZ4HEO,Pietro Occhi,Iz4heo,Fidenza,Emilia-Romagna,Italy,
2224166,IU8GVS,ALFONSO MOLLO,ALFONSO,Massalubrense,Emilia-Romagna,Italy,
2224167,IU4DTV,Massimo Pecoraro,Massimo,Carpi,Emilia-Romagna,Italy,
@@ -6714,6 +6817,11 @@ 2224171,IZ4BES,Roberto ,,Voghiera (FE),Emilia-Romagna,Italy,
2224172,IU4DKN,Riccardo ,,Ferrara,Emilia-Romagna,Italy,
2224173,IZ4SJI,Arno ,,Porto Garibaldi (FE),Emilia-Romagna,Italy,
+2224174,IW4COP,Rossi ,,Calestano,Emilia-Romagna,Italy,
+2224175,IK4PNE,GIAN PAOLO ,,FERRARA,Emilia-Romagna,Italy,
+2224176,IK4IDS,Claudio ,,Reggio Emilia,Emilia-Romagna,Italy,
+2224177,IZ4VVD,Gianni ,,Grizzana Morandi,Emilia-Romagna,Italy,
+2224178,IZ4ORF,Giuseppe ,,Parma,Emilia-Romagna,Italy,
2225001,IZ5IOM,Renzo ,Renzo,Quarrata,Tuscany,Italy,Portable
2225002,IZ5HRO,Emanuele ,Emanuele,Pistoia,Tuscany,Italy,Portable
2225003,IZ5YLV,Valentina ,Valentina,Pistoia,Tuscany,Italy,Portable
@@ -6854,6 +6962,8 @@ 2225138,IU5CGE,Adriano Bani,ZIoBani,Campi Bisenzio,Tuscany,Italy,
2225139,IK5YOJ,Giuseppe Giunti,Joe,Empoli,Tuscany,Italy,
2225140,IU5HMK,NIKO ,,Monte san savino,Tuscany,Italy,
+2225141,IU5BKR,Riccardo ,,Livorno,Tuscany,Italy,
+2225142,I5WNN,Lido Moreno ,,Prato,Tuscany,Italy,
2226001,IZ6FGP,Mario ,Mario,Ortona,Abruzzo,Italy,Portable
2226002,IK6TTE,Plinio ,Plinio,Casalbordino,Abruzzo,Italy,Portable
2226003,IZ6FGP,Mario ,Mario,Ortona,Abruzzo,Italy,Mobile
@@ -7029,6 +7139,8 @@ 2226173,IU6FOP,GIOVANNI PAOLINELLI,GIOVANNI,FANO,Marche,Italy,
2226174,I6YJD,Aldo DAlfonso,Aldo DAlfonso,Ofena,Abruzzo,Italy,
2226175,IZ6PGZ,Manuele De Benedictis,IZ6PGZ,LAquila,Abruzzo,Italy,
+2226176,IZ6ABA,Mario ,,Macerata,Marche,Italy,
+2226177,IW6DAA,Paola ,,Macerata,Marche,Italy,
2227001,IZ7OIX,Domingo ,Domingo,Bari,Apulia,Italy,Portable
2227002,IZ7GLL,Massimo ,Massimo,Bari,Apulia,Italy,Mobile
2227003,IZ7ZFT,Silvio ,Silvio,Rutigliano,Apulia,Italy,Mobile
@@ -7159,13 +7271,20 @@ 2227128,I8ZSE,Giorgio Rutigliano,I8ZSE,Potenza,Basilicata,Italy,
2227129,IU7HSD,Giacomo AMORUSO,IU7HSD,Trani,Apulia,Italy,
2227130,IK7TAI,MARCELLO LIACI,MARLIACI,Bari,Apulia,Italy,
-2227131,IW7EFJ,Evangelio Marco,Evangelio,Foggia,Apulia,Italy,
+2227131,IW7EFJ,Marco Marco,Evangelio,Foggia,Apulia,Italy,
2227132,IZ7QOG,Pasquale Luceri,IZ7QOG,Galatina,Apulia,Italy,
2227133,IZ7XMY,Procopio Ricatti,Prok,Bari,Apulia,Italy,
2227134,IZ7CFE,ROCCO BORRELLI,ROCCO,CASAMASSIMA,cnty,Italy,
2227135,IU7EHB,JOHN ,,BARI,Apulia,Italy,
2227136,IZ7XIB,Fabio ,,GRAVINA IN PUGLIA,Apulia,Italy,
2227137,IW7BIM,GIUSEPPE ,,Gravina in Puglia,Apulia,Italy,
+2227138,IZ7UIU,Luigi ,,Cellino san marco,Apulia,Italy,
+2227139,I7IYE,Giuseppe ,,Casamassima,Apulia,Italy,
+2227140,IU7HAL,Vincenzo ,,Andria,Apulia,Italy,
+2227141,I7WAN,Donato Antonio ,,Bari,Apulia,Italy,
+2227142,IZ7XMX,Giovanni ,,Taranto,Apulia,Italy,
+2227143,IZ7ZJX,STEFANO ,,SAN PIETRO VERNOTICO,cnty,Italy,
+2227144,IU7BPJ,Giuseppe ,,SantAgata di Puglia,Apulia,Italy,
2228001,IZ8IYJ,Nicola ,Nicola,Cosenza,Calabria,Italy,Portable
2228002,IW8XQP,Elio ,Elio,Isernia,Molise,Italy,Mobile
2228003,IZ8XSS,Federico ,Federico,Aversa,Campania,Italy,Mobile
@@ -7342,6 +7461,9 @@ 2228176,IK8TLZ,Ezio Calarco,Ezio,Napoli,Campania,Italy,
2228177,IZ5HQA,Giuseppe Occhionero,GIUSEPPE,Campomarino,Molise,Italy,
2228178,IU8HOZ,Stefano Pio ,,San sosti,Calabria,Italy,
+2228179,IZ8HQA,Giuseppe ,,Portocannone,cnty,Italy,
+2228180,IU8HUS,NUNZIO ,,NAPOLI,Campania,Italy,
+2228181,IK8SUY,Enzo ,,Caivano,Campania,Italy,
2229001,IT9YFO,Andrea ,Andrea,Catania,Sicily,Italy,Mobile
2229002,IT9ZON,Francesco ,Francesco,Catania,Sicily,Italy,Mobile
2229003,IT9UUT,Salvo ,Salvo,Ispica,Sicily,Italy,Portable
@@ -7436,6 +7558,8 @@ 2229092,IT9GQB,Igor Giuffrida,Igor,San Gregorio di Cata,Sicily,Italy,
2229093,IT9SWH,Alfredo Scire,Alfredo,Catania,Sicily,Italy,
2229094,IT9GNJ,Sorin ,,Piazza Armerina,Sicily,Italy,
+2229095,IT9EJE,Calogero ,,Patti,Sicily,Italy,
+2229096,IT9MUF,Marcello ,,Palermo,Sicily,Italy,
2261001,YO3GTS,Dan ,Dan,Bucharest,Bucharest,Romania,Mobile
2262001,YO2LOJ,Marius Petrescu,Marius,Timisoara,Judeul Timi,Romania,
2262002,YO2LIC,Vali Ungur,Vali,Timisoara,Judeul Timi,Romania,
@@ -8323,6 +8447,7 @@ 2288158,HB9LDA,Hansjoerg Bachmann,Hansjoerg,Bauma,Zuerich und Thurgau,Switzerland,
2288159,HB9JNH,Markus Zimmermann,Markus,Aadorf,Zuerich und Thurgau,Switzerland,
2288160,HB9PPN,Hansjoerg Gass,Hansjoerg,Sirnach,Zuerich und Thurgau,Switzerland,
+2288165,HB3YUG,Simon ,,Winterthur,Zuerich und Thurgau,Switzerland,
2288542,HB9ANF,Hans-Joerg Spring,Hans-Joerg,Wiesendangen,Zuerich und Thurgau,Switzerland,
2288822,HB9SDB,Rolf Tschumi,Rolf,Waedenswil,Zuerich und Thurgau,Switzerland,
2288867,HB9BXQ,Renato Schlittler,Renato,Zuerich,Zuerich und Thurgau,Switzerland,
@@ -9949,7 +10074,7 @@ 2341664,2E0JCT,John Griffiths,Pieman,Ashton In Makerfield,England,United Kingdom,
2341665,2E0DRJ,Dave Farrant,Dave,Guisborough,England,United Kingdom,
2341666,G7HUP,Mark Terry,Mark,Newbury,England,United Kingdom,
-2341667,M6IGJ,Ian Jackson,Gareth,Congleton,England,United Kingdom,
+2341667,M6IGJ,Gareth Jackson,Gareth,Congleton,England,United Kingdom,
2341668,M6GTT,John Owen,M6GTT,Bristol,England,United Kingdom,
2341669,M0CNM,Andrew Williams,Andy,Thetford,England,United Kingdom,
2341670,G4FHI,Graham Styles,John,Shrewsbury,England,United Kingdom,
@@ -11052,6 +11177,32 @@ 2342772,M1EQB,Gerald ,,Bexhill on sea,England,United Kingdom,
2342773,M6UZZ,David ,,Rotherham,England,United Kingdom,
2342774,M0WDG,David ,,Walderslade,England,United Kingdom,
+2342776,G7DWN,Anne ,,Woodbridge,England,United Kingdom,
+2342782,M0HVC,Robin ,,London,England,United Kingdom,
+2342783,G0VKY,David ,,Plymouth,England,United Kingdom,
+2342785,M1EZF,Andy ,,Poole,England,United Kingdom,
+2342786,2E1AVX,James ,,Staines,England,United Kingdom,
+2342787,G7JRU,Adrian ,,Lowerstoft,England,United Kingdom,
+2342788,G4GHH,Jim ,,Hullbridge, ESSEX,England,United Kingdom,
+2342789,M6LHK,Frederick ,,Essex,England,United Kingdom,
+2342790,G4WLI,Peter ,,Manchester,England,United Kingdom,
+2342791,M6HWO,Michael ,,Peterborough,England,United Kingdom,
+2342792,M0LLW,Andrea ,,Doncaster,England,United Kingdom,
+2342793,M3PSR,Pauline ,,Manchester,England,United Kingdom,
+2342794,G3RCW,Wars ,,Worksop,England,United Kingdom,
+2342795,M6GSN,Glen ,,London,England,United Kingdom,
+2342796,G7MQW,Ronald ,,Worksop,England,United Kingdom,
+2342797,G0OYZ,Roy ,,March,England,United Kingdom,
+2342798,G1VXQ,Jonathan ,,Sheffield,England,United Kingdom,
+2342799,M6HXA,Paul ,,Guildford,England,United Kingdom,
+2342800,G4WBB,David ,,Barnsley,England,United Kingdom,
+2342801,M6LRJ,Kenneth ,,Dagenham,England,United Kingdom,
+2342802,2E0GPU,Andy ,,Whittlesey,England,United Kingdom,
+2342804,2E0DZE,Marie ,,Rotherham,England,United Kingdom,
+2342805,M0GUC,Mark ,,Byfield,England,United Kingdom,
+2342806,M6OME,Mark ,,Sheffield,England,United Kingdom,
+2342807,G0VTU,Dave ,,Tamworth,England,United Kingdom,
+2342808,G1JGT,JOHN ,,Huntingdon,England,United Kingdom,
2351001,G0PRF,John ,John,Huddersfield,West Yorkshire,United Kingdom,Portable
2351002,G0PRF,John Goodwin ,,Huddersfield,West Yorkshire,United Kingdom,Mobile
2351003,G7LWT,Darren ,Darren,Manchester,North West England,United Kingdom,Portable #1
@@ -13748,8 +13899,10 @@ 2355254,GI4SZW,Michael James Keenan,Seamus GI4SZW,Newry,Northern Ireland,United Kingdom,
2355255,GI6ZIR,Adrian Duffy,Agrian,Enniskillen,Northern Ireland,United Kingdom,
2355256,GI0UTV,Ian Ross,Ian,Belfast,Northern Ireland,United Kingdom,
+2355257,GI3VAW,Ronald ,,Limavady, CoDerry,Northern Ireland,United Kingdom,
2355258,GI6MTL,Mervyn McCutcheon,Merv,Craigavon,Northern Ireland,United Kingdom,
2355259,MI6WMN,William Mcmullen,Willie,Newry,Northern Ireland,United Kingdom,
+2355260,MI6JVC,Jordan ,,Armagh,Northern Ireland,United Kingdom,
2356001,GD6XHG,Ed ,Ed,Douglas,Isle of Man,United Kingdom,Portable#1
2356002,GD6XHG,Ed ,Ed,Douglas,Isle of Man,United Kingdom,Portable#2
2356003,GD0NFN,John Butler,John,Isle of Man,Isle of Man,United Kingdom,
@@ -13964,6 +14117,9 @@ 2382100,OZ3KTE,Kim Espersen,Kim silkeborg,Silkeborg,Midtjylland,Denmark,
2382101,OZ3FTE,Finn Espersen,Oz3fte finn,Silkeborg,Midtjylland,Denmark,
2382102,OZ3AGJ,Per Schou,Per,Viborg,Midtjylland,Denmark,
+2382103,OZ1BDG,Bent Knakkergaard ,,Sabro,Midtjylland,Denmark,
+2382104,OZ5MO,Mogens ,,Odder,Midtjylland,Denmark,
+2382105,OZ1SFS,Steffen ,,Viborg,Midtjylland,Denmark,
2383001,OZ1BM,Brian ,Brian,Odense,Syddanmark,Denmark,Portable
2383002,OZ1KFY,Christian ,Christian,Fredericia,Syddanmark,Denmark,
2383003,OZ3DM,Dennis ,Dennis,Haarby,Syddanmark,Denmark,
@@ -14335,6 +14491,7 @@ 2384217,OZ13JK,Torben Brandstrup,TBP,Kbenhavn S,Hovedstaden,Denmark,
2384218,OZ5AGQ,Preben Andersen,Prebsi,Stenloese,Hovedstaden,Denmark,
2384219,OZ5ABO,Per Brix,Per,Rungsted Kyst,Hovedstaden,Denmark,
+2384220,OZ7GTM,Adrian ,,Hillerd,Hovedstaden,Denmark,
2384400,OZ3MAJ,Martin ,,Herlev,Hovedstaden,Denmark,
2384444,OZ0GC,Gifted Children DK,Gifted Children,Hvidovre,Hovedstaden,Denmark,
2384500,OZ1HWN,Einar T,Einar,Alleroed,Hovedstaden,Denmark,
@@ -14501,6 +14658,9 @@ 2385159,OZ1IOA,Knud Nielsen,Oz1ioa,Vemmelev,Sjaelland,Denmark,
2385160,OZ1GZZ,Soeren Thornberg Petersen,Soeren,Aalsgaarde,Sjaelland,Denmark,
2385161,OZ4WOK,Frank Leipold,Frank,Tune,Sjaelland,Denmark,
+2385162,OZ1FFI,Teddy ,,Jgerspris,Sjaelland,Denmark,
+2385163,OZ1AQW,Ejnert ,,Faarevejle,Sjaelland,Denmark,
+2385164,OZ1AHV,Finn ,,Borup,Sjaelland,Denmark,
2385555,OZ3BB,Mogens Johansson,Mogens,Roedby,Sjaelland,Denmark,
2385999,5Q5XX,Hans ,,Nyk Sj,Sjaelland,Denmark,
2388888,CBRIDGE,CBridgeOZTest Parrot,CBrigdeOZ,Vig,Sjaelland,Denmark,
@@ -14712,6 +14872,8 @@ 2400206,SA0FBR,Fredrik Brask,SA0FBR,Stockholm,Stockholm City-A,Sweden,
2400207,SM0JZT,Tilman Thulesius,SM0JZT,Kungsaengen,cnty,Sweden,
2400208,SM0OFV,Jan Andersson,Janne,Solna,Stockholm County,Sweden,
+2400209,SA0JLA,Jonas ,,Vendelsoe,Stockholm City-A,Sweden,
+2400210,SM0TNX,Georg ,,Norsborg,Stockholm Laen-B,Sweden,
2401001,SM6UDU,Marcus ,,Uddevalla,Gotland-I,Sweden,
2402001,SA2CMY,Tomas Isaksson,Tomas,Lulea,Norrbotten,Sweden,
2402002,SA2BNO,Peter Larsson,Peter,Kiruna,Norrbotten County,Sweden,
@@ -14827,6 +14989,7 @@ 2403083,SM3WEO,Michael Jillebo,Micke,Gaevle,Gaevleborg-X,Sweden,
2403084,SA3ADT,Roland Nilsson,Rolle,Sundsvall,Vaesternorrland-Y,Sweden,
2403085,SA3CAT,Owe Oestberg,Owe,Kvissleby,Vaesternorrland-Y,Sweden,
+2403086,SA3MSA,Maarten ,Sa3msa,Oestersund,Jaemtland-Z,Sweden,
2404001,SM4XBL,Christopher ,Christopher,Borlange,Dalarnas Laen,Sweden,Portable
2404002,SM4WOA,Claes ,Claes,Borlange,Dalarnas Laen,Sweden,Portable
2404003,SM4WWO,Robert ,Robert,Insjoen,Dalarnas Laen,Sweden,Portable
@@ -14893,6 +15056,7 @@ 2404064,SA4MDN,Michael Newbury,Mick,Olshammar,Oerebro-T,Sweden,
2404065,SM4EPR,Mats Ericson,Mats,Lindesberg,Oerebro-T,Sweden,
2404066,SG4AXQ,Joachim Olsson,Jocke,SUNNE,Vaermland-S,Sweden,
+2404067,SM4YPG,Lars Gunnar ,,Borlaenge,Dalarnas luon,Sweden,
2405001,SM5OEM,Ronny ,Ronny,Aby,Oestergoetland Laen,Sweden,Portable
2405002,SM5BMK,Anders ,Anders,Torshalla,Soedermanland County,Sweden,
2405003,SM5ULX,Morgan ,Morgan,Eskilstuna,Soedermanland County,Sweden,
@@ -14972,6 +15136,9 @@ 2405077,SA5LKC,Joakim Lind,SA5LKC,KolmNrden,Oestergoetlands laen,Sweden,
2405078,SG5TAH,Mats Ekstroem,Mats,Flen,Oestergoetland-E,Sweden,
2405079,SE0YOS,Thomas Bostroem,Thomas Bostroem,Stockholm,cnty,Sweden,
+2405080,SA5ROJ,Borje ,,Eskilstuna,Soedermanland-D,Sweden,
+2405081,SM5TNL,Lars ,,Uppsala,Uppsala-C,Sweden,
+2405082,SG0YOS,Thomas ,,Stockholm,cnty,Sweden,
2406001,SM6TKT,Claes ,Claes,Boras,Västergötland,Sweden,Portable#1
2406002,SM6TKT,Claes ,Claes,Boras,Västergötland,Sweden,Mobile#1
2406003,SA6BPC,Christian ,Christian,Boras,Västergötland,Sweden,Portable
@@ -15121,6 +15288,7 @@ 2406147,SA6BXM,Michael Arvidsson,Mike,Goeteborg,Goeteborg och Bohus-,Sweden,
2406148,SM6WNR,Per Majloef,Per Majloef,Vargarda,Aelvborg-P,Sweden,
2406149,SM6TJI,Kjell Arturson,Kjell SM6TJI,SimlNngsdalen,cnty,Sweden,
+2406150,SM6XIN,David ,,Lundsbrunn,Skaraborg-R,Sweden,
2407001,SM7URN,Patrik ,Patrik,Sölvesborg,Blekinge Laen,Sweden,Portable
2407002,SM7URN,Patrik ,Patrik,Sölvesborg,Blekinge Laen,Sweden,Mobile
2407003,SA7BRM,Robert ,Robert,Malmoe,Skane,Sweden,Portabel
@@ -15396,6 +15564,7 @@ 2421045,LB0KG,Thor Ivar Tandberg Johansen,Thor,Rykkinn,Akershus,Norway,
2421046,LA9RTA,Roger Olsen,LA9RTA,RYKKINN,Akershus,Norway,
2421047,LB7PG,Harald ,,Hovik,Akershus,Norway,
+2421048,LB8SG,Erik ,,Lommedalen,Akershus,Norway,
2422001,LA3QMA,Kai ,Kai,Bergen,Hordaland,Norway,Portable#1
2422002,LA3QMA,Kai ,Kai,Bergen,Hordaland,Norway,Portable#2
2422003,LA3QMA,Kai ,Kai,Bergen,Hordaland,Norway,Mobile
@@ -15558,6 +15727,7 @@ 2426070,LB4WD,Thor Anton Torkehagen,Thor Anton,Gjvik,Oppland,Norway,
2426071,LB1BF,Ebbe Horneman,Lb1bf,Lillehammer,Oppland,Norway,
2426072,LA6ZFA,Ivar Grnn,Ivar,Lier,Buskerud,Norway,
+2426073,LA1TRF,Teknisk Repeater ,,HEGGEDAL,Buskerud,Norway,
2427001,LA3VW,Odd Skogjordet,Odd,ARENDAL,Aust-Agder,Norway,
2427002,LA4CSA,Tarjei Lundarvollen,Tarjei,Vinje,Telemark,Norway,
2427003,LA7LW,Ole Andreas Olsen,Ole Andreas,Arendal,Aust-Agder,Norway,
@@ -15606,6 +15776,7 @@ 2428029,LB3SA,Are Barstad,Are,Skoppum,Vestfold,Norway,
2428030,LB6DG,Kjetil Bochelie,Kjetil,Horten,Vestfold,Norway,
2428031,LA1ILA,Jon Bakken,Jon,Melsomvik,Vestfold,Norway,
+2428032,LA1ILA,Jon ,,Melsomvik,Vestfold,Norway,
2429001,LA5LIA,Steinar Hanssen,Steinar,Sandnessjoen,Nordland,Norway,
2429002,LA1PHA,Tom Arntzen,Tom,Mo i Rana,Nordland,Norway,
2429003,LA5JK,Jan Gunnar Johannessen,Jan Gunnar,Mo i Rana,Nordland,Norway,
@@ -15787,6 +15958,7 @@ 2442110,OH3GMM,Ilari Stenroth,Ilari,Helsinki,Uudenmaa,Finland,
2442111,OH2EPU,Aaro Kortelahti,Aaro,Hyvinkaeae,Uudenmaa,Finland,
2442112,OH2FQV,Jari A,Jari,Helsinki,Uudenmaa,Finland,
+2442113,OH2FDL,Mikael ,,Espoo,Uudenmaa,Finland,
2443001,OH3FCB,Tommi ,Tommi,Tampere,Pirkanmaa,Finland,Portable
2443002,OH3KGR,Janne ,Janne,Tampere,Pirkanmaa,Finland,Portable #1
2443003,OH3HWX,Toni ,Toni,Tampere,Pirkanmaa,Finland,Portable#1
@@ -15946,6 +16118,7 @@ 2446036,OH6WD,Jaakko Pekkarinen,Jaska,Viitasaari,cnty,Finland,
2446037,OH6JAT,Jouni Lehtonen,Jouni,Jamsa,Keski-Suomi,Finland,
2446038,OH5GE,Vili ,,Jyvaskyla,Central Finland,Finland,
+2446039,OH6MS,Antero ,,Kauhava,Vaasa,Finland,
2447000,OH3HAM,Radio ,Radio,Kuopio,Kuopio,Finland,Club
2447001,OH7EOW,Jani Kontturi,Jands,Joensuu,cnty,Finland,
2447002,OH7KFA,Veini Airaksinen,OH7KFA,TERVO,Kuopio,Finland,
@@ -16507,7 +16680,7 @@ 2606002,SQ6NCJ,Jacek Diaczek,Jacek,Olawa,Lower Silesian Voivo,Poland,
2606003,SQ6IUB,Kamil Szmajda,Kamil,Opole,Opole Voivodeship,Poland,
2606004,SQ6JNY,Marcin Sroczyk,Marcin,Wroclaw,Wojewudztwo dolnolsk,Poland,
-2606005,SQ6NCJ,JAacek Diaczek,JAacek,Olawa,Lower Silesian Voivo,Poland,
+2606005,SQ6NCJ,Jacek Diaczek,JAacek,Olawa,Lower Silesian Voivo,Poland,
2606006,SQ6NTG,Wojciech Przybyo,Wojciech,Legnica,Lower Silesian Voivo,Poland,
2606007,SQ6KIN,Adam Plotnik,Adam,Olesno,Opole Voivodeship,Poland,
2606008,SQ6JAN,Janusz K.,Janusz,Chroscice,Opole Voivodeship,Poland,
@@ -16621,7 +16794,7 @@ 2609010,SQ9MYX,Piotr Sotysik,Piotr,Lipowa,Silesian Voivodeship,Poland,
2609011,SQ9KCQ,Piotr Karamaski,Piotr,Wadowice,Lesser Poland Voivod,Poland,
2609012,SP9DX,Mariusz Nowak,Mariusz,Katowice,Silesian Voivodeship,Poland,
-2609013,SP9UXT,Wodzimierz-Mark Wilk,Wodzimierz-Mark,Katowice,Silesian Voivodeship,Poland,
+2609013,SP9UXT,Wlodzimierz Wilk,Wodzimierz-Mark,Katowice,Silesian Voivodeship,Poland,
2609014,SQ9DDA,Jakub Ratowski,Jakub,Tarnow,Lesser Poland Voivod,Poland,
2609015,SQ9CNN,Rafal Dunal,Rafal,Bedzin,Silesian Voivodeship,Poland,
2609016,SP9VNR,Jerzy Walczyk,Jerzy,Krynica-Zdroj,Lesser Poland Voivod,Poland,
@@ -16674,7 +16847,7 @@ 2609063,SP9FHL,Henryk Galuba,Henryk,Krakow,Lesser Poland Voivod,Poland,
2609064,SP9JKB,Marek Malecki,Marek,Kozy,olaskie,Poland,
2609065,SQ9JXE,Radoslaw Sklodowski,Radoslaw,Bielsko-Biala,Silesian Voivodeship,Poland,
-2609066,SP9UXT,Marek Wilk,Marek,Katowice,Silesian Voivodeship,Poland,
+2609066,SP9UXT,Wlodzimierz Wilk,Marek,Katowice,Silesian Voivodeship,Poland,
2609067,SQ9SBE,Lukasz Lesinski,Lukasz,Bytom,Silesian Voivodeship,Poland,
2609068,SQ9OJS,Staniseaw Witkowski,Staniseaw,Cheemek,Malopolskie,Poland,
2609069,SP9RG,Jacek Przybyeo,Jacek,Katowice,Silesian Voivodeship,Poland,
@@ -22455,6 +22628,7 @@ 2682059,CT1PR,Manuel Cardoso,Manuel,Coimbra,Coimbra,Portugal,
2682060,CS5GVW,Luis Marques,ARCoimbra,Coimbra,Coimbra,Portugal,
2682061,CR7AOB,Rui Ventura,Rui,Alqueves,Coimbra,Portugal,
+2682063,CS7AFA,Pedro ,,Meus do Campo,Leiria,Portugal,
2683001,CT1HDC,Paulo ,Paulo,Lisboa,Lisboa,Portugal,Portable
2683002,CR7AIC,Fernando ,Fernando,Lisboa,Lisbon,Portugal,
2683003,CS7AFO,Hugo ,Hugo,Amadora,Lisbon,Portugal,
@@ -22617,6 +22791,7 @@ 2683160,CT1EDG,Jose Eduardo O Pinto,Jose,Cascais,Lisboa,Portugal,
2683161,CT1CDN,Valdemar Soares,Valdemar,Massami,cnty,Portugal,
2683162,CT1ETY,Pedro Nogueira,Pedro,Agualva,Lisboa,Portugal,
+2683163,CT2HBZ,Jorge ,,Alverca do Ribatejo,Lisboa,Portugal,
2683164,CT5GJH,Jose Cardoso,Jose,Povoa St Iria,Lisboa,Portugal,
2683165,CT1AWR,Manuel Santos,Manuel,Buraca,Lisboa,Portugal,
2683166,CT1EBZ,Jouo Encarnauo,Jouo,Carnaxide,Lisboa,Portugal,
@@ -22789,6 +22964,7 @@ 2720026,EI8EJB,Brian Whelan,Brian,Dundalk,,Ireland,
2720027,EI9FVB,Declan Horan,Declan,Cork,,Ireland,
2720028,EI2KL,Henry Patrick OLoughlin,Harry,Shannon,,Ireland,
+2720029,EI8EJB,Brian ,Brian,Co. Louth,,Ireland,
2740001,TF3PKN,Pier Kaspersma,Pier,Reykjavik,,Iceland,
2740002,TF8KP,Krzysztof Przybylski,Kristof,Keflavik,,Iceland,
2740003,TF8KP,Krzysztof Przybylski,Kristof,Keflavik,,Iceland,
@@ -22877,6 +23053,7 @@ 2840065,LZ1CLD,Dimitar Ilkov,Dimitar,Sofia,,Bulgaria,
2840066,LZ1SDF,Svetlin Haralampiev,Svetlin,Sofia,,Bulgaria,
2840067,LZ1PLC,Petar Atanasov,Petar,Plovdiv,,Bulgaria,
+2840068,LZ1PUB,Dimiter ,Mitko,Sofia,,Bulgaria,
2860001,TA2AWV,Mirac YILMAZ,Mirac,Istanbul,,Turkey,
2860002,TA5ACC,Cihan Culha,Cihan,Adana,,Turkey,
2860003,TA2UKC,Cem Burak Kocak,Cem Burak,Istanbul,,Turkey,
@@ -22947,6 +23124,7 @@ 3021011,VE1AOE,Donald Roland,Don,Truro,Nova Scotia,Canada,DMR
3021012,VE1LV,W. Harold Rodd,Hal,Truro,Nova Scotia,Canada,DMR
3021013,VE1LV,W. Harold Rodd,Hal,Truro,Nova Scotia,Canada,DMR
+3021014,VE1RM,Gerry Hull,,Halifax,Nova Scotia,Canada,DMR
3022000,VA2XPR,CAN-TRBO .,CAN-TRBO,Montreal,Quebec,Canada,DMR
3022001,VA2TDF,Daniel Trillaud,,Montreal,Quebec,Canada,Portable
3022002,VE2NBZ,Eric Gauvin-dufour,,Trois-Rivires,Quebec,Canada,Portable
@@ -23285,6 +23463,7 @@ 3022341,VA2FR,Daniel Trillaud,Daniel,Outremont,Quebec,Canada,DMR
3022342,VA2GRE,Rejean Garand,Ponpier,Saint-Dominique,Quebec,Canada,DMR
3022343,VE2JPH,Pierre Hamel,,Beloeil,Quebec,Canada,DMR
+3022344,VA2DG,Daniel G Audet Audet,Dan,Saint-Jean-Sur-Riche,Quebec,Canada,DMR
3023001,VE3XF,Steve Jones,,Stayner,Ontario,Canada,Mobile
3023002,VE3KFQ,Doug Hodgson,,Toronto,Ontario,Canada,Mobile
3023003,VE3SAQ,Marshall Mcbride,,Cornwall,Ontario,Canada,Portable
@@ -23772,7 +23951,7 @@ 3023486,VE3RIG,Michael Morneau,Mike,Phelpston,Ontario,Canada,DMR
3023487,VE3GON,Gilbert Nelson,, Smithville,Ontario,Canada,DMR
3023488,VA3AUC, James Hastings,,Spring Bay,Ontario,Canada,DMR
-3023489,VA3DK,Krull David,Dave,Tiny,Ontario,Canada,DMR
+3023489,VA3DK,David Krull,Dave,Tiny,Ontario,Canada,DMR
3023490,VE3GS,Quiroz Alex,Advantech,Woodbridge,Ontario,Canada,DMR
3023491,VE3CMP,Joseph Pomfret,,Belleville,Ontario,Canada,DMR
3023492,VE3YLR,Rob Smith,,Collingwood,Ontario,Canada,DMR
@@ -24003,6 +24182,14 @@ 3023720,VA3AMK,Ahsan K,,Mississauga,Ontario,Canada,DMR
3023721,VE3CWR,Gerard Randall,,Bowmanville,Ontario,Canada,DMR
3023722,VA3DBT,Melvin Monit,Mel,Mississauga,Ontario,Canada,DMR
+3023723,VE3GPB,Paul Edward Briscoe,,Toronto,Ontario,Canada,DMR
+3023724,VE3KU,Paul Edward Briscoe,,Toronto,Ontario,Canada,DMR
+3023725,VA3ZLT,Zoltan Pittner,,Woodbridge,Ontario,Canada,DMR
+3023726,VA3 INV,Christopher Williams,,Mississauga ,Ontario,Canada,DMR
+3023727,VA3DMP,Dan R. Metcalfe,,Harrow,Ontario,Canada,DMR
+3023728,VA3HRO,Michael Berthiaume,,Cornwall,Ontario,Canada,DMR
+3023729,VE3AII,Gerry Hull,Canam Contest Club,Ottawa,Ontario,Canada,DMR
+3023730,VE3QB,Bruce McLellan,Bruce,Fergus,Ontario,Canada,DMR
3024001,VE4RRB,Rob Boux,,Blumenort,Manitoba,Canada,DMR
3024002,VE4RRB,Rob Boux,,Blumenort,Manitoba,Canada,DMR
3024003,VE4AI,Shaun Mcleod,,Winnipeg,Manitoba,Canada,Portable
@@ -24199,6 +24386,7 @@ 3026138,VA6RIP,Derek Robertson,,Camrose,Alberta,Canada,Other
3026139,VE6JES,John E Sauvey,,Medicine Hat,Alberta,Canada,Other
3026140,VE6SQU,Jordan Black,,Calgary,Alberta,Canada,DMR
+3026141,VA6UM,Daniel Krysak,,Calgary,Alberta,Canada,DMR
3027001,VE7NWX,Emcomm N. Wstmnstr,,New Westminster,British Columbia,Canada,Portable #1
3027002,VE7NWX,Emcomm N. Wstmnstr,,New Westminster,British Columbia,Canada,Portable #2
3027003,VE7NWX,Emcomm N. Wstmnstr,,New Westminster,British Columbia,Canada,Portable #3
@@ -24319,6 +24507,10 @@ 3027119,VA7HL,Jean-Luc Franklin,,West Vancouver,British Columbia,Canada,DMR
3027120,VE7FXG,Greg Franklin,,West Vancouver,British Columbia,Canada,DMR
3027121,VE7IRL,Gordon Killally,Gordz1,Mission,British Columbia,Canada,DMR
+3027122,VE7KWP,Kevin W Pausche,,Coquitlam,British Columbia,Canada,DMR
+3027123,VA7HZ ,Ronald N Brown,,Powell River,British Columbia,Canada,DMR
+3027124,VA7PDX,Kenneth Mah,,Burnaby,British Columbia,Canada,DMR
+3027125,VA7TDG,Kenneth Mah,,Burnaby,British Columbia,Canada,DMR
3027198,VE7ZZT,Kevin Wright,,New Westminster,British Columbia,Canada,Portable
3027199,VE7ZZT,Kevin Wright,,New Westminster,British Columbia,Canada,Mobile
3028001,VY1CA,Kelly Quocksister,,Whitehorse,Yukon,Canada,Mobile
@@ -24541,6 +24733,9 @@ 3101180,KB4CQ,Randall Hearn Hearn,,Huntsville,Alabama,United States,DMR
3101181,K4AXE,Kristopher M Garner,,Auburn,Alabama,United States,CCS7
3101182,W4LTP,Bobby J Head,,Rehobeth,Alabama,United States,DMR
+3101183,N4GHP,Lloyd A Palmer,,Alabaster,Alabama,United States,DMR
+3101184,W4XE,Joseph R Hogan,Ralph,Huntsville,Alabama,United States,DMR
+3101185,W4XE,Joseph R Hogan,Ralph,Huntsville,Alabama,United States,DMR
3102001,KL2AV,Brian Corty,,Delta Junction ,Alaska,United States,Portable
3102002,KL7PS,Paul Spatzek,,Ancorage,Alaska,United States,Portable
3102003,KL7RW,Ralph Wilkerson,Ralph,Anchorage,Alaska,United States,Portable
@@ -24556,6 +24751,7 @@ 3102013,KL2KM,Donald M Fell,,Homer,Alaska,United States,DMR
3102014,KL4GU,Martin S Kitson,,Anchor Point,Alaska,United States,DMR
3102015,KH6EB,Eric A Brundage,,Ontereo,Alaska,United States,DMR
+3102016,KL2T,John T Reich,Toby,Homer,Alaska,United States,DMR
3104001,WB9EXL,Ron Peters,,Scottsdale,Arizona,United States,Portable
3104002,N7MK,Mark Krotz,,Mesa,Arizona,United States,Portable #1
3104003,N7TWW,Chris Radicke,,Scottsdale,Arizona,United States,Portable #1
@@ -25052,6 +25248,9 @@ 3104498,KI7HZG,Joseph Jorgensen,Joe,Gilbert,Arizona,United States,DMR
3104499,W7DLT,Donna L Traphagan,,Mesa,Arizona,United States,DMR
3104500,N7AS,Grant C Armstrong,,Prescott Valley,Arizona,United States,Other
+3104501,K1DKL,David Layman Layman,,Chandler,Arizona,United States,DMR
+3104502,KG7JQM,Paul Schminke Schminke,Dj Pcraze,Phoenix,Arizona,United States,DMR
+3104503,N7YZL,Robert Grimmett,Rob,Mesa,Arizona,United States,DMR
3105001,N5QM,Robert Garcia,,Little Rock,Arkansas,United States,Portable
3105002,KB6FO,George Roher,,Edgemont,Arkansas,United States,Portable
3105003,W5KEC,Kenneth Carpenter,,Edgemont,Arkansas,United States,Portable
@@ -25258,6 +25457,13 @@ 3105205,KG5ANI,Charles E Bushong,,Fayetteville,Arkansas,United States,DMR
3105206,KG5QEW,Jo Sanders,Joann,Paron,Arkansas,United States,DMR
3105207,KG5QEX,Rheta Spurlin,Rheta,Paron,Arkansas,United States,DMR
+3105208,KJ5OO,Rea F Graves,,Little Rock,Arkansas,United States,DMR
+3105209,KK5AA,Fredrick H Hunt,,Charleston,Arkansas,United States,DMR
+3105210,KA5WWW,Frederick W Hunwick,Fred,Pottsville,Arkansas,United States,DMR
+3105211,KG5FAK,Kevin B Mitchell,,Conway,Arkansas,United States,DMR
+3105212,KC5OOW,Chip Doss Doss,,Mountain View,Arkansas,United States,DMR
+3105213,KG5QHZ,William Mccune,,Dardanelle ,Arkansas,United States,DMR
+3105214,WB5JJJ,George H. Cotton,,Russellville,Arkansas,United States,DMR
3106001,K6EH,Paul Metzger,,Downey,California,United States,Portable #1
3106002,K6EH,Paul Metzger,,Downey,California,United States,Mobile
3106003,K6EH,Paul Metzger,,Downey,California,United States,Base
@@ -27222,6 +27428,22 @@ 3107973,KJ6LXX,Dan E Labani,,Morgan Hill,California,United States,DMR
3107974,KB6QCM,Charles Kreling,,Walnut Creek,California,United States,DMR
3107975,KT6AKU,Norman Mc Anulty,Takumori,Sunnyvale,California,United States,DMR
+3107976,KI6UIB,Shane Blaser Blaser,,Camarillo,California,United States,DMR
+3107977,K8GR,Glenn L Ricketson,,Porterville,California,United States,DMR
+3107978,W6ZAN,Zachary A North,Zack,Saratoga,California,United States,DMR
+3107979,KC6ZHR,Patricia E Byington,Pat,Santa Ana,California,United States,DMR
+3107981,W6CRT,David J Paulino,,Temecula,California,United States,DMR
+3107982,KN6TED,Theodore P Herman,Ted,Smartsville,California,United States,DMR
+3107983,KJ6CE,James O Wickham,Jim,Clovis,California,United States,DMR
+3107984,W6JWZ,Benjamin L Herrera,,Camarillo,California,United States,DMR
+3107985,KO0RCA,Dennis M Heckman,,Sunnyvale,California,United States,DMR
+3107986,KJ6YTA,Joe Nichols Nichols,,Milpitas,California,United States,DMR
+3107987,K9BNY,Raymond L Solid,,San Jose,California,United States,DMR
+3107988,W6RTF,Robert T Foronda,,Salinas,California,United States,DMR
+3107989,W6NMW,Donald E Cooper,Don,Paradise,California,United States,DMR
+3107990,KK6M,David R Godden,,Arcadia,California,United States,DMR
+3107991,W6RTF,Robert T Foronda,,Salinas,California,United States,DMR
+3107992,WU5SHU,Shu Wu,Andy,Oakland,California,United States,DMR
3108001,NR2Y,Marinus Jacobs,,Colorado Springs,Colorado,United States,Portable
3108002,WA2YZT,Paul Deeth,,Golden,Colorado,United States,Mobile
3108003,K0JSC,Jeff Carrier,,Canon City,Colorado,United States,Portable #1
@@ -28081,6 +28303,8 @@ 3108860,KE0KHZ,Anderson Flores,,Aurora,Colorado,United States,DMR
3108861,KD0ZVG,Jorge Basulto,,Parker,Colorado,United States,DMR
3108862,N0THU,Steve E Fischer Fischer,,Windsor,Colorado,United States,DMR
+3108863,W0AOK,Mark S Balsick,,Pueblo,Colorado,United States,DMR
+3108864,KD5THD,Paul W Brown,,Parker,Colorado,United States,DMR
3109001,WA2WCB,Michael D. Arsenie,,Roxbury,Connecticut,United States,Portable
3109002,N1MCC,Kit Kocielo,,Old Lyme,Connecticut,United States,Portable
3109003,N1MCC,Kit Kocielo,,Old Lyme,Connecticut,United States,Mobile
@@ -28699,6 +28923,15 @@ 3109617,W1JEY,Roderick K Nichols,Rick,Hampton,Connecticut,United States,DMR
3109618,KC1EBN,Evan Winslow,,Southington ,Connecticut,United States,DMR
3109619,N1UIR,Steven G Raleigh,Steve,Plantsville,Connecticut,United States,DMR
+3109620,K1VC,Vincenzo Calandra,Vin,Southington,Connecticut,United States,DMR
+3109621,KC1DYT,Jon B Gatrell,,Redding,Connecticut,United States,DMR
+3109622,KB1UQC,Michael P Lefebvre,Mike,Morris,Connecticut,United States,DMR
+3109623,WB1DXD,James M Hackett,Jim,Southington,Connecticut,United States,DMR
+3109624,W1POP,Fred J Liedke,,Northford,Connecticut,United States,DMR
+3109625,KB1VI,Ernest L Johnson,Buzz,Branford,Connecticut,United States,DMR
+3109626,N1TVL,James R Gomme,,East Haven,Connecticut,United States,DMR
+3109627,W1POP,Fred J Liedke,,Northford,Connecticut,United States,DMR
+3109628,N1YLN,Edward O'Lena O'Lena,Ed,Waterbury,Connecticut,United States,DMR
3110001,N2VRQ,David Larson,,Bear,Delaware,United States,DMR
3110002,KB3WQH,Robert Dobie,,Newark,Delaware,United States,Portable
3110003,KC3BNZ,Street, Earl,,Claymont,Delaware,United States,Portable
@@ -30161,6 +30394,14 @@ 3113437,K4DO,Marion C Wall,,Kingsland,Georgia,United States,DMR
3113438,KA3JIJ,Ron Olexa,,Gainesville,Georgia,United States,DMR
3113439,KJ4HWX,Reinhold Wuerzner,,Monroe,Georgia,United States,DMR
+3113440,K4DO,Marion C Wall,,Kingsland,Georgia,United States,Other
+3113441,W8JVF,James V Freetage,,Fort Benning,Georgia,United States,DMR
+3113442,WB4ZWK,Rodney W Garner,,Dahlonega,Georgia,United States,DMR
+3113443,W1DOC,Brian J Dowd,Doc,Johns Creek,Georgia,United States,DMR
+3113444,KG4SZX,Richard J Terry,,Valdosta,Georgia,United States,DMR
+3113445,W4JWG,James W Gordon,Jim,Sautee Nacoochee,Georgia,United States,DMR
+3113446,KB4RFE,Louis P Towles,,Atlanta,Georgia,United States,DMR
+3113447,KD4Z,Warren Merkel,,Canton,Georgia,United States,DMR
3115001,NH7YS,Tad Miura,,Lihue,Hawaii,United States,Mobile
3115002,KH6DQ,Jack Tsujimura,,Honolulu,Hawaii,United States,Portable
3115003,AH6PR,Mark Pascal,,Kailua,Hawaii,United States,Portable
@@ -30336,6 +30577,8 @@ 3115174,AH6QR,Maryann D Barnett,,Honolulu,Hawaii,United States,DMR
3115175,WH6YG,Joseph D Kobatake,,Napili,Hawaii,United States,DMR
3115176,AH6PR,Mark L Pascal,,Kailua,Hawaii,United States,DMR
+3115177,AH6VE,Julius Vea,,Honolulu,Hawaii,United States,DMR
+3115178,NH6WT,Edward P Talaro,Ed,Hilo,Hawaii,United States,DMR
3116001,WX7USA,Paul Roberts,,Eagle,Idaho,United States,Portable
3116002,K6LOR,A.j. Grantham,,Middleton,Idaho,United States,Mobile
3116003,KA7WZM,Charles Banas,,Twin Falls,Idaho,United States,Portable
@@ -30388,6 +30631,7 @@ 3116050,N7PGI,Bryant R Nielson,,Idaho Falls,Idaho,United States,CCS7
3116051,KE7SYM,Derek Nielson,,Idaho Falls,Idaho,United States,CCS7
3116052,K7OZD,Jeffrey K Moeser,,Meridian,Idaho,United States,DMR
+3116053,KC8WF,Simon G Ruddle,,Boise,Idaho,United States,DMR
3117001,KB9LIQ,Ben Manley,,Moweaqua,Illinois,United States,Portable
3117002,KB9LIQ,Ben Manley,,Moweaqua,Illinois,United States,V-Portable
3117003,KB9LIQ,Ben Manley,,Moweaqua,Illinois,United States,V/U Mobiles
@@ -31159,6 +31403,13 @@ 3117770,KC9BOZ,Robert B Lewis,,Pocahontas,Illinois,United States,DMR
3117771,AA9RH,Michael F Reisner,,Hp,Illinois,United States,DMR
3117772,AC9NV,Martin D Mills,,Buffalo Grove,Illinois,United States,DMR
+3117775,AB9UU,Lowell B Feinstein,,Chicago,Illinois,United States,DMR
+3117776,N9KFW,Richard J Mersinger,,Edwardsville,Illinois,United States,DMR
+3117777,N9SW,Gene W Sochor,Gene,Wayne,Illinois,United States,DMR
+3117778,KD9BNQ,Todd Johnson,,Springfield,Illinois,United States,DMR
+3117779,KB9UDE,John P Hippard,,Tower Hill,Illinois,United States,DMR
+3117780,N9HNO,Xavier N Traina,,Rivergrove,Illinois,United States,DMR
+3117781,W9DDH,Daniel D Heidenreich,,Woodstock,Illinois,United States,DMR
3118001,KK9EJ,Ej Caylor,,Noblesville,Indiana,United States,Portable
3118002,KG9NN,Robert Long,,Auburn,Indiana,United States,Portable
3118003,KC8PTE,David Wild,,Bloomington,Indiana,United States,Portable
@@ -31961,6 +32212,22 @@ 3118801,WD8ARZ,William F Stamps,Bill,South Bend,Indiana,United States,DMR
3118802,KF9ZA,Steven M Kremer,,Carmel,Indiana,United States,DMR
3118803,KA9YKN,William L Spann,,Mooresville,Indiana,United States,DMR
+3118804,KC9EZP,Frederick A Gengnagel,Fred,Ford Wayne,Indiana,United States,DMR
+3118805,N9OZ,Mark R Westermeier,,Carmel,Indiana,United States,DMR
+3118806,N9PKK,Robert C Vermilion,,Fairmount,Indiana,United States,DMR
+3118807,KC9CTS,Tammi R Murray,Tammi,Lagrange,Indiana,United States,DMR
+3118808,N9PKL,James H Hahn,,Jonesboro,Indiana,United States,DMR
+3118809,W9MDO,Charles W Kelly Kelly,Chuck,Noblesville,Indiana,United States,DMR
+3118810,WB8FUL,Dennis L Kimmey,Dennis,Fort Wayne,Indiana,United States,DMR
+3118811,N9EYG,James D Pickett,,Straughn,Indiana,United States,CCS7
+3118812,N9EYG,James D Pickett,,Straughn,Indiana,United States,DMR
+3118813,WD9EZB,Robert Wiberg Wiberg,,Merrillville,Indiana,United States,DMR
+3118815,N9JIE,Nicholas R Gulling,Nick,Greenfield,Indiana,United States,DMR
+3118816,KG5FGK,Brandon Swindell,Brando,Claypool,Indiana,United States,DMR
+3118817,KD9GSM,Matthew Allman,,Columbus,Indiana,United States,DMR
+3118818,KD9BPC,Eric Bond,,Bloomington,Indiana,United States,Other
+3118819,W9FMS,Bryon M Blackburn,,Indianapolis,Indiana,United States,DMR
+3118820,KD9GDJ,Tyler J Campbell,,Fort Wayne,Indiana,United States,DMR
3119002,WD0FIA,Keith Carpenter,Keith,Bridgewater,Iowa,United States,
3119003,W0DT,Donald Talaska,,Cedar Falls,Iowa,United States,Portable
3119004,KD0WY,Roger Gorzney,,CLINTON,Iowa,United States,Mobile
@@ -31996,6 +32263,8 @@ 3119034,N0ZJT,Eric A Grams,,Oelwein,Iowa,United States,DMR
3119035,KC0VNY,Thomas Eaton,,St. Marys,Iowa,United States,DMR
3119036,KZ0MBI,Michael F Chapman,,Reinbeck,Iowa,United States,DMR
+3119037,KD0GIV,Peter J Shaw,,Cedar Rapids,Iowa,United States,DMR
+3119038,KD0VYD,David Skou Skou,,Lemars,Iowa,United States,DMR
3119100,WB0VHB,Randy Nelson,,Mt. Union,Iowa,United States,Mobile #1
3119101,K0TSK,Timothy Kilbride,,Victor,Iowa,United States,Portable
3119102,K7PEM,Paul Mccoy,,Anamosa,Iowa,United States,Portable
@@ -32214,6 +32483,7 @@ 3120176,N0SWP,Steve Polley,,Osawatomie,Kansas,United States,Portable
3120177,KA1EBQ,Josh Othniel,,Independence,Kansas,United States,Portable
3120178,KK4MHI,David A Mclemore,,Overland Park,Kansas,United States,Other
+3120179,KC1TOW,Danny D Balzer,,Kansas City,Kansas,United States,DMR
3120180,N6UOP,John Harris,,Baldwin City,Kansas,United States,Portable
3120181,K0HCV,Harold Van Daveer,,Olathe,Kansas,United States,Portable
3120182,WA0CBW,Bill Brinker,,Shawnee,Kansas,United States,Portable
@@ -32450,6 +32720,7 @@ 3121224,KK4CZ,Brock A Persons,,Louisville45,Kentucky,United States,DMR
3121225,KB4QNR,Charles R Rolph,,Lexington,Kentucky,United States,DMR
3121226,KD4UKN,Danny J Logsdon,,Louisville,Kentucky,United States,DMR
+3121227,KM4YXF,Patrick Whittington,,Strunk,Kentucky,United States,DMR
3122001,KD5SSQ,Anthony Tango,,Covington,Louisiana,United States,Portable
3122002,W5ELM,Earl Morrow,,Oberlin,Louisiana,United States,Portable
3122003,KB5UDF,Jean Boudreaux,,Lafayette,Louisiana,United States,Portable
@@ -32490,6 +32761,9 @@ 3122039,AF5XP,Christopher W Fuselier,,Sulphur,Louisiana,United States,CCS7
3122040,KG5OGK,William A Hoover,,Lake Charles,Louisiana,United States,CCS7
3122041,KD5ZZK,Andrew Z Norman,,Baton Rouge,Louisiana,United States,DMR
+3122042,W5CBF,Hector L Martinez Sis,,Lake Charles,Louisiana,United States,DMR
+3122043,W5RAF,Jarred P Barger,,Sulphur,Louisiana,United States,DMR
+3122044,KF5LOQ,Jackson R Wilson,Jack,Lake Charle,Louisiana,United States,DMR
3123001,N1XBM,Robert Newberry,,Raymond,Maine,United States,Portable
3123002,WJ1D,James Delancy,,Saint Francis,Maine,United States,Portable
3123003,WJ1D,James Delancy,,Saint Francis,Maine,United States,Mobile
@@ -32778,6 +33052,8 @@ 3123287,W1LUC,Luc Perin,,Newburgh,Maine,United States,DMR
3123288,N1TZR,Donald G Trask,Don,Augusta,Maine,United States,DMR
3123289,KA1VSC,Matthew E Webster,Matt,Biddeford,Maine,United States,DMR
+3123290,KC1DEB,Marc Auger,,Lyman,Maine,United States,DMR
+3123291,KA1KWH,Mark D Smith,,Bucksport,Maine,United States,DMR
3124001,N3LHD,Tom Provenza,,Davidsonville,Maryland,United States,Portable & Mobile
3124002,N3LHD,Tom Provenza,,Davidsonville,Maryland,United States,Control Station
3124003,N3LHD,Tom Provenza,,Davidsonville,Maryland,United States,Demo
@@ -33044,6 +33320,10 @@ 3124264,KC3GCB,Marvin D Walker,,Altimore,Maryland,United States,DMR
3124265,KB2GUN,William H Gunn,,Baltimore,Maryland,United States,DMR
3124266,W1RHW,Robert H Wilson,Harrison,Gaithersburg,Maryland,United States,DMR
+3124267,KB3QWB,John W Rudasill,,Rosedale,Maryland,United States,DMR
+3124268,W3SJM,Scott J Marquette,,Monrovia,Maryland,United States,DMR
+3124269,KB3CMO,Gerald V Webb,,Annapolis,Maryland,United States,DMR
+3124270,KO3F,Charles G Rogers,Gary,Pasadena,Maryland,United States,DMR
3125001,W1NAU,Tim Nau,,Boston,Massachusetts,United States,Portable
3125002,KT1U,Vivian Podsiadlo,,Mendon,Massachusetts,United States,Portable
3125003,AE1C,Jim Podsiadlo,,Mendon,Massachusetts,United States,Mobile
@@ -33476,6 +33756,12 @@ 3125431,W1RBO,Glenn R Skinner,,Stow,Massachusetts,United States,DMR
3125432,KB1ZUV,Jillian R Bellville,,Fiskdale,Massachusetts,United States,DMR
3125433,KC1DDF,Derek W Ashbridge,,Carver,Massachusetts,United States,DMR
+3125434,W1VI,Michael J Wheeler,,Haverhill,Massachusetts,United States,DMR
+3125435,KB1NS,Jose Nova,,Dorchester,Massachusetts,United States,DMR
+3125436,KC1ATW,Dong S Lee,,Andover,Massachusetts,United States,DMR
+3125437,AB1MI,Brian P Daniels,,Dracut,Massachusetts,United States,DMR
+3125438,KB1SFV,Nicholas Kathmann,,Bolton,Massachusetts,United States,DMR
+3125439,N1PAZ,Timothy Huntington,Tim,Boston,Massachusetts,United States,DMR
3126001,N8CN,Joe Erlewein,,Traverse City,Michigan,United States,Portable
3126002,KD8EYF,David Kierzkowski,,Detroit,Michigan,United States,Portable#1
3126003,W8FSM,Fred Moses,,Fenton,Michigan,United States,Portable #1
@@ -34450,6 +34736,23 @@ 3126973,KE8CRP,Lisa M Hoppe,,Dorr,Michigan,United States,DMR
3126975,KC8RGO,Vance B Nelson Nelson,,Houghton,Michigan,United States,DMR
3126976,KB8QAS,James A Soles,,Hudsnville,Michigan,United States,DMR
+3126977,KB5OO,Robin R Laird,Rick,Troy,Michigan,United States,DMR
+3126978,K8JBD,James B Dunbar,,Superior Township,Michigan,United States,DMR
+3126979,KD8VSQ,Jeremy A Downard,Jeremyad,Tecumseh,Michigan,United States,DMR
+3126980,K8ILS,Kara L Nabkey,,Ada,Michigan,United States,DMR
+3126981,KB8M,Douglas G Birky,,White Pigeon ,Michigan,United States,DMR
+3126982,WD8ABZ,Hermon R Kibler,Herm,Temperance,Michigan,United States,DMR
+3126983,AB8JR,James A Richards,Jim,West Bloomfield,Michigan,United States,Club Fleet
+3126984,KE8FKZ,Cade Bowman,,Middleville,Michigan,United States,DMR
+3126985,KE8FKY,Matthew Kotila,Matt,Laurium,Michigan,United States,DMR
+3126986,N8KLI,Alan Mellon,Al,Springfield,Michigan,United States,DMR
+3126987,KD8UXW,Ken Sundquist Sundquist,,Sterling Heights,Michigan,United States,DMR
+3126988,KD8VHE,Daniel K Powers,,Monroe,Michigan,United States,DMR
+3126989,KD8UXW,Ken Sundquist Sundquist,,Sterling Heights,Michigan,United States,DMR
+3126990,KD8UXV,Joel Sundquist Sundquist,Intelliadmin,Rochester Hills,Michigan,United States,DMR
+3126991,KV8X,Allen J Pepping,,North Muskegon,Michigan,United States,DMR
+3126992,KD8NPZ,Peter D Anderson,Pete,Warren,Michigan,United States,DMR
+3126993,WB8WNF,Walter M Kline,Walt,Midland,Michigan,United States,DMR
3127001,N0NMZ,Shep Shepardson,,Roseville,Minnesota,United States,Mobile
3127002,NH7CY,Jason Ballesteros,,Saint Paul,Minnesota,United States,Portable
3127003,NH7CY,Jason Ballesteros,,Saint Paul,Minnesota,United States,Demo
@@ -34738,6 +35041,14 @@ 3127289,K0VFR,John E Lafnd,,St Cloud,Minnesota,United States,DMR
3127290,W0REW,Roy E Wood Wood,,Big Lake,Minnesota,United States,DMR
3127291,K6RCO,Robert Oden,Bob,Brainerd,Minnesota,United States,DMR
+3127292,N0QHM,James P Luzar,Jim,Bloomington,Minnesota,United States,DMR
+3127293,KC0SMO,Paul H Ritter,,St Stephen,Minnesota,United States,DMR
+3127294,K0VSC,Tony Abfalter,,Sartell,Minnesota,United States,DMR
+3127295,KC0TAK,Chris Bopp Bopp,,Plymouth,Minnesota,United States,DMR
+3127296,N0OWM,Daniel A Estey,,Minneapolis,Minnesota,United States,DMR
+3127297,KD0WFN,Thomas G Bailey,,Cottage Grove,Minnesota,United States,DMR
+3127298,WB0TUX,Paul J Lachance,,Champlin,Minnesota,United States,DMR
+3127299,N0OWM,Daniel Estey,,Minneapolis,Minnesota,United States,DMR
3128001,KF5MWE,Gary White,,Quitman,Mississippi,United States,Portable
3128002,K5WSM,Lemuel Smith,,Fulton,Mississippi,United States,
3128003,KD4VVZ,General Dailey,,Lucedale,Mississippi,United States,Portable
@@ -34786,6 +35097,7 @@ 3128046,KB5DMT,Charles L Holliday,Lee,Senatobia,Mississippi,United States,DMR
3128047,AD5HM,Andrew H Fountain,Andrew,Aberdeen,Mississippi,United States,DMR
3128048,KG5OZJ,Elizabeth C Fountain,Liz,Aberdeen,Mississippi,United States,DMR
+3128049,N5EOB,Ronnie Whitt Whitt,,Moss Point,Mississippi,United States,DMR
3129001,W0PM,John Rayfield Jr,,Springfield,Missouri,United States,Portable
3129002,W0PM,John Rayfield Jr,,Springfield,Missouri,United States,Mobile
3129003,N0EUG,John Rayfield Sr,,Springfield,Missouri,United States,Portable
@@ -34823,7 +35135,7 @@ 3129035,KD0OHX,Daniel Eighmy,,Branson,Missouri,United States,Portable
3129036,KA5YTH,Theron Becker,,Bolivar,Missouri,United States,Mobile
3129037,KD0OHX,Daniel Eighmy,,Branson,Missouri,United States,Mobile
-3129038,N0IAI,Jerome Duthler,,Harrisonville,Missouri,United States,Portable
+3129038,N0IAI,Jerome Duthler,Jay,Harrisonville,Missouri,United States,DMR
3129039,KC0OKW,Scott Brueschke,,Salem,Missouri,United States,Other
3129040,K0MRR,Michael Reed,,Lees Summit,Missouri,United States,Mobile
3129041,KD0RWX,Melisa Painter,,Halfway,Missouri,United States,Club Fleet
@@ -34988,6 +35300,14 @@ 3129200,KD0PBZ,Andrew Brady,,Salem,Missouri,United States,DMR
3129201,KE0KHQ,Kenneth N Oelger,,St. Charles,Missouri,United States,CCS7
3129202,KA0TER,Daniel L Busse,Dan,Saint Louis,Missouri,United States,DMR
+3129203,W4NRA,Joseph D Stamper,,Archie,Missouri,United States,DMR
+3129204,AD0MO,John D Regan,,Ofallon,Missouri,United States,DMR
+3129205,W0CLR,Jerry G Gorrell,,Belton,Missouri,United States,DMR
+3129206,KE0FGZ,Brad Stowe,,Goodson,Missouri,United States,DMR
+3129207,KD0PGX,Christopher C Schieszer,Chris,Lees Summit,Missouri,United States,DMR
+3129208,W0DR,David W Roberts,Dave,Clinton,Missouri,United States,DMR
+3129209,KE0FHX,Marsha B Stowe,,Goodson,Missouri,United States,DMR
+3129210,KE0GGV,Aaron E Byous,A A Ron,Belton,Missouri,United States,DMR
3130001,K7MT,Bill Erhardt,Bill,Helena,Montana,United States,DMR
3130002,KG6MQE,Jim Robinson,,Hamilton,Montana,United States,Portable
3130003,AE7OD,Jeff Cherry,,HAMILTON,Montana,United States,Portable
@@ -35573,6 +35893,7 @@ 3132415,W5SAT,Brad Schumacher,,Las Vegas,Nevada,United States,DMR
3132416,KI6JBX,Mark J Morgan,,Reno,Nevada,United States,DMR
3132417,KI6VEJ,Francisco G Silva,,Las Vegas,Nevada,United States,DMR
+3132418,N0WVU,Thomas P Denny,Thomas,Pahrump,Nevada,United States,DMR
3133001,NE1B,Bill Barber,,Hudson,New Hampshire,United States,Portable
3133002,NE1B,Bill Barber,,Hudson,New Hampshire,United States,Mobile
3133003,WA2IYO,Pat Barber,,Hudson ,New Hampshire,United States,
@@ -35829,7 +36150,7 @@ 3133254,KN1W,Luis Aguilar,,Londonderry,New Hampshire,United States,DMR
3133255,N1VAU,Clayton Ferry,,Wolfeboro Falls,New Hampshire,United States,CCS7
3133256,KC1FZS,Craig I Cheney,,Stewartstown,New Hampshire,United States,DMR
-3133257,WX1N,Robert Noll,,Unity,New Hampshire,United States,DMR
+3133257,WX1N,Rob Noll,,Unity,New Hampshire,United States,DMR
3133258,KC1EDK,Robert E Ward,,Bethlehem,New Hampshire,United States,DMR
3133259,W1JCN,John C Noll,,Charlestown,New Hampshire,United States,DMR
3133260,KA1QEK,Peter W Bretschneider,,Brookline,New Hampshire,United States,DMR
@@ -35856,6 +36177,7 @@ 3133282,N1EZ,Steven R Berry,Steve,Londonderry,New Hampshire,United States,DMR
3133283,KC1EJK,Scott A Talbot,,Westmoreland,New Hampshire,United States,DMR
3133284,N2LAW,Adam L Jacobs,,Brookline,New Hampshire,United States,DMR
+3133286,WA1ZCN,David B Colter,Dave,Sunapee,New Hampshire,United States,DMR
3134001,K2XTS,Alex Chadis-ny Sysop,,Hoboken,New Jersey,United States,Portable
3134002,K2XTS,Alex Chadis-ny Sysop,,Hoboken,New Jersey,United States,Mobile
3134003,KC2WNG,Israel Goldstein,,East Brunswick,New Jersey,United States,Portable
@@ -36474,6 +36796,10 @@ 3134616,N2TYB,Daniel Conti Conti,,Ridgefield,New Jersey,United States,DMR
3134617,KD2KYZ,Zalmy Rosenberg,,Lakewood,New Jersey,United States,DMR
3134618,W2SJW,Scott J Wilson,,Washington ,New Jersey,United States,DMR
+3134619,KM4UBR,Judson R Simon,,Point Pleasant,New Jersey,United States,DMR
+3134620,K2MDW,Michael D White,,Lakewood,New Jersey,United States,DMR
+3134621,KD2FQD,John T Derby Derby,,Sparta,New Jersey,United States,DMR
+3134623,K2CDP,Carlos D Paredes,,Newark,New Jersey,United States,DMR
3135001,N5BG,Larry Griggs,,Virden,New Mexico,United States,Mobile
3135002,N5BG,Larry Griggs,,Virden,New Mexico,United States,Mobile
3135003,N5UBJ,William Van Huss,,Farmington,New Mexico,United States,Mobile
@@ -37393,7 +37719,7 @@ 3136850,N2RCC,Adam S Karp,,Baiting Hollow,New York,United States,DMR
3136851,W2PET,Ryan R Kramer,,Porter Corners,New York,United States,DMR
3136852,KD2ACL,Steven J Unger,,Hawthorne,New York,United States,DMR
-3136853,KR2Z,Richard L Seeger,,Lake George,New York,United States,DMR
+3136853,AA2CQ,Richard L Seeger,,Lake George,New York,United States,DMR
3136854,K2LSB,Lorraine S Burch,Lori,Niagara Falls,New York,United States,DMR
3136855,N2WNU,Jamieson D Provan,,Brooklyn,New York,United States,DMR
3136856,N2ZTC,Jami K Olden,,Warrensburg,New York,United States,DMR
@@ -39441,6 +39767,26 @@ 3139905,KA8ZNY,Thomas O Taft,,Columbus,Ohio,United States,CCS7
3139906,K8TAT,Timothy Trombley Trombley,,Westerville,Ohio,United States,DMR
3139907,KC8DDQ,Paul T Williams,,Columbus,Ohio,United States,DMR
+3139908,KE8CIK,Scott D England,,Heath,Ohio,United States,DMR
+3139909,N8BIL,William L Bays Bays,Bill,Austintown,Ohio,United States,DMR
+3139910,WD8IIJ,Monte Pettengill,,Toronto,Ohio,United States,DMR
+3139911,WD8IIJ,Monte Pettengill,,Toronto,Ohio,United States,DMR
+3139912,KE8EBJ,Brian K Thompson,,Toledo,Ohio,United States,DMR
+3139913,W8DAA,Dale A Alkire,Reb,Lima,Ohio,United States,DMR
+3139914,NI8C,Aaron Vaughn,Aaron,Dayton,Ohio,United States,DMR
+3139915,W8DAA,Dale A Alkire,Reb,Lima,Ohio,United States,DMR
+3139916,KC8DEL,Matthew B Hahn,,Toledo,Ohio,United States,DMR
+3139917,W8VVL,Qcen Queen City Emergency Net,,Cincinnati,Ohio,United States,DMR
+3139919,KE8ACH,Zachary A Gilchrist,,Lakewood,Ohio,United States,DMR
+3139920,K8WBL,Timothy M Kass,,Cincinnati,Ohio,United States,DMR
+3139921,W8KJ,Dewey K Jones,Kevin,Hamilton,Ohio,United States,DMR
+3139922,KE8ANU,Edmund B Liddle,Ed,Marysville,Ohio,United States,DMR
+3139923,KB8JTH,Bryon R Palitto,,Wadsworth,Ohio,United States,DMR
+3139924,KD8DLY,Jonna R Wigal,Jonna,Marietta,Ohio,United States,DMR
+3139925,KD8VIG,Ryan S Bowman,,Beavercreek,Ohio,United States,DMR
+3139926,N8CXN,John H Mercer,,Columbus,Ohio,United States,DMR
+3139927,KD8VPT,Stephen R Bowman,Steve,Beavercreek,Ohio,United States,DMR
+3139928,KD8VWH,Heather R Bowman,,Beavercreek,Ohio,United States,DMR
3140001,AE5DN,Mark Matalik,,Oklahoma City,Oklahoma,United States,Portable
3140002,AE5DN,Mark Matalik,,Oklahoma City,Oklahoma,United States,Mobile
3140003,KE5BDG,Leah Matalik,,Oklahoma City,Oklahoma,United States,Portable
@@ -39888,6 +40234,11 @@ 3140445,KG5QEY,Ryan Dawkins,,Yukon,Oklahoma,United States,DMR
3140446,AG5HT,Bradley Wallet,Brad,Norman,Oklahoma,United States,DMR
3140448,WB5IEK,Donald W Bruner,Don,Mcloud,Oklahoma,United States,DMR
+3140449,KA 5 STN,Stanley E Callahan,,Sand Springs,Oklahoma,United States,DMR
+3140450,KB5STV,Roy E Throne,,Ada,Oklahoma,United States,DMR
+3140451,K5GSM,Bryan N De Hart,,Carnegie,Oklahoma,United States,DMR
+3140452,WX5LEO,David J Miller,,Tuttle,Oklahoma,United States,DMR
+3140453,KG5EWK,James Erb Erb,Jim,Tulsa,Oklahoma,United States,DMR
3141001,N7MAQ,Jim Hanrahan,,Woodbum,Oregon,United States,Portable
3141002,N7MAQ,Jim Hanrahan,,Woodbum,Oregon,United States,Mobile
3141003,KC7HBU,David Rogers,,Portland,Oregon,United States,Portable
@@ -40005,6 +40356,8 @@ 3141115,KD7THQ,Lee White,,Lebanon,Oregon,United States,DMR
3141116,KA7RMY,Marc A Taylor,,Sherwood,Oregon,United States,DMR
3141117,KG7ULH,Robert N Farquhar,,Portland,Oregon,United States,DMR
+3141118,WA7WIW,Robert L Carson,Bob,Warrenton,Oregon,United States,Other
+3141119,KI7CTW,Jared P Knapp,,Portland,Oregon,United States,DMR
3142001,N3ST,Bryan Dorbert,,Littlestown,Pennsylvania,United States,Portable
3142002,K4MTP,Mike Priebe,,Effort,Pennsylvania,United States,Mobile
3142003,N3OBL,Frank Smoyer,,Pittsburgh,Pennsylvania,United States,Portable
@@ -40436,6 +40789,11 @@ 3142430,N3KCR,David Swaney,David P.,Mifflinburg,Pennsylvania,United States,DMR
3142431,N3NCG,Tim H Longan,,Milton,Pennsylvania,United States,DMR
3142433,KC3BMZ,Joshua Alberts,Josh,Pittsburgh,Pennsylvania,United States,DMR
+3142434,KE3JH,James K Slater,,Dickson City,Pennsylvania,United States,DMR
+3142435,N2QDZ,York T Yuen,,Etters,Pennsylvania,United States,DMR
+3142436,KC3CVK,John M Kuchma,,Pittsburgh,Pennsylvania,United States,CCS7
+3142437,N3VKK,Remy J Juskowiak,,Allentown,Pennsylvania,United States,DMR
+3142438,N3GYW,A Richard Burr,Rich,Meadville,Pennsylvania,United States,DMR
3144001,KB1ISZ,William Carlson,,Smithfield,Rhode Island,United States,Hytera Portable
3144002,KB1ISZ,William Carlson,,Smithfield,Rhode Island,United States,Hytera Loaner
3144003,KC2FMI,Joseph Miklovic,,North Kingstown,Rhode Island,United States,Portable
@@ -40471,6 +40829,7 @@ 3144033,K1YBE,Paul H Fredette,Flyer,Portsmouth,Rhode Island,United States,DMR
3144034,N1CKT,Charles E Kesson,Chuck,Newport,Rhode Island,United States,DMR
3144035,N1MGC,Matthew Grace,Matt,Coventry,Rhode Island,United States,DMR
+3144036,KC1GOW,Patrick A Carney,,Middletow,Rhode Island,United States,DMR
3145001,KN4SWB,Matthew Littleton,,Easley,South Carolina,United States,Portable #1
3145002,KN4SWB,Matthew Littleton,,Easley,South Carolina,United States,Portable #2
3145003,N4LRD,Lane Donald,,Pendleton,South Carolina,United States,Portable
@@ -41103,6 +41462,16 @@ 3145635,W4ZMJ,Jamey L Busbee,,Lexington,South Carolina,United States,DMR
3145636,N4LYB,Daniel M Schmiedt,Dan,Westminster,South Carolina,United States,DMR
3145637,KW4BET,Brian E Timms,,Chester,South Carolina,United States,DMR
+3145638,KI4SRE,Harlan D Habersham,Hal,Sumter,South Carolina,United States,DMR
+3145639,N4JTH,Stephen A Costelli,Steve,Johns Island,South Carolina,United States,DMR
+3145640,K2DEE,Ray E Linke,,Myrtle Beach,South Carolina,United States,DMR
+3145641,N4JTH,Stephen Costelli Costelli,Steve,Johns Island,South Carolina,United States,DMR
+3145642,KJ5J,James H Jackson,,Burnettown,South Carolina,United States,DMR
+3145643,KK4AGN,Margaret K Spangenberg,Margie ,Central ,South Carolina,United States,DMR
+3145644,W4GE,Richard Schmiedt,Rick,Mount Pleasant,South Carolina,United States,DMR
+3145645,KM4VUH,Gregory Hopper,,Charleston,South Carolina,United States,DMR
+3145647,KM4YMU,Paul A Mckee,,Drayton,South Carolina,United States,DMR
+3145648,KK4AGN,Margaret K Spangenberg,Margie,Central,South Carolina,United States,DMR
3146001,KG6JLB,Thomas Rohwer,,Madison,South Dakota,United States,Portable
3146002,AD0BN,Aaron Locker,,Sioux Falls,South Dakota,United States,Portable
3146003,KD0QYR,Dustin Schnabel,,Sioux Falls,South Dakota,United States,Non-DMR
@@ -41612,6 +41981,11 @@ 3147497,N4KAC,Gregory A Taylor,,Knoxville,Tennessee,United States,DMR
3147498,W9LMJ,Sam Dillingham Dillingham,,Gallatin,Tennessee,United States,DMR
3147499,AA4BP,William B Powers,Brandon,Madisonville,Tennessee,United States,DMR
+3147500,KC8QOF,Joseph J Hartmeyer,,Maryville,Tennessee,United States,DMR
+3147501,N4AGE,Charlie J Rogers,,Knoxville,Tennessee,United States,DMR
+3147502,K4AVG,Jordan G Webb,,Maryville,Tennessee,United States,DMR
+3147503,KI4UVJ,Jonathan M Stotler,,Columbia,Tennessee,United States,DMR
+3147504,N3ORX,Henry J Koebler,,Clarksville,Tennessee,United States,DMR
3148001,W5EBQ,Jim Hopper,,Dallas,Texas,United States,
3148002,N4MSE,Jeff Alexander,,Dallas,Texas,United States,
3148003,KE4QLC,Cliff Jenkins,,Commerce,Texas,United States,Portable
@@ -42225,7 +42599,7 @@ 3148611,KA0IQT,James R Johns,,Tioga,Texas,United States,DMR
3148612,WB4WXD,Jeffrey C Montgomery,Jeff,Palestine,Texas,United States,DMR
3148613,KG5GDM,Jacob C Wilkinson,Jake,Grapevine,Texas,United States,DMR
-3148614,KD4IOZ,Mark Girard Girard,,Burleson,Texas,United States,DMR
+3148614,W5MSG,Mark Girard,,Burleson,Texas,United States,DMR
3148615,WB5QLD,Michael Heskett Heskett,Mike,Hurst,Texas,United States,DMR
3148616,WA5OBF,Michael D Alexander,Mike,Keller,Texas,United States,DMR
3148617,KA5POW,Roddy B Hailey,Blake,Fort Worth,Texas,United States,DMR
@@ -42514,12 +42888,24 @@ 3148901,KC5MOL,Javier E Moreno,,Brownsville,Texas,United States,DMR
3148902,KF5RVR,Steven Mcdermott,Steven,Crowley,Texas,United States,DMR
3148903,K5MSZ,Matt Zavadsky,Matt,Fort Worth,Texas,United States,DMR
+3148904,KA1GMN,Philip Williams Williams,,Euless,Texas,United States,DMR
3148905,AB5JK,Jimi R Klaevemann,,Uvalde,Texas,United States,DMR
3148906,KC5NLP,Michael A Contreras,,Harlingen,Texas,United States,DMR
3148907,N9PBJ,Jorge D Patino,,Universal City,Texas,United States,DMR
3148908,AD5MD,Ernesto M Ong,Ernie,Brownsville,Texas,United States,DMR
3148909,KC5RY,Jorge Patino,,Selma,Texas,United States,DMR
3148910,KG5JBC,Jerry W Wade,,Azle,Texas,United States,DMR
+3148911,WD5GBS,Thomas D Presley,,Frisco,Texas,United States,DMR
+3148912,NA5V,Donald J Parker,Don,Fairview,Texas,United States,DMR
+3148913,N5YIF,Gary Ford,,Tyler,Texas,United States,DMR
+3148914,KC5ORU,Anthony Rusher Rusher,,Arlington,Texas,United States,DMR
+3148915,N5HW,Barry Sherwood Sherwood,,Lindale,Texas,United States,DMR
+3148916,KE5TSW,Chris Turner,Chris,Mesquite,Texas,United States,DMR
+3148917,K5MSZ,Matthew Zavadsky Zavadsky,Matt,Fort Worth,Texas,United States,DMR
+3148918,KG5ILJ,Martin W Gaston,Marty,Mesquite,Texas,United States,DMR
+3148919,K5SMD,Shannon Davis Davis,,Rockwall,Texas,United States,DMR
+3148921,WW5NX,Neil L Smith,,Austin,Texas,United States,DMR
+3148922,N5OGD,Gerald G Dugan,,Abilene,Texas,United States,DMR
3149001,N6DVZ,Roger Davies,,West Jordan,Utah,United States,Portable
3149002,KC7WSU,Chris Andrist,,Lehi,Utah,United States,DMR
3149003,WR7O,Douglas Datwyler,,Sandy,Utah,United States,Portable
@@ -42613,6 +42999,7 @@ 3149091,K1OO,Larry N Myers,,American Fork,Utah,United States,DMR
3149092,KE7DOG,Karen I Anderson,,Bountiful,Utah,United States,DMR
3149093,KC7TPV,Robin S Pardey,,Salt Lake City,Utah,United States,DMR
+3149094,KG7ZUE,Ian L Winther,,West Jordan,Utah,United States,DMR
3150001,N1CIV,Bob Jacobson,,Hartford,Vermont,United States,Portable
3150002,KC5CNT,Russ Hules,,Middlebury,Vermont,United States,Mobile
3150003,KC5CNT,Russ Hules,,Middlebury,Vermont,United States,Portable
@@ -43164,6 +43551,11 @@ 3151472,N4HY,Robert W Mc Gwier,Bob,Elliston,Virginia,United States,DMR
3151473,KD4JJS,William W Ward,,Salem,Virginia,United States,DMR
3151474,KC5NXR,John S Bour,,Richmond,Virginia,United States,DMR
+3151475,KJ4COV,Wayne H Lewis,,Bloxom,Virginia,United States,DMR
+3151477,W4DHW,Dave Wheeler Wheeler,,Lexington,Virginia,United States,DMR
+3151478,KE5BM ,Ross B Comstock,,Wallops Island,Virginia,United States,DMR
+3151479,N9VT,Andrew C Thompson,Andy,Fredericksburg,Virginia,United States,DMR
+3151480,K2DHS,James Riley Riley,,Alexandria,Virginia,United States,DMR
3153001,KD7AKB,Chris Palmer,,Bremerton,Washington,United States,Mobile
3153002,NF6C,Gregory Krantz,,Orting,Washington,United States,Mobile
3153003,NF6C,Gregory Krantz,,Orting,Washington,United States,Portable
@@ -43473,6 +43865,13 @@ 3153307,N3KPU,Mike Ping,,Tacoma,Washington,United States,DMR
3153308,KI7DMJ,Leeray Perez,,Ferndale,Washington,United States,DMR
3153309,AG7S,Raymond C Phillips,Ray,Pasco,Washington,United States,DMR
+3153310,KE4EWB,Abigail S Lentz,,Bellevue,Washington,United States,DMR
+3153311,W7NDN,Daniel Manchado Gonzalez,,Port Orchard,Washington,United States,DMR
+3153312,WA7ZUS,Michael A Olds,,Mount Vernon,Washington,United States,CCS7
+3153313,K7ZVV,Seth Hart,,Longview,Washington,United States,DMR
+3153314,W6DLM,Donald L Mittelstaedt,,Everett,Washington,United States,DMR
+3153315,W7PAN,Lawrence A Viesse,Larry,Redmond,Washington,United States,DMR
+3153316,KA7FVV,Scott P Harvey,,Spokane,Washington,United States,DMR
3154001,WV8VFD,Tyler Lewis,,Parkersburg,West Virginia,United States,Portable
3154002,WB3JPB,Bruce Conley,,Inwood,West Virginia,United States,Portable
3154003,WB8WKO,Mike Vargo,,Mount Hope,West Virginia,United States,Portable
@@ -43607,6 +44006,7 @@ 3154132,K8JMH,Jeffrey M Holstein,Jeff,Point Pleasant,West Virginia,United States,DMR
3154133,KD8YNY,Dean A Thompson,,Morgantown,West Virginia,United States,DMR
3154134,KD8SKZ,Levi M Anderson,,Weirton,West Virginia,United States,DMR
+3154135,KE8FEK,David C O'Brien,Dob,Winfield,West Virginia,United States,DMR
3155001,N9NLZ,Craig Ochs,,Brookfield,Wisconsin,United States,Portable
3155002,KB9VLL,Dan Albert,,South Milwaukee,Wisconsin,United States,Portable
3155003,KB9ENO,William Niemuth,,Hortonville,Wisconsin,United States,Portable
@@ -43825,6 +44225,9 @@ 3155217,KD9HDR,Blake W Byrd,,Cumberland,Wisconsin,United States,DMR
3155218,K9LRD ,Lawrence R Dudzinski,,Elroy,Wisconsin,United States,DMR
3155219,WI9HRO,HRO Milwaukee Employees ARC,,Milwaukee,Wisconsin,United States,DMR
+3155220,KC9LOX,Todd Bloomingdale,,Tomah,Wisconsin,United States,DMR
+3155221,W9GGG,Greg G Glista,,Kenosha,Wisconsin,United States,DMR
+3155222,N9MGH,Gary L Hardt,,Racine,Wisconsin,United States,DMR
3156001,KC7YRA,Brad Lutz,,Casper,Wyoming,United States,Portable
3156002,KC7YRA,Brad Lutz,,Casper,Wyoming,United States,Mobile
3156003,KC0ZHF,Rodney Waln,,Cheyenne,Wyoming,United States,Portable
@@ -44127,6 +44530,7 @@ 4252016,4X1KO,Oded Kishoni,,Ramat-Gan,Tel Aviv,Israel,DMR
4252017,4X6KA,Yair Baron,,Ramt-Gan,Tel Aviv,Israel,DMR
4252018,4Z7CFB,Guy Arnon,Guy,Modi'In,Tel Aviv,Israel,DMR
+4252019,4Z1WS,Shamai Opfer,,Mazkeret Batya,Tel Aviv,Israel,DMR
4253001,4X5DS,David Saar,,Karmiel,Haifa,Israel,DMR
4253002,4X1UF,Izzy (Israel ) Lavee,,Haifa,Haifa,Israel,DMR
4253003,4Z4KR,Dan Gottlieb,,Sede Eliezr,Haifa,Israel,DMR
@@ -44136,6 +44540,7 @@ 4253007,4X1ON,Ezra Ofer,Ofer,Afula,Haifa,Israel,Other
4253008,4X4MF,Amos Sobel,,Haifa,Haifa,Israel,DMR
4253009,4Z7DIA,Avishay Dinar,,Haifa,Haifa,Israel,DMR
+4253010,4X5RU,Ranan Uzrad Uzrad,,Alon Haglil,Haifa,Israel,DMR
4254001,4Z5YR,Yoram Rotbach,,Modiin,Central,Israel,Non-DMR
4254002,4X5AA,Dotan Tal,,Tel-Mond,Central,Israel,Portable
4254003,4X1HF,Albo Avinoam,,Mazkeret Batya,Central,Israel,DMR
@@ -44157,6 +44562,8 @@ 4254019,4Z9III,Jim Janssen,Jimbo,Yavne,Central,Israel,DMR
4254020,4X1TS,Ted Seitles,,Netanya,Central,Israel,DMR
4254021,4Z5AB,Ronen Bachar,,Rehovot,Central,Israel,DMR
+4254022,4X1VG,Moshe Politi,,Arugot,Central,Israel,DMR
+4254023,4X5AA,Tal Dotan,Taldo,Tel-Mond,Central,Israel,DMR
4255001,4Z5VK,Remco Meeder,,eilat,Southern,Israel,Portable
4255002,4Z5VK,Meeder Remco,,eilat,Southern,Israel,Portable
4255003,4X5AS,Sasson Amiel,,eilat,Southern,Israel,Portable
@@ -44223,6 +44630,7 @@ 4401053,JH1AAQ,Akira Watanabe,Aki,Tateyama,Kanto,Japan,CCS7
4401054,JR1FVK,Yu Ichiro Tuck Takagawa,Tack,Tokyo,Kanto,Japan,DMR
4401055,JP1CKJ,Kenichi Yokoyama,,Hachiouji,Kanto,Japan,CCS7
+4401056,JG1EJY,Naoki Matsushima,Nao,Tokyo,Kanto,Japan,CCS7
4402001,JR2SRH,Gosei Sato,,Tokai-city,Tokai,Japan,Mobile
4402002,JR2MOK,Masaru Komoda,Masaru,Nagoya,Tokai,Japan,Portable
4402003,JN2JWA,Minoru Urata,,Shizuoka,Tokai,Japan,Other
@@ -44445,6 +44853,7 @@ 4504010,6K5DIO,Cho Wook Rae,,Kimhae,KyungSang Nam-Do,Korea S, Republic of,CCS7
4504011,HL5PDQ,Park Seho,,Gimhae,Kyungsang Nam-Do,Korea S, Republic of,DMR
4504012,DS5BSH,Kim Jin Pyo,,Cheongdo,Kyungsang Buk-Do,Korea S, Republic of,DMR
+4504013,HL5JGR,Choi Sung Tea,,Changwon,Kyungsang Nam-Do,Korea S, Republic of,DMR
4505001,HL5BRP,Hwang Chong-Gil,,Hadong-Gun,Chungchong Nam-Do,Korea S, Republic of,DMR
4505005,HL3WQ,Jae Gook Jeon,,Cheonan,Chungchong Nam-Do,Korea S, Republic of,CCS7
4505006,HL3KK,Kwang Ho Kim,,Cheonansi,Chungchong Nam-Do,Korea S, Republic of,DMR
@@ -44476,6 +44885,8 @@ 4506021,HL2OHM,Wonki Kim,,Ansan,Kyungki-Do,Korea S, Republic of,DMR
4506022,DS1AWE,Joel(Seung) Han,,Dongducheon,Kyungki-Do,Korea S, Republic of,DMR
4506023,6K2FRY,Bong In Jung,,Pyungtaek,Kyungki-Do,Korea S, Republic of,DMR
+4506024,HL2OHM,Wonki Kim,,Ansan,Kyungki-Do,Korea S, Republic of,DMR
+4506025,DS1AWE,Joel(Seung) Han,,Dongducheon,KyungKi-Do,Korea S, Republic of,CCS7
4507001,HL1RR,Lim Seong Gyu Lim,Hope,Seoul,Seoul,Korea S, Republic of,DMR
4507002,DS1RHP,Lee Seung-Jae,Ds1rhp,Seoul,Seoul,Korea S, Republic of,DMR
4507003,DS3DNC,Jongil Kim,,Seoul,Seoul,Korea S, Republic of,CCS7
@@ -44874,6 +45285,10 @@ 4661037,BX3AH,Lin Miracle,Bx3ah,Taoyuan,Northern Taiwan,Taiwan,DMR
4661038,BX1AAK,Hsu Chia Cheng Hsu Chia Cheng,Hsu Chia Cheng,Keelung,Northern Taiwan,Taiwan,DMR
4661039,BM2MQL,Laurence Chang,Glazing,Taipei,Taipei,Taiwan,DMR
+4661040,BU2BW,Bruce Lan,,New Taipei ,Northern Taiwan,Taiwan,DMR
+4661041,BM4JFO,Wanna Wa,A Wan,Taichung,Central Taiwan,Taiwan,DMR
+4661042,BM4JPB,Jiaming Chen,Loach,Taichung,Central Taiwan,Taiwan,DMR
+4661043,BU2CI,Chi Kuo Chu,,New Taipei,Taipei,Taiwan,DMR
5020001,9W2VHN,Hafiznaimi Yahya,HAFIZNAIMI,PENANG,Spratly Is.,Malaysia,Mobile
5022001,9M2AOC,Alexander Oon,,Bayan Lepas,Penang,Malaysia,Portable
5022002,9M2SF,See Fung Lee,,ISland Glades,Penang,Malaysia,Portable
@@ -44940,6 +45355,7 @@ 5051037,VK2MWP,Andrew Geddes,,Canberra,Australian Capital Territory,Australia,DMR
5051038,VK1OC,Robert Cook,Owen,Canberra,Australian Capital Territory,Australia,DMR
5051039,VK1EA,Carlos Peco,Carlos,Canberra,Australian Capital Territory,Australia,DMR
+5051040,VK1BGT,Ingmar Meins,,Canberra,Australian Capital Territory,Australia,DMR
5052001,VK2YLO,John Reeves,,Goonellabah,New South Wales,Australia,Mobile
5052002,VK2LK,Matt Ames,,Sydney,New South Wales,Australia,DMR
5052003,VK2YVA,Mal Alexander,,Campbelltown,New South Wales,Australia,
@@ -45145,6 +45561,7 @@ 5052204,VK2FH,Peter Tolmie,,Baulkham Hills,New South Wales,Australia,DMR
5052205,VK2TEQ,Greg J Mcculkin,,Blacktown,New South Wales,Australia,DMR
5052206,VK2SRD,Steven Deskovic,,Dural,New South Wales,Australia,DMR
+5052207,VK2EFL,Fred Lodden,,Sydney,New South Wales,Australia,DMR
5053001,VK3XDE,Paul Engler,,Melbourne,Victoria,Australia,Mobile
5053002,VK3TE,Peter Brennan,,Karingal,Victoria,Australia,Portable
5053003,VK3AJ,Peter Chaplin,,Upwey,Victoria,Australia,Mobile
@@ -45248,6 +45665,8 @@ 5053101,VK3WV,Dennis Sillett,,Melbourne,Victoria,Australia,DMR
5053102,VK3CSJ,Clint S Jeffrey,Clint,Narre Warren South,Victoria,Australia,Other
5053103,VK3CE,Ross Pittard,,Bendigo,Victoria,Australia,DMR
+5053104,VK3EEE,Dallas .,,Seymour,Victoria,Australia,DMR
+5053105,VK3OU,Mark Harris,,Bendigo,Victoria,Australia,DMR
5054001,VK4QF,Andrew Chapman,,Toowoomba,Queensland,Australia,DMR
5054002,VK4QF,Andrew Chapman,,Toowoomba,Queensland,Australia,DMR
5054003,VK4QF,Andrew Chapman,,Toowoomba,Queensland,Australia,DMR
@@ -45408,7 +45827,7 @@ 5056032,VK6NAH,James Oudejans,James,Perth,Western Australia,Australia,DMR
5056033,VK6NAH,James Oude,James,Perth,Western Australia,Australia,DMR
5056034,VK6AXB,Anthony Benbow,,Perth,Western Australia,Australia,DMR
-5056035,VK6PCC,Peter Clifford,Cliffo,Perth,Western Australia,Australia,DMR
+5056035,VK6LB,Peter Clifford,Cliffo,Perth,Western Australia,Australia,DMR
5056036,VK6PAW,Glynn Davies,,Perth,Western Australia,Australia,DMR
5056037,VK6LDX,Lewis Kemp,,Perth,Western Australia,Australia,DMR
5056038,VK6KIF,Alasdair Taylor,Al,Leeming,Western Australia,Australia,DMR
@@ -45433,6 +45852,9 @@ 5056057,VK6VZS,Dave Botha Botha,,Perth,Western Australia,Australia,DMR
5056058,VK6LSB,Stuart Bedford,Stuie,Ballajura,Western Australia,Australia,DMR
5056059,VK6PCB,Carsten J Bauer,,Perth,Western Australia,Australia,DMR
+5056060,VK6DMR,Matthew Mcdonough,Matt,Perth,Western Australia,Australia,DMR
+5056061,VK6ML,Matthew L Mcdonough,Matt,Perth,Western Australia,Australia,DMR
+5056062,VK6VET,Warren Richards,,Perth,Western Australia,Australia,DMR
5056100,VK100ANZ,Hmas Stirling - Gard,,Garden Island,Western Australia,Australia,John McNamee VK6AG
5057001,VK7YXX,Don Nolder,,Richmond,Tasmania,Australia,
5057002,VK7JA,John Andrewartha,,Scottsdale,Tasmania,Australia,Mobile
@@ -45738,6 +46160,7 @@ 5301138,ZL1PKS,K D Williams,,Auckland,North Island 1,New Zealand,DMR
5301139,ZL1MIKE,Mike Conner,Mike,Auckland,North Island 1,New Zealand,DMR
5301140,ZL1AFK,C Anderson,,Opotiki,North Island 1,New Zealand,DMR
+5301141,ZL4FW,Danny Ainsworth,,Auckland,North Island 1,New Zealand,DMR
5302001,ZL4JY,John Yaldwyn,,Waikanae,North Island 2,New Zealand,Mobile
5302002,ZL2JG,Jeff Graham,,Waikanae Beach,North Island 2,New Zealand,Mobile
5302003,ZL2JG,Jeff Graham,,Waikanae Beach,North Island 2,New Zealand,Portable
@@ -45792,6 +46215,7 @@ 5302052,ZL2DAA,David Annett,,Auckland,North Island 2,New Zealand,DMR
5302053,ZL4RFC,4rf Amateur Radio Club,,Wellington,North Island 2,New Zealand,Club Fleet
5302054,ZL4RFC,4rf Amateur Radio Club,,Wellington,North Island 2,New Zealand,Club Fleet
+5302055,ZL2DAT,Steven Mulvay,,New Zealand,North Island 2,New Zealand,DMR
5303001,ZL3VP,Gareth Bradshaw,,Christchurch,South Island,New Zealand,Mobile
5303002,ZL3PX,Geoff Chapman,,Christchurch,South Island,New Zealand,Portable
5303003,ZL4FZ,Richard Smart,,Christchurch,South Island,New Zealand,Portable
@@ -45885,7 +46309,7 @@ 5303091,ZL4AA,Club Rooms Otago Branch 30 Nzart,,Dunedin,South Island,New Zealand,Club Fleet
5303092,ZL4AA,Otago Branch Arec,,Dunedin,South Island,New Zealand,Club Fleet
5303093,ZL4VM,Vernon Marris,,Dunedin,South Island,New Zealand,DMR
-5303094,ZL2ARG,Neslon Branch Arec,,Nelson,South Island,New Zealand,DMR
+5303094,ZL2ARG,Nelson Branch Arec,,Nelson,South Island,New Zealand,DMR
5303095,ZL2ARG,Nelson Branch Arec,,Nelson,South Island,New Zealand,DMR
5303096,ZL2ARG,Nelson Branch Arec,,Nelson,South Island,New Zealand,DMR
5303097,ZL2ARG,Nelson Branch Arec,,Nelson,South Island,New Zealand,DMR
@@ -45914,6 +46338,8 @@ 5303120,ZL3VY,A P Dixon,,Christchurch,South Island,New Zealand,DMR
5303121,ZL4OC,R F Smith,Bob,Dunedin,South Island,New Zealand,DMR
5303122,ZL4LC,Lindsay Eunson,,Wyndham,South Island,New Zealand,DMR
+5303123,ZL2ARG,Nelson Branch Arec .,,Nelson,South Island,New Zealand,DMR
+5303124,ZL2ARG,Nelson Branch Arec .,,Nelson,South Island,New Zealand,DMR
5351001,KH2MM,Jochen Althoff,,Dededo,GU,Guam,Portable
5351002,WH2F,Stephan Buettner,,Dededo,Guam,United States,Portable
5351003,NH2CY,Bradley A Hokanson,Brad,Santa Rita,All,Guam,DMR
@@ -46172,6 +46598,7 @@ 7141029,HP1NUR,Tahumanara Chung,,Panama,Panama,Panama,DMR
7141030,HP1BZE,Augusto Lowe,,Panama,Panama,Panama,DMR
7141031,HP2DUI,Guillermo A. Gomez,Memo,Colon (Panama),Colon,Panama,CCS7
+7141032,HP1RPB,Ramon R. Pitti Barrera,,Panama,Panama,Panama,DMR
7220001,LW6DX,Fabian Malnero,,General Pacheco,Buenos Aires,Argentina Republic,Portable
7220002,LW2EQU,Jose Romasanta,Jose,Buenos aires,,Argentina,
7220003,LU2CJM,Julio Cesar Marino,,Buenos Aires,Buenos Aires,Argentina Republic,DMR
@@ -46328,6 +46755,7 @@ 7242073,PU2KTX,Clayton Amante,Cara De Concha,Taubaté,Sao Paulo,Brazil,DMR
7242074,PU2KTX,Clayton Amante,Cara De Concha,Taubaté,Sao Paulo,Brazil,DMR
7242075,PU2PYI,Paulo Henrique Santos,PaulãO,Taubaté,Sao Paulo,Brazil,DMR
+7242076,PY2NFT,Paolo Callea,,SÂO Paulo,Sao Paulo,Brazil,DMR
7242077,PY2AG,Fernando Gon�Alo,,Sao Paulo,Sao Paulo,Brazil,DMR
7242078,PY2IAO,Jose Carlos,,Sao Paulo,Sao Paulo,Brazil,DMR
7242079,PU2LQS,Jose Ariovaldo Da Cunha,,BragançA Paulista,Sao Paulo,Brazil,DMR
@@ -46462,6 +46890,9 @@ 7301045,CE1REA,Raul Eduardo Araya Vega,,Calama,Antofagasta,Chile,DMR
7301046,CE1VSV,Victor Valdivi,Victorcalama,Calama,Antofagasta,Chile,DMR
7301047,CE1RXY,Jose Orlando Maldonado,,Copiapo,Atacama,Chile,DMR
+7301048,CD1OLR,Ricardo Hernan Ojeda Lopez,,Copiapo ,Atacama,Chile,DMR
+7301049,CA1JAI,Javier Coronel,Jcoronelc,Calama,Antofagasta,Chile,DMR
+7301050,CE1WFN,Victor Roa Roa,,Copiapo,Atacama,Chile,DMR
7302001,CE2LS,Radio Club Of La Serena,,La Serena,Cuarta,Chile,
7302002,CE2NXW,Jerardo Peralta,,La Serena,Elqui,Chile,Mobile
7302003,CA2DMR,Ruben Dario Munoz,,La Serena,Elqui,Chile,Mobile
@@ -46638,6 +47069,7 @@ 7303053,CA3PRJ,Juan Fernandez,Juan,Santiago,Reg.Metr. de Santiago,Chile,DMR
7303054,CE3TRO,Victor Lopez,VíCtor ,Santiago ,Reg.Metr. De Santiago,Chile,DMR
7303055,CD3FTS,Felipe Turrieta,,Maipu,Reg.Metr. De Santiago,Chile,DMR
+7303056,CE3PA,Radio Club Provincial Cordillera Cordillera,Radio_club_cordillera,Puente Alto,Reg.Metr. De Santiago,Chile,DMR
7304001,CE4CSC,Carlos SáEz ,,Cauquenes,Maule,Chile,DMR
7304002,CA4KRC,Jonathan Valderrama,,Chillan Viejo,Maule,Chile,DMR
7304003,CE4RAY,Fernando Seguy,,Curico,Maule,Chile,DMR
@@ -46684,6 +47116,9 @@ 7341009,YV1ARV,Hernedy Arrieta Arrieta,,Maracaibo,Falcon,Trujillo,Zulia,Venezuela,DMR
7344001,YV4WC,Winkock Chang,,Valencia,Aragua,Carabobo,Cojedes,Venezuela,DMR
7344002,YV4CWK,Ruben Angel Villar Fernandez,,Valencia,Aragua,Carabobo,Cojedes,Venezuela,DMR
+7344003,YV4YY,Fernando Davila A.,Peregrino ,Valencia ,Aragua,Carabobo,Cojedes,Venezuela,DMR
+7344004,YV4ABC,Alfonso Trujillo P,Yv4abc,Valencia,Aragua,Carabobo,Cojedes,Venezuela,DMR
+7344005,YY4KCW ,Juan Manuel Lareo Asorey,Jlareo,Maracay,Aragua,Carabobo,Cojedes,Venezuela,DMR
7345001,YV5AJ,Club Venezuelo,,Caracas,Distrito Capital,Venezuela,Mobile
7345002,YV5RNE,R Nacional De Emerg.,,Caracas,Distrito Capital,Venezuela,Mobile
7345003,YV5NGV,Jose Dames,,Caracas,,Venezuela,
@@ -46699,13 +47134,23 @@ 7345014,YV5MSG,Werther Jesus Diaz Jimenez,Yv5msg,Caracas,Distrito Capital. Guarico,Miranda,Dependencias Federales,Venezuela,DMR
7345015,YY5ADM,Arnaldo Jose Aguilar Flores,,Caracas,Distrito Capital. Guarico,Miranda,Dependencias Federales,Venezuela,DMR
7345016,YV5NIV,Alexander RodrIGuez Mora,,Caracas,Distrito Capital. Guarico,Miranda,Dependencias Federales,Venezuela,DMR
+7345017,YY5AJI,Edgar Alfonso,Aji,Caracas,Distrito Capital. Guarico,Miranda,Dependencias Federales,Venezuela,DMR
+7345018,YV5RF,Florencio J Rodriguez,,Caracas,Distrito Capital. Guarico,Miranda,Dependencias Federales,Venezuela,DMR
+7345019,YV5VE,William Adolfo Fourneau Fourneau,Yv5ve,Altagracia De Orituc,Distrito Capital. Guarico,Miranda,Dependencias Federales,Venezuela,DMR
+7345020,YY5AJI,Edgar Alfonso,Edgar,Caracas,Distrito Capital. Guarico,Miranda,Dependencias Federales,Venezuela,DMR
+7345021,YY5SAL,Yuly Sulbaran A,Yy5sal,Caracas,Distrito Capital. Guarico,Miranda,Dependencias Federales,Venezuela,DMR
+7345022,YV5CVF,Jesus E Rios G,,Cracas,Distrito Capital. Guarico,Miranda,Dependencias Federales,Venezuela,DMR
+7345024,YV2GHU,Javier Alejandro Alviarez,,San Cristobal,Distrito Capital,Venezuela,DMR
7346001,YY6TTA,Gustavo Mena,,Barcelona,Anzoategui,Bolivar,Venezuela,Mobile
+7347001,YV7OMF,Omero Fani,,Porlamar,Nueva Esparta,Sucre,Venezuela,DMR
7380001,8R1B,Julian Embrack,,Georgetown,Georgetown,Guyana,DMR
7400001,HC1ER ,Edison Perez,,Quito,All,Ecuador,DMR
7400002,HC2GBT,Gerald Gawaldo,Gerry,Guayaquil,All,Ecuador,DMR
7400003,HC3AP,Cesar Palacios,,Machala,All,Ecuador,DMR
7400004,HC2ED,Ernesto Duran Salcedo,,Guayaquil,All,Ecuador,DMR
7400005,HC2GF,Francisco Diaz Granados Ayala,Frank,Guayaquil,All,Ecuador,DMR
+7400006,HC2DR,Victor Perez,,Guayaquil,All,Ecuador,DMR
+7400007,HC2NAP,Ahmed J. Perez,,Guayaquil,All,Ecuador,DMR
7440001,ZP3BGA,Jose Raul Invernizzi,,Pedro Juan Caballero,,Paraguay,Mobile
7440002,ZP3BGA,Jose Raul Invernizzi,Jose Raul,Pedro Juan Caballero,Amabay,Paraguay,CCS7
7481001,CX2AL,Hipolito Tournier,,Montevideo,Montevideo,Uruguay,DMR
From 5728459328235ca73c2270bb35cc9d0d4c353079 Mon Sep 17 00:00:00 2001 From: Cort Buffington Date: Sat, 19 Nov 2016 10:52:41 -0600 Subject: [PATCH 38/38] Trying to resolve collision of updates. --- hb_router.py | 21 +++------------------ 1 file changed, 3 insertions(+), 18 deletions(-) diff --git a/hb_router.py b/hb_router.py index a6baeac..06df748 100755 --- a/hb_router.py +++ b/hb_router.py @@ -229,35 +229,20 @@ class routerSYSTEM(HBSYSTEM): # The "continue" at the end of each means the next iteration of the for loop that tests for matching rules # if ((rule['DST_GROUP'] != _target_status[rule['DST_TS']]['RX_TGID']) and ((pkt_time - _target_status[rule['DST_TS']]['RX_TIME']) < RULES[_target]['GROUP_HANGTIME'])): -<<<<<<< HEAD - if True: #if _frame_type == const.HBPF_DATA_SYNC and _dtype_vseq == const.HBPF_SLT_VHEAD: + if _frame_type == const.HBPF_DATA_SYNC and _dtype_vseq == const.HBPF_SLT_VHEAD: logger.info('(%s) Call not routed to TGID%s, target active or in group hangtime: HBSystem: %s, TS: %s, TGID: %s', self._system, int_id(rule['DST_GROUP']), _target, rule['DST_TS'], int_id(_target_status[rule['DST_TS']]['RX_TGID'])) continue if ((rule['DST_GROUP'] != _target_status[rule['DST_TS']]['TX_TGID']) and ((pkt_time - _target_status[rule['DST_TS']]['TX_TIME']) < RULES[_target]['GROUP_HANGTIME'])): - if True: #if _frame_type == const.HBPF_DATA_SYNC and _dtype_vseq == const.HBPF_SLT_VHEAD: + if _frame_type == const.HBPF_DATA_SYNC and _dtype_vseq == const.HBPF_SLT_VHEAD: logger.info('(%s) Call not routed to TGID%s, target in group hangtime: HBSystem: %s, TS: %s, TGID: %s', self._system, int_id(rule['DST_GROUP']), _target, rule['DST_TS'], int_id(_target_status[rule['DST_TS']]['TX_TGID'])) -======= - if _frame_type == const.HBPF_DATA_SYNC and _dtype_vseq == const.HBPF_SLT_VHEAD: - logger.info('(%s) Call not routed to TGID%s, target active or in group hangtime: HBSystem %s, %s, TGID%s', self._system, int_id(_target_status[rule['DST_TS']]['TX_TGID']), _target, _slot, int_id(rule['DST_GROUP'])) - continue - if ((rule['DST_GROUP'] != _target_status[rule['DST_TS']]['TX_TGID']) and ((pkt_time - _target_status[rule['DST_TS']]['TX_TIME']) < RULES[_target]['GROUP_HANGTIME'])): - if _frame_type == const.HBPF_DATA_SYNC and _dtype_vseq == const.HBPF_SLT_VHEAD: - logger.info('(%s) Call not routed to TGID%s, target in group hangtime: HBSystem %s, %s, TGID%s', self._system, int_id(_target_status[rule['DST_TS']]['TX_TGID']), _target, _slot, int_id(rule['DST_GROUP'])) ->>>>>>> origin/decoding-full-dmr continue if (rule['DST_GROUP'] == _target_status[rule['DST_TS']]['RX_TGID']) and ((pkt_time - _target_status[rule['DST_TS']]['RX_TIME']) < const.STREAM_TO): if _frame_type == const.HBPF_DATA_SYNC and _dtype_vseq == const.HBPF_SLT_VHEAD: - print(repr(rule['DST_GROUP']), repr(_target_status[rule['DST_TS']]['RX_TGID']), pkt_time, _target_status[rule['DST_TS']]['RX_TIME'], const.STREAM_TO) logger.info('(%s) Call not routed to TGID%s, matching call already active on target: HBSystem: %s, TS: %s, TGID: %s', self._system, int_id(rule['DST_GROUP']), _target, rule['DST_TS'], int_id(_target_status[rule['DST_TS']]['RX_TGID'])) continue if (rule['DST_GROUP'] == _target_status[rule['DST_TS']]['TX_TGID']) and (_rf_src != _target_status[rule['DST_TS']]['TX_RFS']) and ((pkt_time - _target_status[rule['DST_TS']]['TX_TIME']) < const.STREAM_TO): -<<<<<<< HEAD - if True: #if _frame_type == const.HBPF_DATA_SYNC and _dtype_vseq == const.HBPF_SLT_VHEAD: - logger.info('(%s) Call not routed for subscriber %s, call route in progress on target: HBSystem: %s, TS: %s, TGID: %s, SUB: %s', self._system, int_id(_rf_src), _target, rule['DST_TS'], int_id(_target_status[rule['DST_TS']]['TX_TGID']), _target_status[rule['DST_TS']]['TX_RFS']) -======= if _frame_type == const.HBPF_DATA_SYNC and _dtype_vseq == const.HBPF_SLT_VHEAD: - logger.info('(%s) Call not routed, call route in progress from %s, target: HBSystem %s, %s, TGID%s', self._system, int_id(_target_status[rule['DST_TS']]['TX_RFS']), _target, _slot, int_id(rule['DST_GROUP'])) ->>>>>>> origin/decoding-full-dmr + logger.info('(%s) Call not routed for subscriber %s, call route in progress on target: HBSystem: %s, TS: %s, TGID: %s, SUB: %s', self._system, int_id(_rf_src), _target, rule['DST_TS'], int_id(_target_status[rule['DST_TS']]['TX_TGID']), _target_status[rule['DST_TS']]['TX_RFS']) continue # Set values for the contention handler to test next time there is a frame to forward