regdomain.xml revision 223504
1290001Sglebius<!--
2310419Sdelphij  Copyright (c) 2007-2008 Sam Leffler, Errno Consulting
3310419Sdelphij  All rights reserved.
4310419Sdelphij
5310419Sdelphij  Redistribution and use in source and binary forms, with or without
6310419Sdelphij  modification, are permitted provided that the following conditions
7310419Sdelphij  are met:
8310419Sdelphij  1. Redistributions of source code must retain the above copyright
9310419Sdelphij     notice, this list of conditions and the following disclaimer.
10310419Sdelphij  2. Redistributions in binary form must reproduce the above copyright
11310419Sdelphij     notice, this list of conditions and the following disclaimer in the
12310419Sdelphij     documentation and/or other materials provided with the distribution.
13310419Sdelphij
14310419Sdelphij  THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
15310419Sdelphij  IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
16310419Sdelphij  OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
17310419Sdelphij  IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
18310419Sdelphij  INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
19310419Sdelphij  NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
20310419Sdelphij  DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
21310419Sdelphij  THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22310419Sdelphij  (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
23310419Sdelphij  THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24310419Sdelphij
25310419Sdelphij  $FreeBSD: head/etc/regdomain.xml 223504 2011-06-24 14:31:30Z adrian $
26310419Sdelphij-->
27310419Sdelphij
28310419Sdelphij<regulatory-data>
29310419Sdelphij
30310419Sdelphij<!-- Regdomain/SKU definitions -->
31310419Sdelphij
32310419Sdelphij<regulatory-domains>
33310419Sdelphij
34310419Sdelphij<!--
35310419Sdelphij  DEBUG holds all available channels; the driver/device
36310419Sdelphij  defines what the capabilities and tx power caps are.
37310419Sdelphij  Regdomain code gets this information with the
38310419Sdelphij  IEEE80211_IOC_DRIVERCAPS ioctl.
39310419Sdelphij-->
40310419Sdelphij<rd id="debug">
41310419Sdelphij  <name>DEBUG</name>
42310419Sdelphij  <sku>0x1ff</sku>
43310419Sdelphij</rd>
44310419Sdelphij
45310419Sdelphij<rd id="fcc">
46310419Sdelphij  <name>FCC</name>
47310419Sdelphij  <sku>0x10</sku>
48310419Sdelphij  <defcc ref="US"/>
49310419Sdelphij  <netband mode="11b">
50310419Sdelphij    <band>
51310419Sdelphij      <freqband ref="F1_2412_2462"/>
52310419Sdelphij      <maxpower>30</maxpower>
53310419Sdelphij      <flags>IEEE80211_CHAN_B</flags>
54310419Sdelphij    </band>
55310419Sdelphij  </netband>
56310419Sdelphij  <netband mode="11g">
57310419Sdelphij    <band>
58310419Sdelphij      <freqband ref="F1_2412_2462"/>
59310419Sdelphij      <maxpower>30</maxpower>
60310419Sdelphij      <flags>IEEE80211_CHAN_G</flags>
61310419Sdelphij    </band>
62310419Sdelphij  </netband>
63310419Sdelphij  <netband mode="11a">
64310419Sdelphij    <band>
65310419Sdelphij      <freqband ref="F1_5180_5240"/>
66310419Sdelphij      <maxpower>17</maxpower>
67310419Sdelphij    </band>
68310419Sdelphij    <band>
69310419Sdelphij      <freqband ref="F1_5745_5805"/>
70310419Sdelphij      <maxpower>23</maxpower>
71310419Sdelphij    </band>
72310419Sdelphij    <band>
73310419Sdelphij      <freqband ref="F1_5825_5825"/>
74310419Sdelphij      <maxpower>23</maxpower>
75310419Sdelphij      <flags>IEEE80211_CHAN_PASSIVE</flags>
76310419Sdelphij    </band>
77310419Sdelphij  </netband>
78310419Sdelphij  <netband mode="11ng">
79310419Sdelphij    <band>
80310419Sdelphij      <freqband ref="F1_2412_2462"/>
81310419Sdelphij      <maxpower>30</maxpower>
82310419Sdelphij      <flags>IEEE80211_CHAN_G</flags>
83310419Sdelphij      <flags>IEEE80211_CHAN_HT20</flags>
84310419Sdelphij    </band>
85310419Sdelphij    <band>
86310419Sdelphij      <freqband ref="H4_2412_2462"/>
87310419Sdelphij      <maxpower>30</maxpower>
88310419Sdelphij      <flags>IEEE80211_CHAN_G</flags>
89310419Sdelphij      <flags>IEEE80211_CHAN_HT40</flags>
90310419Sdelphij    </band>
91310419Sdelphij  </netband>
92310419Sdelphij  <netband mode="11na">
93310419Sdelphij    <band>
94310419Sdelphij      <freqband ref="F1_5180_5240"/>
95310419Sdelphij      <maxpower>17</maxpower>
96310419Sdelphij      <flags>IEEE80211_CHAN_HT20</flags>
97310419Sdelphij    </band>
98310419Sdelphij    <band>
99310419Sdelphij      <freqband ref="H4_5180_5240"/>
100310419Sdelphij      <maxpower>17</maxpower>
101310419Sdelphij      <flags>IEEE80211_CHAN_HT40</flags>
102310419Sdelphij    </band>
103310419Sdelphij    <band>
104310419Sdelphij      <freqband ref="F1_5745_5805"/>
105310419Sdelphij      <maxpower>23</maxpower>
106310419Sdelphij      <flags>IEEE80211_CHAN_HT20</flags>
107310419Sdelphij    </band>
108310419Sdelphij    <band>
109310419Sdelphij      <freqband ref="H4_5745_5805"/>
110310419Sdelphij      <maxpower>23</maxpower>
111310419Sdelphij      <flags>IEEE80211_CHAN_HT40</flags>
112310419Sdelphij    </band>
113310419Sdelphij  </netband>
114310419Sdelphij</rd>
115310419Sdelphij
116310419Sdelphij<!-- FCC3 is FCC w/ DFS on Upper-UNI -->
117310419Sdelphij
118310419Sdelphij<rd id="fcc3">
119310419Sdelphij  <name>FCC3</name>
120310419Sdelphij  <sku>0x3a</sku>
121310419Sdelphij  <netband mode="11b">
122310419Sdelphij    <band>
123310419Sdelphij      <freqband ref="F1_2412_2462"/>
124310419Sdelphij      <maxpower>30</maxpower>
125310419Sdelphij      <flags>IEEE80211_CHAN_B</flags>
126310419Sdelphij    </band>
127310419Sdelphij  </netband>
128310419Sdelphij  <netband mode="11g">
129310419Sdelphij    <band>
130310419Sdelphij      <freqband ref="F1_2412_2462"/>
131310419Sdelphij      <maxpower>30</maxpower>
132310419Sdelphij      <flags>IEEE80211_CHAN_G</flags>
133310419Sdelphij    </band>
134310419Sdelphij  </netband>
135310419Sdelphij  <netband mode="11a">
136310419Sdelphij    <band>
137310419Sdelphij      <freqband ref="F1_5180_5240"/>
138310419Sdelphij      <maxpower>17</maxpower>
139310419Sdelphij    </band>
140310419Sdelphij    <band>
141310419Sdelphij      <freqband ref="F1_5260_5320"/>
142310419Sdelphij      <maxpower>20</maxpower>
143310419Sdelphij      <flags>IEEE80211_CHAN_PASSIVE</flags>
144310419Sdelphij      <flags>IEEE80211_CHAN_DFS</flags>
145310419Sdelphij    </band>
146310419Sdelphij    <band>
147310419Sdelphij      <freqband ref="F1_5745_5805"/>
148310419Sdelphij      <maxpower>23</maxpower>
149310419Sdelphij      <flags>IEEE80211_CHAN_PASSIVE</flags>
150310419Sdelphij      <flags>IEEE80211_CHAN_DFS</flags>
151310419Sdelphij    </band>
152310419Sdelphij    <band>
153310419Sdelphij      <freqband ref="F1_5825_5825"/>
154310419Sdelphij      <maxpower>23</maxpower>
155310419Sdelphij      <flags>IEEE80211_CHAN_PASSIVE</flags>
156310419Sdelphij      <flags>IEEE80211_CHAN_DFS</flags>
157310419Sdelphij    </band>
158310419Sdelphij  </netband>
159310419Sdelphij  <netband mode="11ng">
160310419Sdelphij    <band>
161310419Sdelphij      <freqband ref="F1_2412_2462"/>
162310419Sdelphij      <maxpower>30</maxpower>
163310419Sdelphij      <flags>IEEE80211_CHAN_G</flags>
164310419Sdelphij      <flags>IEEE80211_CHAN_HT20</flags>
165310419Sdelphij    </band>
166310419Sdelphij    <band>
167310419Sdelphij      <freqband ref="H4_2412_2462"/>
168310419Sdelphij      <maxpower>30</maxpower>
169310419Sdelphij      <flags>IEEE80211_CHAN_G</flags>
170310419Sdelphij      <flags>IEEE80211_CHAN_HT40</flags>
171310419Sdelphij    </band>
172310419Sdelphij  </netband>
173310419Sdelphij  <netband mode="11na">
174310419Sdelphij    <band>
175310419Sdelphij      <freqband ref="F1_5180_5240"/>
176310419Sdelphij      <maxpower>17</maxpower>
177310419Sdelphij      <flags>IEEE80211_CHAN_HT20</flags>
178310419Sdelphij    </band>
179310419Sdelphij    <band>
180310419Sdelphij      <freqband ref="H4_5180_5240"/>
181310419Sdelphij      <maxpower>17</maxpower>
182310419Sdelphij      <flags>IEEE80211_CHAN_HT40</flags>
183310419Sdelphij    </band>
184310419Sdelphij    <band>
185310419Sdelphij      <freqband ref="F1_5260_5320"/>
186310419Sdelphij      <maxpower>20</maxpower>
187310419Sdelphij      <flags>IEEE80211_CHAN_HT20</flags>
188310419Sdelphij      <flags>IEEE80211_CHAN_PASSIVE</flags>
189310419Sdelphij      <flags>IEEE80211_CHAN_DFS</flags>
190310419Sdelphij    </band>
191310419Sdelphij    <band>
192310419Sdelphij      <freqband ref="H4_5260_5320"/>
193310419Sdelphij      <maxpower>20</maxpower>
194310419Sdelphij      <flags>IEEE80211_CHAN_HT40</flags>
195310419Sdelphij      <flags>IEEE80211_CHAN_PASSIVE</flags>
196310419Sdelphij      <flags>IEEE80211_CHAN_DFS</flags>
197310419Sdelphij    </band>
198310419Sdelphij    <band>
199310419Sdelphij      <freqband ref="F1_5745_5805"/>
200310419Sdelphij      <maxpower>23</maxpower>
201310419Sdelphij      <flags>IEEE80211_CHAN_HT20</flags>
202310419Sdelphij    </band>
203310419Sdelphij    <band>
204310419Sdelphij      <freqband ref="H4_5745_5805"/>
205310419Sdelphij      <maxpower>23</maxpower>
206310419Sdelphij      <flags>IEEE80211_CHAN_HT40</flags>
207310419Sdelphij      <flags>IEEE80211_CHAN_PASSIVE</flags>
208310419Sdelphij      <flags>IEEE80211_CHAN_DFS</flags>
209310419Sdelphij    </band>
210310419Sdelphij  </netband>
211310419Sdelphij</rd>
212310419Sdelphij
213310419Sdelphij<!-- FCC4 is 2.4GHz FCC w/ Public Safety Band (PSB) -->
214310419Sdelphij
215310419Sdelphij<rd id="fcc4">
216310419Sdelphij  <name>FCC4</name>
217310419Sdelphij  <sku>0x12</sku>
218310419Sdelphij  <netband mode="11b">
219310419Sdelphij    <band>
220310419Sdelphij      <freqband ref="F1_2412_2462"/>
221310419Sdelphij      <maxpower>30</maxpower>
222310419Sdelphij      <flags>IEEE80211_CHAN_B</flags>
223310419Sdelphij    </band>
224310419Sdelphij  </netband>
225310419Sdelphij  <netband mode="11g">
226310419Sdelphij    <band>
227310419Sdelphij      <freqband ref="F1_2412_2462"/>
228310419Sdelphij      <maxpower>30</maxpower>
229310419Sdelphij      <flags>IEEE80211_CHAN_G</flags>
230310419Sdelphij    </band>
231310419Sdelphij  </netband>
232310419Sdelphij  <netband mode="11a">
233310419Sdelphij    <band>
234310419Sdelphij      <freqband ref="F1_4950_4980"/>
235310419Sdelphij      <maxpower>23</maxpower>
236310419Sdelphij    </band>
237310419Sdelphij    <band>
238310419Sdelphij      <freqband ref="F1_4945_4985_10"/>
239310419Sdelphij      <maxpower>27</maxpower>
240310419Sdelphij    </band>
241310419Sdelphij    <band>
242310419Sdelphij      <freqband ref="F1_4942_4987_5"/>
243310419Sdelphij      <maxpower>30</maxpower>
244310419Sdelphij    </band>
245310419Sdelphij  </netband>
246310419Sdelphij  <netband mode="11ng">
247310419Sdelphij    <band>
248310419Sdelphij      <freqband ref="F1_2412_2462"/>
249310419Sdelphij      <maxpower>30</maxpower>
250310419Sdelphij      <flags>IEEE80211_CHAN_G</flags>
251310419Sdelphij      <flags>IEEE80211_CHAN_HT20</flags>
252310419Sdelphij    </band>
253310419Sdelphij    <band>
254310419Sdelphij      <freqband ref="H4_2412_2462"/>
255310419Sdelphij      <maxpower>30</maxpower>
256310419Sdelphij      <flags>IEEE80211_CHAN_G</flags>
257310419Sdelphij      <flags>IEEE80211_CHAN_HT40</flags>
258310419Sdelphij    </band>
259310419Sdelphij  </netband>
260310419Sdelphij</rd>
261310419Sdelphij
262310419Sdelphij<rd id="japan">
263310419Sdelphij  <name>JAPAN</name>
264310419Sdelphij  <sku>0x40</sku>
265310419Sdelphij  <defcc ref="JP"/>
266310419Sdelphij  <netband mode="11b">
267310419Sdelphij    <band>
268310419Sdelphij      <freqband ref="F1_2412_2472"/>
269310419Sdelphij      <maxpower>23</maxpower>
270310419Sdelphij      <flags>IEEE80211_CHAN_B</flags>
271310419Sdelphij    </band>
272310419Sdelphij    <band>
273310419Sdelphij      <freqband ref="F1_2484_2484"/>
274310419Sdelphij      <maxpower>23</maxpower>
275310419Sdelphij      <flags>IEEE80211_CHAN_B</flags>
276310419Sdelphij    </band>
277310419Sdelphij  </netband>
278310419Sdelphij  <netband mode="11g">
279310419Sdelphij    <band>
280310419Sdelphij      <freqband ref="F1_2412_2472"/>
281310419Sdelphij      <maxpower>23</maxpower>
282310419Sdelphij      <flags>IEEE80211_CHAN_G</flags>
283310419Sdelphij    </band>
284310419Sdelphij  </netband>
285310419Sdelphij  <netband mode="11a">
286310419Sdelphij    <band>
287310419Sdelphij      <freqband ref="F1_5180_5240"/>
288310419Sdelphij      <maxpower>23</maxpower>
289310419Sdelphij    </band>
290310419Sdelphij    <band>
291310419Sdelphij      <freqband ref="F1_5260_5320"/>
292310419Sdelphij      <maxpower>23</maxpower>
293310419Sdelphij      <flags>IEEE80211_CHAN_PASSIVE</flags>
294310419Sdelphij      <flags>IEEE80211_CHAN_DFS</flags>
295310419Sdelphij    </band>
296310419Sdelphij  </netband>
297310419Sdelphij  <netband mode="11ng">
298310419Sdelphij    <band>
299310419Sdelphij      <freqband ref="F1_2412_2472"/>
300310419Sdelphij      <maxpower>23</maxpower>
301310419Sdelphij      <flags>IEEE80211_CHAN_G</flags>
302310419Sdelphij      <flags>IEEE80211_CHAN_HT20</flags>
303310419Sdelphij    </band>
304310419Sdelphij    <band>
305310419Sdelphij      <freqband ref="H4_2412_2472"/>
306310419Sdelphij      <maxpower>23</maxpower>
307310419Sdelphij      <flags>IEEE80211_CHAN_G</flags>
308310419Sdelphij      <flags>IEEE80211_CHAN_HT40</flags>
309301301Sdelphij    </band>
310301301Sdelphij  </netband>
311301301Sdelphij  <netband mode="11na">
312301301Sdelphij    <band>
313301301Sdelphij      <freqband ref="F1_5180_5240"/>
314301301Sdelphij      <maxpower>23</maxpower>
315301301Sdelphij      <flags>IEEE80211_CHAN_HT20</flags>
316301301Sdelphij    </band>
317301301Sdelphij    <band>
318301301Sdelphij      <freqband ref="H4_5180_5240"/>
319301301Sdelphij      <maxpower>23</maxpower>
320301301Sdelphij      <flags>IEEE80211_CHAN_HT40</flags>
321301301Sdelphij    </band>
322301301Sdelphij    <band>
323301301Sdelphij      <freqband ref="F1_5260_5320"/>
324301301Sdelphij      <maxpower>23</maxpower>
325301301Sdelphij      <flags>IEEE80211_CHAN_HT20</flags>
326301301Sdelphij      <flags>IEEE80211_CHAN_PASSIVE</flags>
327301301Sdelphij      <flags>IEEE80211_CHAN_DFS</flags>
328301301Sdelphij    </band>
329301301Sdelphij    <band>
330301301Sdelphij      <freqband ref="H4_5260_5320"/>
331301301Sdelphij      <maxpower>23</maxpower>
332301301Sdelphij      <flags>IEEE80211_CHAN_HT40</flags>
333301301Sdelphij      <flags>IEEE80211_CHAN_PASSIVE</flags>
334301301Sdelphij      <flags>IEEE80211_CHAN_DFS</flags>
335301301Sdelphij    </band>
336301301Sdelphij  </netband>
337301301Sdelphij</rd>
338301301Sdelphij
339301301Sdelphij<rd id="etsi">
340301301Sdelphij  <name>ETSI</name>
341301301Sdelphij  <sku>0x30</sku>
342301301Sdelphij  <netband mode="11b">
343301301Sdelphij    <band>
344301301Sdelphij	<freqband ref="F1_2412_2472"/>
345301301Sdelphij	<maxpower>30</maxpower>
346301301Sdelphij	<flags>IEEE80211_CHAN_B</flags>
347301301Sdelphij    </band>
348301301Sdelphij  </netband>
349301301Sdelphij  <netband mode="11g">
350301301Sdelphij    <band>
351301301Sdelphij      <freqband ref="F1_2412_2472"/>
352301301Sdelphij      <maxpower>30</maxpower>
353301301Sdelphij      <flags>IEEE80211_CHAN_G</flags>
354301301Sdelphij    </band>
355301301Sdelphij  </netband>
356301301Sdelphij  <netband mode="11a">
357301301Sdelphij    <band>
358301301Sdelphij      <freqband ref="F1_5180_5240"/>
359301301Sdelphij      <maxpower>17</maxpower>
360301301Sdelphij    </band>
361301301Sdelphij    <band>
362301301Sdelphij      <freqband ref="F1_5260_5320"/>
363301301Sdelphij      <maxpower>24</maxpower>
364301301Sdelphij      <flags>IEEE80211_CHAN_PASSIVE</flags>
365301301Sdelphij      <flags>IEEE80211_CHAN_DFS</flags>
366301301Sdelphij    </band>
367301301Sdelphij    <band>
368301301Sdelphij      <freqband ref="F1_5500_5700"/>
369301301Sdelphij      <maxpower>23</maxpower>
370301301Sdelphij      <flags>IEEE80211_CHAN_PASSIVE</flags>
371301301Sdelphij      <flags>IEEE80211_CHAN_DFS</flags>
372301301Sdelphij    </band>
373301301Sdelphij  </netband>
374301301Sdelphij  <netband mode="11ng">
375301301Sdelphij    <band>
376301301Sdelphij      <freqband ref="F1_2412_2472"/>
377301301Sdelphij      <maxpower>30</maxpower>
378301301Sdelphij      <flags>IEEE80211_CHAN_G</flags>
379301301Sdelphij      <flags>IEEE80211_CHAN_HT20</flags>
380301301Sdelphij    </band>
381301301Sdelphij    <band>
382301301Sdelphij      <freqband ref="H4_2412_2462"/>
383301301Sdelphij      <maxpower>30</maxpower>
384301301Sdelphij      <flags>IEEE80211_CHAN_G</flags>
385301301Sdelphij      <flags>IEEE80211_CHAN_HT40</flags>
386301301Sdelphij    </band>
387301301Sdelphij  </netband>
388301301Sdelphij  <netband mode="11na">
389301301Sdelphij    <band>
390301301Sdelphij      <freqband ref="F1_5180_5240"/>
391301301Sdelphij      <maxpower>17</maxpower>
392301301Sdelphij      <flags>IEEE80211_CHAN_HT20</flags>
393301301Sdelphij    </band>
394301301Sdelphij    <band>
395301301Sdelphij      <freqband ref="H4_5180_5240"/>
396301301Sdelphij      <maxpower>17</maxpower>
397301301Sdelphij      <flags>IEEE80211_CHAN_HT40</flags>
398301301Sdelphij    </band>
399301301Sdelphij    <band>
400301301Sdelphij      <freqband ref="F1_5260_5320"/>
401301301Sdelphij      <maxpower>24</maxpower>
402301301Sdelphij      <flags>IEEE80211_CHAN_HT20</flags>
403301301Sdelphij      <flags>IEEE80211_CHAN_PASSIVE</flags>
404301301Sdelphij      <flags>IEEE80211_CHAN_DFS</flags>
405301301Sdelphij    </band>
406301301Sdelphij    <band>
407301301Sdelphij      <freqband ref="H4_5260_5320"/>
408301301Sdelphij      <maxpower>24</maxpower>
409301301Sdelphij      <flags>IEEE80211_CHAN_HT40</flags>
410301301Sdelphij      <flags>IEEE80211_CHAN_PASSIVE</flags>
411301301Sdelphij      <flags>IEEE80211_CHAN_DFS</flags>
412301301Sdelphij    </band>
413301301Sdelphij    <band>
414301301Sdelphij      <freqband ref="F1_5500_5700"/>
415301301Sdelphij      <maxpower>23</maxpower>
416301301Sdelphij      <flags>IEEE80211_CHAN_HT20</flags>
417301301Sdelphij      <flags>IEEE80211_CHAN_PASSIVE</flags>
418301301Sdelphij      <flags>IEEE80211_CHAN_DFS</flags>
419301301Sdelphij    </band>
420301301Sdelphij    <band>
421298770Sdelphij      <freqband ref="H4_5500_5680"/>
422293896Sglebius      <maxpower>23</maxpower>
423298770Sdelphij      <flags>IEEE80211_CHAN_HT40</flags>
424294905Sdelphij      <flags>IEEE80211_CHAN_PASSIVE</flags>
425298770Sdelphij      <flags>IEEE80211_CHAN_DFS</flags>
426298770Sdelphij    </band>
427298770Sdelphij  </netband>
428298770Sdelphij</rd>
429298770Sdelphij
430298770Sdelphij<!-- ETSI w/o HT40 in 5GHz -->
431298770Sdelphij
432298770Sdelphij<rd id="etsi2">
433298770Sdelphij  <name>ETSI2</name>
434298770Sdelphij  <sku>0x32</sku>
435298770Sdelphij  <netband mode="11b">
436298770Sdelphij    <band>
437298770Sdelphij      <freqband ref="F1_2412_2472"/>
438298770Sdelphij      <maxpower>30</maxpower>
439298770Sdelphij      <flags>IEEE80211_CHAN_B</flags>
440298770Sdelphij    </band>
441298770Sdelphij  </netband>
442298770Sdelphij  <netband mode="11g">
443298770Sdelphij    <band>
444298770Sdelphij      <freqband ref="F1_2412_2472"/>
445298770Sdelphij      <maxpower>30</maxpower>
446298770Sdelphij      <flags>IEEE80211_CHAN_G</flags>
447298770Sdelphij    </band>
448298770Sdelphij  </netband>
449298770Sdelphij  <netband mode="11a">
450298770Sdelphij    <band>
451298770Sdelphij      <freqband ref="F1_5120_5240"/>
452298770Sdelphij      <maxpower>17</maxpower>
453298770Sdelphij    </band>
454298770Sdelphij    <band>
455298770Sdelphij      <freqband ref="F1_5260_5320"/>
456298770Sdelphij      <maxpower>24</maxpower>
457298770Sdelphij      <flags>IEEE80211_CHAN_PASSIVE</flags>
458298770Sdelphij      <flags>IEEE80211_CHAN_DFS</flags>
459298770Sdelphij    </band>
460298770Sdelphij    <band>
461298770Sdelphij      <freqband ref="F1_5500_5700"/>
462298770Sdelphij      <maxpower>23</maxpower>
463298770Sdelphij      <flags>IEEE80211_CHAN_PASSIVE</flags>
464298770Sdelphij      <flags>IEEE80211_CHAN_DFS</flags>
465298770Sdelphij    </band>
466298770Sdelphij  </netband>
467298770Sdelphij  <netband mode="11ng">
468298770Sdelphij    <band>
469298770Sdelphij      <freqband ref="F1_2412_2472"/>
470298770Sdelphij      <maxpower>30</maxpower>
471298770Sdelphij      <flags>IEEE80211_CHAN_G</flags>
472298770Sdelphij      <flags>IEEE80211_CHAN_HT20</flags>
473298770Sdelphij    </band>
474298770Sdelphij  </netband>
475298770Sdelphij  <netband mode="11na">
476298770Sdelphij    <band>
477298770Sdelphij      <freqband ref="F1_5120_5240"/>
478298770Sdelphij      <maxpower>17</maxpower>
479298770Sdelphij      <flags>IEEE80211_CHAN_HT20</flags>
480298770Sdelphij    </band>
481298770Sdelphij    <band>
482298770Sdelphij      <freqband ref="F1_5260_5320"/>
483298770Sdelphij      <maxpower>24</maxpower>
484298770Sdelphij      <flags>IEEE80211_CHAN_HT20</flags>
485298770Sdelphij      <flags>IEEE80211_CHAN_PASSIVE</flags>
486298770Sdelphij      <flags>IEEE80211_CHAN_DFS</flags>
487298770Sdelphij    </band>
488298770Sdelphij    <band>
489298770Sdelphij      <freqband ref="F1_5500_5700"/>
490298770Sdelphij      <maxpower>23</maxpower>
491298770Sdelphij      <flags>IEEE80211_CHAN_HT20</flags>
492298770Sdelphij      <flags>IEEE80211_CHAN_PASSIVE</flags>
493298770Sdelphij      <flags>IEEE80211_CHAN_DFS</flags>
494298770Sdelphij    </band>
495298770Sdelphij  </netband>
496298770Sdelphij</rd>
497298770Sdelphij
498298770Sdelphij<!-- ETSI - channel 36 -->
499298770Sdelphij
500298770Sdelphij<rd id="etsi3">
501298770Sdelphij  <name>ETSI3</name>
502298770Sdelphij  <sku>0x33</sku>
503298770Sdelphij  <defcc ref="RO"/>
504298770Sdelphij  <netband mode="11b">
505298770Sdelphij    <band>
506298770Sdelphij      <freqband ref="F1_2412_2472"/>
507298770Sdelphij      <maxpower>30</maxpower>
508298770Sdelphij      <flags>IEEE80211_CHAN_B</flags>
509298770Sdelphij    </band>
510298770Sdelphij  </netband>
511298770Sdelphij  <netband mode="11g">
512298770Sdelphij    <band>
513298770Sdelphij      <freqband ref="F1_2412_2472"/>
514298770Sdelphij      <maxpower>30</maxpower>
515298770Sdelphij      <flags>IEEE80211_CHAN_G</flags>
516298770Sdelphij    </band>
517298770Sdelphij  </netband>
518298770Sdelphij  <netband mode="11a">
519298770Sdelphij    <band>
520298770Sdelphij      <freqband ref="F1_5200_5240"/>
521298770Sdelphij      <maxpower>17</maxpower>
522298770Sdelphij    </band>
523298770Sdelphij    <band>
524298770Sdelphij      <freqband ref="F1_5280_5320"/>
525298770Sdelphij      <maxpower>24</maxpower>
526298770Sdelphij      <flags>IEEE80211_CHAN_PASSIVE</flags>
527298770Sdelphij      <flags>IEEE80211_CHAN_DFS</flags>
528298770Sdelphij    </band>
529298770Sdelphij    <band>
530298770Sdelphij      <freqband ref="F1_5500_5700"/>
531298770Sdelphij      <maxpower>23</maxpower>
532298770Sdelphij      <flags>IEEE80211_CHAN_PASSIVE</flags>
533298770Sdelphij      <flags>IEEE80211_CHAN_DFS</flags>
534298770Sdelphij    </band>
535298770Sdelphij  </netband>
536298770Sdelphij  <netband mode="11ng">
537298770Sdelphij    <band>
538298770Sdelphij      <freqband ref="F1_2412_2472"/>
539298770Sdelphij      <maxpower>30</maxpower>
540298770Sdelphij      <flags>IEEE80211_CHAN_G</flags>
541298770Sdelphij      <flags>IEEE80211_CHAN_HT20</flags>
542298770Sdelphij    </band>
543298770Sdelphij    <band>
544298770Sdelphij      <freqband ref="H4_2412_2462"/>
545298770Sdelphij      <maxpower>30</maxpower>
546298770Sdelphij      <flags>IEEE80211_CHAN_G</flags>
547298770Sdelphij      <flags>IEEE80211_CHAN_HT40</flags>
548298770Sdelphij    </band>
549298770Sdelphij  </netband>
550298770Sdelphij  <netband mode="11na">
551298770Sdelphij    <band>
552298770Sdelphij      <freqband ref="F1_5200_5240"/>
553298770Sdelphij      <maxpower>17</maxpower>
554298770Sdelphij      <flags>IEEE80211_CHAN_HT20</flags>
555298770Sdelphij    </band>
556298770Sdelphij    <band>
557298770Sdelphij      <freqband ref="H4_5200_5240"/>
558298770Sdelphij      <maxpower>17</maxpower>
559298770Sdelphij      <flags>IEEE80211_CHAN_HT40</flags>
560298770Sdelphij    </band>
561298770Sdelphij    <band>
562298770Sdelphij      <freqband ref="F1_5280_5320"/>
563298770Sdelphij      <maxpower>24</maxpower>
564298770Sdelphij      <flags>IEEE80211_CHAN_HT20</flags>
565298770Sdelphij      <flags>IEEE80211_CHAN_PASSIVE</flags>
566298770Sdelphij      <flags>IEEE80211_CHAN_DFS</flags>
567298770Sdelphij    </band>
568298770Sdelphij    <band>
569298770Sdelphij      <freqband ref="H4_5280_5320"/>
570298770Sdelphij      <maxpower>24</maxpower>
571298770Sdelphij      <flags>IEEE80211_CHAN_HT40</flags>
572298770Sdelphij      <flags>IEEE80211_CHAN_PASSIVE</flags>
573298770Sdelphij      <flags>IEEE80211_CHAN_DFS</flags>
574298770Sdelphij    </band>
575298770Sdelphij    <band>
576298770Sdelphij      <freqband ref="F1_5500_5700"/>
577298770Sdelphij      <maxpower>23</maxpower>
578298770Sdelphij      <flags>IEEE80211_CHAN_HT20</flags>
579298770Sdelphij      <flags>IEEE80211_CHAN_PASSIVE</flags>
580298770Sdelphij      <flags>IEEE80211_CHAN_DFS</flags>
581298770Sdelphij    </band>
582298770Sdelphij    <band>
583298770Sdelphij      <freqband ref="H4_5500_5680"/>
584298770Sdelphij      <maxpower>23</maxpower>
585298770Sdelphij      <flags>IEEE80211_CHAN_HT40</flags>
586298770Sdelphij      <flags>IEEE80211_CHAN_PASSIVE</flags>
587298770Sdelphij      <flags>IEEE80211_CHAN_DFS</flags>
588298770Sdelphij    </band>
589298770Sdelphij  </netband>
590298770Sdelphij</rd>
591298770Sdelphij
592298770Sdelphij<rd id="apac">
593298770Sdelphij  <name>APAC</name>
594298770Sdelphij  <sku>0x50</sku>
595298770Sdelphij  <netband mode="11b">
596298770Sdelphij    <band>
597298770Sdelphij      <freqband ref="F1_2412_2472"/>
598298770Sdelphij      <maxpower>30</maxpower>
599298770Sdelphij      <flags>IEEE80211_CHAN_B</flags>
600298770Sdelphij    </band>
601298770Sdelphij  </netband>
602298770Sdelphij  <netband mode="11g">
603298770Sdelphij    <band>
604298770Sdelphij      <freqband ref="F1_2412_2472"/>
605298770Sdelphij      <maxpower>30</maxpower>
606298770Sdelphij      <flags>IEEE80211_CHAN_G</flags>
607298770Sdelphij    </band>
608298770Sdelphij  </netband>
609298770Sdelphij  <netband mode="11a">
610298770Sdelphij    <band>
611298770Sdelphij      <freqband ref="F1_5180_5240"/>
612298770Sdelphij      <maxpower>17</maxpower>
613298770Sdelphij    </band>
614298770Sdelphij    <band>
615298770Sdelphij      <freqband ref="F1_5260_5320"/>
616298770Sdelphij      <maxpower>23</maxpower>
617298770Sdelphij      <flags>IEEE80211_CHAN_PASSIVE</flags>
618298770Sdelphij    </band>
619298770Sdelphij    <band>
620298770Sdelphij      <freqband ref="F1_5745_5805"/>
621298770Sdelphij      <maxpower>23</maxpower>
622298770Sdelphij    </band>
623298770Sdelphij    <band>
624298770Sdelphij      <freqband ref="F1_5825_5825"/>
625298770Sdelphij      <maxpower>23</maxpower>
626298770Sdelphij    </band>
627298770Sdelphij  </netband>
628298770Sdelphij  <netband mode="11ng">
629298770Sdelphij    <band>
630298770Sdelphij      <freqband ref="F1_2412_2472"/>
631298770Sdelphij      <maxpower>30</maxpower>
632298770Sdelphij      <flags>IEEE80211_CHAN_G</flags>
633298770Sdelphij      <flags>IEEE80211_CHAN_HT20</flags>
634298770Sdelphij    </band>
635298770Sdelphij    <band>
636298770Sdelphij      <freqband ref="H4_2412_2462"/>
637298770Sdelphij      <maxpower>30</maxpower>
638298770Sdelphij      <flags>IEEE80211_CHAN_G</flags>
639298770Sdelphij      <flags>IEEE80211_CHAN_HT40</flags>
640298770Sdelphij    </band>
641298770Sdelphij  </netband>
642298770Sdelphij  <netband mode="11na">
643298770Sdelphij    <band>
644298770Sdelphij      <freqband ref="F1_5180_5240"/>
645298770Sdelphij      <maxpower>17</maxpower>
646298770Sdelphij      <flags>IEEE80211_CHAN_HT20</flags>
647298770Sdelphij    </band>
648298770Sdelphij    <band>
649298770Sdelphij      <freqband ref="H4_5180_5240"/>
650298770Sdelphij      <maxpower>17</maxpower>
651298770Sdelphij      <flags>IEEE80211_CHAN_HT40</flags>
652298770Sdelphij    </band>
653298770Sdelphij    <band>
654298770Sdelphij      <freqband ref="F1_5260_5320"/>
655298770Sdelphij      <maxpower>23</maxpower>
656298770Sdelphij      <flags>IEEE80211_CHAN_HT20</flags>
657298770Sdelphij      <flags>IEEE80211_CHAN_PASSIVE</flags>
658298770Sdelphij    </band>
659298770Sdelphij    <band>
660298770Sdelphij      <freqband ref="H4_5260_5320"/>
661298770Sdelphij      <maxpower>23</maxpower>
662298770Sdelphij      <flags>IEEE80211_CHAN_HT40</flags>
663298770Sdelphij      <flags>IEEE80211_CHAN_PASSIVE</flags>
664298770Sdelphij    </band>
665298770Sdelphij    <band>
666298770Sdelphij      <freqband ref="F1_5745_5805"/>
667298770Sdelphij      <maxpower>23</maxpower>
668298770Sdelphij      <flags>IEEE80211_CHAN_HT20</flags>
669298770Sdelphij    </band>
670298770Sdelphij    <band>
671298770Sdelphij      <freqband ref="H4_5745_5805"/>
672298770Sdelphij      <maxpower>23</maxpower>
673298770Sdelphij      <flags>IEEE80211_CHAN_HT40</flags>
674298770Sdelphij    </band>
675298770Sdelphij  </netband>
676298770Sdelphij</rd>
677298770Sdelphij
678298770Sdelphij<!-- APAC w/ DFS on Mid-band -->
679298770Sdelphij
680298770Sdelphij<rd id="apac2">
681298770Sdelphij  <name>APAC2</name>
682298770Sdelphij  <sku>0x51</sku>
683298770Sdelphij  <netband mode="11b">
684298770Sdelphij    <band>
685298770Sdelphij      <freqband ref="F1_2412_2462"/>
686298770Sdelphij      <maxpower>30</maxpower>
687298770Sdelphij      <flags>IEEE80211_CHAN_B</flags>
688298770Sdelphij    </band>
689298770Sdelphij  </netband>
690298770Sdelphij  <netband mode="11g">
691298770Sdelphij    <band>
692298770Sdelphij      <freqband ref="F1_2412_2462"/>
693298770Sdelphij      <maxpower>30</maxpower>
694298770Sdelphij      <flags>IEEE80211_CHAN_G</flags>
695298770Sdelphij    </band>
696298770Sdelphij  </netband>
697298770Sdelphij  <netband mode="11a">
698298770Sdelphij    <band>
699298770Sdelphij      <freqband ref="F1_5120_5240"/>
700298770Sdelphij      <maxpower>17</maxpower>
701298770Sdelphij    </band>
702298770Sdelphij    <band>
703298770Sdelphij      <freqband ref="F1_5260_5320"/>
704298770Sdelphij      <maxpower>23</maxpower>
705298770Sdelphij      <flags>IEEE80211_CHAN_PASSIVE</flags>
706298770Sdelphij      <flags>IEEE80211_CHAN_DFS</flags>
707298770Sdelphij    </band>
708298770Sdelphij    <band>
709298770Sdelphij      <freqband ref="F1_5745_5805"/>
710298770Sdelphij      <maxpower>23</maxpower>
711298770Sdelphij    </band>
712298770Sdelphij    <band>
713298770Sdelphij      <freqband ref="F1_5825_5825"/>
714298770Sdelphij      <maxpower>23</maxpower>
715298770Sdelphij    </band>
716298770Sdelphij  </netband>
717298770Sdelphij  <netband mode="11ng">
718298770Sdelphij    <band>
719298770Sdelphij      <freqband ref="F1_2412_2462"/>
720298770Sdelphij      <maxpower>30</maxpower>
721298770Sdelphij      <flags>IEEE80211_CHAN_G</flags>
722298770Sdelphij      <flags>IEEE80211_CHAN_HT20</flags>
723298770Sdelphij    </band>
724298770Sdelphij    <band>
725298770Sdelphij      <freqband ref="H4_2412_2462"/>
726298770Sdelphij      <maxpower>30</maxpower>
727298770Sdelphij      <flags>IEEE80211_CHAN_G</flags>
728298770Sdelphij      <flags>IEEE80211_CHAN_HT40</flags>
729298770Sdelphij    </band>
730298770Sdelphij  </netband>
731298770Sdelphij  <netband mode="11na">
732298770Sdelphij    <band>
733298770Sdelphij      <freqband ref="F1_5120_5240"/>
734298770Sdelphij      <maxpower>17</maxpower>
735298770Sdelphij      <flags>IEEE80211_CHAN_HT20</flags>
736298770Sdelphij    </band>
737298770Sdelphij    <band>
738298770Sdelphij      <freqband ref="H4_5120_5240"/>
739298770Sdelphij      <maxpower>17</maxpower>
740298770Sdelphij      <flags>IEEE80211_CHAN_HT40</flags>
741298770Sdelphij    </band>
742298770Sdelphij    <band>
743298770Sdelphij      <freqband ref="F1_5260_5320"/>
744298770Sdelphij      <maxpower>23</maxpower>
745298770Sdelphij      <flags>IEEE80211_CHAN_HT20</flags>
746298770Sdelphij      <flags>IEEE80211_CHAN_PASSIVE</flags>
747298770Sdelphij      <flags>IEEE80211_CHAN_DFS</flags>
748298770Sdelphij    </band>
749298770Sdelphij    <band>
750298770Sdelphij      <freqband ref="H4_5260_5320"/>
751298770Sdelphij      <maxpower>23</maxpower>
752298770Sdelphij      <flags>IEEE80211_CHAN_HT40</flags>
753298770Sdelphij      <flags>IEEE80211_CHAN_PASSIVE</flags>
754298770Sdelphij      <flags>IEEE80211_CHAN_DFS</flags>
755298770Sdelphij    </band>
756298770Sdelphij    <band>
757298770Sdelphij      <freqband ref="F1_5745_5805"/>
758298770Sdelphij      <maxpower>23</maxpower>
759298770Sdelphij      <flags>IEEE80211_CHAN_HT20</flags>
760298770Sdelphij    </band>
761298770Sdelphij    <band>
762298770Sdelphij      <freqband ref="H4_5745_5805"/>
763298770Sdelphij      <maxpower>23</maxpower>
764294905Sdelphij      <flags>IEEE80211_CHAN_HT40</flags>
765294905Sdelphij    </band>
766294905Sdelphij  </netband>
767294905Sdelphij</rd>
768294905Sdelphij
769298770Sdelphij<!-- APAC w/o ISM band -->
770294905Sdelphij
771294905Sdelphij<rd id="apac3">
772294905Sdelphij  <name>APAC3</name>
773294905Sdelphij  <sku>0x5d</sku>
774294905Sdelphij  <netband mode="11b">
775294905Sdelphij    <band>
776294905Sdelphij      <freqband ref="F1_2412_2462"/>
777294905Sdelphij      <maxpower>30</maxpower>
778294905Sdelphij      <flags>IEEE80211_CHAN_B</flags>
779294905Sdelphij    </band>
780294905Sdelphij  </netband>
781294905Sdelphij  <netband mode="11g">
782294905Sdelphij    <band>
783294905Sdelphij      <freqband ref="F1_2412_2462"/>
784294905Sdelphij      <maxpower>30</maxpower>
785294905Sdelphij      <flags>IEEE80211_CHAN_G</flags>
786294905Sdelphij    </band>
787294905Sdelphij  </netband>
788294905Sdelphij  <netband mode="11a">
789294905Sdelphij    <band>
790294905Sdelphij      <freqband ref="F1_5180_5240"/>
791294905Sdelphij      <maxpower>17</maxpower>
792294905Sdelphij    </band>
793294905Sdelphij    <band>
794294905Sdelphij      <freqband ref="F1_5260_5320"/>
795294905Sdelphij      <maxpower>23</maxpower>
796294905Sdelphij      <flags>IEEE80211_CHAN_PASSIVE</flags>
797294905Sdelphij      <flags>IEEE80211_CHAN_DFS</flags>
798294905Sdelphij    </band>
799294905Sdelphij    <band>
800294905Sdelphij      <freqband ref="F1_5745_5805"/>
801294905Sdelphij      <maxpower>23</maxpower>
802294905Sdelphij    </band>
803294905Sdelphij  </netband>
804294905Sdelphij  <netband mode="11ng">
805294905Sdelphij    <band>
806294905Sdelphij      <freqband ref="F1_2412_2472"/>
807294905Sdelphij      <maxpower>30</maxpower>
808294905Sdelphij      <flags>IEEE80211_CHAN_G</flags>
809294905Sdelphij      <flags>IEEE80211_CHAN_HT20</flags>
810294905Sdelphij    </band>
811294905Sdelphij    <band>
812294905Sdelphij      <freqband ref="H4_2412_2462"/>
813294905Sdelphij      <maxpower>30</maxpower>
814294905Sdelphij      <flags>IEEE80211_CHAN_G</flags>
815298770Sdelphij      <flags>IEEE80211_CHAN_HT40</flags>
816298770Sdelphij    </band>
817294905Sdelphij  </netband>
818294905Sdelphij  <netband mode="11na">
819294905Sdelphij    <band>
820294905Sdelphij      <freqband ref="F1_5180_5240"/>
821294905Sdelphij      <maxpower>17</maxpower>
822294905Sdelphij      <flags>IEEE80211_CHAN_HT20</flags>
823294905Sdelphij    </band>
824294905Sdelphij    <band>
825294905Sdelphij      <freqband ref="H4_5180_5240"/>
826294905Sdelphij      <maxpower>17</maxpower>
827294905Sdelphij      <flags>IEEE80211_CHAN_HT40</flags>
828294905Sdelphij    </band>
829294905Sdelphij    <band>
830294905Sdelphij      <freqband ref="F1_5260_5320"/>
831294905Sdelphij      <maxpower>23</maxpower>
832294905Sdelphij      <flags>IEEE80211_CHAN_HT20</flags>
833294905Sdelphij      <flags>IEEE80211_CHAN_PASSIVE</flags>
834294905Sdelphij    </band>
835294905Sdelphij    <band>
836294905Sdelphij      <freqband ref="H4_5260_5320"/>
837294905Sdelphij      <maxpower>23</maxpower>
838294905Sdelphij      <flags>IEEE80211_CHAN_HT40</flags>
839294905Sdelphij      <flags>IEEE80211_CHAN_PASSIVE</flags>
840294905Sdelphij    </band>
841294905Sdelphij    <band>
842294905Sdelphij      <freqband ref="F1_5745_5805"/>
843294905Sdelphij      <maxpower>23</maxpower>
844294905Sdelphij      <flags>IEEE80211_CHAN_HT20</flags>
845294905Sdelphij    </band>
846294905Sdelphij    <band>
847294905Sdelphij      <freqband ref="H4_5745_5805"/>
848294905Sdelphij      <maxpower>23</maxpower>
849294905Sdelphij      <flags>IEEE80211_CHAN_HT40</flags>
850294905Sdelphij    </band>
851294905Sdelphij  </netband>
852294905Sdelphij</rd>
853294905Sdelphij
854294905Sdelphij<rd id="korea">
855294905Sdelphij  <name>KOREA</name>
856294905Sdelphij  <sku>0x45</sku>
857294905Sdelphij  <defcc ref="KR"/>
858294905Sdelphij  <netband mode="11b">
859294905Sdelphij    <band>
860294905Sdelphij      <freqband ref="F1_2412_2462"/>
861294905Sdelphij      <maxpower>30</maxpower>
862294905Sdelphij      <flags>IEEE80211_CHAN_B</flags>
863294905Sdelphij    </band>
864294905Sdelphij    <band>
865294905Sdelphij      <freqband ref="F1_2467_2472"/>
866294905Sdelphij      <maxpower>30</maxpower>
867294905Sdelphij      <flags>IEEE80211_CHAN_B</flags>
868294905Sdelphij      <flags>IEEE80211_CHAN_PASSIVE</flags>
869294905Sdelphij    </band>
870294905Sdelphij  </netband>
871294905Sdelphij  <netband mode="11g">
872294905Sdelphij    <band>
873294905Sdelphij      <freqband ref="F1_2412_2462"/>
874294905Sdelphij      <maxpower>30</maxpower>
875294905Sdelphij      <flags>IEEE80211_CHAN_G</flags>
876294905Sdelphij    </band>
877294905Sdelphij    <band>
878294905Sdelphij      <freqband ref="F1_2467_2472"/>
879294905Sdelphij      <maxpower>30</maxpower>
880294905Sdelphij      <flags>IEEE80211_CHAN_G</flags>
881294905Sdelphij      <flags>IEEE80211_CHAN_PASSIVE</flags>
882294905Sdelphij    </band>
883294905Sdelphij  </netband>
884294905Sdelphij  <netband mode="11a">
885294905Sdelphij    <band>
886294905Sdelphij      <freqband ref="F1_5180_5240"/>
887294905Sdelphij      <maxpower>17</maxpower>
888294905Sdelphij      <flags>IEEE80211_CHAN_PASSIVE</flags>
889294905Sdelphij    </band>
890294905Sdelphij    <band>
891294905Sdelphij      <freqband ref="F1_5260_5320"/>
892294905Sdelphij      <maxpower>23</maxpower>
893294905Sdelphij      <flags>IEEE80211_CHAN_PASSIVE</flags>
894294905Sdelphij    </band>
895294905Sdelphij    <band>
896294905Sdelphij      <freqband ref="F1_5500_5620"/>
897294905Sdelphij      <maxpower>23</maxpower>
898294905Sdelphij      <flags>IEEE80211_CHAN_PASSIVE</flags>
899294905Sdelphij    </band>
900294905Sdelphij    <band>
901294905Sdelphij      <freqband ref="F1_5745_5805"/>
902294905Sdelphij      <maxpower>23</maxpower>
903294905Sdelphij      <flags>IEEE80211_CHAN_PASSIVE</flags>
904294905Sdelphij    </band>
905294905Sdelphij  </netband>
906294905Sdelphij  <netband mode="11ng">
907294905Sdelphij    <band>
908294905Sdelphij      <freqband ref="F1_2412_2462"/>
909294905Sdelphij      <maxpower>30</maxpower>
910294905Sdelphij      <flags>IEEE80211_CHAN_G</flags>
911294905Sdelphij      <flags>IEEE80211_CHAN_HT20</flags>
912294905Sdelphij    </band>
913294905Sdelphij    <band>
914294905Sdelphij      <freqband ref="F1_2467_2472"/>
915294905Sdelphij      <maxpower>30</maxpower>
916294905Sdelphij      <flags>IEEE80211_CHAN_G</flags>
917294905Sdelphij      <flags>IEEE80211_CHAN_HT20</flags>
918294905Sdelphij      <flags>IEEE80211_CHAN_PASSIVE</flags>
919294905Sdelphij    </band>
920294905Sdelphij  </netband>
921294905Sdelphij  <netband mode="11na">
922294905Sdelphij    <band>
923294905Sdelphij      <freqband ref="F1_5180_5240"/>
924294905Sdelphij      <maxpower>17</maxpower>
925294905Sdelphij      <flags>IEEE80211_CHAN_HT20</flags>
926294905Sdelphij      <flags>IEEE80211_CHAN_PASSIVE</flags>
927294905Sdelphij    </band>
928294905Sdelphij    <band>
929294905Sdelphij      <freqband ref="F1_5260_5320"/>
930294905Sdelphij      <maxpower>23</maxpower>
931294905Sdelphij      <flags>IEEE80211_CHAN_HT20</flags>
932294905Sdelphij      <flags>IEEE80211_CHAN_PASSIVE</flags>
933294905Sdelphij    </band>
934294905Sdelphij    <band>
935294905Sdelphij      <freqband ref="F1_5500_5620"/>
936294905Sdelphij      <maxpower>23</maxpower>
937294905Sdelphij      <flags>IEEE80211_CHAN_HT20</flags>
938294905Sdelphij      <flags>IEEE80211_CHAN_PASSIVE</flags>
939294905Sdelphij    </band>
940294905Sdelphij    <band>
941294905Sdelphij      <freqband ref="F1_5745_5805"/>
942294905Sdelphij      <maxpower>23</maxpower>
943294905Sdelphij      <flags>IEEE80211_CHAN_HT20</flags>
944294905Sdelphij      <flags>IEEE80211_CHAN_PASSIVE</flags>
945294905Sdelphij    </band>
946294905Sdelphij  </netband>
947294905Sdelphij</rd>
948294905Sdelphij
949294905Sdelphij<!-- Rest Of World -->
950294905Sdelphij
951294905Sdelphij<rd id="row">
952294905Sdelphij  <name>ROW</name>
953294905Sdelphij  <sku>0x8a</sku>
954294905Sdelphij  <netband mode="11b">
955294905Sdelphij    <band>
956294905Sdelphij      <freqband ref="F1_2412_2462"/>
957294905Sdelphij      <maxpower>30</maxpower>
958294905Sdelphij      <flags>IEEE80211_CHAN_B</flags>
959294905Sdelphij    </band>
960294905Sdelphij  </netband>
961294905Sdelphij  <netband mode="11g">
962294905Sdelphij    <band>
963294905Sdelphij      <freqband ref="F1_2412_2462"/>
964294905Sdelphij      <maxpower>30</maxpower>
965294905Sdelphij      <flags>IEEE80211_CHAN_G</flags>
966294905Sdelphij    </band>
967294905Sdelphij  </netband>
968294905Sdelphij  <netband mode="11a">
969294905Sdelphij    <band>
970294905Sdelphij      <freqband ref="F1_5745_5805"/>
971294905Sdelphij      <maxpower>23</maxpower>
972294905Sdelphij      <flags>IEEE80211_CHAN_PASSIVE</flags>
973294905Sdelphij    </band>
974294905Sdelphij  </netband>
975294905Sdelphij  <netband mode="11ng">
976294905Sdelphij    <band>
977294905Sdelphij      <freqband ref="F1_2412_2462"/>
978294905Sdelphij      <maxpower>30</maxpower>
979294905Sdelphij      <flags>IEEE80211_CHAN_G</flags>
980294905Sdelphij      <flags>IEEE80211_CHAN_HT20</flags>
981294905Sdelphij    </band>
982294905Sdelphij    <band>
983294905Sdelphij      <freqband ref="H4_2412_2462"/>
984294905Sdelphij      <maxpower>30</maxpower>
985294905Sdelphij      <flags>IEEE80211_CHAN_G</flags>
986294905Sdelphij      <flags>IEEE80211_CHAN_HT40</flags>
987294905Sdelphij    </band>
988294905Sdelphij  </netband>
989294905Sdelphij  <netband mode="11na">
990294905Sdelphij    <band>
991294905Sdelphij      <freqband ref="F1_5745_5805"/>
992294905Sdelphij      <maxpower>23</maxpower>
993294905Sdelphij      <flags>IEEE80211_CHAN_HT20</flags>
994294905Sdelphij      <flags>IEEE80211_CHAN_PASSIVE</flags>
995294905Sdelphij    </band>
996294905Sdelphij    <band>
997294905Sdelphij      <freqband ref="H4_5745_5805"/>
998294905Sdelphij      <maxpower>23</maxpower>
999294905Sdelphij      <flags>IEEE80211_CHAN_HT40</flags>
1000294905Sdelphij      <flags>IEEE80211_CHAN_PASSIVE</flags>
1001294905Sdelphij    </band>
1002294905Sdelphij  </netband>
1003294905Sdelphij</rd>
1004294905Sdelphij
1005294905Sdelphij<rd id="none">
1006294905Sdelphij  <name>NONE</name>
1007294905Sdelphij  <sku>0xf0</sku>
1008294905Sdelphij  <netband mode="11b">
1009294905Sdelphij    <band>
1010294905Sdelphij      <freqband ref="F1_2412_2462"/>
1011294905Sdelphij      <maxpower>30</maxpower>
1012294905Sdelphij      <flags>IEEE80211_CHAN_B</flags>
1013294905Sdelphij    </band>
1014294905Sdelphij    <band>
1015298770Sdelphij      <freqband ref="F1_2467_2472"/>
1016294905Sdelphij      <maxpower>30</maxpower>
1017293896Sglebius      <flags>IEEE80211_CHAN_B</flags>
1018293896Sglebius      <flags>IEEE80211_CHAN_PASSIVE</flags>
1019293896Sglebius    </band>
1020293896Sglebius  </netband>
1021293896Sglebius  <netband mode="11g">
1022293896Sglebius    <band>
1023293896Sglebius      <freqband ref="F1_2412_2462"/>
1024293896Sglebius      <maxpower>30</maxpower>
1025293896Sglebius      <flags>IEEE80211_CHAN_G</flags>
1026293896Sglebius    </band>
1027293896Sglebius    <band>
1028293896Sglebius      <freqband ref="F1_2467_2472"/>
1029293896Sglebius      <maxpower>30</maxpower>
1030293896Sglebius      <flags>IEEE80211_CHAN_G</flags>
1031293896Sglebius      <flags>IEEE80211_CHAN_PASSIVE</flags>
1032293896Sglebius    </band>
1033293896Sglebius  </netband>
1034293896Sglebius  <netband mode="11a">
1035293896Sglebius    <band>
1036293896Sglebius      <freqband ref="F1_5120_5240"/>
1037293896Sglebius      <maxpower>17</maxpower>
1038293896Sglebius      <flags>IEEE80211_CHAN_PASSIVE</flags>
1039293896Sglebius    </band>
1040293896Sglebius    <band>
1041293896Sglebius      <freqband ref="F1_5260_5320"/>
1042293896Sglebius      <maxpower>24</maxpower>
1043293896Sglebius      <flags>IEEE80211_CHAN_PASSIVE</flags>
1044293896Sglebius    </band>
1045293896Sglebius    <band>
1046293896Sglebius      <freqband ref="F1_5500_5700"/>
1047293896Sglebius      <maxpower>24</maxpower>
1048293896Sglebius      <flags>IEEE80211_CHAN_PASSIVE</flags>
1049293896Sglebius    </band>
1050293896Sglebius    <band>
1051293896Sglebius      <freqband ref="F1_5745_5805"/>
1052293896Sglebius      <maxpower>23</maxpower>
1053293896Sglebius      <flags>IEEE80211_CHAN_PASSIVE</flags>
1054293896Sglebius    </band>
1055293896Sglebius    <band>
1056293896Sglebius      <freqband ref="F1_5825_5825"/>
1057293896Sglebius      <maxpower>23</maxpower>
1058293896Sglebius      <flags>IEEE80211_CHAN_PASSIVE</flags>
1059293896Sglebius    </band>
1060293896Sglebius  </netband>
1061293896Sglebius  <netband mode="11ng">
1062293896Sglebius    <band>
1063293896Sglebius      <freqband ref="F1_2412_2462"/>
1064293896Sglebius      <maxpower>30</maxpower>
1065293896Sglebius      <flags>IEEE80211_CHAN_G</flags>
1066293896Sglebius      <flags>IEEE80211_CHAN_HT20</flags>
1067293896Sglebius    </band>
1068293896Sglebius    <band>
1069293896Sglebius      <freqband ref="H4_2412_2462"/>
1070293896Sglebius      <maxpower>30</maxpower>
1071293896Sglebius      <flags>IEEE80211_CHAN_G</flags>
1072293896Sglebius      <flags>IEEE80211_CHAN_HT40</flags>
1073293896Sglebius    </band>
1074293896Sglebius    <band>
1075293896Sglebius      <freqband ref="F1_2467_2472"/>
1076293896Sglebius      <maxpower>30</maxpower>
1077293896Sglebius      <flags>IEEE80211_CHAN_G</flags>
1078293896Sglebius      <flags>IEEE80211_CHAN_HT20</flags>
1079293896Sglebius      <flags>IEEE80211_CHAN_PASSIVE</flags>
1080293896Sglebius    </band>
1081293896Sglebius    <band>
1082293896Sglebius      <freqband ref="H4_2467_2472"/>
1083293896Sglebius      <maxpower>30</maxpower>
1084293896Sglebius      <flags>IEEE80211_CHAN_G</flags>
1085293896Sglebius      <flags>IEEE80211_CHAN_HT40</flags>
1086293896Sglebius      <flags>IEEE80211_CHAN_PASSIVE</flags>
1087293896Sglebius    </band>
1088293896Sglebius  </netband>
1089293896Sglebius  <netband mode="11na">
1090293896Sglebius    <band>
1091293896Sglebius      <freqband ref="F1_5120_5240"/>
1092293896Sglebius      <maxpower>17</maxpower>
1093293896Sglebius      <flags>IEEE80211_CHAN_HT20</flags>
1094293896Sglebius      <flags>IEEE80211_CHAN_PASSIVE</flags>
1095293896Sglebius    </band>
1096293896Sglebius    <band>
1097293896Sglebius      <freqband ref="H4_5120_5240"/>
1098293896Sglebius      <maxpower>17</maxpower>
1099293896Sglebius      <flags>IEEE80211_CHAN_HT40</flags>
1100293896Sglebius      <flags>IEEE80211_CHAN_PASSIVE</flags>
1101293896Sglebius    </band>
1102293896Sglebius    <band>
1103293896Sglebius      <freqband ref="F1_5260_5320"/>
1104293896Sglebius      <maxpower>24</maxpower>
1105293896Sglebius      <flags>IEEE80211_CHAN_HT20</flags>
1106293896Sglebius      <flags>IEEE80211_CHAN_PASSIVE</flags>
1107293896Sglebius    </band>
1108293896Sglebius    <band>
1109293896Sglebius      <freqband ref="H4_5260_5320"/>
1110293896Sglebius      <maxpower>24</maxpower>
1111293896Sglebius      <flags>IEEE80211_CHAN_HT40</flags>
1112293896Sglebius      <flags>IEEE80211_CHAN_PASSIVE</flags>
1113293896Sglebius    </band>
1114293896Sglebius    <band>
1115298770Sdelphij      <freqband ref="F1_5500_5700"/>
1116290001Sglebius      <maxpower>24</maxpower>
1117293896Sglebius      <flags>IEEE80211_CHAN_HT20</flags>
1118290001Sglebius      <flags>IEEE80211_CHAN_PASSIVE</flags>
1119290001Sglebius    </band>
1120290001Sglebius    <band>
1121290001Sglebius      <freqband ref="H4_5500_5680"/>
1122290001Sglebius      <maxpower>24</maxpower>
1123290001Sglebius      <flags>IEEE80211_CHAN_HT40</flags>
1124290001Sglebius      <flags>IEEE80211_CHAN_PASSIVE</flags>
1125290001Sglebius    </band>
1126290001Sglebius    <band>
1127290001Sglebius      <freqband ref="F1_5745_5805"/>
1128290001Sglebius      <maxpower>23</maxpower>
1129290001Sglebius      <flags>IEEE80211_CHAN_HT20</flags>
1130290001Sglebius      <flags>IEEE80211_CHAN_PASSIVE</flags>
1131290001Sglebius    </band>
1132290001Sglebius    <band>
1133290001Sglebius      <freqband ref="H4_5745_5805"/>
1134290001Sglebius      <maxpower>23</maxpower>
1135290001Sglebius      <flags>IEEE80211_CHAN_HT40</flags>
1136290001Sglebius      <flags>IEEE80211_CHAN_PASSIVE</flags>
1137290001Sglebius    </band>
1138290001Sglebius    <band>
1139290001Sglebius      <freqband ref="F1_5825_5825"/>
1140290001Sglebius      <maxpower>23</maxpower>
1141290001Sglebius      <flags>IEEE80211_CHAN_HT20</flags>
1142290001Sglebius      <flags>IEEE80211_CHAN_PASSIVE</flags>
1143290001Sglebius    </band>
1144290001Sglebius    <band>
1145290001Sglebius      <freqband ref="H4_5825_5825"/>
1146290001Sglebius      <maxpower>23</maxpower>
1147290001Sglebius      <flags>IEEE80211_CHAN_HT40</flags>
1148290001Sglebius      <flags>IEEE80211_CHAN_PASSIVE</flags>
1149290001Sglebius    </band>
1150290001Sglebius  </netband>
1151290001Sglebius</rd>
1152290001Sglebius
1153290001Sglebius<rd id="sr9">
1154290001Sglebius  <name>SR9</name>
1155290001Sglebius  <sku>0x0298</sku>
1156290001Sglebius  <netband mode="11g">
1157290001Sglebius    <band>
1158290001Sglebius      <freqband ref="S1_907_922_5"/>
1159290001Sglebius      <maxpower>30</maxpower>
1160290001Sglebius      <flags>IEEE80211_CHAN_G</flags>
1161290001Sglebius    </band>
1162290001Sglebius    <band>
1163290001Sglebius      <freqband ref="S1_907_922_10"/>
1164290001Sglebius      <maxpower>30</maxpower>
1165290001Sglebius      <flags>IEEE80211_CHAN_G</flags>
1166290001Sglebius    </band>
1167290001Sglebius    <band>
1168290001Sglebius      <freqband ref="S1_912_917"/>
1169290001Sglebius      <maxpower>30</maxpower>
1170290001Sglebius      <flags>IEEE80211_CHAN_G</flags>
1171290001Sglebius    </band>
1172290001Sglebius  </netband>
1173290001Sglebius</rd>
1174290001Sglebius
1175290001Sglebius<rd id="xr9">
1176290001Sglebius  <name>XR9</name>
1177290001Sglebius  <sku>0x299</sku>
1178290001Sglebius  <netband mode="11g">
1179290001Sglebius    <band>
1180290001Sglebius      <freqband ref="S1_907_922_5"/>
1181290001Sglebius      <maxpower>30</maxpower>
1182290001Sglebius      <flags>IEEE80211_CHAN_G</flags>
1183290001Sglebius    </band>
1184290001Sglebius    <band>
1185290001Sglebius      <freqband ref="S1_907_922_10"/>
1186290001Sglebius      <maxpower>30</maxpower>
1187290001Sglebius      <flags>IEEE80211_CHAN_G</flags>
1188290001Sglebius    </band>
1189290001Sglebius    <band>
1190290001Sglebius      <freqband ref="S1_912_917"/>
1191290001Sglebius      <maxpower>30</maxpower>
1192290001Sglebius      <flags>IEEE80211_CHAN_G</flags>
1193290001Sglebius    </band>
1194290001Sglebius  </netband>
1195290001Sglebius</rd>
1196290001Sglebius
1197290001Sglebius<rd id="gz901">
1198290001Sglebius  <name>GZ901</name>
1199290001Sglebius  <sku>0x29a</sku>
1200290001Sglebius  <netband mode="11g">
1201290001Sglebius    <band>
1202290001Sglebius      <freqband ref="S1_908_923_5"/>
1203290001Sglebius      <maxpower>30</maxpower>
1204290001Sglebius      <flags>IEEE80211_CHAN_G</flags>
1205290001Sglebius    </band>
1206290001Sglebius    <band>
1207290001Sglebius      <freqband ref="S1_913_918_10"/>
1208290001Sglebius      <maxpower>30</maxpower>
1209290001Sglebius      <flags>IEEE80211_CHAN_G</flags>
1210290001Sglebius    </band>
1211290001Sglebius    <band>
1212290001Sglebius      <freqband ref="S1_913_918"/>
1213290001Sglebius      <maxpower>30</maxpower>
1214290001Sglebius      <flags>IEEE80211_CHAN_G</flags>
1215290001Sglebius    </band>
1216290001Sglebius  </netband>
1217290001Sglebius</rd>
1218290001Sglebius</regulatory-domains>
1219290001Sglebius
1220290001Sglebius<country-codes>
1221290001Sglebius<!--
1222290001Sglebius  ISO 3166 Country/Region codes and regdomain mapping.
1223290001Sglebius
1224290001Sglebius  http://ftp.ics.uci.edu/pub/ietf/http/related/iso3166.txt
1225290001Sglebius  has the list of codes.
1226290001Sglebius  XXX this table is incomplete
1227290001Sglebius-->
1228290001Sglebius<country id="AL">
1229290001Sglebius  <isocc>8</isocc> <name>Albania</name> <rd ref="none"/>
1230290001Sglebius</country>
1231290001Sglebius<country id="DZ">
1232290001Sglebius  <isocc>12</isocc> <name>Algeria</name> <rd ref="none"/>
1233290001Sglebius</country>
1234290001Sglebius<country id="AR">
1235290001Sglebius  <isocc>32</isocc> <name>Argentina</name> <rd ref="none"/>
1236290001Sglebius</country>
1237290001Sglebius<country id="AM">
1238290001Sglebius  <isocc>51</isocc> <name>Armenia</name> <rd ref="etsi"/>
1239290001Sglebius</country>
1240290001Sglebius<country id="AU">
1241290001Sglebius  <isocc>36</isocc> <name>Australia</name> <rd ref="row"/>
1242290001Sglebius</country>
1243290001Sglebius<country id="AT">
1244290001Sglebius  <isocc>40</isocc> <name>Austria</name> <rd ref="etsi2"/>
1245290001Sglebius</country>
1246290001Sglebius<country id="AZ">
1247290001Sglebius  <isocc>31</isocc> <name>Azerbaijan</name> <rd ref="etsi"/>
1248290001Sglebius</country>
1249290001Sglebius<country id="BH">
1250290001Sglebius  <isocc>48</isocc> <name>Bahrain</name> <rd ref="none"/>
1251290001Sglebius</country>
1252290001Sglebius<country id="BD">
1253290001Sglebius  <isocc>50</isocc> <name>Bangladesh</name> <rd ref="row"/>
1254290001Sglebius</country>
1255290001Sglebius<country id="BY">
1256290001Sglebius  <isocc>112</isocc> <name>Belarus</name> <rd ref="none"/>
1257290001Sglebius</country>
1258290001Sglebius<country id="BE">
1259290001Sglebius  <isocc>56</isocc> <name>Belgium</name> <rd ref="etsi"/>
1260290001Sglebius</country>
1261290001Sglebius<country id="BZ">
1262290001Sglebius  <isocc>84</isocc> <name>Belize</name> <rd ref="none"/>
1263290001Sglebius</country>
1264290001Sglebius<country id="BO">
1265290001Sglebius  <isocc>68</isocc> <name>Bolivia</name> <rd ref="none"/>
1266290001Sglebius</country>
1267290001Sglebius<country id="BR">
1268290001Sglebius  <isocc>76</isocc> <name>Brazil</name> <rd ref="fcc"/>
1269290001Sglebius</country>
1270290001Sglebius<country id="BN">
1271290001Sglebius  <isocc>96</isocc> <name>Brunei</name> <rd ref="apac"/>
1272290001Sglebius</country>
1273290001Sglebius<country id="BG">
1274290001Sglebius  <isocc>100</isocc> <name>Bulgaria</name> <rd ref="etsi"/>
1275290001Sglebius</country>
1276290001Sglebius<country id="CA">
1277290001Sglebius  <isocc>124</isocc> <name>Canada</name> <rd ref="fcc"/>
1278290001Sglebius</country>
1279290001Sglebius<country id="CL">
1280290001Sglebius  <isocc>152</isocc> <name>Chile</name> <rd ref="row"/>
1281290001Sglebius</country>
1282290001Sglebius<country id="CN">
1283290001Sglebius  <isocc>156</isocc> <name>China</name> <rd ref="row"/>
1284290001Sglebius</country>
1285290001Sglebius<country id="CO">
1286290001Sglebius  <isocc>170</isocc> <name>Colombia</name> <rd ref="fcc"/>
1287290001Sglebius</country>
1288290001Sglebius<country id="CR">
1289290001Sglebius  <isocc>188</isocc> <name>Costa Rica</name> <rd ref="none"/>
1290290001Sglebius</country>
1291290001Sglebius<country id="HR">
1292290001Sglebius  <isocc>191</isocc> <name>Croatia</name> <rd ref="etsi"/>
1293290001Sglebius</country>
1294290001Sglebius<country id="CY">
1295290001Sglebius  <isocc>196</isocc> <name>Cyprus</name> <rd ref="etsi"/>
1296290001Sglebius</country>
1297290001Sglebius<country id="CZ">
1298290001Sglebius  <isocc>203</isocc> <name>Czech Republic</name> <rd ref="etsi"/>
1299290001Sglebius</country>
1300290001Sglebius<country id="DK">
1301290001Sglebius  <isocc>208</isocc> <name>Denmark</name> <rd ref="etsi"/>
1302290001Sglebius</country>
1303290001Sglebius<country id="DO">
1304290001Sglebius  <isocc>214</isocc> <name>Dominican Republic</name> <rd ref="none"/>
1305290001Sglebius</country>
1306290001Sglebius<country id="EC">
1307290001Sglebius  <isocc>218</isocc> <name>Ecuador</name> <rd ref="none"/>
1308290001Sglebius</country>
1309290001Sglebius<country id="EG">
1310290001Sglebius  <isocc>818</isocc> <name>Egypt</name> <rd ref="none"/>
1311290001Sglebius</country>
1312290001Sglebius<country id="SV">
1313290001Sglebius  <isocc>222</isocc> <name>El Salvador</name> <rd ref="none"/>
1314290001Sglebius</country>
1315290001Sglebius<country id="EE">
1316290001Sglebius  <isocc>233</isocc> <name>Estonia</name> <rd ref="etsi"/>
1317290001Sglebius</country>
1318290001Sglebius<country id="FI">
1319290001Sglebius  <isocc>246</isocc> <name>Finland</name> <rd ref="etsi"/>
1320290001Sglebius</country>
1321290001Sglebius<country id="FR">
1322290001Sglebius  <isocc>250</isocc> <name>France</name> <rd ref="etsi"/>
1323290001Sglebius</country>
1324290001Sglebius<country id="F2">
1325290001Sglebius  <isocc>255</isocc> <name>France2</name> <rd ref="etsi"/>
1326290001Sglebius</country>
1327290001Sglebius<country id="GE">
1328290001Sglebius  <isocc>268</isocc> <name>Georgia</name> <rd ref="etsi"/>
1329290001Sglebius</country>
1330290001Sglebius<country id="DE">
1331290001Sglebius  <isocc>276</isocc> <name>Germany</name> <rd ref="etsi"/>
1332290001Sglebius</country>
1333290001Sglebius<country id="GR">
1334290001Sglebius  <isocc>300</isocc> <name>Greece</name> <rd ref="etsi"/>
1335290001Sglebius</country>
1336290001Sglebius<country id="GT">
1337290001Sglebius  <isocc>320</isocc> <name>Guatemala</name> <rd ref="none"/>
1338290001Sglebius</country>
1339290001Sglebius<country id="HN">
1340290001Sglebius  <isocc>340</isocc> <name>Honduras</name> <rd ref="none"/>
1341290001Sglebius</country>
1342290001Sglebius<country id="HK">
1343290001Sglebius  <isocc>344</isocc> <name>Hong Kong</name> <rd ref="apac"/>
1344290001Sglebius</country>
1345290001Sglebius<country id="HU">
1346290001Sglebius  <isocc>348</isocc> <name>Hungary</name> <rd ref="etsi"/>
1347290001Sglebius</country>
1348290001Sglebius<country id="IS">
1349290001Sglebius  <isocc>352</isocc> <name>Iceland</name> <rd ref="etsi"/>
1350290001Sglebius</country>
1351290001Sglebius<country id="IN">
1352290001Sglebius  <isocc>356</isocc> <name>India</name> <rd ref="apac"/>
1353290001Sglebius</country>
1354290001Sglebius<country id="ID">
1355290001Sglebius  <isocc>360</isocc> <name>Indonesia</name> <rd ref="none"/>
1356290001Sglebius</country>
1357290001Sglebius<country id="IR">
1358290001Sglebius  <isocc>364</isocc> <name>Iran</name> <rd ref="none"/>
1359290001Sglebius</country>
1360290001Sglebius<country id="IE">
1361290001Sglebius  <isocc>372</isocc> <name>Ireland</name> <rd ref="etsi"/>
1362290001Sglebius</country>
1363290001Sglebius<country id="IL">
1364290001Sglebius  <isocc>376</isocc> <name>Israel</name> <rd ref="none"/>
1365290001Sglebius</country>
1366290001Sglebius<country id="IT">
1367290001Sglebius  <isocc>380</isocc> <name>Italy</name> <rd ref="etsi"/>
1368290001Sglebius</country>
1369290001Sglebius<country id="JM">
1370290001Sglebius  <isocc>388</isocc> <name>Jamaica</name> <rd ref="none"/>
1371290001Sglebius</country>
1372290001Sglebius<country id="JP">
1373290001Sglebius  <isocc>392</isocc> <name>Japan</name> <rd ref="japan"/>
1374290001Sglebius</country>
1375290001Sglebius<country id="J1">
1376290001Sglebius  <isocc>393</isocc> <name>Japan1</name> <rd ref="japan"/>
1377290001Sglebius</country>
1378290001Sglebius<country id="J2">
1379290001Sglebius  <isocc>394</isocc> <name>Japan2</name> <rd ref="japan"/>
1380290001Sglebius</country>
1381290001Sglebius<country id="J3">
1382290001Sglebius  <isocc>395</isocc> <name>Japan3</name> <rd ref="japan"/>
1383290001Sglebius</country>
1384290001Sglebius<country id="J4">
1385290001Sglebius  <isocc>396</isocc> <name>Japan4</name> <rd ref="japan"/>
1386290001Sglebius</country>
1387290001Sglebius<country id="J5">
1388290001Sglebius  <isocc>397</isocc> <name>Japan5</name> <rd ref="japan"/>
1389290001Sglebius</country>
1390290001Sglebius<country id="JO">
1391290001Sglebius  <isocc>400</isocc> <name>Jordan</name> <rd ref="none"/>
1392290001Sglebius</country>
1393290001Sglebius<country id="KZ">
1394290001Sglebius  <isocc>398</isocc> <name>Kazakhstan</name> <rd ref="none"/>
1395290001Sglebius</country>
1396290001Sglebius<country id="KP">
1397290001Sglebius  <isocc>408</isocc> <name>North Korea</name> <rd ref="korea"/>
1398290001Sglebius</country>
1399290001Sglebius<country id="KR">
1400290001Sglebius  <isocc>410</isocc> <name>Korea Republic</name> <rd ref="korea"/>
1401290001Sglebius</country>
1402290001Sglebius<country id="K2">
1403290001Sglebius  <isocc>411</isocc> <name>Korea Republic2</name> <rd ref="none"/>
1404290001Sglebius</country>
1405290001Sglebius<country id="KW">
1406290001Sglebius  <isocc>414</isocc> <name>Kuwait</name> <rd ref="none"/>
1407290001Sglebius</country>
1408290001Sglebius<country id="LV">
1409290001Sglebius  <isocc>428</isocc> <name>Latvia</name> <rd ref="etsi2"/>
1410290001Sglebius</country>
1411290001Sglebius<country id="LB">
1412290001Sglebius  <isocc>422</isocc> <name>Lebanon</name> <rd ref="none"/>
1413290001Sglebius</country>
1414290001Sglebius<country id="LI">
1415290001Sglebius  <isocc>438</isocc> <name>Liechtenstein</name> <rd ref="etsi"/>
1416290001Sglebius</country>
1417290001Sglebius<country id="LT">
1418290001Sglebius  <isocc>440</isocc> <name>Lithuania</name> <rd ref="etsi"/>
1419290001Sglebius</country>
1420290001Sglebius<country id="LU">
1421290001Sglebius  <isocc>442</isocc> <name>Luxemborg</name> <rd ref="etsi"/>
1422290001Sglebius</country>
1423290001Sglebius<country id="MO">
1424290001Sglebius  <isocc>446</isocc> <name>Macau</name> <rd ref="none"/>
1425290001Sglebius</country>
1426290001Sglebius<country id="MK">
1427290001Sglebius  <isocc>807</isocc> <name>Macedonia</name> <rd ref="none"/>
1428290001Sglebius</country>
1429290001Sglebius<country id="MY">
1430290001Sglebius  <isocc>458</isocc> <name>Malaysia</name> <rd ref="apac3"/>
1431290001Sglebius</country>
1432290001Sglebius<country id="MT">
1433290001Sglebius  <isocc>470</isocc> <name>Malta</name> <rd ref="etsi"/>
1434290001Sglebius</country>
1435290001Sglebius<country id="MX">
1436290001Sglebius  <isocc>484</isocc> <name>Mexico</name> <rd ref="fcc"/>
1437290001Sglebius</country>
1438290001Sglebius<country id="MC">
1439290001Sglebius  <isocc>492</isocc> <name>Monaco</name> <rd ref="none"/>
1440290001Sglebius</country>
1441290001Sglebius<country id="MA">
1442290001Sglebius  <isocc>504</isocc> <name>Morocco</name> <rd ref="etsi"/>
1443290001Sglebius</country>
1444290001Sglebius<country id="NP">
1445290001Sglebius  <isocc>524</isocc> <name>Nepal</name> <rd ref="row"/>
1446290001Sglebius</country>
1447290001Sglebius<country id="NL">
1448290001Sglebius  <isocc>528</isocc> <name>Netherlands</name> <rd ref="etsi"/>
1449290001Sglebius</country>
1450290001Sglebius<country id="NZ">
1451298770Sdelphij  <isocc>554</isocc> <name>New Zealand</name> <rd ref="apac"/>
1452290001Sglebius</country>
1453290001Sglebius<country id="NO">
1454290001Sglebius  <isocc>578</isocc> <name>Norway</name> <rd ref="etsi"/>
1455293896Sglebius</country>
1456293896Sglebius<country id="OM">
1457290001Sglebius  <isocc>512</isocc> <name>Oman</name> <rd ref="none"/>
1458290001Sglebius</country>
1459290001Sglebius<country id="PK">
1460290001Sglebius  <isocc>586</isocc> <name>Pakistan</name> <rd ref="row"/>
1461290001Sglebius</country>
1462290001Sglebius<country id="PA">
1463290001Sglebius  <isocc>591</isocc> <name>Panama</name> <rd ref="none"/>
1464290001Sglebius</country>
1465290001Sglebius<country id="PE">
1466290001Sglebius  <isocc>604</isocc> <name>Peru</name> <rd ref="none"/>
1467290001Sglebius</country>
1468290001Sglebius<country id="PH">
1469290001Sglebius  <isocc>608</isocc> <name>Phillipines</name> <rd ref="apac2"/>
1470290001Sglebius</country>
1471290001Sglebius<country id="PL">
1472290001Sglebius  <isocc>616</isocc> <name>Poland</name> <rd ref="etsi"/>
1473290001Sglebius</country>
1474290001Sglebius<country id="PT">
1475290001Sglebius  <isocc>620</isocc> <name>Portugal</name> <rd ref="etsi"/>
1476290001Sglebius</country>
1477290001Sglebius<country id="PR">
1478290001Sglebius  <isocc>630</isocc> <name>Puerto Rico</name> <rd ref="fcc"/>
1479290001Sglebius</country>
1480290001Sglebius<country id="QA">
1481290001Sglebius  <isocc>634</isocc> <name>Quatar</name> <rd ref="none"/>
1482290001Sglebius</country>
1483290001Sglebius<country id="RO">
1484290001Sglebius  <isocc>642</isocc> <name>Romania</name> <rd ref="etsi"/>
1485290001Sglebius</country>
1486290001Sglebius<country id="RU">
1487290001Sglebius  <isocc>643</isocc> <name>Rusia</name> <rd ref="none"/>
1488290001Sglebius</country>
1489290001Sglebius<country id="SA">
1490290001Sglebius  <isocc>682</isocc> <name>Saudi Arabia</name> <rd ref="none"/>
1491290001Sglebius</country>
1492290001Sglebius<country id="SG">
1493290001Sglebius  <isocc>702</isocc> <name>Singapore</name> <rd ref="apac2"/>
1494290001Sglebius</country>
1495290001Sglebius<country id="SK">
1496290001Sglebius  <isocc>703</isocc> <name>Slovak Republic</name> <rd ref="etsi2"/>
1497290001Sglebius</country>
1498290001Sglebius<country id="SI">
1499290001Sglebius  <isocc>705</isocc> <name>Slovenia</name> <rd ref="etsi"/>
1500290001Sglebius</country>
1501290001Sglebius<country id="ZA">
1502290001Sglebius  <isocc>710</isocc> <name>South Africa</name> <rd ref="none"/>
1503290001Sglebius</country>
1504290001Sglebius<country id="ES">
1505290001Sglebius  <isocc>724</isocc> <name>Spain</name> <rd ref="etsi2"/>
1506290001Sglebius</country>
1507290001Sglebius<country id="LK">
1508290001Sglebius  <isocc>144</isocc> <name>Sri Lanka</name> <rd ref="apac2"/>
1509290001Sglebius</country>
1510290001Sglebius<country id="SE">
1511290001Sglebius  <isocc>752</isocc> <name>Sweden</name> <rd ref="etsi"/>
1512290001Sglebius</country>
1513290001Sglebius<country id="CH">
1514290001Sglebius  <isocc>756</isocc> <name>Switzerland</name> <rd ref="etsi"/>
1515290001Sglebius</country>
1516290001Sglebius<country id="SY">
1517290001Sglebius  <isocc>760</isocc> <name>Syria</name> <rd ref="none"/>
1518290001Sglebius</country>
1519290001Sglebius<country id="TW">
1520290001Sglebius  <isocc>158</isocc> <name>Taiwan</name> <rd ref="row"/>
1521290001Sglebius</country>
1522290001Sglebius<country id="TH">
1523290001Sglebius  <isocc>764</isocc> <name>Thailand</name> <rd ref="none"/>
1524290001Sglebius</country>
1525290001Sglebius<country id="TT">
1526290001Sglebius  <isocc>780</isocc> <name>Tobago</name> <rd ref="none"/>
1527290001Sglebius</country>
1528290001Sglebius<country id="TN">
1529290001Sglebius  <isocc>788</isocc> <name>Tunisia</name> <rd ref="none"/>
1530290001Sglebius</country>
1531290001Sglebius<country id="TR">
1532290001Sglebius  <isocc>792</isocc> <name>Turkey</name> <rd ref="etsi"/>
1533290001Sglebius</country>
1534290001Sglebius<country id="UA">
1535290001Sglebius  <isocc>804</isocc> <name>Ukraine</name> <rd ref="none"/>
1536290001Sglebius</country>
1537290001Sglebius<country id="AE">
1538290001Sglebius  <isocc>784</isocc> <name>United Arab Emirates</name> <rd ref="none"/>
1539290001Sglebius</country>
1540290001Sglebius<country id="GB">
1541290001Sglebius  <isocc>826</isocc> <name>United Kingdom</name> <rd ref="etsi"/>
1542290001Sglebius</country>
1543290001Sglebius<country id="US">
1544290001Sglebius  <isocc>840</isocc> <name>United States</name> <rd ref="fcc"/>
1545290001Sglebius</country>
1546290001Sglebius<country id="UY">
1547290001Sglebius  <isocc>858</isocc> <name>Uruguay</name> <rd ref="none"/>
1548290001Sglebius</country>
1549290001Sglebius<country id="UZ">
1550290001Sglebius  <isocc>860</isocc> <name>Uzbekistan</name> <rd ref="none"/>
1551290001Sglebius</country>
1552290001Sglebius<country id="VE">
1553290001Sglebius  <isocc>862</isocc> <name>Venezuela</name> <rd ref="fcc"/>
1554290001Sglebius</country>
1555290001Sglebius<country id="VN">
1556290001Sglebius  <isocc>704</isocc> <name>Viet Nam</name> <rd ref="apac2"/>
1557290001Sglebius</country>
1558290001Sglebius<country id="YE">
1559290001Sglebius  <isocc>887</isocc> <name>Yemen</name> <rd ref="none"/>
1560290001Sglebius</country>
1561290001Sglebius<country id="ZW">
1562290001Sglebius  <isocc>716</isocc> <name>Zimbabwe</name> <rd ref="none"/>
1563290001Sglebius</country>
1564290001Sglebius
1565290001Sglebius<country id="DEBUG">
1566290001Sglebius  <isocc>0</isocc> <name>Debug</name> <rd ref="debug"/>
1567290001Sglebius</country>
1568290001Sglebius</country-codes>
1569290001Sglebius
1570290001Sglebius<!--
1571290001Sglebius  Band specifications referenced above.
1572290001Sglebius  NB: keep sorted by starting frequency, legacy before HT
1573290001Sglebius-->
1574290001Sglebius<shared-frequency-bands>
1575290001Sglebius<freqband id="F1_4942_4987_5">
1576290001Sglebius  <freqstart>4942</freqstart> <freqend>4987</freqend>
1577290001Sglebius  <chanwidth>5</chanwidth> <chansep>5</chansep>
1578290001Sglebius  <flags>IEEE80211_CHAN_A</flags>
1579290001Sglebius  <flags>IEEE80211_CHAN_QUARTER</flags>
1580290001Sglebius</freqband>
1581290001Sglebius<freqband id="F1_4945_4985_10">
1582290001Sglebius  <freqstart>4945</freqstart> <freqend>4985</freqend>
1583290001Sglebius  <chanwidth>10</chanwidth> <chansep>5</chansep>
1584290001Sglebius  <flags>IEEE80211_CHAN_A</flags>
1585290001Sglebius  <flags>IEEE80211_CHAN_HALF</flags>
1586290001Sglebius</freqband>
1587290001Sglebius<freqband id="F1_4950_4980">
1588290001Sglebius  <freqstart>4950</freqstart> <freqend>4980</freqend>
1589290001Sglebius  <chanwidth>20</chanwidth> <chansep>5</chansep>
1590290001Sglebius  <flags>IEEE80211_CHAN_A</flags>
1591290001Sglebius</freqband>
1592290001Sglebius<freqband id="F1_5120_5240">
1593290001Sglebius  <freqstart>5120</freqstart> <freqend>5240</freqend>
1594290001Sglebius  <chanwidth>20</chanwidth> <chansep>20</chansep>
1595290001Sglebius  <flags>IEEE80211_CHAN_A</flags>
1596290001Sglebius</freqband>
1597290001Sglebius<freqband id="H4_5120_5240">
1598290001Sglebius  <freqstart>5120</freqstart> <freqend>5240</freqend>
1599290001Sglebius  <chanwidth>40</chanwidth> <chansep>20</chansep>
1600290001Sglebius  <flags>IEEE80211_CHAN_A</flags>
1601290001Sglebius</freqband>
1602290001Sglebius<freqband id="F1_5180_5240">
1603290001Sglebius  <freqstart>5180</freqstart> <freqend>5240</freqend>
1604290001Sglebius  <chanwidth>20</chanwidth> <chansep>20</chansep>
1605290001Sglebius  <flags>IEEE80211_CHAN_A</flags>
1606290001Sglebius</freqband>
1607290001Sglebius<freqband id="H4_5180_5240">
1608290001Sglebius  <freqstart>5180</freqstart> <freqend>5240</freqend>
1609290001Sglebius  <chanwidth>40</chanwidth> <chansep>20</chansep>
1610290001Sglebius  <flags>IEEE80211_CHAN_A</flags>
1611290001Sglebius</freqband>
1612290001Sglebius<freqband id="F1_5200_5240">
1613290001Sglebius  <freqstart>5200</freqstart> <freqend>5240</freqend>
1614290001Sglebius  <chanwidth>20</chanwidth> <chansep>20</chansep>
1615290001Sglebius  <flags>IEEE80211_CHAN_A</flags>
1616290001Sglebius</freqband>
1617290001Sglebius<freqband id="H4_5200_5240">
1618290001Sglebius  <freqstart>5200</freqstart> <freqend>5240</freqend>
1619290001Sglebius  <chanwidth>40</chanwidth> <chansep>20</chansep>
1620290001Sglebius  <flags>IEEE80211_CHAN_A</flags>
1621290001Sglebius</freqband>
1622290001Sglebius<freqband id="F1_5260_5320">
1623290001Sglebius  <freqstart>5260</freqstart> <freqend>5320</freqend>
1624290001Sglebius  <chanwidth>20</chanwidth> <chansep>20</chansep>
1625290001Sglebius  <flags>IEEE80211_CHAN_A</flags>
1626290001Sglebius</freqband>
1627290001Sglebius<freqband id="H4_5260_5320">
1628290001Sglebius  <freqstart>5260</freqstart> <freqend>5320</freqend>
1629290001Sglebius  <chanwidth>40</chanwidth> <chansep>20</chansep>
1630290001Sglebius  <flags>IEEE80211_CHAN_A</flags>
1631290001Sglebius</freqband>
1632290001Sglebius<freqband id="F1_5260_5700">
1633290001Sglebius  <freqstart>5260</freqstart> <freqend>5700</freqend>
1634290001Sglebius  <chanwidth>20</chanwidth> <chansep>20</chansep>
1635290001Sglebius  <flags>IEEE80211_CHAN_A</flags>
1636290001Sglebius</freqband>
1637290001Sglebius<freqband id="F1_5280_5320">
1638290001Sglebius  <freqstart>5280</freqstart> <freqend>5320</freqend>
1639290001Sglebius  <chanwidth>20</chanwidth> <chansep>20</chansep>
1640290001Sglebius  <flags>IEEE80211_CHAN_A</flags>
1641290001Sglebius</freqband>
1642290001Sglebius<freqband id="H4_5280_5320">
1643290001Sglebius  <freqstart>5280</freqstart> <freqend>5320</freqend>
1644290001Sglebius  <chanwidth>40</chanwidth> <chansep>20</chansep>
1645290001Sglebius  <flags>IEEE80211_CHAN_A</flags>
1646290001Sglebius</freqband>
1647290001Sglebius<freqband id="F1_5500_5620">
1648290001Sglebius  <freqstart>5500</freqstart> <freqend>5620</freqend>
1649290001Sglebius  <chanwidth>20</chanwidth> <chansep>20</chansep>
1650290001Sglebius  <flags>IEEE80211_CHAN_A</flags>
1651290001Sglebius</freqband>
1652290001Sglebius<freqband id="H4_5500_5620">
1653290001Sglebius  <freqstart>5500</freqstart> <freqend>5620</freqend>
1654290001Sglebius  <chanwidth>40</chanwidth> <chansep>20</chansep>
1655290001Sglebius  <flags>IEEE80211_CHAN_A</flags>
1656290001Sglebius</freqband>
1657290001Sglebius<freqband id="H4_5500_5680">
1658290001Sglebius  <freqstart>5500</freqstart> <freqend>5680</freqend>
1659290001Sglebius  <chanwidth>40</chanwidth> <chansep>20</chansep>
1660290001Sglebius  <flags>IEEE80211_CHAN_A</flags>
1661290001Sglebius</freqband>
1662290001Sglebius<freqband id="F1_5500_5700">
1663290001Sglebius  <freqstart>5500</freqstart> <freqend>5700</freqend>
1664290001Sglebius  <chanwidth>20</chanwidth> <chansep>20</chansep>
1665290001Sglebius  <flags>IEEE80211_CHAN_A</flags>
1666290001Sglebius</freqband>
1667290001Sglebius<freqband id="H4_5725_5825">
1668290001Sglebius  <freqstart>5725</freqstart> <freqend>5825</freqend>
1669290001Sglebius  <chanwidth>40</chanwidth> <chansep>20</chansep>
1670290001Sglebius  <flags>IEEE80211_CHAN_A</flags>
1671290001Sglebius</freqband>
1672290001Sglebius<freqband id="F1_5745_5805">
1673290001Sglebius  <freqstart>5745</freqstart> <freqend>5805</freqend>
1674290001Sglebius  <chanwidth>20</chanwidth> <chansep>20</chansep>
1675290001Sglebius  <flags>IEEE80211_CHAN_A</flags>
1676290001Sglebius</freqband>
1677290001Sglebius<freqband id="H4_5745_5805">
1678290001Sglebius  <freqstart>5745</freqstart> <freqend>5805</freqend>
1679290001Sglebius  <chanwidth>40</chanwidth> <chansep>20</chansep>
1680290001Sglebius  <flags>IEEE80211_CHAN_A</flags>
1681290001Sglebius</freqband>
1682290001Sglebius<freqband id="H4_5745_5825">
1683290001Sglebius  <freqstart>5745</freqstart> <freqend>5825</freqend>
1684290001Sglebius  <chanwidth>40</chanwidth> <chansep>20</chansep>
1685290001Sglebius  <flags>IEEE80211_CHAN_A</flags>
1686290001Sglebius</freqband>
1687290001Sglebius<freqband id="F1_5825_5825">
1688290001Sglebius  <freqstart>5825</freqstart> <freqend>5825</freqend>
1689290001Sglebius  <chanwidth>20</chanwidth> <chansep>20</chansep>
1690290001Sglebius  <flags>IEEE80211_CHAN_A</flags>
1691290001Sglebius</freqband>
1692290001Sglebius<freqband id="H4_5825_5825">
1693290001Sglebius  <freqstart>5825</freqstart> <freqend>5825</freqend>
1694290001Sglebius  <chanwidth>40</chanwidth> <chansep>20</chansep>
1695290001Sglebius  <flags>IEEE80211_CHAN_A</flags>
1696290001Sglebius</freqband>
1697290001Sglebius
1698290001Sglebius<freqband id="F1_2312_2372">
1699290001Sglebius  <freqstart>2312</freqstart> <freqend>2372</freqend>
1700290001Sglebius  <chanwidth>20</chanwidth> <chansep>5</chansep>
1701290001Sglebius</freqband>
1702290001Sglebius<freqband id="F1_2412_2462">
1703290001Sglebius  <freqstart>2412</freqstart> <freqend>2462</freqend>
1704290001Sglebius  <chanwidth>20</chanwidth> <chansep>5</chansep>
1705290001Sglebius</freqband>
1706290001Sglebius<freqband id="H4_2412_2462">
1707290001Sglebius  <freqstart>2412</freqstart> <freqend>2462</freqend>
1708290001Sglebius  <chanwidth>40</chanwidth> <chansep>5</chansep>
1709290001Sglebius</freqband>
1710290001Sglebius<freqband id="F1_2412_2472">
1711290001Sglebius  <freqstart>2412</freqstart> <freqend>2472</freqend>
1712290001Sglebius  <chanwidth>20</chanwidth> <chansep>5</chansep>
1713290001Sglebius</freqband>
1714290001Sglebius<freqband id="H4_2412_2472">
1715290001Sglebius  <freqstart>2412</freqstart> <freqend>2472</freqend>
1716290001Sglebius  <chanwidth>40</chanwidth> <chansep>5</chansep>
1717290001Sglebius</freqband>
1718290001Sglebius<freqband id="F1_2467_2472">
1719290001Sglebius  <freqstart>2467</freqstart> <freqend>2472</freqend>
1720290001Sglebius  <chanwidth>20</chanwidth> <chansep>5</chansep>
1721290001Sglebius</freqband>
1722290001Sglebius<freqband id="H4_2467_2472">
1723290001Sglebius  <freqstart>2467</freqstart> <freqend>2472</freqend>
1724290001Sglebius  <chanwidth>40</chanwidth> <chansep>5</chansep>
1725290001Sglebius</freqband>
1726290001Sglebius<freqband id="F1_2484_2484">
1727290001Sglebius  <freqstart>2484</freqstart> <freqend>2484</freqend>
1728290001Sglebius  <chanwidth>20</chanwidth> <chansep>5</chansep>
1729290001Sglebius</freqband>
1730290001Sglebius<freqband id="F1_2512_2732">
1731290001Sglebius  <freqstart>2512</freqstart> <freqend>2732</freqend>
1732290001Sglebius  <chanwidth>20</chanwidth> <chansep>5</chansep>
1733290001Sglebius</freqband>
1734290001Sglebius
1735290001Sglebius<freqband id="S1_907_922_5">
1736290001Sglebius  <freqstart>907</freqstart> <freqend>922</freqend>
1737290001Sglebius  <chanwidth>5</chanwidth> <chansep>5</chansep>
1738290001Sglebius  <flags>IEEE80211_CHAN_GSM</flags>
1739290001Sglebius  <flags>IEEE80211_CHAN_QUARTER</flags>
1740290001Sglebius</freqband>
1741290001Sglebius<freqband id="S1_907_922_10">
1742290001Sglebius  <freqstart>907</freqstart> <freqend>922</freqend>
1743290001Sglebius  <chanwidth>10</chanwidth> <chansep>5</chansep>
1744290001Sglebius  <flags>IEEE80211_CHAN_GSM</flags>
1745290001Sglebius  <flags>IEEE80211_CHAN_HALF</flags>
1746290001Sglebius</freqband>
1747290001Sglebius<freqband id="S1_912_917">
1748290001Sglebius  <freqstart>912</freqstart> <freqend>917</freqend>
1749290001Sglebius  <chanwidth>20</chanwidth> <chansep>5</chansep>
1750290001Sglebius  <flags>IEEE80211_CHAN_GSM</flags>
1751290001Sglebius</freqband>
1752290001Sglebius
1753290001Sglebius<freqband id="S1_908_923_5">
1754290001Sglebius  <freqstart>908</freqstart> <freqend>923</freqend>
1755290001Sglebius  <chanwidth>5</chanwidth> <chansep>5</chansep>
1756290001Sglebius  <flags>IEEE80211_CHAN_GSM</flags>
1757290001Sglebius  <flags>IEEE80211_CHAN_QUARTER</flags>
1758290001Sglebius</freqband>
1759290001Sglebius<freqband id="S1_913_918_10">
1760290001Sglebius  <freqstart>913</freqstart> <freqend>918</freqend>
1761290001Sglebius  <chanwidth>10</chanwidth> <chansep>5</chansep>
1762290001Sglebius  <flags>IEEE80211_CHAN_GSM</flags>
1763290001Sglebius  <flags>IEEE80211_CHAN_HALF</flags>
1764290001Sglebius</freqband>
1765290001Sglebius<freqband id="S1_913_918">
1766290001Sglebius  <freqstart>913</freqstart> <freqend>918</freqend>
1767290001Sglebius  <chanwidth>20</chanwidth> <chansep>5</chansep>
1768290001Sglebius  <flags>IEEE80211_CHAN_GSM</flags>
1769290001Sglebius</freqband>
1770290001Sglebius
1771290001Sglebius</shared-frequency-bands>
1772290001Sglebius
1773290001Sglebius</regulatory-data>
1774290001Sglebius