]> sourceware.org Git - newlib-cygwin.git/blob - winsup/cygwin/devices.cc
* Merge in cygwin-64bit-branch.
[newlib-cygwin.git] / winsup / cygwin / devices.cc
1
2
3 #include "winsup.h"
4 #include "devices.h"
5 #include "sys/cygwin.h"
6 #include "tty.h"
7 #include "pinfo.h"
8 #include "shared_info.h"
9 #include "path.h"
10 #include "fhandler.h"
11 #include "ntdll.h"
12
13 typedef const device *KR_device_t;
14
15
16 static KR_device_t KR_find_keyword (const char *KR_keyword, int KR_length);
17
18
19
20
21 static int
22 exists_internal (const device&)
23 {
24 return false;
25 }
26
27 static int
28 exists (const device&)
29 {
30 return true;
31 }
32
33 /* Check existence of POSIX devices backed by real NT devices. */
34 static int
35 exists_ntdev (const device& dev)
36 {
37 WCHAR wpath[MAX_PATH];
38 UNICODE_STRING upath;
39 OBJECT_ATTRIBUTES attr;
40 HANDLE h;
41 NTSTATUS status;
42
43 sys_mbstowcs (wpath, MAX_PATH, dev.native);
44 RtlInitUnicodeString (&upath, wpath);
45 InitializeObjectAttributes (&attr, &upath, OBJ_CASE_INSENSITIVE, NULL, NULL);
46 /* Except for the serial IO devices, the native paths are
47 direct device paths, not symlinks, so every status code
48 except for "NOT_FOUND" means the device exists. */
49 status = NtOpenSymbolicLinkObject (&h, SYMBOLIC_LINK_QUERY, &attr);
50 switch (status)
51 {
52 case STATUS_OBJECT_NAME_NOT_FOUND:
53 case STATUS_OBJECT_PATH_NOT_FOUND:
54 return false;
55 case STATUS_SUCCESS:
56 NtClose (h);
57 default:
58 break;
59 }
60 return true;
61 }
62
63 /* Don't list via readdir but allow as a direct reference. */
64 static int
65 exists_ntdev_silent (const device& dev)
66 {
67 return exists_ntdev (dev) ? -1 : false;
68 }
69
70 static int
71 exists_console (const device& dev)
72 {
73 fh_devices devn = *const_cast<device *> (&dev);
74 switch (devn)
75 {
76 case FH_CONSOLE:
77 case FH_CONIN:
78 case FH_CONOUT:
79 return fhandler_console::exists ();
80 default:
81 /* Only show my own console device (for now?) */
82 return iscons_dev (myself->ctty) && myself->ctty == devn;
83 }
84 }
85
86 static int
87 exists_pty (const device& dev)
88 {
89 /* Only existing slave ptys. */
90 return cygwin_shared->tty.connect (dev.get_minor ()) != -1;
91 }
92
93 const device dev_cygdrive_storage =
94 {"/cygdrive", {FH_CYGDRIVE}, "/cygdrive", exists};
95
96 const device dev_fs_storage =
97 {"", {FH_FS}, "", exists};
98
99 const device dev_proc_storage =
100 {"", {FH_PROC}, "", exists};
101
102 const device dev_procnet_storage =
103 {"", {FH_PROCNET}, "", exists};
104
105 const device dev_procsys_storage =
106 {"", {FH_PROCSYS}, "", exists};
107
108 const device dev_procsysvipc_storage =
109 {"", {FH_PROCSYSVIPC}, "", exists};
110
111 const device dev_netdrive_storage =
112 {"", {FH_NETDRIVE}, "", exists};
113
114 const device dev_registry_storage =
115 {"", {FH_REGISTRY}, "", exists_internal};
116
117 const device dev_piper_storage =
118 {"", {FH_PIPER}, "", exists_internal};
119
120 const device dev_pipew_storage =
121 {"", {FH_PIPEW}, "", exists_internal};
122
123 const device dev_tcp_storage =
124 {"", {FH_TCP}, "", exists_internal};
125
126 const device dev_udp_storage =
127 {"", {FH_UDP}, "", exists_internal};
128
129 const device dev_stream_storage =
130 {"", {FH_STREAM}, "", exists_internal};
131
132 const device dev_dgram_storage =
133 {"", {FH_DGRAM}, "", exists_internal};
134
135 const device dev_bad_storage =
136 {"", {FH_NADA}, "", exists_internal};
137
138 const device dev_error_storage =
139 {"", {FH_ERROR}, "", exists_internal};
140
141 #define BRACK(x) {devn_int: x}
142 const _RDATA device dev_storage[] =
143 {
144 {"/dev", BRACK(FH_DEV), "/dev", exists, S_IFDIR, false},
145 {"/dev/clipboard", BRACK(FH_CLIPBOARD), "/dev/clipboard", exists, S_IFCHR, true},
146 {"/dev/com1", BRACK(FHDEV(DEV_SERIAL_MAJOR, 0)), "\\??\\COM1", exists_ntdev_silent, S_IFCHR, true},
147 {"/dev/com2", BRACK(FHDEV(DEV_SERIAL_MAJOR, 1)), "\\??\\COM2", exists_ntdev_silent, S_IFCHR, true},
148 {"/dev/com3", BRACK(FHDEV(DEV_SERIAL_MAJOR, 2)), "\\??\\COM3", exists_ntdev_silent, S_IFCHR, true},
149 {"/dev/com4", BRACK(FHDEV(DEV_SERIAL_MAJOR, 3)), "\\??\\COM4", exists_ntdev_silent, S_IFCHR, true},
150 {"/dev/com5", BRACK(FHDEV(DEV_SERIAL_MAJOR, 4)), "\\??\\COM5", exists_ntdev_silent, S_IFCHR, true},
151 {"/dev/com6", BRACK(FHDEV(DEV_SERIAL_MAJOR, 5)), "\\??\\COM6", exists_ntdev_silent, S_IFCHR, true},
152 {"/dev/com7", BRACK(FHDEV(DEV_SERIAL_MAJOR, 6)), "\\??\\COM7", exists_ntdev_silent, S_IFCHR, true},
153 {"/dev/com8", BRACK(FHDEV(DEV_SERIAL_MAJOR, 7)), "\\??\\COM8", exists_ntdev_silent, S_IFCHR, true},
154 {"/dev/com9", BRACK(FHDEV(DEV_SERIAL_MAJOR, 8)), "\\??\\COM9", exists_ntdev_silent, S_IFCHR, true},
155 {"/dev/com10", BRACK(FHDEV(DEV_SERIAL_MAJOR, 9)), "\\??\\COM10", exists_ntdev_silent, S_IFCHR, true},
156 {"/dev/com11", BRACK(FHDEV(DEV_SERIAL_MAJOR, 10)), "\\??\\COM11", exists_ntdev_silent, S_IFCHR, true},
157 {"/dev/com12", BRACK(FHDEV(DEV_SERIAL_MAJOR, 11)), "\\??\\COM12", exists_ntdev_silent, S_IFCHR, true},
158 {"/dev/com13", BRACK(FHDEV(DEV_SERIAL_MAJOR, 12)), "\\??\\COM13", exists_ntdev_silent, S_IFCHR, true},
159 {"/dev/com14", BRACK(FHDEV(DEV_SERIAL_MAJOR, 13)), "\\??\\COM14", exists_ntdev_silent, S_IFCHR, true},
160 {"/dev/com15", BRACK(FHDEV(DEV_SERIAL_MAJOR, 14)), "\\??\\COM15", exists_ntdev_silent, S_IFCHR, true},
161 {"/dev/com16", BRACK(FHDEV(DEV_SERIAL_MAJOR, 15)), "\\??\\COM16", exists_ntdev_silent, S_IFCHR, true},
162 {"/dev/conin", BRACK(FH_CONIN), "/dev/conin", exists_console, S_IFCHR, true},
163 {"/dev/conout", BRACK(FH_CONOUT), "/dev/conout", exists_console, S_IFCHR, true},
164 {"/dev/cons0", BRACK(FHDEV(DEV_CONS_MAJOR, 0)), "/dev/cons0", exists_console, S_IFCHR, true},
165 {"/dev/cons1", BRACK(FHDEV(DEV_CONS_MAJOR, 1)), "/dev/cons1", exists_console, S_IFCHR, true},
166 {"/dev/cons2", BRACK(FHDEV(DEV_CONS_MAJOR, 2)), "/dev/cons2", exists_console, S_IFCHR, true},
167 {"/dev/cons3", BRACK(FHDEV(DEV_CONS_MAJOR, 3)), "/dev/cons3", exists_console, S_IFCHR, true},
168 {"/dev/cons4", BRACK(FHDEV(DEV_CONS_MAJOR, 4)), "/dev/cons4", exists_console, S_IFCHR, true},
169 {"/dev/cons5", BRACK(FHDEV(DEV_CONS_MAJOR, 5)), "/dev/cons5", exists_console, S_IFCHR, true},
170 {"/dev/cons6", BRACK(FHDEV(DEV_CONS_MAJOR, 6)), "/dev/cons6", exists_console, S_IFCHR, true},
171 {"/dev/cons7", BRACK(FHDEV(DEV_CONS_MAJOR, 7)), "/dev/cons7", exists_console, S_IFCHR, true},
172 {"/dev/cons8", BRACK(FHDEV(DEV_CONS_MAJOR, 8)), "/dev/cons8", exists_console, S_IFCHR, true},
173 {"/dev/cons9", BRACK(FHDEV(DEV_CONS_MAJOR, 9)), "/dev/cons9", exists_console, S_IFCHR, true},
174 {"/dev/cons10", BRACK(FHDEV(DEV_CONS_MAJOR, 10)), "/dev/cons10", exists_console, S_IFCHR, true},
175 {"/dev/cons11", BRACK(FHDEV(DEV_CONS_MAJOR, 11)), "/dev/cons11", exists_console, S_IFCHR, true},
176 {"/dev/cons12", BRACK(FHDEV(DEV_CONS_MAJOR, 12)), "/dev/cons12", exists_console, S_IFCHR, true},
177 {"/dev/cons13", BRACK(FHDEV(DEV_CONS_MAJOR, 13)), "/dev/cons13", exists_console, S_IFCHR, true},
178 {"/dev/cons14", BRACK(FHDEV(DEV_CONS_MAJOR, 14)), "/dev/cons14", exists_console, S_IFCHR, true},
179 {"/dev/cons15", BRACK(FHDEV(DEV_CONS_MAJOR, 15)), "/dev/cons15", exists_console, S_IFCHR, true},
180 {"/dev/cons16", BRACK(FHDEV(DEV_CONS_MAJOR, 16)), "/dev/cons16", exists_console, S_IFCHR, true},
181 {"/dev/cons17", BRACK(FHDEV(DEV_CONS_MAJOR, 17)), "/dev/cons17", exists_console, S_IFCHR, true},
182 {"/dev/cons18", BRACK(FHDEV(DEV_CONS_MAJOR, 18)), "/dev/cons18", exists_console, S_IFCHR, true},
183 {"/dev/cons19", BRACK(FHDEV(DEV_CONS_MAJOR, 19)), "/dev/cons19", exists_console, S_IFCHR, true},
184 {"/dev/cons20", BRACK(FHDEV(DEV_CONS_MAJOR, 20)), "/dev/cons20", exists_console, S_IFCHR, true},
185 {"/dev/cons21", BRACK(FHDEV(DEV_CONS_MAJOR, 21)), "/dev/cons21", exists_console, S_IFCHR, true},
186 {"/dev/cons22", BRACK(FHDEV(DEV_CONS_MAJOR, 22)), "/dev/cons22", exists_console, S_IFCHR, true},
187 {"/dev/cons23", BRACK(FHDEV(DEV_CONS_MAJOR, 23)), "/dev/cons23", exists_console, S_IFCHR, true},
188 {"/dev/cons24", BRACK(FHDEV(DEV_CONS_MAJOR, 24)), "/dev/cons24", exists_console, S_IFCHR, true},
189 {"/dev/cons25", BRACK(FHDEV(DEV_CONS_MAJOR, 25)), "/dev/cons25", exists_console, S_IFCHR, true},
190 {"/dev/cons26", BRACK(FHDEV(DEV_CONS_MAJOR, 26)), "/dev/cons26", exists_console, S_IFCHR, true},
191 {"/dev/cons27", BRACK(FHDEV(DEV_CONS_MAJOR, 27)), "/dev/cons27", exists_console, S_IFCHR, true},
192 {"/dev/cons28", BRACK(FHDEV(DEV_CONS_MAJOR, 28)), "/dev/cons28", exists_console, S_IFCHR, true},
193 {"/dev/cons29", BRACK(FHDEV(DEV_CONS_MAJOR, 29)), "/dev/cons29", exists_console, S_IFCHR, true},
194 {"/dev/cons30", BRACK(FHDEV(DEV_CONS_MAJOR, 30)), "/dev/cons30", exists_console, S_IFCHR, true},
195 {"/dev/cons31", BRACK(FHDEV(DEV_CONS_MAJOR, 31)), "/dev/cons31", exists_console, S_IFCHR, true},
196 {"/dev/cons32", BRACK(FHDEV(DEV_CONS_MAJOR, 32)), "/dev/cons32", exists_console, S_IFCHR, true},
197 {"/dev/cons33", BRACK(FHDEV(DEV_CONS_MAJOR, 33)), "/dev/cons33", exists_console, S_IFCHR, true},
198 {"/dev/cons34", BRACK(FHDEV(DEV_CONS_MAJOR, 34)), "/dev/cons34", exists_console, S_IFCHR, true},
199 {"/dev/cons35", BRACK(FHDEV(DEV_CONS_MAJOR, 35)), "/dev/cons35", exists_console, S_IFCHR, true},
200 {"/dev/cons36", BRACK(FHDEV(DEV_CONS_MAJOR, 36)), "/dev/cons36", exists_console, S_IFCHR, true},
201 {"/dev/cons37", BRACK(FHDEV(DEV_CONS_MAJOR, 37)), "/dev/cons37", exists_console, S_IFCHR, true},
202 {"/dev/cons38", BRACK(FHDEV(DEV_CONS_MAJOR, 38)), "/dev/cons38", exists_console, S_IFCHR, true},
203 {"/dev/cons39", BRACK(FHDEV(DEV_CONS_MAJOR, 39)), "/dev/cons39", exists_console, S_IFCHR, true},
204 {"/dev/cons40", BRACK(FHDEV(DEV_CONS_MAJOR, 40)), "/dev/cons40", exists_console, S_IFCHR, true},
205 {"/dev/cons41", BRACK(FHDEV(DEV_CONS_MAJOR, 41)), "/dev/cons41", exists_console, S_IFCHR, true},
206 {"/dev/cons42", BRACK(FHDEV(DEV_CONS_MAJOR, 42)), "/dev/cons42", exists_console, S_IFCHR, true},
207 {"/dev/cons43", BRACK(FHDEV(DEV_CONS_MAJOR, 43)), "/dev/cons43", exists_console, S_IFCHR, true},
208 {"/dev/cons44", BRACK(FHDEV(DEV_CONS_MAJOR, 44)), "/dev/cons44", exists_console, S_IFCHR, true},
209 {"/dev/cons45", BRACK(FHDEV(DEV_CONS_MAJOR, 45)), "/dev/cons45", exists_console, S_IFCHR, true},
210 {"/dev/cons46", BRACK(FHDEV(DEV_CONS_MAJOR, 46)), "/dev/cons46", exists_console, S_IFCHR, true},
211 {"/dev/cons47", BRACK(FHDEV(DEV_CONS_MAJOR, 47)), "/dev/cons47", exists_console, S_IFCHR, true},
212 {"/dev/cons48", BRACK(FHDEV(DEV_CONS_MAJOR, 48)), "/dev/cons48", exists_console, S_IFCHR, true},
213 {"/dev/cons49", BRACK(FHDEV(DEV_CONS_MAJOR, 49)), "/dev/cons49", exists_console, S_IFCHR, true},
214 {"/dev/cons50", BRACK(FHDEV(DEV_CONS_MAJOR, 50)), "/dev/cons50", exists_console, S_IFCHR, true},
215 {"/dev/cons51", BRACK(FHDEV(DEV_CONS_MAJOR, 51)), "/dev/cons51", exists_console, S_IFCHR, true},
216 {"/dev/cons52", BRACK(FHDEV(DEV_CONS_MAJOR, 52)), "/dev/cons52", exists_console, S_IFCHR, true},
217 {"/dev/cons53", BRACK(FHDEV(DEV_CONS_MAJOR, 53)), "/dev/cons53", exists_console, S_IFCHR, true},
218 {"/dev/cons54", BRACK(FHDEV(DEV_CONS_MAJOR, 54)), "/dev/cons54", exists_console, S_IFCHR, true},
219 {"/dev/cons55", BRACK(FHDEV(DEV_CONS_MAJOR, 55)), "/dev/cons55", exists_console, S_IFCHR, true},
220 {"/dev/cons56", BRACK(FHDEV(DEV_CONS_MAJOR, 56)), "/dev/cons56", exists_console, S_IFCHR, true},
221 {"/dev/cons57", BRACK(FHDEV(DEV_CONS_MAJOR, 57)), "/dev/cons57", exists_console, S_IFCHR, true},
222 {"/dev/cons58", BRACK(FHDEV(DEV_CONS_MAJOR, 58)), "/dev/cons58", exists_console, S_IFCHR, true},
223 {"/dev/cons59", BRACK(FHDEV(DEV_CONS_MAJOR, 59)), "/dev/cons59", exists_console, S_IFCHR, true},
224 {"/dev/cons60", BRACK(FHDEV(DEV_CONS_MAJOR, 60)), "/dev/cons60", exists_console, S_IFCHR, true},
225 {"/dev/cons61", BRACK(FHDEV(DEV_CONS_MAJOR, 61)), "/dev/cons61", exists_console, S_IFCHR, true},
226 {"/dev/cons62", BRACK(FHDEV(DEV_CONS_MAJOR, 62)), "/dev/cons62", exists_console, S_IFCHR, true},
227 {"/dev/cons63", BRACK(FHDEV(DEV_CONS_MAJOR, 63)), "/dev/cons63", exists_console, S_IFCHR, true},
228 {"/dev/console", BRACK(FH_CONSOLE), "/dev/console", exists_console, S_IFCHR, true},
229 {"/dev/dsp", BRACK(FH_OSS_DSP), "/dev/dsp", exists, S_IFCHR, true},
230 {"/dev/fd0", BRACK(FHDEV(DEV_FLOPPY_MAJOR, 0)), "\\Device\\Floppy0", exists_ntdev, S_IFBLK, true},
231 {"/dev/fd1", BRACK(FHDEV(DEV_FLOPPY_MAJOR, 1)), "\\Device\\Floppy1", exists_ntdev, S_IFBLK, true},
232 {"/dev/fd2", BRACK(FHDEV(DEV_FLOPPY_MAJOR, 2)), "\\Device\\Floppy2", exists_ntdev, S_IFBLK, true},
233 {"/dev/fd3", BRACK(FHDEV(DEV_FLOPPY_MAJOR, 3)), "\\Device\\Floppy3", exists_ntdev, S_IFBLK, true},
234 {"/dev/fd4", BRACK(FHDEV(DEV_FLOPPY_MAJOR, 4)), "\\Device\\Floppy4", exists_ntdev, S_IFBLK, true},
235 {"/dev/fd5", BRACK(FHDEV(DEV_FLOPPY_MAJOR, 5)), "\\Device\\Floppy5", exists_ntdev, S_IFBLK, true},
236 {"/dev/fd6", BRACK(FHDEV(DEV_FLOPPY_MAJOR, 6)), "\\Device\\Floppy6", exists_ntdev, S_IFBLK, true},
237 {"/dev/fd7", BRACK(FHDEV(DEV_FLOPPY_MAJOR, 7)), "\\Device\\Floppy7", exists_ntdev, S_IFBLK, true},
238 {"/dev/fd8", BRACK(FHDEV(DEV_FLOPPY_MAJOR, 8)), "\\Device\\Floppy8", exists_ntdev, S_IFBLK, true},
239 {"/dev/fd9", BRACK(FHDEV(DEV_FLOPPY_MAJOR, 9)), "\\Device\\Floppy9", exists_ntdev, S_IFBLK, true},
240 {"/dev/fd10", BRACK(FHDEV(DEV_FLOPPY_MAJOR, 10)), "\\Device\\Floppy10", exists_ntdev, S_IFBLK, true},
241 {"/dev/fd11", BRACK(FHDEV(DEV_FLOPPY_MAJOR, 11)), "\\Device\\Floppy11", exists_ntdev, S_IFBLK, true},
242 {"/dev/fd12", BRACK(FHDEV(DEV_FLOPPY_MAJOR, 12)), "\\Device\\Floppy12", exists_ntdev, S_IFBLK, true},
243 {"/dev/fd13", BRACK(FHDEV(DEV_FLOPPY_MAJOR, 13)), "\\Device\\Floppy13", exists_ntdev, S_IFBLK, true},
244 {"/dev/fd14", BRACK(FHDEV(DEV_FLOPPY_MAJOR, 14)), "\\Device\\Floppy14", exists_ntdev, S_IFBLK, true},
245 {"/dev/fd15", BRACK(FHDEV(DEV_FLOPPY_MAJOR, 15)), "\\Device\\Floppy15", exists_ntdev, S_IFBLK, true},
246 {"/dev/full", BRACK(FH_FULL), "/dev/full", exists, S_IFCHR, true},
247 {"/dev/kmem", BRACK(FH_KMEM), "/dev/kmem", exists, S_IFCHR, true},
248 {"/dev/kmsg", BRACK(FH_KMSG), "\\Device\\MailSlot\\cygwin\\dev\\kmsg", exists_ntdev, S_IFCHR, true},
249 {"/dev/mem", BRACK(FH_MEM), "/dev/mem", exists, S_IFCHR, true},
250 {"/dev/nst0", BRACK(FHDEV(DEV_TAPE_MAJOR, 128)), "\\Device\\Tape0", exists_ntdev, S_IFBLK, true},
251 {"/dev/nst1", BRACK(FHDEV(DEV_TAPE_MAJOR, 129)), "\\Device\\Tape1", exists_ntdev, S_IFBLK, true},
252 {"/dev/nst2", BRACK(FHDEV(DEV_TAPE_MAJOR, 130)), "\\Device\\Tape2", exists_ntdev, S_IFBLK, true},
253 {"/dev/nst3", BRACK(FHDEV(DEV_TAPE_MAJOR, 131)), "\\Device\\Tape3", exists_ntdev, S_IFBLK, true},
254 {"/dev/nst4", BRACK(FHDEV(DEV_TAPE_MAJOR, 132)), "\\Device\\Tape4", exists_ntdev, S_IFBLK, true},
255 {"/dev/nst5", BRACK(FHDEV(DEV_TAPE_MAJOR, 133)), "\\Device\\Tape5", exists_ntdev, S_IFBLK, true},
256 {"/dev/nst6", BRACK(FHDEV(DEV_TAPE_MAJOR, 134)), "\\Device\\Tape6", exists_ntdev, S_IFBLK, true},
257 {"/dev/nst7", BRACK(FHDEV(DEV_TAPE_MAJOR, 135)), "\\Device\\Tape7", exists_ntdev, S_IFBLK, true},
258 {"/dev/nst8", BRACK(FHDEV(DEV_TAPE_MAJOR, 136)), "\\Device\\Tape8", exists_ntdev, S_IFBLK, true},
259 {"/dev/nst9", BRACK(FHDEV(DEV_TAPE_MAJOR, 137)), "\\Device\\Tape9", exists_ntdev, S_IFBLK, true},
260 {"/dev/nst10", BRACK(FHDEV(DEV_TAPE_MAJOR, 138)), "\\Device\\Tape10", exists_ntdev, S_IFBLK, true},
261 {"/dev/nst11", BRACK(FHDEV(DEV_TAPE_MAJOR, 139)), "\\Device\\Tape11", exists_ntdev, S_IFBLK, true},
262 {"/dev/nst12", BRACK(FHDEV(DEV_TAPE_MAJOR, 140)), "\\Device\\Tape12", exists_ntdev, S_IFBLK, true},
263 {"/dev/nst13", BRACK(FHDEV(DEV_TAPE_MAJOR, 141)), "\\Device\\Tape13", exists_ntdev, S_IFBLK, true},
264 {"/dev/nst14", BRACK(FHDEV(DEV_TAPE_MAJOR, 142)), "\\Device\\Tape14", exists_ntdev, S_IFBLK, true},
265 {"/dev/nst15", BRACK(FHDEV(DEV_TAPE_MAJOR, 143)), "\\Device\\Tape15", exists_ntdev, S_IFBLK, true},
266 {"/dev/nst16", BRACK(FHDEV(DEV_TAPE_MAJOR, 144)), "\\Device\\Tape16", exists_ntdev, S_IFBLK, true},
267 {"/dev/nst17", BRACK(FHDEV(DEV_TAPE_MAJOR, 145)), "\\Device\\Tape17", exists_ntdev, S_IFBLK, true},
268 {"/dev/nst18", BRACK(FHDEV(DEV_TAPE_MAJOR, 146)), "\\Device\\Tape18", exists_ntdev, S_IFBLK, true},
269 {"/dev/nst19", BRACK(FHDEV(DEV_TAPE_MAJOR, 147)), "\\Device\\Tape19", exists_ntdev, S_IFBLK, true},
270 {"/dev/nst20", BRACK(FHDEV(DEV_TAPE_MAJOR, 148)), "\\Device\\Tape20", exists_ntdev, S_IFBLK, true},
271 {"/dev/nst21", BRACK(FHDEV(DEV_TAPE_MAJOR, 149)), "\\Device\\Tape21", exists_ntdev, S_IFBLK, true},
272 {"/dev/nst22", BRACK(FHDEV(DEV_TAPE_MAJOR, 150)), "\\Device\\Tape22", exists_ntdev, S_IFBLK, true},
273 {"/dev/nst23", BRACK(FHDEV(DEV_TAPE_MAJOR, 151)), "\\Device\\Tape23", exists_ntdev, S_IFBLK, true},
274 {"/dev/nst24", BRACK(FHDEV(DEV_TAPE_MAJOR, 152)), "\\Device\\Tape24", exists_ntdev, S_IFBLK, true},
275 {"/dev/nst25", BRACK(FHDEV(DEV_TAPE_MAJOR, 153)), "\\Device\\Tape25", exists_ntdev, S_IFBLK, true},
276 {"/dev/nst26", BRACK(FHDEV(DEV_TAPE_MAJOR, 154)), "\\Device\\Tape26", exists_ntdev, S_IFBLK, true},
277 {"/dev/nst27", BRACK(FHDEV(DEV_TAPE_MAJOR, 155)), "\\Device\\Tape27", exists_ntdev, S_IFBLK, true},
278 {"/dev/nst28", BRACK(FHDEV(DEV_TAPE_MAJOR, 156)), "\\Device\\Tape28", exists_ntdev, S_IFBLK, true},
279 {"/dev/nst29", BRACK(FHDEV(DEV_TAPE_MAJOR, 157)), "\\Device\\Tape29", exists_ntdev, S_IFBLK, true},
280 {"/dev/nst30", BRACK(FHDEV(DEV_TAPE_MAJOR, 158)), "\\Device\\Tape30", exists_ntdev, S_IFBLK, true},
281 {"/dev/nst31", BRACK(FHDEV(DEV_TAPE_MAJOR, 159)), "\\Device\\Tape31", exists_ntdev, S_IFBLK, true},
282 {"/dev/nst32", BRACK(FHDEV(DEV_TAPE_MAJOR, 160)), "\\Device\\Tape32", exists_ntdev, S_IFBLK, true},
283 {"/dev/nst33", BRACK(FHDEV(DEV_TAPE_MAJOR, 161)), "\\Device\\Tape33", exists_ntdev, S_IFBLK, true},
284 {"/dev/nst34", BRACK(FHDEV(DEV_TAPE_MAJOR, 162)), "\\Device\\Tape34", exists_ntdev, S_IFBLK, true},
285 {"/dev/nst35", BRACK(FHDEV(DEV_TAPE_MAJOR, 163)), "\\Device\\Tape35", exists_ntdev, S_IFBLK, true},
286 {"/dev/nst36", BRACK(FHDEV(DEV_TAPE_MAJOR, 164)), "\\Device\\Tape36", exists_ntdev, S_IFBLK, true},
287 {"/dev/nst37", BRACK(FHDEV(DEV_TAPE_MAJOR, 165)), "\\Device\\Tape37", exists_ntdev, S_IFBLK, true},
288 {"/dev/nst38", BRACK(FHDEV(DEV_TAPE_MAJOR, 166)), "\\Device\\Tape38", exists_ntdev, S_IFBLK, true},
289 {"/dev/nst39", BRACK(FHDEV(DEV_TAPE_MAJOR, 167)), "\\Device\\Tape39", exists_ntdev, S_IFBLK, true},
290 {"/dev/nst40", BRACK(FHDEV(DEV_TAPE_MAJOR, 168)), "\\Device\\Tape40", exists_ntdev, S_IFBLK, true},
291 {"/dev/nst41", BRACK(FHDEV(DEV_TAPE_MAJOR, 169)), "\\Device\\Tape41", exists_ntdev, S_IFBLK, true},
292 {"/dev/nst42", BRACK(FHDEV(DEV_TAPE_MAJOR, 170)), "\\Device\\Tape42", exists_ntdev, S_IFBLK, true},
293 {"/dev/nst43", BRACK(FHDEV(DEV_TAPE_MAJOR, 171)), "\\Device\\Tape43", exists_ntdev, S_IFBLK, true},
294 {"/dev/nst44", BRACK(FHDEV(DEV_TAPE_MAJOR, 172)), "\\Device\\Tape44", exists_ntdev, S_IFBLK, true},
295 {"/dev/nst45", BRACK(FHDEV(DEV_TAPE_MAJOR, 173)), "\\Device\\Tape45", exists_ntdev, S_IFBLK, true},
296 {"/dev/nst46", BRACK(FHDEV(DEV_TAPE_MAJOR, 174)), "\\Device\\Tape46", exists_ntdev, S_IFBLK, true},
297 {"/dev/nst47", BRACK(FHDEV(DEV_TAPE_MAJOR, 175)), "\\Device\\Tape47", exists_ntdev, S_IFBLK, true},
298 {"/dev/nst48", BRACK(FHDEV(DEV_TAPE_MAJOR, 176)), "\\Device\\Tape48", exists_ntdev, S_IFBLK, true},
299 {"/dev/nst49", BRACK(FHDEV(DEV_TAPE_MAJOR, 177)), "\\Device\\Tape49", exists_ntdev, S_IFBLK, true},
300 {"/dev/nst50", BRACK(FHDEV(DEV_TAPE_MAJOR, 178)), "\\Device\\Tape50", exists_ntdev, S_IFBLK, true},
301 {"/dev/nst51", BRACK(FHDEV(DEV_TAPE_MAJOR, 179)), "\\Device\\Tape51", exists_ntdev, S_IFBLK, true},
302 {"/dev/nst52", BRACK(FHDEV(DEV_TAPE_MAJOR, 180)), "\\Device\\Tape52", exists_ntdev, S_IFBLK, true},
303 {"/dev/nst53", BRACK(FHDEV(DEV_TAPE_MAJOR, 181)), "\\Device\\Tape53", exists_ntdev, S_IFBLK, true},
304 {"/dev/nst54", BRACK(FHDEV(DEV_TAPE_MAJOR, 182)), "\\Device\\Tape54", exists_ntdev, S_IFBLK, true},
305 {"/dev/nst55", BRACK(FHDEV(DEV_TAPE_MAJOR, 183)), "\\Device\\Tape55", exists_ntdev, S_IFBLK, true},
306 {"/dev/nst56", BRACK(FHDEV(DEV_TAPE_MAJOR, 184)), "\\Device\\Tape56", exists_ntdev, S_IFBLK, true},
307 {"/dev/nst57", BRACK(FHDEV(DEV_TAPE_MAJOR, 185)), "\\Device\\Tape57", exists_ntdev, S_IFBLK, true},
308 {"/dev/nst58", BRACK(FHDEV(DEV_TAPE_MAJOR, 186)), "\\Device\\Tape58", exists_ntdev, S_IFBLK, true},
309 {"/dev/nst59", BRACK(FHDEV(DEV_TAPE_MAJOR, 187)), "\\Device\\Tape59", exists_ntdev, S_IFBLK, true},
310 {"/dev/nst60", BRACK(FHDEV(DEV_TAPE_MAJOR, 188)), "\\Device\\Tape60", exists_ntdev, S_IFBLK, true},
311 {"/dev/nst61", BRACK(FHDEV(DEV_TAPE_MAJOR, 189)), "\\Device\\Tape61", exists_ntdev, S_IFBLK, true},
312 {"/dev/nst62", BRACK(FHDEV(DEV_TAPE_MAJOR, 190)), "\\Device\\Tape62", exists_ntdev, S_IFBLK, true},
313 {"/dev/nst63", BRACK(FHDEV(DEV_TAPE_MAJOR, 191)), "\\Device\\Tape63", exists_ntdev, S_IFBLK, true},
314 {"/dev/nst64", BRACK(FHDEV(DEV_TAPE_MAJOR, 192)), "\\Device\\Tape64", exists_ntdev, S_IFBLK, true},
315 {"/dev/nst65", BRACK(FHDEV(DEV_TAPE_MAJOR, 193)), "\\Device\\Tape65", exists_ntdev, S_IFBLK, true},
316 {"/dev/nst66", BRACK(FHDEV(DEV_TAPE_MAJOR, 194)), "\\Device\\Tape66", exists_ntdev, S_IFBLK, true},
317 {"/dev/nst67", BRACK(FHDEV(DEV_TAPE_MAJOR, 195)), "\\Device\\Tape67", exists_ntdev, S_IFBLK, true},
318 {"/dev/nst68", BRACK(FHDEV(DEV_TAPE_MAJOR, 196)), "\\Device\\Tape68", exists_ntdev, S_IFBLK, true},
319 {"/dev/nst69", BRACK(FHDEV(DEV_TAPE_MAJOR, 197)), "\\Device\\Tape69", exists_ntdev, S_IFBLK, true},
320 {"/dev/nst70", BRACK(FHDEV(DEV_TAPE_MAJOR, 198)), "\\Device\\Tape70", exists_ntdev, S_IFBLK, true},
321 {"/dev/nst71", BRACK(FHDEV(DEV_TAPE_MAJOR, 199)), "\\Device\\Tape71", exists_ntdev, S_IFBLK, true},
322 {"/dev/nst72", BRACK(FHDEV(DEV_TAPE_MAJOR, 200)), "\\Device\\Tape72", exists_ntdev, S_IFBLK, true},
323 {"/dev/nst73", BRACK(FHDEV(DEV_TAPE_MAJOR, 201)), "\\Device\\Tape73", exists_ntdev, S_IFBLK, true},
324 {"/dev/nst74", BRACK(FHDEV(DEV_TAPE_MAJOR, 202)), "\\Device\\Tape74", exists_ntdev, S_IFBLK, true},
325 {"/dev/nst75", BRACK(FHDEV(DEV_TAPE_MAJOR, 203)), "\\Device\\Tape75", exists_ntdev, S_IFBLK, true},
326 {"/dev/nst76", BRACK(FHDEV(DEV_TAPE_MAJOR, 204)), "\\Device\\Tape76", exists_ntdev, S_IFBLK, true},
327 {"/dev/nst77", BRACK(FHDEV(DEV_TAPE_MAJOR, 205)), "\\Device\\Tape77", exists_ntdev, S_IFBLK, true},
328 {"/dev/nst78", BRACK(FHDEV(DEV_TAPE_MAJOR, 206)), "\\Device\\Tape78", exists_ntdev, S_IFBLK, true},
329 {"/dev/nst79", BRACK(FHDEV(DEV_TAPE_MAJOR, 207)), "\\Device\\Tape79", exists_ntdev, S_IFBLK, true},
330 {"/dev/nst80", BRACK(FHDEV(DEV_TAPE_MAJOR, 208)), "\\Device\\Tape80", exists_ntdev, S_IFBLK, true},
331 {"/dev/nst81", BRACK(FHDEV(DEV_TAPE_MAJOR, 209)), "\\Device\\Tape81", exists_ntdev, S_IFBLK, true},
332 {"/dev/nst82", BRACK(FHDEV(DEV_TAPE_MAJOR, 210)), "\\Device\\Tape82", exists_ntdev, S_IFBLK, true},
333 {"/dev/nst83", BRACK(FHDEV(DEV_TAPE_MAJOR, 211)), "\\Device\\Tape83", exists_ntdev, S_IFBLK, true},
334 {"/dev/nst84", BRACK(FHDEV(DEV_TAPE_MAJOR, 212)), "\\Device\\Tape84", exists_ntdev, S_IFBLK, true},
335 {"/dev/nst85", BRACK(FHDEV(DEV_TAPE_MAJOR, 213)), "\\Device\\Tape85", exists_ntdev, S_IFBLK, true},
336 {"/dev/nst86", BRACK(FHDEV(DEV_TAPE_MAJOR, 214)), "\\Device\\Tape86", exists_ntdev, S_IFBLK, true},
337 {"/dev/nst87", BRACK(FHDEV(DEV_TAPE_MAJOR, 215)), "\\Device\\Tape87", exists_ntdev, S_IFBLK, true},
338 {"/dev/nst88", BRACK(FHDEV(DEV_TAPE_MAJOR, 216)), "\\Device\\Tape88", exists_ntdev, S_IFBLK, true},
339 {"/dev/nst89", BRACK(FHDEV(DEV_TAPE_MAJOR, 217)), "\\Device\\Tape89", exists_ntdev, S_IFBLK, true},
340 {"/dev/nst90", BRACK(FHDEV(DEV_TAPE_MAJOR, 218)), "\\Device\\Tape90", exists_ntdev, S_IFBLK, true},
341 {"/dev/nst91", BRACK(FHDEV(DEV_TAPE_MAJOR, 219)), "\\Device\\Tape91", exists_ntdev, S_IFBLK, true},
342 {"/dev/nst92", BRACK(FHDEV(DEV_TAPE_MAJOR, 220)), "\\Device\\Tape92", exists_ntdev, S_IFBLK, true},
343 {"/dev/nst93", BRACK(FHDEV(DEV_TAPE_MAJOR, 221)), "\\Device\\Tape93", exists_ntdev, S_IFBLK, true},
344 {"/dev/nst94", BRACK(FHDEV(DEV_TAPE_MAJOR, 222)), "\\Device\\Tape94", exists_ntdev, S_IFBLK, true},
345 {"/dev/nst95", BRACK(FHDEV(DEV_TAPE_MAJOR, 223)), "\\Device\\Tape95", exists_ntdev, S_IFBLK, true},
346 {"/dev/nst96", BRACK(FHDEV(DEV_TAPE_MAJOR, 224)), "\\Device\\Tape96", exists_ntdev, S_IFBLK, true},
347 {"/dev/nst97", BRACK(FHDEV(DEV_TAPE_MAJOR, 225)), "\\Device\\Tape97", exists_ntdev, S_IFBLK, true},
348 {"/dev/nst98", BRACK(FHDEV(DEV_TAPE_MAJOR, 226)), "\\Device\\Tape98", exists_ntdev, S_IFBLK, true},
349 {"/dev/nst99", BRACK(FHDEV(DEV_TAPE_MAJOR, 227)), "\\Device\\Tape99", exists_ntdev, S_IFBLK, true},
350 {"/dev/nst100", BRACK(FHDEV(DEV_TAPE_MAJOR, 228)), "\\Device\\Tape100", exists_ntdev, S_IFBLK, true},
351 {"/dev/nst101", BRACK(FHDEV(DEV_TAPE_MAJOR, 229)), "\\Device\\Tape101", exists_ntdev, S_IFBLK, true},
352 {"/dev/nst102", BRACK(FHDEV(DEV_TAPE_MAJOR, 230)), "\\Device\\Tape102", exists_ntdev, S_IFBLK, true},
353 {"/dev/nst103", BRACK(FHDEV(DEV_TAPE_MAJOR, 231)), "\\Device\\Tape103", exists_ntdev, S_IFBLK, true},
354 {"/dev/nst104", BRACK(FHDEV(DEV_TAPE_MAJOR, 232)), "\\Device\\Tape104", exists_ntdev, S_IFBLK, true},
355 {"/dev/nst105", BRACK(FHDEV(DEV_TAPE_MAJOR, 233)), "\\Device\\Tape105", exists_ntdev, S_IFBLK, true},
356 {"/dev/nst106", BRACK(FHDEV(DEV_TAPE_MAJOR, 234)), "\\Device\\Tape106", exists_ntdev, S_IFBLK, true},
357 {"/dev/nst107", BRACK(FHDEV(DEV_TAPE_MAJOR, 235)), "\\Device\\Tape107", exists_ntdev, S_IFBLK, true},
358 {"/dev/nst108", BRACK(FHDEV(DEV_TAPE_MAJOR, 236)), "\\Device\\Tape108", exists_ntdev, S_IFBLK, true},
359 {"/dev/nst109", BRACK(FHDEV(DEV_TAPE_MAJOR, 237)), "\\Device\\Tape109", exists_ntdev, S_IFBLK, true},
360 {"/dev/nst110", BRACK(FHDEV(DEV_TAPE_MAJOR, 238)), "\\Device\\Tape110", exists_ntdev, S_IFBLK, true},
361 {"/dev/nst111", BRACK(FHDEV(DEV_TAPE_MAJOR, 239)), "\\Device\\Tape111", exists_ntdev, S_IFBLK, true},
362 {"/dev/nst112", BRACK(FHDEV(DEV_TAPE_MAJOR, 240)), "\\Device\\Tape112", exists_ntdev, S_IFBLK, true},
363 {"/dev/nst113", BRACK(FHDEV(DEV_TAPE_MAJOR, 241)), "\\Device\\Tape113", exists_ntdev, S_IFBLK, true},
364 {"/dev/nst114", BRACK(FHDEV(DEV_TAPE_MAJOR, 242)), "\\Device\\Tape114", exists_ntdev, S_IFBLK, true},
365 {"/dev/nst115", BRACK(FHDEV(DEV_TAPE_MAJOR, 243)), "\\Device\\Tape115", exists_ntdev, S_IFBLK, true},
366 {"/dev/nst116", BRACK(FHDEV(DEV_TAPE_MAJOR, 244)), "\\Device\\Tape116", exists_ntdev, S_IFBLK, true},
367 {"/dev/nst117", BRACK(FHDEV(DEV_TAPE_MAJOR, 245)), "\\Device\\Tape117", exists_ntdev, S_IFBLK, true},
368 {"/dev/nst118", BRACK(FHDEV(DEV_TAPE_MAJOR, 246)), "\\Device\\Tape118", exists_ntdev, S_IFBLK, true},
369 {"/dev/nst119", BRACK(FHDEV(DEV_TAPE_MAJOR, 247)), "\\Device\\Tape119", exists_ntdev, S_IFBLK, true},
370 {"/dev/nst120", BRACK(FHDEV(DEV_TAPE_MAJOR, 248)), "\\Device\\Tape120", exists_ntdev, S_IFBLK, true},
371 {"/dev/nst121", BRACK(FHDEV(DEV_TAPE_MAJOR, 249)), "\\Device\\Tape121", exists_ntdev, S_IFBLK, true},
372 {"/dev/nst122", BRACK(FHDEV(DEV_TAPE_MAJOR, 250)), "\\Device\\Tape122", exists_ntdev, S_IFBLK, true},
373 {"/dev/nst123", BRACK(FHDEV(DEV_TAPE_MAJOR, 251)), "\\Device\\Tape123", exists_ntdev, S_IFBLK, true},
374 {"/dev/nst124", BRACK(FHDEV(DEV_TAPE_MAJOR, 252)), "\\Device\\Tape124", exists_ntdev, S_IFBLK, true},
375 {"/dev/nst125", BRACK(FHDEV(DEV_TAPE_MAJOR, 253)), "\\Device\\Tape125", exists_ntdev, S_IFBLK, true},
376 {"/dev/nst126", BRACK(FHDEV(DEV_TAPE_MAJOR, 254)), "\\Device\\Tape126", exists_ntdev, S_IFBLK, true},
377 {"/dev/nst127", BRACK(FHDEV(DEV_TAPE_MAJOR, 255)), "\\Device\\Tape127", exists_ntdev, S_IFBLK, true},
378 {"/dev/null", BRACK(FH_NULL), "\\Device\\Null", exists_ntdev, S_IFCHR, true},
379 {"/dev/port", BRACK(FH_PORT), "/dev/port", exists, S_IFCHR, true},
380 {"/dev/ptmx", BRACK(FH_PTMX), "/dev/ptmx", exists, S_IFCHR, true},
381 {"/dev/pty0", BRACK(FHDEV(DEV_PTYS_MAJOR, 0)), "/dev/pty0", exists_pty, S_IFCHR, true},
382 {"/dev/pty1", BRACK(FHDEV(DEV_PTYS_MAJOR, 1)), "/dev/pty1", exists_pty, S_IFCHR, true},
383 {"/dev/pty2", BRACK(FHDEV(DEV_PTYS_MAJOR, 2)), "/dev/pty2", exists_pty, S_IFCHR, true},
384 {"/dev/pty3", BRACK(FHDEV(DEV_PTYS_MAJOR, 3)), "/dev/pty3", exists_pty, S_IFCHR, true},
385 {"/dev/pty4", BRACK(FHDEV(DEV_PTYS_MAJOR, 4)), "/dev/pty4", exists_pty, S_IFCHR, true},
386 {"/dev/pty5", BRACK(FHDEV(DEV_PTYS_MAJOR, 5)), "/dev/pty5", exists_pty, S_IFCHR, true},
387 {"/dev/pty6", BRACK(FHDEV(DEV_PTYS_MAJOR, 6)), "/dev/pty6", exists_pty, S_IFCHR, true},
388 {"/dev/pty7", BRACK(FHDEV(DEV_PTYS_MAJOR, 7)), "/dev/pty7", exists_pty, S_IFCHR, true},
389 {"/dev/pty8", BRACK(FHDEV(DEV_PTYS_MAJOR, 8)), "/dev/pty8", exists_pty, S_IFCHR, true},
390 {"/dev/pty9", BRACK(FHDEV(DEV_PTYS_MAJOR, 9)), "/dev/pty9", exists_pty, S_IFCHR, true},
391 {"/dev/pty10", BRACK(FHDEV(DEV_PTYS_MAJOR, 10)), "/dev/pty10", exists_pty, S_IFCHR, true},
392 {"/dev/pty11", BRACK(FHDEV(DEV_PTYS_MAJOR, 11)), "/dev/pty11", exists_pty, S_IFCHR, true},
393 {"/dev/pty12", BRACK(FHDEV(DEV_PTYS_MAJOR, 12)), "/dev/pty12", exists_pty, S_IFCHR, true},
394 {"/dev/pty13", BRACK(FHDEV(DEV_PTYS_MAJOR, 13)), "/dev/pty13", exists_pty, S_IFCHR, true},
395 {"/dev/pty14", BRACK(FHDEV(DEV_PTYS_MAJOR, 14)), "/dev/pty14", exists_pty, S_IFCHR, true},
396 {"/dev/pty15", BRACK(FHDEV(DEV_PTYS_MAJOR, 15)), "/dev/pty15", exists_pty, S_IFCHR, true},
397 {"/dev/pty16", BRACK(FHDEV(DEV_PTYS_MAJOR, 16)), "/dev/pty16", exists_pty, S_IFCHR, true},
398 {"/dev/pty17", BRACK(FHDEV(DEV_PTYS_MAJOR, 17)), "/dev/pty17", exists_pty, S_IFCHR, true},
399 {"/dev/pty18", BRACK(FHDEV(DEV_PTYS_MAJOR, 18)), "/dev/pty18", exists_pty, S_IFCHR, true},
400 {"/dev/pty19", BRACK(FHDEV(DEV_PTYS_MAJOR, 19)), "/dev/pty19", exists_pty, S_IFCHR, true},
401 {"/dev/pty20", BRACK(FHDEV(DEV_PTYS_MAJOR, 20)), "/dev/pty20", exists_pty, S_IFCHR, true},
402 {"/dev/pty21", BRACK(FHDEV(DEV_PTYS_MAJOR, 21)), "/dev/pty21", exists_pty, S_IFCHR, true},
403 {"/dev/pty22", BRACK(FHDEV(DEV_PTYS_MAJOR, 22)), "/dev/pty22", exists_pty, S_IFCHR, true},
404 {"/dev/pty23", BRACK(FHDEV(DEV_PTYS_MAJOR, 23)), "/dev/pty23", exists_pty, S_IFCHR, true},
405 {"/dev/pty24", BRACK(FHDEV(DEV_PTYS_MAJOR, 24)), "/dev/pty24", exists_pty, S_IFCHR, true},
406 {"/dev/pty25", BRACK(FHDEV(DEV_PTYS_MAJOR, 25)), "/dev/pty25", exists_pty, S_IFCHR, true},
407 {"/dev/pty26", BRACK(FHDEV(DEV_PTYS_MAJOR, 26)), "/dev/pty26", exists_pty, S_IFCHR, true},
408 {"/dev/pty27", BRACK(FHDEV(DEV_PTYS_MAJOR, 27)), "/dev/pty27", exists_pty, S_IFCHR, true},
409 {"/dev/pty28", BRACK(FHDEV(DEV_PTYS_MAJOR, 28)), "/dev/pty28", exists_pty, S_IFCHR, true},
410 {"/dev/pty29", BRACK(FHDEV(DEV_PTYS_MAJOR, 29)), "/dev/pty29", exists_pty, S_IFCHR, true},
411 {"/dev/pty30", BRACK(FHDEV(DEV_PTYS_MAJOR, 30)), "/dev/pty30", exists_pty, S_IFCHR, true},
412 {"/dev/pty31", BRACK(FHDEV(DEV_PTYS_MAJOR, 31)), "/dev/pty31", exists_pty, S_IFCHR, true},
413 {"/dev/pty32", BRACK(FHDEV(DEV_PTYS_MAJOR, 32)), "/dev/pty32", exists_pty, S_IFCHR, true},
414 {"/dev/pty33", BRACK(FHDEV(DEV_PTYS_MAJOR, 33)), "/dev/pty33", exists_pty, S_IFCHR, true},
415 {"/dev/pty34", BRACK(FHDEV(DEV_PTYS_MAJOR, 34)), "/dev/pty34", exists_pty, S_IFCHR, true},
416 {"/dev/pty35", BRACK(FHDEV(DEV_PTYS_MAJOR, 35)), "/dev/pty35", exists_pty, S_IFCHR, true},
417 {"/dev/pty36", BRACK(FHDEV(DEV_PTYS_MAJOR, 36)), "/dev/pty36", exists_pty, S_IFCHR, true},
418 {"/dev/pty37", BRACK(FHDEV(DEV_PTYS_MAJOR, 37)), "/dev/pty37", exists_pty, S_IFCHR, true},
419 {"/dev/pty38", BRACK(FHDEV(DEV_PTYS_MAJOR, 38)), "/dev/pty38", exists_pty, S_IFCHR, true},
420 {"/dev/pty39", BRACK(FHDEV(DEV_PTYS_MAJOR, 39)), "/dev/pty39", exists_pty, S_IFCHR, true},
421 {"/dev/pty40", BRACK(FHDEV(DEV_PTYS_MAJOR, 40)), "/dev/pty40", exists_pty, S_IFCHR, true},
422 {"/dev/pty41", BRACK(FHDEV(DEV_PTYS_MAJOR, 41)), "/dev/pty41", exists_pty, S_IFCHR, true},
423 {"/dev/pty42", BRACK(FHDEV(DEV_PTYS_MAJOR, 42)), "/dev/pty42", exists_pty, S_IFCHR, true},
424 {"/dev/pty43", BRACK(FHDEV(DEV_PTYS_MAJOR, 43)), "/dev/pty43", exists_pty, S_IFCHR, true},
425 {"/dev/pty44", BRACK(FHDEV(DEV_PTYS_MAJOR, 44)), "/dev/pty44", exists_pty, S_IFCHR, true},
426 {"/dev/pty45", BRACK(FHDEV(DEV_PTYS_MAJOR, 45)), "/dev/pty45", exists_pty, S_IFCHR, true},
427 {"/dev/pty46", BRACK(FHDEV(DEV_PTYS_MAJOR, 46)), "/dev/pty46", exists_pty, S_IFCHR, true},
428 {"/dev/pty47", BRACK(FHDEV(DEV_PTYS_MAJOR, 47)), "/dev/pty47", exists_pty, S_IFCHR, true},
429 {"/dev/pty48", BRACK(FHDEV(DEV_PTYS_MAJOR, 48)), "/dev/pty48", exists_pty, S_IFCHR, true},
430 {"/dev/pty49", BRACK(FHDEV(DEV_PTYS_MAJOR, 49)), "/dev/pty49", exists_pty, S_IFCHR, true},
431 {"/dev/pty50", BRACK(FHDEV(DEV_PTYS_MAJOR, 50)), "/dev/pty50", exists_pty, S_IFCHR, true},
432 {"/dev/pty51", BRACK(FHDEV(DEV_PTYS_MAJOR, 51)), "/dev/pty51", exists_pty, S_IFCHR, true},
433 {"/dev/pty52", BRACK(FHDEV(DEV_PTYS_MAJOR, 52)), "/dev/pty52", exists_pty, S_IFCHR, true},
434 {"/dev/pty53", BRACK(FHDEV(DEV_PTYS_MAJOR, 53)), "/dev/pty53", exists_pty, S_IFCHR, true},
435 {"/dev/pty54", BRACK(FHDEV(DEV_PTYS_MAJOR, 54)), "/dev/pty54", exists_pty, S_IFCHR, true},
436 {"/dev/pty55", BRACK(FHDEV(DEV_PTYS_MAJOR, 55)), "/dev/pty55", exists_pty, S_IFCHR, true},
437 {"/dev/pty56", BRACK(FHDEV(DEV_PTYS_MAJOR, 56)), "/dev/pty56", exists_pty, S_IFCHR, true},
438 {"/dev/pty57", BRACK(FHDEV(DEV_PTYS_MAJOR, 57)), "/dev/pty57", exists_pty, S_IFCHR, true},
439 {"/dev/pty58", BRACK(FHDEV(DEV_PTYS_MAJOR, 58)), "/dev/pty58", exists_pty, S_IFCHR, true},
440 {"/dev/pty59", BRACK(FHDEV(DEV_PTYS_MAJOR, 59)), "/dev/pty59", exists_pty, S_IFCHR, true},
441 {"/dev/pty60", BRACK(FHDEV(DEV_PTYS_MAJOR, 60)), "/dev/pty60", exists_pty, S_IFCHR, true},
442 {"/dev/pty61", BRACK(FHDEV(DEV_PTYS_MAJOR, 61)), "/dev/pty61", exists_pty, S_IFCHR, true},
443 {"/dev/pty62", BRACK(FHDEV(DEV_PTYS_MAJOR, 62)), "/dev/pty62", exists_pty, S_IFCHR, true},
444 {"/dev/pty63", BRACK(FHDEV(DEV_PTYS_MAJOR, 63)), "/dev/pty63", exists_pty, S_IFCHR, true},
445 {"/dev/random", BRACK(FH_RANDOM), "/dev/random", exists, S_IFCHR, true},
446 {"/dev/scd0", BRACK(FHDEV(DEV_CDROM_MAJOR, 0)), "\\Device\\CdRom0", exists_ntdev, S_IFBLK, true},
447 {"/dev/scd1", BRACK(FHDEV(DEV_CDROM_MAJOR, 1)), "\\Device\\CdRom1", exists_ntdev, S_IFBLK, true},
448 {"/dev/scd2", BRACK(FHDEV(DEV_CDROM_MAJOR, 2)), "\\Device\\CdRom2", exists_ntdev, S_IFBLK, true},
449 {"/dev/scd3", BRACK(FHDEV(DEV_CDROM_MAJOR, 3)), "\\Device\\CdRom3", exists_ntdev, S_IFBLK, true},
450 {"/dev/scd4", BRACK(FHDEV(DEV_CDROM_MAJOR, 4)), "\\Device\\CdRom4", exists_ntdev, S_IFBLK, true},
451 {"/dev/scd5", BRACK(FHDEV(DEV_CDROM_MAJOR, 5)), "\\Device\\CdRom5", exists_ntdev, S_IFBLK, true},
452 {"/dev/scd6", BRACK(FHDEV(DEV_CDROM_MAJOR, 6)), "\\Device\\CdRom6", exists_ntdev, S_IFBLK, true},
453 {"/dev/scd7", BRACK(FHDEV(DEV_CDROM_MAJOR, 7)), "\\Device\\CdRom7", exists_ntdev, S_IFBLK, true},
454 {"/dev/scd8", BRACK(FHDEV(DEV_CDROM_MAJOR, 8)), "\\Device\\CdRom8", exists_ntdev, S_IFBLK, true},
455 {"/dev/scd9", BRACK(FHDEV(DEV_CDROM_MAJOR, 9)), "\\Device\\CdRom9", exists_ntdev, S_IFBLK, true},
456 {"/dev/scd10", BRACK(FHDEV(DEV_CDROM_MAJOR, 10)), "\\Device\\CdRom10", exists_ntdev, S_IFBLK, true},
457 {"/dev/scd11", BRACK(FHDEV(DEV_CDROM_MAJOR, 11)), "\\Device\\CdRom11", exists_ntdev, S_IFBLK, true},
458 {"/dev/scd12", BRACK(FHDEV(DEV_CDROM_MAJOR, 12)), "\\Device\\CdRom12", exists_ntdev, S_IFBLK, true},
459 {"/dev/scd13", BRACK(FHDEV(DEV_CDROM_MAJOR, 13)), "\\Device\\CdRom13", exists_ntdev, S_IFBLK, true},
460 {"/dev/scd14", BRACK(FHDEV(DEV_CDROM_MAJOR, 14)), "\\Device\\CdRom14", exists_ntdev, S_IFBLK, true},
461 {"/dev/scd15", BRACK(FHDEV(DEV_CDROM_MAJOR, 15)), "\\Device\\CdRom15", exists_ntdev, S_IFBLK, true},
462 {"/dev/sda", BRACK(FH_SDA), "\\Device\\Harddisk0\\Partition0", exists_ntdev, S_IFBLK, true},
463 {"/dev/sdb", BRACK(FH_SDB), "\\Device\\Harddisk1\\Partition0", exists_ntdev, S_IFBLK, true},
464 {"/dev/sdc", BRACK(FH_SDC), "\\Device\\Harddisk2\\Partition0", exists_ntdev, S_IFBLK, true},
465 {"/dev/sdd", BRACK(FH_SDD), "\\Device\\Harddisk3\\Partition0", exists_ntdev, S_IFBLK, true},
466 {"/dev/sde", BRACK(FH_SDE), "\\Device\\Harddisk4\\Partition0", exists_ntdev, S_IFBLK, true},
467 {"/dev/sdf", BRACK(FH_SDF), "\\Device\\Harddisk5\\Partition0", exists_ntdev, S_IFBLK, true},
468 {"/dev/sdg", BRACK(FH_SDG), "\\Device\\Harddisk6\\Partition0", exists_ntdev, S_IFBLK, true},
469 {"/dev/sdh", BRACK(FH_SDH), "\\Device\\Harddisk7\\Partition0", exists_ntdev, S_IFBLK, true},
470 {"/dev/sdi", BRACK(FH_SDI), "\\Device\\Harddisk8\\Partition0", exists_ntdev, S_IFBLK, true},
471 {"/dev/sdj", BRACK(FH_SDJ), "\\Device\\Harddisk9\\Partition0", exists_ntdev, S_IFBLK, true},
472 {"/dev/sdk", BRACK(FH_SDK), "\\Device\\Harddisk10\\Partition0", exists_ntdev, S_IFBLK, true},
473 {"/dev/sdl", BRACK(FH_SDL), "\\Device\\Harddisk11\\Partition0", exists_ntdev, S_IFBLK, true},
474 {"/dev/sdm", BRACK(FH_SDM), "\\Device\\Harddisk12\\Partition0", exists_ntdev, S_IFBLK, true},
475 {"/dev/sdn", BRACK(FH_SDN), "\\Device\\Harddisk13\\Partition0", exists_ntdev, S_IFBLK, true},
476 {"/dev/sdo", BRACK(FH_SDO), "\\Device\\Harddisk14\\Partition0", exists_ntdev, S_IFBLK, true},
477 {"/dev/sdp", BRACK(FH_SDP), "\\Device\\Harddisk15\\Partition0", exists_ntdev, S_IFBLK, true},
478 {"/dev/sdq", BRACK(FH_SDQ), "\\Device\\Harddisk16\\Partition0", exists_ntdev, S_IFBLK, true},
479 {"/dev/sdr", BRACK(FH_SDR), "\\Device\\Harddisk17\\Partition0", exists_ntdev, S_IFBLK, true},
480 {"/dev/sds", BRACK(FH_SDS), "\\Device\\Harddisk18\\Partition0", exists_ntdev, S_IFBLK, true},
481 {"/dev/sdt", BRACK(FH_SDT), "\\Device\\Harddisk19\\Partition0", exists_ntdev, S_IFBLK, true},
482 {"/dev/sdu", BRACK(FH_SDU), "\\Device\\Harddisk20\\Partition0", exists_ntdev, S_IFBLK, true},
483 {"/dev/sdv", BRACK(FH_SDV), "\\Device\\Harddisk21\\Partition0", exists_ntdev, S_IFBLK, true},
484 {"/dev/sdw", BRACK(FH_SDW), "\\Device\\Harddisk22\\Partition0", exists_ntdev, S_IFBLK, true},
485 {"/dev/sdx", BRACK(FH_SDX), "\\Device\\Harddisk23\\Partition0", exists_ntdev, S_IFBLK, true},
486 {"/dev/sdy", BRACK(FH_SDY), "\\Device\\Harddisk24\\Partition0", exists_ntdev, S_IFBLK, true},
487 {"/dev/sdz", BRACK(FH_SDZ), "\\Device\\Harddisk25\\Partition0", exists_ntdev, S_IFBLK, true},
488 {"/dev/sda1", BRACK(FH_SDA | 1), "\\Device\\Harddisk0\\Partition1", exists_ntdev, S_IFBLK, true},
489 {"/dev/sda2", BRACK(FH_SDA | 2), "\\Device\\Harddisk0\\Partition2", exists_ntdev, S_IFBLK, true},
490 {"/dev/sda3", BRACK(FH_SDA | 3), "\\Device\\Harddisk0\\Partition3", exists_ntdev, S_IFBLK, true},
491 {"/dev/sda4", BRACK(FH_SDA | 4), "\\Device\\Harddisk0\\Partition4", exists_ntdev, S_IFBLK, true},
492 {"/dev/sda5", BRACK(FH_SDA | 5), "\\Device\\Harddisk0\\Partition5", exists_ntdev, S_IFBLK, true},
493 {"/dev/sda6", BRACK(FH_SDA | 6), "\\Device\\Harddisk0\\Partition6", exists_ntdev, S_IFBLK, true},
494 {"/dev/sda7", BRACK(FH_SDA | 7), "\\Device\\Harddisk0\\Partition7", exists_ntdev, S_IFBLK, true},
495 {"/dev/sda8", BRACK(FH_SDA | 8), "\\Device\\Harddisk0\\Partition8", exists_ntdev, S_IFBLK, true},
496 {"/dev/sda9", BRACK(FH_SDA | 9), "\\Device\\Harddisk0\\Partition9", exists_ntdev, S_IFBLK, true},
497 {"/dev/sda10", BRACK(FH_SDA | 10), "\\Device\\Harddisk0\\Partition10", exists_ntdev, S_IFBLK, true},
498 {"/dev/sda11", BRACK(FH_SDA | 11), "\\Device\\Harddisk0\\Partition11", exists_ntdev, S_IFBLK, true},
499 {"/dev/sda12", BRACK(FH_SDA | 12), "\\Device\\Harddisk0\\Partition12", exists_ntdev, S_IFBLK, true},
500 {"/dev/sda13", BRACK(FH_SDA | 13), "\\Device\\Harddisk0\\Partition13", exists_ntdev, S_IFBLK, true},
501 {"/dev/sda14", BRACK(FH_SDA | 14), "\\Device\\Harddisk0\\Partition14", exists_ntdev, S_IFBLK, true},
502 {"/dev/sda15", BRACK(FH_SDA | 15), "\\Device\\Harddisk0\\Partition15", exists_ntdev, S_IFBLK, true},
503 {"/dev/sdb1", BRACK(FH_SDB | 1), "\\Device\\Harddisk1\\Partition1", exists_ntdev, S_IFBLK, true},
504 {"/dev/sdb2", BRACK(FH_SDB | 2), "\\Device\\Harddisk1\\Partition2", exists_ntdev, S_IFBLK, true},
505 {"/dev/sdb3", BRACK(FH_SDB | 3), "\\Device\\Harddisk1\\Partition3", exists_ntdev, S_IFBLK, true},
506 {"/dev/sdb4", BRACK(FH_SDB | 4), "\\Device\\Harddisk1\\Partition4", exists_ntdev, S_IFBLK, true},
507 {"/dev/sdb5", BRACK(FH_SDB | 5), "\\Device\\Harddisk1\\Partition5", exists_ntdev, S_IFBLK, true},
508 {"/dev/sdb6", BRACK(FH_SDB | 6), "\\Device\\Harddisk1\\Partition6", exists_ntdev, S_IFBLK, true},
509 {"/dev/sdb7", BRACK(FH_SDB | 7), "\\Device\\Harddisk1\\Partition7", exists_ntdev, S_IFBLK, true},
510 {"/dev/sdb8", BRACK(FH_SDB | 8), "\\Device\\Harddisk1\\Partition8", exists_ntdev, S_IFBLK, true},
511 {"/dev/sdb9", BRACK(FH_SDB | 9), "\\Device\\Harddisk1\\Partition9", exists_ntdev, S_IFBLK, true},
512 {"/dev/sdb10", BRACK(FH_SDB | 10), "\\Device\\Harddisk1\\Partition10", exists_ntdev, S_IFBLK, true},
513 {"/dev/sdb11", BRACK(FH_SDB | 11), "\\Device\\Harddisk1\\Partition11", exists_ntdev, S_IFBLK, true},
514 {"/dev/sdb12", BRACK(FH_SDB | 12), "\\Device\\Harddisk1\\Partition12", exists_ntdev, S_IFBLK, true},
515 {"/dev/sdb13", BRACK(FH_SDB | 13), "\\Device\\Harddisk1\\Partition13", exists_ntdev, S_IFBLK, true},
516 {"/dev/sdb14", BRACK(FH_SDB | 14), "\\Device\\Harddisk1\\Partition14", exists_ntdev, S_IFBLK, true},
517 {"/dev/sdb15", BRACK(FH_SDB | 15), "\\Device\\Harddisk1\\Partition15", exists_ntdev, S_IFBLK, true},
518 {"/dev/sdc1", BRACK(FH_SDC | 1), "\\Device\\Harddisk2\\Partition1", exists_ntdev, S_IFBLK, true},
519 {"/dev/sdc2", BRACK(FH_SDC | 2), "\\Device\\Harddisk2\\Partition2", exists_ntdev, S_IFBLK, true},
520 {"/dev/sdc3", BRACK(FH_SDC | 3), "\\Device\\Harddisk2\\Partition3", exists_ntdev, S_IFBLK, true},
521 {"/dev/sdc4", BRACK(FH_SDC | 4), "\\Device\\Harddisk2\\Partition4", exists_ntdev, S_IFBLK, true},
522 {"/dev/sdc5", BRACK(FH_SDC | 5), "\\Device\\Harddisk2\\Partition5", exists_ntdev, S_IFBLK, true},
523 {"/dev/sdc6", BRACK(FH_SDC | 6), "\\Device\\Harddisk2\\Partition6", exists_ntdev, S_IFBLK, true},
524 {"/dev/sdc7", BRACK(FH_SDC | 7), "\\Device\\Harddisk2\\Partition7", exists_ntdev, S_IFBLK, true},
525 {"/dev/sdc8", BRACK(FH_SDC | 8), "\\Device\\Harddisk2\\Partition8", exists_ntdev, S_IFBLK, true},
526 {"/dev/sdc9", BRACK(FH_SDC | 9), "\\Device\\Harddisk2\\Partition9", exists_ntdev, S_IFBLK, true},
527 {"/dev/sdc10", BRACK(FH_SDC | 10), "\\Device\\Harddisk2\\Partition10", exists_ntdev, S_IFBLK, true},
528 {"/dev/sdc11", BRACK(FH_SDC | 11), "\\Device\\Harddisk2\\Partition11", exists_ntdev, S_IFBLK, true},
529 {"/dev/sdc12", BRACK(FH_SDC | 12), "\\Device\\Harddisk2\\Partition12", exists_ntdev, S_IFBLK, true},
530 {"/dev/sdc13", BRACK(FH_SDC | 13), "\\Device\\Harddisk2\\Partition13", exists_ntdev, S_IFBLK, true},
531 {"/dev/sdc14", BRACK(FH_SDC | 14), "\\Device\\Harddisk2\\Partition14", exists_ntdev, S_IFBLK, true},
532 {"/dev/sdc15", BRACK(FH_SDC | 15), "\\Device\\Harddisk2\\Partition15", exists_ntdev, S_IFBLK, true},
533 {"/dev/sdd1", BRACK(FH_SDD | 1), "\\Device\\Harddisk3\\Partition1", exists_ntdev, S_IFBLK, true},
534 {"/dev/sdd2", BRACK(FH_SDD | 2), "\\Device\\Harddisk3\\Partition2", exists_ntdev, S_IFBLK, true},
535 {"/dev/sdd3", BRACK(FH_SDD | 3), "\\Device\\Harddisk3\\Partition3", exists_ntdev, S_IFBLK, true},
536 {"/dev/sdd4", BRACK(FH_SDD | 4), "\\Device\\Harddisk3\\Partition4", exists_ntdev, S_IFBLK, true},
537 {"/dev/sdd5", BRACK(FH_SDD | 5), "\\Device\\Harddisk3\\Partition5", exists_ntdev, S_IFBLK, true},
538 {"/dev/sdd6", BRACK(FH_SDD | 6), "\\Device\\Harddisk3\\Partition6", exists_ntdev, S_IFBLK, true},
539 {"/dev/sdd7", BRACK(FH_SDD | 7), "\\Device\\Harddisk3\\Partition7", exists_ntdev, S_IFBLK, true},
540 {"/dev/sdd8", BRACK(FH_SDD | 8), "\\Device\\Harddisk3\\Partition8", exists_ntdev, S_IFBLK, true},
541 {"/dev/sdd9", BRACK(FH_SDD | 9), "\\Device\\Harddisk3\\Partition9", exists_ntdev, S_IFBLK, true},
542 {"/dev/sdd10", BRACK(FH_SDD | 10), "\\Device\\Harddisk3\\Partition10", exists_ntdev, S_IFBLK, true},
543 {"/dev/sdd11", BRACK(FH_SDD | 11), "\\Device\\Harddisk3\\Partition11", exists_ntdev, S_IFBLK, true},
544 {"/dev/sdd12", BRACK(FH_SDD | 12), "\\Device\\Harddisk3\\Partition12", exists_ntdev, S_IFBLK, true},
545 {"/dev/sdd13", BRACK(FH_SDD | 13), "\\Device\\Harddisk3\\Partition13", exists_ntdev, S_IFBLK, true},
546 {"/dev/sdd14", BRACK(FH_SDD | 14), "\\Device\\Harddisk3\\Partition14", exists_ntdev, S_IFBLK, true},
547 {"/dev/sdd15", BRACK(FH_SDD | 15), "\\Device\\Harddisk3\\Partition15", exists_ntdev, S_IFBLK, true},
548 {"/dev/sde1", BRACK(FH_SDE | 1), "\\Device\\Harddisk4\\Partition1", exists_ntdev, S_IFBLK, true},
549 {"/dev/sde2", BRACK(FH_SDE | 2), "\\Device\\Harddisk4\\Partition2", exists_ntdev, S_IFBLK, true},
550 {"/dev/sde3", BRACK(FH_SDE | 3), "\\Device\\Harddisk4\\Partition3", exists_ntdev, S_IFBLK, true},
551 {"/dev/sde4", BRACK(FH_SDE | 4), "\\Device\\Harddisk4\\Partition4", exists_ntdev, S_IFBLK, true},
552 {"/dev/sde5", BRACK(FH_SDE | 5), "\\Device\\Harddisk4\\Partition5", exists_ntdev, S_IFBLK, true},
553 {"/dev/sde6", BRACK(FH_SDE | 6), "\\Device\\Harddisk4\\Partition6", exists_ntdev, S_IFBLK, true},
554 {"/dev/sde7", BRACK(FH_SDE | 7), "\\Device\\Harddisk4\\Partition7", exists_ntdev, S_IFBLK, true},
555 {"/dev/sde8", BRACK(FH_SDE | 8), "\\Device\\Harddisk4\\Partition8", exists_ntdev, S_IFBLK, true},
556 {"/dev/sde9", BRACK(FH_SDE | 9), "\\Device\\Harddisk4\\Partition9", exists_ntdev, S_IFBLK, true},
557 {"/dev/sde10", BRACK(FH_SDE | 10), "\\Device\\Harddisk4\\Partition10", exists_ntdev, S_IFBLK, true},
558 {"/dev/sde11", BRACK(FH_SDE | 11), "\\Device\\Harddisk4\\Partition11", exists_ntdev, S_IFBLK, true},
559 {"/dev/sde12", BRACK(FH_SDE | 12), "\\Device\\Harddisk4\\Partition12", exists_ntdev, S_IFBLK, true},
560 {"/dev/sde13", BRACK(FH_SDE | 13), "\\Device\\Harddisk4\\Partition13", exists_ntdev, S_IFBLK, true},
561 {"/dev/sde14", BRACK(FH_SDE | 14), "\\Device\\Harddisk4\\Partition14", exists_ntdev, S_IFBLK, true},
562 {"/dev/sde15", BRACK(FH_SDE | 15), "\\Device\\Harddisk4\\Partition15", exists_ntdev, S_IFBLK, true},
563 {"/dev/sdf1", BRACK(FH_SDF | 1), "\\Device\\Harddisk5\\Partition1", exists_ntdev, S_IFBLK, true},
564 {"/dev/sdf2", BRACK(FH_SDF | 2), "\\Device\\Harddisk5\\Partition2", exists_ntdev, S_IFBLK, true},
565 {"/dev/sdf3", BRACK(FH_SDF | 3), "\\Device\\Harddisk5\\Partition3", exists_ntdev, S_IFBLK, true},
566 {"/dev/sdf4", BRACK(FH_SDF | 4), "\\Device\\Harddisk5\\Partition4", exists_ntdev, S_IFBLK, true},
567 {"/dev/sdf5", BRACK(FH_SDF | 5), "\\Device\\Harddisk5\\Partition5", exists_ntdev, S_IFBLK, true},
568 {"/dev/sdf6", BRACK(FH_SDF | 6), "\\Device\\Harddisk5\\Partition6", exists_ntdev, S_IFBLK, true},
569 {"/dev/sdf7", BRACK(FH_SDF | 7), "\\Device\\Harddisk5\\Partition7", exists_ntdev, S_IFBLK, true},
570 {"/dev/sdf8", BRACK(FH_SDF | 8), "\\Device\\Harddisk5\\Partition8", exists_ntdev, S_IFBLK, true},
571 {"/dev/sdf9", BRACK(FH_SDF | 9), "\\Device\\Harddisk5\\Partition9", exists_ntdev, S_IFBLK, true},
572 {"/dev/sdf10", BRACK(FH_SDF | 10), "\\Device\\Harddisk5\\Partition10", exists_ntdev, S_IFBLK, true},
573 {"/dev/sdf11", BRACK(FH_SDF | 11), "\\Device\\Harddisk5\\Partition11", exists_ntdev, S_IFBLK, true},
574 {"/dev/sdf12", BRACK(FH_SDF | 12), "\\Device\\Harddisk5\\Partition12", exists_ntdev, S_IFBLK, true},
575 {"/dev/sdf13", BRACK(FH_SDF | 13), "\\Device\\Harddisk5\\Partition13", exists_ntdev, S_IFBLK, true},
576 {"/dev/sdf14", BRACK(FH_SDF | 14), "\\Device\\Harddisk5\\Partition14", exists_ntdev, S_IFBLK, true},
577 {"/dev/sdf15", BRACK(FH_SDF | 15), "\\Device\\Harddisk5\\Partition15", exists_ntdev, S_IFBLK, true},
578 {"/dev/sdg1", BRACK(FH_SDG | 1), "\\Device\\Harddisk6\\Partition1", exists_ntdev, S_IFBLK, true},
579 {"/dev/sdg2", BRACK(FH_SDG | 2), "\\Device\\Harddisk6\\Partition2", exists_ntdev, S_IFBLK, true},
580 {"/dev/sdg3", BRACK(FH_SDG | 3), "\\Device\\Harddisk6\\Partition3", exists_ntdev, S_IFBLK, true},
581 {"/dev/sdg4", BRACK(FH_SDG | 4), "\\Device\\Harddisk6\\Partition4", exists_ntdev, S_IFBLK, true},
582 {"/dev/sdg5", BRACK(FH_SDG | 5), "\\Device\\Harddisk6\\Partition5", exists_ntdev, S_IFBLK, true},
583 {"/dev/sdg6", BRACK(FH_SDG | 6), "\\Device\\Harddisk6\\Partition6", exists_ntdev, S_IFBLK, true},
584 {"/dev/sdg7", BRACK(FH_SDG | 7), "\\Device\\Harddisk6\\Partition7", exists_ntdev, S_IFBLK, true},
585 {"/dev/sdg8", BRACK(FH_SDG | 8), "\\Device\\Harddisk6\\Partition8", exists_ntdev, S_IFBLK, true},
586 {"/dev/sdg9", BRACK(FH_SDG | 9), "\\Device\\Harddisk6\\Partition9", exists_ntdev, S_IFBLK, true},
587 {"/dev/sdg10", BRACK(FH_SDG | 10), "\\Device\\Harddisk6\\Partition10", exists_ntdev, S_IFBLK, true},
588 {"/dev/sdg11", BRACK(FH_SDG | 11), "\\Device\\Harddisk6\\Partition11", exists_ntdev, S_IFBLK, true},
589 {"/dev/sdg12", BRACK(FH_SDG | 12), "\\Device\\Harddisk6\\Partition12", exists_ntdev, S_IFBLK, true},
590 {"/dev/sdg13", BRACK(FH_SDG | 13), "\\Device\\Harddisk6\\Partition13", exists_ntdev, S_IFBLK, true},
591 {"/dev/sdg14", BRACK(FH_SDG | 14), "\\Device\\Harddisk6\\Partition14", exists_ntdev, S_IFBLK, true},
592 {"/dev/sdg15", BRACK(FH_SDG | 15), "\\Device\\Harddisk6\\Partition15", exists_ntdev, S_IFBLK, true},
593 {"/dev/sdh1", BRACK(FH_SDH | 1), "\\Device\\Harddisk7\\Partition1", exists_ntdev, S_IFBLK, true},
594 {"/dev/sdh2", BRACK(FH_SDH | 2), "\\Device\\Harddisk7\\Partition2", exists_ntdev, S_IFBLK, true},
595 {"/dev/sdh3", BRACK(FH_SDH | 3), "\\Device\\Harddisk7\\Partition3", exists_ntdev, S_IFBLK, true},
596 {"/dev/sdh4", BRACK(FH_SDH | 4), "\\Device\\Harddisk7\\Partition4", exists_ntdev, S_IFBLK, true},
597 {"/dev/sdh5", BRACK(FH_SDH | 5), "\\Device\\Harddisk7\\Partition5", exists_ntdev, S_IFBLK, true},
598 {"/dev/sdh6", BRACK(FH_SDH | 6), "\\Device\\Harddisk7\\Partition6", exists_ntdev, S_IFBLK, true},
599 {"/dev/sdh7", BRACK(FH_SDH | 7), "\\Device\\Harddisk7\\Partition7", exists_ntdev, S_IFBLK, true},
600 {"/dev/sdh8", BRACK(FH_SDH | 8), "\\Device\\Harddisk7\\Partition8", exists_ntdev, S_IFBLK, true},
601 {"/dev/sdh9", BRACK(FH_SDH | 9), "\\Device\\Harddisk7\\Partition9", exists_ntdev, S_IFBLK, true},
602 {"/dev/sdh10", BRACK(FH_SDH | 10), "\\Device\\Harddisk7\\Partition10", exists_ntdev, S_IFBLK, true},
603 {"/dev/sdh11", BRACK(FH_SDH | 11), "\\Device\\Harddisk7\\Partition11", exists_ntdev, S_IFBLK, true},
604 {"/dev/sdh12", BRACK(FH_SDH | 12), "\\Device\\Harddisk7\\Partition12", exists_ntdev, S_IFBLK, true},
605 {"/dev/sdh13", BRACK(FH_SDH | 13), "\\Device\\Harddisk7\\Partition13", exists_ntdev, S_IFBLK, true},
606 {"/dev/sdh14", BRACK(FH_SDH | 14), "\\Device\\Harddisk7\\Partition14", exists_ntdev, S_IFBLK, true},
607 {"/dev/sdh15", BRACK(FH_SDH | 15), "\\Device\\Harddisk7\\Partition15", exists_ntdev, S_IFBLK, true},
608 {"/dev/sdi1", BRACK(FH_SDI | 1), "\\Device\\Harddisk8\\Partition1", exists_ntdev, S_IFBLK, true},
609 {"/dev/sdi2", BRACK(FH_SDI | 2), "\\Device\\Harddisk8\\Partition2", exists_ntdev, S_IFBLK, true},
610 {"/dev/sdi3", BRACK(FH_SDI | 3), "\\Device\\Harddisk8\\Partition3", exists_ntdev, S_IFBLK, true},
611 {"/dev/sdi4", BRACK(FH_SDI | 4), "\\Device\\Harddisk8\\Partition4", exists_ntdev, S_IFBLK, true},
612 {"/dev/sdi5", BRACK(FH_SDI | 5), "\\Device\\Harddisk8\\Partition5", exists_ntdev, S_IFBLK, true},
613 {"/dev/sdi6", BRACK(FH_SDI | 6), "\\Device\\Harddisk8\\Partition6", exists_ntdev, S_IFBLK, true},
614 {"/dev/sdi7", BRACK(FH_SDI | 7), "\\Device\\Harddisk8\\Partition7", exists_ntdev, S_IFBLK, true},
615 {"/dev/sdi8", BRACK(FH_SDI | 8), "\\Device\\Harddisk8\\Partition8", exists_ntdev, S_IFBLK, true},
616 {"/dev/sdi9", BRACK(FH_SDI | 9), "\\Device\\Harddisk8\\Partition9", exists_ntdev, S_IFBLK, true},
617 {"/dev/sdi10", BRACK(FH_SDI | 10), "\\Device\\Harddisk8\\Partition10", exists_ntdev, S_IFBLK, true},
618 {"/dev/sdi11", BRACK(FH_SDI | 11), "\\Device\\Harddisk8\\Partition11", exists_ntdev, S_IFBLK, true},
619 {"/dev/sdi12", BRACK(FH_SDI | 12), "\\Device\\Harddisk8\\Partition12", exists_ntdev, S_IFBLK, true},
620 {"/dev/sdi13", BRACK(FH_SDI | 13), "\\Device\\Harddisk8\\Partition13", exists_ntdev, S_IFBLK, true},
621 {"/dev/sdi14", BRACK(FH_SDI | 14), "\\Device\\Harddisk8\\Partition14", exists_ntdev, S_IFBLK, true},
622 {"/dev/sdi15", BRACK(FH_SDI | 15), "\\Device\\Harddisk8\\Partition15", exists_ntdev, S_IFBLK, true},
623 {"/dev/sdj1", BRACK(FH_SDJ | 1), "\\Device\\Harddisk9\\Partition1", exists_ntdev, S_IFBLK, true},
624 {"/dev/sdj2", BRACK(FH_SDJ | 2), "\\Device\\Harddisk9\\Partition2", exists_ntdev, S_IFBLK, true},
625 {"/dev/sdj3", BRACK(FH_SDJ | 3), "\\Device\\Harddisk9\\Partition3", exists_ntdev, S_IFBLK, true},
626 {"/dev/sdj4", BRACK(FH_SDJ | 4), "\\Device\\Harddisk9\\Partition4", exists_ntdev, S_IFBLK, true},
627 {"/dev/sdj5", BRACK(FH_SDJ | 5), "\\Device\\Harddisk9\\Partition5", exists_ntdev, S_IFBLK, true},
628 {"/dev/sdj6", BRACK(FH_SDJ | 6), "\\Device\\Harddisk9\\Partition6", exists_ntdev, S_IFBLK, true},
629 {"/dev/sdj7", BRACK(FH_SDJ | 7), "\\Device\\Harddisk9\\Partition7", exists_ntdev, S_IFBLK, true},
630 {"/dev/sdj8", BRACK(FH_SDJ | 8), "\\Device\\Harddisk9\\Partition8", exists_ntdev, S_IFBLK, true},
631 {"/dev/sdj9", BRACK(FH_SDJ | 9), "\\Device\\Harddisk9\\Partition9", exists_ntdev, S_IFBLK, true},
632 {"/dev/sdj10", BRACK(FH_SDJ | 10), "\\Device\\Harddisk9\\Partition10", exists_ntdev, S_IFBLK, true},
633 {"/dev/sdj11", BRACK(FH_SDJ | 11), "\\Device\\Harddisk9\\Partition11", exists_ntdev, S_IFBLK, true},
634 {"/dev/sdj12", BRACK(FH_SDJ | 12), "\\Device\\Harddisk9\\Partition12", exists_ntdev, S_IFBLK, true},
635 {"/dev/sdj13", BRACK(FH_SDJ | 13), "\\Device\\Harddisk9\\Partition13", exists_ntdev, S_IFBLK, true},
636 {"/dev/sdj14", BRACK(FH_SDJ | 14), "\\Device\\Harddisk9\\Partition14", exists_ntdev, S_IFBLK, true},
637 {"/dev/sdj15", BRACK(FH_SDJ | 15), "\\Device\\Harddisk9\\Partition15", exists_ntdev, S_IFBLK, true},
638 {"/dev/sdk1", BRACK(FH_SDK | 1), "\\Device\\Harddisk10\\Partition1", exists_ntdev, S_IFBLK, true},
639 {"/dev/sdk2", BRACK(FH_SDK | 2), "\\Device\\Harddisk10\\Partition2", exists_ntdev, S_IFBLK, true},
640 {"/dev/sdk3", BRACK(FH_SDK | 3), "\\Device\\Harddisk10\\Partition3", exists_ntdev, S_IFBLK, true},
641 {"/dev/sdk4", BRACK(FH_SDK | 4), "\\Device\\Harddisk10\\Partition4", exists_ntdev, S_IFBLK, true},
642 {"/dev/sdk5", BRACK(FH_SDK | 5), "\\Device\\Harddisk10\\Partition5", exists_ntdev, S_IFBLK, true},
643 {"/dev/sdk6", BRACK(FH_SDK | 6), "\\Device\\Harddisk10\\Partition6", exists_ntdev, S_IFBLK, true},
644 {"/dev/sdk7", BRACK(FH_SDK | 7), "\\Device\\Harddisk10\\Partition7", exists_ntdev, S_IFBLK, true},
645 {"/dev/sdk8", BRACK(FH_SDK | 8), "\\Device\\Harddisk10\\Partition8", exists_ntdev, S_IFBLK, true},
646 {"/dev/sdk9", BRACK(FH_SDK | 9), "\\Device\\Harddisk10\\Partition9", exists_ntdev, S_IFBLK, true},
647 {"/dev/sdk10", BRACK(FH_SDK | 10), "\\Device\\Harddisk10\\Partition10", exists_ntdev, S_IFBLK, true},
648 {"/dev/sdk11", BRACK(FH_SDK | 11), "\\Device\\Harddisk10\\Partition11", exists_ntdev, S_IFBLK, true},
649 {"/dev/sdk12", BRACK(FH_SDK | 12), "\\Device\\Harddisk10\\Partition12", exists_ntdev, S_IFBLK, true},
650 {"/dev/sdk13", BRACK(FH_SDK | 13), "\\Device\\Harddisk10\\Partition13", exists_ntdev, S_IFBLK, true},
651 {"/dev/sdk14", BRACK(FH_SDK | 14), "\\Device\\Harddisk10\\Partition14", exists_ntdev, S_IFBLK, true},
652 {"/dev/sdk15", BRACK(FH_SDK | 15), "\\Device\\Harddisk10\\Partition15", exists_ntdev, S_IFBLK, true},
653 {"/dev/sdl1", BRACK(FH_SDL | 1), "\\Device\\Harddisk11\\Partition1", exists_ntdev, S_IFBLK, true},
654 {"/dev/sdl2", BRACK(FH_SDL | 2), "\\Device\\Harddisk11\\Partition2", exists_ntdev, S_IFBLK, true},
655 {"/dev/sdl3", BRACK(FH_SDL | 3), "\\Device\\Harddisk11\\Partition3", exists_ntdev, S_IFBLK, true},
656 {"/dev/sdl4", BRACK(FH_SDL | 4), "\\Device\\Harddisk11\\Partition4", exists_ntdev, S_IFBLK, true},
657 {"/dev/sdl5", BRACK(FH_SDL | 5), "\\Device\\Harddisk11\\Partition5", exists_ntdev, S_IFBLK, true},
658 {"/dev/sdl6", BRACK(FH_SDL | 6), "\\Device\\Harddisk11\\Partition6", exists_ntdev, S_IFBLK, true},
659 {"/dev/sdl7", BRACK(FH_SDL | 7), "\\Device\\Harddisk11\\Partition7", exists_ntdev, S_IFBLK, true},
660 {"/dev/sdl8", BRACK(FH_SDL | 8), "\\Device\\Harddisk11\\Partition8", exists_ntdev, S_IFBLK, true},
661 {"/dev/sdl9", BRACK(FH_SDL | 9), "\\Device\\Harddisk11\\Partition9", exists_ntdev, S_IFBLK, true},
662 {"/dev/sdl10", BRACK(FH_SDL | 10), "\\Device\\Harddisk11\\Partition10", exists_ntdev, S_IFBLK, true},
663 {"/dev/sdl11", BRACK(FH_SDL | 11), "\\Device\\Harddisk11\\Partition11", exists_ntdev, S_IFBLK, true},
664 {"/dev/sdl12", BRACK(FH_SDL | 12), "\\Device\\Harddisk11\\Partition12", exists_ntdev, S_IFBLK, true},
665 {"/dev/sdl13", BRACK(FH_SDL | 13), "\\Device\\Harddisk11\\Partition13", exists_ntdev, S_IFBLK, true},
666 {"/dev/sdl14", BRACK(FH_SDL | 14), "\\Device\\Harddisk11\\Partition14", exists_ntdev, S_IFBLK, true},
667 {"/dev/sdl15", BRACK(FH_SDL | 15), "\\Device\\Harddisk11\\Partition15", exists_ntdev, S_IFBLK, true},
668 {"/dev/sdm1", BRACK(FH_SDM | 1), "\\Device\\Harddisk12\\Partition1", exists_ntdev, S_IFBLK, true},
669 {"/dev/sdm2", BRACK(FH_SDM | 2), "\\Device\\Harddisk12\\Partition2", exists_ntdev, S_IFBLK, true},
670 {"/dev/sdm3", BRACK(FH_SDM | 3), "\\Device\\Harddisk12\\Partition3", exists_ntdev, S_IFBLK, true},
671 {"/dev/sdm4", BRACK(FH_SDM | 4), "\\Device\\Harddisk12\\Partition4", exists_ntdev, S_IFBLK, true},
672 {"/dev/sdm5", BRACK(FH_SDM | 5), "\\Device\\Harddisk12\\Partition5", exists_ntdev, S_IFBLK, true},
673 {"/dev/sdm6", BRACK(FH_SDM | 6), "\\Device\\Harddisk12\\Partition6", exists_ntdev, S_IFBLK, true},
674 {"/dev/sdm7", BRACK(FH_SDM | 7), "\\Device\\Harddisk12\\Partition7", exists_ntdev, S_IFBLK, true},
675 {"/dev/sdm8", BRACK(FH_SDM | 8), "\\Device\\Harddisk12\\Partition8", exists_ntdev, S_IFBLK, true},
676 {"/dev/sdm9", BRACK(FH_SDM | 9), "\\Device\\Harddisk12\\Partition9", exists_ntdev, S_IFBLK, true},
677 {"/dev/sdm10", BRACK(FH_SDM | 10), "\\Device\\Harddisk12\\Partition10", exists_ntdev, S_IFBLK, true},
678 {"/dev/sdm11", BRACK(FH_SDM | 11), "\\Device\\Harddisk12\\Partition11", exists_ntdev, S_IFBLK, true},
679 {"/dev/sdm12", BRACK(FH_SDM | 12), "\\Device\\Harddisk12\\Partition12", exists_ntdev, S_IFBLK, true},
680 {"/dev/sdm13", BRACK(FH_SDM | 13), "\\Device\\Harddisk12\\Partition13", exists_ntdev, S_IFBLK, true},
681 {"/dev/sdm14", BRACK(FH_SDM | 14), "\\Device\\Harddisk12\\Partition14", exists_ntdev, S_IFBLK, true},
682 {"/dev/sdm15", BRACK(FH_SDM | 15), "\\Device\\Harddisk12\\Partition15", exists_ntdev, S_IFBLK, true},
683 {"/dev/sdn1", BRACK(FH_SDN | 1), "\\Device\\Harddisk13\\Partition1", exists_ntdev, S_IFBLK, true},
684 {"/dev/sdn2", BRACK(FH_SDN | 2), "\\Device\\Harddisk13\\Partition2", exists_ntdev, S_IFBLK, true},
685 {"/dev/sdn3", BRACK(FH_SDN | 3), "\\Device\\Harddisk13\\Partition3", exists_ntdev, S_IFBLK, true},
686 {"/dev/sdn4", BRACK(FH_SDN | 4), "\\Device\\Harddisk13\\Partition4", exists_ntdev, S_IFBLK, true},
687 {"/dev/sdn5", BRACK(FH_SDN | 5), "\\Device\\Harddisk13\\Partition5", exists_ntdev, S_IFBLK, true},
688 {"/dev/sdn6", BRACK(FH_SDN | 6), "\\Device\\Harddisk13\\Partition6", exists_ntdev, S_IFBLK, true},
689 {"/dev/sdn7", BRACK(FH_SDN | 7), "\\Device\\Harddisk13\\Partition7", exists_ntdev, S_IFBLK, true},
690 {"/dev/sdn8", BRACK(FH_SDN | 8), "\\Device\\Harddisk13\\Partition8", exists_ntdev, S_IFBLK, true},
691 {"/dev/sdn9", BRACK(FH_SDN | 9), "\\Device\\Harddisk13\\Partition9", exists_ntdev, S_IFBLK, true},
692 {"/dev/sdn10", BRACK(FH_SDN | 10), "\\Device\\Harddisk13\\Partition10", exists_ntdev, S_IFBLK, true},
693 {"/dev/sdn11", BRACK(FH_SDN | 11), "\\Device\\Harddisk13\\Partition11", exists_ntdev, S_IFBLK, true},
694 {"/dev/sdn12", BRACK(FH_SDN | 12), "\\Device\\Harddisk13\\Partition12", exists_ntdev, S_IFBLK, true},
695 {"/dev/sdn13", BRACK(FH_SDN | 13), "\\Device\\Harddisk13\\Partition13", exists_ntdev, S_IFBLK, true},
696 {"/dev/sdn14", BRACK(FH_SDN | 14), "\\Device\\Harddisk13\\Partition14", exists_ntdev, S_IFBLK, true},
697 {"/dev/sdn15", BRACK(FH_SDN | 15), "\\Device\\Harddisk13\\Partition15", exists_ntdev, S_IFBLK, true},
698 {"/dev/sdo1", BRACK(FH_SDO | 1), "\\Device\\Harddisk14\\Partition1", exists_ntdev, S_IFBLK, true},
699 {"/dev/sdo2", BRACK(FH_SDO | 2), "\\Device\\Harddisk14\\Partition2", exists_ntdev, S_IFBLK, true},
700 {"/dev/sdo3", BRACK(FH_SDO | 3), "\\Device\\Harddisk14\\Partition3", exists_ntdev, S_IFBLK, true},
701 {"/dev/sdo4", BRACK(FH_SDO | 4), "\\Device\\Harddisk14\\Partition4", exists_ntdev, S_IFBLK, true},
702 {"/dev/sdo5", BRACK(FH_SDO | 5), "\\Device\\Harddisk14\\Partition5", exists_ntdev, S_IFBLK, true},
703 {"/dev/sdo6", BRACK(FH_SDO | 6), "\\Device\\Harddisk14\\Partition6", exists_ntdev, S_IFBLK, true},
704 {"/dev/sdo7", BRACK(FH_SDO | 7), "\\Device\\Harddisk14\\Partition7", exists_ntdev, S_IFBLK, true},
705 {"/dev/sdo8", BRACK(FH_SDO | 8), "\\Device\\Harddisk14\\Partition8", exists_ntdev, S_IFBLK, true},
706 {"/dev/sdo9", BRACK(FH_SDO | 9), "\\Device\\Harddisk14\\Partition9", exists_ntdev, S_IFBLK, true},
707 {"/dev/sdo10", BRACK(FH_SDO | 10), "\\Device\\Harddisk14\\Partition10", exists_ntdev, S_IFBLK, true},
708 {"/dev/sdo11", BRACK(FH_SDO | 11), "\\Device\\Harddisk14\\Partition11", exists_ntdev, S_IFBLK, true},
709 {"/dev/sdo12", BRACK(FH_SDO | 12), "\\Device\\Harddisk14\\Partition12", exists_ntdev, S_IFBLK, true},
710 {"/dev/sdo13", BRACK(FH_SDO | 13), "\\Device\\Harddisk14\\Partition13", exists_ntdev, S_IFBLK, true},
711 {"/dev/sdo14", BRACK(FH_SDO | 14), "\\Device\\Harddisk14\\Partition14", exists_ntdev, S_IFBLK, true},
712 {"/dev/sdo15", BRACK(FH_SDO | 15), "\\Device\\Harddisk14\\Partition15", exists_ntdev, S_IFBLK, true},
713 {"/dev/sdp1", BRACK(FH_SDP | 1), "\\Device\\Harddisk15\\Partition1", exists_ntdev, S_IFBLK, true},
714 {"/dev/sdp2", BRACK(FH_SDP | 2), "\\Device\\Harddisk15\\Partition2", exists_ntdev, S_IFBLK, true},
715 {"/dev/sdp3", BRACK(FH_SDP | 3), "\\Device\\Harddisk15\\Partition3", exists_ntdev, S_IFBLK, true},
716 {"/dev/sdp4", BRACK(FH_SDP | 4), "\\Device\\Harddisk15\\Partition4", exists_ntdev, S_IFBLK, true},
717 {"/dev/sdp5", BRACK(FH_SDP | 5), "\\Device\\Harddisk15\\Partition5", exists_ntdev, S_IFBLK, true},
718 {"/dev/sdp6", BRACK(FH_SDP | 6), "\\Device\\Harddisk15\\Partition6", exists_ntdev, S_IFBLK, true},
719 {"/dev/sdp7", BRACK(FH_SDP | 7), "\\Device\\Harddisk15\\Partition7", exists_ntdev, S_IFBLK, true},
720 {"/dev/sdp8", BRACK(FH_SDP | 8), "\\Device\\Harddisk15\\Partition8", exists_ntdev, S_IFBLK, true},
721 {"/dev/sdp9", BRACK(FH_SDP | 9), "\\Device\\Harddisk15\\Partition9", exists_ntdev, S_IFBLK, true},
722 {"/dev/sdp10", BRACK(FH_SDP | 10), "\\Device\\Harddisk15\\Partition10", exists_ntdev, S_IFBLK, true},
723 {"/dev/sdp11", BRACK(FH_SDP | 11), "\\Device\\Harddisk15\\Partition11", exists_ntdev, S_IFBLK, true},
724 {"/dev/sdp12", BRACK(FH_SDP | 12), "\\Device\\Harddisk15\\Partition12", exists_ntdev, S_IFBLK, true},
725 {"/dev/sdp13", BRACK(FH_SDP | 13), "\\Device\\Harddisk15\\Partition13", exists_ntdev, S_IFBLK, true},
726 {"/dev/sdp14", BRACK(FH_SDP | 14), "\\Device\\Harddisk15\\Partition14", exists_ntdev, S_IFBLK, true},
727 {"/dev/sdp15", BRACK(FH_SDP | 15), "\\Device\\Harddisk15\\Partition15", exists_ntdev, S_IFBLK, true},
728 {"/dev/sdq1", BRACK(FH_SDQ | 1), "\\Device\\Harddisk16\\Partition1", exists_ntdev, S_IFBLK, true},
729 {"/dev/sdq2", BRACK(FH_SDQ | 2), "\\Device\\Harddisk16\\Partition2", exists_ntdev, S_IFBLK, true},
730 {"/dev/sdq3", BRACK(FH_SDQ | 3), "\\Device\\Harddisk16\\Partition3", exists_ntdev, S_IFBLK, true},
731 {"/dev/sdq4", BRACK(FH_SDQ | 4), "\\Device\\Harddisk16\\Partition4", exists_ntdev, S_IFBLK, true},
732 {"/dev/sdq5", BRACK(FH_SDQ | 5), "\\Device\\Harddisk16\\Partition5", exists_ntdev, S_IFBLK, true},
733 {"/dev/sdq6", BRACK(FH_SDQ | 6), "\\Device\\Harddisk16\\Partition6", exists_ntdev, S_IFBLK, true},
734 {"/dev/sdq7", BRACK(FH_SDQ | 7), "\\Device\\Harddisk16\\Partition7", exists_ntdev, S_IFBLK, true},
735 {"/dev/sdq8", BRACK(FH_SDQ | 8), "\\Device\\Harddisk16\\Partition8", exists_ntdev, S_IFBLK, true},
736 {"/dev/sdq9", BRACK(FH_SDQ | 9), "\\Device\\Harddisk16\\Partition9", exists_ntdev, S_IFBLK, true},
737 {"/dev/sdq10", BRACK(FH_SDQ | 10), "\\Device\\Harddisk16\\Partition10", exists_ntdev, S_IFBLK, true},
738 {"/dev/sdq11", BRACK(FH_SDQ | 11), "\\Device\\Harddisk16\\Partition11", exists_ntdev, S_IFBLK, true},
739 {"/dev/sdq12", BRACK(FH_SDQ | 12), "\\Device\\Harddisk16\\Partition12", exists_ntdev, S_IFBLK, true},
740 {"/dev/sdq13", BRACK(FH_SDQ | 13), "\\Device\\Harddisk16\\Partition13", exists_ntdev, S_IFBLK, true},
741 {"/dev/sdq14", BRACK(FH_SDQ | 14), "\\Device\\Harddisk16\\Partition14", exists_ntdev, S_IFBLK, true},
742 {"/dev/sdq15", BRACK(FH_SDQ | 15), "\\Device\\Harddisk16\\Partition15", exists_ntdev, S_IFBLK, true},
743 {"/dev/sdr1", BRACK(FH_SDR | 1), "\\Device\\Harddisk17\\Partition1", exists_ntdev, S_IFBLK, true},
744 {"/dev/sdr2", BRACK(FH_SDR | 2), "\\Device\\Harddisk17\\Partition2", exists_ntdev, S_IFBLK, true},
745 {"/dev/sdr3", BRACK(FH_SDR | 3), "\\Device\\Harddisk17\\Partition3", exists_ntdev, S_IFBLK, true},
746 {"/dev/sdr4", BRACK(FH_SDR | 4), "\\Device\\Harddisk17\\Partition4", exists_ntdev, S_IFBLK, true},
747 {"/dev/sdr5", BRACK(FH_SDR | 5), "\\Device\\Harddisk17\\Partition5", exists_ntdev, S_IFBLK, true},
748 {"/dev/sdr6", BRACK(FH_SDR | 6), "\\Device\\Harddisk17\\Partition6", exists_ntdev, S_IFBLK, true},
749 {"/dev/sdr7", BRACK(FH_SDR | 7), "\\Device\\Harddisk17\\Partition7", exists_ntdev, S_IFBLK, true},
750 {"/dev/sdr8", BRACK(FH_SDR | 8), "\\Device\\Harddisk17\\Partition8", exists_ntdev, S_IFBLK, true},
751 {"/dev/sdr9", BRACK(FH_SDR | 9), "\\Device\\Harddisk17\\Partition9", exists_ntdev, S_IFBLK, true},
752 {"/dev/sdr10", BRACK(FH_SDR | 10), "\\Device\\Harddisk17\\Partition10", exists_ntdev, S_IFBLK, true},
753 {"/dev/sdr11", BRACK(FH_SDR | 11), "\\Device\\Harddisk17\\Partition11", exists_ntdev, S_IFBLK, true},
754 {"/dev/sdr12", BRACK(FH_SDR | 12), "\\Device\\Harddisk17\\Partition12", exists_ntdev, S_IFBLK, true},
755 {"/dev/sdr13", BRACK(FH_SDR | 13), "\\Device\\Harddisk17\\Partition13", exists_ntdev, S_IFBLK, true},
756 {"/dev/sdr14", BRACK(FH_SDR | 14), "\\Device\\Harddisk17\\Partition14", exists_ntdev, S_IFBLK, true},
757 {"/dev/sdr15", BRACK(FH_SDR | 15), "\\Device\\Harddisk17\\Partition15", exists_ntdev, S_IFBLK, true},
758 {"/dev/sds1", BRACK(FH_SDS | 1), "\\Device\\Harddisk18\\Partition1", exists_ntdev, S_IFBLK, true},
759 {"/dev/sds2", BRACK(FH_SDS | 2), "\\Device\\Harddisk18\\Partition2", exists_ntdev, S_IFBLK, true},
760 {"/dev/sds3", BRACK(FH_SDS | 3), "\\Device\\Harddisk18\\Partition3", exists_ntdev, S_IFBLK, true},
761 {"/dev/sds4", BRACK(FH_SDS | 4), "\\Device\\Harddisk18\\Partition4", exists_ntdev, S_IFBLK, true},
762 {"/dev/sds5", BRACK(FH_SDS | 5), "\\Device\\Harddisk18\\Partition5", exists_ntdev, S_IFBLK, true},
763 {"/dev/sds6", BRACK(FH_SDS | 6), "\\Device\\Harddisk18\\Partition6", exists_ntdev, S_IFBLK, true},
764 {"/dev/sds7", BRACK(FH_SDS | 7), "\\Device\\Harddisk18\\Partition7", exists_ntdev, S_IFBLK, true},
765 {"/dev/sds8", BRACK(FH_SDS | 8), "\\Device\\Harddisk18\\Partition8", exists_ntdev, S_IFBLK, true},
766 {"/dev/sds9", BRACK(FH_SDS | 9), "\\Device\\Harddisk18\\Partition9", exists_ntdev, S_IFBLK, true},
767 {"/dev/sds10", BRACK(FH_SDS | 10), "\\Device\\Harddisk18\\Partition10", exists_ntdev, S_IFBLK, true},
768 {"/dev/sds11", BRACK(FH_SDS | 11), "\\Device\\Harddisk18\\Partition11", exists_ntdev, S_IFBLK, true},
769 {"/dev/sds12", BRACK(FH_SDS | 12), "\\Device\\Harddisk18\\Partition12", exists_ntdev, S_IFBLK, true},
770 {"/dev/sds13", BRACK(FH_SDS | 13), "\\Device\\Harddisk18\\Partition13", exists_ntdev, S_IFBLK, true},
771 {"/dev/sds14", BRACK(FH_SDS | 14), "\\Device\\Harddisk18\\Partition14", exists_ntdev, S_IFBLK, true},
772 {"/dev/sds15", BRACK(FH_SDS | 15), "\\Device\\Harddisk18\\Partition15", exists_ntdev, S_IFBLK, true},
773 {"/dev/sdt1", BRACK(FH_SDT | 1), "\\Device\\Harddisk19\\Partition1", exists_ntdev, S_IFBLK, true},
774 {"/dev/sdt2", BRACK(FH_SDT | 2), "\\Device\\Harddisk19\\Partition2", exists_ntdev, S_IFBLK, true},
775 {"/dev/sdt3", BRACK(FH_SDT | 3), "\\Device\\Harddisk19\\Partition3", exists_ntdev, S_IFBLK, true},
776 {"/dev/sdt4", BRACK(FH_SDT | 4), "\\Device\\Harddisk19\\Partition4", exists_ntdev, S_IFBLK, true},
777 {"/dev/sdt5", BRACK(FH_SDT | 5), "\\Device\\Harddisk19\\Partition5", exists_ntdev, S_IFBLK, true},
778 {"/dev/sdt6", BRACK(FH_SDT | 6), "\\Device\\Harddisk19\\Partition6", exists_ntdev, S_IFBLK, true},
779 {"/dev/sdt7", BRACK(FH_SDT | 7), "\\Device\\Harddisk19\\Partition7", exists_ntdev, S_IFBLK, true},
780 {"/dev/sdt8", BRACK(FH_SDT | 8), "\\Device\\Harddisk19\\Partition8", exists_ntdev, S_IFBLK, true},
781 {"/dev/sdt9", BRACK(FH_SDT | 9), "\\Device\\Harddisk19\\Partition9", exists_ntdev, S_IFBLK, true},
782 {"/dev/sdt10", BRACK(FH_SDT | 10), "\\Device\\Harddisk19\\Partition10", exists_ntdev, S_IFBLK, true},
783 {"/dev/sdt11", BRACK(FH_SDT | 11), "\\Device\\Harddisk19\\Partition11", exists_ntdev, S_IFBLK, true},
784 {"/dev/sdt12", BRACK(FH_SDT | 12), "\\Device\\Harddisk19\\Partition12", exists_ntdev, S_IFBLK, true},
785 {"/dev/sdt13", BRACK(FH_SDT | 13), "\\Device\\Harddisk19\\Partition13", exists_ntdev, S_IFBLK, true},
786 {"/dev/sdt14", BRACK(FH_SDT | 14), "\\Device\\Harddisk19\\Partition14", exists_ntdev, S_IFBLK, true},
787 {"/dev/sdt15", BRACK(FH_SDT | 15), "\\Device\\Harddisk19\\Partition15", exists_ntdev, S_IFBLK, true},
788 {"/dev/sdu1", BRACK(FH_SDU | 1), "\\Device\\Harddisk20\\Partition1", exists_ntdev, S_IFBLK, true},
789 {"/dev/sdu2", BRACK(FH_SDU | 2), "\\Device\\Harddisk20\\Partition2", exists_ntdev, S_IFBLK, true},
790 {"/dev/sdu3", BRACK(FH_SDU | 3), "\\Device\\Harddisk20\\Partition3", exists_ntdev, S_IFBLK, true},
791 {"/dev/sdu4", BRACK(FH_SDU | 4), "\\Device\\Harddisk20\\Partition4", exists_ntdev, S_IFBLK, true},
792 {"/dev/sdu5", BRACK(FH_SDU | 5), "\\Device\\Harddisk20\\Partition5", exists_ntdev, S_IFBLK, true},
793 {"/dev/sdu6", BRACK(FH_SDU | 6), "\\Device\\Harddisk20\\Partition6", exists_ntdev, S_IFBLK, true},
794 {"/dev/sdu7", BRACK(FH_SDU | 7), "\\Device\\Harddisk20\\Partition7", exists_ntdev, S_IFBLK, true},
795 {"/dev/sdu8", BRACK(FH_SDU | 8), "\\Device\\Harddisk20\\Partition8", exists_ntdev, S_IFBLK, true},
796 {"/dev/sdu9", BRACK(FH_SDU | 9), "\\Device\\Harddisk20\\Partition9", exists_ntdev, S_IFBLK, true},
797 {"/dev/sdu10", BRACK(FH_SDU | 10), "\\Device\\Harddisk20\\Partition10", exists_ntdev, S_IFBLK, true},
798 {"/dev/sdu11", BRACK(FH_SDU | 11), "\\Device\\Harddisk20\\Partition11", exists_ntdev, S_IFBLK, true},
799 {"/dev/sdu12", BRACK(FH_SDU | 12), "\\Device\\Harddisk20\\Partition12", exists_ntdev, S_IFBLK, true},
800 {"/dev/sdu13", BRACK(FH_SDU | 13), "\\Device\\Harddisk20\\Partition13", exists_ntdev, S_IFBLK, true},
801 {"/dev/sdu14", BRACK(FH_SDU | 14), "\\Device\\Harddisk20\\Partition14", exists_ntdev, S_IFBLK, true},
802 {"/dev/sdu15", BRACK(FH_SDU | 15), "\\Device\\Harddisk20\\Partition15", exists_ntdev, S_IFBLK, true},
803 {"/dev/sdv1", BRACK(FH_SDV | 1), "\\Device\\Harddisk21\\Partition1", exists_ntdev, S_IFBLK, true},
804 {"/dev/sdv2", BRACK(FH_SDV | 2), "\\Device\\Harddisk21\\Partition2", exists_ntdev, S_IFBLK, true},
805 {"/dev/sdv3", BRACK(FH_SDV | 3), "\\Device\\Harddisk21\\Partition3", exists_ntdev, S_IFBLK, true},
806 {"/dev/sdv4", BRACK(FH_SDV | 4), "\\Device\\Harddisk21\\Partition4", exists_ntdev, S_IFBLK, true},
807 {"/dev/sdv5", BRACK(FH_SDV | 5), "\\Device\\Harddisk21\\Partition5", exists_ntdev, S_IFBLK, true},
808 {"/dev/sdv6", BRACK(FH_SDV | 6), "\\Device\\Harddisk21\\Partition6", exists_ntdev, S_IFBLK, true},
809 {"/dev/sdv7", BRACK(FH_SDV | 7), "\\Device\\Harddisk21\\Partition7", exists_ntdev, S_IFBLK, true},
810 {"/dev/sdv8", BRACK(FH_SDV | 8), "\\Device\\Harddisk21\\Partition8", exists_ntdev, S_IFBLK, true},
811 {"/dev/sdv9", BRACK(FH_SDV | 9), "\\Device\\Harddisk21\\Partition9", exists_ntdev, S_IFBLK, true},
812 {"/dev/sdv10", BRACK(FH_SDV | 10), "\\Device\\Harddisk21\\Partition10", exists_ntdev, S_IFBLK, true},
813 {"/dev/sdv11", BRACK(FH_SDV | 11), "\\Device\\Harddisk21\\Partition11", exists_ntdev, S_IFBLK, true},
814 {"/dev/sdv12", BRACK(FH_SDV | 12), "\\Device\\Harddisk21\\Partition12", exists_ntdev, S_IFBLK, true},
815 {"/dev/sdv13", BRACK(FH_SDV | 13), "\\Device\\Harddisk21\\Partition13", exists_ntdev, S_IFBLK, true},
816 {"/dev/sdv14", BRACK(FH_SDV | 14), "\\Device\\Harddisk21\\Partition14", exists_ntdev, S_IFBLK, true},
817 {"/dev/sdv15", BRACK(FH_SDV | 15), "\\Device\\Harddisk21\\Partition15", exists_ntdev, S_IFBLK, true},
818 {"/dev/sdw1", BRACK(FH_SDW | 1), "\\Device\\Harddisk22\\Partition1", exists_ntdev, S_IFBLK, true},
819 {"/dev/sdw2", BRACK(FH_SDW | 2), "\\Device\\Harddisk22\\Partition2", exists_ntdev, S_IFBLK, true},
820 {"/dev/sdw3", BRACK(FH_SDW | 3), "\\Device\\Harddisk22\\Partition3", exists_ntdev, S_IFBLK, true},
821 {"/dev/sdw4", BRACK(FH_SDW | 4), "\\Device\\Harddisk22\\Partition4", exists_ntdev, S_IFBLK, true},
822 {"/dev/sdw5", BRACK(FH_SDW | 5), "\\Device\\Harddisk22\\Partition5", exists_ntdev, S_IFBLK, true},
823 {"/dev/sdw6", BRACK(FH_SDW | 6), "\\Device\\Harddisk22\\Partition6", exists_ntdev, S_IFBLK, true},
824 {"/dev/sdw7", BRACK(FH_SDW | 7), "\\Device\\Harddisk22\\Partition7", exists_ntdev, S_IFBLK, true},
825 {"/dev/sdw8", BRACK(FH_SDW | 8), "\\Device\\Harddisk22\\Partition8", exists_ntdev, S_IFBLK, true},
826 {"/dev/sdw9", BRACK(FH_SDW | 9), "\\Device\\Harddisk22\\Partition9", exists_ntdev, S_IFBLK, true},
827 {"/dev/sdw10", BRACK(FH_SDW | 10), "\\Device\\Harddisk22\\Partition10", exists_ntdev, S_IFBLK, true},
828 {"/dev/sdw11", BRACK(FH_SDW | 11), "\\Device\\Harddisk22\\Partition11", exists_ntdev, S_IFBLK, true},
829 {"/dev/sdw12", BRACK(FH_SDW | 12), "\\Device\\Harddisk22\\Partition12", exists_ntdev, S_IFBLK, true},
830 {"/dev/sdw13", BRACK(FH_SDW | 13), "\\Device\\Harddisk22\\Partition13", exists_ntdev, S_IFBLK, true},
831 {"/dev/sdw14", BRACK(FH_SDW | 14), "\\Device\\Harddisk22\\Partition14", exists_ntdev, S_IFBLK, true},
832 {"/dev/sdw15", BRACK(FH_SDW | 15), "\\Device\\Harddisk22\\Partition15", exists_ntdev, S_IFBLK, true},
833 {"/dev/sdx1", BRACK(FH_SDX | 1), "\\Device\\Harddisk23\\Partition1", exists_ntdev, S_IFBLK, true},
834 {"/dev/sdx2", BRACK(FH_SDX | 2), "\\Device\\Harddisk23\\Partition2", exists_ntdev, S_IFBLK, true},
835 {"/dev/sdx3", BRACK(FH_SDX | 3), "\\Device\\Harddisk23\\Partition3", exists_ntdev, S_IFBLK, true},
836 {"/dev/sdx4", BRACK(FH_SDX | 4), "\\Device\\Harddisk23\\Partition4", exists_ntdev, S_IFBLK, true},
837 {"/dev/sdx5", BRACK(FH_SDX | 5), "\\Device\\Harddisk23\\Partition5", exists_ntdev, S_IFBLK, true},
838 {"/dev/sdx6", BRACK(FH_SDX | 6), "\\Device\\Harddisk23\\Partition6", exists_ntdev, S_IFBLK, true},
839 {"/dev/sdx7", BRACK(FH_SDX | 7), "\\Device\\Harddisk23\\Partition7", exists_ntdev, S_IFBLK, true},
840 {"/dev/sdx8", BRACK(FH_SDX | 8), "\\Device\\Harddisk23\\Partition8", exists_ntdev, S_IFBLK, true},
841 {"/dev/sdx9", BRACK(FH_SDX | 9), "\\Device\\Harddisk23\\Partition9", exists_ntdev, S_IFBLK, true},
842 {"/dev/sdx10", BRACK(FH_SDX | 10), "\\Device\\Harddisk23\\Partition10", exists_ntdev, S_IFBLK, true},
843 {"/dev/sdx11", BRACK(FH_SDX | 11), "\\Device\\Harddisk23\\Partition11", exists_ntdev, S_IFBLK, true},
844 {"/dev/sdx12", BRACK(FH_SDX | 12), "\\Device\\Harddisk23\\Partition12", exists_ntdev, S_IFBLK, true},
845 {"/dev/sdx13", BRACK(FH_SDX | 13), "\\Device\\Harddisk23\\Partition13", exists_ntdev, S_IFBLK, true},
846 {"/dev/sdx14", BRACK(FH_SDX | 14), "\\Device\\Harddisk23\\Partition14", exists_ntdev, S_IFBLK, true},
847 {"/dev/sdx15", BRACK(FH_SDX | 15), "\\Device\\Harddisk23\\Partition15", exists_ntdev, S_IFBLK, true},
848 {"/dev/sdy1", BRACK(FH_SDY | 1), "\\Device\\Harddisk24\\Partition1", exists_ntdev, S_IFBLK, true},
849 {"/dev/sdy2", BRACK(FH_SDY | 2), "\\Device\\Harddisk24\\Partition2", exists_ntdev, S_IFBLK, true},
850 {"/dev/sdy3", BRACK(FH_SDY | 3), "\\Device\\Harddisk24\\Partition3", exists_ntdev, S_IFBLK, true},
851 {"/dev/sdy4", BRACK(FH_SDY | 4), "\\Device\\Harddisk24\\Partition4", exists_ntdev, S_IFBLK, true},
852 {"/dev/sdy5", BRACK(FH_SDY | 5), "\\Device\\Harddisk24\\Partition5", exists_ntdev, S_IFBLK, true},
853 {"/dev/sdy6", BRACK(FH_SDY | 6), "\\Device\\Harddisk24\\Partition6", exists_ntdev, S_IFBLK, true},
854 {"/dev/sdy7", BRACK(FH_SDY | 7), "\\Device\\Harddisk24\\Partition7", exists_ntdev, S_IFBLK, true},
855 {"/dev/sdy8", BRACK(FH_SDY | 8), "\\Device\\Harddisk24\\Partition8", exists_ntdev, S_IFBLK, true},
856 {"/dev/sdy9", BRACK(FH_SDY | 9), "\\Device\\Harddisk24\\Partition9", exists_ntdev, S_IFBLK, true},
857 {"/dev/sdy10", BRACK(FH_SDY | 10), "\\Device\\Harddisk24\\Partition10", exists_ntdev, S_IFBLK, true},
858 {"/dev/sdy11", BRACK(FH_SDY | 11), "\\Device\\Harddisk24\\Partition11", exists_ntdev, S_IFBLK, true},
859 {"/dev/sdy12", BRACK(FH_SDY | 12), "\\Device\\Harddisk24\\Partition12", exists_ntdev, S_IFBLK, true},
860 {"/dev/sdy13", BRACK(FH_SDY | 13), "\\Device\\Harddisk24\\Partition13", exists_ntdev, S_IFBLK, true},
861 {"/dev/sdy14", BRACK(FH_SDY | 14), "\\Device\\Harddisk24\\Partition14", exists_ntdev, S_IFBLK, true},
862 {"/dev/sdy15", BRACK(FH_SDY | 15), "\\Device\\Harddisk24\\Partition15", exists_ntdev, S_IFBLK, true},
863 {"/dev/sdz1", BRACK(FH_SDZ | 1), "\\Device\\Harddisk25\\Partition1", exists_ntdev, S_IFBLK, true},
864 {"/dev/sdz2", BRACK(FH_SDZ | 2), "\\Device\\Harddisk25\\Partition2", exists_ntdev, S_IFBLK, true},
865 {"/dev/sdz3", BRACK(FH_SDZ | 3), "\\Device\\Harddisk25\\Partition3", exists_ntdev, S_IFBLK, true},
866 {"/dev/sdz4", BRACK(FH_SDZ | 4), "\\Device\\Harddisk25\\Partition4", exists_ntdev, S_IFBLK, true},
867 {"/dev/sdz5", BRACK(FH_SDZ | 5), "\\Device\\Harddisk25\\Partition5", exists_ntdev, S_IFBLK, true},
868 {"/dev/sdz6", BRACK(FH_SDZ | 6), "\\Device\\Harddisk25\\Partition6", exists_ntdev, S_IFBLK, true},
869 {"/dev/sdz7", BRACK(FH_SDZ | 7), "\\Device\\Harddisk25\\Partition7", exists_ntdev, S_IFBLK, true},
870 {"/dev/sdz8", BRACK(FH_SDZ | 8), "\\Device\\Harddisk25\\Partition8", exists_ntdev, S_IFBLK, true},
871 {"/dev/sdz9", BRACK(FH_SDZ | 9), "\\Device\\Harddisk25\\Partition9", exists_ntdev, S_IFBLK, true},
872 {"/dev/sdz10", BRACK(FH_SDZ | 10), "\\Device\\Harddisk25\\Partition10", exists_ntdev, S_IFBLK, true},
873 {"/dev/sdz11", BRACK(FH_SDZ | 11), "\\Device\\Harddisk25\\Partition11", exists_ntdev, S_IFBLK, true},
874 {"/dev/sdz12", BRACK(FH_SDZ | 12), "\\Device\\Harddisk25\\Partition12", exists_ntdev, S_IFBLK, true},
875 {"/dev/sdz13", BRACK(FH_SDZ | 13), "\\Device\\Harddisk25\\Partition13", exists_ntdev, S_IFBLK, true},
876 {"/dev/sdz14", BRACK(FH_SDZ | 14), "\\Device\\Harddisk25\\Partition14", exists_ntdev, S_IFBLK, true},
877 {"/dev/sdz15", BRACK(FH_SDZ | 15), "\\Device\\Harddisk25\\Partition15", exists_ntdev, S_IFBLK, true},
878 {"/dev/sdaa", BRACK(FH_SDAA), "\\Device\\Harddisk26\\Partition0", exists_ntdev, S_IFBLK, true},
879 {"/dev/sdab", BRACK(FH_SDAB), "\\Device\\Harddisk27\\Partition0", exists_ntdev, S_IFBLK, true},
880 {"/dev/sdac", BRACK(FH_SDAC), "\\Device\\Harddisk28\\Partition0", exists_ntdev, S_IFBLK, true},
881 {"/dev/sdad", BRACK(FH_SDAD), "\\Device\\Harddisk29\\Partition0", exists_ntdev, S_IFBLK, true},
882 {"/dev/sdae", BRACK(FH_SDAE), "\\Device\\Harddisk30\\Partition0", exists_ntdev, S_IFBLK, true},
883 {"/dev/sdaf", BRACK(FH_SDAF), "\\Device\\Harddisk31\\Partition0", exists_ntdev, S_IFBLK, true},
884 {"/dev/sdag", BRACK(FH_SDAG), "\\Device\\Harddisk32\\Partition0", exists_ntdev, S_IFBLK, true},
885 {"/dev/sdah", BRACK(FH_SDAH), "\\Device\\Harddisk33\\Partition0", exists_ntdev, S_IFBLK, true},
886 {"/dev/sdai", BRACK(FH_SDAI), "\\Device\\Harddisk34\\Partition0", exists_ntdev, S_IFBLK, true},
887 {"/dev/sdaj", BRACK(FH_SDAJ), "\\Device\\Harddisk35\\Partition0", exists_ntdev, S_IFBLK, true},
888 {"/dev/sdak", BRACK(FH_SDAK), "\\Device\\Harddisk36\\Partition0", exists_ntdev, S_IFBLK, true},
889 {"/dev/sdal", BRACK(FH_SDAL), "\\Device\\Harddisk37\\Partition0", exists_ntdev, S_IFBLK, true},
890 {"/dev/sdam", BRACK(FH_SDAM), "\\Device\\Harddisk38\\Partition0", exists_ntdev, S_IFBLK, true},
891 {"/dev/sdan", BRACK(FH_SDAN), "\\Device\\Harddisk39\\Partition0", exists_ntdev, S_IFBLK, true},
892 {"/dev/sdao", BRACK(FH_SDAO), "\\Device\\Harddisk40\\Partition0", exists_ntdev, S_IFBLK, true},
893 {"/dev/sdap", BRACK(FH_SDAP), "\\Device\\Harddisk41\\Partition0", exists_ntdev, S_IFBLK, true},
894 {"/dev/sdaq", BRACK(FH_SDAQ), "\\Device\\Harddisk42\\Partition0", exists_ntdev, S_IFBLK, true},
895 {"/dev/sdar", BRACK(FH_SDAR), "\\Device\\Harddisk43\\Partition0", exists_ntdev, S_IFBLK, true},
896 {"/dev/sdas", BRACK(FH_SDAS), "\\Device\\Harddisk44\\Partition0", exists_ntdev, S_IFBLK, true},
897 {"/dev/sdat", BRACK(FH_SDAT), "\\Device\\Harddisk45\\Partition0", exists_ntdev, S_IFBLK, true},
898 {"/dev/sdau", BRACK(FH_SDAU), "\\Device\\Harddisk46\\Partition0", exists_ntdev, S_IFBLK, true},
899 {"/dev/sdav", BRACK(FH_SDAV), "\\Device\\Harddisk47\\Partition0", exists_ntdev, S_IFBLK, true},
900 {"/dev/sdaw", BRACK(FH_SDAW), "\\Device\\Harddisk48\\Partition0", exists_ntdev, S_IFBLK, true},
901 {"/dev/sdax", BRACK(FH_SDAX), "\\Device\\Harddisk49\\Partition0", exists_ntdev, S_IFBLK, true},
902 {"/dev/sday", BRACK(FH_SDAY), "\\Device\\Harddisk50\\Partition0", exists_ntdev, S_IFBLK, true},
903 {"/dev/sdaz", BRACK(FH_SDAZ), "\\Device\\Harddisk51\\Partition0", exists_ntdev, S_IFBLK, true},
904 {"/dev/sdaa1", BRACK(FH_SDAA | 1), "\\Device\\Harddisk26\\Partition1", exists_ntdev, S_IFBLK, true},
905 {"/dev/sdaa2", BRACK(FH_SDAA | 2), "\\Device\\Harddisk26\\Partition2", exists_ntdev, S_IFBLK, true},
906 {"/dev/sdaa3", BRACK(FH_SDAA | 3), "\\Device\\Harddisk26\\Partition3", exists_ntdev, S_IFBLK, true},
907 {"/dev/sdaa4", BRACK(FH_SDAA | 4), "\\Device\\Harddisk26\\Partition4", exists_ntdev, S_IFBLK, true},
908 {"/dev/sdaa5", BRACK(FH_SDAA | 5), "\\Device\\Harddisk26\\Partition5", exists_ntdev, S_IFBLK, true},
909 {"/dev/sdaa6", BRACK(FH_SDAA | 6), "\\Device\\Harddisk26\\Partition6", exists_ntdev, S_IFBLK, true},
910 {"/dev/sdaa7", BRACK(FH_SDAA | 7), "\\Device\\Harddisk26\\Partition7", exists_ntdev, S_IFBLK, true},
911 {"/dev/sdaa8", BRACK(FH_SDAA | 8), "\\Device\\Harddisk26\\Partition8", exists_ntdev, S_IFBLK, true},
912 {"/dev/sdaa9", BRACK(FH_SDAA | 9), "\\Device\\Harddisk26\\Partition9", exists_ntdev, S_IFBLK, true},
913 {"/dev/sdaa10", BRACK(FH_SDAA | 10), "\\Device\\Harddisk26\\Partition10", exists_ntdev, S_IFBLK, true},
914 {"/dev/sdaa11", BRACK(FH_SDAA | 11), "\\Device\\Harddisk26\\Partition11", exists_ntdev, S_IFBLK, true},
915 {"/dev/sdaa12", BRACK(FH_SDAA | 12), "\\Device\\Harddisk26\\Partition12", exists_ntdev, S_IFBLK, true},
916 {"/dev/sdaa13", BRACK(FH_SDAA | 13), "\\Device\\Harddisk26\\Partition13", exists_ntdev, S_IFBLK, true},
917 {"/dev/sdaa14", BRACK(FH_SDAA | 14), "\\Device\\Harddisk26\\Partition14", exists_ntdev, S_IFBLK, true},
918 {"/dev/sdaa15", BRACK(FH_SDAA | 15), "\\Device\\Harddisk26\\Partition15", exists_ntdev, S_IFBLK, true},
919 {"/dev/sdab1", BRACK(FH_SDAB | 1), "\\Device\\Harddisk27\\Partition1", exists_ntdev, S_IFBLK, true},
920 {"/dev/sdab2", BRACK(FH_SDAB | 2), "\\Device\\Harddisk27\\Partition2", exists_ntdev, S_IFBLK, true},
921 {"/dev/sdab3", BRACK(FH_SDAB | 3), "\\Device\\Harddisk27\\Partition3", exists_ntdev, S_IFBLK, true},
922 {"/dev/sdab4", BRACK(FH_SDAB | 4), "\\Device\\Harddisk27\\Partition4", exists_ntdev, S_IFBLK, true},
923 {"/dev/sdab5", BRACK(FH_SDAB | 5), "\\Device\\Harddisk27\\Partition5", exists_ntdev, S_IFBLK, true},
924 {"/dev/sdab6", BRACK(FH_SDAB | 6), "\\Device\\Harddisk27\\Partition6", exists_ntdev, S_IFBLK, true},
925 {"/dev/sdab7", BRACK(FH_SDAB | 7), "\\Device\\Harddisk27\\Partition7", exists_ntdev, S_IFBLK, true},
926 {"/dev/sdab8", BRACK(FH_SDAB | 8), "\\Device\\Harddisk27\\Partition8", exists_ntdev, S_IFBLK, true},
927 {"/dev/sdab9", BRACK(FH_SDAB | 9), "\\Device\\Harddisk27\\Partition9", exists_ntdev, S_IFBLK, true},
928 {"/dev/sdab10", BRACK(FH_SDAB | 10), "\\Device\\Harddisk27\\Partition10", exists_ntdev, S_IFBLK, true},
929 {"/dev/sdab11", BRACK(FH_SDAB | 11), "\\Device\\Harddisk27\\Partition11", exists_ntdev, S_IFBLK, true},
930 {"/dev/sdab12", BRACK(FH_SDAB | 12), "\\Device\\Harddisk27\\Partition12", exists_ntdev, S_IFBLK, true},
931 {"/dev/sdab13", BRACK(FH_SDAB | 13), "\\Device\\Harddisk27\\Partition13", exists_ntdev, S_IFBLK, true},
932 {"/dev/sdab14", BRACK(FH_SDAB | 14), "\\Device\\Harddisk27\\Partition14", exists_ntdev, S_IFBLK, true},
933 {"/dev/sdab15", BRACK(FH_SDAB | 15), "\\Device\\Harddisk27\\Partition15", exists_ntdev, S_IFBLK, true},
934 {"/dev/sdac1", BRACK(FH_SDAC | 1), "\\Device\\Harddisk28\\Partition1", exists_ntdev, S_IFBLK, true},
935 {"/dev/sdac2", BRACK(FH_SDAC | 2), "\\Device\\Harddisk28\\Partition2", exists_ntdev, S_IFBLK, true},
936 {"/dev/sdac3", BRACK(FH_SDAC | 3), "\\Device\\Harddisk28\\Partition3", exists_ntdev, S_IFBLK, true},
937 {"/dev/sdac4", BRACK(FH_SDAC | 4), "\\Device\\Harddisk28\\Partition4", exists_ntdev, S_IFBLK, true},
938 {"/dev/sdac5", BRACK(FH_SDAC | 5), "\\Device\\Harddisk28\\Partition5", exists_ntdev, S_IFBLK, true},
939 {"/dev/sdac6", BRACK(FH_SDAC | 6), "\\Device\\Harddisk28\\Partition6", exists_ntdev, S_IFBLK, true},
940 {"/dev/sdac7", BRACK(FH_SDAC | 7), "\\Device\\Harddisk28\\Partition7", exists_ntdev, S_IFBLK, true},
941 {"/dev/sdac8", BRACK(FH_SDAC | 8), "\\Device\\Harddisk28\\Partition8", exists_ntdev, S_IFBLK, true},
942 {"/dev/sdac9", BRACK(FH_SDAC | 9), "\\Device\\Harddisk28\\Partition9", exists_ntdev, S_IFBLK, true},
943 {"/dev/sdac10", BRACK(FH_SDAC | 10), "\\Device\\Harddisk28\\Partition10", exists_ntdev, S_IFBLK, true},
944 {"/dev/sdac11", BRACK(FH_SDAC | 11), "\\Device\\Harddisk28\\Partition11", exists_ntdev, S_IFBLK, true},
945 {"/dev/sdac12", BRACK(FH_SDAC | 12), "\\Device\\Harddisk28\\Partition12", exists_ntdev, S_IFBLK, true},
946 {"/dev/sdac13", BRACK(FH_SDAC | 13), "\\Device\\Harddisk28\\Partition13", exists_ntdev, S_IFBLK, true},
947 {"/dev/sdac14", BRACK(FH_SDAC | 14), "\\Device\\Harddisk28\\Partition14", exists_ntdev, S_IFBLK, true},
948 {"/dev/sdac15", BRACK(FH_SDAC | 15), "\\Device\\Harddisk28\\Partition15", exists_ntdev, S_IFBLK, true},
949 {"/dev/sdad1", BRACK(FH_SDAD | 1), "\\Device\\Harddisk29\\Partition1", exists_ntdev, S_IFBLK, true},
950 {"/dev/sdad2", BRACK(FH_SDAD | 2), "\\Device\\Harddisk29\\Partition2", exists_ntdev, S_IFBLK, true},
951 {"/dev/sdad3", BRACK(FH_SDAD | 3), "\\Device\\Harddisk29\\Partition3", exists_ntdev, S_IFBLK, true},
952 {"/dev/sdad4", BRACK(FH_SDAD | 4), "\\Device\\Harddisk29\\Partition4", exists_ntdev, S_IFBLK, true},
953 {"/dev/sdad5", BRACK(FH_SDAD | 5), "\\Device\\Harddisk29\\Partition5", exists_ntdev, S_IFBLK, true},
954 {"/dev/sdad6", BRACK(FH_SDAD | 6), "\\Device\\Harddisk29\\Partition6", exists_ntdev, S_IFBLK, true},
955 {"/dev/sdad7", BRACK(FH_SDAD | 7), "\\Device\\Harddisk29\\Partition7", exists_ntdev, S_IFBLK, true},
956 {"/dev/sdad8", BRACK(FH_SDAD | 8), "\\Device\\Harddisk29\\Partition8", exists_ntdev, S_IFBLK, true},
957 {"/dev/sdad9", BRACK(FH_SDAD | 9), "\\Device\\Harddisk29\\Partition9", exists_ntdev, S_IFBLK, true},
958 {"/dev/sdad10", BRACK(FH_SDAD | 10), "\\Device\\Harddisk29\\Partition10", exists_ntdev, S_IFBLK, true},
959 {"/dev/sdad11", BRACK(FH_SDAD | 11), "\\Device\\Harddisk29\\Partition11", exists_ntdev, S_IFBLK, true},
960 {"/dev/sdad12", BRACK(FH_SDAD | 12), "\\Device\\Harddisk29\\Partition12", exists_ntdev, S_IFBLK, true},
961 {"/dev/sdad13", BRACK(FH_SDAD | 13), "\\Device\\Harddisk29\\Partition13", exists_ntdev, S_IFBLK, true},
962 {"/dev/sdad14", BRACK(FH_SDAD | 14), "\\Device\\Harddisk29\\Partition14", exists_ntdev, S_IFBLK, true},
963 {"/dev/sdad15", BRACK(FH_SDAD | 15), "\\Device\\Harddisk29\\Partition15", exists_ntdev, S_IFBLK, true},
964 {"/dev/sdae1", BRACK(FH_SDAE | 1), "\\Device\\Harddisk30\\Partition1", exists_ntdev, S_IFBLK, true},
965 {"/dev/sdae2", BRACK(FH_SDAE | 2), "\\Device\\Harddisk30\\Partition2", exists_ntdev, S_IFBLK, true},
966 {"/dev/sdae3", BRACK(FH_SDAE | 3), "\\Device\\Harddisk30\\Partition3", exists_ntdev, S_IFBLK, true},
967 {"/dev/sdae4", BRACK(FH_SDAE | 4), "\\Device\\Harddisk30\\Partition4", exists_ntdev, S_IFBLK, true},
968 {"/dev/sdae5", BRACK(FH_SDAE | 5), "\\Device\\Harddisk30\\Partition5", exists_ntdev, S_IFBLK, true},
969 {"/dev/sdae6", BRACK(FH_SDAE | 6), "\\Device\\Harddisk30\\Partition6", exists_ntdev, S_IFBLK, true},
970 {"/dev/sdae7", BRACK(FH_SDAE | 7), "\\Device\\Harddisk30\\Partition7", exists_ntdev, S_IFBLK, true},
971 {"/dev/sdae8", BRACK(FH_SDAE | 8), "\\Device\\Harddisk30\\Partition8", exists_ntdev, S_IFBLK, true},
972 {"/dev/sdae9", BRACK(FH_SDAE | 9), "\\Device\\Harddisk30\\Partition9", exists_ntdev, S_IFBLK, true},
973 {"/dev/sdae10", BRACK(FH_SDAE | 10), "\\Device\\Harddisk30\\Partition10", exists_ntdev, S_IFBLK, true},
974 {"/dev/sdae11", BRACK(FH_SDAE | 11), "\\Device\\Harddisk30\\Partition11", exists_ntdev, S_IFBLK, true},
975 {"/dev/sdae12", BRACK(FH_SDAE | 12), "\\Device\\Harddisk30\\Partition12", exists_ntdev, S_IFBLK, true},
976 {"/dev/sdae13", BRACK(FH_SDAE | 13), "\\Device\\Harddisk30\\Partition13", exists_ntdev, S_IFBLK, true},
977 {"/dev/sdae14", BRACK(FH_SDAE | 14), "\\Device\\Harddisk30\\Partition14", exists_ntdev, S_IFBLK, true},
978 {"/dev/sdae15", BRACK(FH_SDAE | 15), "\\Device\\Harddisk30\\Partition15", exists_ntdev, S_IFBLK, true},
979 {"/dev/sdaf1", BRACK(FH_SDAF | 1), "\\Device\\Harddisk31\\Partition1", exists_ntdev, S_IFBLK, true},
980 {"/dev/sdaf2", BRACK(FH_SDAF | 2), "\\Device\\Harddisk31\\Partition2", exists_ntdev, S_IFBLK, true},
981 {"/dev/sdaf3", BRACK(FH_SDAF | 3), "\\Device\\Harddisk31\\Partition3", exists_ntdev, S_IFBLK, true},
982 {"/dev/sdaf4", BRACK(FH_SDAF | 4), "\\Device\\Harddisk31\\Partition4", exists_ntdev, S_IFBLK, true},
983 {"/dev/sdaf5", BRACK(FH_SDAF | 5), "\\Device\\Harddisk31\\Partition5", exists_ntdev, S_IFBLK, true},
984 {"/dev/sdaf6", BRACK(FH_SDAF | 6), "\\Device\\Harddisk31\\Partition6", exists_ntdev, S_IFBLK, true},
985 {"/dev/sdaf7", BRACK(FH_SDAF | 7), "\\Device\\Harddisk31\\Partition7", exists_ntdev, S_IFBLK, true},
986 {"/dev/sdaf8", BRACK(FH_SDAF | 8), "\\Device\\Harddisk31\\Partition8", exists_ntdev, S_IFBLK, true},
987 {"/dev/sdaf9", BRACK(FH_SDAF | 9), "\\Device\\Harddisk31\\Partition9", exists_ntdev, S_IFBLK, true},
988 {"/dev/sdaf10", BRACK(FH_SDAF | 10), "\\Device\\Harddisk31\\Partition10", exists_ntdev, S_IFBLK, true},
989 {"/dev/sdaf11", BRACK(FH_SDAF | 11), "\\Device\\Harddisk31\\Partition11", exists_ntdev, S_IFBLK, true},
990 {"/dev/sdaf12", BRACK(FH_SDAF | 12), "\\Device\\Harddisk31\\Partition12", exists_ntdev, S_IFBLK, true},
991 {"/dev/sdaf13", BRACK(FH_SDAF | 13), "\\Device\\Harddisk31\\Partition13", exists_ntdev, S_IFBLK, true},
992 {"/dev/sdaf14", BRACK(FH_SDAF | 14), "\\Device\\Harddisk31\\Partition14", exists_ntdev, S_IFBLK, true},
993 {"/dev/sdaf15", BRACK(FH_SDAF | 15), "\\Device\\Harddisk31\\Partition15", exists_ntdev, S_IFBLK, true},
994 {"/dev/sdag1", BRACK(FH_SDAG | 1), "\\Device\\Harddisk32\\Partition1", exists_ntdev, S_IFBLK, true},
995 {"/dev/sdag2", BRACK(FH_SDAG | 2), "\\Device\\Harddisk32\\Partition2", exists_ntdev, S_IFBLK, true},
996 {"/dev/sdag3", BRACK(FH_SDAG | 3), "\\Device\\Harddisk32\\Partition3", exists_ntdev, S_IFBLK, true},
997 {"/dev/sdag4", BRACK(FH_SDAG | 4), "\\Device\\Harddisk32\\Partition4", exists_ntdev, S_IFBLK, true},
998 {"/dev/sdag5", BRACK(FH_SDAG | 5), "\\Device\\Harddisk32\\Partition5", exists_ntdev, S_IFBLK, true},
999 {"/dev/sdag6", BRACK(FH_SDAG | 6), "\\Device\\Harddisk32\\Partition6", exists_ntdev, S_IFBLK, true},
1000 {"/dev/sdag7", BRACK(FH_SDAG | 7), "\\Device\\Harddisk32\\Partition7", exists_ntdev, S_IFBLK, true},
1001 {"/dev/sdag8", BRACK(FH_SDAG | 8), "\\Device\\Harddisk32\\Partition8", exists_ntdev, S_IFBLK, true},
1002 {"/dev/sdag9", BRACK(FH_SDAG | 9), "\\Device\\Harddisk32\\Partition9", exists_ntdev, S_IFBLK, true},
1003 {"/dev/sdag10", BRACK(FH_SDAG | 10), "\\Device\\Harddisk32\\Partition10", exists_ntdev, S_IFBLK, true},
1004 {"/dev/sdag11", BRACK(FH_SDAG | 11), "\\Device\\Harddisk32\\Partition11", exists_ntdev, S_IFBLK, true},
1005 {"/dev/sdag12", BRACK(FH_SDAG | 12), "\\Device\\Harddisk32\\Partition12", exists_ntdev, S_IFBLK, true},
1006 {"/dev/sdag13", BRACK(FH_SDAG | 13), "\\Device\\Harddisk32\\Partition13", exists_ntdev, S_IFBLK, true},
1007 {"/dev/sdag14", BRACK(FH_SDAG | 14), "\\Device\\Harddisk32\\Partition14", exists_ntdev, S_IFBLK, true},
1008 {"/dev/sdag15", BRACK(FH_SDAG | 15), "\\Device\\Harddisk32\\Partition15", exists_ntdev, S_IFBLK, true},
1009 {"/dev/sdah1", BRACK(FH_SDAH | 1), "\\Device\\Harddisk33\\Partition1", exists_ntdev, S_IFBLK, true},
1010 {"/dev/sdah2", BRACK(FH_SDAH | 2), "\\Device\\Harddisk33\\Partition2", exists_ntdev, S_IFBLK, true},
1011 {"/dev/sdah3", BRACK(FH_SDAH | 3), "\\Device\\Harddisk33\\Partition3", exists_ntdev, S_IFBLK, true},
1012 {"/dev/sdah4", BRACK(FH_SDAH | 4), "\\Device\\Harddisk33\\Partition4", exists_ntdev, S_IFBLK, true},
1013 {"/dev/sdah5", BRACK(FH_SDAH | 5), "\\Device\\Harddisk33\\Partition5", exists_ntdev, S_IFBLK, true},
1014 {"/dev/sdah6", BRACK(FH_SDAH | 6), "\\Device\\Harddisk33\\Partition6", exists_ntdev, S_IFBLK, true},
1015 {"/dev/sdah7", BRACK(FH_SDAH | 7), "\\Device\\Harddisk33\\Partition7", exists_ntdev, S_IFBLK, true},
1016 {"/dev/sdah8", BRACK(FH_SDAH | 8), "\\Device\\Harddisk33\\Partition8", exists_ntdev, S_IFBLK, true},
1017 {"/dev/sdah9", BRACK(FH_SDAH | 9), "\\Device\\Harddisk33\\Partition9", exists_ntdev, S_IFBLK, true},
1018 {"/dev/sdah10", BRACK(FH_SDAH | 10), "\\Device\\Harddisk33\\Partition10", exists_ntdev, S_IFBLK, true},
1019 {"/dev/sdah11", BRACK(FH_SDAH | 11), "\\Device\\Harddisk33\\Partition11", exists_ntdev, S_IFBLK, true},
1020 {"/dev/sdah12", BRACK(FH_SDAH | 12), "\\Device\\Harddisk33\\Partition12", exists_ntdev, S_IFBLK, true},
1021 {"/dev/sdah13", BRACK(FH_SDAH | 13), "\\Device\\Harddisk33\\Partition13", exists_ntdev, S_IFBLK, true},
1022 {"/dev/sdah14", BRACK(FH_SDAH | 14), "\\Device\\Harddisk33\\Partition14", exists_ntdev, S_IFBLK, true},
1023 {"/dev/sdah15", BRACK(FH_SDAH | 15), "\\Device\\Harddisk33\\Partition15", exists_ntdev, S_IFBLK, true},
1024 {"/dev/sdai1", BRACK(FH_SDAI | 1), "\\Device\\Harddisk34\\Partition1", exists_ntdev, S_IFBLK, true},
1025 {"/dev/sdai2", BRACK(FH_SDAI | 2), "\\Device\\Harddisk34\\Partition2", exists_ntdev, S_IFBLK, true},
1026 {"/dev/sdai3", BRACK(FH_SDAI | 3), "\\Device\\Harddisk34\\Partition3", exists_ntdev, S_IFBLK, true},
1027 {"/dev/sdai4", BRACK(FH_SDAI | 4), "\\Device\\Harddisk34\\Partition4", exists_ntdev, S_IFBLK, true},
1028 {"/dev/sdai5", BRACK(FH_SDAI | 5), "\\Device\\Harddisk34\\Partition5", exists_ntdev, S_IFBLK, true},
1029 {"/dev/sdai6", BRACK(FH_SDAI | 6), "\\Device\\Harddisk34\\Partition6", exists_ntdev, S_IFBLK, true},
1030 {"/dev/sdai7", BRACK(FH_SDAI | 7), "\\Device\\Harddisk34\\Partition7", exists_ntdev, S_IFBLK, true},
1031 {"/dev/sdai8", BRACK(FH_SDAI | 8), "\\Device\\Harddisk34\\Partition8", exists_ntdev, S_IFBLK, true},
1032 {"/dev/sdai9", BRACK(FH_SDAI | 9), "\\Device\\Harddisk34\\Partition9", exists_ntdev, S_IFBLK, true},
1033 {"/dev/sdai10", BRACK(FH_SDAI | 10), "\\Device\\Harddisk34\\Partition10", exists_ntdev, S_IFBLK, true},
1034 {"/dev/sdai11", BRACK(FH_SDAI | 11), "\\Device\\Harddisk34\\Partition11", exists_ntdev, S_IFBLK, true},
1035 {"/dev/sdai12", BRACK(FH_SDAI | 12), "\\Device\\Harddisk34\\Partition12", exists_ntdev, S_IFBLK, true},
1036 {"/dev/sdai13", BRACK(FH_SDAI | 13), "\\Device\\Harddisk34\\Partition13", exists_ntdev, S_IFBLK, true},
1037 {"/dev/sdai14", BRACK(FH_SDAI | 14), "\\Device\\Harddisk34\\Partition14", exists_ntdev, S_IFBLK, true},
1038 {"/dev/sdai15", BRACK(FH_SDAI | 15), "\\Device\\Harddisk34\\Partition15", exists_ntdev, S_IFBLK, true},
1039 {"/dev/sdaj1", BRACK(FH_SDAJ | 1), "\\Device\\Harddisk35\\Partition1", exists_ntdev, S_IFBLK, true},
1040 {"/dev/sdaj2", BRACK(FH_SDAJ | 2), "\\Device\\Harddisk35\\Partition2", exists_ntdev, S_IFBLK, true},
1041 {"/dev/sdaj3", BRACK(FH_SDAJ | 3), "\\Device\\Harddisk35\\Partition3", exists_ntdev, S_IFBLK, true},
1042 {"/dev/sdaj4", BRACK(FH_SDAJ | 4), "\\Device\\Harddisk35\\Partition4", exists_ntdev, S_IFBLK, true},
1043 {"/dev/sdaj5", BRACK(FH_SDAJ | 5), "\\Device\\Harddisk35\\Partition5", exists_ntdev, S_IFBLK, true},
1044 {"/dev/sdaj6", BRACK(FH_SDAJ | 6), "\\Device\\Harddisk35\\Partition6", exists_ntdev, S_IFBLK, true},
1045 {"/dev/sdaj7", BRACK(FH_SDAJ | 7), "\\Device\\Harddisk35\\Partition7", exists_ntdev, S_IFBLK, true},
1046 {"/dev/sdaj8", BRACK(FH_SDAJ | 8), "\\Device\\Harddisk35\\Partition8", exists_ntdev, S_IFBLK, true},
1047 {"/dev/sdaj9", BRACK(FH_SDAJ | 9), "\\Device\\Harddisk35\\Partition9", exists_ntdev, S_IFBLK, true},
1048 {"/dev/sdaj10", BRACK(FH_SDAJ | 10), "\\Device\\Harddisk35\\Partition10", exists_ntdev, S_IFBLK, true},
1049 {"/dev/sdaj11", BRACK(FH_SDAJ | 11), "\\Device\\Harddisk35\\Partition11", exists_ntdev, S_IFBLK, true},
1050 {"/dev/sdaj12", BRACK(FH_SDAJ | 12), "\\Device\\Harddisk35\\Partition12", exists_ntdev, S_IFBLK, true},
1051 {"/dev/sdaj13", BRACK(FH_SDAJ | 13), "\\Device\\Harddisk35\\Partition13", exists_ntdev, S_IFBLK, true},
1052 {"/dev/sdaj14", BRACK(FH_SDAJ | 14), "\\Device\\Harddisk35\\Partition14", exists_ntdev, S_IFBLK, true},
1053 {"/dev/sdaj15", BRACK(FH_SDAJ | 15), "\\Device\\Harddisk35\\Partition15", exists_ntdev, S_IFBLK, true},
1054 {"/dev/sdak1", BRACK(FH_SDAK | 1), "\\Device\\Harddisk36\\Partition1", exists_ntdev, S_IFBLK, true},
1055 {"/dev/sdak2", BRACK(FH_SDAK | 2), "\\Device\\Harddisk36\\Partition2", exists_ntdev, S_IFBLK, true},
1056 {"/dev/sdak3", BRACK(FH_SDAK | 3), "\\Device\\Harddisk36\\Partition3", exists_ntdev, S_IFBLK, true},
1057 {"/dev/sdak4", BRACK(FH_SDAK | 4), "\\Device\\Harddisk36\\Partition4", exists_ntdev, S_IFBLK, true},
1058 {"/dev/sdak5", BRACK(FH_SDAK | 5), "\\Device\\Harddisk36\\Partition5", exists_ntdev, S_IFBLK, true},
1059 {"/dev/sdak6", BRACK(FH_SDAK | 6), "\\Device\\Harddisk36\\Partition6", exists_ntdev, S_IFBLK, true},
1060 {"/dev/sdak7", BRACK(FH_SDAK | 7), "\\Device\\Harddisk36\\Partition7", exists_ntdev, S_IFBLK, true},
1061 {"/dev/sdak8", BRACK(FH_SDAK | 8), "\\Device\\Harddisk36\\Partition8", exists_ntdev, S_IFBLK, true},
1062 {"/dev/sdak9", BRACK(FH_SDAK | 9), "\\Device\\Harddisk36\\Partition9", exists_ntdev, S_IFBLK, true},
1063 {"/dev/sdak10", BRACK(FH_SDAK | 10), "\\Device\\Harddisk36\\Partition10", exists_ntdev, S_IFBLK, true},
1064 {"/dev/sdak11", BRACK(FH_SDAK | 11), "\\Device\\Harddisk36\\Partition11", exists_ntdev, S_IFBLK, true},
1065 {"/dev/sdak12", BRACK(FH_SDAK | 12), "\\Device\\Harddisk36\\Partition12", exists_ntdev, S_IFBLK, true},
1066 {"/dev/sdak13", BRACK(FH_SDAK | 13), "\\Device\\Harddisk36\\Partition13", exists_ntdev, S_IFBLK, true},
1067 {"/dev/sdak14", BRACK(FH_SDAK | 14), "\\Device\\Harddisk36\\Partition14", exists_ntdev, S_IFBLK, true},
1068 {"/dev/sdak15", BRACK(FH_SDAK | 15), "\\Device\\Harddisk36\\Partition15", exists_ntdev, S_IFBLK, true},
1069 {"/dev/sdal1", BRACK(FH_SDAL | 1), "\\Device\\Harddisk37\\Partition1", exists_ntdev, S_IFBLK, true},
1070 {"/dev/sdal2", BRACK(FH_SDAL | 2), "\\Device\\Harddisk37\\Partition2", exists_ntdev, S_IFBLK, true},
1071 {"/dev/sdal3", BRACK(FH_SDAL | 3), "\\Device\\Harddisk37\\Partition3", exists_ntdev, S_IFBLK, true},
1072 {"/dev/sdal4", BRACK(FH_SDAL | 4), "\\Device\\Harddisk37\\Partition4", exists_ntdev, S_IFBLK, true},
1073 {"/dev/sdal5", BRACK(FH_SDAL | 5), "\\Device\\Harddisk37\\Partition5", exists_ntdev, S_IFBLK, true},
1074 {"/dev/sdal6", BRACK(FH_SDAL | 6), "\\Device\\Harddisk37\\Partition6", exists_ntdev, S_IFBLK, true},
1075 {"/dev/sdal7", BRACK(FH_SDAL | 7), "\\Device\\Harddisk37\\Partition7", exists_ntdev, S_IFBLK, true},
1076 {"/dev/sdal8", BRACK(FH_SDAL | 8), "\\Device\\Harddisk37\\Partition8", exists_ntdev, S_IFBLK, true},
1077 {"/dev/sdal9", BRACK(FH_SDAL | 9), "\\Device\\Harddisk37\\Partition9", exists_ntdev, S_IFBLK, true},
1078 {"/dev/sdal10", BRACK(FH_SDAL | 10), "\\Device\\Harddisk37\\Partition10", exists_ntdev, S_IFBLK, true},
1079 {"/dev/sdal11", BRACK(FH_SDAL | 11), "\\Device\\Harddisk37\\Partition11", exists_ntdev, S_IFBLK, true},
1080 {"/dev/sdal12", BRACK(FH_SDAL | 12), "\\Device\\Harddisk37\\Partition12", exists_ntdev, S_IFBLK, true},
1081 {"/dev/sdal13", BRACK(FH_SDAL | 13), "\\Device\\Harddisk37\\Partition13", exists_ntdev, S_IFBLK, true},
1082 {"/dev/sdal14", BRACK(FH_SDAL | 14), "\\Device\\Harddisk37\\Partition14", exists_ntdev, S_IFBLK, true},
1083 {"/dev/sdal15", BRACK(FH_SDAL | 15), "\\Device\\Harddisk37\\Partition15", exists_ntdev, S_IFBLK, true},
1084 {"/dev/sdam1", BRACK(FH_SDAM | 1), "\\Device\\Harddisk38\\Partition1", exists_ntdev, S_IFBLK, true},
1085 {"/dev/sdam2", BRACK(FH_SDAM | 2), "\\Device\\Harddisk38\\Partition2", exists_ntdev, S_IFBLK, true},
1086 {"/dev/sdam3", BRACK(FH_SDAM | 3), "\\Device\\Harddisk38\\Partition3", exists_ntdev, S_IFBLK, true},
1087 {"/dev/sdam4", BRACK(FH_SDAM | 4), "\\Device\\Harddisk38\\Partition4", exists_ntdev, S_IFBLK, true},
1088 {"/dev/sdam5", BRACK(FH_SDAM | 5), "\\Device\\Harddisk38\\Partition5", exists_ntdev, S_IFBLK, true},
1089 {"/dev/sdam6", BRACK(FH_SDAM | 6), "\\Device\\Harddisk38\\Partition6", exists_ntdev, S_IFBLK, true},
1090 {"/dev/sdam7", BRACK(FH_SDAM | 7), "\\Device\\Harddisk38\\Partition7", exists_ntdev, S_IFBLK, true},
1091 {"/dev/sdam8", BRACK(FH_SDAM | 8), "\\Device\\Harddisk38\\Partition8", exists_ntdev, S_IFBLK, true},
1092 {"/dev/sdam9", BRACK(FH_SDAM | 9), "\\Device\\Harddisk38\\Partition9", exists_ntdev, S_IFBLK, true},
1093 {"/dev/sdam10", BRACK(FH_SDAM | 10), "\\Device\\Harddisk38\\Partition10", exists_ntdev, S_IFBLK, true},
1094 {"/dev/sdam11", BRACK(FH_SDAM | 11), "\\Device\\Harddisk38\\Partition11", exists_ntdev, S_IFBLK, true},
1095 {"/dev/sdam12", BRACK(FH_SDAM | 12), "\\Device\\Harddisk38\\Partition12", exists_ntdev, S_IFBLK, true},
1096 {"/dev/sdam13", BRACK(FH_SDAM | 13), "\\Device\\Harddisk38\\Partition13", exists_ntdev, S_IFBLK, true},
1097 {"/dev/sdam14", BRACK(FH_SDAM | 14), "\\Device\\Harddisk38\\Partition14", exists_ntdev, S_IFBLK, true},
1098 {"/dev/sdam15", BRACK(FH_SDAM | 15), "\\Device\\Harddisk38\\Partition15", exists_ntdev, S_IFBLK, true},
1099 {"/dev/sdan1", BRACK(FH_SDAN | 1), "\\Device\\Harddisk39\\Partition1", exists_ntdev, S_IFBLK, true},
1100 {"/dev/sdan2", BRACK(FH_SDAN | 2), "\\Device\\Harddisk39\\Partition2", exists_ntdev, S_IFBLK, true},
1101 {"/dev/sdan3", BRACK(FH_SDAN | 3), "\\Device\\Harddisk39\\Partition3", exists_ntdev, S_IFBLK, true},
1102 {"/dev/sdan4", BRACK(FH_SDAN | 4), "\\Device\\Harddisk39\\Partition4", exists_ntdev, S_IFBLK, true},
1103 {"/dev/sdan5", BRACK(FH_SDAN | 5), "\\Device\\Harddisk39\\Partition5", exists_ntdev, S_IFBLK, true},
1104 {"/dev/sdan6", BRACK(FH_SDAN | 6), "\\Device\\Harddisk39\\Partition6", exists_ntdev, S_IFBLK, true},
1105 {"/dev/sdan7", BRACK(FH_SDAN | 7), "\\Device\\Harddisk39\\Partition7", exists_ntdev, S_IFBLK, true},
1106 {"/dev/sdan8", BRACK(FH_SDAN | 8), "\\Device\\Harddisk39\\Partition8", exists_ntdev, S_IFBLK, true},
1107 {"/dev/sdan9", BRACK(FH_SDAN | 9), "\\Device\\Harddisk39\\Partition9", exists_ntdev, S_IFBLK, true},
1108 {"/dev/sdan10", BRACK(FH_SDAN | 10), "\\Device\\Harddisk39\\Partition10", exists_ntdev, S_IFBLK, true},
1109 {"/dev/sdan11", BRACK(FH_SDAN | 11), "\\Device\\Harddisk39\\Partition11", exists_ntdev, S_IFBLK, true},
1110 {"/dev/sdan12", BRACK(FH_SDAN | 12), "\\Device\\Harddisk39\\Partition12", exists_ntdev, S_IFBLK, true},
1111 {"/dev/sdan13", BRACK(FH_SDAN | 13), "\\Device\\Harddisk39\\Partition13", exists_ntdev, S_IFBLK, true},
1112 {"/dev/sdan14", BRACK(FH_SDAN | 14), "\\Device\\Harddisk39\\Partition14", exists_ntdev, S_IFBLK, true},
1113 {"/dev/sdan15", BRACK(FH_SDAN | 15), "\\Device\\Harddisk39\\Partition15", exists_ntdev, S_IFBLK, true},
1114 {"/dev/sdao1", BRACK(FH_SDAO | 1), "\\Device\\Harddisk40\\Partition1", exists_ntdev, S_IFBLK, true},
1115 {"/dev/sdao2", BRACK(FH_SDAO | 2), "\\Device\\Harddisk40\\Partition2", exists_ntdev, S_IFBLK, true},
1116 {"/dev/sdao3", BRACK(FH_SDAO | 3), "\\Device\\Harddisk40\\Partition3", exists_ntdev, S_IFBLK, true},
1117 {"/dev/sdao4", BRACK(FH_SDAO | 4), "\\Device\\Harddisk40\\Partition4", exists_ntdev, S_IFBLK, true},
1118 {"/dev/sdao5", BRACK(FH_SDAO | 5), "\\Device\\Harddisk40\\Partition5", exists_ntdev, S_IFBLK, true},
1119 {"/dev/sdao6", BRACK(FH_SDAO | 6), "\\Device\\Harddisk40\\Partition6", exists_ntdev, S_IFBLK, true},
1120 {"/dev/sdao7", BRACK(FH_SDAO | 7), "\\Device\\Harddisk40\\Partition7", exists_ntdev, S_IFBLK, true},
1121 {"/dev/sdao8", BRACK(FH_SDAO | 8), "\\Device\\Harddisk40\\Partition8", exists_ntdev, S_IFBLK, true},
1122 {"/dev/sdao9", BRACK(FH_SDAO | 9), "\\Device\\Harddisk40\\Partition9", exists_ntdev, S_IFBLK, true},
1123 {"/dev/sdao10", BRACK(FH_SDAO | 10), "\\Device\\Harddisk40\\Partition10", exists_ntdev, S_IFBLK, true},
1124 {"/dev/sdao11", BRACK(FH_SDAO | 11), "\\Device\\Harddisk40\\Partition11", exists_ntdev, S_IFBLK, true},
1125 {"/dev/sdao12", BRACK(FH_SDAO | 12), "\\Device\\Harddisk40\\Partition12", exists_ntdev, S_IFBLK, true},
1126 {"/dev/sdao13", BRACK(FH_SDAO | 13), "\\Device\\Harddisk40\\Partition13", exists_ntdev, S_IFBLK, true},
1127 {"/dev/sdao14", BRACK(FH_SDAO | 14), "\\Device\\Harddisk40\\Partition14", exists_ntdev, S_IFBLK, true},
1128 {"/dev/sdao15", BRACK(FH_SDAO | 15), "\\Device\\Harddisk40\\Partition15", exists_ntdev, S_IFBLK, true},
1129 {"/dev/sdap1", BRACK(FH_SDAP | 1), "\\Device\\Harddisk41\\Partition1", exists_ntdev, S_IFBLK, true},
1130 {"/dev/sdap2", BRACK(FH_SDAP | 2), "\\Device\\Harddisk41\\Partition2", exists_ntdev, S_IFBLK, true},
1131 {"/dev/sdap3", BRACK(FH_SDAP | 3), "\\Device\\Harddisk41\\Partition3", exists_ntdev, S_IFBLK, true},
1132 {"/dev/sdap4", BRACK(FH_SDAP | 4), "\\Device\\Harddisk41\\Partition4", exists_ntdev, S_IFBLK, true},
1133 {"/dev/sdap5", BRACK(FH_SDAP | 5), "\\Device\\Harddisk41\\Partition5", exists_ntdev, S_IFBLK, true},
1134 {"/dev/sdap6", BRACK(FH_SDAP | 6), "\\Device\\Harddisk41\\Partition6", exists_ntdev, S_IFBLK, true},
1135 {"/dev/sdap7", BRACK(FH_SDAP | 7), "\\Device\\Harddisk41\\Partition7", exists_ntdev, S_IFBLK, true},
1136 {"/dev/sdap8", BRACK(FH_SDAP | 8), "\\Device\\Harddisk41\\Partition8", exists_ntdev, S_IFBLK, true},
1137 {"/dev/sdap9", BRACK(FH_SDAP | 9), "\\Device\\Harddisk41\\Partition9", exists_ntdev, S_IFBLK, true},
1138 {"/dev/sdap10", BRACK(FH_SDAP | 10), "\\Device\\Harddisk41\\Partition10", exists_ntdev, S_IFBLK, true},
1139 {"/dev/sdap11", BRACK(FH_SDAP | 11), "\\Device\\Harddisk41\\Partition11", exists_ntdev, S_IFBLK, true},
1140 {"/dev/sdap12", BRACK(FH_SDAP | 12), "\\Device\\Harddisk41\\Partition12", exists_ntdev, S_IFBLK, true},
1141 {"/dev/sdap13", BRACK(FH_SDAP | 13), "\\Device\\Harddisk41\\Partition13", exists_ntdev, S_IFBLK, true},
1142 {"/dev/sdap14", BRACK(FH_SDAP | 14), "\\Device\\Harddisk41\\Partition14", exists_ntdev, S_IFBLK, true},
1143 {"/dev/sdap15", BRACK(FH_SDAP | 15), "\\Device\\Harddisk41\\Partition15", exists_ntdev, S_IFBLK, true},
1144 {"/dev/sdaq1", BRACK(FH_SDAQ | 1), "\\Device\\Harddisk42\\Partition1", exists_ntdev, S_IFBLK, true},
1145 {"/dev/sdaq2", BRACK(FH_SDAQ | 2), "\\Device\\Harddisk42\\Partition2", exists_ntdev, S_IFBLK, true},
1146 {"/dev/sdaq3", BRACK(FH_SDAQ | 3), "\\Device\\Harddisk42\\Partition3", exists_ntdev, S_IFBLK, true},
1147 {"/dev/sdaq4", BRACK(FH_SDAQ | 4), "\\Device\\Harddisk42\\Partition4", exists_ntdev, S_IFBLK, true},
1148 {"/dev/sdaq5", BRACK(FH_SDAQ | 5), "\\Device\\Harddisk42\\Partition5", exists_ntdev, S_IFBLK, true},
1149 {"/dev/sdaq6", BRACK(FH_SDAQ | 6), "\\Device\\Harddisk42\\Partition6", exists_ntdev, S_IFBLK, true},
1150 {"/dev/sdaq7", BRACK(FH_SDAQ | 7), "\\Device\\Harddisk42\\Partition7", exists_ntdev, S_IFBLK, true},
1151 {"/dev/sdaq8", BRACK(FH_SDAQ | 8), "\\Device\\Harddisk42\\Partition8", exists_ntdev, S_IFBLK, true},
1152 {"/dev/sdaq9", BRACK(FH_SDAQ | 9), "\\Device\\Harddisk42\\Partition9", exists_ntdev, S_IFBLK, true},
1153 {"/dev/sdaq10", BRACK(FH_SDAQ | 10), "\\Device\\Harddisk42\\Partition10", exists_ntdev, S_IFBLK, true},
1154 {"/dev/sdaq11", BRACK(FH_SDAQ | 11), "\\Device\\Harddisk42\\Partition11", exists_ntdev, S_IFBLK, true},
1155 {"/dev/sdaq12", BRACK(FH_SDAQ | 12), "\\Device\\Harddisk42\\Partition12", exists_ntdev, S_IFBLK, true},
1156 {"/dev/sdaq13", BRACK(FH_SDAQ | 13), "\\Device\\Harddisk42\\Partition13", exists_ntdev, S_IFBLK, true},
1157 {"/dev/sdaq14", BRACK(FH_SDAQ | 14), "\\Device\\Harddisk42\\Partition14", exists_ntdev, S_IFBLK, true},
1158 {"/dev/sdaq15", BRACK(FH_SDAQ | 15), "\\Device\\Harddisk42\\Partition15", exists_ntdev, S_IFBLK, true},
1159 {"/dev/sdar1", BRACK(FH_SDAR | 1), "\\Device\\Harddisk43\\Partition1", exists_ntdev, S_IFBLK, true},
1160 {"/dev/sdar2", BRACK(FH_SDAR | 2), "\\Device\\Harddisk43\\Partition2", exists_ntdev, S_IFBLK, true},
1161 {"/dev/sdar3", BRACK(FH_SDAR | 3), "\\Device\\Harddisk43\\Partition3", exists_ntdev, S_IFBLK, true},
1162 {"/dev/sdar4", BRACK(FH_SDAR | 4), "\\Device\\Harddisk43\\Partition4", exists_ntdev, S_IFBLK, true},
1163 {"/dev/sdar5", BRACK(FH_SDAR | 5), "\\Device\\Harddisk43\\Partition5", exists_ntdev, S_IFBLK, true},
1164 {"/dev/sdar6", BRACK(FH_SDAR | 6), "\\Device\\Harddisk43\\Partition6", exists_ntdev, S_IFBLK, true},
1165 {"/dev/sdar7", BRACK(FH_SDAR | 7), "\\Device\\Harddisk43\\Partition7", exists_ntdev, S_IFBLK, true},
1166 {"/dev/sdar8", BRACK(FH_SDAR | 8), "\\Device\\Harddisk43\\Partition8", exists_ntdev, S_IFBLK, true},
1167 {"/dev/sdar9", BRACK(FH_SDAR | 9), "\\Device\\Harddisk43\\Partition9", exists_ntdev, S_IFBLK, true},
1168 {"/dev/sdar10", BRACK(FH_SDAR | 10), "\\Device\\Harddisk43\\Partition10", exists_ntdev, S_IFBLK, true},
1169 {"/dev/sdar11", BRACK(FH_SDAR | 11), "\\Device\\Harddisk43\\Partition11", exists_ntdev, S_IFBLK, true},
1170 {"/dev/sdar12", BRACK(FH_SDAR | 12), "\\Device\\Harddisk43\\Partition12", exists_ntdev, S_IFBLK, true},
1171 {"/dev/sdar13", BRACK(FH_SDAR | 13), "\\Device\\Harddisk43\\Partition13", exists_ntdev, S_IFBLK, true},
1172 {"/dev/sdar14", BRACK(FH_SDAR | 14), "\\Device\\Harddisk43\\Partition14", exists_ntdev, S_IFBLK, true},
1173 {"/dev/sdar15", BRACK(FH_SDAR | 15), "\\Device\\Harddisk43\\Partition15", exists_ntdev, S_IFBLK, true},
1174 {"/dev/sdas1", BRACK(FH_SDAS | 1), "\\Device\\Harddisk44\\Partition1", exists_ntdev, S_IFBLK, true},
1175 {"/dev/sdas2", BRACK(FH_SDAS | 2), "\\Device\\Harddisk44\\Partition2", exists_ntdev, S_IFBLK, true},
1176 {"/dev/sdas3", BRACK(FH_SDAS | 3), "\\Device\\Harddisk44\\Partition3", exists_ntdev, S_IFBLK, true},
1177 {"/dev/sdas4", BRACK(FH_SDAS | 4), "\\Device\\Harddisk44\\Partition4", exists_ntdev, S_IFBLK, true},
1178 {"/dev/sdas5", BRACK(FH_SDAS | 5), "\\Device\\Harddisk44\\Partition5", exists_ntdev, S_IFBLK, true},
1179 {"/dev/sdas6", BRACK(FH_SDAS | 6), "\\Device\\Harddisk44\\Partition6", exists_ntdev, S_IFBLK, true},
1180 {"/dev/sdas7", BRACK(FH_SDAS | 7), "\\Device\\Harddisk44\\Partition7", exists_ntdev, S_IFBLK, true},
1181 {"/dev/sdas8", BRACK(FH_SDAS | 8), "\\Device\\Harddisk44\\Partition8", exists_ntdev, S_IFBLK, true},
1182 {"/dev/sdas9", BRACK(FH_SDAS | 9), "\\Device\\Harddisk44\\Partition9", exists_ntdev, S_IFBLK, true},
1183 {"/dev/sdas10", BRACK(FH_SDAS | 10), "\\Device\\Harddisk44\\Partition10", exists_ntdev, S_IFBLK, true},
1184 {"/dev/sdas11", BRACK(FH_SDAS | 11), "\\Device\\Harddisk44\\Partition11", exists_ntdev, S_IFBLK, true},
1185 {"/dev/sdas12", BRACK(FH_SDAS | 12), "\\Device\\Harddisk44\\Partition12", exists_ntdev, S_IFBLK, true},
1186 {"/dev/sdas13", BRACK(FH_SDAS | 13), "\\Device\\Harddisk44\\Partition13", exists_ntdev, S_IFBLK, true},
1187 {"/dev/sdas14", BRACK(FH_SDAS | 14), "\\Device\\Harddisk44\\Partition14", exists_ntdev, S_IFBLK, true},
1188 {"/dev/sdas15", BRACK(FH_SDAS | 15), "\\Device\\Harddisk44\\Partition15", exists_ntdev, S_IFBLK, true},
1189 {"/dev/sdat1", BRACK(FH_SDAT | 1), "\\Device\\Harddisk45\\Partition1", exists_ntdev, S_IFBLK, true},
1190 {"/dev/sdat2", BRACK(FH_SDAT | 2), "\\Device\\Harddisk45\\Partition2", exists_ntdev, S_IFBLK, true},
1191 {"/dev/sdat3", BRACK(FH_SDAT | 3), "\\Device\\Harddisk45\\Partition3", exists_ntdev, S_IFBLK, true},
1192 {"/dev/sdat4", BRACK(FH_SDAT | 4), "\\Device\\Harddisk45\\Partition4", exists_ntdev, S_IFBLK, true},
1193 {"/dev/sdat5", BRACK(FH_SDAT | 5), "\\Device\\Harddisk45\\Partition5", exists_ntdev, S_IFBLK, true},
1194 {"/dev/sdat6", BRACK(FH_SDAT | 6), "\\Device\\Harddisk45\\Partition6", exists_ntdev, S_IFBLK, true},
1195 {"/dev/sdat7", BRACK(FH_SDAT | 7), "\\Device\\Harddisk45\\Partition7", exists_ntdev, S_IFBLK, true},
1196 {"/dev/sdat8", BRACK(FH_SDAT | 8), "\\Device\\Harddisk45\\Partition8", exists_ntdev, S_IFBLK, true},
1197 {"/dev/sdat9", BRACK(FH_SDAT | 9), "\\Device\\Harddisk45\\Partition9", exists_ntdev, S_IFBLK, true},
1198 {"/dev/sdat10", BRACK(FH_SDAT | 10), "\\Device\\Harddisk45\\Partition10", exists_ntdev, S_IFBLK, true},
1199 {"/dev/sdat11", BRACK(FH_SDAT | 11), "\\Device\\Harddisk45\\Partition11", exists_ntdev, S_IFBLK, true},
1200 {"/dev/sdat12", BRACK(FH_SDAT | 12), "\\Device\\Harddisk45\\Partition12", exists_ntdev, S_IFBLK, true},
1201 {"/dev/sdat13", BRACK(FH_SDAT | 13), "\\Device\\Harddisk45\\Partition13", exists_ntdev, S_IFBLK, true},
1202 {"/dev/sdat14", BRACK(FH_SDAT | 14), "\\Device\\Harddisk45\\Partition14", exists_ntdev, S_IFBLK, true},
1203 {"/dev/sdat15", BRACK(FH_SDAT | 15), "\\Device\\Harddisk45\\Partition15", exists_ntdev, S_IFBLK, true},
1204 {"/dev/sdau1", BRACK(FH_SDAU | 1), "\\Device\\Harddisk46\\Partition1", exists_ntdev, S_IFBLK, true},
1205 {"/dev/sdau2", BRACK(FH_SDAU | 2), "\\Device\\Harddisk46\\Partition2", exists_ntdev, S_IFBLK, true},
1206 {"/dev/sdau3", BRACK(FH_SDAU | 3), "\\Device\\Harddisk46\\Partition3", exists_ntdev, S_IFBLK, true},
1207 {"/dev/sdau4", BRACK(FH_SDAU | 4), "\\Device\\Harddisk46\\Partition4", exists_ntdev, S_IFBLK, true},
1208 {"/dev/sdau5", BRACK(FH_SDAU | 5), "\\Device\\Harddisk46\\Partition5", exists_ntdev, S_IFBLK, true},
1209 {"/dev/sdau6", BRACK(FH_SDAU | 6), "\\Device\\Harddisk46\\Partition6", exists_ntdev, S_IFBLK, true},
1210 {"/dev/sdau7", BRACK(FH_SDAU | 7), "\\Device\\Harddisk46\\Partition7", exists_ntdev, S_IFBLK, true},
1211 {"/dev/sdau8", BRACK(FH_SDAU | 8), "\\Device\\Harddisk46\\Partition8", exists_ntdev, S_IFBLK, true},
1212 {"/dev/sdau9", BRACK(FH_SDAU | 9), "\\Device\\Harddisk46\\Partition9", exists_ntdev, S_IFBLK, true},
1213 {"/dev/sdau10", BRACK(FH_SDAU | 10), "\\Device\\Harddisk46\\Partition10", exists_ntdev, S_IFBLK, true},
1214 {"/dev/sdau11", BRACK(FH_SDAU | 11), "\\Device\\Harddisk46\\Partition11", exists_ntdev, S_IFBLK, true},
1215 {"/dev/sdau12", BRACK(FH_SDAU | 12), "\\Device\\Harddisk46\\Partition12", exists_ntdev, S_IFBLK, true},
1216 {"/dev/sdau13", BRACK(FH_SDAU | 13), "\\Device\\Harddisk46\\Partition13", exists_ntdev, S_IFBLK, true},
1217 {"/dev/sdau14", BRACK(FH_SDAU | 14), "\\Device\\Harddisk46\\Partition14", exists_ntdev, S_IFBLK, true},
1218 {"/dev/sdau15", BRACK(FH_SDAU | 15), "\\Device\\Harddisk46\\Partition15", exists_ntdev, S_IFBLK, true},
1219 {"/dev/sdav1", BRACK(FH_SDAV | 1), "\\Device\\Harddisk47\\Partition1", exists_ntdev, S_IFBLK, true},
1220 {"/dev/sdav2", BRACK(FH_SDAV | 2), "\\Device\\Harddisk47\\Partition2", exists_ntdev, S_IFBLK, true},
1221 {"/dev/sdav3", BRACK(FH_SDAV | 3), "\\Device\\Harddisk47\\Partition3", exists_ntdev, S_IFBLK, true},
1222 {"/dev/sdav4", BRACK(FH_SDAV | 4), "\\Device\\Harddisk47\\Partition4", exists_ntdev, S_IFBLK, true},
1223 {"/dev/sdav5", BRACK(FH_SDAV | 5), "\\Device\\Harddisk47\\Partition5", exists_ntdev, S_IFBLK, true},
1224 {"/dev/sdav6", BRACK(FH_SDAV | 6), "\\Device\\Harddisk47\\Partition6", exists_ntdev, S_IFBLK, true},
1225 {"/dev/sdav7", BRACK(FH_SDAV | 7), "\\Device\\Harddisk47\\Partition7", exists_ntdev, S_IFBLK, true},
1226 {"/dev/sdav8", BRACK(FH_SDAV | 8), "\\Device\\Harddisk47\\Partition8", exists_ntdev, S_IFBLK, true},
1227 {"/dev/sdav9", BRACK(FH_SDAV | 9), "\\Device\\Harddisk47\\Partition9", exists_ntdev, S_IFBLK, true},
1228 {"/dev/sdav10", BRACK(FH_SDAV | 10), "\\Device\\Harddisk47\\Partition10", exists_ntdev, S_IFBLK, true},
1229 {"/dev/sdav11", BRACK(FH_SDAV | 11), "\\Device\\Harddisk47\\Partition11", exists_ntdev, S_IFBLK, true},
1230 {"/dev/sdav12", BRACK(FH_SDAV | 12), "\\Device\\Harddisk47\\Partition12", exists_ntdev, S_IFBLK, true},
1231 {"/dev/sdav13", BRACK(FH_SDAV | 13), "\\Device\\Harddisk47\\Partition13", exists_ntdev, S_IFBLK, true},
1232 {"/dev/sdav14", BRACK(FH_SDAV | 14), "\\Device\\Harddisk47\\Partition14", exists_ntdev, S_IFBLK, true},
1233 {"/dev/sdav15", BRACK(FH_SDAV | 15), "\\Device\\Harddisk47\\Partition15", exists_ntdev, S_IFBLK, true},
1234 {"/dev/sdaw1", BRACK(FH_SDAW | 1), "\\Device\\Harddisk48\\Partition1", exists_ntdev, S_IFBLK, true},
1235 {"/dev/sdaw2", BRACK(FH_SDAW | 2), "\\Device\\Harddisk48\\Partition2", exists_ntdev, S_IFBLK, true},
1236 {"/dev/sdaw3", BRACK(FH_SDAW | 3), "\\Device\\Harddisk48\\Partition3", exists_ntdev, S_IFBLK, true},
1237 {"/dev/sdaw4", BRACK(FH_SDAW | 4), "\\Device\\Harddisk48\\Partition4", exists_ntdev, S_IFBLK, true},
1238 {"/dev/sdaw5", BRACK(FH_SDAW | 5), "\\Device\\Harddisk48\\Partition5", exists_ntdev, S_IFBLK, true},
1239 {"/dev/sdaw6", BRACK(FH_SDAW | 6), "\\Device\\Harddisk48\\Partition6", exists_ntdev, S_IFBLK, true},
1240 {"/dev/sdaw7", BRACK(FH_SDAW | 7), "\\Device\\Harddisk48\\Partition7", exists_ntdev, S_IFBLK, true},
1241 {"/dev/sdaw8", BRACK(FH_SDAW | 8), "\\Device\\Harddisk48\\Partition8", exists_ntdev, S_IFBLK, true},
1242 {"/dev/sdaw9", BRACK(FH_SDAW | 9), "\\Device\\Harddisk48\\Partition9", exists_ntdev, S_IFBLK, true},
1243 {"/dev/sdaw10", BRACK(FH_SDAW | 10), "\\Device\\Harddisk48\\Partition10", exists_ntdev, S_IFBLK, true},
1244 {"/dev/sdaw11", BRACK(FH_SDAW | 11), "\\Device\\Harddisk48\\Partition11", exists_ntdev, S_IFBLK, true},
1245 {"/dev/sdaw12", BRACK(FH_SDAW | 12), "\\Device\\Harddisk48\\Partition12", exists_ntdev, S_IFBLK, true},
1246 {"/dev/sdaw13", BRACK(FH_SDAW | 13), "\\Device\\Harddisk48\\Partition13", exists_ntdev, S_IFBLK, true},
1247 {"/dev/sdaw14", BRACK(FH_SDAW | 14), "\\Device\\Harddisk48\\Partition14", exists_ntdev, S_IFBLK, true},
1248 {"/dev/sdaw15", BRACK(FH_SDAW | 15), "\\Device\\Harddisk48\\Partition15", exists_ntdev, S_IFBLK, true},
1249 {"/dev/sdax1", BRACK(FH_SDAX | 1), "\\Device\\Harddisk49\\Partition1", exists_ntdev, S_IFBLK, true},
1250 {"/dev/sdax2", BRACK(FH_SDAX | 2), "\\Device\\Harddisk49\\Partition2", exists_ntdev, S_IFBLK, true},
1251 {"/dev/sdax3", BRACK(FH_SDAX | 3), "\\Device\\Harddisk49\\Partition3", exists_ntdev, S_IFBLK, true},
1252 {"/dev/sdax4", BRACK(FH_SDAX | 4), "\\Device\\Harddisk49\\Partition4", exists_ntdev, S_IFBLK, true},
1253 {"/dev/sdax5", BRACK(FH_SDAX | 5), "\\Device\\Harddisk49\\Partition5", exists_ntdev, S_IFBLK, true},
1254 {"/dev/sdax6", BRACK(FH_SDAX | 6), "\\Device\\Harddisk49\\Partition6", exists_ntdev, S_IFBLK, true},
1255 {"/dev/sdax7", BRACK(FH_SDAX | 7), "\\Device\\Harddisk49\\Partition7", exists_ntdev, S_IFBLK, true},
1256 {"/dev/sdax8", BRACK(FH_SDAX | 8), "\\Device\\Harddisk49\\Partition8", exists_ntdev, S_IFBLK, true},
1257 {"/dev/sdax9", BRACK(FH_SDAX | 9), "\\Device\\Harddisk49\\Partition9", exists_ntdev, S_IFBLK, true},
1258 {"/dev/sdax10", BRACK(FH_SDAX | 10), "\\Device\\Harddisk49\\Partition10", exists_ntdev, S_IFBLK, true},
1259 {"/dev/sdax11", BRACK(FH_SDAX | 11), "\\Device\\Harddisk49\\Partition11", exists_ntdev, S_IFBLK, true},
1260 {"/dev/sdax12", BRACK(FH_SDAX | 12), "\\Device\\Harddisk49\\Partition12", exists_ntdev, S_IFBLK, true},
1261 {"/dev/sdax13", BRACK(FH_SDAX | 13), "\\Device\\Harddisk49\\Partition13", exists_ntdev, S_IFBLK, true},
1262 {"/dev/sdax14", BRACK(FH_SDAX | 14), "\\Device\\Harddisk49\\Partition14", exists_ntdev, S_IFBLK, true},
1263 {"/dev/sdax15", BRACK(FH_SDAX | 15), "\\Device\\Harddisk49\\Partition15", exists_ntdev, S_IFBLK, true},
1264 {"/dev/sday1", BRACK(FH_SDAY | 1), "\\Device\\Harddisk50\\Partition1", exists_ntdev, S_IFBLK, true},
1265 {"/dev/sday2", BRACK(FH_SDAY | 2), "\\Device\\Harddisk50\\Partition2", exists_ntdev, S_IFBLK, true},
1266 {"/dev/sday3", BRACK(FH_SDAY | 3), "\\Device\\Harddisk50\\Partition3", exists_ntdev, S_IFBLK, true},
1267 {"/dev/sday4", BRACK(FH_SDAY | 4), "\\Device\\Harddisk50\\Partition4", exists_ntdev, S_IFBLK, true},
1268 {"/dev/sday5", BRACK(FH_SDAY | 5), "\\Device\\Harddisk50\\Partition5", exists_ntdev, S_IFBLK, true},
1269 {"/dev/sday6", BRACK(FH_SDAY | 6), "\\Device\\Harddisk50\\Partition6", exists_ntdev, S_IFBLK, true},
1270 {"/dev/sday7", BRACK(FH_SDAY | 7), "\\Device\\Harddisk50\\Partition7", exists_ntdev, S_IFBLK, true},
1271 {"/dev/sday8", BRACK(FH_SDAY | 8), "\\Device\\Harddisk50\\Partition8", exists_ntdev, S_IFBLK, true},
1272 {"/dev/sday9", BRACK(FH_SDAY | 9), "\\Device\\Harddisk50\\Partition9", exists_ntdev, S_IFBLK, true},
1273 {"/dev/sday10", BRACK(FH_SDAY | 10), "\\Device\\Harddisk50\\Partition10", exists_ntdev, S_IFBLK, true},
1274 {"/dev/sday11", BRACK(FH_SDAY | 11), "\\Device\\Harddisk50\\Partition11", exists_ntdev, S_IFBLK, true},
1275 {"/dev/sday12", BRACK(FH_SDAY | 12), "\\Device\\Harddisk50\\Partition12", exists_ntdev, S_IFBLK, true},
1276 {"/dev/sday13", BRACK(FH_SDAY | 13), "\\Device\\Harddisk50\\Partition13", exists_ntdev, S_IFBLK, true},
1277 {"/dev/sday14", BRACK(FH_SDAY | 14), "\\Device\\Harddisk50\\Partition14", exists_ntdev, S_IFBLK, true},
1278 {"/dev/sday15", BRACK(FH_SDAY | 15), "\\Device\\Harddisk50\\Partition15", exists_ntdev, S_IFBLK, true},
1279 {"/dev/sdaz1", BRACK(FH_SDAZ | 1), "\\Device\\Harddisk51\\Partition1", exists_ntdev, S_IFBLK, true},
1280 {"/dev/sdaz2", BRACK(FH_SDAZ | 2), "\\Device\\Harddisk51\\Partition2", exists_ntdev, S_IFBLK, true},
1281 {"/dev/sdaz3", BRACK(FH_SDAZ | 3), "\\Device\\Harddisk51\\Partition3", exists_ntdev, S_IFBLK, true},
1282 {"/dev/sdaz4", BRACK(FH_SDAZ | 4), "\\Device\\Harddisk51\\Partition4", exists_ntdev, S_IFBLK, true},
1283 {"/dev/sdaz5", BRACK(FH_SDAZ | 5), "\\Device\\Harddisk51\\Partition5", exists_ntdev, S_IFBLK, true},
1284 {"/dev/sdaz6", BRACK(FH_SDAZ | 6), "\\Device\\Harddisk51\\Partition6", exists_ntdev, S_IFBLK, true},
1285 {"/dev/sdaz7", BRACK(FH_SDAZ | 7), "\\Device\\Harddisk51\\Partition7", exists_ntdev, S_IFBLK, true},
1286 {"/dev/sdaz8", BRACK(FH_SDAZ | 8), "\\Device\\Harddisk51\\Partition8", exists_ntdev, S_IFBLK, true},
1287 {"/dev/sdaz9", BRACK(FH_SDAZ | 9), "\\Device\\Harddisk51\\Partition9", exists_ntdev, S_IFBLK, true},
1288 {"/dev/sdaz10", BRACK(FH_SDAZ | 10), "\\Device\\Harddisk51\\Partition10", exists_ntdev, S_IFBLK, true},
1289 {"/dev/sdaz11", BRACK(FH_SDAZ | 11), "\\Device\\Harddisk51\\Partition11", exists_ntdev, S_IFBLK, true},
1290 {"/dev/sdaz12", BRACK(FH_SDAZ | 12), "\\Device\\Harddisk51\\Partition12", exists_ntdev, S_IFBLK, true},
1291 {"/dev/sdaz13", BRACK(FH_SDAZ | 13), "\\Device\\Harddisk51\\Partition13", exists_ntdev, S_IFBLK, true},
1292 {"/dev/sdaz14", BRACK(FH_SDAZ | 14), "\\Device\\Harddisk51\\Partition14", exists_ntdev, S_IFBLK, true},
1293 {"/dev/sdaz15", BRACK(FH_SDAZ | 15), "\\Device\\Harddisk51\\Partition15", exists_ntdev, S_IFBLK, true},
1294 {"/dev/sdba", BRACK(FH_SDBA), "\\Device\\Harddisk52\\Partition0", exists_ntdev, S_IFBLK, true},
1295 {"/dev/sdbb", BRACK(FH_SDBB), "\\Device\\Harddisk53\\Partition0", exists_ntdev, S_IFBLK, true},
1296 {"/dev/sdbc", BRACK(FH_SDBC), "\\Device\\Harddisk54\\Partition0", exists_ntdev, S_IFBLK, true},
1297 {"/dev/sdbd", BRACK(FH_SDBD), "\\Device\\Harddisk55\\Partition0", exists_ntdev, S_IFBLK, true},
1298 {"/dev/sdbe", BRACK(FH_SDBE), "\\Device\\Harddisk56\\Partition0", exists_ntdev, S_IFBLK, true},
1299 {"/dev/sdbf", BRACK(FH_SDBF), "\\Device\\Harddisk57\\Partition0", exists_ntdev, S_IFBLK, true},
1300 {"/dev/sdbg", BRACK(FH_SDBG), "\\Device\\Harddisk58\\Partition0", exists_ntdev, S_IFBLK, true},
1301 {"/dev/sdbh", BRACK(FH_SDBH), "\\Device\\Harddisk59\\Partition0", exists_ntdev, S_IFBLK, true},
1302 {"/dev/sdbi", BRACK(FH_SDBI), "\\Device\\Harddisk60\\Partition0", exists_ntdev, S_IFBLK, true},
1303 {"/dev/sdbj", BRACK(FH_SDBJ), "\\Device\\Harddisk61\\Partition0", exists_ntdev, S_IFBLK, true},
1304 {"/dev/sdbk", BRACK(FH_SDBK), "\\Device\\Harddisk62\\Partition0", exists_ntdev, S_IFBLK, true},
1305 {"/dev/sdbl", BRACK(FH_SDBL), "\\Device\\Harddisk63\\Partition0", exists_ntdev, S_IFBLK, true},
1306 {"/dev/sdbm", BRACK(FH_SDBM), "\\Device\\Harddisk64\\Partition0", exists_ntdev, S_IFBLK, true},
1307 {"/dev/sdbn", BRACK(FH_SDBN), "\\Device\\Harddisk65\\Partition0", exists_ntdev, S_IFBLK, true},
1308 {"/dev/sdbo", BRACK(FH_SDBO), "\\Device\\Harddisk66\\Partition0", exists_ntdev, S_IFBLK, true},
1309 {"/dev/sdbp", BRACK(FH_SDBP), "\\Device\\Harddisk67\\Partition0", exists_ntdev, S_IFBLK, true},
1310 {"/dev/sdbq", BRACK(FH_SDBQ), "\\Device\\Harddisk68\\Partition0", exists_ntdev, S_IFBLK, true},
1311 {"/dev/sdbr", BRACK(FH_SDBR), "\\Device\\Harddisk69\\Partition0", exists_ntdev, S_IFBLK, true},
1312 {"/dev/sdbs", BRACK(FH_SDBS), "\\Device\\Harddisk70\\Partition0", exists_ntdev, S_IFBLK, true},
1313 {"/dev/sdbt", BRACK(FH_SDBT), "\\Device\\Harddisk71\\Partition0", exists_ntdev, S_IFBLK, true},
1314 {"/dev/sdbu", BRACK(FH_SDBU), "\\Device\\Harddisk72\\Partition0", exists_ntdev, S_IFBLK, true},
1315 {"/dev/sdbv", BRACK(FH_SDBV), "\\Device\\Harddisk73\\Partition0", exists_ntdev, S_IFBLK, true},
1316 {"/dev/sdbw", BRACK(FH_SDBW), "\\Device\\Harddisk74\\Partition0", exists_ntdev, S_IFBLK, true},
1317 {"/dev/sdbx", BRACK(FH_SDBX), "\\Device\\Harddisk75\\Partition0", exists_ntdev, S_IFBLK, true},
1318 {"/dev/sdby", BRACK(FH_SDBY), "\\Device\\Harddisk76\\Partition0", exists_ntdev, S_IFBLK, true},
1319 {"/dev/sdbz", BRACK(FH_SDBZ), "\\Device\\Harddisk77\\Partition0", exists_ntdev, S_IFBLK, true},
1320 {"/dev/sdba1", BRACK(FH_SDBA | 1), "\\Device\\Harddisk52\\Partition1", exists_ntdev, S_IFBLK, true},
1321 {"/dev/sdba2", BRACK(FH_SDBA | 2), "\\Device\\Harddisk52\\Partition2", exists_ntdev, S_IFBLK, true},
1322 {"/dev/sdba3", BRACK(FH_SDBA | 3), "\\Device\\Harddisk52\\Partition3", exists_ntdev, S_IFBLK, true},
1323 {"/dev/sdba4", BRACK(FH_SDBA | 4), "\\Device\\Harddisk52\\Partition4", exists_ntdev, S_IFBLK, true},
1324 {"/dev/sdba5", BRACK(FH_SDBA | 5), "\\Device\\Harddisk52\\Partition5", exists_ntdev, S_IFBLK, true},
1325 {"/dev/sdba6", BRACK(FH_SDBA | 6), "\\Device\\Harddisk52\\Partition6", exists_ntdev, S_IFBLK, true},
1326 {"/dev/sdba7", BRACK(FH_SDBA | 7), "\\Device\\Harddisk52\\Partition7", exists_ntdev, S_IFBLK, true},
1327 {"/dev/sdba8", BRACK(FH_SDBA | 8), "\\Device\\Harddisk52\\Partition8", exists_ntdev, S_IFBLK, true},
1328 {"/dev/sdba9", BRACK(FH_SDBA | 9), "\\Device\\Harddisk52\\Partition9", exists_ntdev, S_IFBLK, true},
1329 {"/dev/sdba10", BRACK(FH_SDBA | 10), "\\Device\\Harddisk52\\Partition10", exists_ntdev, S_IFBLK, true},
1330 {"/dev/sdba11", BRACK(FH_SDBA | 11), "\\Device\\Harddisk52\\Partition11", exists_ntdev, S_IFBLK, true},
1331 {"/dev/sdba12", BRACK(FH_SDBA | 12), "\\Device\\Harddisk52\\Partition12", exists_ntdev, S_IFBLK, true},
1332 {"/dev/sdba13", BRACK(FH_SDBA | 13), "\\Device\\Harddisk52\\Partition13", exists_ntdev, S_IFBLK, true},
1333 {"/dev/sdba14", BRACK(FH_SDBA | 14), "\\Device\\Harddisk52\\Partition14", exists_ntdev, S_IFBLK, true},
1334 {"/dev/sdba15", BRACK(FH_SDBA | 15), "\\Device\\Harddisk52\\Partition15", exists_ntdev, S_IFBLK, true},
1335 {"/dev/sdbb1", BRACK(FH_SDBB | 1), "\\Device\\Harddisk53\\Partition1", exists_ntdev, S_IFBLK, true},
1336 {"/dev/sdbb2", BRACK(FH_SDBB | 2), "\\Device\\Harddisk53\\Partition2", exists_ntdev, S_IFBLK, true},
1337 {"/dev/sdbb3", BRACK(FH_SDBB | 3), "\\Device\\Harddisk53\\Partition3", exists_ntdev, S_IFBLK, true},
1338 {"/dev/sdbb4", BRACK(FH_SDBB | 4), "\\Device\\Harddisk53\\Partition4", exists_ntdev, S_IFBLK, true},
1339 {"/dev/sdbb5", BRACK(FH_SDBB | 5), "\\Device\\Harddisk53\\Partition5", exists_ntdev, S_IFBLK, true},
1340 {"/dev/sdbb6", BRACK(FH_SDBB | 6), "\\Device\\Harddisk53\\Partition6", exists_ntdev, S_IFBLK, true},
1341 {"/dev/sdbb7", BRACK(FH_SDBB | 7), "\\Device\\Harddisk53\\Partition7", exists_ntdev, S_IFBLK, true},
1342 {"/dev/sdbb8", BRACK(FH_SDBB | 8), "\\Device\\Harddisk53\\Partition8", exists_ntdev, S_IFBLK, true},
1343 {"/dev/sdbb9", BRACK(FH_SDBB | 9), "\\Device\\Harddisk53\\Partition9", exists_ntdev, S_IFBLK, true},
1344 {"/dev/sdbb10", BRACK(FH_SDBB | 10), "\\Device\\Harddisk53\\Partition10", exists_ntdev, S_IFBLK, true},
1345 {"/dev/sdbb11", BRACK(FH_SDBB | 11), "\\Device\\Harddisk53\\Partition11", exists_ntdev, S_IFBLK, true},
1346 {"/dev/sdbb12", BRACK(FH_SDBB | 12), "\\Device\\Harddisk53\\Partition12", exists_ntdev, S_IFBLK, true},
1347 {"/dev/sdbb13", BRACK(FH_SDBB | 13), "\\Device\\Harddisk53\\Partition13", exists_ntdev, S_IFBLK, true},
1348 {"/dev/sdbb14", BRACK(FH_SDBB | 14), "\\Device\\Harddisk53\\Partition14", exists_ntdev, S_IFBLK, true},
1349 {"/dev/sdbb15", BRACK(FH_SDBB | 15), "\\Device\\Harddisk53\\Partition15", exists_ntdev, S_IFBLK, true},
1350 {"/dev/sdbc1", BRACK(FH_SDBC | 1), "\\Device\\Harddisk54\\Partition1", exists_ntdev, S_IFBLK, true},
1351 {"/dev/sdbc2", BRACK(FH_SDBC | 2), "\\Device\\Harddisk54\\Partition2", exists_ntdev, S_IFBLK, true},
1352 {"/dev/sdbc3", BRACK(FH_SDBC | 3), "\\Device\\Harddisk54\\Partition3", exists_ntdev, S_IFBLK, true},
1353 {"/dev/sdbc4", BRACK(FH_SDBC | 4), "\\Device\\Harddisk54\\Partition4", exists_ntdev, S_IFBLK, true},
1354 {"/dev/sdbc5", BRACK(FH_SDBC | 5), "\\Device\\Harddisk54\\Partition5", exists_ntdev, S_IFBLK, true},
1355 {"/dev/sdbc6", BRACK(FH_SDBC | 6), "\\Device\\Harddisk54\\Partition6", exists_ntdev, S_IFBLK, true},
1356 {"/dev/sdbc7", BRACK(FH_SDBC | 7), "\\Device\\Harddisk54\\Partition7", exists_ntdev, S_IFBLK, true},
1357 {"/dev/sdbc8", BRACK(FH_SDBC | 8), "\\Device\\Harddisk54\\Partition8", exists_ntdev, S_IFBLK, true},
1358 {"/dev/sdbc9", BRACK(FH_SDBC | 9), "\\Device\\Harddisk54\\Partition9", exists_ntdev, S_IFBLK, true},
1359 {"/dev/sdbc10", BRACK(FH_SDBC | 10), "\\Device\\Harddisk54\\Partition10", exists_ntdev, S_IFBLK, true},
1360 {"/dev/sdbc11", BRACK(FH_SDBC | 11), "\\Device\\Harddisk54\\Partition11", exists_ntdev, S_IFBLK, true},
1361 {"/dev/sdbc12", BRACK(FH_SDBC | 12), "\\Device\\Harddisk54\\Partition12", exists_ntdev, S_IFBLK, true},
1362 {"/dev/sdbc13", BRACK(FH_SDBC | 13), "\\Device\\Harddisk54\\Partition13", exists_ntdev, S_IFBLK, true},
1363 {"/dev/sdbc14", BRACK(FH_SDBC | 14), "\\Device\\Harddisk54\\Partition14", exists_ntdev, S_IFBLK, true},
1364 {"/dev/sdbc15", BRACK(FH_SDBC | 15), "\\Device\\Harddisk54\\Partition15", exists_ntdev, S_IFBLK, true},
1365 {"/dev/sdbd1", BRACK(FH_SDBD | 1), "\\Device\\Harddisk55\\Partition1", exists_ntdev, S_IFBLK, true},
1366 {"/dev/sdbd2", BRACK(FH_SDBD | 2), "\\Device\\Harddisk55\\Partition2", exists_ntdev, S_IFBLK, true},
1367 {"/dev/sdbd3", BRACK(FH_SDBD | 3), "\\Device\\Harddisk55\\Partition3", exists_ntdev, S_IFBLK, true},
1368 {"/dev/sdbd4", BRACK(FH_SDBD | 4), "\\Device\\Harddisk55\\Partition4", exists_ntdev, S_IFBLK, true},
1369 {"/dev/sdbd5", BRACK(FH_SDBD | 5), "\\Device\\Harddisk55\\Partition5", exists_ntdev, S_IFBLK, true},
1370 {"/dev/sdbd6", BRACK(FH_SDBD | 6), "\\Device\\Harddisk55\\Partition6", exists_ntdev, S_IFBLK, true},
1371 {"/dev/sdbd7", BRACK(FH_SDBD | 7), "\\Device\\Harddisk55\\Partition7", exists_ntdev, S_IFBLK, true},
1372 {"/dev/sdbd8", BRACK(FH_SDBD | 8), "\\Device\\Harddisk55\\Partition8", exists_ntdev, S_IFBLK, true},
1373 {"/dev/sdbd9", BRACK(FH_SDBD | 9), "\\Device\\Harddisk55\\Partition9", exists_ntdev, S_IFBLK, true},
1374 {"/dev/sdbd10", BRACK(FH_SDBD | 10), "\\Device\\Harddisk55\\Partition10", exists_ntdev, S_IFBLK, true},
1375 {"/dev/sdbd11", BRACK(FH_SDBD | 11), "\\Device\\Harddisk55\\Partition11", exists_ntdev, S_IFBLK, true},
1376 {"/dev/sdbd12", BRACK(FH_SDBD | 12), "\\Device\\Harddisk55\\Partition12", exists_ntdev, S_IFBLK, true},
1377 {"/dev/sdbd13", BRACK(FH_SDBD | 13), "\\Device\\Harddisk55\\Partition13", exists_ntdev, S_IFBLK, true},
1378 {"/dev/sdbd14", BRACK(FH_SDBD | 14), "\\Device\\Harddisk55\\Partition14", exists_ntdev, S_IFBLK, true},
1379 {"/dev/sdbd15", BRACK(FH_SDBD | 15), "\\Device\\Harddisk55\\Partition15", exists_ntdev, S_IFBLK, true},
1380 {"/dev/sdbe1", BRACK(FH_SDBE | 1), "\\Device\\Harddisk56\\Partition1", exists_ntdev, S_IFBLK, true},
1381 {"/dev/sdbe2", BRACK(FH_SDBE | 2), "\\Device\\Harddisk56\\Partition2", exists_ntdev, S_IFBLK, true},
1382 {"/dev/sdbe3", BRACK(FH_SDBE | 3), "\\Device\\Harddisk56\\Partition3", exists_ntdev, S_IFBLK, true},
1383 {"/dev/sdbe4", BRACK(FH_SDBE | 4), "\\Device\\Harddisk56\\Partition4", exists_ntdev, S_IFBLK, true},
1384 {"/dev/sdbe5", BRACK(FH_SDBE | 5), "\\Device\\Harddisk56\\Partition5", exists_ntdev, S_IFBLK, true},
1385 {"/dev/sdbe6", BRACK(FH_SDBE | 6), "\\Device\\Harddisk56\\Partition6", exists_ntdev, S_IFBLK, true},
1386 {"/dev/sdbe7", BRACK(FH_SDBE | 7), "\\Device\\Harddisk56\\Partition7", exists_ntdev, S_IFBLK, true},
1387 {"/dev/sdbe8", BRACK(FH_SDBE | 8), "\\Device\\Harddisk56\\Partition8", exists_ntdev, S_IFBLK, true},
1388 {"/dev/sdbe9", BRACK(FH_SDBE | 9), "\\Device\\Harddisk56\\Partition9", exists_ntdev, S_IFBLK, true},
1389 {"/dev/sdbe10", BRACK(FH_SDBE | 10), "\\Device\\Harddisk56\\Partition10", exists_ntdev, S_IFBLK, true},
1390 {"/dev/sdbe11", BRACK(FH_SDBE | 11), "\\Device\\Harddisk56\\Partition11", exists_ntdev, S_IFBLK, true},
1391 {"/dev/sdbe12", BRACK(FH_SDBE | 12), "\\Device\\Harddisk56\\Partition12", exists_ntdev, S_IFBLK, true},
1392 {"/dev/sdbe13", BRACK(FH_SDBE | 13), "\\Device\\Harddisk56\\Partition13", exists_ntdev, S_IFBLK, true},
1393 {"/dev/sdbe14", BRACK(FH_SDBE | 14), "\\Device\\Harddisk56\\Partition14", exists_ntdev, S_IFBLK, true},
1394 {"/dev/sdbe15", BRACK(FH_SDBE | 15), "\\Device\\Harddisk56\\Partition15", exists_ntdev, S_IFBLK, true},
1395 {"/dev/sdbf1", BRACK(FH_SDBF | 1), "\\Device\\Harddisk57\\Partition1", exists_ntdev, S_IFBLK, true},
1396 {"/dev/sdbf2", BRACK(FH_SDBF | 2), "\\Device\\Harddisk57\\Partition2", exists_ntdev, S_IFBLK, true},
1397 {"/dev/sdbf3", BRACK(FH_SDBF | 3), "\\Device\\Harddisk57\\Partition3", exists_ntdev, S_IFBLK, true},
1398 {"/dev/sdbf4", BRACK(FH_SDBF | 4), "\\Device\\Harddisk57\\Partition4", exists_ntdev, S_IFBLK, true},
1399 {"/dev/sdbf5", BRACK(FH_SDBF | 5), "\\Device\\Harddisk57\\Partition5", exists_ntdev, S_IFBLK, true},
1400 {"/dev/sdbf6", BRACK(FH_SDBF | 6), "\\Device\\Harddisk57\\Partition6", exists_ntdev, S_IFBLK, true},
1401 {"/dev/sdbf7", BRACK(FH_SDBF | 7), "\\Device\\Harddisk57\\Partition7", exists_ntdev, S_IFBLK, true},
1402 {"/dev/sdbf8", BRACK(FH_SDBF | 8), "\\Device\\Harddisk57\\Partition8", exists_ntdev, S_IFBLK, true},
1403 {"/dev/sdbf9", BRACK(FH_SDBF | 9), "\\Device\\Harddisk57\\Partition9", exists_ntdev, S_IFBLK, true},
1404 {"/dev/sdbf10", BRACK(FH_SDBF | 10), "\\Device\\Harddisk57\\Partition10", exists_ntdev, S_IFBLK, true},
1405 {"/dev/sdbf11", BRACK(FH_SDBF | 11), "\\Device\\Harddisk57\\Partition11", exists_ntdev, S_IFBLK, true},
1406 {"/dev/sdbf12", BRACK(FH_SDBF | 12), "\\Device\\Harddisk57\\Partition12", exists_ntdev, S_IFBLK, true},
1407 {"/dev/sdbf13", BRACK(FH_SDBF | 13), "\\Device\\Harddisk57\\Partition13", exists_ntdev, S_IFBLK, true},
1408 {"/dev/sdbf14", BRACK(FH_SDBF | 14), "\\Device\\Harddisk57\\Partition14", exists_ntdev, S_IFBLK, true},
1409 {"/dev/sdbf15", BRACK(FH_SDBF | 15), "\\Device\\Harddisk57\\Partition15", exists_ntdev, S_IFBLK, true},
1410 {"/dev/sdbg1", BRACK(FH_SDBG | 1), "\\Device\\Harddisk58\\Partition1", exists_ntdev, S_IFBLK, true},
1411 {"/dev/sdbg2", BRACK(FH_SDBG | 2), "\\Device\\Harddisk58\\Partition2", exists_ntdev, S_IFBLK, true},
1412 {"/dev/sdbg3", BRACK(FH_SDBG | 3), "\\Device\\Harddisk58\\Partition3", exists_ntdev, S_IFBLK, true},
1413 {"/dev/sdbg4", BRACK(FH_SDBG | 4), "\\Device\\Harddisk58\\Partition4", exists_ntdev, S_IFBLK, true},
1414 {"/dev/sdbg5", BRACK(FH_SDBG | 5), "\\Device\\Harddisk58\\Partition5", exists_ntdev, S_IFBLK, true},
1415 {"/dev/sdbg6", BRACK(FH_SDBG | 6), "\\Device\\Harddisk58\\Partition6", exists_ntdev, S_IFBLK, true},
1416 {"/dev/sdbg7", BRACK(FH_SDBG | 7), "\\Device\\Harddisk58\\Partition7", exists_ntdev, S_IFBLK, true},
1417 {"/dev/sdbg8", BRACK(FH_SDBG | 8), "\\Device\\Harddisk58\\Partition8", exists_ntdev, S_IFBLK, true},
1418 {"/dev/sdbg9", BRACK(FH_SDBG | 9), "\\Device\\Harddisk58\\Partition9", exists_ntdev, S_IFBLK, true},
1419 {"/dev/sdbg10", BRACK(FH_SDBG | 10), "\\Device\\Harddisk58\\Partition10", exists_ntdev, S_IFBLK, true},
1420 {"/dev/sdbg11", BRACK(FH_SDBG | 11), "\\Device\\Harddisk58\\Partition11", exists_ntdev, S_IFBLK, true},
1421 {"/dev/sdbg12", BRACK(FH_SDBG | 12), "\\Device\\Harddisk58\\Partition12", exists_ntdev, S_IFBLK, true},
1422 {"/dev/sdbg13", BRACK(FH_SDBG | 13), "\\Device\\Harddisk58\\Partition13", exists_ntdev, S_IFBLK, true},
1423 {"/dev/sdbg14", BRACK(FH_SDBG | 14), "\\Device\\Harddisk58\\Partition14", exists_ntdev, S_IFBLK, true},
1424 {"/dev/sdbg15", BRACK(FH_SDBG | 15), "\\Device\\Harddisk58\\Partition15", exists_ntdev, S_IFBLK, true},
1425 {"/dev/sdbh1", BRACK(FH_SDBH | 1), "\\Device\\Harddisk59\\Partition1", exists_ntdev, S_IFBLK, true},
1426 {"/dev/sdbh2", BRACK(FH_SDBH | 2), "\\Device\\Harddisk59\\Partition2", exists_ntdev, S_IFBLK, true},
1427 {"/dev/sdbh3", BRACK(FH_SDBH | 3), "\\Device\\Harddisk59\\Partition3", exists_ntdev, S_IFBLK, true},
1428 {"/dev/sdbh4", BRACK(FH_SDBH | 4), "\\Device\\Harddisk59\\Partition4", exists_ntdev, S_IFBLK, true},
1429 {"/dev/sdbh5", BRACK(FH_SDBH | 5), "\\Device\\Harddisk59\\Partition5", exists_ntdev, S_IFBLK, true},
1430 {"/dev/sdbh6", BRACK(FH_SDBH | 6), "\\Device\\Harddisk59\\Partition6", exists_ntdev, S_IFBLK, true},
1431 {"/dev/sdbh7", BRACK(FH_SDBH | 7), "\\Device\\Harddisk59\\Partition7", exists_ntdev, S_IFBLK, true},
1432 {"/dev/sdbh8", BRACK(FH_SDBH | 8), "\\Device\\Harddisk59\\Partition8", exists_ntdev, S_IFBLK, true},
1433 {"/dev/sdbh9", BRACK(FH_SDBH | 9), "\\Device\\Harddisk59\\Partition9", exists_ntdev, S_IFBLK, true},
1434 {"/dev/sdbh10", BRACK(FH_SDBH | 10), "\\Device\\Harddisk59\\Partition10", exists_ntdev, S_IFBLK, true},
1435 {"/dev/sdbh11", BRACK(FH_SDBH | 11), "\\Device\\Harddisk59\\Partition11", exists_ntdev, S_IFBLK, true},
1436 {"/dev/sdbh12", BRACK(FH_SDBH | 12), "\\Device\\Harddisk59\\Partition12", exists_ntdev, S_IFBLK, true},
1437 {"/dev/sdbh13", BRACK(FH_SDBH | 13), "\\Device\\Harddisk59\\Partition13", exists_ntdev, S_IFBLK, true},
1438 {"/dev/sdbh14", BRACK(FH_SDBH | 14), "\\Device\\Harddisk59\\Partition14", exists_ntdev, S_IFBLK, true},
1439 {"/dev/sdbh15", BRACK(FH_SDBH | 15), "\\Device\\Harddisk59\\Partition15", exists_ntdev, S_IFBLK, true},
1440 {"/dev/sdbi1", BRACK(FH_SDBI | 1), "\\Device\\Harddisk60\\Partition1", exists_ntdev, S_IFBLK, true},
1441 {"/dev/sdbi2", BRACK(FH_SDBI | 2), "\\Device\\Harddisk60\\Partition2", exists_ntdev, S_IFBLK, true},
1442 {"/dev/sdbi3", BRACK(FH_SDBI | 3), "\\Device\\Harddisk60\\Partition3", exists_ntdev, S_IFBLK, true},
1443 {"/dev/sdbi4", BRACK(FH_SDBI | 4), "\\Device\\Harddisk60\\Partition4", exists_ntdev, S_IFBLK, true},
1444 {"/dev/sdbi5", BRACK(FH_SDBI | 5), "\\Device\\Harddisk60\\Partition5", exists_ntdev, S_IFBLK, true},
1445 {"/dev/sdbi6", BRACK(FH_SDBI | 6), "\\Device\\Harddisk60\\Partition6", exists_ntdev, S_IFBLK, true},
1446 {"/dev/sdbi7", BRACK(FH_SDBI | 7), "\\Device\\Harddisk60\\Partition7", exists_ntdev, S_IFBLK, true},
1447 {"/dev/sdbi8", BRACK(FH_SDBI | 8), "\\Device\\Harddisk60\\Partition8", exists_ntdev, S_IFBLK, true},
1448 {"/dev/sdbi9", BRACK(FH_SDBI | 9), "\\Device\\Harddisk60\\Partition9", exists_ntdev, S_IFBLK, true},
1449 {"/dev/sdbi10", BRACK(FH_SDBI | 10), "\\Device\\Harddisk60\\Partition10", exists_ntdev, S_IFBLK, true},
1450 {"/dev/sdbi11", BRACK(FH_SDBI | 11), "\\Device\\Harddisk60\\Partition11", exists_ntdev, S_IFBLK, true},
1451 {"/dev/sdbi12", BRACK(FH_SDBI | 12), "\\Device\\Harddisk60\\Partition12", exists_ntdev, S_IFBLK, true},
1452 {"/dev/sdbi13", BRACK(FH_SDBI | 13), "\\Device\\Harddisk60\\Partition13", exists_ntdev, S_IFBLK, true},
1453 {"/dev/sdbi14", BRACK(FH_SDBI | 14), "\\Device\\Harddisk60\\Partition14", exists_ntdev, S_IFBLK, true},
1454 {"/dev/sdbi15", BRACK(FH_SDBI | 15), "\\Device\\Harddisk60\\Partition15", exists_ntdev, S_IFBLK, true},
1455 {"/dev/sdbj1", BRACK(FH_SDBJ | 1), "\\Device\\Harddisk61\\Partition1", exists_ntdev, S_IFBLK, true},
1456 {"/dev/sdbj2", BRACK(FH_SDBJ | 2), "\\Device\\Harddisk61\\Partition2", exists_ntdev, S_IFBLK, true},
1457 {"/dev/sdbj3", BRACK(FH_SDBJ | 3), "\\Device\\Harddisk61\\Partition3", exists_ntdev, S_IFBLK, true},
1458 {"/dev/sdbj4", BRACK(FH_SDBJ | 4), "\\Device\\Harddisk61\\Partition4", exists_ntdev, S_IFBLK, true},
1459 {"/dev/sdbj5", BRACK(FH_SDBJ | 5), "\\Device\\Harddisk61\\Partition5", exists_ntdev, S_IFBLK, true},
1460 {"/dev/sdbj6", BRACK(FH_SDBJ | 6), "\\Device\\Harddisk61\\Partition6", exists_ntdev, S_IFBLK, true},
1461 {"/dev/sdbj7", BRACK(FH_SDBJ | 7), "\\Device\\Harddisk61\\Partition7", exists_ntdev, S_IFBLK, true},
1462 {"/dev/sdbj8", BRACK(FH_SDBJ | 8), "\\Device\\Harddisk61\\Partition8", exists_ntdev, S_IFBLK, true},
1463 {"/dev/sdbj9", BRACK(FH_SDBJ | 9), "\\Device\\Harddisk61\\Partition9", exists_ntdev, S_IFBLK, true},
1464 {"/dev/sdbj10", BRACK(FH_SDBJ | 10), "\\Device\\Harddisk61\\Partition10", exists_ntdev, S_IFBLK, true},
1465 {"/dev/sdbj11", BRACK(FH_SDBJ | 11), "\\Device\\Harddisk61\\Partition11", exists_ntdev, S_IFBLK, true},
1466 {"/dev/sdbj12", BRACK(FH_SDBJ | 12), "\\Device\\Harddisk61\\Partition12", exists_ntdev, S_IFBLK, true},
1467 {"/dev/sdbj13", BRACK(FH_SDBJ | 13), "\\Device\\Harddisk61\\Partition13", exists_ntdev, S_IFBLK, true},
1468 {"/dev/sdbj14", BRACK(FH_SDBJ | 14), "\\Device\\Harddisk61\\Partition14", exists_ntdev, S_IFBLK, true},
1469 {"/dev/sdbj15", BRACK(FH_SDBJ | 15), "\\Device\\Harddisk61\\Partition15", exists_ntdev, S_IFBLK, true},
1470 {"/dev/sdbk1", BRACK(FH_SDBK | 1), "\\Device\\Harddisk62\\Partition1", exists_ntdev, S_IFBLK, true},
1471 {"/dev/sdbk2", BRACK(FH_SDBK | 2), "\\Device\\Harddisk62\\Partition2", exists_ntdev, S_IFBLK, true},
1472 {"/dev/sdbk3", BRACK(FH_SDBK | 3), "\\Device\\Harddisk62\\Partition3", exists_ntdev, S_IFBLK, true},
1473 {"/dev/sdbk4", BRACK(FH_SDBK | 4), "\\Device\\Harddisk62\\Partition4", exists_ntdev, S_IFBLK, true},
1474 {"/dev/sdbk5", BRACK(FH_SDBK | 5), "\\Device\\Harddisk62\\Partition5", exists_ntdev, S_IFBLK, true},
1475 {"/dev/sdbk6", BRACK(FH_SDBK | 6), "\\Device\\Harddisk62\\Partition6", exists_ntdev, S_IFBLK, true},
1476 {"/dev/sdbk7", BRACK(FH_SDBK | 7), "\\Device\\Harddisk62\\Partition7", exists_ntdev, S_IFBLK, true},
1477 {"/dev/sdbk8", BRACK(FH_SDBK | 8), "\\Device\\Harddisk62\\Partition8", exists_ntdev, S_IFBLK, true},
1478 {"/dev/sdbk9", BRACK(FH_SDBK | 9), "\\Device\\Harddisk62\\Partition9", exists_ntdev, S_IFBLK, true},
1479 {"/dev/sdbk10", BRACK(FH_SDBK | 10), "\\Device\\Harddisk62\\Partition10", exists_ntdev, S_IFBLK, true},
1480 {"/dev/sdbk11", BRACK(FH_SDBK | 11), "\\Device\\Harddisk62\\Partition11", exists_ntdev, S_IFBLK, true},
1481 {"/dev/sdbk12", BRACK(FH_SDBK | 12), "\\Device\\Harddisk62\\Partition12", exists_ntdev, S_IFBLK, true},
1482 {"/dev/sdbk13", BRACK(FH_SDBK | 13), "\\Device\\Harddisk62\\Partition13", exists_ntdev, S_IFBLK, true},
1483 {"/dev/sdbk14", BRACK(FH_SDBK | 14), "\\Device\\Harddisk62\\Partition14", exists_ntdev, S_IFBLK, true},
1484 {"/dev/sdbk15", BRACK(FH_SDBK | 15), "\\Device\\Harddisk62\\Partition15", exists_ntdev, S_IFBLK, true},
1485 {"/dev/sdbl1", BRACK(FH_SDBL | 1), "\\Device\\Harddisk63\\Partition1", exists_ntdev, S_IFBLK, true},
1486 {"/dev/sdbl2", BRACK(FH_SDBL | 2), "\\Device\\Harddisk63\\Partition2", exists_ntdev, S_IFBLK, true},
1487 {"/dev/sdbl3", BRACK(FH_SDBL | 3), "\\Device\\Harddisk63\\Partition3", exists_ntdev, S_IFBLK, true},
1488 {"/dev/sdbl4", BRACK(FH_SDBL | 4), "\\Device\\Harddisk63\\Partition4", exists_ntdev, S_IFBLK, true},
1489 {"/dev/sdbl5", BRACK(FH_SDBL | 5), "\\Device\\Harddisk63\\Partition5", exists_ntdev, S_IFBLK, true},
1490 {"/dev/sdbl6", BRACK(FH_SDBL | 6), "\\Device\\Harddisk63\\Partition6", exists_ntdev, S_IFBLK, true},
1491 {"/dev/sdbl7", BRACK(FH_SDBL | 7), "\\Device\\Harddisk63\\Partition7", exists_ntdev, S_IFBLK, true},
1492 {"/dev/sdbl8", BRACK(FH_SDBL | 8), "\\Device\\Harddisk63\\Partition8", exists_ntdev, S_IFBLK, true},
1493 {"/dev/sdbl9", BRACK(FH_SDBL | 9), "\\Device\\Harddisk63\\Partition9", exists_ntdev, S_IFBLK, true},
1494 {"/dev/sdbl10", BRACK(FH_SDBL | 10), "\\Device\\Harddisk63\\Partition10", exists_ntdev, S_IFBLK, true},
1495 {"/dev/sdbl11", BRACK(FH_SDBL | 11), "\\Device\\Harddisk63\\Partition11", exists_ntdev, S_IFBLK, true},
1496 {"/dev/sdbl12", BRACK(FH_SDBL | 12), "\\Device\\Harddisk63\\Partition12", exists_ntdev, S_IFBLK, true},
1497 {"/dev/sdbl13", BRACK(FH_SDBL | 13), "\\Device\\Harddisk63\\Partition13", exists_ntdev, S_IFBLK, true},
1498 {"/dev/sdbl14", BRACK(FH_SDBL | 14), "\\Device\\Harddisk63\\Partition14", exists_ntdev, S_IFBLK, true},
1499 {"/dev/sdbl15", BRACK(FH_SDBL | 15), "\\Device\\Harddisk63\\Partition15", exists_ntdev, S_IFBLK, true},
1500 {"/dev/sdbm1", BRACK(FH_SDBM | 1), "\\Device\\Harddisk64\\Partition1", exists_ntdev, S_IFBLK, true},
1501 {"/dev/sdbm2", BRACK(FH_SDBM | 2), "\\Device\\Harddisk64\\Partition2", exists_ntdev, S_IFBLK, true},
1502 {"/dev/sdbm3", BRACK(FH_SDBM | 3), "\\Device\\Harddisk64\\Partition3", exists_ntdev, S_IFBLK, true},
1503 {"/dev/sdbm4", BRACK(FH_SDBM | 4), "\\Device\\Harddisk64\\Partition4", exists_ntdev, S_IFBLK, true},
1504 {"/dev/sdbm5", BRACK(FH_SDBM | 5), "\\Device\\Harddisk64\\Partition5", exists_ntdev, S_IFBLK, true},
1505 {"/dev/sdbm6", BRACK(FH_SDBM | 6), "\\Device\\Harddisk64\\Partition6", exists_ntdev, S_IFBLK, true},
1506 {"/dev/sdbm7", BRACK(FH_SDBM | 7), "\\Device\\Harddisk64\\Partition7", exists_ntdev, S_IFBLK, true},
1507 {"/dev/sdbm8", BRACK(FH_SDBM | 8), "\\Device\\Harddisk64\\Partition8", exists_ntdev, S_IFBLK, true},
1508 {"/dev/sdbm9", BRACK(FH_SDBM | 9), "\\Device\\Harddisk64\\Partition9", exists_ntdev, S_IFBLK, true},
1509 {"/dev/sdbm10", BRACK(FH_SDBM | 10), "\\Device\\Harddisk64\\Partition10", exists_ntdev, S_IFBLK, true},
1510 {"/dev/sdbm11", BRACK(FH_SDBM | 11), "\\Device\\Harddisk64\\Partition11", exists_ntdev, S_IFBLK, true},
1511 {"/dev/sdbm12", BRACK(FH_SDBM | 12), "\\Device\\Harddisk64\\Partition12", exists_ntdev, S_IFBLK, true},
1512 {"/dev/sdbm13", BRACK(FH_SDBM | 13), "\\Device\\Harddisk64\\Partition13", exists_ntdev, S_IFBLK, true},
1513 {"/dev/sdbm14", BRACK(FH_SDBM | 14), "\\Device\\Harddisk64\\Partition14", exists_ntdev, S_IFBLK, true},
1514 {"/dev/sdbm15", BRACK(FH_SDBM | 15), "\\Device\\Harddisk64\\Partition15", exists_ntdev, S_IFBLK, true},
1515 {"/dev/sdbn1", BRACK(FH_SDBN | 1), "\\Device\\Harddisk65\\Partition1", exists_ntdev, S_IFBLK, true},
1516 {"/dev/sdbn2", BRACK(FH_SDBN | 2), "\\Device\\Harddisk65\\Partition2", exists_ntdev, S_IFBLK, true},
1517 {"/dev/sdbn3", BRACK(FH_SDBN | 3), "\\Device\\Harddisk65\\Partition3", exists_ntdev, S_IFBLK, true},
1518 {"/dev/sdbn4", BRACK(FH_SDBN | 4), "\\Device\\Harddisk65\\Partition4", exists_ntdev, S_IFBLK, true},
1519 {"/dev/sdbn5", BRACK(FH_SDBN | 5), "\\Device\\Harddisk65\\Partition5", exists_ntdev, S_IFBLK, true},
1520 {"/dev/sdbn6", BRACK(FH_SDBN | 6), "\\Device\\Harddisk65\\Partition6", exists_ntdev, S_IFBLK, true},
1521 {"/dev/sdbn7", BRACK(FH_SDBN | 7), "\\Device\\Harddisk65\\Partition7", exists_ntdev, S_IFBLK, true},
1522 {"/dev/sdbn8", BRACK(FH_SDBN | 8), "\\Device\\Harddisk65\\Partition8", exists_ntdev, S_IFBLK, true},
1523 {"/dev/sdbn9", BRACK(FH_SDBN | 9), "\\Device\\Harddisk65\\Partition9", exists_ntdev, S_IFBLK, true},
1524 {"/dev/sdbn10", BRACK(FH_SDBN | 10), "\\Device\\Harddisk65\\Partition10", exists_ntdev, S_IFBLK, true},
1525 {"/dev/sdbn11", BRACK(FH_SDBN | 11), "\\Device\\Harddisk65\\Partition11", exists_ntdev, S_IFBLK, true},
1526 {"/dev/sdbn12", BRACK(FH_SDBN | 12), "\\Device\\Harddisk65\\Partition12", exists_ntdev, S_IFBLK, true},
1527 {"/dev/sdbn13", BRACK(FH_SDBN | 13), "\\Device\\Harddisk65\\Partition13", exists_ntdev, S_IFBLK, true},
1528 {"/dev/sdbn14", BRACK(FH_SDBN | 14), "\\Device\\Harddisk65\\Partition14", exists_ntdev, S_IFBLK, true},
1529 {"/dev/sdbn15", BRACK(FH_SDBN | 15), "\\Device\\Harddisk65\\Partition15", exists_ntdev, S_IFBLK, true},
1530 {"/dev/sdbo1", BRACK(FH_SDBO | 1), "\\Device\\Harddisk66\\Partition1", exists_ntdev, S_IFBLK, true},
1531 {"/dev/sdbo2", BRACK(FH_SDBO | 2), "\\Device\\Harddisk66\\Partition2", exists_ntdev, S_IFBLK, true},
1532 {"/dev/sdbo3", BRACK(FH_SDBO | 3), "\\Device\\Harddisk66\\Partition3", exists_ntdev, S_IFBLK, true},
1533 {"/dev/sdbo4", BRACK(FH_SDBO | 4), "\\Device\\Harddisk66\\Partition4", exists_ntdev, S_IFBLK, true},
1534 {"/dev/sdbo5", BRACK(FH_SDBO | 5), "\\Device\\Harddisk66\\Partition5", exists_ntdev, S_IFBLK, true},
1535 {"/dev/sdbo6", BRACK(FH_SDBO | 6), "\\Device\\Harddisk66\\Partition6", exists_ntdev, S_IFBLK, true},
1536 {"/dev/sdbo7", BRACK(FH_SDBO | 7), "\\Device\\Harddisk66\\Partition7", exists_ntdev, S_IFBLK, true},
1537 {"/dev/sdbo8", BRACK(FH_SDBO | 8), "\\Device\\Harddisk66\\Partition8", exists_ntdev, S_IFBLK, true},
1538 {"/dev/sdbo9", BRACK(FH_SDBO | 9), "\\Device\\Harddisk66\\Partition9", exists_ntdev, S_IFBLK, true},
1539 {"/dev/sdbo10", BRACK(FH_SDBO | 10), "\\Device\\Harddisk66\\Partition10", exists_ntdev, S_IFBLK, true},
1540 {"/dev/sdbo11", BRACK(FH_SDBO | 11), "\\Device\\Harddisk66\\Partition11", exists_ntdev, S_IFBLK, true},
1541 {"/dev/sdbo12", BRACK(FH_SDBO | 12), "\\Device\\Harddisk66\\Partition12", exists_ntdev, S_IFBLK, true},
1542 {"/dev/sdbo13", BRACK(FH_SDBO | 13), "\\Device\\Harddisk66\\Partition13", exists_ntdev, S_IFBLK, true},
1543 {"/dev/sdbo14", BRACK(FH_SDBO | 14), "\\Device\\Harddisk66\\Partition14", exists_ntdev, S_IFBLK, true},
1544 {"/dev/sdbo15", BRACK(FH_SDBO | 15), "\\Device\\Harddisk66\\Partition15", exists_ntdev, S_IFBLK, true},
1545 {"/dev/sdbp1", BRACK(FH_SDBP | 1), "\\Device\\Harddisk67\\Partition1", exists_ntdev, S_IFBLK, true},
1546 {"/dev/sdbp2", BRACK(FH_SDBP | 2), "\\Device\\Harddisk67\\Partition2", exists_ntdev, S_IFBLK, true},
1547 {"/dev/sdbp3", BRACK(FH_SDBP | 3), "\\Device\\Harddisk67\\Partition3", exists_ntdev, S_IFBLK, true},
1548 {"/dev/sdbp4", BRACK(FH_SDBP | 4), "\\Device\\Harddisk67\\Partition4", exists_ntdev, S_IFBLK, true},
1549 {"/dev/sdbp5", BRACK(FH_SDBP | 5), "\\Device\\Harddisk67\\Partition5", exists_ntdev, S_IFBLK, true},
1550 {"/dev/sdbp6", BRACK(FH_SDBP | 6), "\\Device\\Harddisk67\\Partition6", exists_ntdev, S_IFBLK, true},
1551 {"/dev/sdbp7", BRACK(FH_SDBP | 7), "\\Device\\Harddisk67\\Partition7", exists_ntdev, S_IFBLK, true},
1552 {"/dev/sdbp8", BRACK(FH_SDBP | 8), "\\Device\\Harddisk67\\Partition8", exists_ntdev, S_IFBLK, true},
1553 {"/dev/sdbp9", BRACK(FH_SDBP | 9), "\\Device\\Harddisk67\\Partition9", exists_ntdev, S_IFBLK, true},
1554 {"/dev/sdbp10", BRACK(FH_SDBP | 10), "\\Device\\Harddisk67\\Partition10", exists_ntdev, S_IFBLK, true},
1555 {"/dev/sdbp11", BRACK(FH_SDBP | 11), "\\Device\\Harddisk67\\Partition11", exists_ntdev, S_IFBLK, true},
1556 {"/dev/sdbp12", BRACK(FH_SDBP | 12), "\\Device\\Harddisk67\\Partition12", exists_ntdev, S_IFBLK, true},
1557 {"/dev/sdbp13", BRACK(FH_SDBP | 13), "\\Device\\Harddisk67\\Partition13", exists_ntdev, S_IFBLK, true},
1558 {"/dev/sdbp14", BRACK(FH_SDBP | 14), "\\Device\\Harddisk67\\Partition14", exists_ntdev, S_IFBLK, true},
1559 {"/dev/sdbp15", BRACK(FH_SDBP | 15), "\\Device\\Harddisk67\\Partition15", exists_ntdev, S_IFBLK, true},
1560 {"/dev/sdbq1", BRACK(FH_SDBQ | 1), "\\Device\\Harddisk68\\Partition1", exists_ntdev, S_IFBLK, true},
1561 {"/dev/sdbq2", BRACK(FH_SDBQ | 2), "\\Device\\Harddisk68\\Partition2", exists_ntdev, S_IFBLK, true},
1562 {"/dev/sdbq3", BRACK(FH_SDBQ | 3), "\\Device\\Harddisk68\\Partition3", exists_ntdev, S_IFBLK, true},
1563 {"/dev/sdbq4", BRACK(FH_SDBQ | 4), "\\Device\\Harddisk68\\Partition4", exists_ntdev, S_IFBLK, true},
1564 {"/dev/sdbq5", BRACK(FH_SDBQ | 5), "\\Device\\Harddisk68\\Partition5", exists_ntdev, S_IFBLK, true},
1565 {"/dev/sdbq6", BRACK(FH_SDBQ | 6), "\\Device\\Harddisk68\\Partition6", exists_ntdev, S_IFBLK, true},
1566 {"/dev/sdbq7", BRACK(FH_SDBQ | 7), "\\Device\\Harddisk68\\Partition7", exists_ntdev, S_IFBLK, true},
1567 {"/dev/sdbq8", BRACK(FH_SDBQ | 8), "\\Device\\Harddisk68\\Partition8", exists_ntdev, S_IFBLK, true},
1568 {"/dev/sdbq9", BRACK(FH_SDBQ | 9), "\\Device\\Harddisk68\\Partition9", exists_ntdev, S_IFBLK, true},
1569 {"/dev/sdbq10", BRACK(FH_SDBQ | 10), "\\Device\\Harddisk68\\Partition10", exists_ntdev, S_IFBLK, true},
1570 {"/dev/sdbq11", BRACK(FH_SDBQ | 11), "\\Device\\Harddisk68\\Partition11", exists_ntdev, S_IFBLK, true},
1571 {"/dev/sdbq12", BRACK(FH_SDBQ | 12), "\\Device\\Harddisk68\\Partition12", exists_ntdev, S_IFBLK, true},
1572 {"/dev/sdbq13", BRACK(FH_SDBQ | 13), "\\Device\\Harddisk68\\Partition13", exists_ntdev, S_IFBLK, true},
1573 {"/dev/sdbq14", BRACK(FH_SDBQ | 14), "\\Device\\Harddisk68\\Partition14", exists_ntdev, S_IFBLK, true},
1574 {"/dev/sdbq15", BRACK(FH_SDBQ | 15), "\\Device\\Harddisk68\\Partition15", exists_ntdev, S_IFBLK, true},
1575 {"/dev/sdbr1", BRACK(FH_SDBR | 1), "\\Device\\Harddisk69\\Partition1", exists_ntdev, S_IFBLK, true},
1576 {"/dev/sdbr2", BRACK(FH_SDBR | 2), "\\Device\\Harddisk69\\Partition2", exists_ntdev, S_IFBLK, true},
1577 {"/dev/sdbr3", BRACK(FH_SDBR | 3), "\\Device\\Harddisk69\\Partition3", exists_ntdev, S_IFBLK, true},
1578 {"/dev/sdbr4", BRACK(FH_SDBR | 4), "\\Device\\Harddisk69\\Partition4", exists_ntdev, S_IFBLK, true},
1579 {"/dev/sdbr5", BRACK(FH_SDBR | 5), "\\Device\\Harddisk69\\Partition5", exists_ntdev, S_IFBLK, true},
1580 {"/dev/sdbr6", BRACK(FH_SDBR | 6), "\\Device\\Harddisk69\\Partition6", exists_ntdev, S_IFBLK, true},
1581 {"/dev/sdbr7", BRACK(FH_SDBR | 7), "\\Device\\Harddisk69\\Partition7", exists_ntdev, S_IFBLK, true},
1582 {"/dev/sdbr8", BRACK(FH_SDBR | 8), "\\Device\\Harddisk69\\Partition8", exists_ntdev, S_IFBLK, true},
1583 {"/dev/sdbr9", BRACK(FH_SDBR | 9), "\\Device\\Harddisk69\\Partition9", exists_ntdev, S_IFBLK, true},
1584 {"/dev/sdbr10", BRACK(FH_SDBR | 10), "\\Device\\Harddisk69\\Partition10", exists_ntdev, S_IFBLK, true},
1585 {"/dev/sdbr11", BRACK(FH_SDBR | 11), "\\Device\\Harddisk69\\Partition11", exists_ntdev, S_IFBLK, true},
1586 {"/dev/sdbr12", BRACK(FH_SDBR | 12), "\\Device\\Harddisk69\\Partition12", exists_ntdev, S_IFBLK, true},
1587 {"/dev/sdbr13", BRACK(FH_SDBR | 13), "\\Device\\Harddisk69\\Partition13", exists_ntdev, S_IFBLK, true},
1588 {"/dev/sdbr14", BRACK(FH_SDBR | 14), "\\Device\\Harddisk69\\Partition14", exists_ntdev, S_IFBLK, true},
1589 {"/dev/sdbr15", BRACK(FH_SDBR | 15), "\\Device\\Harddisk69\\Partition15", exists_ntdev, S_IFBLK, true},
1590 {"/dev/sdbs1", BRACK(FH_SDBS | 1), "\\Device\\Harddisk70\\Partition1", exists_ntdev, S_IFBLK, true},
1591 {"/dev/sdbs2", BRACK(FH_SDBS | 2), "\\Device\\Harddisk70\\Partition2", exists_ntdev, S_IFBLK, true},
1592 {"/dev/sdbs3", BRACK(FH_SDBS | 3), "\\Device\\Harddisk70\\Partition3", exists_ntdev, S_IFBLK, true},
1593 {"/dev/sdbs4", BRACK(FH_SDBS | 4), "\\Device\\Harddisk70\\Partition4", exists_ntdev, S_IFBLK, true},
1594 {"/dev/sdbs5", BRACK(FH_SDBS | 5), "\\Device\\Harddisk70\\Partition5", exists_ntdev, S_IFBLK, true},
1595 {"/dev/sdbs6", BRACK(FH_SDBS | 6), "\\Device\\Harddisk70\\Partition6", exists_ntdev, S_IFBLK, true},
1596 {"/dev/sdbs7", BRACK(FH_SDBS | 7), "\\Device\\Harddisk70\\Partition7", exists_ntdev, S_IFBLK, true},
1597 {"/dev/sdbs8", BRACK(FH_SDBS | 8), "\\Device\\Harddisk70\\Partition8", exists_ntdev, S_IFBLK, true},
1598 {"/dev/sdbs9", BRACK(FH_SDBS | 9), "\\Device\\Harddisk70\\Partition9", exists_ntdev, S_IFBLK, true},
1599 {"/dev/sdbs10", BRACK(FH_SDBS | 10), "\\Device\\Harddisk70\\Partition10", exists_ntdev, S_IFBLK, true},
1600 {"/dev/sdbs11", BRACK(FH_SDBS | 11), "\\Device\\Harddisk70\\Partition11", exists_ntdev, S_IFBLK, true},
1601 {"/dev/sdbs12", BRACK(FH_SDBS | 12), "\\Device\\Harddisk70\\Partition12", exists_ntdev, S_IFBLK, true},
1602 {"/dev/sdbs13", BRACK(FH_SDBS | 13), "\\Device\\Harddisk70\\Partition13", exists_ntdev, S_IFBLK, true},
1603 {"/dev/sdbs14", BRACK(FH_SDBS | 14), "\\Device\\Harddisk70\\Partition14", exists_ntdev, S_IFBLK, true},
1604 {"/dev/sdbs15", BRACK(FH_SDBS | 15), "\\Device\\Harddisk70\\Partition15", exists_ntdev, S_IFBLK, true},
1605 {"/dev/sdbt1", BRACK(FH_SDBT | 1), "\\Device\\Harddisk71\\Partition1", exists_ntdev, S_IFBLK, true},
1606 {"/dev/sdbt2", BRACK(FH_SDBT | 2), "\\Device\\Harddisk71\\Partition2", exists_ntdev, S_IFBLK, true},
1607 {"/dev/sdbt3", BRACK(FH_SDBT | 3), "\\Device\\Harddisk71\\Partition3", exists_ntdev, S_IFBLK, true},
1608 {"/dev/sdbt4", BRACK(FH_SDBT | 4), "\\Device\\Harddisk71\\Partition4", exists_ntdev, S_IFBLK, true},
1609 {"/dev/sdbt5", BRACK(FH_SDBT | 5), "\\Device\\Harddisk71\\Partition5", exists_ntdev, S_IFBLK, true},
1610 {"/dev/sdbt6", BRACK(FH_SDBT | 6), "\\Device\\Harddisk71\\Partition6", exists_ntdev, S_IFBLK, true},
1611 {"/dev/sdbt7", BRACK(FH_SDBT | 7), "\\Device\\Harddisk71\\Partition7", exists_ntdev, S_IFBLK, true},
1612 {"/dev/sdbt8", BRACK(FH_SDBT | 8), "\\Device\\Harddisk71\\Partition8", exists_ntdev, S_IFBLK, true},
1613 {"/dev/sdbt9", BRACK(FH_SDBT | 9), "\\Device\\Harddisk71\\Partition9", exists_ntdev, S_IFBLK, true},
1614 {"/dev/sdbt10", BRACK(FH_SDBT | 10), "\\Device\\Harddisk71\\Partition10", exists_ntdev, S_IFBLK, true},
1615 {"/dev/sdbt11", BRACK(FH_SDBT | 11), "\\Device\\Harddisk71\\Partition11", exists_ntdev, S_IFBLK, true},
1616 {"/dev/sdbt12", BRACK(FH_SDBT | 12), "\\Device\\Harddisk71\\Partition12", exists_ntdev, S_IFBLK, true},
1617 {"/dev/sdbt13", BRACK(FH_SDBT | 13), "\\Device\\Harddisk71\\Partition13", exists_ntdev, S_IFBLK, true},
1618 {"/dev/sdbt14", BRACK(FH_SDBT | 14), "\\Device\\Harddisk71\\Partition14", exists_ntdev, S_IFBLK, true},
1619 {"/dev/sdbt15", BRACK(FH_SDBT | 15), "\\Device\\Harddisk71\\Partition15", exists_ntdev, S_IFBLK, true},
1620 {"/dev/sdbu1", BRACK(FH_SDBU | 1), "\\Device\\Harddisk72\\Partition1", exists_ntdev, S_IFBLK, true},
1621 {"/dev/sdbu2", BRACK(FH_SDBU | 2), "\\Device\\Harddisk72\\Partition2", exists_ntdev, S_IFBLK, true},
1622 {"/dev/sdbu3", BRACK(FH_SDBU | 3), "\\Device\\Harddisk72\\Partition3", exists_ntdev, S_IFBLK, true},
1623 {"/dev/sdbu4", BRACK(FH_SDBU | 4), "\\Device\\Harddisk72\\Partition4", exists_ntdev, S_IFBLK, true},
1624 {"/dev/sdbu5", BRACK(FH_SDBU | 5), "\\Device\\Harddisk72\\Partition5", exists_ntdev, S_IFBLK, true},
1625 {"/dev/sdbu6", BRACK(FH_SDBU | 6), "\\Device\\Harddisk72\\Partition6", exists_ntdev, S_IFBLK, true},
1626 {"/dev/sdbu7", BRACK(FH_SDBU | 7), "\\Device\\Harddisk72\\Partition7", exists_ntdev, S_IFBLK, true},
1627 {"/dev/sdbu8", BRACK(FH_SDBU | 8), "\\Device\\Harddisk72\\Partition8", exists_ntdev, S_IFBLK, true},
1628 {"/dev/sdbu9", BRACK(FH_SDBU | 9), "\\Device\\Harddisk72\\Partition9", exists_ntdev, S_IFBLK, true},
1629 {"/dev/sdbu10", BRACK(FH_SDBU | 10), "\\Device\\Harddisk72\\Partition10", exists_ntdev, S_IFBLK, true},
1630 {"/dev/sdbu11", BRACK(FH_SDBU | 11), "\\Device\\Harddisk72\\Partition11", exists_ntdev, S_IFBLK, true},
1631 {"/dev/sdbu12", BRACK(FH_SDBU | 12), "\\Device\\Harddisk72\\Partition12", exists_ntdev, S_IFBLK, true},
1632 {"/dev/sdbu13", BRACK(FH_SDBU | 13), "\\Device\\Harddisk72\\Partition13", exists_ntdev, S_IFBLK, true},
1633 {"/dev/sdbu14", BRACK(FH_SDBU | 14), "\\Device\\Harddisk72\\Partition14", exists_ntdev, S_IFBLK, true},
1634 {"/dev/sdbu15", BRACK(FH_SDBU | 15), "\\Device\\Harddisk72\\Partition15", exists_ntdev, S_IFBLK, true},
1635 {"/dev/sdbv1", BRACK(FH_SDBV | 1), "\\Device\\Harddisk73\\Partition1", exists_ntdev, S_IFBLK, true},
1636 {"/dev/sdbv2", BRACK(FH_SDBV | 2), "\\Device\\Harddisk73\\Partition2", exists_ntdev, S_IFBLK, true},
1637 {"/dev/sdbv3", BRACK(FH_SDBV | 3), "\\Device\\Harddisk73\\Partition3", exists_ntdev, S_IFBLK, true},
1638 {"/dev/sdbv4", BRACK(FH_SDBV | 4), "\\Device\\Harddisk73\\Partition4", exists_ntdev, S_IFBLK, true},
1639 {"/dev/sdbv5", BRACK(FH_SDBV | 5), "\\Device\\Harddisk73\\Partition5", exists_ntdev, S_IFBLK, true},
1640 {"/dev/sdbv6", BRACK(FH_SDBV | 6), "\\Device\\Harddisk73\\Partition6", exists_ntdev, S_IFBLK, true},
1641 {"/dev/sdbv7", BRACK(FH_SDBV | 7), "\\Device\\Harddisk73\\Partition7", exists_ntdev, S_IFBLK, true},
1642 {"/dev/sdbv8", BRACK(FH_SDBV | 8), "\\Device\\Harddisk73\\Partition8", exists_ntdev, S_IFBLK, true},
1643 {"/dev/sdbv9", BRACK(FH_SDBV | 9), "\\Device\\Harddisk73\\Partition9", exists_ntdev, S_IFBLK, true},
1644 {"/dev/sdbv10", BRACK(FH_SDBV | 10), "\\Device\\Harddisk73\\Partition10", exists_ntdev, S_IFBLK, true},
1645 {"/dev/sdbv11", BRACK(FH_SDBV | 11), "\\Device\\Harddisk73\\Partition11", exists_ntdev, S_IFBLK, true},
1646 {"/dev/sdbv12", BRACK(FH_SDBV | 12), "\\Device\\Harddisk73\\Partition12", exists_ntdev, S_IFBLK, true},
1647 {"/dev/sdbv13", BRACK(FH_SDBV | 13), "\\Device\\Harddisk73\\Partition13", exists_ntdev, S_IFBLK, true},
1648 {"/dev/sdbv14", BRACK(FH_SDBV | 14), "\\Device\\Harddisk73\\Partition14", exists_ntdev, S_IFBLK, true},
1649 {"/dev/sdbv15", BRACK(FH_SDBV | 15), "\\Device\\Harddisk73\\Partition15", exists_ntdev, S_IFBLK, true},
1650 {"/dev/sdbw1", BRACK(FH_SDBW | 1), "\\Device\\Harddisk74\\Partition1", exists_ntdev, S_IFBLK, true},
1651 {"/dev/sdbw2", BRACK(FH_SDBW | 2), "\\Device\\Harddisk74\\Partition2", exists_ntdev, S_IFBLK, true},
1652 {"/dev/sdbw3", BRACK(FH_SDBW | 3), "\\Device\\Harddisk74\\Partition3", exists_ntdev, S_IFBLK, true},
1653 {"/dev/sdbw4", BRACK(FH_SDBW | 4), "\\Device\\Harddisk74\\Partition4", exists_ntdev, S_IFBLK, true},
1654 {"/dev/sdbw5", BRACK(FH_SDBW | 5), "\\Device\\Harddisk74\\Partition5", exists_ntdev, S_IFBLK, true},
1655 {"/dev/sdbw6", BRACK(FH_SDBW | 6), "\\Device\\Harddisk74\\Partition6", exists_ntdev, S_IFBLK, true},
1656 {"/dev/sdbw7", BRACK(FH_SDBW | 7), "\\Device\\Harddisk74\\Partition7", exists_ntdev, S_IFBLK, true},
1657 {"/dev/sdbw8", BRACK(FH_SDBW | 8), "\\Device\\Harddisk74\\Partition8", exists_ntdev, S_IFBLK, true},
1658 {"/dev/sdbw9", BRACK(FH_SDBW | 9), "\\Device\\Harddisk74\\Partition9", exists_ntdev, S_IFBLK, true},
1659 {"/dev/sdbw10", BRACK(FH_SDBW | 10), "\\Device\\Harddisk74\\Partition10", exists_ntdev, S_IFBLK, true},
1660 {"/dev/sdbw11", BRACK(FH_SDBW | 11), "\\Device\\Harddisk74\\Partition11", exists_ntdev, S_IFBLK, true},
1661 {"/dev/sdbw12", BRACK(FH_SDBW | 12), "\\Device\\Harddisk74\\Partition12", exists_ntdev, S_IFBLK, true},
1662 {"/dev/sdbw13", BRACK(FH_SDBW | 13), "\\Device\\Harddisk74\\Partition13", exists_ntdev, S_IFBLK, true},
1663 {"/dev/sdbw14", BRACK(FH_SDBW | 14), "\\Device\\Harddisk74\\Partition14", exists_ntdev, S_IFBLK, true},
1664 {"/dev/sdbw15", BRACK(FH_SDBW | 15), "\\Device\\Harddisk74\\Partition15", exists_ntdev, S_IFBLK, true},
1665 {"/dev/sdbx1", BRACK(FH_SDBX | 1), "\\Device\\Harddisk75\\Partition1", exists_ntdev, S_IFBLK, true},
1666 {"/dev/sdbx2", BRACK(FH_SDBX | 2), "\\Device\\Harddisk75\\Partition2", exists_ntdev, S_IFBLK, true},
1667 {"/dev/sdbx3", BRACK(FH_SDBX | 3), "\\Device\\Harddisk75\\Partition3", exists_ntdev, S_IFBLK, true},
1668 {"/dev/sdbx4", BRACK(FH_SDBX | 4), "\\Device\\Harddisk75\\Partition4", exists_ntdev, S_IFBLK, true},
1669 {"/dev/sdbx5", BRACK(FH_SDBX | 5), "\\Device\\Harddisk75\\Partition5", exists_ntdev, S_IFBLK, true},
1670 {"/dev/sdbx6", BRACK(FH_SDBX | 6), "\\Device\\Harddisk75\\Partition6", exists_ntdev, S_IFBLK, true},
1671 {"/dev/sdbx7", BRACK(FH_SDBX | 7), "\\Device\\Harddisk75\\Partition7", exists_ntdev, S_IFBLK, true},
1672 {"/dev/sdbx8", BRACK(FH_SDBX | 8), "\\Device\\Harddisk75\\Partition8", exists_ntdev, S_IFBLK, true},
1673 {"/dev/sdbx9", BRACK(FH_SDBX | 9), "\\Device\\Harddisk75\\Partition9", exists_ntdev, S_IFBLK, true},
1674 {"/dev/sdbx10", BRACK(FH_SDBX | 10), "\\Device\\Harddisk75\\Partition10", exists_ntdev, S_IFBLK, true},
1675 {"/dev/sdbx11", BRACK(FH_SDBX | 11), "\\Device\\Harddisk75\\Partition11", exists_ntdev, S_IFBLK, true},
1676 {"/dev/sdbx12", BRACK(FH_SDBX | 12), "\\Device\\Harddisk75\\Partition12", exists_ntdev, S_IFBLK, true},
1677 {"/dev/sdbx13", BRACK(FH_SDBX | 13), "\\Device\\Harddisk75\\Partition13", exists_ntdev, S_IFBLK, true},
1678 {"/dev/sdbx14", BRACK(FH_SDBX | 14), "\\Device\\Harddisk75\\Partition14", exists_ntdev, S_IFBLK, true},
1679 {"/dev/sdbx15", BRACK(FH_SDBX | 15), "\\Device\\Harddisk75\\Partition15", exists_ntdev, S_IFBLK, true},
1680 {"/dev/sdby1", BRACK(FH_SDBY | 1), "\\Device\\Harddisk76\\Partition1", exists_ntdev, S_IFBLK, true},
1681 {"/dev/sdby2", BRACK(FH_SDBY | 2), "\\Device\\Harddisk76\\Partition2", exists_ntdev, S_IFBLK, true},
1682 {"/dev/sdby3", BRACK(FH_SDBY | 3), "\\Device\\Harddisk76\\Partition3", exists_ntdev, S_IFBLK, true},
1683 {"/dev/sdby4", BRACK(FH_SDBY | 4), "\\Device\\Harddisk76\\Partition4", exists_ntdev, S_IFBLK, true},
1684 {"/dev/sdby5", BRACK(FH_SDBY | 5), "\\Device\\Harddisk76\\Partition5", exists_ntdev, S_IFBLK, true},
1685 {"/dev/sdby6", BRACK(FH_SDBY | 6), "\\Device\\Harddisk76\\Partition6", exists_ntdev, S_IFBLK, true},
1686 {"/dev/sdby7", BRACK(FH_SDBY | 7), "\\Device\\Harddisk76\\Partition7", exists_ntdev, S_IFBLK, true},
1687 {"/dev/sdby8", BRACK(FH_SDBY | 8), "\\Device\\Harddisk76\\Partition8", exists_ntdev, S_IFBLK, true},
1688 {"/dev/sdby9", BRACK(FH_SDBY | 9), "\\Device\\Harddisk76\\Partition9", exists_ntdev, S_IFBLK, true},
1689 {"/dev/sdby10", BRACK(FH_SDBY | 10), "\\Device\\Harddisk76\\Partition10", exists_ntdev, S_IFBLK, true},
1690 {"/dev/sdby11", BRACK(FH_SDBY | 11), "\\Device\\Harddisk76\\Partition11", exists_ntdev, S_IFBLK, true},
1691 {"/dev/sdby12", BRACK(FH_SDBY | 12), "\\Device\\Harddisk76\\Partition12", exists_ntdev, S_IFBLK, true},
1692 {"/dev/sdby13", BRACK(FH_SDBY | 13), "\\Device\\Harddisk76\\Partition13", exists_ntdev, S_IFBLK, true},
1693 {"/dev/sdby14", BRACK(FH_SDBY | 14), "\\Device\\Harddisk76\\Partition14", exists_ntdev, S_IFBLK, true},
1694 {"/dev/sdby15", BRACK(FH_SDBY | 15), "\\Device\\Harddisk76\\Partition15", exists_ntdev, S_IFBLK, true},
1695 {"/dev/sdbz1", BRACK(FH_SDBZ | 1), "\\Device\\Harddisk77\\Partition1", exists_ntdev, S_IFBLK, true},
1696 {"/dev/sdbz2", BRACK(FH_SDBZ | 2), "\\Device\\Harddisk77\\Partition2", exists_ntdev, S_IFBLK, true},
1697 {"/dev/sdbz3", BRACK(FH_SDBZ | 3), "\\Device\\Harddisk77\\Partition3", exists_ntdev, S_IFBLK, true},
1698 {"/dev/sdbz4", BRACK(FH_SDBZ | 4), "\\Device\\Harddisk77\\Partition4", exists_ntdev, S_IFBLK, true},
1699 {"/dev/sdbz5", BRACK(FH_SDBZ | 5), "\\Device\\Harddisk77\\Partition5", exists_ntdev, S_IFBLK, true},
1700 {"/dev/sdbz6", BRACK(FH_SDBZ | 6), "\\Device\\Harddisk77\\Partition6", exists_ntdev, S_IFBLK, true},
1701 {"/dev/sdbz7", BRACK(FH_SDBZ | 7), "\\Device\\Harddisk77\\Partition7", exists_ntdev, S_IFBLK, true},
1702 {"/dev/sdbz8", BRACK(FH_SDBZ | 8), "\\Device\\Harddisk77\\Partition8", exists_ntdev, S_IFBLK, true},
1703 {"/dev/sdbz9", BRACK(FH_SDBZ | 9), "\\Device\\Harddisk77\\Partition9", exists_ntdev, S_IFBLK, true},
1704 {"/dev/sdbz10", BRACK(FH_SDBZ | 10), "\\Device\\Harddisk77\\Partition10", exists_ntdev, S_IFBLK, true},
1705 {"/dev/sdbz11", BRACK(FH_SDBZ | 11), "\\Device\\Harddisk77\\Partition11", exists_ntdev, S_IFBLK, true},
1706 {"/dev/sdbz12", BRACK(FH_SDBZ | 12), "\\Device\\Harddisk77\\Partition12", exists_ntdev, S_IFBLK, true},
1707 {"/dev/sdbz13", BRACK(FH_SDBZ | 13), "\\Device\\Harddisk77\\Partition13", exists_ntdev, S_IFBLK, true},
1708 {"/dev/sdbz14", BRACK(FH_SDBZ | 14), "\\Device\\Harddisk77\\Partition14", exists_ntdev, S_IFBLK, true},
1709 {"/dev/sdbz15", BRACK(FH_SDBZ | 15), "\\Device\\Harddisk77\\Partition15", exists_ntdev, S_IFBLK, true},
1710 {"/dev/sdca", BRACK(FH_SDCA), "\\Device\\Harddisk78\\Partition0", exists_ntdev, S_IFBLK, true},
1711 {"/dev/sdcb", BRACK(FH_SDCB), "\\Device\\Harddisk79\\Partition0", exists_ntdev, S_IFBLK, true},
1712 {"/dev/sdcc", BRACK(FH_SDCC), "\\Device\\Harddisk80\\Partition0", exists_ntdev, S_IFBLK, true},
1713 {"/dev/sdcd", BRACK(FH_SDCD), "\\Device\\Harddisk81\\Partition0", exists_ntdev, S_IFBLK, true},
1714 {"/dev/sdce", BRACK(FH_SDCE), "\\Device\\Harddisk82\\Partition0", exists_ntdev, S_IFBLK, true},
1715 {"/dev/sdcf", BRACK(FH_SDCF), "\\Device\\Harddisk83\\Partition0", exists_ntdev, S_IFBLK, true},
1716 {"/dev/sdcg", BRACK(FH_SDCG), "\\Device\\Harddisk84\\Partition0", exists_ntdev, S_IFBLK, true},
1717 {"/dev/sdch", BRACK(FH_SDCH), "\\Device\\Harddisk85\\Partition0", exists_ntdev, S_IFBLK, true},
1718 {"/dev/sdci", BRACK(FH_SDCI), "\\Device\\Harddisk86\\Partition0", exists_ntdev, S_IFBLK, true},
1719 {"/dev/sdcj", BRACK(FH_SDCJ), "\\Device\\Harddisk87\\Partition0", exists_ntdev, S_IFBLK, true},
1720 {"/dev/sdck", BRACK(FH_SDCK), "\\Device\\Harddisk88\\Partition0", exists_ntdev, S_IFBLK, true},
1721 {"/dev/sdcl", BRACK(FH_SDCL), "\\Device\\Harddisk89\\Partition0", exists_ntdev, S_IFBLK, true},
1722 {"/dev/sdcm", BRACK(FH_SDCM), "\\Device\\Harddisk90\\Partition0", exists_ntdev, S_IFBLK, true},
1723 {"/dev/sdcn", BRACK(FH_SDCN), "\\Device\\Harddisk91\\Partition0", exists_ntdev, S_IFBLK, true},
1724 {"/dev/sdco", BRACK(FH_SDCO), "\\Device\\Harddisk92\\Partition0", exists_ntdev, S_IFBLK, true},
1725 {"/dev/sdcp", BRACK(FH_SDCP), "\\Device\\Harddisk93\\Partition0", exists_ntdev, S_IFBLK, true},
1726 {"/dev/sdcq", BRACK(FH_SDCQ), "\\Device\\Harddisk94\\Partition0", exists_ntdev, S_IFBLK, true},
1727 {"/dev/sdcr", BRACK(FH_SDCR), "\\Device\\Harddisk95\\Partition0", exists_ntdev, S_IFBLK, true},
1728 {"/dev/sdcs", BRACK(FH_SDCS), "\\Device\\Harddisk96\\Partition0", exists_ntdev, S_IFBLK, true},
1729 {"/dev/sdct", BRACK(FH_SDCT), "\\Device\\Harddisk97\\Partition0", exists_ntdev, S_IFBLK, true},
1730 {"/dev/sdcu", BRACK(FH_SDCU), "\\Device\\Harddisk98\\Partition0", exists_ntdev, S_IFBLK, true},
1731 {"/dev/sdcv", BRACK(FH_SDCV), "\\Device\\Harddisk99\\Partition0", exists_ntdev, S_IFBLK, true},
1732 {"/dev/sdcw", BRACK(FH_SDCW), "\\Device\\Harddisk100\\Partition0", exists_ntdev, S_IFBLK, true},
1733 {"/dev/sdcx", BRACK(FH_SDCX), "\\Device\\Harddisk101\\Partition0", exists_ntdev, S_IFBLK, true},
1734 {"/dev/sdcy", BRACK(FH_SDCY), "\\Device\\Harddisk102\\Partition0", exists_ntdev, S_IFBLK, true},
1735 {"/dev/sdcz", BRACK(FH_SDCZ), "\\Device\\Harddisk103\\Partition0", exists_ntdev, S_IFBLK, true},
1736 {"/dev/sdca1", BRACK(FH_SDCA | 1), "\\Device\\Harddisk78\\Partition1", exists_ntdev, S_IFBLK, true},
1737 {"/dev/sdca2", BRACK(FH_SDCA | 2), "\\Device\\Harddisk78\\Partition2", exists_ntdev, S_IFBLK, true},
1738 {"/dev/sdca3", BRACK(FH_SDCA | 3), "\\Device\\Harddisk78\\Partition3", exists_ntdev, S_IFBLK, true},
1739 {"/dev/sdca4", BRACK(FH_SDCA | 4), "\\Device\\Harddisk78\\Partition4", exists_ntdev, S_IFBLK, true},
1740 {"/dev/sdca5", BRACK(FH_SDCA | 5), "\\Device\\Harddisk78\\Partition5", exists_ntdev, S_IFBLK, true},
1741 {"/dev/sdca6", BRACK(FH_SDCA | 6), "\\Device\\Harddisk78\\Partition6", exists_ntdev, S_IFBLK, true},
1742 {"/dev/sdca7", BRACK(FH_SDCA | 7), "\\Device\\Harddisk78\\Partition7", exists_ntdev, S_IFBLK, true},
1743 {"/dev/sdca8", BRACK(FH_SDCA | 8), "\\Device\\Harddisk78\\Partition8", exists_ntdev, S_IFBLK, true},
1744 {"/dev/sdca9", BRACK(FH_SDCA | 9), "\\Device\\Harddisk78\\Partition9", exists_ntdev, S_IFBLK, true},
1745 {"/dev/sdca10", BRACK(FH_SDCA | 10), "\\Device\\Harddisk78\\Partition10", exists_ntdev, S_IFBLK, true},
1746 {"/dev/sdca11", BRACK(FH_SDCA | 11), "\\Device\\Harddisk78\\Partition11", exists_ntdev, S_IFBLK, true},
1747 {"/dev/sdca12", BRACK(FH_SDCA | 12), "\\Device\\Harddisk78\\Partition12", exists_ntdev, S_IFBLK, true},
1748 {"/dev/sdca13", BRACK(FH_SDCA | 13), "\\Device\\Harddisk78\\Partition13", exists_ntdev, S_IFBLK, true},
1749 {"/dev/sdca14", BRACK(FH_SDCA | 14), "\\Device\\Harddisk78\\Partition14", exists_ntdev, S_IFBLK, true},
1750 {"/dev/sdca15", BRACK(FH_SDCA | 15), "\\Device\\Harddisk78\\Partition15", exists_ntdev, S_IFBLK, true},
1751 {"/dev/sdcb1", BRACK(FH_SDCB | 1), "\\Device\\Harddisk79\\Partition1", exists_ntdev, S_IFBLK, true},
1752 {"/dev/sdcb2", BRACK(FH_SDCB | 2), "\\Device\\Harddisk79\\Partition2", exists_ntdev, S_IFBLK, true},
1753 {"/dev/sdcb3", BRACK(FH_SDCB | 3), "\\Device\\Harddisk79\\Partition3", exists_ntdev, S_IFBLK, true},
1754 {"/dev/sdcb4", BRACK(FH_SDCB | 4), "\\Device\\Harddisk79\\Partition4", exists_ntdev, S_IFBLK, true},
1755 {"/dev/sdcb5", BRACK(FH_SDCB | 5), "\\Device\\Harddisk79\\Partition5", exists_ntdev, S_IFBLK, true},
1756 {"/dev/sdcb6", BRACK(FH_SDCB | 6), "\\Device\\Harddisk79\\Partition6", exists_ntdev, S_IFBLK, true},
1757 {"/dev/sdcb7", BRACK(FH_SDCB | 7), "\\Device\\Harddisk79\\Partition7", exists_ntdev, S_IFBLK, true},
1758 {"/dev/sdcb8", BRACK(FH_SDCB | 8), "\\Device\\Harddisk79\\Partition8", exists_ntdev, S_IFBLK, true},
1759 {"/dev/sdcb9", BRACK(FH_SDCB | 9), "\\Device\\Harddisk79\\Partition9", exists_ntdev, S_IFBLK, true},
1760 {"/dev/sdcb10", BRACK(FH_SDCB | 10), "\\Device\\Harddisk79\\Partition10", exists_ntdev, S_IFBLK, true},
1761 {"/dev/sdcb11", BRACK(FH_SDCB | 11), "\\Device\\Harddisk79\\Partition11", exists_ntdev, S_IFBLK, true},
1762 {"/dev/sdcb12", BRACK(FH_SDCB | 12), "\\Device\\Harddisk79\\Partition12", exists_ntdev, S_IFBLK, true},
1763 {"/dev/sdcb13", BRACK(FH_SDCB | 13), "\\Device\\Harddisk79\\Partition13", exists_ntdev, S_IFBLK, true},
1764 {"/dev/sdcb14", BRACK(FH_SDCB | 14), "\\Device\\Harddisk79\\Partition14", exists_ntdev, S_IFBLK, true},
1765 {"/dev/sdcb15", BRACK(FH_SDCB | 15), "\\Device\\Harddisk79\\Partition15", exists_ntdev, S_IFBLK, true},
1766 {"/dev/sdcc1", BRACK(FH_SDCC | 1), "\\Device\\Harddisk80\\Partition1", exists_ntdev, S_IFBLK, true},
1767 {"/dev/sdcc2", BRACK(FH_SDCC | 2), "\\Device\\Harddisk80\\Partition2", exists_ntdev, S_IFBLK, true},
1768 {"/dev/sdcc3", BRACK(FH_SDCC | 3), "\\Device\\Harddisk80\\Partition3", exists_ntdev, S_IFBLK, true},
1769 {"/dev/sdcc4", BRACK(FH_SDCC | 4), "\\Device\\Harddisk80\\Partition4", exists_ntdev, S_IFBLK, true},
1770 {"/dev/sdcc5", BRACK(FH_SDCC | 5), "\\Device\\Harddisk80\\Partition5", exists_ntdev, S_IFBLK, true},
1771 {"/dev/sdcc6", BRACK(FH_SDCC | 6), "\\Device\\Harddisk80\\Partition6", exists_ntdev, S_IFBLK, true},
1772 {"/dev/sdcc7", BRACK(FH_SDCC | 7), "\\Device\\Harddisk80\\Partition7", exists_ntdev, S_IFBLK, true},
1773 {"/dev/sdcc8", BRACK(FH_SDCC | 8), "\\Device\\Harddisk80\\Partition8", exists_ntdev, S_IFBLK, true},
1774 {"/dev/sdcc9", BRACK(FH_SDCC | 9), "\\Device\\Harddisk80\\Partition9", exists_ntdev, S_IFBLK, true},
1775 {"/dev/sdcc10", BRACK(FH_SDCC | 10), "\\Device\\Harddisk80\\Partition10", exists_ntdev, S_IFBLK, true},
1776 {"/dev/sdcc11", BRACK(FH_SDCC | 11), "\\Device\\Harddisk80\\Partition11", exists_ntdev, S_IFBLK, true},
1777 {"/dev/sdcc12", BRACK(FH_SDCC | 12), "\\Device\\Harddisk80\\Partition12", exists_ntdev, S_IFBLK, true},
1778 {"/dev/sdcc13", BRACK(FH_SDCC | 13), "\\Device\\Harddisk80\\Partition13", exists_ntdev, S_IFBLK, true},
1779 {"/dev/sdcc14", BRACK(FH_SDCC | 14), "\\Device\\Harddisk80\\Partition14", exists_ntdev, S_IFBLK, true},
1780 {"/dev/sdcc15", BRACK(FH_SDCC | 15), "\\Device\\Harddisk80\\Partition15", exists_ntdev, S_IFBLK, true},
1781 {"/dev/sdcd1", BRACK(FH_SDCD | 1), "\\Device\\Harddisk81\\Partition1", exists_ntdev, S_IFBLK, true},
1782 {"/dev/sdcd2", BRACK(FH_SDCD | 2), "\\Device\\Harddisk81\\Partition2", exists_ntdev, S_IFBLK, true},
1783 {"/dev/sdcd3", BRACK(FH_SDCD | 3), "\\Device\\Harddisk81\\Partition3", exists_ntdev, S_IFBLK, true},
1784 {"/dev/sdcd4", BRACK(FH_SDCD | 4), "\\Device\\Harddisk81\\Partition4", exists_ntdev, S_IFBLK, true},
1785 {"/dev/sdcd5", BRACK(FH_SDCD | 5), "\\Device\\Harddisk81\\Partition5", exists_ntdev, S_IFBLK, true},
1786 {"/dev/sdcd6", BRACK(FH_SDCD | 6), "\\Device\\Harddisk81\\Partition6", exists_ntdev, S_IFBLK, true},
1787 {"/dev/sdcd7", BRACK(FH_SDCD | 7), "\\Device\\Harddisk81\\Partition7", exists_ntdev, S_IFBLK, true},
1788 {"/dev/sdcd8", BRACK(FH_SDCD | 8), "\\Device\\Harddisk81\\Partition8", exists_ntdev, S_IFBLK, true},
1789 {"/dev/sdcd9", BRACK(FH_SDCD | 9), "\\Device\\Harddisk81\\Partition9", exists_ntdev, S_IFBLK, true},
1790 {"/dev/sdcd10", BRACK(FH_SDCD | 10), "\\Device\\Harddisk81\\Partition10", exists_ntdev, S_IFBLK, true},
1791 {"/dev/sdcd11", BRACK(FH_SDCD | 11), "\\Device\\Harddisk81\\Partition11", exists_ntdev, S_IFBLK, true},
1792 {"/dev/sdcd12", BRACK(FH_SDCD | 12), "\\Device\\Harddisk81\\Partition12", exists_ntdev, S_IFBLK, true},
1793 {"/dev/sdcd13", BRACK(FH_SDCD | 13), "\\Device\\Harddisk81\\Partition13", exists_ntdev, S_IFBLK, true},
1794 {"/dev/sdcd14", BRACK(FH_SDCD | 14), "\\Device\\Harddisk81\\Partition14", exists_ntdev, S_IFBLK, true},
1795 {"/dev/sdcd15", BRACK(FH_SDCD | 15), "\\Device\\Harddisk81\\Partition15", exists_ntdev, S_IFBLK, true},
1796 {"/dev/sdce1", BRACK(FH_SDCE | 1), "\\Device\\Harddisk82\\Partition1", exists_ntdev, S_IFBLK, true},
1797 {"/dev/sdce2", BRACK(FH_SDCE | 2), "\\Device\\Harddisk82\\Partition2", exists_ntdev, S_IFBLK, true},
1798 {"/dev/sdce3", BRACK(FH_SDCE | 3), "\\Device\\Harddisk82\\Partition3", exists_ntdev, S_IFBLK, true},
1799 {"/dev/sdce4", BRACK(FH_SDCE | 4), "\\Device\\Harddisk82\\Partition4", exists_ntdev, S_IFBLK, true},
1800 {"/dev/sdce5", BRACK(FH_SDCE | 5), "\\Device\\Harddisk82\\Partition5", exists_ntdev, S_IFBLK, true},
1801 {"/dev/sdce6", BRACK(FH_SDCE | 6), "\\Device\\Harddisk82\\Partition6", exists_ntdev, S_IFBLK, true},
1802 {"/dev/sdce7", BRACK(FH_SDCE | 7), "\\Device\\Harddisk82\\Partition7", exists_ntdev, S_IFBLK, true},
1803 {"/dev/sdce8", BRACK(FH_SDCE | 8), "\\Device\\Harddisk82\\Partition8", exists_ntdev, S_IFBLK, true},
1804 {"/dev/sdce9", BRACK(FH_SDCE | 9), "\\Device\\Harddisk82\\Partition9", exists_ntdev, S_IFBLK, true},
1805 {"/dev/sdce10", BRACK(FH_SDCE | 10), "\\Device\\Harddisk82\\Partition10", exists_ntdev, S_IFBLK, true},
1806 {"/dev/sdce11", BRACK(FH_SDCE | 11), "\\Device\\Harddisk82\\Partition11", exists_ntdev, S_IFBLK, true},
1807 {"/dev/sdce12", BRACK(FH_SDCE | 12), "\\Device\\Harddisk82\\Partition12", exists_ntdev, S_IFBLK, true},
1808 {"/dev/sdce13", BRACK(FH_SDCE | 13), "\\Device\\Harddisk82\\Partition13", exists_ntdev, S_IFBLK, true},
1809 {"/dev/sdce14", BRACK(FH_SDCE | 14), "\\Device\\Harddisk82\\Partition14", exists_ntdev, S_IFBLK, true},
1810 {"/dev/sdce15", BRACK(FH_SDCE | 15), "\\Device\\Harddisk82\\Partition15", exists_ntdev, S_IFBLK, true},
1811 {"/dev/sdcf1", BRACK(FH_SDCF | 1), "\\Device\\Harddisk83\\Partition1", exists_ntdev, S_IFBLK, true},
1812 {"/dev/sdcf2", BRACK(FH_SDCF | 2), "\\Device\\Harddisk83\\Partition2", exists_ntdev, S_IFBLK, true},
1813 {"/dev/sdcf3", BRACK(FH_SDCF | 3), "\\Device\\Harddisk83\\Partition3", exists_ntdev, S_IFBLK, true},
1814 {"/dev/sdcf4", BRACK(FH_SDCF | 4), "\\Device\\Harddisk83\\Partition4", exists_ntdev, S_IFBLK, true},
1815 {"/dev/sdcf5", BRACK(FH_SDCF | 5), "\\Device\\Harddisk83\\Partition5", exists_ntdev, S_IFBLK, true},
1816 {"/dev/sdcf6", BRACK(FH_SDCF | 6), "\\Device\\Harddisk83\\Partition6", exists_ntdev, S_IFBLK, true},
1817 {"/dev/sdcf7", BRACK(FH_SDCF | 7), "\\Device\\Harddisk83\\Partition7", exists_ntdev, S_IFBLK, true},
1818 {"/dev/sdcf8", BRACK(FH_SDCF | 8), "\\Device\\Harddisk83\\Partition8", exists_ntdev, S_IFBLK, true},
1819 {"/dev/sdcf9", BRACK(FH_SDCF | 9), "\\Device\\Harddisk83\\Partition9", exists_ntdev, S_IFBLK, true},
1820 {"/dev/sdcf10", BRACK(FH_SDCF | 10), "\\Device\\Harddisk83\\Partition10", exists_ntdev, S_IFBLK, true},
1821 {"/dev/sdcf11", BRACK(FH_SDCF | 11), "\\Device\\Harddisk83\\Partition11", exists_ntdev, S_IFBLK, true},
1822 {"/dev/sdcf12", BRACK(FH_SDCF | 12), "\\Device\\Harddisk83\\Partition12", exists_ntdev, S_IFBLK, true},
1823 {"/dev/sdcf13", BRACK(FH_SDCF | 13), "\\Device\\Harddisk83\\Partition13", exists_ntdev, S_IFBLK, true},
1824 {"/dev/sdcf14", BRACK(FH_SDCF | 14), "\\Device\\Harddisk83\\Partition14", exists_ntdev, S_IFBLK, true},
1825 {"/dev/sdcf15", BRACK(FH_SDCF | 15), "\\Device\\Harddisk83\\Partition15", exists_ntdev, S_IFBLK, true},
1826 {"/dev/sdcg1", BRACK(FH_SDCG | 1), "\\Device\\Harddisk84\\Partition1", exists_ntdev, S_IFBLK, true},
1827 {"/dev/sdcg2", BRACK(FH_SDCG | 2), "\\Device\\Harddisk84\\Partition2", exists_ntdev, S_IFBLK, true},
1828 {"/dev/sdcg3", BRACK(FH_SDCG | 3), "\\Device\\Harddisk84\\Partition3", exists_ntdev, S_IFBLK, true},
1829 {"/dev/sdcg4", BRACK(FH_SDCG | 4), "\\Device\\Harddisk84\\Partition4", exists_ntdev, S_IFBLK, true},
1830 {"/dev/sdcg5", BRACK(FH_SDCG | 5), "\\Device\\Harddisk84\\Partition5", exists_ntdev, S_IFBLK, true},
1831 {"/dev/sdcg6", BRACK(FH_SDCG | 6), "\\Device\\Harddisk84\\Partition6", exists_ntdev, S_IFBLK, true},
1832 {"/dev/sdcg7", BRACK(FH_SDCG | 7), "\\Device\\Harddisk84\\Partition7", exists_ntdev, S_IFBLK, true},
1833 {"/dev/sdcg8", BRACK(FH_SDCG | 8), "\\Device\\Harddisk84\\Partition8", exists_ntdev, S_IFBLK, true},
1834 {"/dev/sdcg9", BRACK(FH_SDCG | 9), "\\Device\\Harddisk84\\Partition9", exists_ntdev, S_IFBLK, true},
1835 {"/dev/sdcg10", BRACK(FH_SDCG | 10), "\\Device\\Harddisk84\\Partition10", exists_ntdev, S_IFBLK, true},
1836 {"/dev/sdcg11", BRACK(FH_SDCG | 11), "\\Device\\Harddisk84\\Partition11", exists_ntdev, S_IFBLK, true},
1837 {"/dev/sdcg12", BRACK(FH_SDCG | 12), "\\Device\\Harddisk84\\Partition12", exists_ntdev, S_IFBLK, true},
1838 {"/dev/sdcg13", BRACK(FH_SDCG | 13), "\\Device\\Harddisk84\\Partition13", exists_ntdev, S_IFBLK, true},
1839 {"/dev/sdcg14", BRACK(FH_SDCG | 14), "\\Device\\Harddisk84\\Partition14", exists_ntdev, S_IFBLK, true},
1840 {"/dev/sdcg15", BRACK(FH_SDCG | 15), "\\Device\\Harddisk84\\Partition15", exists_ntdev, S_IFBLK, true},
1841 {"/dev/sdch1", BRACK(FH_SDCH | 1), "\\Device\\Harddisk85\\Partition1", exists_ntdev, S_IFBLK, true},
1842 {"/dev/sdch2", BRACK(FH_SDCH | 2), "\\Device\\Harddisk85\\Partition2", exists_ntdev, S_IFBLK, true},
1843 {"/dev/sdch3", BRACK(FH_SDCH | 3), "\\Device\\Harddisk85\\Partition3", exists_ntdev, S_IFBLK, true},
1844 {"/dev/sdch4", BRACK(FH_SDCH | 4), "\\Device\\Harddisk85\\Partition4", exists_ntdev, S_IFBLK, true},
1845 {"/dev/sdch5", BRACK(FH_SDCH | 5), "\\Device\\Harddisk85\\Partition5", exists_ntdev, S_IFBLK, true},
1846 {"/dev/sdch6", BRACK(FH_SDCH | 6), "\\Device\\Harddisk85\\Partition6", exists_ntdev, S_IFBLK, true},
1847 {"/dev/sdch7", BRACK(FH_SDCH | 7), "\\Device\\Harddisk85\\Partition7", exists_ntdev, S_IFBLK, true},
1848 {"/dev/sdch8", BRACK(FH_SDCH | 8), "\\Device\\Harddisk85\\Partition8", exists_ntdev, S_IFBLK, true},
1849 {"/dev/sdch9", BRACK(FH_SDCH | 9), "\\Device\\Harddisk85\\Partition9", exists_ntdev, S_IFBLK, true},
1850 {"/dev/sdch10", BRACK(FH_SDCH | 10), "\\Device\\Harddisk85\\Partition10", exists_ntdev, S_IFBLK, true},
1851 {"/dev/sdch11", BRACK(FH_SDCH | 11), "\\Device\\Harddisk85\\Partition11", exists_ntdev, S_IFBLK, true},
1852 {"/dev/sdch12", BRACK(FH_SDCH | 12), "\\Device\\Harddisk85\\Partition12", exists_ntdev, S_IFBLK, true},
1853 {"/dev/sdch13", BRACK(FH_SDCH | 13), "\\Device\\Harddisk85\\Partition13", exists_ntdev, S_IFBLK, true},
1854 {"/dev/sdch14", BRACK(FH_SDCH | 14), "\\Device\\Harddisk85\\Partition14", exists_ntdev, S_IFBLK, true},
1855 {"/dev/sdch15", BRACK(FH_SDCH | 15), "\\Device\\Harddisk85\\Partition15", exists_ntdev, S_IFBLK, true},
1856 {"/dev/sdci1", BRACK(FH_SDCI | 1), "\\Device\\Harddisk86\\Partition1", exists_ntdev, S_IFBLK, true},
1857 {"/dev/sdci2", BRACK(FH_SDCI | 2), "\\Device\\Harddisk86\\Partition2", exists_ntdev, S_IFBLK, true},
1858 {"/dev/sdci3", BRACK(FH_SDCI | 3), "\\Device\\Harddisk86\\Partition3", exists_ntdev, S_IFBLK, true},
1859 {"/dev/sdci4", BRACK(FH_SDCI | 4), "\\Device\\Harddisk86\\Partition4", exists_ntdev, S_IFBLK, true},
1860 {"/dev/sdci5", BRACK(FH_SDCI | 5), "\\Device\\Harddisk86\\Partition5", exists_ntdev, S_IFBLK, true},
1861 {"/dev/sdci6", BRACK(FH_SDCI | 6), "\\Device\\Harddisk86\\Partition6", exists_ntdev, S_IFBLK, true},
1862 {"/dev/sdci7", BRACK(FH_SDCI | 7), "\\Device\\Harddisk86\\Partition7", exists_ntdev, S_IFBLK, true},
1863 {"/dev/sdci8", BRACK(FH_SDCI | 8), "\\Device\\Harddisk86\\Partition8", exists_ntdev, S_IFBLK, true},
1864 {"/dev/sdci9", BRACK(FH_SDCI | 9), "\\Device\\Harddisk86\\Partition9", exists_ntdev, S_IFBLK, true},
1865 {"/dev/sdci10", BRACK(FH_SDCI | 10), "\\Device\\Harddisk86\\Partition10", exists_ntdev, S_IFBLK, true},
1866 {"/dev/sdci11", BRACK(FH_SDCI | 11), "\\Device\\Harddisk86\\Partition11", exists_ntdev, S_IFBLK, true},
1867 {"/dev/sdci12", BRACK(FH_SDCI | 12), "\\Device\\Harddisk86\\Partition12", exists_ntdev, S_IFBLK, true},
1868 {"/dev/sdci13", BRACK(FH_SDCI | 13), "\\Device\\Harddisk86\\Partition13", exists_ntdev, S_IFBLK, true},
1869 {"/dev/sdci14", BRACK(FH_SDCI | 14), "\\Device\\Harddisk86\\Partition14", exists_ntdev, S_IFBLK, true},
1870 {"/dev/sdci15", BRACK(FH_SDCI | 15), "\\Device\\Harddisk86\\Partition15", exists_ntdev, S_IFBLK, true},
1871 {"/dev/sdcj1", BRACK(FH_SDCJ | 1), "\\Device\\Harddisk87\\Partition1", exists_ntdev, S_IFBLK, true},
1872 {"/dev/sdcj2", BRACK(FH_SDCJ | 2), "\\Device\\Harddisk87\\Partition2", exists_ntdev, S_IFBLK, true},
1873 {"/dev/sdcj3", BRACK(FH_SDCJ | 3), "\\Device\\Harddisk87\\Partition3", exists_ntdev, S_IFBLK, true},
1874 {"/dev/sdcj4", BRACK(FH_SDCJ | 4), "\\Device\\Harddisk87\\Partition4", exists_ntdev, S_IFBLK, true},
1875 {"/dev/sdcj5", BRACK(FH_SDCJ | 5), "\\Device\\Harddisk87\\Partition5", exists_ntdev, S_IFBLK, true},
1876 {"/dev/sdcj6", BRACK(FH_SDCJ | 6), "\\Device\\Harddisk87\\Partition6", exists_ntdev, S_IFBLK, true},
1877 {"/dev/sdcj7", BRACK(FH_SDCJ | 7), "\\Device\\Harddisk87\\Partition7", exists_ntdev, S_IFBLK, true},
1878 {"/dev/sdcj8", BRACK(FH_SDCJ | 8), "\\Device\\Harddisk87\\Partition8", exists_ntdev, S_IFBLK, true},
1879 {"/dev/sdcj9", BRACK(FH_SDCJ | 9), "\\Device\\Harddisk87\\Partition9", exists_ntdev, S_IFBLK, true},
1880 {"/dev/sdcj10", BRACK(FH_SDCJ | 10), "\\Device\\Harddisk87\\Partition10", exists_ntdev, S_IFBLK, true},
1881 {"/dev/sdcj11", BRACK(FH_SDCJ | 11), "\\Device\\Harddisk87\\Partition11", exists_ntdev, S_IFBLK, true},
1882 {"/dev/sdcj12", BRACK(FH_SDCJ | 12), "\\Device\\Harddisk87\\Partition12", exists_ntdev, S_IFBLK, true},
1883 {"/dev/sdcj13", BRACK(FH_SDCJ | 13), "\\Device\\Harddisk87\\Partition13", exists_ntdev, S_IFBLK, true},
1884 {"/dev/sdcj14", BRACK(FH_SDCJ | 14), "\\Device\\Harddisk87\\Partition14", exists_ntdev, S_IFBLK, true},
1885 {"/dev/sdcj15", BRACK(FH_SDCJ | 15), "\\Device\\Harddisk87\\Partition15", exists_ntdev, S_IFBLK, true},
1886 {"/dev/sdck1", BRACK(FH_SDCK | 1), "\\Device\\Harddisk88\\Partition1", exists_ntdev, S_IFBLK, true},
1887 {"/dev/sdck2", BRACK(FH_SDCK | 2), "\\Device\\Harddisk88\\Partition2", exists_ntdev, S_IFBLK, true},
1888 {"/dev/sdck3", BRACK(FH_SDCK | 3), "\\Device\\Harddisk88\\Partition3", exists_ntdev, S_IFBLK, true},
1889 {"/dev/sdck4", BRACK(FH_SDCK | 4), "\\Device\\Harddisk88\\Partition4", exists_ntdev, S_IFBLK, true},
1890 {"/dev/sdck5", BRACK(FH_SDCK | 5), "\\Device\\Harddisk88\\Partition5", exists_ntdev, S_IFBLK, true},
1891 {"/dev/sdck6", BRACK(FH_SDCK | 6), "\\Device\\Harddisk88\\Partition6", exists_ntdev, S_IFBLK, true},
1892 {"/dev/sdck7", BRACK(FH_SDCK | 7), "\\Device\\Harddisk88\\Partition7", exists_ntdev, S_IFBLK, true},
1893 {"/dev/sdck8", BRACK(FH_SDCK | 8), "\\Device\\Harddisk88\\Partition8", exists_ntdev, S_IFBLK, true},
1894 {"/dev/sdck9", BRACK(FH_SDCK | 9), "\\Device\\Harddisk88\\Partition9", exists_ntdev, S_IFBLK, true},
1895 {"/dev/sdck10", BRACK(FH_SDCK | 10), "\\Device\\Harddisk88\\Partition10", exists_ntdev, S_IFBLK, true},
1896 {"/dev/sdck11", BRACK(FH_SDCK | 11), "\\Device\\Harddisk88\\Partition11", exists_ntdev, S_IFBLK, true},
1897 {"/dev/sdck12", BRACK(FH_SDCK | 12), "\\Device\\Harddisk88\\Partition12", exists_ntdev, S_IFBLK, true},
1898 {"/dev/sdck13", BRACK(FH_SDCK | 13), "\\Device\\Harddisk88\\Partition13", exists_ntdev, S_IFBLK, true},
1899 {"/dev/sdck14", BRACK(FH_SDCK | 14), "\\Device\\Harddisk88\\Partition14", exists_ntdev, S_IFBLK, true},
1900 {"/dev/sdck15", BRACK(FH_SDCK | 15), "\\Device\\Harddisk88\\Partition15", exists_ntdev, S_IFBLK, true},
1901 {"/dev/sdcl1", BRACK(FH_SDCL | 1), "\\Device\\Harddisk89\\Partition1", exists_ntdev, S_IFBLK, true},
1902 {"/dev/sdcl2", BRACK(FH_SDCL | 2), "\\Device\\Harddisk89\\Partition2", exists_ntdev, S_IFBLK, true},
1903 {"/dev/sdcl3", BRACK(FH_SDCL | 3), "\\Device\\Harddisk89\\Partition3", exists_ntdev, S_IFBLK, true},
1904 {"/dev/sdcl4", BRACK(FH_SDCL | 4), "\\Device\\Harddisk89\\Partition4", exists_ntdev, S_IFBLK, true},
1905 {"/dev/sdcl5", BRACK(FH_SDCL | 5), "\\Device\\Harddisk89\\Partition5", exists_ntdev, S_IFBLK, true},
1906 {"/dev/sdcl6", BRACK(FH_SDCL | 6), "\\Device\\Harddisk89\\Partition6", exists_ntdev, S_IFBLK, true},
1907 {"/dev/sdcl7", BRACK(FH_SDCL | 7), "\\Device\\Harddisk89\\Partition7", exists_ntdev, S_IFBLK, true},
1908 {"/dev/sdcl8", BRACK(FH_SDCL | 8), "\\Device\\Harddisk89\\Partition8", exists_ntdev, S_IFBLK, true},
1909 {"/dev/sdcl9", BRACK(FH_SDCL | 9), "\\Device\\Harddisk89\\Partition9", exists_ntdev, S_IFBLK, true},
1910 {"/dev/sdcl10", BRACK(FH_SDCL | 10), "\\Device\\Harddisk89\\Partition10", exists_ntdev, S_IFBLK, true},
1911 {"/dev/sdcl11", BRACK(FH_SDCL | 11), "\\Device\\Harddisk89\\Partition11", exists_ntdev, S_IFBLK, true},
1912 {"/dev/sdcl12", BRACK(FH_SDCL | 12), "\\Device\\Harddisk89\\Partition12", exists_ntdev, S_IFBLK, true},
1913 {"/dev/sdcl13", BRACK(FH_SDCL | 13), "\\Device\\Harddisk89\\Partition13", exists_ntdev, S_IFBLK, true},
1914 {"/dev/sdcl14", BRACK(FH_SDCL | 14), "\\Device\\Harddisk89\\Partition14", exists_ntdev, S_IFBLK, true},
1915 {"/dev/sdcl15", BRACK(FH_SDCL | 15), "\\Device\\Harddisk89\\Partition15", exists_ntdev, S_IFBLK, true},
1916 {"/dev/sdcm1", BRACK(FH_SDCM | 1), "\\Device\\Harddisk90\\Partition1", exists_ntdev, S_IFBLK, true},
1917 {"/dev/sdcm2", BRACK(FH_SDCM | 2), "\\Device\\Harddisk90\\Partition2", exists_ntdev, S_IFBLK, true},
1918 {"/dev/sdcm3", BRACK(FH_SDCM | 3), "\\Device\\Harddisk90\\Partition3", exists_ntdev, S_IFBLK, true},
1919 {"/dev/sdcm4", BRACK(FH_SDCM | 4), "\\Device\\Harddisk90\\Partition4", exists_ntdev, S_IFBLK, true},
1920 {"/dev/sdcm5", BRACK(FH_SDCM | 5), "\\Device\\Harddisk90\\Partition5", exists_ntdev, S_IFBLK, true},
1921 {"/dev/sdcm6", BRACK(FH_SDCM | 6), "\\Device\\Harddisk90\\Partition6", exists_ntdev, S_IFBLK, true},
1922 {"/dev/sdcm7", BRACK(FH_SDCM | 7), "\\Device\\Harddisk90\\Partition7", exists_ntdev, S_IFBLK, true},
1923 {"/dev/sdcm8", BRACK(FH_SDCM | 8), "\\Device\\Harddisk90\\Partition8", exists_ntdev, S_IFBLK, true},
1924 {"/dev/sdcm9", BRACK(FH_SDCM | 9), "\\Device\\Harddisk90\\Partition9", exists_ntdev, S_IFBLK, true},
1925 {"/dev/sdcm10", BRACK(FH_SDCM | 10), "\\Device\\Harddisk90\\Partition10", exists_ntdev, S_IFBLK, true},
1926 {"/dev/sdcm11", BRACK(FH_SDCM | 11), "\\Device\\Harddisk90\\Partition11", exists_ntdev, S_IFBLK, true},
1927 {"/dev/sdcm12", BRACK(FH_SDCM | 12), "\\Device\\Harddisk90\\Partition12", exists_ntdev, S_IFBLK, true},
1928 {"/dev/sdcm13", BRACK(FH_SDCM | 13), "\\Device\\Harddisk90\\Partition13", exists_ntdev, S_IFBLK, true},
1929 {"/dev/sdcm14", BRACK(FH_SDCM | 14), "\\Device\\Harddisk90\\Partition14", exists_ntdev, S_IFBLK, true},
1930 {"/dev/sdcm15", BRACK(FH_SDCM | 15), "\\Device\\Harddisk90\\Partition15", exists_ntdev, S_IFBLK, true},
1931 {"/dev/sdcn1", BRACK(FH_SDCN | 1), "\\Device\\Harddisk91\\Partition1", exists_ntdev, S_IFBLK, true},
1932 {"/dev/sdcn2", BRACK(FH_SDCN | 2), "\\Device\\Harddisk91\\Partition2", exists_ntdev, S_IFBLK, true},
1933 {"/dev/sdcn3", BRACK(FH_SDCN | 3), "\\Device\\Harddisk91\\Partition3", exists_ntdev, S_IFBLK, true},
1934 {"/dev/sdcn4", BRACK(FH_SDCN | 4), "\\Device\\Harddisk91\\Partition4", exists_ntdev, S_IFBLK, true},
1935 {"/dev/sdcn5", BRACK(FH_SDCN | 5), "\\Device\\Harddisk91\\Partition5", exists_ntdev, S_IFBLK, true},
1936 {"/dev/sdcn6", BRACK(FH_SDCN | 6), "\\Device\\Harddisk91\\Partition6", exists_ntdev, S_IFBLK, true},
1937 {"/dev/sdcn7", BRACK(FH_SDCN | 7), "\\Device\\Harddisk91\\Partition7", exists_ntdev, S_IFBLK, true},
1938 {"/dev/sdcn8", BRACK(FH_SDCN | 8), "\\Device\\Harddisk91\\Partition8", exists_ntdev, S_IFBLK, true},
1939 {"/dev/sdcn9", BRACK(FH_SDCN | 9), "\\Device\\Harddisk91\\Partition9", exists_ntdev, S_IFBLK, true},
1940 {"/dev/sdcn10", BRACK(FH_SDCN | 10), "\\Device\\Harddisk91\\Partition10", exists_ntdev, S_IFBLK, true},
1941 {"/dev/sdcn11", BRACK(FH_SDCN | 11), "\\Device\\Harddisk91\\Partition11", exists_ntdev, S_IFBLK, true},
1942 {"/dev/sdcn12", BRACK(FH_SDCN | 12), "\\Device\\Harddisk91\\Partition12", exists_ntdev, S_IFBLK, true},
1943 {"/dev/sdcn13", BRACK(FH_SDCN | 13), "\\Device\\Harddisk91\\Partition13", exists_ntdev, S_IFBLK, true},
1944 {"/dev/sdcn14", BRACK(FH_SDCN | 14), "\\Device\\Harddisk91\\Partition14", exists_ntdev, S_IFBLK, true},
1945 {"/dev/sdcn15", BRACK(FH_SDCN | 15), "\\Device\\Harddisk91\\Partition15", exists_ntdev, S_IFBLK, true},
1946 {"/dev/sdco1", BRACK(FH_SDCO | 1), "\\Device\\Harddisk92\\Partition1", exists_ntdev, S_IFBLK, true},
1947 {"/dev/sdco2", BRACK(FH_SDCO | 2), "\\Device\\Harddisk92\\Partition2", exists_ntdev, S_IFBLK, true},
1948 {"/dev/sdco3", BRACK(FH_SDCO | 3), "\\Device\\Harddisk92\\Partition3", exists_ntdev, S_IFBLK, true},
1949 {"/dev/sdco4", BRACK(FH_SDCO | 4), "\\Device\\Harddisk92\\Partition4", exists_ntdev, S_IFBLK, true},
1950 {"/dev/sdco5", BRACK(FH_SDCO | 5), "\\Device\\Harddisk92\\Partition5", exists_ntdev, S_IFBLK, true},
1951 {"/dev/sdco6", BRACK(FH_SDCO | 6), "\\Device\\Harddisk92\\Partition6", exists_ntdev, S_IFBLK, true},
1952 {"/dev/sdco7", BRACK(FH_SDCO | 7), "\\Device\\Harddisk92\\Partition7", exists_ntdev, S_IFBLK, true},
1953 {"/dev/sdco8", BRACK(FH_SDCO | 8), "\\Device\\Harddisk92\\Partition8", exists_ntdev, S_IFBLK, true},
1954 {"/dev/sdco9", BRACK(FH_SDCO | 9), "\\Device\\Harddisk92\\Partition9", exists_ntdev, S_IFBLK, true},
1955 {"/dev/sdco10", BRACK(FH_SDCO | 10), "\\Device\\Harddisk92\\Partition10", exists_ntdev, S_IFBLK, true},
1956 {"/dev/sdco11", BRACK(FH_SDCO | 11), "\\Device\\Harddisk92\\Partition11", exists_ntdev, S_IFBLK, true},
1957 {"/dev/sdco12", BRACK(FH_SDCO | 12), "\\Device\\Harddisk92\\Partition12", exists_ntdev, S_IFBLK, true},
1958 {"/dev/sdco13", BRACK(FH_SDCO | 13), "\\Device\\Harddisk92\\Partition13", exists_ntdev, S_IFBLK, true},
1959 {"/dev/sdco14", BRACK(FH_SDCO | 14), "\\Device\\Harddisk92\\Partition14", exists_ntdev, S_IFBLK, true},
1960 {"/dev/sdco15", BRACK(FH_SDCO | 15), "\\Device\\Harddisk92\\Partition15", exists_ntdev, S_IFBLK, true},
1961 {"/dev/sdcp1", BRACK(FH_SDCP | 1), "\\Device\\Harddisk93\\Partition1", exists_ntdev, S_IFBLK, true},
1962 {"/dev/sdcp2", BRACK(FH_SDCP | 2), "\\Device\\Harddisk93\\Partition2", exists_ntdev, S_IFBLK, true},
1963 {"/dev/sdcp3", BRACK(FH_SDCP | 3), "\\Device\\Harddisk93\\Partition3", exists_ntdev, S_IFBLK, true},
1964 {"/dev/sdcp4", BRACK(FH_SDCP | 4), "\\Device\\Harddisk93\\Partition4", exists_ntdev, S_IFBLK, true},
1965 {"/dev/sdcp5", BRACK(FH_SDCP | 5), "\\Device\\Harddisk93\\Partition5", exists_ntdev, S_IFBLK, true},
1966 {"/dev/sdcp6", BRACK(FH_SDCP | 6), "\\Device\\Harddisk93\\Partition6", exists_ntdev, S_IFBLK, true},
1967 {"/dev/sdcp7", BRACK(FH_SDCP | 7), "\\Device\\Harddisk93\\Partition7", exists_ntdev, S_IFBLK, true},
1968 {"/dev/sdcp8", BRACK(FH_SDCP | 8), "\\Device\\Harddisk93\\Partition8", exists_ntdev, S_IFBLK, true},
1969 {"/dev/sdcp9", BRACK(FH_SDCP | 9), "\\Device\\Harddisk93\\Partition9", exists_ntdev, S_IFBLK, true},
1970 {"/dev/sdcp10", BRACK(FH_SDCP | 10), "\\Device\\Harddisk93\\Partition10", exists_ntdev, S_IFBLK, true},
1971 {"/dev/sdcp11", BRACK(FH_SDCP | 11), "\\Device\\Harddisk93\\Partition11", exists_ntdev, S_IFBLK, true},
1972 {"/dev/sdcp12", BRACK(FH_SDCP | 12), "\\Device\\Harddisk93\\Partition12", exists_ntdev, S_IFBLK, true},
1973 {"/dev/sdcp13", BRACK(FH_SDCP | 13), "\\Device\\Harddisk93\\Partition13", exists_ntdev, S_IFBLK, true},
1974 {"/dev/sdcp14", BRACK(FH_SDCP | 14), "\\Device\\Harddisk93\\Partition14", exists_ntdev, S_IFBLK, true},
1975 {"/dev/sdcp15", BRACK(FH_SDCP | 15), "\\Device\\Harddisk93\\Partition15", exists_ntdev, S_IFBLK, true},
1976 {"/dev/sdcq1", BRACK(FH_SDCQ | 1), "\\Device\\Harddisk94\\Partition1", exists_ntdev, S_IFBLK, true},
1977 {"/dev/sdcq2", BRACK(FH_SDCQ | 2), "\\Device\\Harddisk94\\Partition2", exists_ntdev, S_IFBLK, true},
1978 {"/dev/sdcq3", BRACK(FH_SDCQ | 3), "\\Device\\Harddisk94\\Partition3", exists_ntdev, S_IFBLK, true},
1979 {"/dev/sdcq4", BRACK(FH_SDCQ | 4), "\\Device\\Harddisk94\\Partition4", exists_ntdev, S_IFBLK, true},
1980 {"/dev/sdcq5", BRACK(FH_SDCQ | 5), "\\Device\\Harddisk94\\Partition5", exists_ntdev, S_IFBLK, true},
1981 {"/dev/sdcq6", BRACK(FH_SDCQ | 6), "\\Device\\Harddisk94\\Partition6", exists_ntdev, S_IFBLK, true},
1982 {"/dev/sdcq7", BRACK(FH_SDCQ | 7), "\\Device\\Harddisk94\\Partition7", exists_ntdev, S_IFBLK, true},
1983 {"/dev/sdcq8", BRACK(FH_SDCQ | 8), "\\Device\\Harddisk94\\Partition8", exists_ntdev, S_IFBLK, true},
1984 {"/dev/sdcq9", BRACK(FH_SDCQ | 9), "\\Device\\Harddisk94\\Partition9", exists_ntdev, S_IFBLK, true},
1985 {"/dev/sdcq10", BRACK(FH_SDCQ | 10), "\\Device\\Harddisk94\\Partition10", exists_ntdev, S_IFBLK, true},
1986 {"/dev/sdcq11", BRACK(FH_SDCQ | 11), "\\Device\\Harddisk94\\Partition11", exists_ntdev, S_IFBLK, true},
1987 {"/dev/sdcq12", BRACK(FH_SDCQ | 12), "\\Device\\Harddisk94\\Partition12", exists_ntdev, S_IFBLK, true},
1988 {"/dev/sdcq13", BRACK(FH_SDCQ | 13), "\\Device\\Harddisk94\\Partition13", exists_ntdev, S_IFBLK, true},
1989 {"/dev/sdcq14", BRACK(FH_SDCQ | 14), "\\Device\\Harddisk94\\Partition14", exists_ntdev, S_IFBLK, true},
1990 {"/dev/sdcq15", BRACK(FH_SDCQ | 15), "\\Device\\Harddisk94\\Partition15", exists_ntdev, S_IFBLK, true},
1991 {"/dev/sdcr1", BRACK(FH_SDCR | 1), "\\Device\\Harddisk95\\Partition1", exists_ntdev, S_IFBLK, true},
1992 {"/dev/sdcr2", BRACK(FH_SDCR | 2), "\\Device\\Harddisk95\\Partition2", exists_ntdev, S_IFBLK, true},
1993 {"/dev/sdcr3", BRACK(FH_SDCR | 3), "\\Device\\Harddisk95\\Partition3", exists_ntdev, S_IFBLK, true},
1994 {"/dev/sdcr4", BRACK(FH_SDCR | 4), "\\Device\\Harddisk95\\Partition4", exists_ntdev, S_IFBLK, true},
1995 {"/dev/sdcr5", BRACK(FH_SDCR | 5), "\\Device\\Harddisk95\\Partition5", exists_ntdev, S_IFBLK, true},
1996 {"/dev/sdcr6", BRACK(FH_SDCR | 6), "\\Device\\Harddisk95\\Partition6", exists_ntdev, S_IFBLK, true},
1997 {"/dev/sdcr7", BRACK(FH_SDCR | 7), "\\Device\\Harddisk95\\Partition7", exists_ntdev, S_IFBLK, true},
1998 {"/dev/sdcr8", BRACK(FH_SDCR | 8), "\\Device\\Harddisk95\\Partition8", exists_ntdev, S_IFBLK, true},
1999 {"/dev/sdcr9", BRACK(FH_SDCR | 9), "\\Device\\Harddisk95\\Partition9", exists_ntdev, S_IFBLK, true},
2000 {"/dev/sdcr10", BRACK(FH_SDCR | 10), "\\Device\\Harddisk95\\Partition10", exists_ntdev, S_IFBLK, true},
2001 {"/dev/sdcr11", BRACK(FH_SDCR | 11), "\\Device\\Harddisk95\\Partition11", exists_ntdev, S_IFBLK, true},
2002 {"/dev/sdcr12", BRACK(FH_SDCR | 12), "\\Device\\Harddisk95\\Partition12", exists_ntdev, S_IFBLK, true},
2003 {"/dev/sdcr13", BRACK(FH_SDCR | 13), "\\Device\\Harddisk95\\Partition13", exists_ntdev, S_IFBLK, true},
2004 {"/dev/sdcr14", BRACK(FH_SDCR | 14), "\\Device\\Harddisk95\\Partition14", exists_ntdev, S_IFBLK, true},
2005 {"/dev/sdcr15", BRACK(FH_SDCR | 15), "\\Device\\Harddisk95\\Partition15", exists_ntdev, S_IFBLK, true},
2006 {"/dev/sdcs1", BRACK(FH_SDCS | 1), "\\Device\\Harddisk96\\Partition1", exists_ntdev, S_IFBLK, true},
2007 {"/dev/sdcs2", BRACK(FH_SDCS | 2), "\\Device\\Harddisk96\\Partition2", exists_ntdev, S_IFBLK, true},
2008 {"/dev/sdcs3", BRACK(FH_SDCS | 3), "\\Device\\Harddisk96\\Partition3", exists_ntdev, S_IFBLK, true},
2009 {"/dev/sdcs4", BRACK(FH_SDCS | 4), "\\Device\\Harddisk96\\Partition4", exists_ntdev, S_IFBLK, true},
2010 {"/dev/sdcs5", BRACK(FH_SDCS | 5), "\\Device\\Harddisk96\\Partition5", exists_ntdev, S_IFBLK, true},
2011 {"/dev/sdcs6", BRACK(FH_SDCS | 6), "\\Device\\Harddisk96\\Partition6", exists_ntdev, S_IFBLK, true},
2012 {"/dev/sdcs7", BRACK(FH_SDCS | 7), "\\Device\\Harddisk96\\Partition7", exists_ntdev, S_IFBLK, true},
2013 {"/dev/sdcs8", BRACK(FH_SDCS | 8), "\\Device\\Harddisk96\\Partition8", exists_ntdev, S_IFBLK, true},
2014 {"/dev/sdcs9", BRACK(FH_SDCS | 9), "\\Device\\Harddisk96\\Partition9", exists_ntdev, S_IFBLK, true},
2015 {"/dev/sdcs10", BRACK(FH_SDCS | 10), "\\Device\\Harddisk96\\Partition10", exists_ntdev, S_IFBLK, true},
2016 {"/dev/sdcs11", BRACK(FH_SDCS | 11), "\\Device\\Harddisk96\\Partition11", exists_ntdev, S_IFBLK, true},
2017 {"/dev/sdcs12", BRACK(FH_SDCS | 12), "\\Device\\Harddisk96\\Partition12", exists_ntdev, S_IFBLK, true},
2018 {"/dev/sdcs13", BRACK(FH_SDCS | 13), "\\Device\\Harddisk96\\Partition13", exists_ntdev, S_IFBLK, true},
2019 {"/dev/sdcs14", BRACK(FH_SDCS | 14), "\\Device\\Harddisk96\\Partition14", exists_ntdev, S_IFBLK, true},
2020 {"/dev/sdcs15", BRACK(FH_SDCS | 15), "\\Device\\Harddisk96\\Partition15", exists_ntdev, S_IFBLK, true},
2021 {"/dev/sdct1", BRACK(FH_SDCT | 1), "\\Device\\Harddisk97\\Partition1", exists_ntdev, S_IFBLK, true},
2022 {"/dev/sdct2", BRACK(FH_SDCT | 2), "\\Device\\Harddisk97\\Partition2", exists_ntdev, S_IFBLK, true},
2023 {"/dev/sdct3", BRACK(FH_SDCT | 3), "\\Device\\Harddisk97\\Partition3", exists_ntdev, S_IFBLK, true},
2024 {"/dev/sdct4", BRACK(FH_SDCT | 4), "\\Device\\Harddisk97\\Partition4", exists_ntdev, S_IFBLK, true},
2025 {"/dev/sdct5", BRACK(FH_SDCT | 5), "\\Device\\Harddisk97\\Partition5", exists_ntdev, S_IFBLK, true},
2026 {"/dev/sdct6", BRACK(FH_SDCT | 6), "\\Device\\Harddisk97\\Partition6", exists_ntdev, S_IFBLK, true},
2027 {"/dev/sdct7", BRACK(FH_SDCT | 7), "\\Device\\Harddisk97\\Partition7", exists_ntdev, S_IFBLK, true},
2028 {"/dev/sdct8", BRACK(FH_SDCT | 8), "\\Device\\Harddisk97\\Partition8", exists_ntdev, S_IFBLK, true},
2029 {"/dev/sdct9", BRACK(FH_SDCT | 9), "\\Device\\Harddisk97\\Partition9", exists_ntdev, S_IFBLK, true},
2030 {"/dev/sdct10", BRACK(FH_SDCT | 10), "\\Device\\Harddisk97\\Partition10", exists_ntdev, S_IFBLK, true},
2031 {"/dev/sdct11", BRACK(FH_SDCT | 11), "\\Device\\Harddisk97\\Partition11", exists_ntdev, S_IFBLK, true},
2032 {"/dev/sdct12", BRACK(FH_SDCT | 12), "\\Device\\Harddisk97\\Partition12", exists_ntdev, S_IFBLK, true},
2033 {"/dev/sdct13", BRACK(FH_SDCT | 13), "\\Device\\Harddisk97\\Partition13", exists_ntdev, S_IFBLK, true},
2034 {"/dev/sdct14", BRACK(FH_SDCT | 14), "\\Device\\Harddisk97\\Partition14", exists_ntdev, S_IFBLK, true},
2035 {"/dev/sdct15", BRACK(FH_SDCT | 15), "\\Device\\Harddisk97\\Partition15", exists_ntdev, S_IFBLK, true},
2036 {"/dev/sdcu1", BRACK(FH_SDCU | 1), "\\Device\\Harddisk98\\Partition1", exists_ntdev, S_IFBLK, true},
2037 {"/dev/sdcu2", BRACK(FH_SDCU | 2), "\\Device\\Harddisk98\\Partition2", exists_ntdev, S_IFBLK, true},
2038 {"/dev/sdcu3", BRACK(FH_SDCU | 3), "\\Device\\Harddisk98\\Partition3", exists_ntdev, S_IFBLK, true},
2039 {"/dev/sdcu4", BRACK(FH_SDCU | 4), "\\Device\\Harddisk98\\Partition4", exists_ntdev, S_IFBLK, true},
2040 {"/dev/sdcu5", BRACK(FH_SDCU | 5), "\\Device\\Harddisk98\\Partition5", exists_ntdev, S_IFBLK, true},
2041 {"/dev/sdcu6", BRACK(FH_SDCU | 6), "\\Device\\Harddisk98\\Partition6", exists_ntdev, S_IFBLK, true},
2042 {"/dev/sdcu7", BRACK(FH_SDCU | 7), "\\Device\\Harddisk98\\Partition7", exists_ntdev, S_IFBLK, true},
2043 {"/dev/sdcu8", BRACK(FH_SDCU | 8), "\\Device\\Harddisk98\\Partition8", exists_ntdev, S_IFBLK, true},
2044 {"/dev/sdcu9", BRACK(FH_SDCU | 9), "\\Device\\Harddisk98\\Partition9", exists_ntdev, S_IFBLK, true},
2045 {"/dev/sdcu10", BRACK(FH_SDCU | 10), "\\Device\\Harddisk98\\Partition10", exists_ntdev, S_IFBLK, true},
2046 {"/dev/sdcu11", BRACK(FH_SDCU | 11), "\\Device\\Harddisk98\\Partition11", exists_ntdev, S_IFBLK, true},
2047 {"/dev/sdcu12", BRACK(FH_SDCU | 12), "\\Device\\Harddisk98\\Partition12", exists_ntdev, S_IFBLK, true},
2048 {"/dev/sdcu13", BRACK(FH_SDCU | 13), "\\Device\\Harddisk98\\Partition13", exists_ntdev, S_IFBLK, true},
2049 {"/dev/sdcu14", BRACK(FH_SDCU | 14), "\\Device\\Harddisk98\\Partition14", exists_ntdev, S_IFBLK, true},
2050 {"/dev/sdcu15", BRACK(FH_SDCU | 15), "\\Device\\Harddisk98\\Partition15", exists_ntdev, S_IFBLK, true},
2051 {"/dev/sdcv1", BRACK(FH_SDCV | 1), "\\Device\\Harddisk99\\Partition1", exists_ntdev, S_IFBLK, true},
2052 {"/dev/sdcv2", BRACK(FH_SDCV | 2), "\\Device\\Harddisk99\\Partition2", exists_ntdev, S_IFBLK, true},
2053 {"/dev/sdcv3", BRACK(FH_SDCV | 3), "\\Device\\Harddisk99\\Partition3", exists_ntdev, S_IFBLK, true},
2054 {"/dev/sdcv4", BRACK(FH_SDCV | 4), "\\Device\\Harddisk99\\Partition4", exists_ntdev, S_IFBLK, true},
2055 {"/dev/sdcv5", BRACK(FH_SDCV | 5), "\\Device\\Harddisk99\\Partition5", exists_ntdev, S_IFBLK, true},
2056 {"/dev/sdcv6", BRACK(FH_SDCV | 6), "\\Device\\Harddisk99\\Partition6", exists_ntdev, S_IFBLK, true},
2057 {"/dev/sdcv7", BRACK(FH_SDCV | 7), "\\Device\\Harddisk99\\Partition7", exists_ntdev, S_IFBLK, true},
2058 {"/dev/sdcv8", BRACK(FH_SDCV | 8), "\\Device\\Harddisk99\\Partition8", exists_ntdev, S_IFBLK, true},
2059 {"/dev/sdcv9", BRACK(FH_SDCV | 9), "\\Device\\Harddisk99\\Partition9", exists_ntdev, S_IFBLK, true},
2060 {"/dev/sdcv10", BRACK(FH_SDCV | 10), "\\Device\\Harddisk99\\Partition10", exists_ntdev, S_IFBLK, true},
2061 {"/dev/sdcv11", BRACK(FH_SDCV | 11), "\\Device\\Harddisk99\\Partition11", exists_ntdev, S_IFBLK, true},
2062 {"/dev/sdcv12", BRACK(FH_SDCV | 12), "\\Device\\Harddisk99\\Partition12", exists_ntdev, S_IFBLK, true},
2063 {"/dev/sdcv13", BRACK(FH_SDCV | 13), "\\Device\\Harddisk99\\Partition13", exists_ntdev, S_IFBLK, true},
2064 {"/dev/sdcv14", BRACK(FH_SDCV | 14), "\\Device\\Harddisk99\\Partition14", exists_ntdev, S_IFBLK, true},
2065 {"/dev/sdcv15", BRACK(FH_SDCV | 15), "\\Device\\Harddisk99\\Partition15", exists_ntdev, S_IFBLK, true},
2066 {"/dev/sdcw1", BRACK(FH_SDCW | 1), "\\Device\\Harddisk100\\Partition1", exists_ntdev, S_IFBLK, true},
2067 {"/dev/sdcw2", BRACK(FH_SDCW | 2), "\\Device\\Harddisk100\\Partition2", exists_ntdev, S_IFBLK, true},
2068 {"/dev/sdcw3", BRACK(FH_SDCW | 3), "\\Device\\Harddisk100\\Partition3", exists_ntdev, S_IFBLK, true},
2069 {"/dev/sdcw4", BRACK(FH_SDCW | 4), "\\Device\\Harddisk100\\Partition4", exists_ntdev, S_IFBLK, true},
2070 {"/dev/sdcw5", BRACK(FH_SDCW | 5), "\\Device\\Harddisk100\\Partition5", exists_ntdev, S_IFBLK, true},
2071 {"/dev/sdcw6", BRACK(FH_SDCW | 6), "\\Device\\Harddisk100\\Partition6", exists_ntdev, S_IFBLK, true},
2072 {"/dev/sdcw7", BRACK(FH_SDCW | 7), "\\Device\\Harddisk100\\Partition7", exists_ntdev, S_IFBLK, true},
2073 {"/dev/sdcw8", BRACK(FH_SDCW | 8), "\\Device\\Harddisk100\\Partition8", exists_ntdev, S_IFBLK, true},
2074 {"/dev/sdcw9", BRACK(FH_SDCW | 9), "\\Device\\Harddisk100\\Partition9", exists_ntdev, S_IFBLK, true},
2075 {"/dev/sdcw10", BRACK(FH_SDCW | 10), "\\Device\\Harddisk100\\Partition10", exists_ntdev, S_IFBLK, true},
2076 {"/dev/sdcw11", BRACK(FH_SDCW | 11), "\\Device\\Harddisk100\\Partition11", exists_ntdev, S_IFBLK, true},
2077 {"/dev/sdcw12", BRACK(FH_SDCW | 12), "\\Device\\Harddisk100\\Partition12", exists_ntdev, S_IFBLK, true},
2078 {"/dev/sdcw13", BRACK(FH_SDCW | 13), "\\Device\\Harddisk100\\Partition13", exists_ntdev, S_IFBLK, true},
2079 {"/dev/sdcw14", BRACK(FH_SDCW | 14), "\\Device\\Harddisk100\\Partition14", exists_ntdev, S_IFBLK, true},
2080 {"/dev/sdcw15", BRACK(FH_SDCW | 15), "\\Device\\Harddisk100\\Partition15", exists_ntdev, S_IFBLK, true},
2081 {"/dev/sdcx1", BRACK(FH_SDCX | 1), "\\Device\\Harddisk101\\Partition1", exists_ntdev, S_IFBLK, true},
2082 {"/dev/sdcx2", BRACK(FH_SDCX | 2), "\\Device\\Harddisk101\\Partition2", exists_ntdev, S_IFBLK, true},
2083 {"/dev/sdcx3", BRACK(FH_SDCX | 3), "\\Device\\Harddisk101\\Partition3", exists_ntdev, S_IFBLK, true},
2084 {"/dev/sdcx4", BRACK(FH_SDCX | 4), "\\Device\\Harddisk101\\Partition4", exists_ntdev, S_IFBLK, true},
2085 {"/dev/sdcx5", BRACK(FH_SDCX | 5), "\\Device\\Harddisk101\\Partition5", exists_ntdev, S_IFBLK, true},
2086 {"/dev/sdcx6", BRACK(FH_SDCX | 6), "\\Device\\Harddisk101\\Partition6", exists_ntdev, S_IFBLK, true},
2087 {"/dev/sdcx7", BRACK(FH_SDCX | 7), "\\Device\\Harddisk101\\Partition7", exists_ntdev, S_IFBLK, true},
2088 {"/dev/sdcx8", BRACK(FH_SDCX | 8), "\\Device\\Harddisk101\\Partition8", exists_ntdev, S_IFBLK, true},
2089 {"/dev/sdcx9", BRACK(FH_SDCX | 9), "\\Device\\Harddisk101\\Partition9", exists_ntdev, S_IFBLK, true},
2090 {"/dev/sdcx10", BRACK(FH_SDCX | 10), "\\Device\\Harddisk101\\Partition10", exists_ntdev, S_IFBLK, true},
2091 {"/dev/sdcx11", BRACK(FH_SDCX | 11), "\\Device\\Harddisk101\\Partition11", exists_ntdev, S_IFBLK, true},
2092 {"/dev/sdcx12", BRACK(FH_SDCX | 12), "\\Device\\Harddisk101\\Partition12", exists_ntdev, S_IFBLK, true},
2093 {"/dev/sdcx13", BRACK(FH_SDCX | 13), "\\Device\\Harddisk101\\Partition13", exists_ntdev, S_IFBLK, true},
2094 {"/dev/sdcx14", BRACK(FH_SDCX | 14), "\\Device\\Harddisk101\\Partition14", exists_ntdev, S_IFBLK, true},
2095 {"/dev/sdcx15", BRACK(FH_SDCX | 15), "\\Device\\Harddisk101\\Partition15", exists_ntdev, S_IFBLK, true},
2096 {"/dev/sdcy1", BRACK(FH_SDCY | 1), "\\Device\\Harddisk102\\Partition1", exists_ntdev, S_IFBLK, true},
2097 {"/dev/sdcy2", BRACK(FH_SDCY | 2), "\\Device\\Harddisk102\\Partition2", exists_ntdev, S_IFBLK, true},
2098 {"/dev/sdcy3", BRACK(FH_SDCY | 3), "\\Device\\Harddisk102\\Partition3", exists_ntdev, S_IFBLK, true},
2099 {"/dev/sdcy4", BRACK(FH_SDCY | 4), "\\Device\\Harddisk102\\Partition4", exists_ntdev, S_IFBLK, true},
2100 {"/dev/sdcy5", BRACK(FH_SDCY | 5), "\\Device\\Harddisk102\\Partition5", exists_ntdev, S_IFBLK, true},
2101 {"/dev/sdcy6", BRACK(FH_SDCY | 6), "\\Device\\Harddisk102\\Partition6", exists_ntdev, S_IFBLK, true},
2102 {"/dev/sdcy7", BRACK(FH_SDCY | 7), "\\Device\\Harddisk102\\Partition7", exists_ntdev, S_IFBLK, true},
2103 {"/dev/sdcy8", BRACK(FH_SDCY | 8), "\\Device\\Harddisk102\\Partition8", exists_ntdev, S_IFBLK, true},
2104 {"/dev/sdcy9", BRACK(FH_SDCY | 9), "\\Device\\Harddisk102\\Partition9", exists_ntdev, S_IFBLK, true},
2105 {"/dev/sdcy10", BRACK(FH_SDCY | 10), "\\Device\\Harddisk102\\Partition10", exists_ntdev, S_IFBLK, true},
2106 {"/dev/sdcy11", BRACK(FH_SDCY | 11), "\\Device\\Harddisk102\\Partition11", exists_ntdev, S_IFBLK, true},
2107 {"/dev/sdcy12", BRACK(FH_SDCY | 12), "\\Device\\Harddisk102\\Partition12", exists_ntdev, S_IFBLK, true},
2108 {"/dev/sdcy13", BRACK(FH_SDCY | 13), "\\Device\\Harddisk102\\Partition13", exists_ntdev, S_IFBLK, true},
2109 {"/dev/sdcy14", BRACK(FH_SDCY | 14), "\\Device\\Harddisk102\\Partition14", exists_ntdev, S_IFBLK, true},
2110 {"/dev/sdcy15", BRACK(FH_SDCY | 15), "\\Device\\Harddisk102\\Partition15", exists_ntdev, S_IFBLK, true},
2111 {"/dev/sdcz1", BRACK(FH_SDCZ | 1), "\\Device\\Harddisk103\\Partition1", exists_ntdev, S_IFBLK, true},
2112 {"/dev/sdcz2", BRACK(FH_SDCZ | 2), "\\Device\\Harddisk103\\Partition2", exists_ntdev, S_IFBLK, true},
2113 {"/dev/sdcz3", BRACK(FH_SDCZ | 3), "\\Device\\Harddisk103\\Partition3", exists_ntdev, S_IFBLK, true},
2114 {"/dev/sdcz4", BRACK(FH_SDCZ | 4), "\\Device\\Harddisk103\\Partition4", exists_ntdev, S_IFBLK, true},
2115 {"/dev/sdcz5", BRACK(FH_SDCZ | 5), "\\Device\\Harddisk103\\Partition5", exists_ntdev, S_IFBLK, true},
2116 {"/dev/sdcz6", BRACK(FH_SDCZ | 6), "\\Device\\Harddisk103\\Partition6", exists_ntdev, S_IFBLK, true},
2117 {"/dev/sdcz7", BRACK(FH_SDCZ | 7), "\\Device\\Harddisk103\\Partition7", exists_ntdev, S_IFBLK, true},
2118 {"/dev/sdcz8", BRACK(FH_SDCZ | 8), "\\Device\\Harddisk103\\Partition8", exists_ntdev, S_IFBLK, true},
2119 {"/dev/sdcz9", BRACK(FH_SDCZ | 9), "\\Device\\Harddisk103\\Partition9", exists_ntdev, S_IFBLK, true},
2120 {"/dev/sdcz10", BRACK(FH_SDCZ | 10), "\\Device\\Harddisk103\\Partition10", exists_ntdev, S_IFBLK, true},
2121 {"/dev/sdcz11", BRACK(FH_SDCZ | 11), "\\Device\\Harddisk103\\Partition11", exists_ntdev, S_IFBLK, true},
2122 {"/dev/sdcz12", BRACK(FH_SDCZ | 12), "\\Device\\Harddisk103\\Partition12", exists_ntdev, S_IFBLK, true},
2123 {"/dev/sdcz13", BRACK(FH_SDCZ | 13), "\\Device\\Harddisk103\\Partition13", exists_ntdev, S_IFBLK, true},
2124 {"/dev/sdcz14", BRACK(FH_SDCZ | 14), "\\Device\\Harddisk103\\Partition14", exists_ntdev, S_IFBLK, true},
2125 {"/dev/sdcz15", BRACK(FH_SDCZ | 15), "\\Device\\Harddisk103\\Partition15", exists_ntdev, S_IFBLK, true},
2126 {"/dev/sdda", BRACK(FH_SDDA), "\\Device\\Harddisk104\\Partition0", exists_ntdev, S_IFBLK, true},
2127 {"/dev/sddb", BRACK(FH_SDDB), "\\Device\\Harddisk105\\Partition0", exists_ntdev, S_IFBLK, true},
2128 {"/dev/sddc", BRACK(FH_SDDC), "\\Device\\Harddisk106\\Partition0", exists_ntdev, S_IFBLK, true},
2129 {"/dev/sddd", BRACK(FH_SDDD), "\\Device\\Harddisk107\\Partition0", exists_ntdev, S_IFBLK, true},
2130 {"/dev/sdde", BRACK(FH_SDDE), "\\Device\\Harddisk108\\Partition0", exists_ntdev, S_IFBLK, true},
2131 {"/dev/sddf", BRACK(FH_SDDF), "\\Device\\Harddisk109\\Partition0", exists_ntdev, S_IFBLK, true},
2132 {"/dev/sddg", BRACK(FH_SDDG), "\\Device\\Harddisk110\\Partition0", exists_ntdev, S_IFBLK, true},
2133 {"/dev/sddh", BRACK(FH_SDDH), "\\Device\\Harddisk111\\Partition0", exists_ntdev, S_IFBLK, true},
2134 {"/dev/sddi", BRACK(FH_SDDI), "\\Device\\Harddisk112\\Partition0", exists_ntdev, S_IFBLK, true},
2135 {"/dev/sddj", BRACK(FH_SDDJ), "\\Device\\Harddisk113\\Partition0", exists_ntdev, S_IFBLK, true},
2136 {"/dev/sddk", BRACK(FH_SDDK), "\\Device\\Harddisk114\\Partition0", exists_ntdev, S_IFBLK, true},
2137 {"/dev/sddl", BRACK(FH_SDDL), "\\Device\\Harddisk115\\Partition0", exists_ntdev, S_IFBLK, true},
2138 {"/dev/sddm", BRACK(FH_SDDM), "\\Device\\Harddisk116\\Partition0", exists_ntdev, S_IFBLK, true},
2139 {"/dev/sddn", BRACK(FH_SDDN), "\\Device\\Harddisk117\\Partition0", exists_ntdev, S_IFBLK, true},
2140 {"/dev/sddo", BRACK(FH_SDDO), "\\Device\\Harddisk118\\Partition0", exists_ntdev, S_IFBLK, true},
2141 {"/dev/sddp", BRACK(FH_SDDP), "\\Device\\Harddisk119\\Partition0", exists_ntdev, S_IFBLK, true},
2142 {"/dev/sddq", BRACK(FH_SDDQ), "\\Device\\Harddisk120\\Partition0", exists_ntdev, S_IFBLK, true},
2143 {"/dev/sddr", BRACK(FH_SDDR), "\\Device\\Harddisk121\\Partition0", exists_ntdev, S_IFBLK, true},
2144 {"/dev/sdds", BRACK(FH_SDDS), "\\Device\\Harddisk122\\Partition0", exists_ntdev, S_IFBLK, true},
2145 {"/dev/sddt", BRACK(FH_SDDT), "\\Device\\Harddisk123\\Partition0", exists_ntdev, S_IFBLK, true},
2146 {"/dev/sddu", BRACK(FH_SDDU), "\\Device\\Harddisk124\\Partition0", exists_ntdev, S_IFBLK, true},
2147 {"/dev/sddv", BRACK(FH_SDDV), "\\Device\\Harddisk125\\Partition0", exists_ntdev, S_IFBLK, true},
2148 {"/dev/sddw", BRACK(FH_SDDW), "\\Device\\Harddisk126\\Partition0", exists_ntdev, S_IFBLK, true},
2149 {"/dev/sddx", BRACK(FH_SDDX), "\\Device\\Harddisk127\\Partition0", exists_ntdev, S_IFBLK, true},
2150 {"/dev/sdda1", BRACK(FH_SDDA | 1), "\\Device\\Harddisk104\\Partition1", exists_ntdev, S_IFBLK, true},
2151 {"/dev/sdda2", BRACK(FH_SDDA | 2), "\\Device\\Harddisk104\\Partition2", exists_ntdev, S_IFBLK, true},
2152 {"/dev/sdda3", BRACK(FH_SDDA | 3), "\\Device\\Harddisk104\\Partition3", exists_ntdev, S_IFBLK, true},
2153 {"/dev/sdda4", BRACK(FH_SDDA | 4), "\\Device\\Harddisk104\\Partition4", exists_ntdev, S_IFBLK, true},
2154 {"/dev/sdda5", BRACK(FH_SDDA | 5), "\\Device\\Harddisk104\\Partition5", exists_ntdev, S_IFBLK, true},
2155 {"/dev/sdda6", BRACK(FH_SDDA | 6), "\\Device\\Harddisk104\\Partition6", exists_ntdev, S_IFBLK, true},
2156 {"/dev/sdda7", BRACK(FH_SDDA | 7), "\\Device\\Harddisk104\\Partition7", exists_ntdev, S_IFBLK, true},
2157 {"/dev/sdda8", BRACK(FH_SDDA | 8), "\\Device\\Harddisk104\\Partition8", exists_ntdev, S_IFBLK, true},
2158 {"/dev/sdda9", BRACK(FH_SDDA | 9), "\\Device\\Harddisk104\\Partition9", exists_ntdev, S_IFBLK, true},
2159 {"/dev/sdda10", BRACK(FH_SDDA | 10), "\\Device\\Harddisk104\\Partition10", exists_ntdev, S_IFBLK, true},
2160 {"/dev/sdda11", BRACK(FH_SDDA | 11), "\\Device\\Harddisk104\\Partition11", exists_ntdev, S_IFBLK, true},
2161 {"/dev/sdda12", BRACK(FH_SDDA | 12), "\\Device\\Harddisk104\\Partition12", exists_ntdev, S_IFBLK, true},
2162 {"/dev/sdda13", BRACK(FH_SDDA | 13), "\\Device\\Harddisk104\\Partition13", exists_ntdev, S_IFBLK, true},
2163 {"/dev/sdda14", BRACK(FH_SDDA | 14), "\\Device\\Harddisk104\\Partition14", exists_ntdev, S_IFBLK, true},
2164 {"/dev/sdda15", BRACK(FH_SDDA | 15), "\\Device\\Harddisk104\\Partition15", exists_ntdev, S_IFBLK, true},
2165 {"/dev/sddb1", BRACK(FH_SDDB | 1), "\\Device\\Harddisk105\\Partition1", exists_ntdev, S_IFBLK, true},
2166 {"/dev/sddb2", BRACK(FH_SDDB | 2), "\\Device\\Harddisk105\\Partition2", exists_ntdev, S_IFBLK, true},
2167 {"/dev/sddb3", BRACK(FH_SDDB | 3), "\\Device\\Harddisk105\\Partition3", exists_ntdev, S_IFBLK, true},
2168 {"/dev/sddb4", BRACK(FH_SDDB | 4), "\\Device\\Harddisk105\\Partition4", exists_ntdev, S_IFBLK, true},
2169 {"/dev/sddb5", BRACK(FH_SDDB | 5), "\\Device\\Harddisk105\\Partition5", exists_ntdev, S_IFBLK, true},
2170 {"/dev/sddb6", BRACK(FH_SDDB | 6), "\\Device\\Harddisk105\\Partition6", exists_ntdev, S_IFBLK, true},
2171 {"/dev/sddb7", BRACK(FH_SDDB | 7), "\\Device\\Harddisk105\\Partition7", exists_ntdev, S_IFBLK, true},
2172 {"/dev/sddb8", BRACK(FH_SDDB | 8), "\\Device\\Harddisk105\\Partition8", exists_ntdev, S_IFBLK, true},
2173 {"/dev/sddb9", BRACK(FH_SDDB | 9), "\\Device\\Harddisk105\\Partition9", exists_ntdev, S_IFBLK, true},
2174 {"/dev/sddb10", BRACK(FH_SDDB | 10), "\\Device\\Harddisk105\\Partition10", exists_ntdev, S_IFBLK, true},
2175 {"/dev/sddb11", BRACK(FH_SDDB | 11), "\\Device\\Harddisk105\\Partition11", exists_ntdev, S_IFBLK, true},
2176 {"/dev/sddb12", BRACK(FH_SDDB | 12), "\\Device\\Harddisk105\\Partition12", exists_ntdev, S_IFBLK, true},
2177 {"/dev/sddb13", BRACK(FH_SDDB | 13), "\\Device\\Harddisk105\\Partition13", exists_ntdev, S_IFBLK, true},
2178 {"/dev/sddb14", BRACK(FH_SDDB | 14), "\\Device\\Harddisk105\\Partition14", exists_ntdev, S_IFBLK, true},
2179 {"/dev/sddb15", BRACK(FH_SDDB | 15), "\\Device\\Harddisk105\\Partition15", exists_ntdev, S_IFBLK, true},
2180 {"/dev/sddc1", BRACK(FH_SDDC | 1), "\\Device\\Harddisk106\\Partition1", exists_ntdev, S_IFBLK, true},
2181 {"/dev/sddc2", BRACK(FH_SDDC | 2), "\\Device\\Harddisk106\\Partition2", exists_ntdev, S_IFBLK, true},
2182 {"/dev/sddc3", BRACK(FH_SDDC | 3), "\\Device\\Harddisk106\\Partition3", exists_ntdev, S_IFBLK, true},
2183 {"/dev/sddc4", BRACK(FH_SDDC | 4), "\\Device\\Harddisk106\\Partition4", exists_ntdev, S_IFBLK, true},
2184 {"/dev/sddc5", BRACK(FH_SDDC | 5), "\\Device\\Harddisk106\\Partition5", exists_ntdev, S_IFBLK, true},
2185 {"/dev/sddc6", BRACK(FH_SDDC | 6), "\\Device\\Harddisk106\\Partition6", exists_ntdev, S_IFBLK, true},
2186 {"/dev/sddc7", BRACK(FH_SDDC | 7), "\\Device\\Harddisk106\\Partition7", exists_ntdev, S_IFBLK, true},
2187 {"/dev/sddc8", BRACK(FH_SDDC | 8), "\\Device\\Harddisk106\\Partition8", exists_ntdev, S_IFBLK, true},
2188 {"/dev/sddc9", BRACK(FH_SDDC | 9), "\\Device\\Harddisk106\\Partition9", exists_ntdev, S_IFBLK, true},
2189 {"/dev/sddc10", BRACK(FH_SDDC | 10), "\\Device\\Harddisk106\\Partition10", exists_ntdev, S_IFBLK, true},
2190 {"/dev/sddc11", BRACK(FH_SDDC | 11), "\\Device\\Harddisk106\\Partition11", exists_ntdev, S_IFBLK, true},
2191 {"/dev/sddc12", BRACK(FH_SDDC | 12), "\\Device\\Harddisk106\\Partition12", exists_ntdev, S_IFBLK, true},
2192 {"/dev/sddc13", BRACK(FH_SDDC | 13), "\\Device\\Harddisk106\\Partition13", exists_ntdev, S_IFBLK, true},
2193 {"/dev/sddc14", BRACK(FH_SDDC | 14), "\\Device\\Harddisk106\\Partition14", exists_ntdev, S_IFBLK, true},
2194 {"/dev/sddc15", BRACK(FH_SDDC | 15), "\\Device\\Harddisk106\\Partition15", exists_ntdev, S_IFBLK, true},
2195 {"/dev/sddd1", BRACK(FH_SDDD | 1), "\\Device\\Harddisk107\\Partition1", exists_ntdev, S_IFBLK, true},
2196 {"/dev/sddd2", BRACK(FH_SDDD | 2), "\\Device\\Harddisk107\\Partition2", exists_ntdev, S_IFBLK, true},
2197 {"/dev/sddd3", BRACK(FH_SDDD | 3), "\\Device\\Harddisk107\\Partition3", exists_ntdev, S_IFBLK, true},
2198 {"/dev/sddd4", BRACK(FH_SDDD | 4), "\\Device\\Harddisk107\\Partition4", exists_ntdev, S_IFBLK, true},
2199 {"/dev/sddd5", BRACK(FH_SDDD | 5), "\\Device\\Harddisk107\\Partition5", exists_ntdev, S_IFBLK, true},
2200 {"/dev/sddd6", BRACK(FH_SDDD | 6), "\\Device\\Harddisk107\\Partition6", exists_ntdev, S_IFBLK, true},
2201 {"/dev/sddd7", BRACK(FH_SDDD | 7), "\\Device\\Harddisk107\\Partition7", exists_ntdev, S_IFBLK, true},
2202 {"/dev/sddd8", BRACK(FH_SDDD | 8), "\\Device\\Harddisk107\\Partition8", exists_ntdev, S_IFBLK, true},
2203 {"/dev/sddd9", BRACK(FH_SDDD | 9), "\\Device\\Harddisk107\\Partition9", exists_ntdev, S_IFBLK, true},
2204 {"/dev/sddd10", BRACK(FH_SDDD | 10), "\\Device\\Harddisk107\\Partition10", exists_ntdev, S_IFBLK, true},
2205 {"/dev/sddd11", BRACK(FH_SDDD | 11), "\\Device\\Harddisk107\\Partition11", exists_ntdev, S_IFBLK, true},
2206 {"/dev/sddd12", BRACK(FH_SDDD | 12), "\\Device\\Harddisk107\\Partition12", exists_ntdev, S_IFBLK, true},
2207 {"/dev/sddd13", BRACK(FH_SDDD | 13), "\\Device\\Harddisk107\\Partition13", exists_ntdev, S_IFBLK, true},
2208 {"/dev/sddd14", BRACK(FH_SDDD | 14), "\\Device\\Harddisk107\\Partition14", exists_ntdev, S_IFBLK, true},
2209 {"/dev/sddd15", BRACK(FH_SDDD | 15), "\\Device\\Harddisk107\\Partition15", exists_ntdev, S_IFBLK, true},
2210 {"/dev/sdde1", BRACK(FH_SDDE | 1), "\\Device\\Harddisk108\\Partition1", exists_ntdev, S_IFBLK, true},
2211 {"/dev/sdde2", BRACK(FH_SDDE | 2), "\\Device\\Harddisk108\\Partition2", exists_ntdev, S_IFBLK, true},
2212 {"/dev/sdde3", BRACK(FH_SDDE | 3), "\\Device\\Harddisk108\\Partition3", exists_ntdev, S_IFBLK, true},
2213 {"/dev/sdde4", BRACK(FH_SDDE | 4), "\\Device\\Harddisk108\\Partition4", exists_ntdev, S_IFBLK, true},
2214 {"/dev/sdde5", BRACK(FH_SDDE | 5), "\\Device\\Harddisk108\\Partition5", exists_ntdev, S_IFBLK, true},
2215 {"/dev/sdde6", BRACK(FH_SDDE | 6), "\\Device\\Harddisk108\\Partition6", exists_ntdev, S_IFBLK, true},
2216 {"/dev/sdde7", BRACK(FH_SDDE | 7), "\\Device\\Harddisk108\\Partition7", exists_ntdev, S_IFBLK, true},
2217 {"/dev/sdde8", BRACK(FH_SDDE | 8), "\\Device\\Harddisk108\\Partition8", exists_ntdev, S_IFBLK, true},
2218 {"/dev/sdde9", BRACK(FH_SDDE | 9), "\\Device\\Harddisk108\\Partition9", exists_ntdev, S_IFBLK, true},
2219 {"/dev/sdde10", BRACK(FH_SDDE | 10), "\\Device\\Harddisk108\\Partition10", exists_ntdev, S_IFBLK, true},
2220 {"/dev/sdde11", BRACK(FH_SDDE | 11), "\\Device\\Harddisk108\\Partition11", exists_ntdev, S_IFBLK, true},
2221 {"/dev/sdde12", BRACK(FH_SDDE | 12), "\\Device\\Harddisk108\\Partition12", exists_ntdev, S_IFBLK, true},
2222 {"/dev/sdde13", BRACK(FH_SDDE | 13), "\\Device\\Harddisk108\\Partition13", exists_ntdev, S_IFBLK, true},
2223 {"/dev/sdde14", BRACK(FH_SDDE | 14), "\\Device\\Harddisk108\\Partition14", exists_ntdev, S_IFBLK, true},
2224 {"/dev/sdde15", BRACK(FH_SDDE | 15), "\\Device\\Harddisk108\\Partition15", exists_ntdev, S_IFBLK, true},
2225 {"/dev/sddf1", BRACK(FH_SDDF | 1), "\\Device\\Harddisk109\\Partition1", exists_ntdev, S_IFBLK, true},
2226 {"/dev/sddf2", BRACK(FH_SDDF | 2), "\\Device\\Harddisk109\\Partition2", exists_ntdev, S_IFBLK, true},
2227 {"/dev/sddf3", BRACK(FH_SDDF | 3), "\\Device\\Harddisk109\\Partition3", exists_ntdev, S_IFBLK, true},
2228 {"/dev/sddf4", BRACK(FH_SDDF | 4), "\\Device\\Harddisk109\\Partition4", exists_ntdev, S_IFBLK, true},
2229 {"/dev/sddf5", BRACK(FH_SDDF | 5), "\\Device\\Harddisk109\\Partition5", exists_ntdev, S_IFBLK, true},
2230 {"/dev/sddf6", BRACK(FH_SDDF | 6), "\\Device\\Harddisk109\\Partition6", exists_ntdev, S_IFBLK, true},
2231 {"/dev/sddf7", BRACK(FH_SDDF | 7), "\\Device\\Harddisk109\\Partition7", exists_ntdev, S_IFBLK, true},
2232 {"/dev/sddf8", BRACK(FH_SDDF | 8), "\\Device\\Harddisk109\\Partition8", exists_ntdev, S_IFBLK, true},
2233 {"/dev/sddf9", BRACK(FH_SDDF | 9), "\\Device\\Harddisk109\\Partition9", exists_ntdev, S_IFBLK, true},
2234 {"/dev/sddf10", BRACK(FH_SDDF | 10), "\\Device\\Harddisk109\\Partition10", exists_ntdev, S_IFBLK, true},
2235 {"/dev/sddf11", BRACK(FH_SDDF | 11), "\\Device\\Harddisk109\\Partition11", exists_ntdev, S_IFBLK, true},
2236 {"/dev/sddf12", BRACK(FH_SDDF | 12), "\\Device\\Harddisk109\\Partition12", exists_ntdev, S_IFBLK, true},
2237 {"/dev/sddf13", BRACK(FH_SDDF | 13), "\\Device\\Harddisk109\\Partition13", exists_ntdev, S_IFBLK, true},
2238 {"/dev/sddf14", BRACK(FH_SDDF | 14), "\\Device\\Harddisk109\\Partition14", exists_ntdev, S_IFBLK, true},
2239 {"/dev/sddf15", BRACK(FH_SDDF | 15), "\\Device\\Harddisk109\\Partition15", exists_ntdev, S_IFBLK, true},
2240 {"/dev/sddg1", BRACK(FH_SDDG | 1), "\\Device\\Harddisk110\\Partition1", exists_ntdev, S_IFBLK, true},
2241 {"/dev/sddg2", BRACK(FH_SDDG | 2), "\\Device\\Harddisk110\\Partition2", exists_ntdev, S_IFBLK, true},
2242 {"/dev/sddg3", BRACK(FH_SDDG | 3), "\\Device\\Harddisk110\\Partition3", exists_ntdev, S_IFBLK, true},
2243 {"/dev/sddg4", BRACK(FH_SDDG | 4), "\\Device\\Harddisk110\\Partition4", exists_ntdev, S_IFBLK, true},
2244 {"/dev/sddg5", BRACK(FH_SDDG | 5), "\\Device\\Harddisk110\\Partition5", exists_ntdev, S_IFBLK, true},
2245 {"/dev/sddg6", BRACK(FH_SDDG | 6), "\\Device\\Harddisk110\\Partition6", exists_ntdev, S_IFBLK, true},
2246 {"/dev/sddg7", BRACK(FH_SDDG | 7), "\\Device\\Harddisk110\\Partition7", exists_ntdev, S_IFBLK, true},
2247 {"/dev/sddg8", BRACK(FH_SDDG | 8), "\\Device\\Harddisk110\\Partition8", exists_ntdev, S_IFBLK, true},
2248 {"/dev/sddg9", BRACK(FH_SDDG | 9), "\\Device\\Harddisk110\\Partition9", exists_ntdev, S_IFBLK, true},
2249 {"/dev/sddg10", BRACK(FH_SDDG | 10), "\\Device\\Harddisk110\\Partition10", exists_ntdev, S_IFBLK, true},
2250 {"/dev/sddg11", BRACK(FH_SDDG | 11), "\\Device\\Harddisk110\\Partition11", exists_ntdev, S_IFBLK, true},
2251 {"/dev/sddg12", BRACK(FH_SDDG | 12), "\\Device\\Harddisk110\\Partition12", exists_ntdev, S_IFBLK, true},
2252 {"/dev/sddg13", BRACK(FH_SDDG | 13), "\\Device\\Harddisk110\\Partition13", exists_ntdev, S_IFBLK, true},
2253 {"/dev/sddg14", BRACK(FH_SDDG | 14), "\\Device\\Harddisk110\\Partition14", exists_ntdev, S_IFBLK, true},
2254 {"/dev/sddg15", BRACK(FH_SDDG | 15), "\\Device\\Harddisk110\\Partition15", exists_ntdev, S_IFBLK, true},
2255 {"/dev/sddh1", BRACK(FH_SDDH | 1), "\\Device\\Harddisk111\\Partition1", exists_ntdev, S_IFBLK, true},
2256 {"/dev/sddh2", BRACK(FH_SDDH | 2), "\\Device\\Harddisk111\\Partition2", exists_ntdev, S_IFBLK, true},
2257 {"/dev/sddh3", BRACK(FH_SDDH | 3), "\\Device\\Harddisk111\\Partition3", exists_ntdev, S_IFBLK, true},
2258 {"/dev/sddh4", BRACK(FH_SDDH | 4), "\\Device\\Harddisk111\\Partition4", exists_ntdev, S_IFBLK, true},
2259 {"/dev/sddh5", BRACK(FH_SDDH | 5), "\\Device\\Harddisk111\\Partition5", exists_ntdev, S_IFBLK, true},
2260 {"/dev/sddh6", BRACK(FH_SDDH | 6), "\\Device\\Harddisk111\\Partition6", exists_ntdev, S_IFBLK, true},
2261 {"/dev/sddh7", BRACK(FH_SDDH | 7), "\\Device\\Harddisk111\\Partition7", exists_ntdev, S_IFBLK, true},
2262 {"/dev/sddh8", BRACK(FH_SDDH | 8), "\\Device\\Harddisk111\\Partition8", exists_ntdev, S_IFBLK, true},
2263 {"/dev/sddh9", BRACK(FH_SDDH | 9), "\\Device\\Harddisk111\\Partition9", exists_ntdev, S_IFBLK, true},
2264 {"/dev/sddh10", BRACK(FH_SDDH | 10), "\\Device\\Harddisk111\\Partition10", exists_ntdev, S_IFBLK, true},
2265 {"/dev/sddh11", BRACK(FH_SDDH | 11), "\\Device\\Harddisk111\\Partition11", exists_ntdev, S_IFBLK, true},
2266 {"/dev/sddh12", BRACK(FH_SDDH | 12), "\\Device\\Harddisk111\\Partition12", exists_ntdev, S_IFBLK, true},
2267 {"/dev/sddh13", BRACK(FH_SDDH | 13), "\\Device\\Harddisk111\\Partition13", exists_ntdev, S_IFBLK, true},
2268 {"/dev/sddh14", BRACK(FH_SDDH | 14), "\\Device\\Harddisk111\\Partition14", exists_ntdev, S_IFBLK, true},
2269 {"/dev/sddh15", BRACK(FH_SDDH | 15), "\\Device\\Harddisk111\\Partition15", exists_ntdev, S_IFBLK, true},
2270 {"/dev/sddi1", BRACK(FH_SDDI | 1), "\\Device\\Harddisk112\\Partition1", exists_ntdev, S_IFBLK, true},
2271 {"/dev/sddi2", BRACK(FH_SDDI | 2), "\\Device\\Harddisk112\\Partition2", exists_ntdev, S_IFBLK, true},
2272 {"/dev/sddi3", BRACK(FH_SDDI | 3), "\\Device\\Harddisk112\\Partition3", exists_ntdev, S_IFBLK, true},
2273 {"/dev/sddi4", BRACK(FH_SDDI | 4), "\\Device\\Harddisk112\\Partition4", exists_ntdev, S_IFBLK, true},
2274 {"/dev/sddi5", BRACK(FH_SDDI | 5), "\\Device\\Harddisk112\\Partition5", exists_ntdev, S_IFBLK, true},
2275 {"/dev/sddi6", BRACK(FH_SDDI | 6), "\\Device\\Harddisk112\\Partition6", exists_ntdev, S_IFBLK, true},
2276 {"/dev/sddi7", BRACK(FH_SDDI | 7), "\\Device\\Harddisk112\\Partition7", exists_ntdev, S_IFBLK, true},
2277 {"/dev/sddi8", BRACK(FH_SDDI | 8), "\\Device\\Harddisk112\\Partition8", exists_ntdev, S_IFBLK, true},
2278 {"/dev/sddi9", BRACK(FH_SDDI | 9), "\\Device\\Harddisk112\\Partition9", exists_ntdev, S_IFBLK, true},
2279 {"/dev/sddi10", BRACK(FH_SDDI | 10), "\\Device\\Harddisk112\\Partition10", exists_ntdev, S_IFBLK, true},
2280 {"/dev/sddi11", BRACK(FH_SDDI | 11), "\\Device\\Harddisk112\\Partition11", exists_ntdev, S_IFBLK, true},
2281 {"/dev/sddi12", BRACK(FH_SDDI | 12), "\\Device\\Harddisk112\\Partition12", exists_ntdev, S_IFBLK, true},
2282 {"/dev/sddi13", BRACK(FH_SDDI | 13), "\\Device\\Harddisk112\\Partition13", exists_ntdev, S_IFBLK, true},
2283 {"/dev/sddi14", BRACK(FH_SDDI | 14), "\\Device\\Harddisk112\\Partition14", exists_ntdev, S_IFBLK, true},
2284 {"/dev/sddi15", BRACK(FH_SDDI | 15), "\\Device\\Harddisk112\\Partition15", exists_ntdev, S_IFBLK, true},
2285 {"/dev/sddj1", BRACK(FH_SDDJ | 1), "\\Device\\Harddisk113\\Partition1", exists_ntdev, S_IFBLK, true},
2286 {"/dev/sddj2", BRACK(FH_SDDJ | 2), "\\Device\\Harddisk113\\Partition2", exists_ntdev, S_IFBLK, true},
2287 {"/dev/sddj3", BRACK(FH_SDDJ | 3), "\\Device\\Harddisk113\\Partition3", exists_ntdev, S_IFBLK, true},
2288 {"/dev/sddj4", BRACK(FH_SDDJ | 4), "\\Device\\Harddisk113\\Partition4", exists_ntdev, S_IFBLK, true},
2289 {"/dev/sddj5", BRACK(FH_SDDJ | 5), "\\Device\\Harddisk113\\Partition5", exists_ntdev, S_IFBLK, true},
2290 {"/dev/sddj6", BRACK(FH_SDDJ | 6), "\\Device\\Harddisk113\\Partition6", exists_ntdev, S_IFBLK, true},
2291 {"/dev/sddj7", BRACK(FH_SDDJ | 7), "\\Device\\Harddisk113\\Partition7", exists_ntdev, S_IFBLK, true},
2292 {"/dev/sddj8", BRACK(FH_SDDJ | 8), "\\Device\\Harddisk113\\Partition8", exists_ntdev, S_IFBLK, true},
2293 {"/dev/sddj9", BRACK(FH_SDDJ | 9), "\\Device\\Harddisk113\\Partition9", exists_ntdev, S_IFBLK, true},
2294 {"/dev/sddj10", BRACK(FH_SDDJ | 10), "\\Device\\Harddisk113\\Partition10", exists_ntdev, S_IFBLK, true},
2295 {"/dev/sddj11", BRACK(FH_SDDJ | 11), "\\Device\\Harddisk113\\Partition11", exists_ntdev, S_IFBLK, true},
2296 {"/dev/sddj12", BRACK(FH_SDDJ | 12), "\\Device\\Harddisk113\\Partition12", exists_ntdev, S_IFBLK, true},
2297 {"/dev/sddj13", BRACK(FH_SDDJ | 13), "\\Device\\Harddisk113\\Partition13", exists_ntdev, S_IFBLK, true},
2298 {"/dev/sddj14", BRACK(FH_SDDJ | 14), "\\Device\\Harddisk113\\Partition14", exists_ntdev, S_IFBLK, true},
2299 {"/dev/sddj15", BRACK(FH_SDDJ | 15), "\\Device\\Harddisk113\\Partition15", exists_ntdev, S_IFBLK, true},
2300 {"/dev/sddk1", BRACK(FH_SDDK | 1), "\\Device\\Harddisk114\\Partition1", exists_ntdev, S_IFBLK, true},
2301 {"/dev/sddk2", BRACK(FH_SDDK | 2), "\\Device\\Harddisk114\\Partition2", exists_ntdev, S_IFBLK, true},
2302 {"/dev/sddk3", BRACK(FH_SDDK | 3), "\\Device\\Harddisk114\\Partition3", exists_ntdev, S_IFBLK, true},
2303 {"/dev/sddk4", BRACK(FH_SDDK | 4), "\\Device\\Harddisk114\\Partition4", exists_ntdev, S_IFBLK, true},
2304 {"/dev/sddk5", BRACK(FH_SDDK | 5), "\\Device\\Harddisk114\\Partition5", exists_ntdev, S_IFBLK, true},
2305 {"/dev/sddk6", BRACK(FH_SDDK | 6), "\\Device\\Harddisk114\\Partition6", exists_ntdev, S_IFBLK, true},
2306 {"/dev/sddk7", BRACK(FH_SDDK | 7), "\\Device\\Harddisk114\\Partition7", exists_ntdev, S_IFBLK, true},
2307 {"/dev/sddk8", BRACK(FH_SDDK | 8), "\\Device\\Harddisk114\\Partition8", exists_ntdev, S_IFBLK, true},
2308 {"/dev/sddk9", BRACK(FH_SDDK | 9), "\\Device\\Harddisk114\\Partition9", exists_ntdev, S_IFBLK, true},
2309 {"/dev/sddk10", BRACK(FH_SDDK | 10), "\\Device\\Harddisk114\\Partition10", exists_ntdev, S_IFBLK, true},
2310 {"/dev/sddk11", BRACK(FH_SDDK | 11), "\\Device\\Harddisk114\\Partition11", exists_ntdev, S_IFBLK, true},
2311 {"/dev/sddk12", BRACK(FH_SDDK | 12), "\\Device\\Harddisk114\\Partition12", exists_ntdev, S_IFBLK, true},
2312 {"/dev/sddk13", BRACK(FH_SDDK | 13), "\\Device\\Harddisk114\\Partition13", exists_ntdev, S_IFBLK, true},
2313 {"/dev/sddk14", BRACK(FH_SDDK | 14), "\\Device\\Harddisk114\\Partition14", exists_ntdev, S_IFBLK, true},
2314 {"/dev/sddk15", BRACK(FH_SDDK | 15), "\\Device\\Harddisk114\\Partition15", exists_ntdev, S_IFBLK, true},
2315 {"/dev/sddl1", BRACK(FH_SDDL | 1), "\\Device\\Harddisk115\\Partition1", exists_ntdev, S_IFBLK, true},
2316 {"/dev/sddl2", BRACK(FH_SDDL | 2), "\\Device\\Harddisk115\\Partition2", exists_ntdev, S_IFBLK, true},
2317 {"/dev/sddl3", BRACK(FH_SDDL | 3), "\\Device\\Harddisk115\\Partition3", exists_ntdev, S_IFBLK, true},
2318 {"/dev/sddl4", BRACK(FH_SDDL | 4), "\\Device\\Harddisk115\\Partition4", exists_ntdev, S_IFBLK, true},
2319 {"/dev/sddl5", BRACK(FH_SDDL | 5), "\\Device\\Harddisk115\\Partition5", exists_ntdev, S_IFBLK, true},
2320 {"/dev/sddl6", BRACK(FH_SDDL | 6), "\\Device\\Harddisk115\\Partition6", exists_ntdev, S_IFBLK, true},
2321 {"/dev/sddl7", BRACK(FH_SDDL | 7), "\\Device\\Harddisk115\\Partition7", exists_ntdev, S_IFBLK, true},
2322 {"/dev/sddl8", BRACK(FH_SDDL | 8), "\\Device\\Harddisk115\\Partition8", exists_ntdev, S_IFBLK, true},
2323 {"/dev/sddl9", BRACK(FH_SDDL | 9), "\\Device\\Harddisk115\\Partition9", exists_ntdev, S_IFBLK, true},
2324 {"/dev/sddl10", BRACK(FH_SDDL | 10), "\\Device\\Harddisk115\\Partition10", exists_ntdev, S_IFBLK, true},
2325 {"/dev/sddl11", BRACK(FH_SDDL | 11), "\\Device\\Harddisk115\\Partition11", exists_ntdev, S_IFBLK, true},
2326 {"/dev/sddl12", BRACK(FH_SDDL | 12), "\\Device\\Harddisk115\\Partition12", exists_ntdev, S_IFBLK, true},
2327 {"/dev/sddl13", BRACK(FH_SDDL | 13), "\\Device\\Harddisk115\\Partition13", exists_ntdev, S_IFBLK, true},
2328 {"/dev/sddl14", BRACK(FH_SDDL | 14), "\\Device\\Harddisk115\\Partition14", exists_ntdev, S_IFBLK, true},
2329 {"/dev/sddl15", BRACK(FH_SDDL | 15), "\\Device\\Harddisk115\\Partition15", exists_ntdev, S_IFBLK, true},
2330 {"/dev/sddm1", BRACK(FH_SDDM | 1), "\\Device\\Harddisk116\\Partition1", exists_ntdev, S_IFBLK, true},
2331 {"/dev/sddm2", BRACK(FH_SDDM | 2), "\\Device\\Harddisk116\\Partition2", exists_ntdev, S_IFBLK, true},
2332 {"/dev/sddm3", BRACK(FH_SDDM | 3), "\\Device\\Harddisk116\\Partition3", exists_ntdev, S_IFBLK, true},
2333 {"/dev/sddm4", BRACK(FH_SDDM | 4), "\\Device\\Harddisk116\\Partition4", exists_ntdev, S_IFBLK, true},
2334 {"/dev/sddm5", BRACK(FH_SDDM | 5), "\\Device\\Harddisk116\\Partition5", exists_ntdev, S_IFBLK, true},
2335 {"/dev/sddm6", BRACK(FH_SDDM | 6), "\\Device\\Harddisk116\\Partition6", exists_ntdev, S_IFBLK, true},
2336 {"/dev/sddm7", BRACK(FH_SDDM | 7), "\\Device\\Harddisk116\\Partition7", exists_ntdev, S_IFBLK, true},
2337 {"/dev/sddm8", BRACK(FH_SDDM | 8), "\\Device\\Harddisk116\\Partition8", exists_ntdev, S_IFBLK, true},
2338 {"/dev/sddm9", BRACK(FH_SDDM | 9), "\\Device\\Harddisk116\\Partition9", exists_ntdev, S_IFBLK, true},
2339 {"/dev/sddm10", BRACK(FH_SDDM | 10), "\\Device\\Harddisk116\\Partition10", exists_ntdev, S_IFBLK, true},
2340 {"/dev/sddm11", BRACK(FH_SDDM | 11), "\\Device\\Harddisk116\\Partition11", exists_ntdev, S_IFBLK, true},
2341 {"/dev/sddm12", BRACK(FH_SDDM | 12), "\\Device\\Harddisk116\\Partition12", exists_ntdev, S_IFBLK, true},
2342 {"/dev/sddm13", BRACK(FH_SDDM | 13), "\\Device\\Harddisk116\\Partition13", exists_ntdev, S_IFBLK, true},
2343 {"/dev/sddm14", BRACK(FH_SDDM | 14), "\\Device\\Harddisk116\\Partition14", exists_ntdev, S_IFBLK, true},
2344 {"/dev/sddm15", BRACK(FH_SDDM | 15), "\\Device\\Harddisk116\\Partition15", exists_ntdev, S_IFBLK, true},
2345 {"/dev/sddn1", BRACK(FH_SDDN | 1), "\\Device\\Harddisk117\\Partition1", exists_ntdev, S_IFBLK, true},
2346 {"/dev/sddn2", BRACK(FH_SDDN | 2), "\\Device\\Harddisk117\\Partition2", exists_ntdev, S_IFBLK, true},
2347 {"/dev/sddn3", BRACK(FH_SDDN | 3), "\\Device\\Harddisk117\\Partition3", exists_ntdev, S_IFBLK, true},
2348 {"/dev/sddn4", BRACK(FH_SDDN | 4), "\\Device\\Harddisk117\\Partition4", exists_ntdev, S_IFBLK, true},
2349 {"/dev/sddn5", BRACK(FH_SDDN | 5), "\\Device\\Harddisk117\\Partition5", exists_ntdev, S_IFBLK, true},
2350 {"/dev/sddn6", BRACK(FH_SDDN | 6), "\\Device\\Harddisk117\\Partition6", exists_ntdev, S_IFBLK, true},
2351 {"/dev/sddn7", BRACK(FH_SDDN | 7), "\\Device\\Harddisk117\\Partition7", exists_ntdev, S_IFBLK, true},
2352 {"/dev/sddn8", BRACK(FH_SDDN | 8), "\\Device\\Harddisk117\\Partition8", exists_ntdev, S_IFBLK, true},
2353 {"/dev/sddn9", BRACK(FH_SDDN | 9), "\\Device\\Harddisk117\\Partition9", exists_ntdev, S_IFBLK, true},
2354 {"/dev/sddn10", BRACK(FH_SDDN | 10), "\\Device\\Harddisk117\\Partition10", exists_ntdev, S_IFBLK, true},
2355 {"/dev/sddn11", BRACK(FH_SDDN | 11), "\\Device\\Harddisk117\\Partition11", exists_ntdev, S_IFBLK, true},
2356 {"/dev/sddn12", BRACK(FH_SDDN | 12), "\\Device\\Harddisk117\\Partition12", exists_ntdev, S_IFBLK, true},
2357 {"/dev/sddn13", BRACK(FH_SDDN | 13), "\\Device\\Harddisk117\\Partition13", exists_ntdev, S_IFBLK, true},
2358 {"/dev/sddn14", BRACK(FH_SDDN | 14), "\\Device\\Harddisk117\\Partition14", exists_ntdev, S_IFBLK, true},
2359 {"/dev/sddn15", BRACK(FH_SDDN | 15), "\\Device\\Harddisk117\\Partition15", exists_ntdev, S_IFBLK, true},
2360 {"/dev/sddo1", BRACK(FH_SDDO | 1), "\\Device\\Harddisk118\\Partition1", exists_ntdev, S_IFBLK, true},
2361 {"/dev/sddo2", BRACK(FH_SDDO | 2), "\\Device\\Harddisk118\\Partition2", exists_ntdev, S_IFBLK, true},
2362 {"/dev/sddo3", BRACK(FH_SDDO | 3), "\\Device\\Harddisk118\\Partition3", exists_ntdev, S_IFBLK, true},
2363 {"/dev/sddo4", BRACK(FH_SDDO | 4), "\\Device\\Harddisk118\\Partition4", exists_ntdev, S_IFBLK, true},
2364 {"/dev/sddo5", BRACK(FH_SDDO | 5), "\\Device\\Harddisk118\\Partition5", exists_ntdev, S_IFBLK, true},
2365 {"/dev/sddo6", BRACK(FH_SDDO | 6), "\\Device\\Harddisk118\\Partition6", exists_ntdev, S_IFBLK, true},
2366 {"/dev/sddo7", BRACK(FH_SDDO | 7), "\\Device\\Harddisk118\\Partition7", exists_ntdev, S_IFBLK, true},
2367 {"/dev/sddo8", BRACK(FH_SDDO | 8), "\\Device\\Harddisk118\\Partition8", exists_ntdev, S_IFBLK, true},
2368 {"/dev/sddo9", BRACK(FH_SDDO | 9), "\\Device\\Harddisk118\\Partition9", exists_ntdev, S_IFBLK, true},
2369 {"/dev/sddo10", BRACK(FH_SDDO | 10), "\\Device\\Harddisk118\\Partition10", exists_ntdev, S_IFBLK, true},
2370 {"/dev/sddo11", BRACK(FH_SDDO | 11), "\\Device\\Harddisk118\\Partition11", exists_ntdev, S_IFBLK, true},
2371 {"/dev/sddo12", BRACK(FH_SDDO | 12), "\\Device\\Harddisk118\\Partition12", exists_ntdev, S_IFBLK, true},
2372 {"/dev/sddo13", BRACK(FH_SDDO | 13), "\\Device\\Harddisk118\\Partition13", exists_ntdev, S_IFBLK, true},
2373 {"/dev/sddo14", BRACK(FH_SDDO | 14), "\\Device\\Harddisk118\\Partition14", exists_ntdev, S_IFBLK, true},
2374 {"/dev/sddo15", BRACK(FH_SDDO | 15), "\\Device\\Harddisk118\\Partition15", exists_ntdev, S_IFBLK, true},
2375 {"/dev/sddp1", BRACK(FH_SDDP | 1), "\\Device\\Harddisk119\\Partition1", exists_ntdev, S_IFBLK, true},
2376 {"/dev/sddp2", BRACK(FH_SDDP | 2), "\\Device\\Harddisk119\\Partition2", exists_ntdev, S_IFBLK, true},
2377 {"/dev/sddp3", BRACK(FH_SDDP | 3), "\\Device\\Harddisk119\\Partition3", exists_ntdev, S_IFBLK, true},
2378 {"/dev/sddp4", BRACK(FH_SDDP | 4), "\\Device\\Harddisk119\\Partition4", exists_ntdev, S_IFBLK, true},
2379 {"/dev/sddp5", BRACK(FH_SDDP | 5), "\\Device\\Harddisk119\\Partition5", exists_ntdev, S_IFBLK, true},
2380 {"/dev/sddp6", BRACK(FH_SDDP | 6), "\\Device\\Harddisk119\\Partition6", exists_ntdev, S_IFBLK, true},
2381 {"/dev/sddp7", BRACK(FH_SDDP | 7), "\\Device\\Harddisk119\\Partition7", exists_ntdev, S_IFBLK, true},
2382 {"/dev/sddp8", BRACK(FH_SDDP | 8), "\\Device\\Harddisk119\\Partition8", exists_ntdev, S_IFBLK, true},
2383 {"/dev/sddp9", BRACK(FH_SDDP | 9), "\\Device\\Harddisk119\\Partition9", exists_ntdev, S_IFBLK, true},
2384 {"/dev/sddp10", BRACK(FH_SDDP | 10), "\\Device\\Harddisk119\\Partition10", exists_ntdev, S_IFBLK, true},
2385 {"/dev/sddp11", BRACK(FH_SDDP | 11), "\\Device\\Harddisk119\\Partition11", exists_ntdev, S_IFBLK, true},
2386 {"/dev/sddp12", BRACK(FH_SDDP | 12), "\\Device\\Harddisk119\\Partition12", exists_ntdev, S_IFBLK, true},
2387 {"/dev/sddp13", BRACK(FH_SDDP | 13), "\\Device\\Harddisk119\\Partition13", exists_ntdev, S_IFBLK, true},
2388 {"/dev/sddp14", BRACK(FH_SDDP | 14), "\\Device\\Harddisk119\\Partition14", exists_ntdev, S_IFBLK, true},
2389 {"/dev/sddp15", BRACK(FH_SDDP | 15), "\\Device\\Harddisk119\\Partition15", exists_ntdev, S_IFBLK, true},
2390 {"/dev/sddq1", BRACK(FH_SDDQ | 1), "\\Device\\Harddisk120\\Partition1", exists_ntdev, S_IFBLK, true},
2391 {"/dev/sddq2", BRACK(FH_SDDQ | 2), "\\Device\\Harddisk120\\Partition2", exists_ntdev, S_IFBLK, true},
2392 {"/dev/sddq3", BRACK(FH_SDDQ | 3), "\\Device\\Harddisk120\\Partition3", exists_ntdev, S_IFBLK, true},
2393 {"/dev/sddq4", BRACK(FH_SDDQ | 4), "\\Device\\Harddisk120\\Partition4", exists_ntdev, S_IFBLK, true},
2394 {"/dev/sddq5", BRACK(FH_SDDQ | 5), "\\Device\\Harddisk120\\Partition5", exists_ntdev, S_IFBLK, true},
2395 {"/dev/sddq6", BRACK(FH_SDDQ | 6), "\\Device\\Harddisk120\\Partition6", exists_ntdev, S_IFBLK, true},
2396 {"/dev/sddq7", BRACK(FH_SDDQ | 7), "\\Device\\Harddisk120\\Partition7", exists_ntdev, S_IFBLK, true},
2397 {"/dev/sddq8", BRACK(FH_SDDQ | 8), "\\Device\\Harddisk120\\Partition8", exists_ntdev, S_IFBLK, true},
2398 {"/dev/sddq9", BRACK(FH_SDDQ | 9), "\\Device\\Harddisk120\\Partition9", exists_ntdev, S_IFBLK, true},
2399 {"/dev/sddq10", BRACK(FH_SDDQ | 10), "\\Device\\Harddisk120\\Partition10", exists_ntdev, S_IFBLK, true},
2400 {"/dev/sddq11", BRACK(FH_SDDQ | 11), "\\Device\\Harddisk120\\Partition11", exists_ntdev, S_IFBLK, true},
2401 {"/dev/sddq12", BRACK(FH_SDDQ | 12), "\\Device\\Harddisk120\\Partition12", exists_ntdev, S_IFBLK, true},
2402 {"/dev/sddq13", BRACK(FH_SDDQ | 13), "\\Device\\Harddisk120\\Partition13", exists_ntdev, S_IFBLK, true},
2403 {"/dev/sddq14", BRACK(FH_SDDQ | 14), "\\Device\\Harddisk120\\Partition14", exists_ntdev, S_IFBLK, true},
2404 {"/dev/sddq15", BRACK(FH_SDDQ | 15), "\\Device\\Harddisk120\\Partition15", exists_ntdev, S_IFBLK, true},
2405 {"/dev/sddr1", BRACK(FH_SDDR | 1), "\\Device\\Harddisk121\\Partition1", exists_ntdev, S_IFBLK, true},
2406 {"/dev/sddr2", BRACK(FH_SDDR | 2), "\\Device\\Harddisk121\\Partition2", exists_ntdev, S_IFBLK, true},
2407 {"/dev/sddr3", BRACK(FH_SDDR | 3), "\\Device\\Harddisk121\\Partition3", exists_ntdev, S_IFBLK, true},
2408 {"/dev/sddr4", BRACK(FH_SDDR | 4), "\\Device\\Harddisk121\\Partition4", exists_ntdev, S_IFBLK, true},
2409 {"/dev/sddr5", BRACK(FH_SDDR | 5), "\\Device\\Harddisk121\\Partition5", exists_ntdev, S_IFBLK, true},
2410 {"/dev/sddr6", BRACK(FH_SDDR | 6), "\\Device\\Harddisk121\\Partition6", exists_ntdev, S_IFBLK, true},
2411 {"/dev/sddr7", BRACK(FH_SDDR | 7), "\\Device\\Harddisk121\\Partition7", exists_ntdev, S_IFBLK, true},
2412 {"/dev/sddr8", BRACK(FH_SDDR | 8), "\\Device\\Harddisk121\\Partition8", exists_ntdev, S_IFBLK, true},
2413 {"/dev/sddr9", BRACK(FH_SDDR | 9), "\\Device\\Harddisk121\\Partition9", exists_ntdev, S_IFBLK, true},
2414 {"/dev/sddr10", BRACK(FH_SDDR | 10), "\\Device\\Harddisk121\\Partition10", exists_ntdev, S_IFBLK, true},
2415 {"/dev/sddr11", BRACK(FH_SDDR | 11), "\\Device\\Harddisk121\\Partition11", exists_ntdev, S_IFBLK, true},
2416 {"/dev/sddr12", BRACK(FH_SDDR | 12), "\\Device\\Harddisk121\\Partition12", exists_ntdev, S_IFBLK, true},
2417 {"/dev/sddr13", BRACK(FH_SDDR | 13), "\\Device\\Harddisk121\\Partition13", exists_ntdev, S_IFBLK, true},
2418 {"/dev/sddr14", BRACK(FH_SDDR | 14), "\\Device\\Harddisk121\\Partition14", exists_ntdev, S_IFBLK, true},
2419 {"/dev/sddr15", BRACK(FH_SDDR | 15), "\\Device\\Harddisk121\\Partition15", exists_ntdev, S_IFBLK, true},
2420 {"/dev/sdds1", BRACK(FH_SDDS | 1), "\\Device\\Harddisk122\\Partition1", exists_ntdev, S_IFBLK, true},
2421 {"/dev/sdds2", BRACK(FH_SDDS | 2), "\\Device\\Harddisk122\\Partition2", exists_ntdev, S_IFBLK, true},
2422 {"/dev/sdds3", BRACK(FH_SDDS | 3), "\\Device\\Harddisk122\\Partition3", exists_ntdev, S_IFBLK, true},
2423 {"/dev/sdds4", BRACK(FH_SDDS | 4), "\\Device\\Harddisk122\\Partition4", exists_ntdev, S_IFBLK, true},
2424 {"/dev/sdds5", BRACK(FH_SDDS | 5), "\\Device\\Harddisk122\\Partition5", exists_ntdev, S_IFBLK, true},
2425 {"/dev/sdds6", BRACK(FH_SDDS | 6), "\\Device\\Harddisk122\\Partition6", exists_ntdev, S_IFBLK, true},
2426 {"/dev/sdds7", BRACK(FH_SDDS | 7), "\\Device\\Harddisk122\\Partition7", exists_ntdev, S_IFBLK, true},
2427 {"/dev/sdds8", BRACK(FH_SDDS | 8), "\\Device\\Harddisk122\\Partition8", exists_ntdev, S_IFBLK, true},
2428 {"/dev/sdds9", BRACK(FH_SDDS | 9), "\\Device\\Harddisk122\\Partition9", exists_ntdev, S_IFBLK, true},
2429 {"/dev/sdds10", BRACK(FH_SDDS | 10), "\\Device\\Harddisk122\\Partition10", exists_ntdev, S_IFBLK, true},
2430 {"/dev/sdds11", BRACK(FH_SDDS | 11), "\\Device\\Harddisk122\\Partition11", exists_ntdev, S_IFBLK, true},
2431 {"/dev/sdds12", BRACK(FH_SDDS | 12), "\\Device\\Harddisk122\\Partition12", exists_ntdev, S_IFBLK, true},
2432 {"/dev/sdds13", BRACK(FH_SDDS | 13), "\\Device\\Harddisk122\\Partition13", exists_ntdev, S_IFBLK, true},
2433 {"/dev/sdds14", BRACK(FH_SDDS | 14), "\\Device\\Harddisk122\\Partition14", exists_ntdev, S_IFBLK, true},
2434 {"/dev/sdds15", BRACK(FH_SDDS | 15), "\\Device\\Harddisk122\\Partition15", exists_ntdev, S_IFBLK, true},
2435 {"/dev/sddt1", BRACK(FH_SDDT | 1), "\\Device\\Harddisk123\\Partition1", exists_ntdev, S_IFBLK, true},
2436 {"/dev/sddt2", BRACK(FH_SDDT | 2), "\\Device\\Harddisk123\\Partition2", exists_ntdev, S_IFBLK, true},
2437 {"/dev/sddt3", BRACK(FH_SDDT | 3), "\\Device\\Harddisk123\\Partition3", exists_ntdev, S_IFBLK, true},
2438 {"/dev/sddt4", BRACK(FH_SDDT | 4), "\\Device\\Harddisk123\\Partition4", exists_ntdev, S_IFBLK, true},
2439 {"/dev/sddt5", BRACK(FH_SDDT | 5), "\\Device\\Harddisk123\\Partition5", exists_ntdev, S_IFBLK, true},
2440 {"/dev/sddt6", BRACK(FH_SDDT | 6), "\\Device\\Harddisk123\\Partition6", exists_ntdev, S_IFBLK, true},
2441 {"/dev/sddt7", BRACK(FH_SDDT | 7), "\\Device\\Harddisk123\\Partition7", exists_ntdev, S_IFBLK, true},
2442 {"/dev/sddt8", BRACK(FH_SDDT | 8), "\\Device\\Harddisk123\\Partition8", exists_ntdev, S_IFBLK, true},
2443 {"/dev/sddt9", BRACK(FH_SDDT | 9), "\\Device\\Harddisk123\\Partition9", exists_ntdev, S_IFBLK, true},
2444 {"/dev/sddt10", BRACK(FH_SDDT | 10), "\\Device\\Harddisk123\\Partition10", exists_ntdev, S_IFBLK, true},
2445 {"/dev/sddt11", BRACK(FH_SDDT | 11), "\\Device\\Harddisk123\\Partition11", exists_ntdev, S_IFBLK, true},
2446 {"/dev/sddt12", BRACK(FH_SDDT | 12), "\\Device\\Harddisk123\\Partition12", exists_ntdev, S_IFBLK, true},
2447 {"/dev/sddt13", BRACK(FH_SDDT | 13), "\\Device\\Harddisk123\\Partition13", exists_ntdev, S_IFBLK, true},
2448 {"/dev/sddt14", BRACK(FH_SDDT | 14), "\\Device\\Harddisk123\\Partition14", exists_ntdev, S_IFBLK, true},
2449 {"/dev/sddt15", BRACK(FH_SDDT | 15), "\\Device\\Harddisk123\\Partition15", exists_ntdev, S_IFBLK, true},
2450 {"/dev/sddu1", BRACK(FH_SDDU | 1), "\\Device\\Harddisk124\\Partition1", exists_ntdev, S_IFBLK, true},
2451 {"/dev/sddu2", BRACK(FH_SDDU | 2), "\\Device\\Harddisk124\\Partition2", exists_ntdev, S_IFBLK, true},
2452 {"/dev/sddu3", BRACK(FH_SDDU | 3), "\\Device\\Harddisk124\\Partition3", exists_ntdev, S_IFBLK, true},
2453 {"/dev/sddu4", BRACK(FH_SDDU | 4), "\\Device\\Harddisk124\\Partition4", exists_ntdev, S_IFBLK, true},
2454 {"/dev/sddu5", BRACK(FH_SDDU | 5), "\\Device\\Harddisk124\\Partition5", exists_ntdev, S_IFBLK, true},
2455 {"/dev/sddu6", BRACK(FH_SDDU | 6), "\\Device\\Harddisk124\\Partition6", exists_ntdev, S_IFBLK, true},
2456 {"/dev/sddu7", BRACK(FH_SDDU | 7), "\\Device\\Harddisk124\\Partition7", exists_ntdev, S_IFBLK, true},
2457 {"/dev/sddu8", BRACK(FH_SDDU | 8), "\\Device\\Harddisk124\\Partition8", exists_ntdev, S_IFBLK, true},
2458 {"/dev/sddu9", BRACK(FH_SDDU | 9), "\\Device\\Harddisk124\\Partition9", exists_ntdev, S_IFBLK, true},
2459 {"/dev/sddu10", BRACK(FH_SDDU | 10), "\\Device\\Harddisk124\\Partition10", exists_ntdev, S_IFBLK, true},
2460 {"/dev/sddu11", BRACK(FH_SDDU | 11), "\\Device\\Harddisk124\\Partition11", exists_ntdev, S_IFBLK, true},
2461 {"/dev/sddu12", BRACK(FH_SDDU | 12), "\\Device\\Harddisk124\\Partition12", exists_ntdev, S_IFBLK, true},
2462 {"/dev/sddu13", BRACK(FH_SDDU | 13), "\\Device\\Harddisk124\\Partition13", exists_ntdev, S_IFBLK, true},
2463 {"/dev/sddu14", BRACK(FH_SDDU | 14), "\\Device\\Harddisk124\\Partition14", exists_ntdev, S_IFBLK, true},
2464 {"/dev/sddu15", BRACK(FH_SDDU | 15), "\\Device\\Harddisk124\\Partition15", exists_ntdev, S_IFBLK, true},
2465 {"/dev/sddv1", BRACK(FH_SDDV | 1), "\\Device\\Harddisk125\\Partition1", exists_ntdev, S_IFBLK, true},
2466 {"/dev/sddv2", BRACK(FH_SDDV | 2), "\\Device\\Harddisk125\\Partition2", exists_ntdev, S_IFBLK, true},
2467 {"/dev/sddv3", BRACK(FH_SDDV | 3), "\\Device\\Harddisk125\\Partition3", exists_ntdev, S_IFBLK, true},
2468 {"/dev/sddv4", BRACK(FH_SDDV | 4), "\\Device\\Harddisk125\\Partition4", exists_ntdev, S_IFBLK, true},
2469 {"/dev/sddv5", BRACK(FH_SDDV | 5), "\\Device\\Harddisk125\\Partition5", exists_ntdev, S_IFBLK, true},
2470 {"/dev/sddv6", BRACK(FH_SDDV | 6), "\\Device\\Harddisk125\\Partition6", exists_ntdev, S_IFBLK, true},
2471 {"/dev/sddv7", BRACK(FH_SDDV | 7), "\\Device\\Harddisk125\\Partition7", exists_ntdev, S_IFBLK, true},
2472 {"/dev/sddv8", BRACK(FH_SDDV | 8), "\\Device\\Harddisk125\\Partition8", exists_ntdev, S_IFBLK, true},
2473 {"/dev/sddv9", BRACK(FH_SDDV | 9), "\\Device\\Harddisk125\\Partition9", exists_ntdev, S_IFBLK, true},
2474 {"/dev/sddv10", BRACK(FH_SDDV | 10), "\\Device\\Harddisk125\\Partition10", exists_ntdev, S_IFBLK, true},
2475 {"/dev/sddv11", BRACK(FH_SDDV | 11), "\\Device\\Harddisk125\\Partition11", exists_ntdev, S_IFBLK, true},
2476 {"/dev/sddv12", BRACK(FH_SDDV | 12), "\\Device\\Harddisk125\\Partition12", exists_ntdev, S_IFBLK, true},
2477 {"/dev/sddv13", BRACK(FH_SDDV | 13), "\\Device\\Harddisk125\\Partition13", exists_ntdev, S_IFBLK, true},
2478 {"/dev/sddv14", BRACK(FH_SDDV | 14), "\\Device\\Harddisk125\\Partition14", exists_ntdev, S_IFBLK, true},
2479 {"/dev/sddv15", BRACK(FH_SDDV | 15), "\\Device\\Harddisk125\\Partition15", exists_ntdev, S_IFBLK, true},
2480 {"/dev/sddw1", BRACK(FH_SDDW | 1), "\\Device\\Harddisk126\\Partition1", exists_ntdev, S_IFBLK, true},
2481 {"/dev/sddw2", BRACK(FH_SDDW | 2), "\\Device\\Harddisk126\\Partition2", exists_ntdev, S_IFBLK, true},
2482 {"/dev/sddw3", BRACK(FH_SDDW | 3), "\\Device\\Harddisk126\\Partition3", exists_ntdev, S_IFBLK, true},
2483 {"/dev/sddw4", BRACK(FH_SDDW | 4), "\\Device\\Harddisk126\\Partition4", exists_ntdev, S_IFBLK, true},
2484 {"/dev/sddw5", BRACK(FH_SDDW | 5), "\\Device\\Harddisk126\\Partition5", exists_ntdev, S_IFBLK, true},
2485 {"/dev/sddw6", BRACK(FH_SDDW | 6), "\\Device\\Harddisk126\\Partition6", exists_ntdev, S_IFBLK, true},
2486 {"/dev/sddw7", BRACK(FH_SDDW | 7), "\\Device\\Harddisk126\\Partition7", exists_ntdev, S_IFBLK, true},
2487 {"/dev/sddw8", BRACK(FH_SDDW | 8), "\\Device\\Harddisk126\\Partition8", exists_ntdev, S_IFBLK, true},
2488 {"/dev/sddw9", BRACK(FH_SDDW | 9), "\\Device\\Harddisk126\\Partition9", exists_ntdev, S_IFBLK, true},
2489 {"/dev/sddw10", BRACK(FH_SDDW | 10), "\\Device\\Harddisk126\\Partition10", exists_ntdev, S_IFBLK, true},
2490 {"/dev/sddw11", BRACK(FH_SDDW | 11), "\\Device\\Harddisk126\\Partition11", exists_ntdev, S_IFBLK, true},
2491 {"/dev/sddw12", BRACK(FH_SDDW | 12), "\\Device\\Harddisk126\\Partition12", exists_ntdev, S_IFBLK, true},
2492 {"/dev/sddw13", BRACK(FH_SDDW | 13), "\\Device\\Harddisk126\\Partition13", exists_ntdev, S_IFBLK, true},
2493 {"/dev/sddw14", BRACK(FH_SDDW | 14), "\\Device\\Harddisk126\\Partition14", exists_ntdev, S_IFBLK, true},
2494 {"/dev/sddw15", BRACK(FH_SDDW | 15), "\\Device\\Harddisk126\\Partition15", exists_ntdev, S_IFBLK, true},
2495 {"/dev/sddx1", BRACK(FH_SDDX | 1), "\\Device\\Harddisk127\\Partition1", exists_ntdev, S_IFBLK, true},
2496 {"/dev/sddx2", BRACK(FH_SDDX | 2), "\\Device\\Harddisk127\\Partition2", exists_ntdev, S_IFBLK, true},
2497 {"/dev/sddx3", BRACK(FH_SDDX | 3), "\\Device\\Harddisk127\\Partition3", exists_ntdev, S_IFBLK, true},
2498 {"/dev/sddx4", BRACK(FH_SDDX | 4), "\\Device\\Harddisk127\\Partition4", exists_ntdev, S_IFBLK, true},
2499 {"/dev/sddx5", BRACK(FH_SDDX | 5), "\\Device\\Harddisk127\\Partition5", exists_ntdev, S_IFBLK, true},
2500 {"/dev/sddx6", BRACK(FH_SDDX | 6), "\\Device\\Harddisk127\\Partition6", exists_ntdev, S_IFBLK, true},
2501 {"/dev/sddx7", BRACK(FH_SDDX | 7), "\\Device\\Harddisk127\\Partition7", exists_ntdev, S_IFBLK, true},
2502 {"/dev/sddx8", BRACK(FH_SDDX | 8), "\\Device\\Harddisk127\\Partition8", exists_ntdev, S_IFBLK, true},
2503 {"/dev/sddx9", BRACK(FH_SDDX | 9), "\\Device\\Harddisk127\\Partition9", exists_ntdev, S_IFBLK, true},
2504 {"/dev/sddx10", BRACK(FH_SDDX | 10), "\\Device\\Harddisk127\\Partition10", exists_ntdev, S_IFBLK, true},
2505 {"/dev/sddx11", BRACK(FH_SDDX | 11), "\\Device\\Harddisk127\\Partition11", exists_ntdev, S_IFBLK, true},
2506 {"/dev/sddx12", BRACK(FH_SDDX | 12), "\\Device\\Harddisk127\\Partition12", exists_ntdev, S_IFBLK, true},
2507 {"/dev/sddx13", BRACK(FH_SDDX | 13), "\\Device\\Harddisk127\\Partition13", exists_ntdev, S_IFBLK, true},
2508 {"/dev/sddx14", BRACK(FH_SDDX | 14), "\\Device\\Harddisk127\\Partition14", exists_ntdev, S_IFBLK, true},
2509 {"/dev/sddx15", BRACK(FH_SDDX | 15), "\\Device\\Harddisk127\\Partition15", exists_ntdev, S_IFBLK, true},
2510 {"/dev/sr0", BRACK(FHDEV(DEV_CDROM_MAJOR, 0)), "\\Device\\CdRom0", exists_ntdev, S_IFBLK, true},
2511 {"/dev/sr1", BRACK(FHDEV(DEV_CDROM_MAJOR, 1)), "\\Device\\CdRom1", exists_ntdev, S_IFBLK, true},
2512 {"/dev/sr2", BRACK(FHDEV(DEV_CDROM_MAJOR, 2)), "\\Device\\CdRom2", exists_ntdev, S_IFBLK, true},
2513 {"/dev/sr3", BRACK(FHDEV(DEV_CDROM_MAJOR, 3)), "\\Device\\CdRom3", exists_ntdev, S_IFBLK, true},
2514 {"/dev/sr4", BRACK(FHDEV(DEV_CDROM_MAJOR, 4)), "\\Device\\CdRom4", exists_ntdev, S_IFBLK, true},
2515 {"/dev/sr5", BRACK(FHDEV(DEV_CDROM_MAJOR, 5)), "\\Device\\CdRom5", exists_ntdev, S_IFBLK, true},
2516 {"/dev/sr6", BRACK(FHDEV(DEV_CDROM_MAJOR, 6)), "\\Device\\CdRom6", exists_ntdev, S_IFBLK, true},
2517 {"/dev/sr7", BRACK(FHDEV(DEV_CDROM_MAJOR, 7)), "\\Device\\CdRom7", exists_ntdev, S_IFBLK, true},
2518 {"/dev/sr8", BRACK(FHDEV(DEV_CDROM_MAJOR, 8)), "\\Device\\CdRom8", exists_ntdev, S_IFBLK, true},
2519 {"/dev/sr9", BRACK(FHDEV(DEV_CDROM_MAJOR, 9)), "\\Device\\CdRom9", exists_ntdev, S_IFBLK, true},
2520 {"/dev/sr10", BRACK(FHDEV(DEV_CDROM_MAJOR, 10)), "\\Device\\CdRom10", exists_ntdev, S_IFBLK, true},
2521 {"/dev/sr11", BRACK(FHDEV(DEV_CDROM_MAJOR, 11)), "\\Device\\CdRom11", exists_ntdev, S_IFBLK, true},
2522 {"/dev/sr12", BRACK(FHDEV(DEV_CDROM_MAJOR, 12)), "\\Device\\CdRom12", exists_ntdev, S_IFBLK, true},
2523 {"/dev/sr13", BRACK(FHDEV(DEV_CDROM_MAJOR, 13)), "\\Device\\CdRom13", exists_ntdev, S_IFBLK, true},
2524 {"/dev/sr14", BRACK(FHDEV(DEV_CDROM_MAJOR, 14)), "\\Device\\CdRom14", exists_ntdev, S_IFBLK, true},
2525 {"/dev/sr15", BRACK(FHDEV(DEV_CDROM_MAJOR, 15)), "\\Device\\CdRom15", exists_ntdev, S_IFBLK, true},
2526 {"/dev/st0", BRACK(FHDEV(DEV_TAPE_MAJOR, 0)), "\\Device\\Tape0", exists_ntdev, S_IFBLK, true},
2527 {"/dev/st1", BRACK(FHDEV(DEV_TAPE_MAJOR, 1)), "\\Device\\Tape1", exists_ntdev, S_IFBLK, true},
2528 {"/dev/st2", BRACK(FHDEV(DEV_TAPE_MAJOR, 2)), "\\Device\\Tape2", exists_ntdev, S_IFBLK, true},
2529 {"/dev/st3", BRACK(FHDEV(DEV_TAPE_MAJOR, 3)), "\\Device\\Tape3", exists_ntdev, S_IFBLK, true},
2530 {"/dev/st4", BRACK(FHDEV(DEV_TAPE_MAJOR, 4)), "\\Device\\Tape4", exists_ntdev, S_IFBLK, true},
2531 {"/dev/st5", BRACK(FHDEV(DEV_TAPE_MAJOR, 5)), "\\Device\\Tape5", exists_ntdev, S_IFBLK, true},
2532 {"/dev/st6", BRACK(FHDEV(DEV_TAPE_MAJOR, 6)), "\\Device\\Tape6", exists_ntdev, S_IFBLK, true},
2533 {"/dev/st7", BRACK(FHDEV(DEV_TAPE_MAJOR, 7)), "\\Device\\Tape7", exists_ntdev, S_IFBLK, true},
2534 {"/dev/st8", BRACK(FHDEV(DEV_TAPE_MAJOR, 8)), "\\Device\\Tape8", exists_ntdev, S_IFBLK, true},
2535 {"/dev/st9", BRACK(FHDEV(DEV_TAPE_MAJOR, 9)), "\\Device\\Tape9", exists_ntdev, S_IFBLK, true},
2536 {"/dev/st10", BRACK(FHDEV(DEV_TAPE_MAJOR, 10)), "\\Device\\Tape10", exists_ntdev, S_IFBLK, true},
2537 {"/dev/st11", BRACK(FHDEV(DEV_TAPE_MAJOR, 11)), "\\Device\\Tape11", exists_ntdev, S_IFBLK, true},
2538 {"/dev/st12", BRACK(FHDEV(DEV_TAPE_MAJOR, 12)), "\\Device\\Tape12", exists_ntdev, S_IFBLK, true},
2539 {"/dev/st13", BRACK(FHDEV(DEV_TAPE_MAJOR, 13)), "\\Device\\Tape13", exists_ntdev, S_IFBLK, true},
2540 {"/dev/st14", BRACK(FHDEV(DEV_TAPE_MAJOR, 14)), "\\Device\\Tape14", exists_ntdev, S_IFBLK, true},
2541 {"/dev/st15", BRACK(FHDEV(DEV_TAPE_MAJOR, 15)), "\\Device\\Tape15", exists_ntdev, S_IFBLK, true},
2542 {"/dev/st16", BRACK(FHDEV(DEV_TAPE_MAJOR, 16)), "\\Device\\Tape16", exists_ntdev, S_IFBLK, true},
2543 {"/dev/st17", BRACK(FHDEV(DEV_TAPE_MAJOR, 17)), "\\Device\\Tape17", exists_ntdev, S_IFBLK, true},
2544 {"/dev/st18", BRACK(FHDEV(DEV_TAPE_MAJOR, 18)), "\\Device\\Tape18", exists_ntdev, S_IFBLK, true},
2545 {"/dev/st19", BRACK(FHDEV(DEV_TAPE_MAJOR, 19)), "\\Device\\Tape19", exists_ntdev, S_IFBLK, true},
2546 {"/dev/st20", BRACK(FHDEV(DEV_TAPE_MAJOR, 20)), "\\Device\\Tape20", exists_ntdev, S_IFBLK, true},
2547 {"/dev/st21", BRACK(FHDEV(DEV_TAPE_MAJOR, 21)), "\\Device\\Tape21", exists_ntdev, S_IFBLK, true},
2548 {"/dev/st22", BRACK(FHDEV(DEV_TAPE_MAJOR, 22)), "\\Device\\Tape22", exists_ntdev, S_IFBLK, true},
2549 {"/dev/st23", BRACK(FHDEV(DEV_TAPE_MAJOR, 23)), "\\Device\\Tape23", exists_ntdev, S_IFBLK, true},
2550 {"/dev/st24", BRACK(FHDEV(DEV_TAPE_MAJOR, 24)), "\\Device\\Tape24", exists_ntdev, S_IFBLK, true},
2551 {"/dev/st25", BRACK(FHDEV(DEV_TAPE_MAJOR, 25)), "\\Device\\Tape25", exists_ntdev, S_IFBLK, true},
2552 {"/dev/st26", BRACK(FHDEV(DEV_TAPE_MAJOR, 26)), "\\Device\\Tape26", exists_ntdev, S_IFBLK, true},
2553 {"/dev/st27", BRACK(FHDEV(DEV_TAPE_MAJOR, 27)), "\\Device\\Tape27", exists_ntdev, S_IFBLK, true},
2554 {"/dev/st28", BRACK(FHDEV(DEV_TAPE_MAJOR, 28)), "\\Device\\Tape28", exists_ntdev, S_IFBLK, true},
2555 {"/dev/st29", BRACK(FHDEV(DEV_TAPE_MAJOR, 29)), "\\Device\\Tape29", exists_ntdev, S_IFBLK, true},
2556 {"/dev/st30", BRACK(FHDEV(DEV_TAPE_MAJOR, 30)), "\\Device\\Tape30", exists_ntdev, S_IFBLK, true},
2557 {"/dev/st31", BRACK(FHDEV(DEV_TAPE_MAJOR, 31)), "\\Device\\Tape31", exists_ntdev, S_IFBLK, true},
2558 {"/dev/st32", BRACK(FHDEV(DEV_TAPE_MAJOR, 32)), "\\Device\\Tape32", exists_ntdev, S_IFBLK, true},
2559 {"/dev/st33", BRACK(FHDEV(DEV_TAPE_MAJOR, 33)), "\\Device\\Tape33", exists_ntdev, S_IFBLK, true},
2560 {"/dev/st34", BRACK(FHDEV(DEV_TAPE_MAJOR, 34)), "\\Device\\Tape34", exists_ntdev, S_IFBLK, true},
2561 {"/dev/st35", BRACK(FHDEV(DEV_TAPE_MAJOR, 35)), "\\Device\\Tape35", exists_ntdev, S_IFBLK, true},
2562 {"/dev/st36", BRACK(FHDEV(DEV_TAPE_MAJOR, 36)), "\\Device\\Tape36", exists_ntdev, S_IFBLK, true},
2563 {"/dev/st37", BRACK(FHDEV(DEV_TAPE_MAJOR, 37)), "\\Device\\Tape37", exists_ntdev, S_IFBLK, true},
2564 {"/dev/st38", BRACK(FHDEV(DEV_TAPE_MAJOR, 38)), "\\Device\\Tape38", exists_ntdev, S_IFBLK, true},
2565 {"/dev/st39", BRACK(FHDEV(DEV_TAPE_MAJOR, 39)), "\\Device\\Tape39", exists_ntdev, S_IFBLK, true},
2566 {"/dev/st40", BRACK(FHDEV(DEV_TAPE_MAJOR, 40)), "\\Device\\Tape40", exists_ntdev, S_IFBLK, true},
2567 {"/dev/st41", BRACK(FHDEV(DEV_TAPE_MAJOR, 41)), "\\Device\\Tape41", exists_ntdev, S_IFBLK, true},
2568 {"/dev/st42", BRACK(FHDEV(DEV_TAPE_MAJOR, 42)), "\\Device\\Tape42", exists_ntdev, S_IFBLK, true},
2569 {"/dev/st43", BRACK(FHDEV(DEV_TAPE_MAJOR, 43)), "\\Device\\Tape43", exists_ntdev, S_IFBLK, true},
2570 {"/dev/st44", BRACK(FHDEV(DEV_TAPE_MAJOR, 44)), "\\Device\\Tape44", exists_ntdev, S_IFBLK, true},
2571 {"/dev/st45", BRACK(FHDEV(DEV_TAPE_MAJOR, 45)), "\\Device\\Tape45", exists_ntdev, S_IFBLK, true},
2572 {"/dev/st46", BRACK(FHDEV(DEV_TAPE_MAJOR, 46)), "\\Device\\Tape46", exists_ntdev, S_IFBLK, true},
2573 {"/dev/st47", BRACK(FHDEV(DEV_TAPE_MAJOR, 47)), "\\Device\\Tape47", exists_ntdev, S_IFBLK, true},
2574 {"/dev/st48", BRACK(FHDEV(DEV_TAPE_MAJOR, 48)), "\\Device\\Tape48", exists_ntdev, S_IFBLK, true},
2575 {"/dev/st49", BRACK(FHDEV(DEV_TAPE_MAJOR, 49)), "\\Device\\Tape49", exists_ntdev, S_IFBLK, true},
2576 {"/dev/st50", BRACK(FHDEV(DEV_TAPE_MAJOR, 50)), "\\Device\\Tape50", exists_ntdev, S_IFBLK, true},
2577 {"/dev/st51", BRACK(FHDEV(DEV_TAPE_MAJOR, 51)), "\\Device\\Tape51", exists_ntdev, S_IFBLK, true},
2578 {"/dev/st52", BRACK(FHDEV(DEV_TAPE_MAJOR, 52)), "\\Device\\Tape52", exists_ntdev, S_IFBLK, true},
2579 {"/dev/st53", BRACK(FHDEV(DEV_TAPE_MAJOR, 53)), "\\Device\\Tape53", exists_ntdev, S_IFBLK, true},
2580 {"/dev/st54", BRACK(FHDEV(DEV_TAPE_MAJOR, 54)), "\\Device\\Tape54", exists_ntdev, S_IFBLK, true},
2581 {"/dev/st55", BRACK(FHDEV(DEV_TAPE_MAJOR, 55)), "\\Device\\Tape55", exists_ntdev, S_IFBLK, true},
2582 {"/dev/st56", BRACK(FHDEV(DEV_TAPE_MAJOR, 56)), "\\Device\\Tape56", exists_ntdev, S_IFBLK, true},
2583 {"/dev/st57", BRACK(FHDEV(DEV_TAPE_MAJOR, 57)), "\\Device\\Tape57", exists_ntdev, S_IFBLK, true},
2584 {"/dev/st58", BRACK(FHDEV(DEV_TAPE_MAJOR, 58)), "\\Device\\Tape58", exists_ntdev, S_IFBLK, true},
2585 {"/dev/st59", BRACK(FHDEV(DEV_TAPE_MAJOR, 59)), "\\Device\\Tape59", exists_ntdev, S_IFBLK, true},
2586 {"/dev/st60", BRACK(FHDEV(DEV_TAPE_MAJOR, 60)), "\\Device\\Tape60", exists_ntdev, S_IFBLK, true},
2587 {"/dev/st61", BRACK(FHDEV(DEV_TAPE_MAJOR, 61)), "\\Device\\Tape61", exists_ntdev, S_IFBLK, true},
2588 {"/dev/st62", BRACK(FHDEV(DEV_TAPE_MAJOR, 62)), "\\Device\\Tape62", exists_ntdev, S_IFBLK, true},
2589 {"/dev/st63", BRACK(FHDEV(DEV_TAPE_MAJOR, 63)), "\\Device\\Tape63", exists_ntdev, S_IFBLK, true},
2590 {"/dev/st64", BRACK(FHDEV(DEV_TAPE_MAJOR, 64)), "\\Device\\Tape64", exists_ntdev, S_IFBLK, true},
2591 {"/dev/st65", BRACK(FHDEV(DEV_TAPE_MAJOR, 65)), "\\Device\\Tape65", exists_ntdev, S_IFBLK, true},
2592 {"/dev/st66", BRACK(FHDEV(DEV_TAPE_MAJOR, 66)), "\\Device\\Tape66", exists_ntdev, S_IFBLK, true},
2593 {"/dev/st67", BRACK(FHDEV(DEV_TAPE_MAJOR, 67)), "\\Device\\Tape67", exists_ntdev, S_IFBLK, true},
2594 {"/dev/st68", BRACK(FHDEV(DEV_TAPE_MAJOR, 68)), "\\Device\\Tape68", exists_ntdev, S_IFBLK, true},
2595 {"/dev/st69", BRACK(FHDEV(DEV_TAPE_MAJOR, 69)), "\\Device\\Tape69", exists_ntdev, S_IFBLK, true},
2596 {"/dev/st70", BRACK(FHDEV(DEV_TAPE_MAJOR, 70)), "\\Device\\Tape70", exists_ntdev, S_IFBLK, true},
2597 {"/dev/st71", BRACK(FHDEV(DEV_TAPE_MAJOR, 71)), "\\Device\\Tape71", exists_ntdev, S_IFBLK, true},
2598 {"/dev/st72", BRACK(FHDEV(DEV_TAPE_MAJOR, 72)), "\\Device\\Tape72", exists_ntdev, S_IFBLK, true},
2599 {"/dev/st73", BRACK(FHDEV(DEV_TAPE_MAJOR, 73)), "\\Device\\Tape73", exists_ntdev, S_IFBLK, true},
2600 {"/dev/st74", BRACK(FHDEV(DEV_TAPE_MAJOR, 74)), "\\Device\\Tape74", exists_ntdev, S_IFBLK, true},
2601 {"/dev/st75", BRACK(FHDEV(DEV_TAPE_MAJOR, 75)), "\\Device\\Tape75", exists_ntdev, S_IFBLK, true},
2602 {"/dev/st76", BRACK(FHDEV(DEV_TAPE_MAJOR, 76)), "\\Device\\Tape76", exists_ntdev, S_IFBLK, true},
2603 {"/dev/st77", BRACK(FHDEV(DEV_TAPE_MAJOR, 77)), "\\Device\\Tape77", exists_ntdev, S_IFBLK, true},
2604 {"/dev/st78", BRACK(FHDEV(DEV_TAPE_MAJOR, 78)), "\\Device\\Tape78", exists_ntdev, S_IFBLK, true},
2605 {"/dev/st79", BRACK(FHDEV(DEV_TAPE_MAJOR, 79)), "\\Device\\Tape79", exists_ntdev, S_IFBLK, true},
2606 {"/dev/st80", BRACK(FHDEV(DEV_TAPE_MAJOR, 80)), "\\Device\\Tape80", exists_ntdev, S_IFBLK, true},
2607 {"/dev/st81", BRACK(FHDEV(DEV_TAPE_MAJOR, 81)), "\\Device\\Tape81", exists_ntdev, S_IFBLK, true},
2608 {"/dev/st82", BRACK(FHDEV(DEV_TAPE_MAJOR, 82)), "\\Device\\Tape82", exists_ntdev, S_IFBLK, true},
2609 {"/dev/st83", BRACK(FHDEV(DEV_TAPE_MAJOR, 83)), "\\Device\\Tape83", exists_ntdev, S_IFBLK, true},
2610 {"/dev/st84", BRACK(FHDEV(DEV_TAPE_MAJOR, 84)), "\\Device\\Tape84", exists_ntdev, S_IFBLK, true},
2611 {"/dev/st85", BRACK(FHDEV(DEV_TAPE_MAJOR, 85)), "\\Device\\Tape85", exists_ntdev, S_IFBLK, true},
2612 {"/dev/st86", BRACK(FHDEV(DEV_TAPE_MAJOR, 86)), "\\Device\\Tape86", exists_ntdev, S_IFBLK, true},
2613 {"/dev/st87", BRACK(FHDEV(DEV_TAPE_MAJOR, 87)), "\\Device\\Tape87", exists_ntdev, S_IFBLK, true},
2614 {"/dev/st88", BRACK(FHDEV(DEV_TAPE_MAJOR, 88)), "\\Device\\Tape88", exists_ntdev, S_IFBLK, true},
2615 {"/dev/st89", BRACK(FHDEV(DEV_TAPE_MAJOR, 89)), "\\Device\\Tape89", exists_ntdev, S_IFBLK, true},
2616 {"/dev/st90", BRACK(FHDEV(DEV_TAPE_MAJOR, 90)), "\\Device\\Tape90", exists_ntdev, S_IFBLK, true},
2617 {"/dev/st91", BRACK(FHDEV(DEV_TAPE_MAJOR, 91)), "\\Device\\Tape91", exists_ntdev, S_IFBLK, true},
2618 {"/dev/st92", BRACK(FHDEV(DEV_TAPE_MAJOR, 92)), "\\Device\\Tape92", exists_ntdev, S_IFBLK, true},
2619 {"/dev/st93", BRACK(FHDEV(DEV_TAPE_MAJOR, 93)), "\\Device\\Tape93", exists_ntdev, S_IFBLK, true},
2620 {"/dev/st94", BRACK(FHDEV(DEV_TAPE_MAJOR, 94)), "\\Device\\Tape94", exists_ntdev, S_IFBLK, true},
2621 {"/dev/st95", BRACK(FHDEV(DEV_TAPE_MAJOR, 95)), "\\Device\\Tape95", exists_ntdev, S_IFBLK, true},
2622 {"/dev/st96", BRACK(FHDEV(DEV_TAPE_MAJOR, 96)), "\\Device\\Tape96", exists_ntdev, S_IFBLK, true},
2623 {"/dev/st97", BRACK(FHDEV(DEV_TAPE_MAJOR, 97)), "\\Device\\Tape97", exists_ntdev, S_IFBLK, true},
2624 {"/dev/st98", BRACK(FHDEV(DEV_TAPE_MAJOR, 98)), "\\Device\\Tape98", exists_ntdev, S_IFBLK, true},
2625 {"/dev/st99", BRACK(FHDEV(DEV_TAPE_MAJOR, 99)), "\\Device\\Tape99", exists_ntdev, S_IFBLK, true},
2626 {"/dev/st100", BRACK(FHDEV(DEV_TAPE_MAJOR, 100)), "\\Device\\Tape100", exists_ntdev, S_IFBLK, true},
2627 {"/dev/st101", BRACK(FHDEV(DEV_TAPE_MAJOR, 101)), "\\Device\\Tape101", exists_ntdev, S_IFBLK, true},
2628 {"/dev/st102", BRACK(FHDEV(DEV_TAPE_MAJOR, 102)), "\\Device\\Tape102", exists_ntdev, S_IFBLK, true},
2629 {"/dev/st103", BRACK(FHDEV(DEV_TAPE_MAJOR, 103)), "\\Device\\Tape103", exists_ntdev, S_IFBLK, true},
2630 {"/dev/st104", BRACK(FHDEV(DEV_TAPE_MAJOR, 104)), "\\Device\\Tape104", exists_ntdev, S_IFBLK, true},
2631 {"/dev/st105", BRACK(FHDEV(DEV_TAPE_MAJOR, 105)), "\\Device\\Tape105", exists_ntdev, S_IFBLK, true},
2632 {"/dev/st106", BRACK(FHDEV(DEV_TAPE_MAJOR, 106)), "\\Device\\Tape106", exists_ntdev, S_IFBLK, true},
2633 {"/dev/st107", BRACK(FHDEV(DEV_TAPE_MAJOR, 107)), "\\Device\\Tape107", exists_ntdev, S_IFBLK, true},
2634 {"/dev/st108", BRACK(FHDEV(DEV_TAPE_MAJOR, 108)), "\\Device\\Tape108", exists_ntdev, S_IFBLK, true},
2635 {"/dev/st109", BRACK(FHDEV(DEV_TAPE_MAJOR, 109)), "\\Device\\Tape109", exists_ntdev, S_IFBLK, true},
2636 {"/dev/st110", BRACK(FHDEV(DEV_TAPE_MAJOR, 110)), "\\Device\\Tape110", exists_ntdev, S_IFBLK, true},
2637 {"/dev/st111", BRACK(FHDEV(DEV_TAPE_MAJOR, 111)), "\\Device\\Tape111", exists_ntdev, S_IFBLK, true},
2638 {"/dev/st112", BRACK(FHDEV(DEV_TAPE_MAJOR, 112)), "\\Device\\Tape112", exists_ntdev, S_IFBLK, true},
2639 {"/dev/st113", BRACK(FHDEV(DEV_TAPE_MAJOR, 113)), "\\Device\\Tape113", exists_ntdev, S_IFBLK, true},
2640 {"/dev/st114", BRACK(FHDEV(DEV_TAPE_MAJOR, 114)), "\\Device\\Tape114", exists_ntdev, S_IFBLK, true},
2641 {"/dev/st115", BRACK(FHDEV(DEV_TAPE_MAJOR, 115)), "\\Device\\Tape115", exists_ntdev, S_IFBLK, true},
2642 {"/dev/st116", BRACK(FHDEV(DEV_TAPE_MAJOR, 116)), "\\Device\\Tape116", exists_ntdev, S_IFBLK, true},
2643 {"/dev/st117", BRACK(FHDEV(DEV_TAPE_MAJOR, 117)), "\\Device\\Tape117", exists_ntdev, S_IFBLK, true},
2644 {"/dev/st118", BRACK(FHDEV(DEV_TAPE_MAJOR, 118)), "\\Device\\Tape118", exists_ntdev, S_IFBLK, true},
2645 {"/dev/st119", BRACK(FHDEV(DEV_TAPE_MAJOR, 119)), "\\Device\\Tape119", exists_ntdev, S_IFBLK, true},
2646 {"/dev/st120", BRACK(FHDEV(DEV_TAPE_MAJOR, 120)), "\\Device\\Tape120", exists_ntdev, S_IFBLK, true},
2647 {"/dev/st121", BRACK(FHDEV(DEV_TAPE_MAJOR, 121)), "\\Device\\Tape121", exists_ntdev, S_IFBLK, true},
2648 {"/dev/st122", BRACK(FHDEV(DEV_TAPE_MAJOR, 122)), "\\Device\\Tape122", exists_ntdev, S_IFBLK, true},
2649 {"/dev/st123", BRACK(FHDEV(DEV_TAPE_MAJOR, 123)), "\\Device\\Tape123", exists_ntdev, S_IFBLK, true},
2650 {"/dev/st124", BRACK(FHDEV(DEV_TAPE_MAJOR, 124)), "\\Device\\Tape124", exists_ntdev, S_IFBLK, true},
2651 {"/dev/st125", BRACK(FHDEV(DEV_TAPE_MAJOR, 125)), "\\Device\\Tape125", exists_ntdev, S_IFBLK, true},
2652 {"/dev/st126", BRACK(FHDEV(DEV_TAPE_MAJOR, 126)), "\\Device\\Tape126", exists_ntdev, S_IFBLK, true},
2653 {"/dev/st127", BRACK(FHDEV(DEV_TAPE_MAJOR, 127)), "\\Device\\Tape127", exists_ntdev, S_IFBLK, true},
2654 {"/dev/tty", BRACK(FH_TTY), "/dev/tty", exists, S_IFCHR, true},
2655 {"/dev/ttyS0", BRACK(FHDEV(DEV_SERIAL_MAJOR, 0)), "\\??\\COM1", exists_ntdev, S_IFCHR, true},
2656 {"/dev/ttyS1", BRACK(FHDEV(DEV_SERIAL_MAJOR, 1)), "\\??\\COM2", exists_ntdev, S_IFCHR, true},
2657 {"/dev/ttyS2", BRACK(FHDEV(DEV_SERIAL_MAJOR, 2)), "\\??\\COM3", exists_ntdev, S_IFCHR, true},
2658 {"/dev/ttyS3", BRACK(FHDEV(DEV_SERIAL_MAJOR, 3)), "\\??\\COM4", exists_ntdev, S_IFCHR, true},
2659 {"/dev/ttyS4", BRACK(FHDEV(DEV_SERIAL_MAJOR, 4)), "\\??\\COM5", exists_ntdev, S_IFCHR, true},
2660 {"/dev/ttyS5", BRACK(FHDEV(DEV_SERIAL_MAJOR, 5)), "\\??\\COM6", exists_ntdev, S_IFCHR, true},
2661 {"/dev/ttyS6", BRACK(FHDEV(DEV_SERIAL_MAJOR, 6)), "\\??\\COM7", exists_ntdev, S_IFCHR, true},
2662 {"/dev/ttyS7", BRACK(FHDEV(DEV_SERIAL_MAJOR, 7)), "\\??\\COM8", exists_ntdev, S_IFCHR, true},
2663 {"/dev/ttyS8", BRACK(FHDEV(DEV_SERIAL_MAJOR, 8)), "\\??\\COM9", exists_ntdev, S_IFCHR, true},
2664 {"/dev/ttyS9", BRACK(FHDEV(DEV_SERIAL_MAJOR, 9)), "\\??\\COM10", exists_ntdev, S_IFCHR, true},
2665 {"/dev/ttyS10", BRACK(FHDEV(DEV_SERIAL_MAJOR, 10)), "\\??\\COM11", exists_ntdev, S_IFCHR, true},
2666 {"/dev/ttyS11", BRACK(FHDEV(DEV_SERIAL_MAJOR, 11)), "\\??\\COM12", exists_ntdev, S_IFCHR, true},
2667 {"/dev/ttyS12", BRACK(FHDEV(DEV_SERIAL_MAJOR, 12)), "\\??\\COM13", exists_ntdev, S_IFCHR, true},
2668 {"/dev/ttyS13", BRACK(FHDEV(DEV_SERIAL_MAJOR, 13)), "\\??\\COM14", exists_ntdev, S_IFCHR, true},
2669 {"/dev/ttyS14", BRACK(FHDEV(DEV_SERIAL_MAJOR, 14)), "\\??\\COM15", exists_ntdev, S_IFCHR, true},
2670 {"/dev/ttyS15", BRACK(FHDEV(DEV_SERIAL_MAJOR, 15)), "\\??\\COM16", exists_ntdev, S_IFCHR, true},
2671 {"/dev/ttyS16", BRACK(FHDEV(DEV_SERIAL_MAJOR, 16)), "\\??\\COM17", exists_ntdev, S_IFCHR, true},
2672 {"/dev/ttyS17", BRACK(FHDEV(DEV_SERIAL_MAJOR, 17)), "\\??\\COM18", exists_ntdev, S_IFCHR, true},
2673 {"/dev/ttyS18", BRACK(FHDEV(DEV_SERIAL_MAJOR, 18)), "\\??\\COM19", exists_ntdev, S_IFCHR, true},
2674 {"/dev/ttyS19", BRACK(FHDEV(DEV_SERIAL_MAJOR, 19)), "\\??\\COM20", exists_ntdev, S_IFCHR, true},
2675 {"/dev/ttyS20", BRACK(FHDEV(DEV_SERIAL_MAJOR, 20)), "\\??\\COM21", exists_ntdev, S_IFCHR, true},
2676 {"/dev/ttyS21", BRACK(FHDEV(DEV_SERIAL_MAJOR, 21)), "\\??\\COM22", exists_ntdev, S_IFCHR, true},
2677 {"/dev/ttyS22", BRACK(FHDEV(DEV_SERIAL_MAJOR, 22)), "\\??\\COM23", exists_ntdev, S_IFCHR, true},
2678 {"/dev/ttyS23", BRACK(FHDEV(DEV_SERIAL_MAJOR, 23)), "\\??\\COM24", exists_ntdev, S_IFCHR, true},
2679 {"/dev/ttyS24", BRACK(FHDEV(DEV_SERIAL_MAJOR, 24)), "\\??\\COM25", exists_ntdev, S_IFCHR, true},
2680 {"/dev/ttyS25", BRACK(FHDEV(DEV_SERIAL_MAJOR, 25)), "\\??\\COM26", exists_ntdev, S_IFCHR, true},
2681 {"/dev/ttyS26", BRACK(FHDEV(DEV_SERIAL_MAJOR, 26)), "\\??\\COM27", exists_ntdev, S_IFCHR, true},
2682 {"/dev/ttyS27", BRACK(FHDEV(DEV_SERIAL_MAJOR, 27)), "\\??\\COM28", exists_ntdev, S_IFCHR, true},
2683 {"/dev/ttyS28", BRACK(FHDEV(DEV_SERIAL_MAJOR, 28)), "\\??\\COM29", exists_ntdev, S_IFCHR, true},
2684 {"/dev/ttyS29", BRACK(FHDEV(DEV_SERIAL_MAJOR, 29)), "\\??\\COM30", exists_ntdev, S_IFCHR, true},
2685 {"/dev/ttyS30", BRACK(FHDEV(DEV_SERIAL_MAJOR, 30)), "\\??\\COM31", exists_ntdev, S_IFCHR, true},
2686 {"/dev/ttyS31", BRACK(FHDEV(DEV_SERIAL_MAJOR, 31)), "\\??\\COM32", exists_ntdev, S_IFCHR, true},
2687 {"/dev/ttyS32", BRACK(FHDEV(DEV_SERIAL_MAJOR, 32)), "\\??\\COM33", exists_ntdev, S_IFCHR, true},
2688 {"/dev/ttyS33", BRACK(FHDEV(DEV_SERIAL_MAJOR, 33)), "\\??\\COM34", exists_ntdev, S_IFCHR, true},
2689 {"/dev/ttyS34", BRACK(FHDEV(DEV_SERIAL_MAJOR, 34)), "\\??\\COM35", exists_ntdev, S_IFCHR, true},
2690 {"/dev/ttyS35", BRACK(FHDEV(DEV_SERIAL_MAJOR, 35)), "\\??\\COM36", exists_ntdev, S_IFCHR, true},
2691 {"/dev/ttyS36", BRACK(FHDEV(DEV_SERIAL_MAJOR, 36)), "\\??\\COM37", exists_ntdev, S_IFCHR, true},
2692 {"/dev/ttyS37", BRACK(FHDEV(DEV_SERIAL_MAJOR, 37)), "\\??\\COM38", exists_ntdev, S_IFCHR, true},
2693 {"/dev/ttyS38", BRACK(FHDEV(DEV_SERIAL_MAJOR, 38)), "\\??\\COM39", exists_ntdev, S_IFCHR, true},
2694 {"/dev/ttyS39", BRACK(FHDEV(DEV_SERIAL_MAJOR, 39)), "\\??\\COM40", exists_ntdev, S_IFCHR, true},
2695 {"/dev/ttyS40", BRACK(FHDEV(DEV_SERIAL_MAJOR, 40)), "\\??\\COM41", exists_ntdev, S_IFCHR, true},
2696 {"/dev/ttyS41", BRACK(FHDEV(DEV_SERIAL_MAJOR, 41)), "\\??\\COM42", exists_ntdev, S_IFCHR, true},
2697 {"/dev/ttyS42", BRACK(FHDEV(DEV_SERIAL_MAJOR, 42)), "\\??\\COM43", exists_ntdev, S_IFCHR, true},
2698 {"/dev/ttyS43", BRACK(FHDEV(DEV_SERIAL_MAJOR, 43)), "\\??\\COM44", exists_ntdev, S_IFCHR, true},
2699 {"/dev/ttyS44", BRACK(FHDEV(DEV_SERIAL_MAJOR, 44)), "\\??\\COM45", exists_ntdev, S_IFCHR, true},
2700 {"/dev/ttyS45", BRACK(FHDEV(DEV_SERIAL_MAJOR, 45)), "\\??\\COM46", exists_ntdev, S_IFCHR, true},
2701 {"/dev/ttyS46", BRACK(FHDEV(DEV_SERIAL_MAJOR, 46)), "\\??\\COM47", exists_ntdev, S_IFCHR, true},
2702 {"/dev/ttyS47", BRACK(FHDEV(DEV_SERIAL_MAJOR, 47)), "\\??\\COM48", exists_ntdev, S_IFCHR, true},
2703 {"/dev/ttyS48", BRACK(FHDEV(DEV_SERIAL_MAJOR, 48)), "\\??\\COM49", exists_ntdev, S_IFCHR, true},
2704 {"/dev/ttyS49", BRACK(FHDEV(DEV_SERIAL_MAJOR, 49)), "\\??\\COM50", exists_ntdev, S_IFCHR, true},
2705 {"/dev/ttyS50", BRACK(FHDEV(DEV_SERIAL_MAJOR, 50)), "\\??\\COM51", exists_ntdev, S_IFCHR, true},
2706 {"/dev/ttyS51", BRACK(FHDEV(DEV_SERIAL_MAJOR, 51)), "\\??\\COM52", exists_ntdev, S_IFCHR, true},
2707 {"/dev/ttyS52", BRACK(FHDEV(DEV_SERIAL_MAJOR, 52)), "\\??\\COM53", exists_ntdev, S_IFCHR, true},
2708 {"/dev/ttyS53", BRACK(FHDEV(DEV_SERIAL_MAJOR, 53)), "\\??\\COM54", exists_ntdev, S_IFCHR, true},
2709 {"/dev/ttyS54", BRACK(FHDEV(DEV_SERIAL_MAJOR, 54)), "\\??\\COM55", exists_ntdev, S_IFCHR, true},
2710 {"/dev/ttyS55", BRACK(FHDEV(DEV_SERIAL_MAJOR, 55)), "\\??\\COM56", exists_ntdev, S_IFCHR, true},
2711 {"/dev/ttyS56", BRACK(FHDEV(DEV_SERIAL_MAJOR, 56)), "\\??\\COM57", exists_ntdev, S_IFCHR, true},
2712 {"/dev/ttyS57", BRACK(FHDEV(DEV_SERIAL_MAJOR, 57)), "\\??\\COM58", exists_ntdev, S_IFCHR, true},
2713 {"/dev/ttyS58", BRACK(FHDEV(DEV_SERIAL_MAJOR, 58)), "\\??\\COM59", exists_ntdev, S_IFCHR, true},
2714 {"/dev/ttyS59", BRACK(FHDEV(DEV_SERIAL_MAJOR, 59)), "\\??\\COM60", exists_ntdev, S_IFCHR, true},
2715 {"/dev/ttyS60", BRACK(FHDEV(DEV_SERIAL_MAJOR, 60)), "\\??\\COM61", exists_ntdev, S_IFCHR, true},
2716 {"/dev/ttyS61", BRACK(FHDEV(DEV_SERIAL_MAJOR, 61)), "\\??\\COM62", exists_ntdev, S_IFCHR, true},
2717 {"/dev/ttyS62", BRACK(FHDEV(DEV_SERIAL_MAJOR, 62)), "\\??\\COM63", exists_ntdev, S_IFCHR, true},
2718 {"/dev/ttyS63", BRACK(FHDEV(DEV_SERIAL_MAJOR, 63)), "\\??\\COM64", exists_ntdev, S_IFCHR, true},
2719 {"/dev/urandom", BRACK(FH_URANDOM), "/dev/urandom", exists, S_IFCHR, true},
2720 {"/dev/windows", BRACK(FH_WINDOWS), "/dev/windows", exists, S_IFCHR, true},
2721 {"/dev/zero", BRACK(FH_ZERO), "/dev/zero", exists, S_IFCHR, true},
2722 {":fifo", BRACK(FH_FIFO), "/dev/fifo", exists_internal, S_IFCHR, false},
2723 {":pipe", BRACK(FH_PIPE), "/dev/pipe", exists_internal, S_IFCHR, false},
2724 {":ptym0", BRACK(FHDEV(DEV_PTYM_MAJOR, 0)), "/dev/ptym0", exists_internal, S_IFCHR, false},
2725 {":ptym1", BRACK(FHDEV(DEV_PTYM_MAJOR, 1)), "/dev/ptym1", exists_internal, S_IFCHR, false},
2726 {":ptym2", BRACK(FHDEV(DEV_PTYM_MAJOR, 2)), "/dev/ptym2", exists_internal, S_IFCHR, false},
2727 {":ptym3", BRACK(FHDEV(DEV_PTYM_MAJOR, 3)), "/dev/ptym3", exists_internal, S_IFCHR, false},
2728 {":ptym4", BRACK(FHDEV(DEV_PTYM_MAJOR, 4)), "/dev/ptym4", exists_internal, S_IFCHR, false},
2729 {":ptym5", BRACK(FHDEV(DEV_PTYM_MAJOR, 5)), "/dev/ptym5", exists_internal, S_IFCHR, false},
2730 {":ptym6", BRACK(FHDEV(DEV_PTYM_MAJOR, 6)), "/dev/ptym6", exists_internal, S_IFCHR, false},
2731 {":ptym7", BRACK(FHDEV(DEV_PTYM_MAJOR, 7)), "/dev/ptym7", exists_internal, S_IFCHR, false},
2732 {":ptym8", BRACK(FHDEV(DEV_PTYM_MAJOR, 8)), "/dev/ptym8", exists_internal, S_IFCHR, false},
2733 {":ptym9", BRACK(FHDEV(DEV_PTYM_MAJOR, 9)), "/dev/ptym9", exists_internal, S_IFCHR, false},
2734 {":ptym10", BRACK(FHDEV(DEV_PTYM_MAJOR, 10)), "/dev/ptym10", exists_internal, S_IFCHR, false},
2735 {":ptym11", BRACK(FHDEV(DEV_PTYM_MAJOR, 11)), "/dev/ptym11", exists_internal, S_IFCHR, false},
2736 {":ptym12", BRACK(FHDEV(DEV_PTYM_MAJOR, 12)), "/dev/ptym12", exists_internal, S_IFCHR, false},
2737 {":ptym13", BRACK(FHDEV(DEV_PTYM_MAJOR, 13)), "/dev/ptym13", exists_internal, S_IFCHR, false},
2738 {":ptym14", BRACK(FHDEV(DEV_PTYM_MAJOR, 14)), "/dev/ptym14", exists_internal, S_IFCHR, false},
2739 {":ptym15", BRACK(FHDEV(DEV_PTYM_MAJOR, 15)), "/dev/ptym15", exists_internal, S_IFCHR, false},
2740 {":ptym16", BRACK(FHDEV(DEV_PTYM_MAJOR, 16)), "/dev/ptym16", exists_internal, S_IFCHR, false},
2741 {":ptym17", BRACK(FHDEV(DEV_PTYM_MAJOR, 17)), "/dev/ptym17", exists_internal, S_IFCHR, false},
2742 {":ptym18", BRACK(FHDEV(DEV_PTYM_MAJOR, 18)), "/dev/ptym18", exists_internal, S_IFCHR, false},
2743 {":ptym19", BRACK(FHDEV(DEV_PTYM_MAJOR, 19)), "/dev/ptym19", exists_internal, S_IFCHR, false},
2744 {":ptym20", BRACK(FHDEV(DEV_PTYM_MAJOR, 20)), "/dev/ptym20", exists_internal, S_IFCHR, false},
2745 {":ptym21", BRACK(FHDEV(DEV_PTYM_MAJOR, 21)), "/dev/ptym21", exists_internal, S_IFCHR, false},
2746 {":ptym22", BRACK(FHDEV(DEV_PTYM_MAJOR, 22)), "/dev/ptym22", exists_internal, S_IFCHR, false},
2747 {":ptym23", BRACK(FHDEV(DEV_PTYM_MAJOR, 23)), "/dev/ptym23", exists_internal, S_IFCHR, false},
2748 {":ptym24", BRACK(FHDEV(DEV_PTYM_MAJOR, 24)), "/dev/ptym24", exists_internal, S_IFCHR, false},
2749 {":ptym25", BRACK(FHDEV(DEV_PTYM_MAJOR, 25)), "/dev/ptym25", exists_internal, S_IFCHR, false},
2750 {":ptym26", BRACK(FHDEV(DEV_PTYM_MAJOR, 26)), "/dev/ptym26", exists_internal, S_IFCHR, false},
2751 {":ptym27", BRACK(FHDEV(DEV_PTYM_MAJOR, 27)), "/dev/ptym27", exists_internal, S_IFCHR, false},
2752 {":ptym28", BRACK(FHDEV(DEV_PTYM_MAJOR, 28)), "/dev/ptym28", exists_internal, S_IFCHR, false},
2753 {":ptym29", BRACK(FHDEV(DEV_PTYM_MAJOR, 29)), "/dev/ptym29", exists_internal, S_IFCHR, false},
2754 {":ptym30", BRACK(FHDEV(DEV_PTYM_MAJOR, 30)), "/dev/ptym30", exists_internal, S_IFCHR, false},
2755 {":ptym31", BRACK(FHDEV(DEV_PTYM_MAJOR, 31)), "/dev/ptym31", exists_internal, S_IFCHR, false},
2756 {":ptym32", BRACK(FHDEV(DEV_PTYM_MAJOR, 32)), "/dev/ptym32", exists_internal, S_IFCHR, false},
2757 {":ptym33", BRACK(FHDEV(DEV_PTYM_MAJOR, 33)), "/dev/ptym33", exists_internal, S_IFCHR, false},
2758 {":ptym34", BRACK(FHDEV(DEV_PTYM_MAJOR, 34)), "/dev/ptym34", exists_internal, S_IFCHR, false},
2759 {":ptym35", BRACK(FHDEV(DEV_PTYM_MAJOR, 35)), "/dev/ptym35", exists_internal, S_IFCHR, false},
2760 {":ptym36", BRACK(FHDEV(DEV_PTYM_MAJOR, 36)), "/dev/ptym36", exists_internal, S_IFCHR, false},
2761 {":ptym37", BRACK(FHDEV(DEV_PTYM_MAJOR, 37)), "/dev/ptym37", exists_internal, S_IFCHR, false},
2762 {":ptym38", BRACK(FHDEV(DEV_PTYM_MAJOR, 38)), "/dev/ptym38", exists_internal, S_IFCHR, false},
2763 {":ptym39", BRACK(FHDEV(DEV_PTYM_MAJOR, 39)), "/dev/ptym39", exists_internal, S_IFCHR, false},
2764 {":ptym40", BRACK(FHDEV(DEV_PTYM_MAJOR, 40)), "/dev/ptym40", exists_internal, S_IFCHR, false},
2765 {":ptym41", BRACK(FHDEV(DEV_PTYM_MAJOR, 41)), "/dev/ptym41", exists_internal, S_IFCHR, false},
2766 {":ptym42", BRACK(FHDEV(DEV_PTYM_MAJOR, 42)), "/dev/ptym42", exists_internal, S_IFCHR, false},
2767 {":ptym43", BRACK(FHDEV(DEV_PTYM_MAJOR, 43)), "/dev/ptym43", exists_internal, S_IFCHR, false},
2768 {":ptym44", BRACK(FHDEV(DEV_PTYM_MAJOR, 44)), "/dev/ptym44", exists_internal, S_IFCHR, false},
2769 {":ptym45", BRACK(FHDEV(DEV_PTYM_MAJOR, 45)), "/dev/ptym45", exists_internal, S_IFCHR, false},
2770 {":ptym46", BRACK(FHDEV(DEV_PTYM_MAJOR, 46)), "/dev/ptym46", exists_internal, S_IFCHR, false},
2771 {":ptym47", BRACK(FHDEV(DEV_PTYM_MAJOR, 47)), "/dev/ptym47", exists_internal, S_IFCHR, false},
2772 {":ptym48", BRACK(FHDEV(DEV_PTYM_MAJOR, 48)), "/dev/ptym48", exists_internal, S_IFCHR, false},
2773 {":ptym49", BRACK(FHDEV(DEV_PTYM_MAJOR, 49)), "/dev/ptym49", exists_internal, S_IFCHR, false},
2774 {":ptym50", BRACK(FHDEV(DEV_PTYM_MAJOR, 50)), "/dev/ptym50", exists_internal, S_IFCHR, false},
2775 {":ptym51", BRACK(FHDEV(DEV_PTYM_MAJOR, 51)), "/dev/ptym51", exists_internal, S_IFCHR, false},
2776 {":ptym52", BRACK(FHDEV(DEV_PTYM_MAJOR, 52)), "/dev/ptym52", exists_internal, S_IFCHR, false},
2777 {":ptym53", BRACK(FHDEV(DEV_PTYM_MAJOR, 53)), "/dev/ptym53", exists_internal, S_IFCHR, false},
2778 {":ptym54", BRACK(FHDEV(DEV_PTYM_MAJOR, 54)), "/dev/ptym54", exists_internal, S_IFCHR, false},
2779 {":ptym55", BRACK(FHDEV(DEV_PTYM_MAJOR, 55)), "/dev/ptym55", exists_internal, S_IFCHR, false},
2780 {":ptym56", BRACK(FHDEV(DEV_PTYM_MAJOR, 56)), "/dev/ptym56", exists_internal, S_IFCHR, false},
2781 {":ptym57", BRACK(FHDEV(DEV_PTYM_MAJOR, 57)), "/dev/ptym57", exists_internal, S_IFCHR, false},
2782 {":ptym58", BRACK(FHDEV(DEV_PTYM_MAJOR, 58)), "/dev/ptym58", exists_internal, S_IFCHR, false},
2783 {":ptym59", BRACK(FHDEV(DEV_PTYM_MAJOR, 59)), "/dev/ptym59", exists_internal, S_IFCHR, false},
2784 {":ptym60", BRACK(FHDEV(DEV_PTYM_MAJOR, 60)), "/dev/ptym60", exists_internal, S_IFCHR, false},
2785 {":ptym61", BRACK(FHDEV(DEV_PTYM_MAJOR, 61)), "/dev/ptym61", exists_internal, S_IFCHR, false},
2786 {":ptym62", BRACK(FHDEV(DEV_PTYM_MAJOR, 62)), "/dev/ptym62", exists_internal, S_IFCHR, false},
2787 {":ptym63", BRACK(FHDEV(DEV_PTYM_MAJOR, 63)), "/dev/ptym63", exists_internal, S_IFCHR, false}
2788 };
2789
2790 const device *cons_dev = dev_storage + 20;
2791 const device *console_dev = dev_storage + 84;
2792 const device *ptym_dev = dev_storage + 2580;
2793 const device *ptys_dev = dev_storage + 237;
2794 const device *urandom_dev = dev_storage + 2575;
2795
2796
2797 static KR_device_t KR_find_keyword (const char *KR_keyword, int KR_length)
2798 {
2799
2800 switch (KR_length)
2801 {
2802 case 4:
2803 if (strncmp (KR_keyword, "/dev", 4) == 0)
2804 {
2805 {
2806 return dev_storage + 0;
2807
2808 }
2809 }
2810 else
2811 {
2812 {
2813 return NULL;
2814
2815 }
2816 }
2817 case 5:
2818 switch (KR_keyword [1])
2819 {
2820 case 'p':
2821 if (strncmp (KR_keyword, ":pipe", 5) == 0)
2822 {
2823 {
2824 return dev_storage + 2579;
2825
2826 }
2827 }
2828 else
2829 {
2830 {
2831 return NULL;
2832
2833 }
2834 }
2835 case 'f':
2836 if (strncmp (KR_keyword, ":fifo", 5) == 0)
2837 {
2838 {
2839 return dev_storage + 2578;
2840
2841 }
2842 }
2843 else
2844 {
2845 {
2846 return NULL;
2847
2848 }
2849 }
2850 default:
2851 {
2852 return NULL;
2853
2854 }
2855 }
2856 case 6:
2857 switch (KR_keyword [5])
2858 {
2859 case '9':
2860 if (strncmp (KR_keyword, ":ptym9", 6) == 0)
2861 {
2862 {
2863 return dev_storage + 2589;
2864
2865 }
2866 }
2867 else
2868 {
2869 {
2870 return NULL;
2871
2872 }
2873 }
2874 case '8':
2875 if (strncmp (KR_keyword, ":ptym8", 6) == 0)
2876 {
2877 {
2878 return dev_storage + 2588;
2879
2880 }
2881 }
2882 else
2883 {
2884 {
2885 return NULL;
2886
2887 }
2888 }
2889 case '7':
2890 if (strncmp (KR_keyword, ":ptym7", 6) == 0)
2891 {
2892 {
2893 return dev_storage + 2587;
2894
2895 }
2896 }
2897 else
2898 {
2899 {
2900 return NULL;
2901
2902 }
2903 }
2904 case '6':
2905 if (strncmp (KR_keyword, ":ptym6", 6) == 0)
2906 {
2907 {
2908 return dev_storage + 2586;
2909
2910 }
2911 }
2912 else
2913 {
2914 {
2915 return NULL;
2916
2917 }
2918 }
2919 case '5':
2920 if (strncmp (KR_keyword, ":ptym5", 6) == 0)
2921 {
2922 {
2923 return dev_storage + 2585;
2924
2925 }
2926 }
2927 else
2928 {
2929 {
2930 return NULL;
2931
2932 }
2933 }
2934 case '4':
2935 if (strncmp (KR_keyword, ":ptym4", 6) == 0)
2936 {
2937 {
2938 return dev_storage + 2584;
2939
2940 }
2941 }
2942 else
2943 {
2944 {
2945 return NULL;
2946
2947 }
2948 }
2949 case '3':
2950 if (strncmp (KR_keyword, ":ptym3", 6) == 0)
2951 {
2952 {
2953 return dev_storage + 2583;
2954
2955 }
2956 }
2957 else
2958 {
2959 {
2960 return NULL;
2961
2962 }
2963 }
2964 case '2':
2965 if (strncmp (KR_keyword, ":ptym2", 6) == 0)
2966 {
2967 {
2968 return dev_storage + 2582;
2969
2970 }
2971 }
2972 else
2973 {
2974 {
2975 return NULL;
2976
2977 }
2978 }
2979 case '1':
2980 if (strncmp (KR_keyword, ":ptym1", 6) == 0)
2981 {
2982 {
2983 return dev_storage + 2581;
2984
2985 }
2986 }
2987 else
2988 {
2989 {
2990 return NULL;
2991
2992 }
2993 }
2994 case '0':
2995 if (strncmp (KR_keyword, ":ptym0", 6) == 0)
2996 {
2997 {
2998 return dev_storage + 2580;
2999
3000 }
3001 }
3002 else
3003 {
3004 {
3005 return NULL;
3006
3007 }
3008 }
3009 default:
3010 {
3011 return NULL;
3012
3013 }
3014 }
3015 case 7:
3016 switch (KR_keyword [5])
3017 {
3018 case '6':
3019 switch (KR_keyword [6])
3020 {
3021 case '3':
3022 if (strncmp (KR_keyword, ":ptym63", 7) == 0)
3023 {
3024 {
3025 return dev_storage + 2643;
3026
3027 }
3028 }
3029 else
3030 {
3031 {
3032 return NULL;
3033
3034 }
3035 }
3036 case '2':
3037 if (strncmp (KR_keyword, ":ptym62", 7) == 0)
3038 {
3039 {
3040 return dev_storage + 2642;
3041
3042 }
3043 }
3044 else
3045 {
3046 {
3047 return NULL;
3048
3049 }
3050 }
3051 case '1':
3052 if (strncmp (KR_keyword, ":ptym61", 7) == 0)
3053 {
3054 {
3055 return dev_storage + 2641;
3056
3057 }
3058 }
3059 else
3060 {
3061 {
3062 return NULL;
3063
3064 }
3065 }
3066 case '0':
3067 if (strncmp (KR_keyword, ":ptym60", 7) == 0)
3068 {
3069 {
3070 return dev_storage + 2640;
3071
3072 }
3073 }
3074 else
3075 {
3076 {
3077 return NULL;
3078
3079 }
3080 }
3081 default:
3082 {
3083 return NULL;
3084
3085 }
3086 }
3087 case '5':
3088 switch (KR_keyword [6])
3089 {
3090 case '9':
3091 if (strncmp (KR_keyword, ":ptym59", 7) == 0)
3092 {
3093 {
3094 return dev_storage + 2639;
3095
3096 }
3097 }
3098 else
3099 {
3100 {
3101 return NULL;
3102
3103 }
3104 }
3105 case '8':
3106 if (strncmp (KR_keyword, ":ptym58", 7) == 0)
3107 {
3108 {
3109 return dev_storage + 2638;
3110
3111 }
3112 }
3113 else
3114 {
3115 {
3116 return NULL;
3117
3118 }
3119 }
3120 case '7':
3121 if (strncmp (KR_keyword, ":ptym57", 7) == 0)
3122 {
3123 {
3124 return dev_storage + 2637;
3125
3126 }
3127 }
3128 else
3129 {
3130 {
3131 return NULL;
3132
3133 }
3134 }
3135 case '6':
3136 if (strncmp (KR_keyword, ":ptym56", 7) == 0)
3137 {
3138 {
3139 return dev_storage + 2636;
3140
3141 }
3142 }
3143 else
3144 {
3145 {
3146 return NULL;
3147
3148 }
3149 }
3150 case '5':
3151 if (strncmp (KR_keyword, ":ptym55", 7) == 0)
3152 {
3153 {
3154 return dev_storage + 2635;
3155
3156 }
3157 }
3158 else
3159 {
3160 {
3161 return NULL;
3162
3163 }
3164 }
3165 case '4':
3166 if (strncmp (KR_keyword, ":ptym54", 7) == 0)
3167 {
3168 {
3169 return dev_storage + 2634;
3170
3171 }
3172 }
3173 else
3174 {
3175 {
3176 return NULL;
3177
3178 }
3179 }
3180 case '3':
3181 if (strncmp (KR_keyword, ":ptym53", 7) == 0)
3182 {
3183 {
3184 return dev_storage + 2633;
3185
3186 }
3187 }
3188 else
3189 {
3190 {
3191 return NULL;
3192
3193 }
3194 }
3195 case '2':
3196 if (strncmp (KR_keyword, ":ptym52", 7) == 0)
3197 {
3198 {
3199 return dev_storage + 2632;
3200
3201 }
3202 }
3203 else
3204 {
3205 {
3206 return NULL;
3207
3208 }
3209 }
3210 case '1':
3211 if (strncmp (KR_keyword, ":ptym51", 7) == 0)
3212 {
3213 {
3214 return dev_storage + 2631;
3215
3216 }
3217 }
3218 else
3219 {
3220 {
3221 return NULL;
3222
3223 }
3224 }
3225 case '0':
3226 if (strncmp (KR_keyword, ":ptym50", 7) == 0)
3227 {
3228 {
3229 return dev_storage + 2630;
3230
3231 }
3232 }
3233 else
3234 {
3235 {
3236 return NULL;
3237
3238 }
3239 }
3240 default:
3241 {
3242 return NULL;
3243
3244 }
3245 }
3246 case '4':
3247 switch (KR_keyword [6])
3248 {
3249 case '9':
3250 if (strncmp (KR_keyword, ":ptym49", 7) == 0)
3251 {
3252 {
3253 return dev_storage + 2629;
3254
3255 }
3256 }
3257 else
3258 {
3259 {
3260 return NULL;
3261
3262 }
3263 }
3264 case '8':
3265 if (strncmp (KR_keyword, ":ptym48", 7) == 0)
3266 {
3267 {
3268 return dev_storage + 2628;
3269
3270 }
3271 }
3272 else
3273 {
3274 {
3275 return NULL;
3276
3277 }
3278 }
3279 case '7':
3280 if (strncmp (KR_keyword, ":ptym47", 7) == 0)
3281 {
3282 {
3283 return dev_storage + 2627;
3284
3285 }
3286 }
3287 else
3288 {
3289 {
3290 return NULL;
3291
3292 }
3293 }
3294 case '6':
3295 if (strncmp (KR_keyword, ":ptym46", 7) == 0)
3296 {
3297 {
3298 return dev_storage + 2626;
3299
3300 }
3301 }
3302 else
3303 {
3304 {
3305 return NULL;
3306
3307 }
3308 }
3309 case '5':
3310 if (strncmp (KR_keyword, ":ptym45", 7) == 0)
3311 {
3312 {
3313 return dev_storage + 2625;
3314
3315 }
3316 }
3317 else
3318 {
3319 {
3320 return NULL;
3321
3322 }
3323 }
3324 case '4':
3325 if (strncmp (KR_keyword, ":ptym44", 7) == 0)
3326 {
3327 {
3328 return dev_storage + 2624;
3329
3330 }
3331 }
3332 else
3333 {
3334 {
3335 return NULL;
3336
3337 }
3338 }
3339 case '3':
3340 if (strncmp (KR_keyword, ":ptym43", 7) == 0)
3341 {
3342 {
3343 return dev_storage + 2623;
3344
3345 }
3346 }
3347 else
3348 {
3349 {
3350 return NULL;
3351
3352 }
3353 }
3354 case '2':
3355 if (strncmp (KR_keyword, ":ptym42", 7) == 0)
3356 {
3357 {
3358 return dev_storage + 2622;
3359
3360 }
3361 }
3362 else
3363 {
3364 {
3365 return NULL;
3366
3367 }
3368 }
3369 case '1':
3370 if (strncmp (KR_keyword, ":ptym41", 7) == 0)
3371 {
3372 {
3373 return dev_storage + 2621;
3374
3375 }
3376 }
3377 else
3378 {
3379 {
3380 return NULL;
3381
3382 }
3383 }
3384 case '0':
3385 if (strncmp (KR_keyword, ":ptym40", 7) == 0)
3386 {
3387 {
3388 return dev_storage + 2620;
3389
3390 }
3391 }
3392 else
3393 {
3394 {
3395 return NULL;
3396
3397 }
3398 }
3399 default:
3400 {
3401 return NULL;
3402
3403 }
3404 }
3405 case '3':
3406 switch (KR_keyword [6])
3407 {
3408 case '9':
3409 if (strncmp (KR_keyword, ":ptym39", 7) == 0)
3410 {
3411 {
3412 return dev_storage + 2619;
3413
3414 }
3415 }
3416 else
3417 {
3418 {
3419 return NULL;
3420
3421 }
3422 }
3423 case '8':
3424 if (strncmp (KR_keyword, ":ptym38", 7) == 0)
3425 {
3426 {
3427 return dev_storage + 2618;
3428
3429 }
3430 }
3431 else
3432 {
3433 {
3434 return NULL;
3435
3436 }
3437 }
3438 case '7':
3439 if (strncmp (KR_keyword, ":ptym37", 7) == 0)
3440 {
3441 {
3442 return dev_storage + 2617;
3443
3444 }
3445 }
3446 else
3447 {
3448 {
3449 return NULL;
3450
3451 }
3452 }
3453 case '6':
3454 if (strncmp (KR_keyword, ":ptym36", 7) == 0)
3455 {
3456 {
3457 return dev_storage + 2616;
3458
3459 }
3460 }
3461 else
3462 {
3463 {
3464 return NULL;
3465
3466 }
3467 }
3468 case '5':
3469 if (strncmp (KR_keyword, ":ptym35", 7) == 0)
3470 {
3471 {
3472 return dev_storage + 2615;
3473
3474 }
3475 }
3476 else
3477 {
3478 {
3479 return NULL;
3480
3481 }
3482 }
3483 case '4':
3484 if (strncmp (KR_keyword, ":ptym34", 7) == 0)
3485 {
3486 {
3487 return dev_storage + 2614;
3488
3489 }
3490 }
3491 else
3492 {
3493 {
3494 return NULL;
3495
3496 }
3497 }
3498 case '3':
3499 if (strncmp (KR_keyword, ":ptym33", 7) == 0)
3500 {
3501 {
3502 return dev_storage + 2613;
3503
3504 }
3505 }
3506 else
3507 {
3508 {
3509 return NULL;
3510
3511 }
3512 }
3513 case '2':
3514 if (strncmp (KR_keyword, ":ptym32", 7) == 0)
3515 {
3516 {
3517 return dev_storage + 2612;
3518
3519 }
3520 }
3521 else
3522 {
3523 {
3524 return NULL;
3525
3526 }
3527 }
3528 case '1':
3529 if (strncmp (KR_keyword, ":ptym31", 7) == 0)
3530 {
3531 {
3532 return dev_storage + 2611;
3533
3534 }
3535 }
3536 else
3537 {
3538 {
3539 return NULL;
3540
3541 }
3542 }
3543 case '0':
3544 if (strncmp (KR_keyword, ":ptym30", 7) == 0)
3545 {
3546 {
3547 return dev_storage + 2610;
3548
3549 }
3550 }
3551 else
3552 {
3553 {
3554 return NULL;
3555
3556 }
3557 }
3558 default:
3559 {
3560 return NULL;
3561
3562 }
3563 }
3564 case '2':
3565 switch (KR_keyword [6])
3566 {
3567 case '9':
3568 if (strncmp (KR_keyword, ":ptym29", 7) == 0)
3569 {
3570 {
3571 return dev_storage + 2609;
3572
3573 }
3574 }
3575 else
3576 {
3577 {
3578 return NULL;
3579
3580 }
3581 }
3582 case '8':
3583 if (strncmp (KR_keyword, ":ptym28", 7) == 0)
3584 {
3585 {
3586 return dev_storage + 2608;
3587
3588 }
3589 }
3590 else
3591 {
3592 {
3593 return NULL;
3594
3595 }
3596 }
3597 case '7':
3598 if (strncmp (KR_keyword, ":ptym27", 7) == 0)
3599 {
3600 {
3601 return dev_storage + 2607;
3602
3603 }
3604 }
3605 else
3606 {
3607 {
3608 return NULL;
3609
3610 }
3611 }
3612 case '6':
3613 if (strncmp (KR_keyword, ":ptym26", 7) == 0)
3614 {
3615 {
3616 return dev_storage + 2606;
3617
3618 }
3619 }
3620 else
3621 {
3622 {
3623 return NULL;
3624
3625 }
3626 }
3627 case '5':
3628 if (strncmp (KR_keyword, ":ptym25", 7) == 0)
3629 {
3630 {
3631 return dev_storage + 2605;
3632
3633 }
3634 }
3635 else
3636 {
3637 {
3638 return NULL;
3639
3640 }
3641 }
3642 case '4':
3643 if (strncmp (KR_keyword, ":ptym24", 7) == 0)
3644 {
3645 {
3646 return dev_storage + 2604;
3647
3648 }
3649 }
3650 else
3651 {
3652 {
3653 return NULL;
3654
3655 }
3656 }
3657 case '3':
3658 if (strncmp (KR_keyword, ":ptym23", 7) == 0)
3659 {
3660 {
3661 return dev_storage + 2603;
3662
3663 }
3664 }
3665 else
3666 {
3667 {
3668 return NULL;
3669
3670 }
3671 }
3672 case '2':
3673 if (strncmp (KR_keyword, ":ptym22", 7) == 0)
3674 {
3675 {
3676 return dev_storage + 2602;
3677
3678 }
3679 }
3680 else
3681 {
3682 {
3683 return NULL;
3684
3685 }
3686 }
3687 case '1':
3688 if (strncmp (KR_keyword, ":ptym21", 7) == 0)
3689 {
3690 {
3691 return dev_storage + 2601;
3692
3693 }
3694 }
3695 else
3696 {
3697 {
3698 return NULL;
3699
3700 }
3701 }
3702 case '0':
3703 if (strncmp (KR_keyword, ":ptym20", 7) == 0)
3704 {
3705 {
3706 return dev_storage + 2600;
3707
3708 }
3709 }
3710 else
3711 {
3712 {
3713 return NULL;
3714
3715 }
3716 }
3717 default:
3718 {
3719 return NULL;
3720
3721 }
3722 }
3723 case '1':
3724 switch (KR_keyword [6])
3725 {
3726 case '9':
3727 if (strncmp (KR_keyword, ":ptym19", 7) == 0)
3728 {
3729 {
3730 return dev_storage + 2599;
3731
3732 }
3733 }
3734 else
3735 {
3736 {
3737 return NULL;
3738
3739 }
3740 }
3741 case '8':
3742 if (strncmp (KR_keyword, ":ptym18", 7) == 0)
3743 {
3744 {
3745 return dev_storage + 2598;
3746
3747 }
3748 }
3749 else
3750 {
3751 {
3752 return NULL;
3753
3754 }
3755 }
3756 case '7':
3757 if (strncmp (KR_keyword, ":ptym17", 7) == 0)
3758 {
3759 {
3760 return dev_storage + 2597;
3761
3762 }
3763 }
3764 else
3765 {
3766 {
3767 return NULL;
3768
3769 }
3770 }
3771 case '6':
3772 if (strncmp (KR_keyword, ":ptym16", 7) == 0)
3773 {
3774 {
3775 return dev_storage + 2596;
3776
3777 }
3778 }
3779 else
3780 {
3781 {
3782 return NULL;
3783
3784 }
3785 }
3786 case '5':
3787 if (strncmp (KR_keyword, ":ptym15", 7) == 0)
3788 {
3789 {
3790 return dev_storage + 2595;
3791
3792 }
3793 }
3794 else
3795 {
3796 {
3797 return NULL;
3798
3799 }
3800 }
3801 case '4':
3802 if (strncmp (KR_keyword, ":ptym14", 7) == 0)
3803 {
3804 {
3805 return dev_storage + 2594;
3806
3807 }
3808 }
3809 else
3810 {
3811 {
3812 return NULL;
3813
3814 }
3815 }
3816 case '3':
3817 if (strncmp (KR_keyword, ":ptym13", 7) == 0)
3818 {
3819 {
3820 return dev_storage + 2593;
3821
3822 }
3823 }
3824 else
3825 {
3826 {
3827 return NULL;
3828
3829 }
3830 }
3831 case '2':
3832 if (strncmp (KR_keyword, ":ptym12", 7) == 0)
3833 {
3834 {
3835 return dev_storage + 2592;
3836
3837 }
3838 }
3839 else
3840 {
3841 {
3842 return NULL;
3843
3844 }
3845 }
3846 case '1':
3847 if (strncmp (KR_keyword, ":ptym11", 7) == 0)
3848 {
3849 {
3850 return dev_storage + 2591;
3851
3852 }
3853 }
3854 else
3855 {
3856 {
3857 return NULL;
3858
3859 }
3860 }
3861 case '0':
3862 if (strncmp (KR_keyword, ":ptym10", 7) == 0)
3863 {
3864 {
3865 return dev_storage + 2590;
3866
3867 }
3868 }
3869 else
3870 {
3871 {
3872 return NULL;
3873
3874 }
3875 }
3876 default:
3877 {
3878 return NULL;
3879
3880 }
3881 }
3882 default:
3883 {
3884 return NULL;
3885
3886 }
3887 }
3888 case 8:
3889 switch (KR_keyword [7])
3890 {
3891 case 'z':
3892 if (strncmp (KR_keyword, "/dev/sdz", 8) == 0)
3893 {
3894 {
3895 return dev_storage + 343;
3896
3897 }
3898 }
3899 else
3900 {
3901 {
3902 return NULL;
3903
3904 }
3905 }
3906 case 'y':
3907 switch (KR_keyword [5])
3908 {
3909 case 't':
3910 if (strncmp (KR_keyword, "/dev/tty", 8) == 0)
3911 {
3912 {
3913 return dev_storage + 2510;
3914
3915 }
3916 }
3917 else
3918 {
3919 {
3920 return NULL;
3921
3922 }
3923 }
3924 case 's':
3925 if (strncmp (KR_keyword, "/dev/sdy", 8) == 0)
3926 {
3927 {
3928 return dev_storage + 342;
3929
3930 }
3931 }
3932 else
3933 {
3934 {
3935 return NULL;
3936
3937 }
3938 }
3939 default:
3940 {
3941 return NULL;
3942
3943 }
3944 }
3945 case 'x':
3946 if (strncmp (KR_keyword, "/dev/sdx", 8) == 0)
3947 {
3948 {
3949 return dev_storage + 341;
3950
3951 }
3952 }
3953 else
3954 {
3955 {
3956 return NULL;
3957
3958 }
3959 }
3960 case 'w':
3961 if (strncmp (KR_keyword, "/dev/sdw", 8) == 0)
3962 {
3963 {
3964 return dev_storage + 340;
3965
3966 }
3967 }
3968 else
3969 {
3970 {
3971 return NULL;
3972
3973 }
3974 }
3975 case 'v':
3976 if (strncmp (KR_keyword, "/dev/sdv", 8) == 0)
3977 {
3978 {
3979 return dev_storage + 339;
3980
3981 }
3982 }
3983 else
3984 {
3985 {
3986 return NULL;
3987
3988 }
3989 }
3990 case 'u':
3991 if (strncmp (KR_keyword, "/dev/sdu", 8) == 0)
3992 {
3993 {
3994 return dev_storage + 338;
3995
3996 }
3997 }
3998 else
3999 {
4000 {
4001 return NULL;
4002
4003 }
4004 }
4005 case 't':
4006 if (strncmp (KR_keyword, "/dev/sdt", 8) == 0)
4007 {
4008 {
4009 return dev_storage + 337;
4010
4011 }
4012 }
4013 else
4014 {
4015 {
4016 return NULL;
4017
4018 }
4019 }
4020 case 's':
4021 if (strncmp (KR_keyword, "/dev/sds", 8) == 0)
4022 {
4023 {
4024 return dev_storage + 336;
4025
4026 }
4027 }
4028 else
4029 {
4030 {
4031 return NULL;
4032
4033 }
4034 }
4035 case 'r':
4036 if (strncmp (KR_keyword, "/dev/sdr", 8) == 0)
4037 {
4038 {
4039 return dev_storage + 335;
4040
4041 }
4042 }
4043 else
4044 {
4045 {
4046 return NULL;
4047
4048 }
4049 }
4050 case 'q':
4051 if (strncmp (KR_keyword, "/dev/sdq", 8) == 0)
4052 {
4053 {
4054 return dev_storage + 334;
4055
4056 }
4057 }
4058 else
4059 {
4060 {
4061 return NULL;
4062
4063 }
4064 }
4065 case 'p':
4066 switch (KR_keyword [5])
4067 {
4068 case 's':
4069 if (strncmp (KR_keyword, "/dev/sdp", 8) == 0)
4070 {
4071 {
4072 return dev_storage + 333;
4073
4074 }
4075 }
4076 else
4077 {
4078 {
4079 return NULL;
4080
4081 }
4082 }
4083 case 'd':
4084 if (strncmp (KR_keyword, "/dev/dsp", 8) == 0)
4085 {
4086 {
4087 return dev_storage + 85;
4088
4089 }
4090 }
4091 else
4092 {
4093 {
4094 return NULL;
4095
4096 }
4097 }
4098 default:
4099 {
4100 return NULL;
4101
4102 }
4103 }
4104 case 'o':
4105 if (strncmp (KR_keyword, "/dev/sdo", 8) == 0)
4106 {
4107 {
4108 return dev_storage + 332;
4109
4110 }
4111 }
4112 else
4113 {
4114 {
4115 return NULL;
4116
4117 }
4118 }
4119 case 'n':
4120 if (strncmp (KR_keyword, "/dev/sdn", 8) == 0)
4121 {
4122 {
4123 return dev_storage + 331;
4124
4125 }
4126 }
4127 else
4128 {
4129 {
4130 return NULL;
4131
4132 }
4133 }
4134 case 'm':
4135 switch (KR_keyword [5])
4136 {
4137 case 's':
4138 if (strncmp (KR_keyword, "/dev/sdm", 8) == 0)
4139 {
4140 {
4141 return dev_storage + 330;
4142
4143 }
4144 }
4145 else
4146 {
4147 {
4148 return NULL;
4149
4150 }
4151 }
4152 case 'm':
4153 if (strncmp (KR_keyword, "/dev/mem", 8) == 0)
4154 {
4155 {
4156 return dev_storage + 105;
4157
4158 }
4159 }
4160 else
4161 {
4162 {
4163 return NULL;
4164
4165 }
4166 }
4167 default:
4168 {
4169 return NULL;
4170
4171 }
4172 }
4173 case 'l':
4174 if (strncmp (KR_keyword, "/dev/sdl", 8) == 0)
4175 {
4176 {
4177 return dev_storage + 329;
4178
4179 }
4180 }
4181 else
4182 {
4183 {
4184 return NULL;
4185
4186 }
4187 }
4188 case 'k':
4189 if (strncmp (KR_keyword, "/dev/sdk", 8) == 0)
4190 {
4191 {
4192 return dev_storage + 328;
4193
4194 }
4195 }
4196 else
4197 {
4198 {
4199 return NULL;
4200
4201 }
4202 }
4203 case 'j':
4204 if (strncmp (KR_keyword, "/dev/sdj", 8) == 0)
4205 {
4206 {
4207 return dev_storage + 327;
4208
4209 }
4210 }
4211 else
4212 {
4213 {
4214 return NULL;
4215
4216 }
4217 }
4218 case 'i':
4219 if (strncmp (KR_keyword, "/dev/sdi", 8) == 0)
4220 {
4221 {
4222 return dev_storage + 326;
4223
4224 }
4225 }
4226 else
4227 {
4228 {
4229 return NULL;
4230
4231 }
4232 }
4233 case 'h':
4234 if (strncmp (KR_keyword, "/dev/sdh", 8) == 0)
4235 {
4236 {
4237 return dev_storage + 325;
4238
4239 }
4240 }
4241 else
4242 {
4243 {
4244 return NULL;
4245
4246 }
4247 }
4248 case 'g':
4249 if (strncmp (KR_keyword, "/dev/sdg", 8) == 0)
4250 {
4251 {
4252 return dev_storage + 324;
4253
4254 }
4255 }
4256 else
4257 {
4258 {
4259 return NULL;
4260
4261 }
4262 }
4263 case 'f':
4264 if (strncmp (KR_keyword, "/dev/sdf", 8) == 0)
4265 {
4266 {
4267 return dev_storage + 323;
4268
4269 }
4270 }
4271 else
4272 {
4273 {
4274 return NULL;
4275
4276 }
4277 }
4278 case 'e':
4279 if (strncmp (KR_keyword, "/dev/sde", 8) == 0)
4280 {
4281 {
4282 return dev_storage + 322;
4283
4284 }
4285 }
4286 else
4287 {
4288 {
4289 return NULL;
4290
4291 }
4292 }
4293 case 'd':
4294 if (strncmp (KR_keyword, "/dev/sdd", 8) == 0)
4295 {
4296 {
4297 return dev_storage + 321;
4298
4299 }
4300 }
4301 else
4302 {
4303 {
4304 return NULL;
4305
4306 }
4307 }
4308 case 'c':
4309 if (strncmp (KR_keyword, "/dev/sdc", 8) == 0)
4310 {
4311 {
4312 return dev_storage + 320;
4313
4314 }
4315 }
4316 else
4317 {
4318 {
4319 return NULL;
4320
4321 }
4322 }
4323 case 'b':
4324 if (strncmp (KR_keyword, "/dev/sdb", 8) == 0)
4325 {
4326 {
4327 return dev_storage + 319;
4328
4329 }
4330 }
4331 else
4332 {
4333 {
4334 return NULL;
4335
4336 }
4337 }
4338 case 'a':
4339 if (strncmp (KR_keyword, "/dev/sda", 8) == 0)
4340 {
4341 {
4342 return dev_storage + 318;
4343
4344 }
4345 }
4346 else
4347 {
4348 {
4349 return NULL;
4350
4351 }
4352 }
4353 case '9':
4354 switch (KR_keyword [6])
4355 {
4356 case 't':
4357 if (strncmp (KR_keyword, "/dev/st9", 8) == 0)
4358 {
4359 {
4360 return dev_storage + 2391;
4361
4362 }
4363 }
4364 else
4365 {
4366 {
4367 return NULL;
4368
4369 }
4370 }
4371 case 'r':
4372 if (strncmp (KR_keyword, "/dev/sr9", 8) == 0)
4373 {
4374 {
4375 return dev_storage + 2375;
4376
4377 }
4378 }
4379 else
4380 {
4381 {
4382 return NULL;
4383
4384 }
4385 }
4386 case 'd':
4387 if (strncmp (KR_keyword, "/dev/fd9", 8) == 0)
4388 {
4389 {
4390 return dev_storage + 95;
4391
4392 }
4393 }
4394 else
4395 {
4396 {
4397 return NULL;
4398
4399 }
4400 }
4401 default:
4402 {
4403 return NULL;
4404
4405 }
4406 }
4407 case '8':
4408 switch (KR_keyword [6])
4409 {
4410 case 't':
4411 if (strncmp (KR_keyword, "/dev/st8", 8) == 0)
4412 {
4413 {
4414 return dev_storage + 2390;
4415
4416 }
4417 }
4418 else
4419 {
4420 {
4421 return NULL;
4422
4423 }
4424 }
4425 case 'r':
4426 if (strncmp (KR_keyword, "/dev/sr8", 8) == 0)
4427 {
4428 {
4429 return dev_storage + 2374;
4430
4431 }
4432 }
4433 else
4434 {
4435 {
4436 return NULL;
4437
4438 }
4439 }
4440 case 'd':
4441 if (strncmp (KR_keyword, "/dev/fd8", 8) == 0)
4442 {
4443 {
4444 return dev_storage + 94;
4445
4446 }
4447 }
4448 else
4449 {
4450 {
4451 return NULL;
4452
4453 }
4454 }
4455 default:
4456 {
4457 return NULL;
4458
4459 }
4460 }
4461 case '7':
4462 switch (KR_keyword [6])
4463 {
4464 case 't':
4465 if (strncmp (KR_keyword, "/dev/st7", 8) == 0)
4466 {
4467 {
4468 return dev_storage + 2389;
4469
4470 }
4471 }
4472 else
4473 {
4474 {
4475 return NULL;
4476
4477 }
4478 }
4479 case 'r':
4480 if (strncmp (KR_keyword, "/dev/sr7", 8) == 0)
4481 {
4482 {
4483 return dev_storage + 2373;
4484
4485 }
4486 }
4487 else
4488 {
4489 {
4490 return NULL;
4491
4492 }
4493 }
4494 case 'd':
4495 if (strncmp (KR_keyword, "/dev/fd7", 8) == 0)
4496 {
4497 {
4498 return dev_storage + 93;
4499
4500 }
4501 }
4502 else
4503 {
4504 {
4505 return NULL;
4506
4507 }
4508 }
4509 default:
4510 {
4511 return NULL;
4512
4513 }
4514 }
4515 case '6':
4516 switch (KR_keyword [6])
4517 {
4518 case 't':
4519 if (strncmp (KR_keyword, "/dev/st6", 8) == 0)
4520 {
4521 {
4522 return dev_storage + 2388;
4523
4524 }
4525 }
4526 else
4527 {
4528 {
4529 return NULL;
4530
4531 }
4532 }
4533 case 'r':
4534 if (strncmp (KR_keyword, "/dev/sr6", 8) == 0)
4535 {
4536 {
4537 return dev_storage + 2372;
4538
4539 }
4540 }
4541 else
4542 {
4543 {
4544 return NULL;
4545
4546 }
4547 }
4548 case 'd':
4549 if (strncmp (KR_keyword, "/dev/fd6", 8) == 0)
4550 {
4551 {
4552 return dev_storage + 92;
4553
4554 }
4555 }
4556 else
4557 {
4558 {
4559 return NULL;
4560
4561 }
4562 }
4563 default:
4564 {
4565 return NULL;
4566
4567 }
4568 }
4569 case '5':
4570 switch (KR_keyword [6])
4571 {
4572 case 't':
4573 if (strncmp (KR_keyword, "/dev/st5", 8) == 0)
4574 {
4575 {
4576 return dev_storage + 2387;
4577
4578 }
4579 }
4580 else
4581 {
4582 {
4583 return NULL;
4584
4585 }
4586 }
4587 case 'r':
4588 if (strncmp (KR_keyword, "/dev/sr5", 8) == 0)
4589 {
4590 {
4591 return dev_storage + 2371;
4592
4593 }
4594 }
4595 else
4596 {
4597 {
4598 return NULL;
4599
4600 }
4601 }
4602 case 'd':
4603 if (strncmp (KR_keyword, "/dev/fd5", 8) == 0)
4604 {
4605 {
4606 return dev_storage + 91;
4607
4608 }
4609 }
4610 else
4611 {
4612 {
4613 return NULL;
4614
4615 }
4616 }
4617 default:
4618 {
4619 return NULL;
4620
4621 }
4622 }
4623 case '4':
4624 switch (KR_keyword [6])
4625 {
4626 case 't':
4627 if (strncmp (KR_keyword, "/dev/st4", 8) == 0)
4628 {
4629 {
4630 return dev_storage + 2386;
4631
4632 }
4633 }
4634 else
4635 {
4636 {
4637 return NULL;
4638
4639 }
4640 }
4641 case 'r':
4642 if (strncmp (KR_keyword, "/dev/sr4", 8) == 0)
4643 {
4644 {
4645 return dev_storage + 2370;
4646
4647 }
4648 }
4649 else
4650 {
4651 {
4652 return NULL;
4653
4654 }
4655 }
4656 case 'd':
4657 if (strncmp (KR_keyword, "/dev/fd4", 8) == 0)
4658 {
4659 {
4660 return dev_storage + 90;
4661
4662 }
4663 }
4664 else
4665 {
4666 {
4667 return NULL;
4668
4669 }
4670 }
4671 default:
4672 {
4673 return NULL;
4674
4675 }
4676 }
4677 case '3':
4678 switch (KR_keyword [6])
4679 {
4680 case 't':
4681 if (strncmp (KR_keyword, "/dev/st3", 8) == 0)
4682 {
4683 {
4684 return dev_storage + 2385;
4685
4686 }
4687 }
4688 else
4689 {
4690 {
4691 return NULL;
4692
4693 }
4694 }
4695 case 'r':
4696 if (strncmp (KR_keyword, "/dev/sr3", 8) == 0)
4697 {
4698 {
4699 return dev_storage + 2369;
4700
4701 }
4702 }
4703 else
4704 {
4705 {
4706 return NULL;
4707
4708 }
4709 }
4710 case 'd':
4711 if (strncmp (KR_keyword, "/dev/fd3", 8) == 0)
4712 {
4713 {
4714 return dev_storage + 89;
4715
4716 }
4717 }
4718 else
4719 {
4720 {
4721 return NULL;
4722
4723 }
4724 }
4725 default:
4726 {
4727 return NULL;
4728
4729 }
4730 }
4731 case '2':
4732 switch (KR_keyword [6])
4733 {
4734 case 't':
4735 if (strncmp (KR_keyword, "/dev/st2", 8) == 0)
4736 {
4737 {
4738 return dev_storage + 2384;
4739
4740 }
4741 }
4742 else
4743 {
4744 {
4745 return NULL;
4746
4747 }
4748 }
4749 case 'r':
4750 if (strncmp (KR_keyword, "/dev/sr2", 8) == 0)
4751 {
4752 {
4753 return dev_storage + 2368;
4754
4755 }
4756 }
4757 else
4758 {
4759 {
4760 return NULL;
4761
4762 }
4763 }
4764 case 'd':
4765 if (strncmp (KR_keyword, "/dev/fd2", 8) == 0)
4766 {
4767 {
4768 return dev_storage + 88;
4769
4770 }
4771 }
4772 else
4773 {
4774 {
4775 return NULL;
4776
4777 }
4778 }
4779 default:
4780 {
4781 return NULL;
4782
4783 }
4784 }
4785 case '1':
4786 switch (KR_keyword [6])
4787 {
4788 case 't':
4789 if (strncmp (KR_keyword, "/dev/st1", 8) == 0)
4790 {
4791 {
4792 return dev_storage + 2383;
4793
4794 }
4795 }
4796 else
4797 {
4798 {
4799 return NULL;
4800
4801 }
4802 }
4803 case 'r':
4804 if (strncmp (KR_keyword, "/dev/sr1", 8) == 0)
4805 {
4806 {
4807 return dev_storage + 2367;
4808
4809 }
4810 }
4811 else
4812 {
4813 {
4814 return NULL;
4815
4816 }
4817 }
4818 case 'd':
4819 if (strncmp (KR_keyword, "/dev/fd1", 8) == 0)
4820 {
4821 {
4822 return dev_storage + 87;
4823
4824 }
4825 }
4826 else
4827 {
4828 {
4829 return NULL;
4830
4831 }
4832 }
4833 default:
4834 {
4835 return NULL;
4836
4837 }
4838 }
4839 case '0':
4840 switch (KR_keyword [6])
4841 {
4842 case 't':
4843 if (strncmp (KR_keyword, "/dev/st0", 8) == 0)
4844 {
4845 {
4846 return dev_storage + 2382;
4847
4848 }
4849 }
4850 else
4851 {
4852 {
4853 return NULL;
4854
4855 }
4856 }
4857 case 'r':
4858 if (strncmp (KR_keyword, "/dev/sr0", 8) == 0)
4859 {
4860 {
4861 return dev_storage + 2366;
4862
4863 }
4864 }
4865 else
4866 {
4867 {
4868 return NULL;
4869
4870 }
4871 }
4872 case 'd':
4873 if (strncmp (KR_keyword, "/dev/fd0", 8) == 0)
4874 {
4875 {
4876 return dev_storage + 86;
4877
4878 }
4879 }
4880 else
4881 {
4882 {
4883 return NULL;
4884
4885 }
4886 }
4887 default:
4888 {
4889 return NULL;
4890
4891 }
4892 }
4893 default:
4894 {
4895 return NULL;
4896
4897 }
4898 }
4899 case 9:
4900 switch (KR_keyword [7])
4901 {
4902 case 'z':
4903 switch (KR_keyword [8])
4904 {
4905 case '9':
4906 if (strncmp (KR_keyword, "/dev/sdz9", 9) == 0)
4907 {
4908 {
4909 return dev_storage + 727;
4910
4911 }
4912 }
4913 else
4914 {
4915 {
4916 return NULL;
4917
4918 }
4919 }
4920 case '8':
4921 if (strncmp (KR_keyword, "/dev/sdz8", 9) == 0)
4922 {
4923 {
4924 return dev_storage + 726;
4925
4926 }
4927 }
4928 else
4929 {
4930 {
4931 return NULL;
4932
4933 }
4934 }
4935 case '7':
4936 if (strncmp (KR_keyword, "/dev/sdz7", 9) == 0)
4937 {
4938 {
4939 return dev_storage + 725;
4940
4941 }
4942 }
4943 else
4944 {
4945 {
4946 return NULL;
4947
4948 }
4949 }
4950 case '6':
4951 if (strncmp (KR_keyword, "/dev/sdz6", 9) == 0)
4952 {
4953 {
4954 return dev_storage + 724;
4955
4956 }
4957 }
4958 else
4959 {
4960 {
4961 return NULL;
4962
4963 }
4964 }
4965 case '5':
4966 if (strncmp (KR_keyword, "/dev/sdz5", 9) == 0)
4967 {
4968 {
4969 return dev_storage + 723;
4970
4971 }
4972 }
4973 else
4974 {
4975 {
4976 return NULL;
4977
4978 }
4979 }
4980 case '4':
4981 if (strncmp (KR_keyword, "/dev/sdz4", 9) == 0)
4982 {
4983 {
4984 return dev_storage + 722;
4985
4986 }
4987 }
4988 else
4989 {
4990 {
4991 return NULL;
4992
4993 }
4994 }
4995 case '3':
4996 if (strncmp (KR_keyword, "/dev/sdz3", 9) == 0)
4997 {
4998 {
4999 return dev_storage + 721;
5000
5001 }
5002 }
5003 else
5004 {
5005 {
5006 return NULL;
5007
5008 }
5009 }
5010 case '2':
5011 if (strncmp (KR_keyword, "/dev/sdz2", 9) == 0)
5012 {
5013 {
5014 return dev_storage + 720;
5015
5016 }
5017 }
5018 else
5019 {
5020 {
5021 return NULL;
5022
5023 }
5024 }
5025 case '1':
5026 if (strncmp (KR_keyword, "/dev/sdz1", 9) == 0)
5027 {
5028 {
5029 return dev_storage + 719;
5030
5031 }
5032 }
5033 else
5034 {
5035 {
5036 return NULL;
5037
5038 }
5039 }
5040 default:
5041 {
5042 return NULL;
5043
5044 }
5045 }
5046 case 'y':
5047 switch (KR_keyword [8])
5048 {
5049 case '9':
5050 switch (KR_keyword [5])
5051 {
5052 case 's':
5053 if (strncmp (KR_keyword, "/dev/sdy9", 9) == 0)
5054 {
5055 {
5056 return dev_storage + 712;
5057
5058 }
5059 }
5060 else
5061 {
5062 {
5063 return NULL;
5064
5065 }
5066 }
5067 case 'p':
5068 if (strncmp (KR_keyword, "/dev/pty9", 9) == 0)
5069 {
5070 {
5071 return dev_storage + 246;
5072
5073 }
5074 }
5075 else
5076 {
5077 {
5078 return NULL;
5079
5080 }
5081 }
5082 default:
5083 {
5084 return NULL;
5085
5086 }
5087 }
5088 case '8':
5089 switch (KR_keyword [5])
5090 {
5091 case 's':
5092 if (strncmp (KR_keyword, "/dev/sdy8", 9) == 0)
5093 {
5094 {
5095 return dev_storage + 711;
5096
5097 }
5098 }
5099 else
5100 {
5101 {
5102 return NULL;
5103
5104 }
5105 }
5106 case 'p':
5107 if (strncmp (KR_keyword, "/dev/pty8", 9) == 0)
5108 {
5109 {
5110 return dev_storage + 245;
5111
5112 }
5113 }
5114 else
5115 {
5116 {
5117 return NULL;
5118
5119 }
5120 }
5121 default:
5122 {
5123 return NULL;
5124
5125 }
5126 }
5127 case '7':
5128 switch (KR_keyword [5])
5129 {
5130 case 's':
5131 if (strncmp (KR_keyword, "/dev/sdy7", 9) == 0)
5132 {
5133 {
5134 return dev_storage + 710;
5135
5136 }
5137 }
5138 else
5139 {
5140 {
5141 return NULL;
5142
5143 }
5144 }
5145 case 'p':
5146 if (strncmp (KR_keyword, "/dev/pty7", 9) == 0)
5147 {
5148 {
5149 return dev_storage + 244;
5150
5151 }
5152 }
5153 else
5154 {
5155 {
5156 return NULL;
5157
5158 }
5159 }
5160 default:
5161 {
5162 return NULL;
5163
5164 }
5165 }
5166 case '6':
5167 switch (KR_keyword [5])
5168 {
5169 case 's':
5170 if (strncmp (KR_keyword, "/dev/sdy6", 9) == 0)
5171 {
5172 {
5173 return dev_storage + 709;
5174
5175 }
5176 }
5177 else
5178 {
5179 {
5180 return NULL;
5181
5182 }
5183 }
5184 case 'p':
5185 if (strncmp (KR_keyword, "/dev/pty6", 9) == 0)
5186 {
5187 {
5188 return dev_storage + 243;
5189
5190 }
5191 }
5192 else
5193 {
5194 {
5195 return NULL;
5196
5197 }
5198 }
5199 default:
5200 {
5201 return NULL;
5202
5203 }
5204 }
5205 case '5':
5206 switch (KR_keyword [5])
5207 {
5208 case 's':
5209 if (strncmp (KR_keyword, "/dev/sdy5", 9) == 0)
5210 {
5211 {
5212 return dev_storage + 708;
5213
5214 }
5215 }
5216 else
5217 {
5218 {
5219 return NULL;
5220
5221 }
5222 }
5223 case 'p':
5224 if (strncmp (KR_keyword, "/dev/pty5", 9) == 0)
5225 {
5226 {
5227 return dev_storage + 242;
5228
5229 }
5230 }
5231 else
5232 {
5233 {
5234 return NULL;
5235
5236 }
5237 }
5238 default:
5239 {
5240 return NULL;
5241
5242 }
5243 }
5244 case '4':
5245 switch (KR_keyword [5])
5246 {
5247 case 's':
5248 if (strncmp (KR_keyword, "/dev/sdy4", 9) == 0)
5249 {
5250 {
5251 return dev_storage + 707;
5252
5253 }
5254 }
5255 else
5256 {
5257 {
5258 return NULL;
5259
5260 }
5261 }
5262 case 'p':
5263 if (strncmp (KR_keyword, "/dev/pty4", 9) == 0)
5264 {
5265 {
5266 return dev_storage + 241;
5267
5268 }
5269 }
5270 else
5271 {
5272 {
5273 return NULL;
5274
5275 }
5276 }
5277 default:
5278 {
5279 return NULL;
5280
5281 }
5282 }
5283 case '3':
5284 switch (KR_keyword [5])
5285 {
5286 case 's':
5287 if (strncmp (KR_keyword, "/dev/sdy3", 9) == 0)
5288 {
5289 {
5290 return dev_storage + 706;
5291
5292 }
5293 }
5294 else
5295 {
5296 {
5297 return NULL;
5298
5299 }
5300 }
5301 case 'p':
5302 if (strncmp (KR_keyword, "/dev/pty3", 9) == 0)
5303 {
5304 {
5305 return dev_storage + 240;
5306
5307 }
5308 }
5309 else
5310 {
5311 {
5312 return NULL;
5313
5314 }
5315 }
5316 default:
5317 {
5318 return NULL;
5319
5320 }
5321 }
5322 case '2':
5323 switch (KR_keyword [5])
5324 {
5325 case 's':
5326 if (strncmp (KR_keyword, "/dev/sdy2", 9) == 0)
5327 {
5328 {
5329 return dev_storage + 705;
5330
5331 }
5332 }
5333 else
5334 {
5335 {
5336 return NULL;
5337
5338 }
5339 }
5340 case 'p':
5341 if (strncmp (KR_keyword, "/dev/pty2", 9) == 0)
5342 {
5343 {
5344 return dev_storage + 239;
5345
5346 }
5347 }
5348 else
5349 {
5350 {
5351 return NULL;
5352
5353 }
5354 }
5355 default:
5356 {
5357 return NULL;
5358
5359 }
5360 }
5361 case '1':
5362 switch (KR_keyword [5])
5363 {
5364 case 's':
5365 if (strncmp (KR_keyword, "/dev/sdy1", 9) == 0)
5366 {
5367 {
5368 return dev_storage + 704;
5369
5370 }
5371 }
5372 else
5373 {
5374 {
5375 return NULL;
5376
5377 }
5378 }
5379 case 'p':
5380 if (strncmp (KR_keyword, "/dev/pty1", 9) == 0)
5381 {
5382 {
5383 return dev_storage + 238;
5384
5385 }
5386 }
5387 else
5388 {
5389 {
5390 return NULL;
5391
5392 }
5393 }
5394 default:
5395 {
5396 return NULL;
5397
5398 }
5399 }
5400 case '0':
5401 if (strncmp (KR_keyword, "/dev/pty0", 9) == 0)
5402 {
5403 {
5404 return dev_storage + 237;
5405
5406 }
5407 }
5408 else
5409 {
5410 {
5411 return NULL;
5412
5413 }
5414 }
5415 default:
5416 {
5417 return NULL;
5418
5419 }
5420 }
5421 case 'x':
5422 switch (KR_keyword [8])
5423 {
5424 case '9':
5425 if (strncmp (KR_keyword, "/dev/sdx9", 9) == 0)
5426 {
5427 {
5428 return dev_storage + 697;
5429
5430 }
5431 }
5432 else
5433 {
5434 {
5435 return NULL;
5436
5437 }
5438 }
5439 case '8':
5440 if (strncmp (KR_keyword, "/dev/sdx8", 9) == 0)
5441 {
5442 {
5443 return dev_storage + 696;
5444
5445 }
5446 }
5447 else
5448 {
5449 {
5450 return NULL;
5451
5452 }
5453 }
5454 case '7':
5455 if (strncmp (KR_keyword, "/dev/sdx7", 9) == 0)
5456 {
5457 {
5458 return dev_storage + 695;
5459
5460 }
5461 }
5462 else
5463 {
5464 {
5465 return NULL;
5466
5467 }
5468 }
5469 case '6':
5470 if (strncmp (KR_keyword, "/dev/sdx6", 9) == 0)
5471 {
5472 {
5473 return dev_storage + 694;
5474
5475 }
5476 }
5477 else
5478 {
5479 {
5480 return NULL;
5481
5482 }
5483 }
5484 case '5':
5485 if (strncmp (KR_keyword, "/dev/sdx5", 9) == 0)
5486 {
5487 {
5488 return dev_storage + 693;
5489
5490 }
5491 }
5492 else
5493 {
5494 {
5495 return NULL;
5496
5497 }
5498 }
5499 case '4':
5500 if (strncmp (KR_keyword, "/dev/sdx4", 9) == 0)
5501 {
5502 {
5503 return dev_storage + 692;
5504
5505 }
5506 }
5507 else
5508 {
5509 {
5510 return NULL;
5511
5512 }
5513 }
5514 case '3':
5515 if (strncmp (KR_keyword, "/dev/sdx3", 9) == 0)
5516 {
5517 {
5518 return dev_storage + 691;
5519
5520 }
5521 }
5522 else
5523 {
5524 {
5525 return NULL;
5526
5527 }
5528 }
5529 case '2':
5530 if (strncmp (KR_keyword, "/dev/sdx2", 9) == 0)
5531 {
5532 {
5533 return dev_storage + 690;
5534
5535 }
5536 }
5537 else
5538 {
5539 {
5540 return NULL;
5541
5542 }
5543 }
5544 case '1':
5545 if (strncmp (KR_keyword, "/dev/sdx1", 9) == 0)
5546 {
5547 {
5548 return dev_storage + 689;
5549
5550 }
5551 }
5552 else
5553 {
5554 {
5555 return NULL;
5556
5557 }
5558 }
5559 default:
5560 {
5561 return NULL;
5562
5563 }
5564 }
5565 case 'w':
5566 switch (KR_keyword [8])
5567 {
5568 case '9':
5569 if (strncmp (KR_keyword, "/dev/sdw9", 9) == 0)
5570 {
5571 {
5572 return dev_storage + 682;
5573
5574 }
5575 }
5576 else
5577 {
5578 {
5579 return NULL;
5580
5581 }
5582 }
5583 case '8':
5584 if (strncmp (KR_keyword, "/dev/sdw8", 9) == 0)
5585 {
5586 {
5587 return dev_storage + 681;
5588
5589 }
5590 }
5591 else
5592 {
5593 {
5594 return NULL;
5595
5596 }
5597 }
5598 case '7':
5599 if (strncmp (KR_keyword, "/dev/sdw7", 9) == 0)
5600 {
5601 {
5602 return dev_storage + 680;
5603
5604 }
5605 }
5606 else
5607 {
5608 {
5609 return NULL;
5610
5611 }
5612 }
5613 case '6':
5614 if (strncmp (KR_keyword, "/dev/sdw6", 9) == 0)
5615 {
5616 {
5617 return dev_storage + 679;
5618
5619 }
5620 }
5621 else
5622 {
5623 {
5624 return NULL;
5625
5626 }
5627 }
5628 case '5':
5629 if (strncmp (KR_keyword, "/dev/sdw5", 9) == 0)
5630 {
5631 {
5632 return dev_storage + 678;
5633
5634 }
5635 }
5636 else
5637 {
5638 {
5639 return NULL;
5640
5641 }
5642 }
5643 case '4':
5644 if (strncmp (KR_keyword, "/dev/sdw4", 9) == 0)
5645 {
5646 {
5647 return dev_storage + 677;
5648
5649 }
5650 }
5651 else
5652 {
5653 {
5654 return NULL;
5655
5656 }
5657 }
5658 case '3':
5659 if (strncmp (KR_keyword, "/dev/sdw3", 9) == 0)
5660 {
5661 {
5662 return dev_storage + 676;
5663
5664 }
5665 }
5666 else
5667 {
5668 {
5669 return NULL;
5670
5671 }
5672 }
5673 case '2':
5674 if (strncmp (KR_keyword, "/dev/sdw2", 9) == 0)
5675 {
5676 {
5677 return dev_storage + 675;
5678
5679 }
5680 }
5681 else
5682 {
5683 {
5684 return NULL;
5685
5686 }
5687 }
5688 case '1':
5689 if (strncmp (KR_keyword, "/dev/sdw1", 9) == 0)
5690 {
5691 {
5692 return dev_storage + 674;
5693
5694 }
5695 }
5696 else
5697 {
5698 {
5699 return NULL;
5700
5701 }
5702 }
5703 default:
5704 {
5705 return NULL;
5706
5707 }
5708 }
5709 case 'v':
5710 switch (KR_keyword [8])
5711 {
5712 case '9':
5713 if (strncmp (KR_keyword, "/dev/sdv9", 9) == 0)
5714 {
5715 {
5716 return dev_storage + 667;
5717
5718 }
5719 }
5720 else
5721 {
5722 {
5723 return NULL;
5724
5725 }
5726 }
5727 case '8':
5728 if (strncmp (KR_keyword, "/dev/sdv8", 9) == 0)
5729 {
5730 {
5731 return dev_storage + 666;
5732
5733 }
5734 }
5735 else
5736 {
5737 {
5738 return NULL;
5739
5740 }
5741 }
5742 case '7':
5743 if (strncmp (KR_keyword, "/dev/sdv7", 9) == 0)
5744 {
5745 {
5746 return dev_storage + 665;
5747
5748 }
5749 }
5750 else
5751 {
5752 {
5753 return NULL;
5754
5755 }
5756 }
5757 case '6':
5758 if (strncmp (KR_keyword, "/dev/sdv6", 9) == 0)
5759 {
5760 {
5761 return dev_storage + 664;
5762
5763 }
5764 }
5765 else
5766 {
5767 {
5768 return NULL;
5769
5770 }
5771 }
5772 case '5':
5773 if (strncmp (KR_keyword, "/dev/sdv5", 9) == 0)
5774 {
5775 {
5776 return dev_storage + 663;
5777
5778 }
5779 }
5780 else
5781 {
5782 {
5783 return NULL;
5784
5785 }
5786 }
5787 case '4':
5788 if (strncmp (KR_keyword, "/dev/sdv4", 9) == 0)
5789 {
5790 {
5791 return dev_storage + 662;
5792
5793 }
5794 }
5795 else
5796 {
5797 {
5798 return NULL;
5799
5800 }
5801 }
5802 case '3':
5803 if (strncmp (KR_keyword, "/dev/sdv3", 9) == 0)
5804 {
5805 {
5806 return dev_storage + 661;
5807
5808 }
5809 }
5810 else
5811 {
5812 {
5813 return NULL;
5814
5815 }
5816 }
5817 case '2':
5818 if (strncmp (KR_keyword, "/dev/sdv2", 9) == 0)
5819 {
5820 {
5821 return dev_storage + 660;
5822
5823 }
5824 }
5825 else
5826 {
5827 {
5828 return NULL;
5829
5830 }
5831 }
5832 case '1':
5833 if (strncmp (KR_keyword, "/dev/sdv1", 9) == 0)
5834 {
5835 {
5836 return dev_storage + 659;
5837
5838 }
5839 }
5840 else
5841 {
5842 {
5843 return NULL;
5844
5845 }
5846 }
5847 default:
5848 {
5849 return NULL;
5850
5851 }
5852 }
5853 case 'u':
5854 switch (KR_keyword [8])
5855 {
5856 case '9':
5857 if (strncmp (KR_keyword, "/dev/sdu9", 9) == 0)
5858 {
5859 {
5860 return dev_storage + 652;
5861
5862 }
5863 }
5864 else
5865 {
5866 {
5867 return NULL;
5868
5869 }
5870 }
5871 case '8':
5872 if (strncmp (KR_keyword, "/dev/sdu8", 9) == 0)
5873 {
5874 {
5875 return dev_storage + 651;
5876
5877 }
5878 }
5879 else
5880 {
5881 {
5882 return NULL;
5883
5884 }
5885 }
5886 case '7':
5887 if (strncmp (KR_keyword, "/dev/sdu7", 9) == 0)
5888 {
5889 {
5890 return dev_storage + 650;
5891
5892 }
5893 }
5894 else
5895 {
5896 {
5897 return NULL;
5898
5899 }
5900 }
5901 case '6':
5902 if (strncmp (KR_keyword, "/dev/sdu6", 9) == 0)
5903 {
5904 {
5905 return dev_storage + 649;
5906
5907 }
5908 }
5909 else
5910 {
5911 {
5912 return NULL;
5913
5914 }
5915 }
5916 case '5':
5917 if (strncmp (KR_keyword, "/dev/sdu5", 9) == 0)
5918 {
5919 {
5920 return dev_storage + 648;
5921
5922 }
5923 }
5924 else
5925 {
5926 {
5927 return NULL;
5928
5929 }
5930 }
5931 case '4':
5932 if (strncmp (KR_keyword, "/dev/sdu4", 9) == 0)
5933 {
5934 {
5935 return dev_storage + 647;
5936
5937 }
5938 }
5939 else
5940 {
5941 {
5942 return NULL;
5943
5944 }
5945 }
5946 case '3':
5947 if (strncmp (KR_keyword, "/dev/sdu3", 9) == 0)
5948 {
5949 {
5950 return dev_storage + 646;
5951
5952 }
5953 }
5954 else
5955 {
5956 {
5957 return NULL;
5958
5959 }
5960 }
5961 case '2':
5962 if (strncmp (KR_keyword, "/dev/sdu2", 9) == 0)
5963 {
5964 {
5965 return dev_storage + 645;
5966
5967 }
5968 }
5969 else
5970 {
5971 {
5972 return NULL;
5973
5974 }
5975 }
5976 case '1':
5977 if (strncmp (KR_keyword, "/dev/sdu1", 9) == 0)
5978 {
5979 {
5980 return dev_storage + 644;
5981
5982 }
5983 }
5984 else
5985 {
5986 {
5987 return NULL;
5988
5989 }
5990 }
5991 default:
5992 {
5993 return NULL;
5994
5995 }
5996 }
5997 case 't':
5998 switch (KR_keyword [8])
5999 {
6000 case '9':
6001 switch (KR_keyword [5])
6002 {
6003 case 's':
6004 if (strncmp (KR_keyword, "/dev/sdt9", 9) == 0)
6005 {
6006 {
6007 return dev_storage + 637;
6008
6009 }
6010 }
6011 else
6012 {
6013 {
6014 return NULL;
6015
6016 }
6017 }
6018 case 'n':
6019 if (strncmp (KR_keyword, "/dev/nst9", 9) == 0)
6020 {
6021 {
6022 return dev_storage + 115;
6023
6024 }
6025 }
6026 else
6027 {
6028 {
6029 return NULL;
6030
6031 }
6032 }
6033 default:
6034 {
6035 return NULL;
6036
6037 }
6038 }
6039 case '8':
6040 switch (KR_keyword [5])
6041 {
6042 case 's':
6043 if (strncmp (KR_keyword, "/dev/sdt8", 9) == 0)
6044 {
6045 {
6046 return dev_storage + 636;
6047
6048 }
6049 }
6050 else
6051 {
6052 {
6053 return NULL;
6054
6055 }
6056 }
6057 case 'n':
6058 if (strncmp (KR_keyword, "/dev/nst8", 9) == 0)
6059 {
6060 {
6061 return dev_storage + 114;
6062
6063 }
6064 }
6065 else
6066 {
6067 {
6068 return NULL;
6069
6070 }
6071 }
6072 default:
6073 {
6074 return NULL;
6075
6076 }
6077 }
6078 case '7':
6079 switch (KR_keyword [5])
6080 {
6081 case 's':
6082 if (strncmp (KR_keyword, "/dev/sdt7", 9) == 0)
6083 {
6084 {
6085 return dev_storage + 635;
6086
6087 }
6088 }
6089 else
6090 {
6091 {
6092 return NULL;
6093
6094 }
6095 }
6096 case 'n':
6097 if (strncmp (KR_keyword, "/dev/nst7", 9) == 0)
6098 {
6099 {
6100 return dev_storage + 113;
6101
6102 }
6103 }
6104 else
6105 {
6106 {
6107 return NULL;
6108
6109 }
6110 }
6111 default:
6112 {
6113 return NULL;
6114
6115 }
6116 }
6117 case '6':
6118 switch (KR_keyword [5])
6119 {
6120 case 's':
6121 if (strncmp (KR_keyword, "/dev/sdt6", 9) == 0)
6122 {
6123 {
6124 return dev_storage + 634;
6125
6126 }
6127 }
6128 else
6129 {
6130 {
6131 return NULL;
6132
6133 }
6134 }
6135 case 'n':
6136 if (strncmp (KR_keyword, "/dev/nst6", 9) == 0)
6137 {
6138 {
6139 return dev_storage + 112;
6140
6141 }
6142 }
6143 else
6144 {
6145 {
6146 return NULL;
6147
6148 }
6149 }
6150 default:
6151 {
6152 return NULL;
6153
6154 }
6155 }
6156 case '5':
6157 switch (KR_keyword [5])
6158 {
6159 case 's':
6160 if (strncmp (KR_keyword, "/dev/sdt5", 9) == 0)
6161 {
6162 {
6163 return dev_storage + 633;
6164
6165 }
6166 }
6167 else
6168 {
6169 {
6170 return NULL;
6171
6172 }
6173 }
6174 case 'n':
6175 if (strncmp (KR_keyword, "/dev/nst5", 9) == 0)
6176 {
6177 {
6178 return dev_storage + 111;
6179
6180 }
6181 }
6182 else
6183 {
6184 {
6185 return NULL;
6186
6187 }
6188 }
6189 default:
6190 {
6191 return NULL;
6192
6193 }
6194 }
6195 case '4':
6196 switch (KR_keyword [5])
6197 {
6198 case 's':
6199 if (strncmp (KR_keyword, "/dev/sdt4", 9) == 0)
6200 {
6201 {
6202 return dev_storage + 632;
6203
6204 }
6205 }
6206 else
6207 {
6208 {
6209 return NULL;
6210
6211 }
6212 }
6213 case 'n':
6214 if (strncmp (KR_keyword, "/dev/nst4", 9) == 0)
6215 {
6216 {
6217 return dev_storage + 110;
6218
6219 }
6220 }
6221 else
6222 {
6223 {
6224 return NULL;
6225
6226 }
6227 }
6228 default:
6229 {
6230 return NULL;
6231
6232 }
6233 }
6234 case '3':
6235 switch (KR_keyword [5])
6236 {
6237 case 's':
6238 if (strncmp (KR_keyword, "/dev/sdt3", 9) == 0)
6239 {
6240 {
6241 return dev_storage + 631;
6242
6243 }
6244 }
6245 else
6246 {
6247 {
6248 return NULL;
6249
6250 }
6251 }
6252 case 'n':
6253 if (strncmp (KR_keyword, "/dev/nst3", 9) == 0)
6254 {
6255 {
6256 return dev_storage + 109;
6257
6258 }
6259 }
6260 else
6261 {
6262 {
6263 return NULL;
6264
6265 }
6266 }
6267 default:
6268 {
6269 return NULL;
6270
6271 }
6272 }
6273 case '2':
6274 switch (KR_keyword [5])
6275 {
6276 case 's':
6277 if (strncmp (KR_keyword, "/dev/sdt2", 9) == 0)
6278 {
6279 {
6280 return dev_storage + 630;
6281
6282 }
6283 }
6284 else
6285 {
6286 {
6287 return NULL;
6288
6289 }
6290 }
6291 case 'n':
6292 if (strncmp (KR_keyword, "/dev/nst2", 9) == 0)
6293 {
6294 {
6295 return dev_storage + 108;
6296
6297 }
6298 }
6299 else
6300 {
6301 {
6302 return NULL;
6303
6304 }
6305 }
6306 default:
6307 {
6308 return NULL;
6309
6310 }
6311 }
6312 case '1':
6313 switch (KR_keyword [5])
6314 {
6315 case 's':
6316 if (strncmp (KR_keyword, "/dev/sdt1", 9) == 0)
6317 {
6318 {
6319 return dev_storage + 629;
6320
6321 }
6322 }
6323 else
6324 {
6325 {
6326 return NULL;
6327
6328 }
6329 }
6330 case 'n':
6331 if (strncmp (KR_keyword, "/dev/nst1", 9) == 0)
6332 {
6333 {
6334 return dev_storage + 107;
6335
6336 }
6337 }
6338 else
6339 {
6340 {
6341 return NULL;
6342
6343 }
6344 }
6345 default:
6346 {
6347 return NULL;
6348
6349 }
6350 }
6351 case '0':
6352 if (strncmp (KR_keyword, "/dev/nst0", 9) == 0)
6353 {
6354 {
6355 return dev_storage + 106;
6356
6357 }
6358 }
6359 else
6360 {
6361 {
6362 return NULL;
6363
6364 }
6365 }
6366 default:
6367 {
6368 return NULL;
6369
6370 }
6371 }
6372 case 's':
6373 switch (KR_keyword [8])
6374 {
6375 case 'g':
6376 if (strncmp (KR_keyword, "/dev/kmsg", 9) == 0)
6377 {
6378 {
6379 return dev_storage + 104;
6380
6381 }
6382 }
6383 else
6384 {
6385 {
6386 return NULL;
6387
6388 }
6389 }
6390 case '9':
6391 if (strncmp (KR_keyword, "/dev/sds9", 9) == 0)
6392 {
6393 {
6394 return dev_storage + 622;
6395
6396 }
6397 }
6398 else
6399 {
6400 {
6401 return NULL;
6402
6403 }
6404 }
6405 case '8':
6406 if (strncmp (KR_keyword, "/dev/sds8", 9) == 0)
6407 {
6408 {
6409 return dev_storage + 621;
6410
6411 }
6412 }
6413 else
6414 {
6415 {
6416 return NULL;
6417
6418 }
6419 }
6420 case '7':
6421 if (strncmp (KR_keyword, "/dev/sds7", 9) == 0)
6422 {
6423 {
6424 return dev_storage + 620;
6425
6426 }
6427 }
6428 else
6429 {
6430 {
6431 return NULL;
6432
6433 }
6434 }
6435 case '6':
6436 if (strncmp (KR_keyword, "/dev/sds6", 9) == 0)
6437 {
6438 {
6439 return dev_storage + 619;
6440
6441 }
6442 }
6443 else
6444 {
6445 {
6446 return NULL;
6447
6448 }
6449 }
6450 case '5':
6451 if (strncmp (KR_keyword, "/dev/sds5", 9) == 0)
6452 {
6453 {
6454 return dev_storage + 618;
6455
6456 }
6457 }
6458 else
6459 {
6460 {
6461 return NULL;
6462
6463 }
6464 }
6465 case '4':
6466 if (strncmp (KR_keyword, "/dev/sds4", 9) == 0)
6467 {
6468 {
6469 return dev_storage + 617;
6470
6471 }
6472 }
6473 else
6474 {
6475 {
6476 return NULL;
6477
6478 }
6479 }
6480 case '3':
6481 if (strncmp (KR_keyword, "/dev/sds3", 9) == 0)
6482 {
6483 {
6484 return dev_storage + 616;
6485
6486 }
6487 }
6488 else
6489 {
6490 {
6491 return NULL;
6492
6493 }
6494 }
6495 case '2':
6496 if (strncmp (KR_keyword, "/dev/sds2", 9) == 0)
6497 {
6498 {
6499 return dev_storage + 615;
6500
6501 }
6502 }
6503 else
6504 {
6505 {
6506 return NULL;
6507
6508 }
6509 }
6510 case '1':
6511 if (strncmp (KR_keyword, "/dev/sds1", 9) == 0)
6512 {
6513 {
6514 return dev_storage + 614;
6515
6516 }
6517 }
6518 else
6519 {
6520 {
6521 return NULL;
6522
6523 }
6524 }
6525 default:
6526 {
6527 return NULL;
6528
6529 }
6530 }
6531 case 'r':
6532 switch (KR_keyword [8])
6533 {
6534 case 't':
6535 if (strncmp (KR_keyword, "/dev/port", 9) == 0)
6536 {
6537 {
6538 return dev_storage + 235;
6539
6540 }
6541 }
6542 else
6543 {
6544 {
6545 return NULL;
6546
6547 }
6548 }
6549 case 'o':
6550 if (strncmp (KR_keyword, "/dev/zero", 9) == 0)
6551 {
6552 {
6553 return dev_storage + 2577;
6554
6555 }
6556 }
6557 else
6558 {
6559 {
6560 return NULL;
6561
6562 }
6563 }
6564 case '9':
6565 if (strncmp (KR_keyword, "/dev/sdr9", 9) == 0)
6566 {
6567 {
6568 return dev_storage + 607;
6569
6570 }
6571 }
6572 else
6573 {
6574 {
6575 return NULL;
6576
6577 }
6578 }
6579 case '8':
6580 if (strncmp (KR_keyword, "/dev/sdr8", 9) == 0)
6581 {
6582 {
6583 return dev_storage + 606;
6584
6585 }
6586 }
6587 else
6588 {
6589 {
6590 return NULL;
6591
6592 }
6593 }
6594 case '7':
6595 if (strncmp (KR_keyword, "/dev/sdr7", 9) == 0)
6596 {
6597 {
6598 return dev_storage + 605;
6599
6600 }
6601 }
6602 else
6603 {
6604 {
6605 return NULL;
6606
6607 }
6608 }
6609 case '6':
6610 if (strncmp (KR_keyword, "/dev/sdr6", 9) == 0)
6611 {
6612 {
6613 return dev_storage + 604;
6614
6615 }
6616 }
6617 else
6618 {
6619 {
6620 return NULL;
6621
6622 }
6623 }
6624 case '5':
6625 if (strncmp (KR_keyword, "/dev/sdr5", 9) == 0)
6626 {
6627 {
6628 return dev_storage + 603;
6629
6630 }
6631 }
6632 else
6633 {
6634 {
6635 return NULL;
6636
6637 }
6638 }
6639 case '4':
6640 if (strncmp (KR_keyword, "/dev/sdr4", 9) == 0)
6641 {
6642 {
6643 return dev_storage + 602;
6644
6645 }
6646 }
6647 else
6648 {
6649 {
6650 return NULL;
6651
6652 }
6653 }
6654 case '3':
6655 if (strncmp (KR_keyword, "/dev/sdr3", 9) == 0)
6656 {
6657 {
6658 return dev_storage + 601;
6659
6660 }
6661 }
6662 else
6663 {
6664 {
6665 return NULL;
6666
6667 }
6668 }
6669 case '2':
6670 if (strncmp (KR_keyword, "/dev/sdr2", 9) == 0)
6671 {
6672 {
6673 return dev_storage + 600;
6674
6675 }
6676 }
6677 else
6678 {
6679 {
6680 return NULL;
6681
6682 }
6683 }
6684 case '1':
6685 if (strncmp (KR_keyword, "/dev/sdr1", 9) == 0)
6686 {
6687 {
6688 return dev_storage + 599;
6689
6690 }
6691 }
6692 else
6693 {
6694 {
6695 return NULL;
6696
6697 }
6698 }
6699 default:
6700 {
6701 return NULL;
6702
6703 }
6704 }
6705 case 'q':
6706 switch (KR_keyword [8])
6707 {
6708 case '9':
6709 if (strncmp (KR_keyword, "/dev/sdq9", 9) == 0)
6710 {
6711 {
6712 return dev_storage + 592;
6713
6714 }
6715 }
6716 else
6717 {
6718 {
6719 return NULL;
6720
6721 }
6722 }
6723 case '8':
6724 if (strncmp (KR_keyword, "/dev/sdq8", 9) == 0)
6725 {
6726 {
6727 return dev_storage + 591;
6728
6729 }
6730 }
6731 else
6732 {
6733 {
6734 return NULL;
6735
6736 }
6737 }
6738 case '7':
6739 if (strncmp (KR_keyword, "/dev/sdq7", 9) == 0)
6740 {
6741 {
6742 return dev_storage + 590;
6743
6744 }
6745 }
6746 else
6747 {
6748 {
6749 return NULL;
6750
6751 }
6752 }
6753 case '6':
6754 if (strncmp (KR_keyword, "/dev/sdq6", 9) == 0)
6755 {
6756 {
6757 return dev_storage + 589;
6758
6759 }
6760 }
6761 else
6762 {
6763 {
6764 return NULL;
6765
6766 }
6767 }
6768 case '5':
6769 if (strncmp (KR_keyword, "/dev/sdq5", 9) == 0)
6770 {
6771 {
6772 return dev_storage + 588;
6773
6774 }
6775 }
6776 else
6777 {
6778 {
6779 return NULL;
6780
6781 }
6782 }
6783 case '4':
6784 if (strncmp (KR_keyword, "/dev/sdq4", 9) == 0)
6785 {
6786 {
6787 return dev_storage + 587;
6788
6789 }
6790 }
6791 else
6792 {
6793 {
6794 return NULL;
6795
6796 }
6797 }
6798 case '3':
6799 if (strncmp (KR_keyword, "/dev/sdq3", 9) == 0)
6800 {
6801 {
6802 return dev_storage + 586;
6803
6804 }
6805 }
6806 else
6807 {
6808 {
6809 return NULL;
6810
6811 }
6812 }
6813 case '2':
6814 if (strncmp (KR_keyword, "/dev/sdq2", 9) == 0)
6815 {
6816 {
6817 return dev_storage + 585;
6818
6819 }
6820 }
6821 else
6822 {
6823 {
6824 return NULL;
6825
6826 }
6827 }
6828 case '1':
6829 if (strncmp (KR_keyword, "/dev/sdq1", 9) == 0)
6830 {
6831 {
6832 return dev_storage + 584;
6833
6834 }
6835 }
6836 else
6837 {
6838 {
6839 return NULL;
6840
6841 }
6842 }
6843 default:
6844 {
6845 return NULL;
6846
6847 }
6848 }
6849 case 'p':
6850 switch (KR_keyword [8])
6851 {
6852 case '9':
6853 if (strncmp (KR_keyword, "/dev/sdp9", 9) == 0)
6854 {
6855 {
6856 return dev_storage + 577;
6857
6858 }
6859 }
6860 else
6861 {
6862 {
6863 return NULL;
6864
6865 }
6866 }
6867 case '8':
6868 if (strncmp (KR_keyword, "/dev/sdp8", 9) == 0)
6869 {
6870 {
6871 return dev_storage + 576;
6872
6873 }
6874 }
6875 else
6876 {
6877 {
6878 return NULL;
6879
6880 }
6881 }
6882 case '7':
6883 if (strncmp (KR_keyword, "/dev/sdp7", 9) == 0)
6884 {
6885 {
6886 return dev_storage + 575;
6887
6888 }
6889 }
6890 else
6891 {
6892 {
6893 return NULL;
6894
6895 }
6896 }
6897 case '6':
6898 if (strncmp (KR_keyword, "/dev/sdp6", 9) == 0)
6899 {
6900 {
6901 return dev_storage + 574;
6902
6903 }
6904 }
6905 else
6906 {
6907 {
6908 return NULL;
6909
6910 }
6911 }
6912 case '5':
6913 if (strncmp (KR_keyword, "/dev/sdp5", 9) == 0)
6914 {
6915 {
6916 return dev_storage + 573;
6917
6918 }
6919 }
6920 else
6921 {
6922 {
6923 return NULL;
6924
6925 }
6926 }
6927 case '4':
6928 if (strncmp (KR_keyword, "/dev/sdp4", 9) == 0)
6929 {
6930 {
6931 return dev_storage + 572;
6932
6933 }
6934 }
6935 else
6936 {
6937 {
6938 return NULL;
6939
6940 }
6941 }
6942 case '3':
6943 if (strncmp (KR_keyword, "/dev/sdp3", 9) == 0)
6944 {
6945 {
6946 return dev_storage + 571;
6947
6948 }
6949 }
6950 else
6951 {
6952 {
6953 return NULL;
6954
6955 }
6956 }
6957 case '2':
6958 if (strncmp (KR_keyword, "/dev/sdp2", 9) == 0)
6959 {
6960 {
6961 return dev_storage + 570;
6962
6963 }
6964 }
6965 else
6966 {
6967 {
6968 return NULL;
6969
6970 }
6971 }
6972 case '1':
6973 if (strncmp (KR_keyword, "/dev/sdp1", 9) == 0)
6974 {
6975 {
6976 return dev_storage + 569;
6977
6978 }
6979 }
6980 else
6981 {
6982 {
6983 return NULL;
6984
6985 }
6986 }
6987 default:
6988 {
6989 return NULL;
6990
6991 }
6992 }
6993 case 'o':
6994 switch (KR_keyword [8])
6995 {
6996 case '9':
6997 if (strncmp (KR_keyword, "/dev/sdo9", 9) == 0)
6998 {
6999 {
7000 return dev_storage + 562;
7001
7002 }
7003 }
7004 else
7005 {
7006 {
7007 return NULL;
7008
7009 }
7010 }
7011 case '8':
7012 if (strncmp (KR_keyword, "/dev/sdo8", 9) == 0)
7013 {
7014 {
7015 return dev_storage + 561;
7016
7017 }
7018 }
7019 else
7020 {
7021 {
7022 return NULL;
7023
7024 }
7025 }
7026 case '7':
7027 if (strncmp (KR_keyword, "/dev/sdo7", 9) == 0)
7028 {
7029 {
7030 return dev_storage + 560;
7031
7032 }
7033 }
7034 else
7035 {
7036 {
7037 return NULL;
7038
7039 }
7040 }
7041 case '6':
7042 if (strncmp (KR_keyword, "/dev/sdo6", 9) == 0)
7043 {
7044 {
7045 return dev_storage + 559;
7046
7047 }
7048 }
7049 else
7050 {
7051 {
7052 return NULL;
7053
7054 }
7055 }
7056 case '5':
7057 if (strncmp (KR_keyword, "/dev/sdo5", 9) == 0)
7058 {
7059 {
7060 return dev_storage + 558;
7061
7062 }
7063 }
7064 else
7065 {
7066 {
7067 return NULL;
7068
7069 }
7070 }
7071 case '4':
7072 if (strncmp (KR_keyword, "/dev/sdo4", 9) == 0)
7073 {
7074 {
7075 return dev_storage + 557;
7076
7077 }
7078 }
7079 else
7080 {
7081 {
7082 return NULL;
7083
7084 }
7085 }
7086 case '3':
7087 if (strncmp (KR_keyword, "/dev/sdo3", 9) == 0)
7088 {
7089 {
7090 return dev_storage + 556;
7091
7092 }
7093 }
7094 else
7095 {
7096 {
7097 return NULL;
7098
7099 }
7100 }
7101 case '2':
7102 if (strncmp (KR_keyword, "/dev/sdo2", 9) == 0)
7103 {
7104 {
7105 return dev_storage + 555;
7106
7107 }
7108 }
7109 else
7110 {
7111 {
7112 return NULL;
7113
7114 }
7115 }
7116 case '1':
7117 if (strncmp (KR_keyword, "/dev/sdo1", 9) == 0)
7118 {
7119 {
7120 return dev_storage + 554;
7121
7122 }
7123 }
7124 else
7125 {
7126 {
7127 return NULL;
7128
7129 }
7130 }
7131 default:
7132 {
7133 return NULL;
7134
7135 }
7136 }
7137 case 'n':
7138 switch (KR_keyword [8])
7139 {
7140 case '9':
7141 if (strncmp (KR_keyword, "/dev/sdn9", 9) == 0)
7142 {
7143 {
7144 return dev_storage + 547;
7145
7146 }
7147 }
7148 else
7149 {
7150 {
7151 return NULL;
7152
7153 }
7154 }
7155 case '8':
7156 if (strncmp (KR_keyword, "/dev/sdn8", 9) == 0)
7157 {
7158 {
7159 return dev_storage + 546;
7160
7161 }
7162 }
7163 else
7164 {
7165 {
7166 return NULL;
7167
7168 }
7169 }
7170 case '7':
7171 if (strncmp (KR_keyword, "/dev/sdn7", 9) == 0)
7172 {
7173 {
7174 return dev_storage + 545;
7175
7176 }
7177 }
7178 else
7179 {
7180 {
7181 return NULL;
7182
7183 }
7184 }
7185 case '6':
7186 if (strncmp (KR_keyword, "/dev/sdn6", 9) == 0)
7187 {
7188 {
7189 return dev_storage + 544;
7190
7191 }
7192 }
7193 else
7194 {
7195 {
7196 return NULL;
7197
7198 }
7199 }
7200 case '5':
7201 if (strncmp (KR_keyword, "/dev/sdn5", 9) == 0)
7202 {
7203 {
7204 return dev_storage + 543;
7205
7206 }
7207 }
7208 else
7209 {
7210 {
7211 return NULL;
7212
7213 }
7214 }
7215 case '4':
7216 if (strncmp (KR_keyword, "/dev/sdn4", 9) == 0)
7217 {
7218 {
7219 return dev_storage + 542;
7220
7221 }
7222 }
7223 else
7224 {
7225 {
7226 return NULL;
7227
7228 }
7229 }
7230 case '3':
7231 if (strncmp (KR_keyword, "/dev/sdn3", 9) == 0)
7232 {
7233 {
7234 return dev_storage + 541;
7235
7236 }
7237 }
7238 else
7239 {
7240 {
7241 return NULL;
7242
7243 }
7244 }
7245 case '2':
7246 if (strncmp (KR_keyword, "/dev/sdn2", 9) == 0)
7247 {
7248 {
7249 return dev_storage + 540;
7250
7251 }
7252 }
7253 else
7254 {
7255 {
7256 return NULL;
7257
7258 }
7259 }
7260 case '1':
7261 if (strncmp (KR_keyword, "/dev/sdn1", 9) == 0)
7262 {
7263 {
7264 return dev_storage + 539;
7265
7266 }
7267 }
7268 else
7269 {
7270 {
7271 return NULL;
7272
7273 }
7274 }
7275 default:
7276 {
7277 return NULL;
7278
7279 }
7280 }
7281 case 'm':
7282 switch (KR_keyword [5])
7283 {
7284 case 's':
7285 switch (KR_keyword [8])
7286 {
7287 case '9':
7288 if (strncmp (KR_keyword, "/dev/sdm9", 9) == 0)
7289 {
7290 {
7291 return dev_storage + 532;
7292
7293 }
7294 }
7295 else
7296 {
7297 {
7298 return NULL;
7299
7300 }
7301 }
7302 case '8':
7303 if (strncmp (KR_keyword, "/dev/sdm8", 9) == 0)
7304 {
7305 {
7306 return dev_storage + 531;
7307
7308 }
7309 }
7310 else
7311 {
7312 {
7313 return NULL;
7314
7315 }
7316 }
7317 case '7':
7318 if (strncmp (KR_keyword, "/dev/sdm7", 9) == 0)
7319 {
7320 {
7321 return dev_storage + 530;
7322
7323 }
7324 }
7325 else
7326 {
7327 {
7328 return NULL;
7329
7330 }
7331 }
7332 case '6':
7333 if (strncmp (KR_keyword, "/dev/sdm6", 9) == 0)
7334 {
7335 {
7336 return dev_storage + 529;
7337
7338 }
7339 }
7340 else
7341 {
7342 {
7343 return NULL;
7344
7345 }
7346 }
7347 case '5':
7348 if (strncmp (KR_keyword, "/dev/sdm5", 9) == 0)
7349 {
7350 {
7351 return dev_storage + 528;
7352
7353 }
7354 }
7355 else
7356 {
7357 {
7358 return NULL;
7359
7360 }
7361 }
7362 case '4':
7363 if (strncmp (KR_keyword, "/dev/sdm4", 9) == 0)
7364 {
7365 {
7366 return dev_storage + 527;
7367
7368 }
7369 }
7370 else
7371 {
7372 {
7373 return NULL;
7374
7375 }
7376 }
7377 case '3':
7378 if (strncmp (KR_keyword, "/dev/sdm3", 9) == 0)
7379 {
7380 {
7381 return dev_storage + 526;
7382
7383 }
7384 }
7385 else
7386 {
7387 {
7388 return NULL;
7389
7390 }
7391 }
7392 case '2':
7393 if (strncmp (KR_keyword, "/dev/sdm2", 9) == 0)
7394 {
7395 {
7396 return dev_storage + 525;
7397
7398 }
7399 }
7400 else
7401 {
7402 {
7403 return NULL;
7404
7405 }
7406 }
7407 case '1':
7408 if (strncmp (KR_keyword, "/dev/sdm1", 9) == 0)
7409 {
7410 {
7411 return dev_storage + 524;
7412
7413 }
7414 }
7415 else
7416 {
7417 {
7418 return NULL;
7419
7420 }
7421 }
7422 default:
7423 {
7424 return NULL;
7425
7426 }
7427 }
7428 case 'p':
7429 if (strncmp (KR_keyword, "/dev/ptmx", 9) == 0)
7430 {
7431 {
7432 return dev_storage + 236;
7433
7434 }
7435 }
7436 else
7437 {
7438 {
7439 return NULL;
7440
7441 }
7442 }
7443 case 'c':
7444 switch (KR_keyword [8])
7445 {
7446 case '9':
7447 if (strncmp (KR_keyword, "/dev/com9", 9) == 0)
7448 {
7449 {
7450 return dev_storage + 10;
7451
7452 }
7453 }
7454 else
7455 {
7456 {
7457 return NULL;
7458
7459 }
7460 }
7461 case '8':
7462 if (strncmp (KR_keyword, "/dev/com8", 9) == 0)
7463 {
7464 {
7465 return dev_storage + 9;
7466
7467 }
7468 }
7469 else
7470 {
7471 {
7472 return NULL;
7473
7474 }
7475 }
7476 case '7':
7477 if (strncmp (KR_keyword, "/dev/com7", 9) == 0)
7478 {
7479 {
7480 return dev_storage + 8;
7481
7482 }
7483 }
7484 else
7485 {
7486 {
7487 return NULL;
7488
7489 }
7490 }
7491 case '6':
7492 if (strncmp (KR_keyword, "/dev/com6", 9) == 0)
7493 {
7494 {
7495 return dev_storage + 7;
7496
7497 }
7498 }
7499 else
7500 {
7501 {
7502 return NULL;
7503
7504 }
7505 }
7506 case '5':
7507 if (strncmp (KR_keyword, "/dev/com5", 9) == 0)
7508 {
7509 {
7510 return dev_storage + 6;
7511
7512 }
7513 }
7514 else
7515 {
7516 {
7517 return NULL;
7518
7519 }
7520 }
7521 case '4':
7522 if (strncmp (KR_keyword, "/dev/com4", 9) == 0)
7523 {
7524 {
7525 return dev_storage + 5;
7526
7527 }
7528 }
7529 else
7530 {
7531 {
7532 return NULL;
7533
7534 }
7535 }
7536 case '3':
7537 if (strncmp (KR_keyword, "/dev/com3", 9) == 0)
7538 {
7539 {
7540 return dev_storage + 4;
7541
7542 }
7543 }
7544 else
7545 {
7546 {
7547 return NULL;
7548
7549 }
7550 }
7551 case '2':
7552 if (strncmp (KR_keyword, "/dev/com2", 9) == 0)
7553 {
7554 {
7555 return dev_storage + 3;
7556
7557 }
7558 }
7559 else
7560 {
7561 {
7562 return NULL;
7563
7564 }
7565 }
7566 case '1':
7567 if (strncmp (KR_keyword, "/dev/com1", 9) == 0)
7568 {
7569 {
7570 return dev_storage + 2;
7571
7572 }
7573 }
7574 else
7575 {
7576 {
7577 return NULL;
7578
7579 }
7580 }
7581 default:
7582 {
7583 return NULL;
7584
7585 }
7586 }
7587 default:
7588 {
7589 return NULL;
7590
7591 }
7592 }
7593 case 'l':
7594 switch (KR_keyword [8])
7595 {
7596 case 'l':
7597 switch (KR_keyword [5])
7598 {
7599 case 'n':
7600 if (strncmp (KR_keyword, "/dev/null", 9) == 0)
7601 {
7602 {
7603 return dev_storage + 234;
7604
7605 }
7606 }
7607 else
7608 {
7609 {
7610 return NULL;
7611
7612 }
7613 }
7614 case 'f':
7615 if (strncmp (KR_keyword, "/dev/full", 9) == 0)
7616 {
7617 {
7618 return dev_storage + 102;
7619
7620 }
7621 }
7622 else
7623 {
7624 {
7625 return NULL;
7626
7627 }
7628 }
7629 default:
7630 {
7631 return NULL;
7632
7633 }
7634 }
7635 case '9':
7636 if (strncmp (KR_keyword, "/dev/sdl9", 9) == 0)
7637 {
7638 {
7639 return dev_storage + 517;
7640
7641 }
7642 }
7643 else
7644 {
7645 {
7646 return NULL;
7647
7648 }
7649 }
7650 case '8':
7651 if (strncmp (KR_keyword, "/dev/sdl8", 9) == 0)
7652 {
7653 {
7654 return dev_storage + 516;
7655
7656 }
7657 }
7658 else
7659 {
7660 {
7661 return NULL;
7662
7663 }
7664 }
7665 case '7':
7666 if (strncmp (KR_keyword, "/dev/sdl7", 9) == 0)
7667 {
7668 {
7669 return dev_storage + 515;
7670
7671 }
7672 }
7673 else
7674 {
7675 {
7676 return NULL;
7677
7678 }
7679 }
7680 case '6':
7681 if (strncmp (KR_keyword, "/dev/sdl6", 9) == 0)
7682 {
7683 {
7684 return dev_storage + 514;
7685
7686 }
7687 }
7688 else
7689 {
7690 {
7691 return NULL;
7692
7693 }
7694 }
7695 case '5':
7696 if (strncmp (KR_keyword, "/dev/sdl5", 9) == 0)
7697 {
7698 {
7699 return dev_storage + 513;
7700
7701 }
7702 }
7703 else
7704 {
7705 {
7706 return NULL;
7707
7708 }
7709 }
7710 case '4':
7711 if (strncmp (KR_keyword, "/dev/sdl4", 9) == 0)
7712 {
7713 {
7714 return dev_storage + 512;
7715
7716 }
7717 }
7718 else
7719 {
7720 {
7721 return NULL;
7722
7723 }
7724 }
7725 case '3':
7726 if (strncmp (KR_keyword, "/dev/sdl3", 9) == 0)
7727 {
7728 {
7729 return dev_storage + 511;
7730
7731 }
7732 }
7733 else
7734 {
7735 {
7736 return NULL;
7737
7738 }
7739 }
7740 case '2':
7741 if (strncmp (KR_keyword, "/dev/sdl2", 9) == 0)
7742 {
7743 {
7744 return dev_storage + 510;
7745
7746 }
7747 }
7748 else
7749 {
7750 {
7751 return NULL;
7752
7753 }
7754 }
7755 case '1':
7756 if (strncmp (KR_keyword, "/dev/sdl1", 9) == 0)
7757 {
7758 {
7759 return dev_storage + 509;
7760
7761 }
7762 }
7763 else
7764 {
7765 {
7766 return NULL;
7767
7768 }
7769 }
7770 default:
7771 {
7772 return NULL;
7773
7774 }
7775 }
7776 case 'k':
7777 switch (KR_keyword [8])
7778 {
7779 case '9':
7780 if (strncmp (KR_keyword, "/dev/sdk9", 9) == 0)
7781 {
7782 {
7783 return dev_storage + 502;
7784
7785 }
7786 }
7787 else
7788 {
7789 {
7790 return NULL;
7791
7792 }
7793 }
7794 case '8':
7795 if (strncmp (KR_keyword, "/dev/sdk8", 9) == 0)
7796 {
7797 {
7798 return dev_storage + 501;
7799
7800 }
7801 }
7802 else
7803 {
7804 {
7805 return NULL;
7806
7807 }
7808 }
7809 case '7':
7810 if (strncmp (KR_keyword, "/dev/sdk7", 9) == 0)
7811 {
7812 {
7813 return dev_storage + 500;
7814
7815 }
7816 }
7817 else
7818 {
7819 {
7820 return NULL;
7821
7822 }
7823 }
7824 case '6':
7825 if (strncmp (KR_keyword, "/dev/sdk6", 9) == 0)
7826 {
7827 {
7828 return dev_storage + 499;
7829
7830 }
7831 }
7832 else
7833 {
7834 {
7835 return NULL;
7836
7837 }
7838 }
7839 case '5':
7840 if (strncmp (KR_keyword, "/dev/sdk5", 9) == 0)
7841 {
7842 {
7843 return dev_storage + 498;
7844
7845 }
7846 }
7847 else
7848 {
7849 {
7850 return NULL;
7851
7852 }
7853 }
7854 case '4':
7855 if (strncmp (KR_keyword, "/dev/sdk4", 9) == 0)
7856 {
7857 {
7858 return dev_storage + 497;
7859
7860 }
7861 }
7862 else
7863 {
7864 {
7865 return NULL;
7866
7867 }
7868 }
7869 case '3':
7870 if (strncmp (KR_keyword, "/dev/sdk3", 9) == 0)
7871 {
7872 {
7873 return dev_storage + 496;
7874
7875 }
7876 }
7877 else
7878 {
7879 {
7880 return NULL;
7881
7882 }
7883 }
7884 case '2':
7885 if (strncmp (KR_keyword, "/dev/sdk2", 9) == 0)
7886 {
7887 {
7888 return dev_storage + 495;
7889
7890 }
7891 }
7892 else
7893 {
7894 {
7895 return NULL;
7896
7897 }
7898 }
7899 case '1':
7900 if (strncmp (KR_keyword, "/dev/sdk1", 9) == 0)
7901 {
7902 {
7903 return dev_storage + 494;
7904
7905 }
7906 }
7907 else
7908 {
7909 {
7910 return NULL;
7911
7912 }
7913 }
7914 default:
7915 {
7916 return NULL;
7917
7918 }
7919 }
7920 case 'j':
7921 switch (KR_keyword [8])
7922 {
7923 case '9':
7924 if (strncmp (KR_keyword, "/dev/sdj9", 9) == 0)
7925 {
7926 {
7927 return dev_storage + 487;
7928
7929 }
7930 }
7931 else
7932 {
7933 {
7934 return NULL;
7935
7936 }
7937 }
7938 case '8':
7939 if (strncmp (KR_keyword, "/dev/sdj8", 9) == 0)
7940 {
7941 {
7942 return dev_storage + 486;
7943
7944 }
7945 }
7946 else
7947 {
7948 {
7949 return NULL;
7950
7951 }
7952 }
7953 case '7':
7954 if (strncmp (KR_keyword, "/dev/sdj7", 9) == 0)
7955 {
7956 {
7957 return dev_storage + 485;
7958
7959 }
7960 }
7961 else
7962 {
7963 {
7964 return NULL;
7965
7966 }
7967 }
7968 case '6':
7969 if (strncmp (KR_keyword, "/dev/sdj6", 9) == 0)
7970 {
7971 {
7972 return dev_storage + 484;
7973
7974 }
7975 }
7976 else
7977 {
7978 {
7979 return NULL;
7980
7981 }
7982 }
7983 case '5':
7984 if (strncmp (KR_keyword, "/dev/sdj5", 9) == 0)
7985 {
7986 {
7987 return dev_storage + 483;
7988
7989 }
7990 }
7991 else
7992 {
7993 {
7994 return NULL;
7995
7996 }
7997 }
7998 case '4':
7999 if (strncmp (KR_keyword, "/dev/sdj4", 9) == 0)
8000 {
8001 {
8002 return dev_storage + 482;
8003
8004 }
8005 }
8006 else
8007 {
8008 {
8009 return NULL;
8010
8011 }
8012 }
8013 case '3':
8014 if (strncmp (KR_keyword, "/dev/sdj3", 9) == 0)
8015 {
8016 {
8017 return dev_storage + 481;
8018
8019 }
8020 }
8021 else
8022 {
8023 {
8024 return NULL;
8025
8026 }
8027 }
8028 case '2':
8029 if (strncmp (KR_keyword, "/dev/sdj2", 9) == 0)
8030 {
8031 {
8032 return dev_storage + 480;
8033
8034 }
8035 }
8036 else
8037 {
8038 {
8039 return NULL;
8040
8041 }
8042 }
8043 case '1':
8044 if (strncmp (KR_keyword, "/dev/sdj1", 9) == 0)
8045 {
8046 {
8047 return dev_storage + 479;
8048
8049 }
8050 }
8051 else
8052 {
8053 {
8054 return NULL;
8055
8056 }
8057 }
8058 default:
8059 {
8060 return NULL;
8061
8062 }
8063 }
8064 case 'i':
8065 switch (KR_keyword [8])
8066 {
8067 case '9':
8068 if (strncmp (KR_keyword, "/dev/sdi9", 9) == 0)
8069 {
8070 {
8071 return dev_storage + 472;
8072
8073 }
8074 }
8075 else
8076 {
8077 {
8078 return NULL;
8079
8080 }
8081 }
8082 case '8':
8083 if (strncmp (KR_keyword, "/dev/sdi8", 9) == 0)
8084 {
8085 {
8086 return dev_storage + 471;
8087
8088 }
8089 }
8090 else
8091 {
8092 {
8093 return NULL;
8094
8095 }
8096 }
8097 case '7':
8098 if (strncmp (KR_keyword, "/dev/sdi7", 9) == 0)
8099 {
8100 {
8101 return dev_storage + 470;
8102
8103 }
8104 }
8105 else
8106 {
8107 {
8108 return NULL;
8109
8110 }
8111 }
8112 case '6':
8113 if (strncmp (KR_keyword, "/dev/sdi6", 9) == 0)
8114 {
8115 {
8116 return dev_storage + 469;
8117
8118 }
8119 }
8120 else
8121 {
8122 {
8123 return NULL;
8124
8125 }
8126 }
8127 case '5':
8128 if (strncmp (KR_keyword, "/dev/sdi5", 9) == 0)
8129 {
8130 {
8131 return dev_storage + 468;
8132
8133 }
8134 }
8135 else
8136 {
8137 {
8138 return NULL;
8139
8140 }
8141 }
8142 case '4':
8143 if (strncmp (KR_keyword, "/dev/sdi4", 9) == 0)
8144 {
8145 {
8146 return dev_storage + 467;
8147
8148 }
8149 }
8150 else
8151 {
8152 {
8153 return NULL;
8154
8155 }
8156 }
8157 case '3':
8158 if (strncmp (KR_keyword, "/dev/sdi3", 9) == 0)
8159 {
8160 {
8161 return dev_storage + 466;
8162
8163 }
8164 }
8165 else
8166 {
8167 {
8168 return NULL;
8169
8170 }
8171 }
8172 case '2':
8173 if (strncmp (KR_keyword, "/dev/sdi2", 9) == 0)
8174 {
8175 {
8176 return dev_storage + 465;
8177
8178 }
8179 }
8180 else
8181 {
8182 {
8183 return NULL;
8184
8185 }
8186 }
8187 case '1':
8188 if (strncmp (KR_keyword, "/dev/sdi1", 9) == 0)
8189 {
8190 {
8191 return dev_storage + 464;
8192
8193 }
8194 }
8195 else
8196 {
8197 {
8198 return NULL;
8199
8200 }
8201 }
8202 default:
8203 {
8204 return NULL;
8205
8206 }
8207 }
8208 case 'h':
8209 switch (KR_keyword [8])
8210 {
8211 case '9':
8212 if (strncmp (KR_keyword, "/dev/sdh9", 9) == 0)
8213 {
8214 {
8215 return dev_storage + 457;
8216
8217 }
8218 }
8219 else
8220 {
8221 {
8222 return NULL;
8223
8224 }
8225 }
8226 case '8':
8227 if (strncmp (KR_keyword, "/dev/sdh8", 9) == 0)
8228 {
8229 {
8230 return dev_storage + 456;
8231
8232 }
8233 }
8234 else
8235 {
8236 {
8237 return NULL;
8238
8239 }
8240 }
8241 case '7':
8242 if (strncmp (KR_keyword, "/dev/sdh7", 9) == 0)
8243 {
8244 {
8245 return dev_storage + 455;
8246
8247 }
8248 }
8249 else
8250 {
8251 {
8252 return NULL;
8253
8254 }
8255 }
8256 case '6':
8257 if (strncmp (KR_keyword, "/dev/sdh6", 9) == 0)
8258 {
8259 {
8260 return dev_storage + 454;
8261
8262 }
8263 }
8264 else
8265 {
8266 {
8267 return NULL;
8268
8269 }
8270 }
8271 case '5':
8272 if (strncmp (KR_keyword, "/dev/sdh5", 9) == 0)
8273 {
8274 {
8275 return dev_storage + 453;
8276
8277 }
8278 }
8279 else
8280 {
8281 {
8282 return NULL;
8283
8284 }
8285 }
8286 case '4':
8287 if (strncmp (KR_keyword, "/dev/sdh4", 9) == 0)
8288 {
8289 {
8290 return dev_storage + 452;
8291
8292 }
8293 }
8294 else
8295 {
8296 {
8297 return NULL;
8298
8299 }
8300 }
8301 case '3':
8302 if (strncmp (KR_keyword, "/dev/sdh3", 9) == 0)
8303 {
8304 {
8305 return dev_storage + 451;
8306
8307 }
8308 }
8309 else
8310 {
8311 {
8312 return NULL;
8313
8314 }
8315 }
8316 case '2':
8317 if (strncmp (KR_keyword, "/dev/sdh2", 9) == 0)
8318 {
8319 {
8320 return dev_storage + 450;
8321
8322 }
8323 }
8324 else
8325 {
8326 {
8327 return NULL;
8328
8329 }
8330 }
8331 case '1':
8332 if (strncmp (KR_keyword, "/dev/sdh1", 9) == 0)
8333 {
8334 {
8335 return dev_storage + 449;
8336
8337 }
8338 }
8339 else
8340 {
8341 {
8342 return NULL;
8343
8344 }
8345 }
8346 default:
8347 {
8348 return NULL;
8349
8350 }
8351 }
8352 case 'g':
8353 switch (KR_keyword [8])
8354 {
8355 case '9':
8356 if (strncmp (KR_keyword, "/dev/sdg9", 9) == 0)
8357 {
8358 {
8359 return dev_storage + 442;
8360
8361 }
8362 }
8363 else
8364 {
8365 {
8366 return NULL;
8367
8368 }
8369 }
8370 case '8':
8371 if (strncmp (KR_keyword, "/dev/sdg8", 9) == 0)
8372 {
8373 {
8374 return dev_storage + 441;
8375
8376 }
8377 }
8378 else
8379 {
8380 {
8381 return NULL;
8382
8383 }
8384 }
8385 case '7':
8386 if (strncmp (KR_keyword, "/dev/sdg7", 9) == 0)
8387 {
8388 {
8389 return dev_storage + 440;
8390
8391 }
8392 }
8393 else
8394 {
8395 {
8396 return NULL;
8397
8398 }
8399 }
8400 case '6':
8401 if (strncmp (KR_keyword, "/dev/sdg6", 9) == 0)
8402 {
8403 {
8404 return dev_storage + 439;
8405
8406 }
8407 }
8408 else
8409 {
8410 {
8411 return NULL;
8412
8413 }
8414 }
8415 case '5':
8416 if (strncmp (KR_keyword, "/dev/sdg5", 9) == 0)
8417 {
8418 {
8419 return dev_storage + 438;
8420
8421 }
8422 }
8423 else
8424 {
8425 {
8426 return NULL;
8427
8428 }
8429 }
8430 case '4':
8431 if (strncmp (KR_keyword, "/dev/sdg4", 9) == 0)
8432 {
8433 {
8434 return dev_storage + 437;
8435
8436 }
8437 }
8438 else
8439 {
8440 {
8441 return NULL;
8442
8443 }
8444 }
8445 case '3':
8446 if (strncmp (KR_keyword, "/dev/sdg3", 9) == 0)
8447 {
8448 {
8449 return dev_storage + 436;
8450
8451 }
8452 }
8453 else
8454 {
8455 {
8456 return NULL;
8457
8458 }
8459 }
8460 case '2':
8461 if (strncmp (KR_keyword, "/dev/sdg2", 9) == 0)
8462 {
8463 {
8464 return dev_storage + 435;
8465
8466 }
8467 }
8468 else
8469 {
8470 {
8471 return NULL;
8472
8473 }
8474 }
8475 case '1':
8476 if (strncmp (KR_keyword, "/dev/sdg1", 9) == 0)
8477 {
8478 {
8479 return dev_storage + 434;
8480
8481 }
8482 }
8483 else
8484 {
8485 {
8486 return NULL;
8487
8488 }
8489 }
8490 default:
8491 {
8492 return NULL;
8493
8494 }
8495 }
8496 case 'f':
8497 switch (KR_keyword [8])
8498 {
8499 case '9':
8500 if (strncmp (KR_keyword, "/dev/sdf9", 9) == 0)
8501 {
8502 {
8503 return dev_storage + 427;
8504
8505 }
8506 }
8507 else
8508 {
8509 {
8510 return NULL;
8511
8512 }
8513 }
8514 case '8':
8515 if (strncmp (KR_keyword, "/dev/sdf8", 9) == 0)
8516 {
8517 {
8518 return dev_storage + 426;
8519
8520 }
8521 }
8522 else
8523 {
8524 {
8525 return NULL;
8526
8527 }
8528 }
8529 case '7':
8530 if (strncmp (KR_keyword, "/dev/sdf7", 9) == 0)
8531 {
8532 {
8533 return dev_storage + 425;
8534
8535 }
8536 }
8537 else
8538 {
8539 {
8540 return NULL;
8541
8542 }
8543 }
8544 case '6':
8545 if (strncmp (KR_keyword, "/dev/sdf6", 9) == 0)
8546 {
8547 {
8548 return dev_storage + 424;
8549
8550 }
8551 }
8552 else
8553 {
8554 {
8555 return NULL;
8556
8557 }
8558 }
8559 case '5':
8560 if (strncmp (KR_keyword, "/dev/sdf5", 9) == 0)
8561 {
8562 {
8563 return dev_storage + 423;
8564
8565 }
8566 }
8567 else
8568 {
8569 {
8570 return NULL;
8571
8572 }
8573 }
8574 case '4':
8575 if (strncmp (KR_keyword, "/dev/sdf4", 9) == 0)
8576 {
8577 {
8578 return dev_storage + 422;
8579
8580 }
8581 }
8582 else
8583 {
8584 {
8585 return NULL;
8586
8587 }
8588 }
8589 case '3':
8590 if (strncmp (KR_keyword, "/dev/sdf3", 9) == 0)
8591 {
8592 {
8593 return dev_storage + 421;
8594
8595 }
8596 }
8597 else
8598 {
8599 {
8600 return NULL;
8601
8602 }
8603 }
8604 case '2':
8605 if (strncmp (KR_keyword, "/dev/sdf2", 9) == 0)
8606 {
8607 {
8608 return dev_storage + 420;
8609
8610 }
8611 }
8612 else
8613 {
8614 {
8615 return NULL;
8616
8617 }
8618 }
8619 case '1':
8620 if (strncmp (KR_keyword, "/dev/sdf1", 9) == 0)
8621 {
8622 {
8623 return dev_storage + 419;
8624
8625 }
8626 }
8627 else
8628 {
8629 {
8630 return NULL;
8631
8632 }
8633 }
8634 default:
8635 {
8636 return NULL;
8637
8638 }
8639 }
8640 case 'e':
8641 switch (KR_keyword [8])
8642 {
8643 case 'm':
8644 if (strncmp (KR_keyword, "/dev/kmem", 9) == 0)
8645 {
8646 {
8647 return dev_storage + 103;
8648
8649 }
8650 }
8651 else
8652 {
8653 {
8654 return NULL;
8655
8656 }
8657 }
8658 case '9':
8659 if (strncmp (KR_keyword, "/dev/sde9", 9) == 0)
8660 {
8661 {
8662 return dev_storage + 412;
8663
8664 }
8665 }
8666 else
8667 {
8668 {
8669 return NULL;
8670
8671 }
8672 }
8673 case '8':
8674 if (strncmp (KR_keyword, "/dev/sde8", 9) == 0)
8675 {
8676 {
8677 return dev_storage + 411;
8678
8679 }
8680 }
8681 else
8682 {
8683 {
8684 return NULL;
8685
8686 }
8687 }
8688 case '7':
8689 if (strncmp (KR_keyword, "/dev/sde7", 9) == 0)
8690 {
8691 {
8692 return dev_storage + 410;
8693
8694 }
8695 }
8696 else
8697 {
8698 {
8699 return NULL;
8700
8701 }
8702 }
8703 case '6':
8704 if (strncmp (KR_keyword, "/dev/sde6", 9) == 0)
8705 {
8706 {
8707 return dev_storage + 409;
8708
8709 }
8710 }
8711 else
8712 {
8713 {
8714 return NULL;
8715
8716 }
8717 }
8718 case '5':
8719 if (strncmp (KR_keyword, "/dev/sde5", 9) == 0)
8720 {
8721 {
8722 return dev_storage + 408;
8723
8724 }
8725 }
8726 else
8727 {
8728 {
8729 return NULL;
8730
8731 }
8732 }
8733 case '4':
8734 if (strncmp (KR_keyword, "/dev/sde4", 9) == 0)
8735 {
8736 {
8737 return dev_storage + 407;
8738
8739 }
8740 }
8741 else
8742 {
8743 {
8744 return NULL;
8745
8746 }
8747 }
8748 case '3':
8749 if (strncmp (KR_keyword, "/dev/sde3", 9) == 0)
8750 {
8751 {
8752 return dev_storage + 406;
8753
8754 }
8755 }
8756 else
8757 {
8758 {
8759 return NULL;
8760
8761 }
8762 }
8763 case '2':
8764 if (strncmp (KR_keyword, "/dev/sde2", 9) == 0)
8765 {
8766 {
8767 return dev_storage + 405;
8768
8769 }
8770 }
8771 else
8772 {
8773 {
8774 return NULL;
8775
8776 }
8777 }
8778 case '1':
8779 if (strncmp (KR_keyword, "/dev/sde1", 9) == 0)
8780 {
8781 {
8782 return dev_storage + 404;
8783
8784 }
8785 }
8786 else
8787 {
8788 {
8789 return NULL;
8790
8791 }
8792 }
8793 default:
8794 {
8795 return NULL;
8796
8797 }
8798 }
8799 case 'd':
8800 switch (KR_keyword [8])
8801 {
8802 case 'x':
8803 if (strncmp (KR_keyword, "/dev/sddx", 9) == 0)
8804 {
8805 {
8806 return dev_storage + 2005;
8807
8808 }
8809 }
8810 else
8811 {
8812 {
8813 return NULL;
8814
8815 }
8816 }
8817 case 'w':
8818 if (strncmp (KR_keyword, "/dev/sddw", 9) == 0)
8819 {
8820 {
8821 return dev_storage + 2004;
8822
8823 }
8824 }
8825 else
8826 {
8827 {
8828 return NULL;
8829
8830 }
8831 }
8832 case 'v':
8833 if (strncmp (KR_keyword, "/dev/sddv", 9) == 0)
8834 {
8835 {
8836 return dev_storage + 2003;
8837
8838 }
8839 }
8840 else
8841 {
8842 {
8843 return NULL;
8844
8845 }
8846 }
8847 case 'u':
8848 if (strncmp (KR_keyword, "/dev/sddu", 9) == 0)
8849 {
8850 {
8851 return dev_storage + 2002;
8852
8853 }
8854 }
8855 else
8856 {
8857 {
8858 return NULL;
8859
8860 }
8861 }
8862 case 't':
8863 if (strncmp (KR_keyword, "/dev/sddt", 9) == 0)
8864 {
8865 {
8866 return dev_storage + 2001;
8867
8868 }
8869 }
8870 else
8871 {
8872 {
8873 return NULL;
8874
8875 }
8876 }
8877 case 's':
8878 if (strncmp (KR_keyword, "/dev/sdds", 9) == 0)
8879 {
8880 {
8881 return dev_storage + 2000;
8882
8883 }
8884 }
8885 else
8886 {
8887 {
8888 return NULL;
8889
8890 }
8891 }
8892 case 'r':
8893 if (strncmp (KR_keyword, "/dev/sddr", 9) == 0)
8894 {
8895 {
8896 return dev_storage + 1999;
8897
8898 }
8899 }
8900 else
8901 {
8902 {
8903 return NULL;
8904
8905 }
8906 }
8907 case 'q':
8908 if (strncmp (KR_keyword, "/dev/sddq", 9) == 0)
8909 {
8910 {
8911 return dev_storage + 1998;
8912
8913 }
8914 }
8915 else
8916 {
8917 {
8918 return NULL;
8919
8920 }
8921 }
8922 case 'p':
8923 if (strncmp (KR_keyword, "/dev/sddp", 9) == 0)
8924 {
8925 {
8926 return dev_storage + 1997;
8927
8928 }
8929 }
8930 else
8931 {
8932 {
8933 return NULL;
8934
8935 }
8936 }
8937 case 'o':
8938 if (strncmp (KR_keyword, "/dev/sddo", 9) == 0)
8939 {
8940 {
8941 return dev_storage + 1996;
8942
8943 }
8944 }
8945 else
8946 {
8947 {
8948 return NULL;
8949
8950 }
8951 }
8952 case 'n':
8953 if (strncmp (KR_keyword, "/dev/sddn", 9) == 0)
8954 {
8955 {
8956 return dev_storage + 1995;
8957
8958 }
8959 }
8960 else
8961 {
8962 {
8963 return NULL;
8964
8965 }
8966 }
8967 case 'm':
8968 if (strncmp (KR_keyword, "/dev/sddm", 9) == 0)
8969 {
8970 {
8971 return dev_storage + 1994;
8972
8973 }
8974 }
8975 else
8976 {
8977 {
8978 return NULL;
8979
8980 }
8981 }
8982 case 'l':
8983 if (strncmp (KR_keyword, "/dev/sddl", 9) == 0)
8984 {
8985 {
8986 return dev_storage + 1993;
8987
8988 }
8989 }
8990 else
8991 {
8992 {
8993 return NULL;
8994
8995 }
8996 }
8997 case 'k':
8998 if (strncmp (KR_keyword, "/dev/sddk", 9) == 0)
8999 {
9000 {
9001 return dev_storage + 1992;
9002
9003 }
9004 }
9005 else
9006 {
9007 {
9008 return NULL;
9009
9010 }
9011 }
9012 case 'j':
9013 if (strncmp (KR_keyword, "/dev/sddj", 9) == 0)
9014 {
9015 {
9016 return dev_storage + 1991;
9017
9018 }
9019 }
9020 else
9021 {
9022 {
9023 return NULL;
9024
9025 }
9026 }
9027 case 'i':
9028 if (strncmp (KR_keyword, "/dev/sddi", 9) == 0)
9029 {
9030 {
9031 return dev_storage + 1990;
9032
9033 }
9034 }
9035 else
9036 {
9037 {
9038 return NULL;
9039
9040 }
9041 }
9042 case 'h':
9043 if (strncmp (KR_keyword, "/dev/sddh", 9) == 0)
9044 {
9045 {
9046 return dev_storage + 1989;
9047
9048 }
9049 }
9050 else
9051 {
9052 {
9053 return NULL;
9054
9055 }
9056 }
9057 case 'g':
9058 if (strncmp (KR_keyword, "/dev/sddg", 9) == 0)
9059 {
9060 {
9061 return dev_storage + 1988;
9062
9063 }
9064 }
9065 else
9066 {
9067 {
9068 return NULL;
9069
9070 }
9071 }
9072 case 'f':
9073 if (strncmp (KR_keyword, "/dev/sddf", 9) == 0)
9074 {
9075 {
9076 return dev_storage + 1987;
9077
9078 }
9079 }
9080 else
9081 {
9082 {
9083 return NULL;
9084
9085 }
9086 }
9087 case 'e':
9088 if (strncmp (KR_keyword, "/dev/sdde", 9) == 0)
9089 {
9090 {
9091 return dev_storage + 1986;
9092
9093 }
9094 }
9095 else
9096 {
9097 {
9098 return NULL;
9099
9100 }
9101 }
9102 case 'd':
9103 if (strncmp (KR_keyword, "/dev/sddd", 9) == 0)
9104 {
9105 {
9106 return dev_storage + 1985;
9107
9108 }
9109 }
9110 else
9111 {
9112 {
9113 return NULL;
9114
9115 }
9116 }
9117 case 'c':
9118 if (strncmp (KR_keyword, "/dev/sddc", 9) == 0)
9119 {
9120 {
9121 return dev_storage + 1984;
9122
9123 }
9124 }
9125 else
9126 {
9127 {
9128 return NULL;
9129
9130 }
9131 }
9132 case 'b':
9133 if (strncmp (KR_keyword, "/dev/sddb", 9) == 0)
9134 {
9135 {
9136 return dev_storage + 1983;
9137
9138 }
9139 }
9140 else
9141 {
9142 {
9143 return NULL;
9144
9145 }
9146 }
9147 case 'a':
9148 if (strncmp (KR_keyword, "/dev/sdda", 9) == 0)
9149 {
9150 {
9151 return dev_storage + 1982;
9152
9153 }
9154 }
9155 else
9156 {
9157 {
9158 return NULL;
9159
9160 }
9161 }
9162 case '9':
9163 switch (KR_keyword [6])
9164 {
9165 case 'd':
9166 if (strncmp (KR_keyword, "/dev/sdd9", 9) == 0)
9167 {
9168 {
9169 return dev_storage + 397;
9170
9171 }
9172 }
9173 else
9174 {
9175 {
9176 return NULL;
9177
9178 }
9179 }
9180 case 'c':
9181 if (strncmp (KR_keyword, "/dev/scd9", 9) == 0)
9182 {
9183 {
9184 return dev_storage + 311;
9185
9186 }
9187 }
9188 else
9189 {
9190 {
9191 return NULL;
9192
9193 }
9194 }
9195 default:
9196 {
9197 return NULL;
9198
9199 }
9200 }
9201 case '8':
9202 switch (KR_keyword [6])
9203 {
9204 case 'd':
9205 if (strncmp (KR_keyword, "/dev/sdd8", 9) == 0)
9206 {
9207 {
9208 return dev_storage + 396;
9209
9210 }
9211 }
9212 else
9213 {
9214 {
9215 return NULL;
9216
9217 }
9218 }
9219 case 'c':
9220 if (strncmp (KR_keyword, "/dev/scd8", 9) == 0)
9221 {
9222 {
9223 return dev_storage + 310;
9224
9225 }
9226 }
9227 else
9228 {
9229 {
9230 return NULL;
9231
9232 }
9233 }
9234 default:
9235 {
9236 return NULL;
9237
9238 }
9239 }
9240 case '7':
9241 switch (KR_keyword [6])
9242 {
9243 case 'd':
9244 if (strncmp (KR_keyword, "/dev/sdd7", 9) == 0)
9245 {
9246 {
9247 return dev_storage + 395;
9248
9249 }
9250 }
9251 else
9252 {
9253 {
9254 return NULL;
9255
9256 }
9257 }
9258 case 'c':
9259 if (strncmp (KR_keyword, "/dev/scd7", 9) == 0)
9260 {
9261 {
9262 return dev_storage + 309;
9263
9264 }
9265 }
9266 else
9267 {
9268 {
9269 return NULL;
9270
9271 }
9272 }
9273 default:
9274 {
9275 return NULL;
9276
9277 }
9278 }
9279 case '6':
9280 switch (KR_keyword [6])
9281 {
9282 case 'd':
9283 if (strncmp (KR_keyword, "/dev/sdd6", 9) == 0)
9284 {
9285 {
9286 return dev_storage + 394;
9287
9288 }
9289 }
9290 else
9291 {
9292 {
9293 return NULL;
9294
9295 }
9296 }
9297 case 'c':
9298 if (strncmp (KR_keyword, "/dev/scd6", 9) == 0)
9299 {
9300 {
9301 return dev_storage + 308;
9302
9303 }
9304 }
9305 else
9306 {
9307 {
9308 return NULL;
9309
9310 }
9311 }
9312 default:
9313 {
9314 return NULL;
9315
9316 }
9317 }
9318 case '5':
9319 switch (KR_keyword [6])
9320 {
9321 case 'd':
9322 if (strncmp (KR_keyword, "/dev/sdd5", 9) == 0)
9323 {
9324 {
9325 return dev_storage + 393;
9326
9327 }
9328 }
9329 else
9330 {
9331 {
9332 return NULL;
9333
9334 }
9335 }
9336 case 'c':
9337 if (strncmp (KR_keyword, "/dev/scd5", 9) == 0)
9338 {
9339 {
9340 return dev_storage + 307;
9341
9342 }
9343 }
9344 else
9345 {
9346 {
9347 return NULL;
9348
9349 }
9350 }
9351 default:
9352 {
9353 return NULL;
9354
9355 }
9356 }
9357 case '4':
9358 switch (KR_keyword [6])
9359 {
9360 case 'd':
9361 if (strncmp (KR_keyword, "/dev/sdd4", 9) == 0)
9362 {
9363 {
9364 return dev_storage + 392;
9365
9366 }
9367 }
9368 else
9369 {
9370 {
9371 return NULL;
9372
9373 }
9374 }
9375 case 'c':
9376 if (strncmp (KR_keyword, "/dev/scd4", 9) == 0)
9377 {
9378 {
9379 return dev_storage + 306;
9380
9381 }
9382 }
9383 else
9384 {
9385 {
9386 return NULL;
9387
9388 }
9389 }
9390 default:
9391 {
9392 return NULL;
9393
9394 }
9395 }
9396 case '3':
9397 switch (KR_keyword [6])
9398 {
9399 case 'd':
9400 if (strncmp (KR_keyword, "/dev/sdd3", 9) == 0)
9401 {
9402 {
9403 return dev_storage + 391;
9404
9405 }
9406 }
9407 else
9408 {
9409 {
9410 return NULL;
9411
9412 }
9413 }
9414 case 'c':
9415 if (strncmp (KR_keyword, "/dev/scd3", 9) == 0)
9416 {
9417 {
9418 return dev_storage + 305;
9419
9420 }
9421 }
9422 else
9423 {
9424 {
9425 return NULL;
9426
9427 }
9428 }
9429 default:
9430 {
9431 return NULL;
9432
9433 }
9434 }
9435 case '2':
9436 switch (KR_keyword [6])
9437 {
9438 case 'd':
9439 if (strncmp (KR_keyword, "/dev/sdd2", 9) == 0)
9440 {
9441 {
9442 return dev_storage + 390;
9443
9444 }
9445 }
9446 else
9447 {
9448 {
9449 return NULL;
9450
9451 }
9452 }
9453 case 'c':
9454 if (strncmp (KR_keyword, "/dev/scd2", 9) == 0)
9455 {
9456 {
9457 return dev_storage + 304;
9458
9459 }
9460 }
9461 else
9462 {
9463 {
9464 return NULL;
9465
9466 }
9467 }
9468 default:
9469 {
9470 return NULL;
9471
9472 }
9473 }
9474 case '1':
9475 switch (KR_keyword [6])
9476 {
9477 case 'd':
9478 if (strncmp (KR_keyword, "/dev/sdd1", 9) == 0)
9479 {
9480 {
9481 return dev_storage + 389;
9482
9483 }
9484 }
9485 else
9486 {
9487 {
9488 return NULL;
9489
9490 }
9491 }
9492 case 'c':
9493 if (strncmp (KR_keyword, "/dev/scd1", 9) == 0)
9494 {
9495 {
9496 return dev_storage + 303;
9497
9498 }
9499 }
9500 else
9501 {
9502 {
9503 return NULL;
9504
9505 }
9506 }
9507 default:
9508 {
9509 return NULL;
9510
9511 }
9512 }
9513 case '0':
9514 if (strncmp (KR_keyword, "/dev/scd0", 9) == 0)
9515 {
9516 {
9517 return dev_storage + 302;
9518
9519 }
9520 }
9521 else
9522 {
9523 {
9524 return NULL;
9525
9526 }
9527 }
9528 default:
9529 {
9530 return NULL;
9531
9532 }
9533 }
9534 case 'c':
9535 switch (KR_keyword [8])
9536 {
9537 case 'z':
9538 if (strncmp (KR_keyword, "/dev/sdcz", 9) == 0)
9539 {
9540 {
9541 return dev_storage + 1591;
9542
9543 }
9544 }
9545 else
9546 {
9547 {
9548 return NULL;
9549
9550 }
9551 }
9552 case 'y':
9553 if (strncmp (KR_keyword, "/dev/sdcy", 9) == 0)
9554 {
9555 {
9556 return dev_storage + 1590;
9557
9558 }
9559 }
9560 else
9561 {
9562 {
9563 return NULL;
9564
9565 }
9566 }
9567 case 'x':
9568 if (strncmp (KR_keyword, "/dev/sdcx", 9) == 0)
9569 {
9570 {
9571 return dev_storage + 1589;
9572
9573 }
9574 }
9575 else
9576 {
9577 {
9578 return NULL;
9579
9580 }
9581 }
9582 case 'w':
9583 if (strncmp (KR_keyword, "/dev/sdcw", 9) == 0)
9584 {
9585 {
9586 return dev_storage + 1588;
9587
9588 }
9589 }
9590 else
9591 {
9592 {
9593 return NULL;
9594
9595 }
9596 }
9597 case 'v':
9598 if (strncmp (KR_keyword, "/dev/sdcv", 9) == 0)
9599 {
9600 {
9601 return dev_storage + 1587;
9602
9603 }
9604 }
9605 else
9606 {
9607 {
9608 return NULL;
9609
9610 }
9611 }
9612 case 'u':
9613 if (strncmp (KR_keyword, "/dev/sdcu", 9) == 0)
9614 {
9615 {
9616 return dev_storage + 1586;
9617
9618 }
9619 }
9620 else
9621 {
9622 {
9623 return NULL;
9624
9625 }
9626 }
9627 case 't':
9628 if (strncmp (KR_keyword, "/dev/sdct", 9) == 0)
9629 {
9630 {
9631 return dev_storage + 1585;
9632
9633 }
9634 }
9635 else
9636 {
9637 {
9638 return NULL;
9639
9640 }
9641 }
9642 case 's':
9643 if (strncmp (KR_keyword, "/dev/sdcs", 9) == 0)
9644 {
9645 {
9646 return dev_storage + 1584;
9647
9648 }
9649 }
9650 else
9651 {
9652 {
9653 return NULL;
9654
9655 }
9656 }
9657 case 'r':
9658 if (strncmp (KR_keyword, "/dev/sdcr", 9) == 0)
9659 {
9660 {
9661 return dev_storage + 1583;
9662
9663 }
9664 }
9665 else
9666 {
9667 {
9668 return NULL;
9669
9670 }
9671 }
9672 case 'q':
9673 if (strncmp (KR_keyword, "/dev/sdcq", 9) == 0)
9674 {
9675 {
9676 return dev_storage + 1582;
9677
9678 }
9679 }
9680 else
9681 {
9682 {
9683 return NULL;
9684
9685 }
9686 }
9687 case 'p':
9688 if (strncmp (KR_keyword, "/dev/sdcp", 9) == 0)
9689 {
9690 {
9691 return dev_storage + 1581;
9692
9693 }
9694 }
9695 else
9696 {
9697 {
9698 return NULL;
9699
9700 }
9701 }
9702 case 'o':
9703 if (strncmp (KR_keyword, "/dev/sdco", 9) == 0)
9704 {
9705 {
9706 return dev_storage + 1580;
9707
9708 }
9709 }
9710 else
9711 {
9712 {
9713 return NULL;
9714
9715 }
9716 }
9717 case 'n':
9718 if (strncmp (KR_keyword, "/dev/sdcn", 9) == 0)
9719 {
9720 {
9721 return dev_storage + 1579;
9722
9723 }
9724 }
9725 else
9726 {
9727 {
9728 return NULL;
9729
9730 }
9731 }
9732 case 'm':
9733 if (strncmp (KR_keyword, "/dev/sdcm", 9) == 0)
9734 {
9735 {
9736 return dev_storage + 1578;
9737
9738 }
9739 }
9740 else
9741 {
9742 {
9743 return NULL;
9744
9745 }
9746 }
9747 case 'l':
9748 if (strncmp (KR_keyword, "/dev/sdcl", 9) == 0)
9749 {
9750 {
9751 return dev_storage + 1577;
9752
9753 }
9754 }
9755 else
9756 {
9757 {
9758 return NULL;
9759
9760 }
9761 }
9762 case 'k':
9763 if (strncmp (KR_keyword, "/dev/sdck", 9) == 0)
9764 {
9765 {
9766 return dev_storage + 1576;
9767
9768 }
9769 }
9770 else
9771 {
9772 {
9773 return NULL;
9774
9775 }
9776 }
9777 case 'j':
9778 if (strncmp (KR_keyword, "/dev/sdcj", 9) == 0)
9779 {
9780 {
9781 return dev_storage + 1575;
9782
9783 }
9784 }
9785 else
9786 {
9787 {
9788 return NULL;
9789
9790 }
9791 }
9792 case 'i':
9793 if (strncmp (KR_keyword, "/dev/sdci", 9) == 0)
9794 {
9795 {
9796 return dev_storage + 1574;
9797
9798 }
9799 }
9800 else
9801 {
9802 {
9803 return NULL;
9804
9805 }
9806 }
9807 case 'h':
9808 if (strncmp (KR_keyword, "/dev/sdch", 9) == 0)
9809 {
9810 {
9811 return dev_storage + 1573;
9812
9813 }
9814 }
9815 else
9816 {
9817 {
9818 return NULL;
9819
9820 }
9821 }
9822 case 'g':
9823 if (strncmp (KR_keyword, "/dev/sdcg", 9) == 0)
9824 {
9825 {
9826 return dev_storage + 1572;
9827
9828 }
9829 }
9830 else
9831 {
9832 {
9833 return NULL;
9834
9835 }
9836 }
9837 case 'f':
9838 if (strncmp (KR_keyword, "/dev/sdcf", 9) == 0)
9839 {
9840 {
9841 return dev_storage + 1571;
9842
9843 }
9844 }
9845 else
9846 {
9847 {
9848 return NULL;
9849
9850 }
9851 }
9852 case 'e':
9853 if (strncmp (KR_keyword, "/dev/sdce", 9) == 0)
9854 {
9855 {
9856 return dev_storage + 1570;
9857
9858 }
9859 }
9860 else
9861 {
9862 {
9863 return NULL;
9864
9865 }
9866 }
9867 case 'd':
9868 if (strncmp (KR_keyword, "/dev/sdcd", 9) == 0)
9869 {
9870 {
9871 return dev_storage + 1569;
9872
9873 }
9874 }
9875 else
9876 {
9877 {
9878 return NULL;
9879
9880 }
9881 }
9882 case 'c':
9883 if (strncmp (KR_keyword, "/dev/sdcc", 9) == 0)
9884 {
9885 {
9886 return dev_storage + 1568;
9887
9888 }
9889 }
9890 else
9891 {
9892 {
9893 return NULL;
9894
9895 }
9896 }
9897 case 'b':
9898 if (strncmp (KR_keyword, "/dev/sdcb", 9) == 0)
9899 {
9900 {
9901 return dev_storage + 1567;
9902
9903 }
9904 }
9905 else
9906 {
9907 {
9908 return NULL;
9909
9910 }
9911 }
9912 case 'a':
9913 if (strncmp (KR_keyword, "/dev/sdca", 9) == 0)
9914 {
9915 {
9916 return dev_storage + 1566;
9917
9918 }
9919 }
9920 else
9921 {
9922 {
9923 return NULL;
9924
9925 }
9926 }
9927 case '9':
9928 if (strncmp (KR_keyword, "/dev/sdc9", 9) == 0)
9929 {
9930 {
9931 return dev_storage + 382;
9932
9933 }
9934 }
9935 else
9936 {
9937 {
9938 return NULL;
9939
9940 }
9941 }
9942 case '8':
9943 if (strncmp (KR_keyword, "/dev/sdc8", 9) == 0)
9944 {
9945 {
9946 return dev_storage + 381;
9947
9948 }
9949 }
9950 else
9951 {
9952 {
9953 return NULL;
9954
9955 }
9956 }
9957 case '7':
9958 if (strncmp (KR_keyword, "/dev/sdc7", 9) == 0)
9959 {
9960 {
9961 return dev_storage + 380;
9962
9963 }
9964 }
9965 else
9966 {
9967 {
9968 return NULL;
9969
9970 }
9971 }
9972 case '6':
9973 if (strncmp (KR_keyword, "/dev/sdc6", 9) == 0)
9974 {
9975 {
9976 return dev_storage + 379;
9977
9978 }
9979 }
9980 else
9981 {
9982 {
9983 return NULL;
9984
9985 }
9986 }
9987 case '5':
9988 if (strncmp (KR_keyword, "/dev/sdc5", 9) == 0)
9989 {
9990 {
9991 return dev_storage + 378;
9992
9993 }
9994 }
9995 else
9996 {
9997 {
9998 return NULL;
9999
10000 }
10001 }
10002 case '4':
10003 if (strncmp (KR_keyword, "/dev/sdc4", 9) == 0)
10004 {
10005 {
10006 return dev_storage + 377;
10007
10008 }
10009 }
10010 else
10011 {
10012 {
10013 return NULL;
10014
10015 }
10016 }
10017 case '3':
10018 if (strncmp (KR_keyword, "/dev/sdc3", 9) == 0)
10019 {
10020 {
10021 return dev_storage + 376;
10022
10023 }
10024 }
10025 else
10026 {
10027 {
10028 return NULL;
10029
10030 }
10031 }
10032 case '2':
10033 if (strncmp (KR_keyword, "/dev/sdc2", 9) == 0)
10034 {
10035 {
10036 return dev_storage + 375;
10037
10038 }
10039 }
10040 else
10041 {
10042 {
10043 return NULL;
10044
10045 }
10046 }
10047 case '1':
10048 if (strncmp (KR_keyword, "/dev/sdc1", 9) == 0)
10049 {
10050 {
10051 return dev_storage + 374;
10052
10053 }
10054 }
10055 else
10056 {
10057 {
10058 return NULL;
10059
10060 }
10061 }
10062 default:
10063 {
10064 return NULL;
10065
10066 }
10067 }
10068 case 'b':
10069 switch (KR_keyword [8])
10070 {
10071 case 'z':
10072 if (strncmp (KR_keyword, "/dev/sdbz", 9) == 0)
10073 {
10074 {
10075 return dev_storage + 1175;
10076
10077 }
10078 }
10079 else
10080 {
10081 {
10082 return NULL;
10083
10084 }
10085 }
10086 case 'y':
10087 if (strncmp (KR_keyword, "/dev/sdby", 9) == 0)
10088 {
10089 {
10090 return dev_storage + 1174;
10091
10092 }
10093 }
10094 else
10095 {
10096 {
10097 return NULL;
10098
10099 }
10100 }
10101 case 'x':
10102 if (strncmp (KR_keyword, "/dev/sdbx", 9) == 0)
10103 {
10104 {
10105 return dev_storage + 1173;
10106
10107 }
10108 }
10109 else
10110 {
10111 {
10112 return NULL;
10113
10114 }
10115 }
10116 case 'w':
10117 if (strncmp (KR_keyword, "/dev/sdbw", 9) == 0)
10118 {
10119 {
10120 return dev_storage + 1172;
10121
10122 }
10123 }
10124 else
10125 {
10126 {
10127 return NULL;
10128
10129 }
10130 }
10131 case 'v':
10132 if (strncmp (KR_keyword, "/dev/sdbv", 9) == 0)
10133 {
10134 {
10135 return dev_storage + 1171;
10136
10137 }
10138 }
10139 else
10140 {
10141 {
10142 return NULL;
10143
10144 }
10145 }
10146 case 'u':
10147 if (strncmp (KR_keyword, "/dev/sdbu", 9) == 0)
10148 {
10149 {
10150 return dev_storage + 1170;
10151
10152 }
10153 }
10154 else
10155 {
10156 {
10157 return NULL;
10158
10159 }
10160 }
10161 case 't':
10162 if (strncmp (KR_keyword, "/dev/sdbt", 9) == 0)
10163 {
10164 {
10165 return dev_storage + 1169;
10166
10167 }
10168 }
10169 else
10170 {
10171 {
10172 return NULL;
10173
10174 }
10175 }
10176 case 's':
10177 if (strncmp (KR_keyword, "/dev/sdbs", 9) == 0)
10178 {
10179 {
10180 return dev_storage + 1168;
10181
10182 }
10183 }
10184 else
10185 {
10186 {
10187 return NULL;
10188
10189 }
10190 }
10191 case 'r':
10192 if (strncmp (KR_keyword, "/dev/sdbr", 9) == 0)
10193 {
10194 {
10195 return dev_storage + 1167;
10196
10197 }
10198 }
10199 else
10200 {
10201 {
10202 return NULL;
10203
10204 }
10205 }
10206 case 'q':
10207 if (strncmp (KR_keyword, "/dev/sdbq", 9) == 0)
10208 {
10209 {
10210 return dev_storage + 1166;
10211
10212 }
10213 }
10214 else
10215 {
10216 {
10217 return NULL;
10218
10219 }
10220 }
10221 case 'p':
10222 if (strncmp (KR_keyword, "/dev/sdbp", 9) == 0)
10223 {
10224 {
10225 return dev_storage + 1165;
10226
10227 }
10228 }
10229 else
10230 {
10231 {
10232 return NULL;
10233
10234 }
10235 }
10236 case 'o':
10237 if (strncmp (KR_keyword, "/dev/sdbo", 9) == 0)
10238 {
10239 {
10240 return dev_storage + 1164;
10241
10242 }
10243 }
10244 else
10245 {
10246 {
10247 return NULL;
10248
10249 }
10250 }
10251 case 'n':
10252 if (strncmp (KR_keyword, "/dev/sdbn", 9) == 0)
10253 {
10254 {
10255 return dev_storage + 1163;
10256
10257 }
10258 }
10259 else
10260 {
10261 {
10262 return NULL;
10263
10264 }
10265 }
10266 case 'm':
10267 if (strncmp (KR_keyword, "/dev/sdbm", 9) == 0)
10268 {
10269 {
10270 return dev_storage + 1162;
10271
10272 }
10273 }
10274 else
10275 {
10276 {
10277 return NULL;
10278
10279 }
10280 }
10281 case 'l':
10282 if (strncmp (KR_keyword, "/dev/sdbl", 9) == 0)
10283 {
10284 {
10285 return dev_storage + 1161;
10286
10287 }
10288 }
10289 else
10290 {
10291 {
10292 return NULL;
10293
10294 }
10295 }
10296 case 'k':
10297 if (strncmp (KR_keyword, "/dev/sdbk", 9) == 0)
10298 {
10299 {
10300 return dev_storage + 1160;
10301
10302 }
10303 }
10304 else
10305 {
10306 {
10307 return NULL;
10308
10309 }
10310 }
10311 case 'j':
10312 if (strncmp (KR_keyword, "/dev/sdbj", 9) == 0)
10313 {
10314 {
10315 return dev_storage + 1159;
10316
10317 }
10318 }
10319 else
10320 {
10321 {
10322 return NULL;
10323
10324 }
10325 }
10326 case 'i':
10327 if (strncmp (KR_keyword, "/dev/sdbi", 9) == 0)
10328 {
10329 {
10330 return dev_storage + 1158;
10331
10332 }
10333 }
10334 else
10335 {
10336 {
10337 return NULL;
10338
10339 }
10340 }
10341 case 'h':
10342 if (strncmp (KR_keyword, "/dev/sdbh", 9) == 0)
10343 {
10344 {
10345 return dev_storage + 1157;
10346
10347 }
10348 }
10349 else
10350 {
10351 {
10352 return NULL;
10353
10354 }
10355 }
10356 case 'g':
10357 if (strncmp (KR_keyword, "/dev/sdbg", 9) == 0)
10358 {
10359 {
10360 return dev_storage + 1156;
10361
10362 }
10363 }
10364 else
10365 {
10366 {
10367 return NULL;
10368
10369 }
10370 }
10371 case 'f':
10372 if (strncmp (KR_keyword, "/dev/sdbf", 9) == 0)
10373 {
10374 {
10375 return dev_storage + 1155;
10376
10377 }
10378 }
10379 else
10380 {
10381 {
10382 return NULL;
10383
10384 }
10385 }
10386 case 'e':
10387 if (strncmp (KR_keyword, "/dev/sdbe", 9) == 0)
10388 {
10389 {
10390 return dev_storage + 1154;
10391
10392 }
10393 }
10394 else
10395 {
10396 {
10397 return NULL;
10398
10399 }
10400 }
10401 case 'd':
10402 if (strncmp (KR_keyword, "/dev/sdbd", 9) == 0)
10403 {
10404 {
10405 return dev_storage + 1153;
10406
10407 }
10408 }
10409 else
10410 {
10411 {
10412 return NULL;
10413
10414 }
10415 }
10416 case 'c':
10417 if (strncmp (KR_keyword, "/dev/sdbc", 9) == 0)
10418 {
10419 {
10420 return dev_storage + 1152;
10421
10422 }
10423 }
10424 else
10425 {
10426 {
10427 return NULL;
10428
10429 }
10430 }
10431 case 'b':
10432 if (strncmp (KR_keyword, "/dev/sdbb", 9) == 0)
10433 {
10434 {
10435 return dev_storage + 1151;
10436
10437 }
10438 }
10439 else
10440 {
10441 {
10442 return NULL;
10443
10444 }
10445 }
10446 case 'a':
10447 if (strncmp (KR_keyword, "/dev/sdba", 9) == 0)
10448 {
10449 {
10450 return dev_storage + 1150;
10451
10452 }
10453 }
10454 else
10455 {
10456 {
10457 return NULL;
10458
10459 }
10460 }
10461 case '9':
10462 if (strncmp (KR_keyword, "/dev/sdb9", 9) == 0)
10463 {
10464 {
10465 return dev_storage + 367;
10466
10467 }
10468 }
10469 else
10470 {
10471 {
10472 return NULL;
10473
10474 }
10475 }
10476 case '8':
10477 if (strncmp (KR_keyword, "/dev/sdb8", 9) == 0)
10478 {
10479 {
10480 return dev_storage + 366;
10481
10482 }
10483 }
10484 else
10485 {
10486 {
10487 return NULL;
10488
10489 }
10490 }
10491 case '7':
10492 if (strncmp (KR_keyword, "/dev/sdb7", 9) == 0)
10493 {
10494 {
10495 return dev_storage + 365;
10496
10497 }
10498 }
10499 else
10500 {
10501 {
10502 return NULL;
10503
10504 }
10505 }
10506 case '6':
10507 if (strncmp (KR_keyword, "/dev/sdb6", 9) == 0)
10508 {
10509 {
10510 return dev_storage + 364;
10511
10512 }
10513 }
10514 else
10515 {
10516 {
10517 return NULL;
10518
10519 }
10520 }
10521 case '5':
10522 if (strncmp (KR_keyword, "/dev/sdb5", 9) == 0)
10523 {
10524 {
10525 return dev_storage + 363;
10526
10527 }
10528 }
10529 else
10530 {
10531 {
10532 return NULL;
10533
10534 }
10535 }
10536 case '4':
10537 if (strncmp (KR_keyword, "/dev/sdb4", 9) == 0)
10538 {
10539 {
10540 return dev_storage + 362;
10541
10542 }
10543 }
10544 else
10545 {
10546 {
10547 return NULL;
10548
10549 }
10550 }
10551 case '3':
10552 if (strncmp (KR_keyword, "/dev/sdb3", 9) == 0)
10553 {
10554 {
10555 return dev_storage + 361;
10556
10557 }
10558 }
10559 else
10560 {
10561 {
10562 return NULL;
10563
10564 }
10565 }
10566 case '2':
10567 if (strncmp (KR_keyword, "/dev/sdb2", 9) == 0)
10568 {
10569 {
10570 return dev_storage + 360;
10571
10572 }
10573 }
10574 else
10575 {
10576 {
10577 return NULL;
10578
10579 }
10580 }
10581 case '1':
10582 if (strncmp (KR_keyword, "/dev/sdb1", 9) == 0)
10583 {
10584 {
10585 return dev_storage + 359;
10586
10587 }
10588 }
10589 else
10590 {
10591 {
10592 return NULL;
10593
10594 }
10595 }
10596 default:
10597 {
10598 return NULL;
10599
10600 }
10601 }
10602 case 'a':
10603 switch (KR_keyword [8])
10604 {
10605 case 'z':
10606 if (strncmp (KR_keyword, "/dev/sdaz", 9) == 0)
10607 {
10608 {
10609 return dev_storage + 759;
10610
10611 }
10612 }
10613 else
10614 {
10615 {
10616 return NULL;
10617
10618 }
10619 }
10620 case 'y':
10621 if (strncmp (KR_keyword, "/dev/sday", 9) == 0)
10622 {
10623 {
10624 return dev_storage + 758;
10625
10626 }
10627 }
10628 else
10629 {
10630 {
10631 return NULL;
10632
10633 }
10634 }
10635 case 'x':
10636 if (strncmp (KR_keyword, "/dev/sdax", 9) == 0)
10637 {
10638 {
10639 return dev_storage + 757;
10640
10641 }
10642 }
10643 else
10644 {
10645 {
10646 return NULL;
10647
10648 }
10649 }
10650 case 'w':
10651 if (strncmp (KR_keyword, "/dev/sdaw", 9) == 0)
10652 {
10653 {
10654 return dev_storage + 756;
10655
10656 }
10657 }
10658 else
10659 {
10660 {
10661 return NULL;
10662
10663 }
10664 }
10665 case 'v':
10666 if (strncmp (KR_keyword, "/dev/sdav", 9) == 0)
10667 {
10668 {
10669 return dev_storage + 755;
10670
10671 }
10672 }
10673 else
10674 {
10675 {
10676 return NULL;
10677
10678 }
10679 }
10680 case 'u':
10681 if (strncmp (KR_keyword, "/dev/sdau", 9) == 0)
10682 {
10683 {
10684 return dev_storage + 754;
10685
10686 }
10687 }
10688 else
10689 {
10690 {
10691 return NULL;
10692
10693 }
10694 }
10695 case 't':
10696 if (strncmp (KR_keyword, "/dev/sdat", 9) == 0)
10697 {
10698 {
10699 return dev_storage + 753;
10700
10701 }
10702 }
10703 else
10704 {
10705 {
10706 return NULL;
10707
10708 }
10709 }
10710 case 's':
10711 if (strncmp (KR_keyword, "/dev/sdas", 9) == 0)
10712 {
10713 {
10714 return dev_storage + 752;
10715
10716 }
10717 }
10718 else
10719 {
10720 {
10721 return NULL;
10722
10723 }
10724 }
10725 case 'r':
10726 if (strncmp (KR_keyword, "/dev/sdar", 9) == 0)
10727 {
10728 {
10729 return dev_storage + 751;
10730
10731 }
10732 }
10733 else
10734 {
10735 {
10736 return NULL;
10737
10738 }
10739 }
10740 case 'q':
10741 if (strncmp (KR_keyword, "/dev/sdaq", 9) == 0)
10742 {
10743 {
10744 return dev_storage + 750;
10745
10746 }
10747 }
10748 else
10749 {
10750 {
10751 return NULL;
10752
10753 }
10754 }
10755 case 'p':
10756 if (strncmp (KR_keyword, "/dev/sdap", 9) == 0)
10757 {
10758 {
10759 return dev_storage + 749;
10760
10761 }
10762 }
10763 else
10764 {
10765 {
10766 return NULL;
10767
10768 }
10769 }
10770 case 'o':
10771 if (strncmp (KR_keyword, "/dev/sdao", 9) == 0)
10772 {
10773 {
10774 return dev_storage + 748;
10775
10776 }
10777 }
10778 else
10779 {
10780 {
10781 return NULL;
10782
10783 }
10784 }
10785 case 'n':
10786 if (strncmp (KR_keyword, "/dev/sdan", 9) == 0)
10787 {
10788 {
10789 return dev_storage + 747;
10790
10791 }
10792 }
10793 else
10794 {
10795 {
10796 return NULL;
10797
10798 }
10799 }
10800 case 'm':
10801 if (strncmp (KR_keyword, "/dev/sdam", 9) == 0)
10802 {
10803 {
10804 return dev_storage + 746;
10805
10806 }
10807 }
10808 else
10809 {
10810 {
10811 return NULL;
10812
10813 }
10814 }
10815 case 'l':
10816 if (strncmp (KR_keyword, "/dev/sdal", 9) == 0)
10817 {
10818 {
10819 return dev_storage + 745;
10820
10821 }
10822 }
10823 else
10824 {
10825 {
10826 return NULL;
10827
10828 }
10829 }
10830 case 'k':
10831 if (strncmp (KR_keyword, "/dev/sdak", 9) == 0)
10832 {
10833 {
10834 return dev_storage + 744;
10835
10836 }
10837 }
10838 else
10839 {
10840 {
10841 return NULL;
10842
10843 }
10844 }
10845 case 'j':
10846 if (strncmp (KR_keyword, "/dev/sdaj", 9) == 0)
10847 {
10848 {
10849 return dev_storage + 743;
10850
10851 }
10852 }
10853 else
10854 {
10855 {
10856 return NULL;
10857
10858 }
10859 }
10860 case 'i':
10861 if (strncmp (KR_keyword, "/dev/sdai", 9) == 0)
10862 {
10863 {
10864 return dev_storage + 742;
10865
10866 }
10867 }
10868 else
10869 {
10870 {
10871 return NULL;
10872
10873 }
10874 }
10875 case 'h':
10876 if (strncmp (KR_keyword, "/dev/sdah", 9) == 0)
10877 {
10878 {
10879 return dev_storage + 741;
10880
10881 }
10882 }
10883 else
10884 {
10885 {
10886 return NULL;
10887
10888 }
10889 }
10890 case 'g':
10891 if (strncmp (KR_keyword, "/dev/sdag", 9) == 0)
10892 {
10893 {
10894 return dev_storage + 740;
10895
10896 }
10897 }
10898 else
10899 {
10900 {
10901 return NULL;
10902
10903 }
10904 }
10905 case 'f':
10906 if (strncmp (KR_keyword, "/dev/sdaf", 9) == 0)
10907 {
10908 {
10909 return dev_storage + 739;
10910
10911 }
10912 }
10913 else
10914 {
10915 {
10916 return NULL;
10917
10918 }
10919 }
10920 case 'e':
10921 if (strncmp (KR_keyword, "/dev/sdae", 9) == 0)
10922 {
10923 {
10924 return dev_storage + 738;
10925
10926 }
10927 }
10928 else
10929 {
10930 {
10931 return NULL;
10932
10933 }
10934 }
10935 case 'd':
10936 if (strncmp (KR_keyword, "/dev/sdad", 9) == 0)
10937 {
10938 {
10939 return dev_storage + 737;
10940
10941 }
10942 }
10943 else
10944 {
10945 {
10946 return NULL;
10947
10948 }
10949 }
10950 case 'c':
10951 if (strncmp (KR_keyword, "/dev/sdac", 9) == 0)
10952 {
10953 {
10954 return dev_storage + 736;
10955
10956 }
10957 }
10958 else
10959 {
10960 {
10961 return NULL;
10962
10963 }
10964 }
10965 case 'b':
10966 if (strncmp (KR_keyword, "/dev/sdab", 9) == 0)
10967 {
10968 {
10969 return dev_storage + 735;
10970
10971 }
10972 }
10973 else
10974 {
10975 {
10976 return NULL;
10977
10978 }
10979 }
10980 case 'a':
10981 if (strncmp (KR_keyword, "/dev/sdaa", 9) == 0)
10982 {
10983 {
10984 return dev_storage + 734;
10985
10986 }
10987 }
10988 else
10989 {
10990 {
10991 return NULL;
10992
10993 }
10994 }
10995 case '9':
10996 if (strncmp (KR_keyword, "/dev/sda9", 9) == 0)
10997 {
10998 {
10999 return dev_storage + 352;
11000
11001 }
11002 }
11003 else
11004 {
11005 {
11006 return NULL;
11007
11008 }
11009 }
11010 case '8':
11011 if (strncmp (KR_keyword, "/dev/sda8", 9) == 0)
11012 {
11013 {
11014 return dev_storage + 351;
11015
11016 }
11017 }
11018 else
11019 {
11020 {
11021 return NULL;
11022
11023 }
11024 }
11025 case '7':
11026 if (strncmp (KR_keyword, "/dev/sda7", 9) == 0)
11027 {
11028 {
11029 return dev_storage + 350;
11030
11031 }
11032 }
11033 else
11034 {
11035 {
11036 return NULL;
11037
11038 }
11039 }
11040 case '6':
11041 if (strncmp (KR_keyword, "/dev/sda6", 9) == 0)
11042 {
11043 {
11044 return dev_storage + 349;
11045
11046 }
11047 }
11048 else
11049 {
11050 {
11051 return NULL;
11052
11053 }
11054 }
11055 case '5':
11056 if (strncmp (KR_keyword, "/dev/sda5", 9) == 0)
11057 {
11058 {
11059 return dev_storage + 348;
11060
11061 }
11062 }
11063 else
11064 {
11065 {
11066 return NULL;
11067
11068 }
11069 }
11070 case '4':
11071 if (strncmp (KR_keyword, "/dev/sda4", 9) == 0)
11072 {
11073 {
11074 return dev_storage + 347;
11075
11076 }
11077 }
11078 else
11079 {
11080 {
11081 return NULL;
11082
11083 }
11084 }
11085 case '3':
11086 if (strncmp (KR_keyword, "/dev/sda3", 9) == 0)
11087 {
11088 {
11089 return dev_storage + 346;
11090
11091 }
11092 }
11093 else
11094 {
11095 {
11096 return NULL;
11097
11098 }
11099 }
11100 case '2':
11101 if (strncmp (KR_keyword, "/dev/sda2", 9) == 0)
11102 {
11103 {
11104 return dev_storage + 345;
11105
11106 }
11107 }
11108 else
11109 {
11110 {
11111 return NULL;
11112
11113 }
11114 }
11115 case '1':
11116 if (strncmp (KR_keyword, "/dev/sda1", 9) == 0)
11117 {
11118 {
11119 return dev_storage + 344;
11120
11121 }
11122 }
11123 else
11124 {
11125 {
11126 return NULL;
11127
11128 }
11129 }
11130 default:
11131 {
11132 return NULL;
11133
11134 }
11135 }
11136 case '9':
11137 switch (KR_keyword [8])
11138 {
11139 case '9':
11140 if (strncmp (KR_keyword, "/dev/st99", 9) == 0)
11141 {
11142 {
11143 return dev_storage + 2481;
11144
11145 }
11146 }
11147 else
11148 {
11149 {
11150 return NULL;
11151
11152 }
11153 }
11154 case '8':
11155 if (strncmp (KR_keyword, "/dev/st98", 9) == 0)
11156 {
11157 {
11158 return dev_storage + 2480;
11159
11160 }
11161 }
11162 else
11163 {
11164 {
11165 return NULL;
11166
11167 }
11168 }
11169 case '7':
11170 if (strncmp (KR_keyword, "/dev/st97", 9) == 0)
11171 {
11172 {
11173 return dev_storage + 2479;
11174
11175 }
11176 }
11177 else
11178 {
11179 {
11180 return NULL;
11181
11182 }
11183 }
11184 case '6':
11185 if (strncmp (KR_keyword, "/dev/st96", 9) == 0)
11186 {
11187 {
11188 return dev_storage + 2478;
11189
11190 }
11191 }
11192 else
11193 {
11194 {
11195 return NULL;
11196
11197 }
11198 }
11199 case '5':
11200 if (strncmp (KR_keyword, "/dev/st95", 9) == 0)
11201 {
11202 {
11203 return dev_storage + 2477;
11204
11205 }
11206 }
11207 else
11208 {
11209 {
11210 return NULL;
11211
11212 }
11213 }
11214 case '4':
11215 if (strncmp (KR_keyword, "/dev/st94", 9) == 0)
11216 {
11217 {
11218 return dev_storage + 2476;
11219
11220 }
11221 }
11222 else
11223 {
11224 {
11225 return NULL;
11226
11227 }
11228 }
11229 case '3':
11230 if (strncmp (KR_keyword, "/dev/st93", 9) == 0)
11231 {
11232 {
11233 return dev_storage + 2475;
11234
11235 }
11236 }
11237 else
11238 {
11239 {
11240 return NULL;
11241
11242 }
11243 }
11244 case '2':
11245 if (strncmp (KR_keyword, "/dev/st92", 9) == 0)
11246 {
11247 {
11248 return dev_storage + 2474;
11249
11250 }
11251 }
11252 else
11253 {
11254 {
11255 return NULL;
11256
11257 }
11258 }
11259 case '1':
11260 if (strncmp (KR_keyword, "/dev/st91", 9) == 0)
11261 {
11262 {
11263 return dev_storage + 2473;
11264
11265 }
11266 }
11267 else
11268 {
11269 {
11270 return NULL;
11271
11272 }
11273 }
11274 case '0':
11275 if (strncmp (KR_keyword, "/dev/st90", 9) == 0)
11276 {
11277 {
11278 return dev_storage + 2472;
11279
11280 }
11281 }
11282 else
11283 {
11284 {
11285 return NULL;
11286
11287 }
11288 }
11289 default:
11290 {
11291 return NULL;
11292
11293 }
11294 }
11295 case '8':
11296 switch (KR_keyword [8])
11297 {
11298 case '9':
11299 if (strncmp (KR_keyword, "/dev/st89", 9) == 0)
11300 {
11301 {
11302 return dev_storage + 2471;
11303
11304 }
11305 }
11306 else
11307 {
11308 {
11309 return NULL;
11310
11311 }
11312 }
11313 case '8':
11314 if (strncmp (KR_keyword, "/dev/st88", 9) == 0)
11315 {
11316 {
11317 return dev_storage + 2470;
11318
11319 }
11320 }
11321 else
11322 {
11323 {
11324 return NULL;
11325
11326 }
11327 }
11328 case '7':
11329 if (strncmp (KR_keyword, "/dev/st87", 9) == 0)
11330 {
11331 {
11332 return dev_storage + 2469;
11333
11334 }
11335 }
11336 else
11337 {
11338 {
11339 return NULL;
11340
11341 }
11342 }
11343 case '6':
11344 if (strncmp (KR_keyword, "/dev/st86", 9) == 0)
11345 {
11346 {
11347 return dev_storage + 2468;
11348
11349 }
11350 }
11351 else
11352 {
11353 {
11354 return NULL;
11355
11356 }
11357 }
11358 case '5':
11359 if (strncmp (KR_keyword, "/dev/st85", 9) == 0)
11360 {
11361 {
11362 return dev_storage + 2467;
11363
11364 }
11365 }
11366 else
11367 {
11368 {
11369 return NULL;
11370
11371 }
11372 }
11373 case '4':
11374 if (strncmp (KR_keyword, "/dev/st84", 9) == 0)
11375 {
11376 {
11377 return dev_storage + 2466;
11378
11379 }
11380 }
11381 else
11382 {
11383 {
11384 return NULL;
11385
11386 }
11387 }
11388 case '3':
11389 if (strncmp (KR_keyword, "/dev/st83", 9) == 0)
11390 {
11391 {
11392 return dev_storage + 2465;
11393
11394 }
11395 }
11396 else
11397 {
11398 {
11399 return NULL;
11400
11401 }
11402 }
11403 case '2':
11404 if (strncmp (KR_keyword, "/dev/st82", 9) == 0)
11405 {
11406 {
11407 return dev_storage + 2464;
11408
11409 }
11410 }
11411 else
11412 {
11413 {
11414 return NULL;
11415
11416 }
11417 }
11418 case '1':
11419 if (strncmp (KR_keyword, "/dev/st81", 9) == 0)
11420 {
11421 {
11422 return dev_storage + 2463;
11423
11424 }
11425 }
11426 else
11427 {
11428 {
11429 return NULL;
11430
11431 }
11432 }
11433 case '0':
11434 if (strncmp (KR_keyword, "/dev/st80", 9) == 0)
11435 {
11436 {
11437 return dev_storage + 2462;
11438
11439 }
11440 }
11441 else
11442 {
11443 {
11444 return NULL;
11445
11446 }
11447 }
11448 default:
11449 {
11450 return NULL;
11451
11452 }
11453 }
11454 case '7':
11455 switch (KR_keyword [8])
11456 {
11457 case '9':
11458 if (strncmp (KR_keyword, "/dev/st79", 9) == 0)
11459 {
11460 {
11461 return dev_storage + 2461;
11462
11463 }
11464 }
11465 else
11466 {
11467 {
11468 return NULL;
11469
11470 }
11471 }
11472 case '8':
11473 if (strncmp (KR_keyword, "/dev/st78", 9) == 0)
11474 {
11475 {
11476 return dev_storage + 2460;
11477
11478 }
11479 }
11480 else
11481 {
11482 {
11483 return NULL;
11484
11485 }
11486 }
11487 case '7':
11488 if (strncmp (KR_keyword, "/dev/st77", 9) == 0)
11489 {
11490 {
11491 return dev_storage + 2459;
11492
11493 }
11494 }
11495 else
11496 {
11497 {
11498 return NULL;
11499
11500 }
11501 }
11502 case '6':
11503 if (strncmp (KR_keyword, "/dev/st76", 9) == 0)
11504 {
11505 {
11506 return dev_storage + 2458;
11507
11508 }
11509 }
11510 else
11511 {
11512 {
11513 return NULL;
11514
11515 }
11516 }
11517 case '5':
11518 if (strncmp (KR_keyword, "/dev/st75", 9) == 0)
11519 {
11520 {
11521 return dev_storage + 2457;
11522
11523 }
11524 }
11525 else
11526 {
11527 {
11528 return NULL;
11529
11530 }
11531 }
11532 case '4':
11533 if (strncmp (KR_keyword, "/dev/st74", 9) == 0)
11534 {
11535 {
11536 return dev_storage + 2456;
11537
11538 }
11539 }
11540 else
11541 {
11542 {
11543 return NULL;
11544
11545 }
11546 }
11547 case '3':
11548 if (strncmp (KR_keyword, "/dev/st73", 9) == 0)
11549 {
11550 {
11551 return dev_storage + 2455;
11552
11553 }
11554 }
11555 else
11556 {
11557 {
11558 return NULL;
11559
11560 }
11561 }
11562 case '2':
11563 if (strncmp (KR_keyword, "/dev/st72", 9) == 0)
11564 {
11565 {
11566 return dev_storage + 2454;
11567
11568 }
11569 }
11570 else
11571 {
11572 {
11573 return NULL;
11574
11575 }
11576 }
11577 case '1':
11578 if (strncmp (KR_keyword, "/dev/st71", 9) == 0)
11579 {
11580 {
11581 return dev_storage + 2453;
11582
11583 }
11584 }
11585 else
11586 {
11587 {
11588 return NULL;
11589
11590 }
11591 }
11592 case '0':
11593 if (strncmp (KR_keyword, "/dev/st70", 9) == 0)
11594 {
11595 {
11596 return dev_storage + 2452;
11597
11598 }
11599 }
11600 else
11601 {
11602 {
11603 return NULL;
11604
11605 }
11606 }
11607 default:
11608 {
11609 return NULL;
11610
11611 }
11612 }
11613 case '6':
11614 switch (KR_keyword [8])
11615 {
11616 case '9':
11617 if (strncmp (KR_keyword, "/dev/st69", 9) == 0)
11618 {
11619 {
11620 return dev_storage + 2451;
11621
11622 }
11623 }
11624 else
11625 {
11626 {
11627 return NULL;
11628
11629 }
11630 }
11631 case '8':
11632 if (strncmp (KR_keyword, "/dev/st68", 9) == 0)
11633 {
11634 {
11635 return dev_storage + 2450;
11636
11637 }
11638 }
11639 else
11640 {
11641 {
11642 return NULL;
11643
11644 }
11645 }
11646 case '7':
11647 if (strncmp (KR_keyword, "/dev/st67", 9) == 0)
11648 {
11649 {
11650 return dev_storage + 2449;
11651
11652 }
11653 }
11654 else
11655 {
11656 {
11657 return NULL;
11658
11659 }
11660 }
11661 case '6':
11662 if (strncmp (KR_keyword, "/dev/st66", 9) == 0)
11663 {
11664 {
11665 return dev_storage + 2448;
11666
11667 }
11668 }
11669 else
11670 {
11671 {
11672 return NULL;
11673
11674 }
11675 }
11676 case '5':
11677 if (strncmp (KR_keyword, "/dev/st65", 9) == 0)
11678 {
11679 {
11680 return dev_storage + 2447;
11681
11682 }
11683 }
11684 else
11685 {
11686 {
11687 return NULL;
11688
11689 }
11690 }
11691 case '4':
11692 if (strncmp (KR_keyword, "/dev/st64", 9) == 0)
11693 {
11694 {
11695 return dev_storage + 2446;
11696
11697 }
11698 }
11699 else
11700 {
11701 {
11702 return NULL;
11703
11704 }
11705 }
11706 case '3':
11707 if (strncmp (KR_keyword, "/dev/st63", 9) == 0)
11708 {
11709 {
11710 return dev_storage + 2445;
11711
11712 }
11713 }
11714 else
11715 {
11716 {
11717 return NULL;
11718
11719 }
11720 }
11721 case '2':
11722 if (strncmp (KR_keyword, "/dev/st62", 9) == 0)
11723 {
11724 {
11725 return dev_storage + 2444;
11726
11727 }
11728 }
11729 else
11730 {
11731 {
11732 return NULL;
11733
11734 }
11735 }
11736 case '1':
11737 if (strncmp (KR_keyword, "/dev/st61", 9) == 0)
11738 {
11739 {
11740 return dev_storage + 2443;
11741
11742 }
11743 }
11744 else
11745 {
11746 {
11747 return NULL;
11748
11749 }
11750 }
11751 case '0':
11752 if (strncmp (KR_keyword, "/dev/st60", 9) == 0)
11753 {
11754 {
11755 return dev_storage + 2442;
11756
11757 }
11758 }
11759 else
11760 {
11761 {
11762 return NULL;
11763
11764 }
11765 }
11766 default:
11767 {
11768 return NULL;
11769
11770 }
11771 }
11772 case '5':
11773 switch (KR_keyword [8])
11774 {
11775 case '9':
11776 if (strncmp (KR_keyword, "/dev/st59", 9) == 0)
11777 {
11778 {
11779 return dev_storage + 2441;
11780
11781 }
11782 }
11783 else
11784 {
11785 {
11786 return NULL;
11787
11788 }
11789 }
11790 case '8':
11791 if (strncmp (KR_keyword, "/dev/st58", 9) == 0)
11792 {
11793 {
11794 return dev_storage + 2440;
11795
11796 }
11797 }
11798 else
11799 {
11800 {
11801 return NULL;
11802
11803 }
11804 }
11805 case '7':
11806 if (strncmp (KR_keyword, "/dev/st57", 9) == 0)
11807 {
11808 {
11809 return dev_storage + 2439;
11810
11811 }
11812 }
11813 else
11814 {
11815 {
11816 return NULL;
11817
11818 }
11819 }
11820 case '6':
11821 if (strncmp (KR_keyword, "/dev/st56", 9) == 0)
11822 {
11823 {
11824 return dev_storage + 2438;
11825
11826 }
11827 }
11828 else
11829 {
11830 {
11831 return NULL;
11832
11833 }
11834 }
11835 case '5':
11836 if (strncmp (KR_keyword, "/dev/st55", 9) == 0)
11837 {
11838 {
11839 return dev_storage + 2437;
11840
11841 }
11842 }
11843 else
11844 {
11845 {
11846 return NULL;
11847
11848 }
11849 }
11850 case '4':
11851 if (strncmp (KR_keyword, "/dev/st54", 9) == 0)
11852 {
11853 {
11854 return dev_storage + 2436;
11855
11856 }
11857 }
11858 else
11859 {
11860 {
11861 return NULL;
11862
11863 }
11864 }
11865 case '3':
11866 if (strncmp (KR_keyword, "/dev/st53", 9) == 0)
11867 {
11868 {
11869 return dev_storage + 2435;
11870
11871 }
11872 }
11873 else
11874 {
11875 {
11876 return NULL;
11877
11878 }
11879 }
11880 case '2':
11881 if (strncmp (KR_keyword, "/dev/st52", 9) == 0)
11882 {
11883 {
11884 return dev_storage + 2434;
11885
11886 }
11887 }
11888 else
11889 {
11890 {
11891 return NULL;
11892
11893 }
11894 }
11895 case '1':
11896 if (strncmp (KR_keyword, "/dev/st51", 9) == 0)
11897 {
11898 {
11899 return dev_storage + 2433;
11900
11901 }
11902 }
11903 else
11904 {
11905 {
11906 return NULL;
11907
11908 }
11909 }
11910 case '0':
11911 if (strncmp (KR_keyword, "/dev/st50", 9) == 0)
11912 {
11913 {
11914 return dev_storage + 2432;
11915
11916 }
11917 }
11918 else
11919 {
11920 {
11921 return NULL;
11922
11923 }
11924 }
11925 default:
11926 {
11927 return NULL;
11928
11929 }
11930 }
11931 case '4':
11932 switch (KR_keyword [8])
11933 {
11934 case '9':
11935 if (strncmp (KR_keyword, "/dev/st49", 9) == 0)
11936 {
11937 {
11938 return dev_storage + 2431;
11939
11940 }
11941 }
11942 else
11943 {
11944 {
11945 return NULL;
11946
11947 }
11948 }
11949 case '8':
11950 if (strncmp (KR_keyword, "/dev/st48", 9) == 0)
11951 {
11952 {
11953 return dev_storage + 2430;
11954
11955 }
11956 }
11957 else
11958 {
11959 {
11960 return NULL;
11961
11962 }
11963 }
11964 case '7':
11965 if (strncmp (KR_keyword, "/dev/st47", 9) == 0)
11966 {
11967 {
11968 return dev_storage + 2429;
11969
11970 }
11971 }
11972 else
11973 {
11974 {
11975 return NULL;
11976
11977 }
11978 }
11979 case '6':
11980 if (strncmp (KR_keyword, "/dev/st46", 9) == 0)
11981 {
11982 {
11983 return dev_storage + 2428;
11984
11985 }
11986 }
11987 else
11988 {
11989 {
11990 return NULL;
11991
11992 }
11993 }
11994 case '5':
11995 if (strncmp (KR_keyword, "/dev/st45", 9) == 0)
11996 {
11997 {
11998 return dev_storage + 2427;
11999
12000 }
12001 }
12002 else
12003 {
12004 {
12005 return NULL;
12006
12007 }
12008 }
12009 case '4':
12010 if (strncmp (KR_keyword, "/dev/st44", 9) == 0)
12011 {
12012 {
12013 return dev_storage + 2426;
12014
12015 }
12016 }
12017 else
12018 {
12019 {
12020 return NULL;
12021
12022 }
12023 }
12024 case '3':
12025 if (strncmp (KR_keyword, "/dev/st43", 9) == 0)
12026 {
12027 {
12028 return dev_storage + 2425;
12029
12030 }
12031 }
12032 else
12033 {
12034 {
12035 return NULL;
12036
12037 }
12038 }
12039 case '2':
12040 if (strncmp (KR_keyword, "/dev/st42", 9) == 0)
12041 {
12042 {
12043 return dev_storage + 2424;
12044
12045 }
12046 }
12047 else
12048 {
12049 {
12050 return NULL;
12051
12052 }
12053 }
12054 case '1':
12055 if (strncmp (KR_keyword, "/dev/st41", 9) == 0)
12056 {
12057 {
12058 return dev_storage + 2423;
12059
12060 }
12061 }
12062 else
12063 {
12064 {
12065 return NULL;
12066
12067 }
12068 }
12069 case '0':
12070 if (strncmp (KR_keyword, "/dev/st40", 9) == 0)
12071 {
12072 {
12073 return dev_storage + 2422;
12074
12075 }
12076 }
12077 else
12078 {
12079 {
12080 return NULL;
12081
12082 }
12083 }
12084 default:
12085 {
12086 return NULL;
12087
12088 }
12089 }
12090 case '3':
12091 switch (KR_keyword [8])
12092 {
12093 case '9':
12094 if (strncmp (KR_keyword, "/dev/st39", 9) == 0)
12095 {
12096 {
12097 return dev_storage + 2421;
12098
12099 }
12100 }
12101 else
12102 {
12103 {
12104 return NULL;
12105
12106 }
12107 }
12108 case '8':
12109 if (strncmp (KR_keyword, "/dev/st38", 9) == 0)
12110 {
12111 {
12112 return dev_storage + 2420;
12113
12114 }
12115 }
12116 else
12117 {
12118 {
12119 return NULL;
12120
12121 }
12122 }
12123 case '7':
12124 if (strncmp (KR_keyword, "/dev/st37", 9) == 0)
12125 {
12126 {
12127 return dev_storage + 2419;
12128
12129 }
12130 }
12131 else
12132 {
12133 {
12134 return NULL;
12135
12136 }
12137 }
12138 case '6':
12139 if (strncmp (KR_keyword, "/dev/st36", 9) == 0)
12140 {
12141 {
12142 return dev_storage + 2418;
12143
12144 }
12145 }
12146 else
12147 {
12148 {
12149 return NULL;
12150
12151 }
12152 }
12153 case '5':
12154 if (strncmp (KR_keyword, "/dev/st35", 9) == 0)
12155 {
12156 {
12157 return dev_storage + 2417;
12158
12159 }
12160 }
12161 else
12162 {
12163 {
12164 return NULL;
12165
12166 }
12167 }
12168 case '4':
12169 if (strncmp (KR_keyword, "/dev/st34", 9) == 0)
12170 {
12171 {
12172 return dev_storage + 2416;
12173
12174 }
12175 }
12176 else
12177 {
12178 {
12179 return NULL;
12180
12181 }
12182 }
12183 case '3':
12184 if (strncmp (KR_keyword, "/dev/st33", 9) == 0)
12185 {
12186 {
12187 return dev_storage + 2415;
12188
12189 }
12190 }
12191 else
12192 {
12193 {
12194 return NULL;
12195
12196 }
12197 }
12198 case '2':
12199 if (strncmp (KR_keyword, "/dev/st32", 9) == 0)
12200 {
12201 {
12202 return dev_storage + 2414;
12203
12204 }
12205 }
12206 else
12207 {
12208 {
12209 return NULL;
12210
12211 }
12212 }
12213 case '1':
12214 if (strncmp (KR_keyword, "/dev/st31", 9) == 0)
12215 {
12216 {
12217 return dev_storage + 2413;
12218
12219 }
12220 }
12221 else
12222 {
12223 {
12224 return NULL;
12225
12226 }
12227 }
12228 case '0':
12229 if (strncmp (KR_keyword, "/dev/st30", 9) == 0)
12230 {
12231 {
12232 return dev_storage + 2412;
12233
12234 }
12235 }
12236 else
12237 {
12238 {
12239 return NULL;
12240
12241 }
12242 }
12243 default:
12244 {
12245 return NULL;
12246
12247 }
12248 }
12249 case '2':
12250 switch (KR_keyword [8])
12251 {
12252 case '9':
12253 if (strncmp (KR_keyword, "/dev/st29", 9) == 0)
12254 {
12255 {
12256 return dev_storage + 2411;
12257
12258 }
12259 }
12260 else
12261 {
12262 {
12263 return NULL;
12264
12265 }
12266 }
12267 case '8':
12268 if (strncmp (KR_keyword, "/dev/st28", 9) == 0)
12269 {
12270 {
12271 return dev_storage + 2410;
12272
12273 }
12274 }
12275 else
12276 {
12277 {
12278 return NULL;
12279
12280 }
12281 }
12282 case '7':
12283 if (strncmp (KR_keyword, "/dev/st27", 9) == 0)
12284 {
12285 {
12286 return dev_storage + 2409;
12287
12288 }
12289 }
12290 else
12291 {
12292 {
12293 return NULL;
12294
12295 }
12296 }
12297 case '6':
12298 if (strncmp (KR_keyword, "/dev/st26", 9) == 0)
12299 {
12300 {
12301 return dev_storage + 2408;
12302
12303 }
12304 }
12305 else
12306 {
12307 {
12308 return NULL;
12309
12310 }
12311 }
12312 case '5':
12313 if (strncmp (KR_keyword, "/dev/st25", 9) == 0)
12314 {
12315 {
12316 return dev_storage + 2407;
12317
12318 }
12319 }
12320 else
12321 {
12322 {
12323 return NULL;
12324
12325 }
12326 }
12327 case '4':
12328 if (strncmp (KR_keyword, "/dev/st24", 9) == 0)
12329 {
12330 {
12331 return dev_storage + 2406;
12332
12333 }
12334 }
12335 else
12336 {
12337 {
12338 return NULL;
12339
12340 }
12341 }
12342 case '3':
12343 if (strncmp (KR_keyword, "/dev/st23", 9) == 0)
12344 {
12345 {
12346 return dev_storage + 2405;
12347
12348 }
12349 }
12350 else
12351 {
12352 {
12353 return NULL;
12354
12355 }
12356 }
12357 case '2':
12358 if (strncmp (KR_keyword, "/dev/st22", 9) == 0)
12359 {
12360 {
12361 return dev_storage + 2404;
12362
12363 }
12364 }
12365 else
12366 {
12367 {
12368 return NULL;
12369
12370 }
12371 }
12372 case '1':
12373 if (strncmp (KR_keyword, "/dev/st21", 9) == 0)
12374 {
12375 {
12376 return dev_storage + 2403;
12377
12378 }
12379 }
12380 else
12381 {
12382 {
12383 return NULL;
12384
12385 }
12386 }
12387 case '0':
12388 if (strncmp (KR_keyword, "/dev/st20", 9) == 0)
12389 {
12390 {
12391 return dev_storage + 2402;
12392
12393 }
12394 }
12395 else
12396 {
12397 {
12398 return NULL;
12399
12400 }
12401 }
12402 default:
12403 {
12404 return NULL;
12405
12406 }
12407 }
12408 case '1':
12409 switch (KR_keyword [8])
12410 {
12411 case '9':
12412 if (strncmp (KR_keyword, "/dev/st19", 9) == 0)
12413 {
12414 {
12415 return dev_storage + 2401;
12416
12417 }
12418 }
12419 else
12420 {
12421 {
12422 return NULL;
12423
12424 }
12425 }
12426 case '8':
12427 if (strncmp (KR_keyword, "/dev/st18", 9) == 0)
12428 {
12429 {
12430 return dev_storage + 2400;
12431
12432 }
12433 }
12434 else
12435 {
12436 {
12437 return NULL;
12438
12439 }
12440 }
12441 case '7':
12442 if (strncmp (KR_keyword, "/dev/st17", 9) == 0)
12443 {
12444 {
12445 return dev_storage + 2399;
12446
12447 }
12448 }
12449 else
12450 {
12451 {
12452 return NULL;
12453
12454 }
12455 }
12456 case '6':
12457 if (strncmp (KR_keyword, "/dev/st16", 9) == 0)
12458 {
12459 {
12460 return dev_storage + 2398;
12461
12462 }
12463 }
12464 else
12465 {
12466 {
12467 return NULL;
12468
12469 }
12470 }
12471 case '5':
12472 switch (KR_keyword [6])
12473 {
12474 case 't':
12475 if (strncmp (KR_keyword, "/dev/st15", 9) == 0)
12476 {
12477 {
12478 return dev_storage + 2397;
12479
12480 }
12481 }
12482 else
12483 {
12484 {
12485 return NULL;
12486
12487 }
12488 }
12489 case 'r':
12490 if (strncmp (KR_keyword, "/dev/sr15", 9) == 0)
12491 {
12492 {
12493 return dev_storage + 2381;
12494
12495 }
12496 }
12497 else
12498 {
12499 {
12500 return NULL;
12501
12502 }
12503 }
12504 case 'd':
12505 if (strncmp (KR_keyword, "/dev/fd15", 9) == 0)
12506 {
12507 {
12508 return dev_storage + 101;
12509
12510 }
12511 }
12512 else
12513 {
12514 {
12515 return NULL;
12516
12517 }
12518 }
12519 default:
12520 {
12521 return NULL;
12522
12523 }
12524 }
12525 case '4':
12526 switch (KR_keyword [6])
12527 {
12528 case 't':
12529 if (strncmp (KR_keyword, "/dev/st14", 9) == 0)
12530 {
12531 {
12532 return dev_storage + 2396;
12533
12534 }
12535 }
12536 else
12537 {
12538 {
12539 return NULL;
12540
12541 }
12542 }
12543 case 'r':
12544 if (strncmp (KR_keyword, "/dev/sr14", 9) == 0)
12545 {
12546 {
12547 return dev_storage + 2380;
12548
12549 }
12550 }
12551 else
12552 {
12553 {
12554 return NULL;
12555
12556 }
12557 }
12558 case 'd':
12559 if (strncmp (KR_keyword, "/dev/fd14", 9) == 0)
12560 {
12561 {
12562 return dev_storage + 100;
12563
12564 }
12565 }
12566 else
12567 {
12568 {
12569 return NULL;
12570
12571 }
12572 }
12573 default:
12574 {
12575 return NULL;
12576
12577 }
12578 }
12579 case '3':
12580 switch (KR_keyword [6])
12581 {
12582 case 't':
12583 if (strncmp (KR_keyword, "/dev/st13", 9) == 0)
12584 {
12585 {
12586 return dev_storage + 2395;
12587
12588 }
12589 }
12590 else
12591 {
12592 {
12593 return NULL;
12594
12595 }
12596 }
12597 case 'r':
12598 if (strncmp (KR_keyword, "/dev/sr13", 9) == 0)
12599 {
12600 {
12601 return dev_storage + 2379;
12602
12603 }
12604 }
12605 else
12606 {
12607 {
12608 return NULL;
12609
12610 }
12611 }
12612 case 'd':
12613 if (strncmp (KR_keyword, "/dev/fd13", 9) == 0)
12614 {
12615 {
12616 return dev_storage + 99;
12617
12618 }
12619 }
12620 else
12621 {
12622 {
12623 return NULL;
12624
12625 }
12626 }
12627 default:
12628 {
12629 return NULL;
12630
12631 }
12632 }
12633 case '2':
12634 switch (KR_keyword [6])
12635 {
12636 case 't':
12637 if (strncmp (KR_keyword, "/dev/st12", 9) == 0)
12638 {
12639 {
12640 return dev_storage + 2394;
12641
12642 }
12643 }
12644 else
12645 {
12646 {
12647 return NULL;
12648
12649 }
12650 }
12651 case 'r':
12652 if (strncmp (KR_keyword, "/dev/sr12", 9) == 0)
12653 {
12654 {
12655 return dev_storage + 2378;
12656
12657 }
12658 }
12659 else
12660 {
12661 {
12662 return NULL;
12663
12664 }
12665 }
12666 case 'd':
12667 if (strncmp (KR_keyword, "/dev/fd12", 9) == 0)
12668 {
12669 {
12670 return dev_storage + 98;
12671
12672 }
12673 }
12674 else
12675 {
12676 {
12677 return NULL;
12678
12679 }
12680 }
12681 default:
12682 {
12683 return NULL;
12684
12685 }
12686 }
12687 case '1':
12688 switch (KR_keyword [6])
12689 {
12690 case 't':
12691 if (strncmp (KR_keyword, "/dev/st11", 9) == 0)
12692 {
12693 {
12694 return dev_storage + 2393;
12695
12696 }
12697 }
12698 else
12699 {
12700 {
12701 return NULL;
12702
12703 }
12704 }
12705 case 'r':
12706 if (strncmp (KR_keyword, "/dev/sr11", 9) == 0)
12707 {
12708 {
12709 return dev_storage + 2377;
12710
12711 }
12712 }
12713 else
12714 {
12715 {
12716 return NULL;
12717
12718 }
12719 }
12720 case 'd':
12721 if (strncmp (KR_keyword, "/dev/fd11", 9) == 0)
12722 {
12723 {
12724 return dev_storage + 97;
12725
12726 }
12727 }
12728 else
12729 {
12730 {
12731 return NULL;
12732
12733 }
12734 }
12735 default:
12736 {
12737 return NULL;
12738
12739 }
12740 }
12741 case '0':
12742 switch (KR_keyword [6])
12743 {
12744 case 't':
12745 if (strncmp (KR_keyword, "/dev/st10", 9) == 0)
12746 {
12747 {
12748 return dev_storage + 2392;
12749
12750 }
12751 }
12752 else
12753 {
12754 {
12755 return NULL;
12756
12757 }
12758 }
12759 case 'r':
12760 if (strncmp (KR_keyword, "/dev/sr10", 9) == 0)
12761 {
12762 {
12763 return dev_storage + 2376;
12764
12765 }
12766 }
12767 else
12768 {
12769 {
12770 return NULL;
12771
12772 }
12773 }
12774 case 'd':
12775 if (strncmp (KR_keyword, "/dev/fd10", 9) == 0)
12776 {
12777 {
12778 return dev_storage + 96;
12779
12780 }
12781 }
12782 else
12783 {
12784 {
12785 return NULL;
12786
12787 }
12788 }
12789 default:
12790 {
12791 return NULL;
12792
12793 }
12794 }
12795 default:
12796 {
12797 return NULL;
12798
12799 }
12800 }
12801 default:
12802 {
12803 return NULL;
12804
12805 }
12806 }
12807 case 10:
12808 switch (KR_keyword [9])
12809 {
12810 case 'n':
12811 if (strncmp (KR_keyword, "/dev/conin", 10) == 0)
12812 {
12813 {
12814 return dev_storage + 18;
12815
12816 }
12817 }
12818 else
12819 {
12820 {
12821 return NULL;
12822
12823 }
12824 }
12825 case '9':
12826 switch (KR_keyword [8])
12827 {
12828 case 'z':
12829 switch (KR_keyword [7])
12830 {
12831 case 'c':
12832 if (strncmp (KR_keyword, "/dev/sdcz9", 10) == 0)
12833 {
12834 {
12835 return dev_storage + 1975;
12836
12837 }
12838 }
12839 else
12840 {
12841 {
12842 return NULL;
12843
12844 }
12845 }
12846 case 'b':
12847 if (strncmp (KR_keyword, "/dev/sdbz9", 10) == 0)
12848 {
12849 {
12850 return dev_storage + 1559;
12851
12852 }
12853 }
12854 else
12855 {
12856 {
12857 return NULL;
12858
12859 }
12860 }
12861 case 'a':
12862 if (strncmp (KR_keyword, "/dev/sdaz9", 10) == 0)
12863 {
12864 {
12865 return dev_storage + 1143;
12866
12867 }
12868 }
12869 else
12870 {
12871 {
12872 return NULL;
12873
12874 }
12875 }
12876 default:
12877 {
12878 return NULL;
12879
12880 }
12881 }
12882 case 'y':
12883 switch (KR_keyword [7])
12884 {
12885 case 'c':
12886 if (strncmp (KR_keyword, "/dev/sdcy9", 10) == 0)
12887 {
12888 {
12889 return dev_storage + 1960;
12890
12891 }
12892 }
12893 else
12894 {
12895 {
12896 return NULL;
12897
12898 }
12899 }
12900 case 'b':
12901 if (strncmp (KR_keyword, "/dev/sdby9", 10) == 0)
12902 {
12903 {
12904 return dev_storage + 1544;
12905
12906 }
12907 }
12908 else
12909 {
12910 {
12911 return NULL;
12912
12913 }
12914 }
12915 case 'a':
12916 if (strncmp (KR_keyword, "/dev/sday9", 10) == 0)
12917 {
12918 {
12919 return dev_storage + 1128;
12920
12921 }
12922 }
12923 else
12924 {
12925 {
12926 return NULL;
12927
12928 }
12929 }
12930 default:
12931 {
12932 return NULL;
12933
12934 }
12935 }
12936 case 'x':
12937 switch (KR_keyword [7])
12938 {
12939 case 'd':
12940 if (strncmp (KR_keyword, "/dev/sddx9", 10) == 0)
12941 {
12942 {
12943 return dev_storage + 2359;
12944
12945 }
12946 }
12947 else
12948 {
12949 {
12950 return NULL;
12951
12952 }
12953 }
12954 case 'c':
12955 if (strncmp (KR_keyword, "/dev/sdcx9", 10) == 0)
12956 {
12957 {
12958 return dev_storage + 1945;
12959
12960 }
12961 }
12962 else
12963 {
12964 {
12965 return NULL;
12966
12967 }
12968 }
12969 case 'b':
12970 if (strncmp (KR_keyword, "/dev/sdbx9", 10) == 0)
12971 {
12972 {
12973 return dev_storage + 1529;
12974
12975 }
12976 }
12977 else
12978 {
12979 {
12980 return NULL;
12981
12982 }
12983 }
12984 case 'a':
12985 if (strncmp (KR_keyword, "/dev/sdax9", 10) == 0)
12986 {
12987 {
12988 return dev_storage + 1113;
12989
12990 }
12991 }
12992 else
12993 {
12994 {
12995 return NULL;
12996
12997 }
12998 }
12999 default:
13000 {
13001 return NULL;
13002
13003 }
13004 }
13005 case 'w':
13006 switch (KR_keyword [7])
13007 {
13008 case 'd':
13009 if (strncmp (KR_keyword, "/dev/sddw9", 10) == 0)
13010 {
13011 {
13012 return dev_storage + 2344;
13013
13014 }
13015 }
13016 else
13017 {
13018 {
13019 return NULL;
13020
13021 }
13022 }
13023 case 'c':
13024 if (strncmp (KR_keyword, "/dev/sdcw9", 10) == 0)
13025 {
13026 {
13027 return dev_storage + 1930;
13028
13029 }
13030 }
13031 else
13032 {
13033 {
13034 return NULL;
13035
13036 }
13037 }
13038 case 'b':
13039 if (strncmp (KR_keyword, "/dev/sdbw9", 10) == 0)
13040 {
13041 {
13042 return dev_storage + 1514;
13043
13044 }
13045 }
13046 else
13047 {
13048 {
13049 return NULL;
13050
13051 }
13052 }
13053 case 'a':
13054 if (strncmp (KR_keyword, "/dev/sdaw9", 10) == 0)
13055 {
13056 {
13057 return dev_storage + 1098;
13058
13059 }
13060 }
13061 else
13062 {
13063 {
13064 return NULL;
13065
13066 }
13067 }
13068 default:
13069 {
13070 return NULL;
13071
13072 }
13073 }
13074 case 'v':
13075 switch (KR_keyword [7])
13076 {
13077 case 'd':
13078 if (strncmp (KR_keyword, "/dev/sddv9", 10) == 0)
13079 {
13080 {
13081 return dev_storage + 2329;
13082
13083 }
13084 }
13085 else
13086 {
13087 {
13088 return NULL;
13089
13090 }
13091 }
13092 case 'c':
13093 if (strncmp (KR_keyword, "/dev/sdcv9", 10) == 0)
13094 {
13095 {
13096 return dev_storage + 1915;
13097
13098 }
13099 }
13100 else
13101 {
13102 {
13103 return NULL;
13104
13105 }
13106 }
13107 case 'b':
13108 if (strncmp (KR_keyword, "/dev/sdbv9", 10) == 0)
13109 {
13110 {
13111 return dev_storage + 1499;
13112
13113 }
13114 }
13115 else
13116 {
13117 {
13118 return NULL;
13119
13120 }
13121 }
13122 case 'a':
13123 if (strncmp (KR_keyword, "/dev/sdav9", 10) == 0)
13124 {
13125 {
13126 return dev_storage + 1083;
13127
13128 }
13129 }
13130 else
13131 {
13132 {
13133 return NULL;
13134
13135 }
13136 }
13137 default:
13138 {
13139 return NULL;
13140
13141 }
13142 }
13143 case 'u':
13144 switch (KR_keyword [7])
13145 {
13146 case 'd':
13147 if (strncmp (KR_keyword, "/dev/sddu9", 10) == 0)
13148 {
13149 {
13150 return dev_storage + 2314;
13151
13152 }
13153 }
13154 else
13155 {
13156 {
13157 return NULL;
13158
13159 }
13160 }
13161 case 'c':
13162 if (strncmp (KR_keyword, "/dev/sdcu9", 10) == 0)
13163 {
13164 {
13165 return dev_storage + 1900;
13166
13167 }
13168 }
13169 else
13170 {
13171 {
13172 return NULL;
13173
13174 }
13175 }
13176 case 'b':
13177 if (strncmp (KR_keyword, "/dev/sdbu9", 10) == 0)
13178 {
13179 {
13180 return dev_storage + 1484;
13181
13182 }
13183 }
13184 else
13185 {
13186 {
13187 return NULL;
13188
13189 }
13190 }
13191 case 'a':
13192 if (strncmp (KR_keyword, "/dev/sdau9", 10) == 0)
13193 {
13194 {
13195 return dev_storage + 1068;
13196
13197 }
13198 }
13199 else
13200 {
13201 {
13202 return NULL;
13203
13204 }
13205 }
13206 default:
13207 {
13208 return NULL;
13209
13210 }
13211 }
13212 case 't':
13213 switch (KR_keyword [7])
13214 {
13215 case 'd':
13216 if (strncmp (KR_keyword, "/dev/sddt9", 10) == 0)
13217 {
13218 {
13219 return dev_storage + 2299;
13220
13221 }
13222 }
13223 else
13224 {
13225 {
13226 return NULL;
13227
13228 }
13229 }
13230 case 'c':
13231 if (strncmp (KR_keyword, "/dev/sdct9", 10) == 0)
13232 {
13233 {
13234 return dev_storage + 1885;
13235
13236 }
13237 }
13238 else
13239 {
13240 {
13241 return NULL;
13242
13243 }
13244 }
13245 case 'b':
13246 if (strncmp (KR_keyword, "/dev/sdbt9", 10) == 0)
13247 {
13248 {
13249 return dev_storage + 1469;
13250
13251 }
13252 }
13253 else
13254 {
13255 {
13256 return NULL;
13257
13258 }
13259 }
13260 case 'a':
13261 if (strncmp (KR_keyword, "/dev/sdat9", 10) == 0)
13262 {
13263 {
13264 return dev_storage + 1053;
13265
13266 }
13267 }
13268 else
13269 {
13270 {
13271 return NULL;
13272
13273 }
13274 }
13275 default:
13276 {
13277 return NULL;
13278
13279 }
13280 }
13281 case 's':
13282 switch (KR_keyword [7])
13283 {
13284 case 'n':
13285 if (strncmp (KR_keyword, "/dev/cons9", 10) == 0)
13286 {
13287 {
13288 return dev_storage + 29;
13289
13290 }
13291 }
13292 else
13293 {
13294 {
13295 return NULL;
13296
13297 }
13298 }
13299 case 'd':
13300 if (strncmp (KR_keyword, "/dev/sdds9", 10) == 0)
13301 {
13302 {
13303 return dev_storage + 2284;
13304
13305 }
13306 }
13307 else
13308 {
13309 {
13310 return NULL;
13311
13312 }
13313 }
13314 case 'c':
13315 if (strncmp (KR_keyword, "/dev/sdcs9", 10) == 0)
13316 {
13317 {
13318 return dev_storage + 1870;
13319
13320 }
13321 }
13322 else
13323 {
13324 {
13325 return NULL;
13326
13327 }
13328 }
13329 case 'b':
13330 if (strncmp (KR_keyword, "/dev/sdbs9", 10) == 0)
13331 {
13332 {
13333 return dev_storage + 1454;
13334
13335 }
13336 }
13337 else
13338 {
13339 {
13340 return NULL;
13341
13342 }
13343 }
13344 case 'a':
13345 if (strncmp (KR_keyword, "/dev/sdas9", 10) == 0)
13346 {
13347 {
13348 return dev_storage + 1038;
13349
13350 }
13351 }
13352 else
13353 {
13354 {
13355 return NULL;
13356
13357 }
13358 }
13359 default:
13360 {
13361 return NULL;
13362
13363 }
13364 }
13365 case 'r':
13366 switch (KR_keyword [7])
13367 {
13368 case 'd':
13369 if (strncmp (KR_keyword, "/dev/sddr9", 10) == 0)
13370 {
13371 {
13372 return dev_storage + 2269;
13373
13374 }
13375 }
13376 else
13377 {
13378 {
13379 return NULL;
13380
13381 }
13382 }
13383 case 'c':
13384 if (strncmp (KR_keyword, "/dev/sdcr9", 10) == 0)
13385 {
13386 {
13387 return dev_storage + 1855;
13388
13389 }
13390 }
13391 else
13392 {
13393 {
13394 return NULL;
13395
13396 }
13397 }
13398 case 'b':
13399 if (strncmp (KR_keyword, "/dev/sdbr9", 10) == 0)
13400 {
13401 {
13402 return dev_storage + 1439;
13403
13404 }
13405 }
13406 else
13407 {
13408 {
13409 return NULL;
13410
13411 }
13412 }
13413 case 'a':
13414 if (strncmp (KR_keyword, "/dev/sdar9", 10) == 0)
13415 {
13416 {
13417 return dev_storage + 1023;
13418
13419 }
13420 }
13421 else
13422 {
13423 {
13424 return NULL;
13425
13426 }
13427 }
13428 default:
13429 {
13430 return NULL;
13431
13432 }
13433 }
13434 case 'q':
13435 switch (KR_keyword [7])
13436 {
13437 case 'd':
13438 if (strncmp (KR_keyword, "/dev/sddq9", 10) == 0)
13439 {
13440 {
13441 return dev_storage + 2254;
13442
13443 }
13444 }
13445 else
13446 {
13447 {
13448 return NULL;
13449
13450 }
13451 }
13452 case 'c':
13453 if (strncmp (KR_keyword, "/dev/sdcq9", 10) == 0)
13454 {
13455 {
13456 return dev_storage + 1840;
13457
13458 }
13459 }
13460 else
13461 {
13462 {
13463 return NULL;
13464
13465 }
13466 }
13467 case 'b':
13468 if (strncmp (KR_keyword, "/dev/sdbq9", 10) == 0)
13469 {
13470 {
13471 return dev_storage + 1424;
13472
13473 }
13474 }
13475 else
13476 {
13477 {
13478 return NULL;
13479
13480 }
13481 }
13482 case 'a':
13483 if (strncmp (KR_keyword, "/dev/sdaq9", 10) == 0)
13484 {
13485 {
13486 return dev_storage + 1008;
13487
13488 }
13489 }
13490 else
13491 {
13492 {
13493 return NULL;
13494
13495 }
13496 }
13497 default:
13498 {
13499 return NULL;
13500
13501 }
13502 }
13503 case 'p':
13504 switch (KR_keyword [7])
13505 {
13506 case 'd':
13507 if (strncmp (KR_keyword, "/dev/sddp9", 10) == 0)
13508 {
13509 {
13510 return dev_storage + 2239;
13511
13512 }
13513 }
13514 else
13515 {
13516 {
13517 return NULL;
13518
13519 }
13520 }
13521 case 'c':
13522 if (strncmp (KR_keyword, "/dev/sdcp9", 10) == 0)
13523 {
13524 {
13525 return dev_storage + 1825;
13526
13527 }
13528 }
13529 else
13530 {
13531 {
13532 return NULL;
13533
13534 }
13535 }
13536 case 'b':
13537 if (strncmp (KR_keyword, "/dev/sdbp9", 10) == 0)
13538 {
13539 {
13540 return dev_storage + 1409;
13541
13542 }
13543 }
13544 else
13545 {
13546 {
13547 return NULL;
13548
13549 }
13550 }
13551 case 'a':
13552 if (strncmp (KR_keyword, "/dev/sdap9", 10) == 0)
13553 {
13554 {
13555 return dev_storage + 993;
13556
13557 }
13558 }
13559 else
13560 {
13561 {
13562 return NULL;
13563
13564 }
13565 }
13566 default:
13567 {
13568 return NULL;
13569
13570 }
13571 }
13572 case 'o':
13573 switch (KR_keyword [7])
13574 {
13575 case 'd':
13576 if (strncmp (KR_keyword, "/dev/sddo9", 10) == 0)
13577 {
13578 {
13579 return dev_storage + 2224;
13580
13581 }
13582 }
13583 else
13584 {
13585 {
13586 return NULL;
13587
13588 }
13589 }
13590 case 'c':
13591 if (strncmp (KR_keyword, "/dev/sdco9", 10) == 0)
13592 {
13593 {
13594 return dev_storage + 1810;
13595
13596 }
13597 }
13598 else
13599 {
13600 {
13601 return NULL;
13602
13603 }
13604 }
13605 case 'b':
13606 if (strncmp (KR_keyword, "/dev/sdbo9", 10) == 0)
13607 {
13608 {
13609 return dev_storage + 1394;
13610
13611 }
13612 }
13613 else
13614 {
13615 {
13616 return NULL;
13617
13618 }
13619 }
13620 case 'a':
13621 if (strncmp (KR_keyword, "/dev/sdao9", 10) == 0)
13622 {
13623 {
13624 return dev_storage + 978;
13625
13626 }
13627 }
13628 else
13629 {
13630 {
13631 return NULL;
13632
13633 }
13634 }
13635 default:
13636 {
13637 return NULL;
13638
13639 }
13640 }
13641 case 'n':
13642 switch (KR_keyword [7])
13643 {
13644 case 'd':
13645 if (strncmp (KR_keyword, "/dev/sddn9", 10) == 0)
13646 {
13647 {
13648 return dev_storage + 2209;
13649
13650 }
13651 }
13652 else
13653 {
13654 {
13655 return NULL;
13656
13657 }
13658 }
13659 case 'c':
13660 if (strncmp (KR_keyword, "/dev/sdcn9", 10) == 0)
13661 {
13662 {
13663 return dev_storage + 1795;
13664
13665 }
13666 }
13667 else
13668 {
13669 {
13670 return NULL;
13671
13672 }
13673 }
13674 case 'b':
13675 if (strncmp (KR_keyword, "/dev/sdbn9", 10) == 0)
13676 {
13677 {
13678 return dev_storage + 1379;
13679
13680 }
13681 }
13682 else
13683 {
13684 {
13685 return NULL;
13686
13687 }
13688 }
13689 case 'a':
13690 if (strncmp (KR_keyword, "/dev/sdan9", 10) == 0)
13691 {
13692 {
13693 return dev_storage + 963;
13694
13695 }
13696 }
13697 else
13698 {
13699 {
13700 return NULL;
13701
13702 }
13703 }
13704 default:
13705 {
13706 return NULL;
13707
13708 }
13709 }
13710 case 'm':
13711 switch (KR_keyword [7])
13712 {
13713 case 'd':
13714 if (strncmp (KR_keyword, "/dev/sddm9", 10) == 0)
13715 {
13716 {
13717 return dev_storage + 2194;
13718
13719 }
13720 }
13721 else
13722 {
13723 {
13724 return NULL;
13725
13726 }
13727 }
13728 case 'c':
13729 if (strncmp (KR_keyword, "/dev/sdcm9", 10) == 0)
13730 {
13731 {
13732 return dev_storage + 1780;
13733
13734 }
13735 }
13736 else
13737 {
13738 {
13739 return NULL;
13740
13741 }
13742 }
13743 case 'b':
13744 if (strncmp (KR_keyword, "/dev/sdbm9", 10) == 0)
13745 {
13746 {
13747 return dev_storage + 1364;
13748
13749 }
13750 }
13751 else
13752 {
13753 {
13754 return NULL;
13755
13756 }
13757 }
13758 case 'a':
13759 if (strncmp (KR_keyword, "/dev/sdam9", 10) == 0)
13760 {
13761 {
13762 return dev_storage + 948;
13763
13764 }
13765 }
13766 else
13767 {
13768 {
13769 return NULL;
13770
13771 }
13772 }
13773 default:
13774 {
13775 return NULL;
13776
13777 }
13778 }
13779 case 'l':
13780 switch (KR_keyword [7])
13781 {
13782 case 'd':
13783 if (strncmp (KR_keyword, "/dev/sddl9", 10) == 0)
13784 {
13785 {
13786 return dev_storage + 2179;
13787
13788 }
13789 }
13790 else
13791 {
13792 {
13793 return NULL;
13794
13795 }
13796 }
13797 case 'c':
13798 if (strncmp (KR_keyword, "/dev/sdcl9", 10) == 0)
13799 {
13800 {
13801 return dev_storage + 1765;
13802
13803 }
13804 }
13805 else
13806 {
13807 {
13808 return NULL;
13809
13810 }
13811 }
13812 case 'b':
13813 if (strncmp (KR_keyword, "/dev/sdbl9", 10) == 0)
13814 {
13815 {
13816 return dev_storage + 1349;
13817
13818 }
13819 }
13820 else
13821 {
13822 {
13823 return NULL;
13824
13825 }
13826 }
13827 case 'a':
13828 if (strncmp (KR_keyword, "/dev/sdal9", 10) == 0)
13829 {
13830 {
13831 return dev_storage + 933;
13832
13833 }
13834 }
13835 else
13836 {
13837 {
13838 return NULL;
13839
13840 }
13841 }
13842 default:
13843 {
13844 return NULL;
13845
13846 }
13847 }
13848 case 'k':
13849 switch (KR_keyword [7])
13850 {
13851 case 'd':
13852 if (strncmp (KR_keyword, "/dev/sddk9", 10) == 0)
13853 {
13854 {
13855 return dev_storage + 2164;
13856
13857 }
13858 }
13859 else
13860 {
13861 {
13862 return NULL;
13863
13864 }
13865 }
13866 case 'c':
13867 if (strncmp (KR_keyword, "/dev/sdck9", 10) == 0)
13868 {
13869 {
13870 return dev_storage + 1750;
13871
13872 }
13873 }
13874 else
13875 {
13876 {
13877 return NULL;
13878
13879 }
13880 }
13881 case 'b':
13882 if (strncmp (KR_keyword, "/dev/sdbk9", 10) == 0)
13883 {
13884 {
13885 return dev_storage + 1334;
13886
13887 }
13888 }
13889 else
13890 {
13891 {
13892 return NULL;
13893
13894 }
13895 }
13896 case 'a':
13897 if (strncmp (KR_keyword, "/dev/sdak9", 10) == 0)
13898 {
13899 {
13900 return dev_storage + 918;
13901
13902 }
13903 }
13904 else
13905 {
13906 {
13907 return NULL;
13908
13909 }
13910 }
13911 default:
13912 {
13913 return NULL;
13914
13915 }
13916 }
13917 case 'j':
13918 switch (KR_keyword [7])
13919 {
13920 case 'd':
13921 if (strncmp (KR_keyword, "/dev/sddj9", 10) == 0)
13922 {
13923 {
13924 return dev_storage + 2149;
13925
13926 }
13927 }
13928 else
13929 {
13930 {
13931 return NULL;
13932
13933 }
13934 }
13935 case 'c':
13936 if (strncmp (KR_keyword, "/dev/sdcj9", 10) == 0)
13937 {
13938 {
13939 return dev_storage + 1735;
13940
13941 }
13942 }
13943 else
13944 {
13945 {
13946 return NULL;
13947
13948 }
13949 }
13950 case 'b':
13951 if (strncmp (KR_keyword, "/dev/sdbj9", 10) == 0)
13952 {
13953 {
13954 return dev_storage + 1319;
13955
13956 }
13957 }
13958 else
13959 {
13960 {
13961 return NULL;
13962
13963 }
13964 }
13965 case 'a':
13966 if (strncmp (KR_keyword, "/dev/sdaj9", 10) == 0)
13967 {
13968 {
13969 return dev_storage + 903;
13970
13971 }
13972 }
13973 else
13974 {
13975 {
13976 return NULL;
13977
13978 }
13979 }
13980 default:
13981 {
13982 return NULL;
13983
13984 }
13985 }
13986 case 'i':
13987 switch (KR_keyword [7])
13988 {
13989 case 'd':
13990 if (strncmp (KR_keyword, "/dev/sddi9", 10) == 0)
13991 {
13992 {
13993 return dev_storage + 2134;
13994
13995 }
13996 }
13997 else
13998 {
13999 {
14000 return NULL;
14001
14002 }
14003 }
14004 case 'c':
14005 if (strncmp (KR_keyword, "/dev/sdci9", 10) == 0)
14006 {
14007 {
14008 return dev_storage + 1720;
14009
14010 }
14011 }
14012 else
14013 {
14014 {
14015 return NULL;
14016
14017 }
14018 }
14019 case 'b':
14020 if (strncmp (KR_keyword, "/dev/sdbi9", 10) == 0)
14021 {
14022 {
14023 return dev_storage + 1304;
14024
14025 }
14026 }
14027 else
14028 {
14029 {
14030 return NULL;
14031
14032 }
14033 }
14034 case 'a':
14035 if (strncmp (KR_keyword, "/dev/sdai9", 10) == 0)
14036 {
14037 {
14038 return dev_storage + 888;
14039
14040 }
14041 }
14042 else
14043 {
14044 {
14045 return NULL;
14046
14047 }
14048 }
14049 default:
14050 {
14051 return NULL;
14052
14053 }
14054 }
14055 case 'h':
14056 switch (KR_keyword [7])
14057 {
14058 case 'd':
14059 if (strncmp (KR_keyword, "/dev/sddh9", 10) == 0)
14060 {
14061 {
14062 return dev_storage + 2119;
14063
14064 }
14065 }
14066 else
14067 {
14068 {
14069 return NULL;
14070
14071 }
14072 }
14073 case 'c':
14074 if (strncmp (KR_keyword, "/dev/sdch9", 10) == 0)
14075 {
14076 {
14077 return dev_storage + 1705;
14078
14079 }
14080 }
14081 else
14082 {
14083 {
14084 return NULL;
14085
14086 }
14087 }
14088 case 'b':
14089 if (strncmp (KR_keyword, "/dev/sdbh9", 10) == 0)
14090 {
14091 {
14092 return dev_storage + 1289;
14093
14094 }
14095 }
14096 else
14097 {
14098 {
14099 return NULL;
14100
14101 }
14102 }
14103 case 'a':
14104 if (strncmp (KR_keyword, "/dev/sdah9", 10) == 0)
14105 {
14106 {
14107 return dev_storage + 873;
14108
14109 }
14110 }
14111 else
14112 {
14113 {
14114 return NULL;
14115
14116 }
14117 }
14118 default:
14119 {
14120 return NULL;
14121
14122 }
14123 }
14124 case 'g':
14125 switch (KR_keyword [7])
14126 {
14127 case 'd':
14128 if (strncmp (KR_keyword, "/dev/sddg9", 10) == 0)
14129 {
14130 {
14131 return dev_storage + 2104;
14132
14133 }
14134 }
14135 else
14136 {
14137 {
14138 return NULL;
14139
14140 }
14141 }
14142 case 'c':
14143 if (strncmp (KR_keyword, "/dev/sdcg9", 10) == 0)
14144 {
14145 {
14146 return dev_storage + 1690;
14147
14148 }
14149 }
14150 else
14151 {
14152 {
14153 return NULL;
14154
14155 }
14156 }
14157 case 'b':
14158 if (strncmp (KR_keyword, "/dev/sdbg9", 10) == 0)
14159 {
14160 {
14161 return dev_storage + 1274;
14162
14163 }
14164 }
14165 else
14166 {
14167 {
14168 return NULL;
14169
14170 }
14171 }
14172 case 'a':
14173 if (strncmp (KR_keyword, "/dev/sdag9", 10) == 0)
14174 {
14175 {
14176 return dev_storage + 858;
14177
14178 }
14179 }
14180 else
14181 {
14182 {
14183 return NULL;
14184
14185 }
14186 }
14187 default:
14188 {
14189 return NULL;
14190
14191 }
14192 }
14193 case 'f':
14194 switch (KR_keyword [7])
14195 {
14196 case 'd':
14197 if (strncmp (KR_keyword, "/dev/sddf9", 10) == 0)
14198 {
14199 {
14200 return dev_storage + 2089;
14201
14202 }
14203 }
14204 else
14205 {
14206 {
14207 return NULL;
14208
14209 }
14210 }
14211 case 'c':
14212 if (strncmp (KR_keyword, "/dev/sdcf9", 10) == 0)
14213 {
14214 {
14215 return dev_storage + 1675;
14216
14217 }
14218 }
14219 else
14220 {
14221 {
14222 return NULL;
14223
14224 }
14225 }
14226 case 'b':
14227 if (strncmp (KR_keyword, "/dev/sdbf9", 10) == 0)
14228 {
14229 {
14230 return dev_storage + 1259;
14231
14232 }
14233 }
14234 else
14235 {
14236 {
14237 return NULL;
14238
14239 }
14240 }
14241 case 'a':
14242 if (strncmp (KR_keyword, "/dev/sdaf9", 10) == 0)
14243 {
14244 {
14245 return dev_storage + 843;
14246
14247 }
14248 }
14249 else
14250 {
14251 {
14252 return NULL;
14253
14254 }
14255 }
14256 default:
14257 {
14258 return NULL;
14259
14260 }
14261 }
14262 case 'e':
14263 switch (KR_keyword [7])
14264 {
14265 case 'd':
14266 if (strncmp (KR_keyword, "/dev/sdde9", 10) == 0)
14267 {
14268 {
14269 return dev_storage + 2074;
14270
14271 }
14272 }
14273 else
14274 {
14275 {
14276 return NULL;
14277
14278 }
14279 }
14280 case 'c':
14281 if (strncmp (KR_keyword, "/dev/sdce9", 10) == 0)
14282 {
14283 {
14284 return dev_storage + 1660;
14285
14286 }
14287 }
14288 else
14289 {
14290 {
14291 return NULL;
14292
14293 }
14294 }
14295 case 'b':
14296 if (strncmp (KR_keyword, "/dev/sdbe9", 10) == 0)
14297 {
14298 {
14299 return dev_storage + 1244;
14300
14301 }
14302 }
14303 else
14304 {
14305 {
14306 return NULL;
14307
14308 }
14309 }
14310 case 'a':
14311 if (strncmp (KR_keyword, "/dev/sdae9", 10) == 0)
14312 {
14313 {
14314 return dev_storage + 828;
14315
14316 }
14317 }
14318 else
14319 {
14320 {
14321 return NULL;
14322
14323 }
14324 }
14325 default:
14326 {
14327 return NULL;
14328
14329 }
14330 }
14331 case 'd':
14332 switch (KR_keyword [7])
14333 {
14334 case 'd':
14335 if (strncmp (KR_keyword, "/dev/sddd9", 10) == 0)
14336 {
14337 {
14338 return dev_storage + 2059;
14339
14340 }
14341 }
14342 else
14343 {
14344 {
14345 return NULL;
14346
14347 }
14348 }
14349 case 'c':
14350 if (strncmp (KR_keyword, "/dev/sdcd9", 10) == 0)
14351 {
14352 {
14353 return dev_storage + 1645;
14354
14355 }
14356 }
14357 else
14358 {
14359 {
14360 return NULL;
14361
14362 }
14363 }
14364 case 'b':
14365 if (strncmp (KR_keyword, "/dev/sdbd9", 10) == 0)
14366 {
14367 {
14368 return dev_storage + 1229;
14369
14370 }
14371 }
14372 else
14373 {
14374 {
14375 return NULL;
14376
14377 }
14378 }
14379 case 'a':
14380 if (strncmp (KR_keyword, "/dev/sdad9", 10) == 0)
14381 {
14382 {
14383 return dev_storage + 813;
14384
14385 }
14386 }
14387 else
14388 {
14389 {
14390 return NULL;
14391
14392 }
14393 }
14394 default:
14395 {
14396 return NULL;
14397
14398 }
14399 }
14400 case 'c':
14401 switch (KR_keyword [7])
14402 {
14403 case 'd':
14404 if (strncmp (KR_keyword, "/dev/sddc9", 10) == 0)
14405 {
14406 {
14407 return dev_storage + 2044;
14408
14409 }
14410 }
14411 else
14412 {
14413 {
14414 return NULL;
14415
14416 }
14417 }
14418 case 'c':
14419 if (strncmp (KR_keyword, "/dev/sdcc9", 10) == 0)
14420 {
14421 {
14422 return dev_storage + 1630;
14423
14424 }
14425 }
14426 else
14427 {
14428 {
14429 return NULL;
14430
14431 }
14432 }
14433 case 'b':
14434 if (strncmp (KR_keyword, "/dev/sdbc9", 10) == 0)
14435 {
14436 {
14437 return dev_storage + 1214;
14438
14439 }
14440 }
14441 else
14442 {
14443 {
14444 return NULL;
14445
14446 }
14447 }
14448 case 'a':
14449 if (strncmp (KR_keyword, "/dev/sdac9", 10) == 0)
14450 {
14451 {
14452 return dev_storage + 798;
14453
14454 }
14455 }
14456 else
14457 {
14458 {
14459 return NULL;
14460
14461 }
14462 }
14463 default:
14464 {
14465 return NULL;
14466
14467 }
14468 }
14469 case 'b':
14470 switch (KR_keyword [7])
14471 {
14472 case 'd':
14473 if (strncmp (KR_keyword, "/dev/sddb9", 10) == 0)
14474 {
14475 {
14476 return dev_storage + 2029;
14477
14478 }
14479 }
14480 else
14481 {
14482 {
14483 return NULL;
14484
14485 }
14486 }
14487 case 'c':
14488 if (strncmp (KR_keyword, "/dev/sdcb9", 10) == 0)
14489 {
14490 {
14491 return dev_storage + 1615;
14492
14493 }
14494 }
14495 else
14496 {
14497 {
14498 return NULL;
14499
14500 }
14501 }
14502 case 'b':
14503 if (strncmp (KR_keyword, "/dev/sdbb9", 10) == 0)
14504 {
14505 {
14506 return dev_storage + 1199;
14507
14508 }
14509 }
14510 else
14511 {
14512 {
14513 return NULL;
14514
14515 }
14516 }
14517 case 'a':
14518 if (strncmp (KR_keyword, "/dev/sdab9", 10) == 0)
14519 {
14520 {
14521 return dev_storage + 783;
14522
14523 }
14524 }
14525 else
14526 {
14527 {
14528 return NULL;
14529
14530 }
14531 }
14532 default:
14533 {
14534 return NULL;
14535
14536 }
14537 }
14538 case 'a':
14539 switch (KR_keyword [7])
14540 {
14541 case 'd':
14542 if (strncmp (KR_keyword, "/dev/sdda9", 10) == 0)
14543 {
14544 {
14545 return dev_storage + 2014;
14546
14547 }
14548 }
14549 else
14550 {
14551 {
14552 return NULL;
14553
14554 }
14555 }
14556 case 'c':
14557 if (strncmp (KR_keyword, "/dev/sdca9", 10) == 0)
14558 {
14559 {
14560 return dev_storage + 1600;
14561
14562 }
14563 }
14564 else
14565 {
14566 {
14567 return NULL;
14568
14569 }
14570 }
14571 case 'b':
14572 if (strncmp (KR_keyword, "/dev/sdba9", 10) == 0)
14573 {
14574 {
14575 return dev_storage + 1184;
14576
14577 }
14578 }
14579 else
14580 {
14581 {
14582 return NULL;
14583
14584 }
14585 }
14586 case 'a':
14587 if (strncmp (KR_keyword, "/dev/sdaa9", 10) == 0)
14588 {
14589 {
14590 return dev_storage + 768;
14591
14592 }
14593 }
14594 else
14595 {
14596 {
14597 return NULL;
14598
14599 }
14600 }
14601 default:
14602 {
14603 return NULL;
14604
14605 }
14606 }
14607 case 'S':
14608 if (strncmp (KR_keyword, "/dev/ttyS9", 10) == 0)
14609 {
14610 {
14611 return dev_storage + 2520;
14612
14613 }
14614 }
14615 else
14616 {
14617 {
14618 return NULL;
14619
14620 }
14621 }
14622 case '9':
14623 if (strncmp (KR_keyword, "/dev/nst99", 10) == 0)
14624 {
14625 {
14626 return dev_storage + 205;
14627
14628 }
14629 }
14630 else
14631 {
14632 {
14633 return NULL;
14634
14635 }
14636 }
14637 case '8':
14638 if (strncmp (KR_keyword, "/dev/nst89", 10) == 0)
14639 {
14640 {
14641 return dev_storage + 195;
14642
14643 }
14644 }
14645 else
14646 {
14647 {
14648 return NULL;
14649
14650 }
14651 }
14652 case '7':
14653 if (strncmp (KR_keyword, "/dev/nst79", 10) == 0)
14654 {
14655 {
14656 return dev_storage + 185;
14657
14658 }
14659 }
14660 else
14661 {
14662 {
14663 return NULL;
14664
14665 }
14666 }
14667 case '6':
14668 if (strncmp (KR_keyword, "/dev/nst69", 10) == 0)
14669 {
14670 {
14671 return dev_storage + 175;
14672
14673 }
14674 }
14675 else
14676 {
14677 {
14678 return NULL;
14679
14680 }
14681 }
14682 case '5':
14683 switch (KR_keyword [5])
14684 {
14685 case 'p':
14686 if (strncmp (KR_keyword, "/dev/pty59", 10) == 0)
14687 {
14688 {
14689 return dev_storage + 296;
14690
14691 }
14692 }
14693 else
14694 {
14695 {
14696 return NULL;
14697
14698 }
14699 }
14700 case 'n':
14701 if (strncmp (KR_keyword, "/dev/nst59", 10) == 0)
14702 {
14703 {
14704 return dev_storage + 165;
14705
14706 }
14707 }
14708 else
14709 {
14710 {
14711 return NULL;
14712
14713 }
14714 }
14715 default:
14716 {
14717 return NULL;
14718
14719 }
14720 }
14721 case '4':
14722 switch (KR_keyword [5])
14723 {
14724 case 'p':
14725 if (strncmp (KR_keyword, "/dev/pty49", 10) == 0)
14726 {
14727 {
14728 return dev_storage + 286;
14729
14730 }
14731 }
14732 else
14733 {
14734 {
14735 return NULL;
14736
14737 }
14738 }
14739 case 'n':
14740 if (strncmp (KR_keyword, "/dev/nst49", 10) == 0)
14741 {
14742 {
14743 return dev_storage + 155;
14744
14745 }
14746 }
14747 else
14748 {
14749 {
14750 return NULL;
14751
14752 }
14753 }
14754 default:
14755 {
14756 return NULL;
14757
14758 }
14759 }
14760 case '3':
14761 switch (KR_keyword [5])
14762 {
14763 case 'p':
14764 if (strncmp (KR_keyword, "/dev/pty39", 10) == 0)
14765 {
14766 {
14767 return dev_storage + 276;
14768
14769 }
14770 }
14771 else
14772 {
14773 {
14774 return NULL;
14775
14776 }
14777 }
14778 case 'n':
14779 if (strncmp (KR_keyword, "/dev/nst39", 10) == 0)
14780 {
14781 {
14782 return dev_storage + 145;
14783
14784 }
14785 }
14786 else
14787 {
14788 {
14789 return NULL;
14790
14791 }
14792 }
14793 default:
14794 {
14795 return NULL;
14796
14797 }
14798 }
14799 case '2':
14800 switch (KR_keyword [5])
14801 {
14802 case 'p':
14803 if (strncmp (KR_keyword, "/dev/pty29", 10) == 0)
14804 {
14805 {
14806 return dev_storage + 266;
14807
14808 }
14809 }
14810 else
14811 {
14812 {
14813 return NULL;
14814
14815 }
14816 }
14817 case 'n':
14818 if (strncmp (KR_keyword, "/dev/nst29", 10) == 0)
14819 {
14820 {
14821 return dev_storage + 135;
14822
14823 }
14824 }
14825 else
14826 {
14827 {
14828 return NULL;
14829
14830 }
14831 }
14832 default:
14833 {
14834 return NULL;
14835
14836 }
14837 }
14838 case '1':
14839 switch (KR_keyword [5])
14840 {
14841 case 's':
14842 if (strncmp (KR_keyword, "/dev/st119", 10) == 0)
14843 {
14844 {
14845 return dev_storage + 2501;
14846
14847 }
14848 }
14849 else
14850 {
14851 {
14852 return NULL;
14853
14854 }
14855 }
14856 case 'p':
14857 if (strncmp (KR_keyword, "/dev/pty19", 10) == 0)
14858 {
14859 {
14860 return dev_storage + 256;
14861
14862 }
14863 }
14864 else
14865 {
14866 {
14867 return NULL;
14868
14869 }
14870 }
14871 case 'n':
14872 if (strncmp (KR_keyword, "/dev/nst19", 10) == 0)
14873 {
14874 {
14875 return dev_storage + 125;
14876
14877 }
14878 }
14879 else
14880 {
14881 {
14882 return NULL;
14883
14884 }
14885 }
14886 default:
14887 {
14888 return NULL;
14889
14890 }
14891 }
14892 case '0':
14893 if (strncmp (KR_keyword, "/dev/st109", 10) == 0)
14894 {
14895 {
14896 return dev_storage + 2491;
14897
14898 }
14899 }
14900 else
14901 {
14902 {
14903 return NULL;
14904
14905 }
14906 }
14907 default:
14908 {
14909 return NULL;
14910
14911 }
14912 }
14913 case '8':
14914 switch (KR_keyword [8])
14915 {
14916 case 'z':
14917 switch (KR_keyword [7])
14918 {
14919 case 'c':
14920 if (strncmp (KR_keyword, "/dev/sdcz8", 10) == 0)
14921 {
14922 {
14923 return dev_storage + 1974;
14924
14925 }
14926 }
14927 else
14928 {
14929 {
14930 return NULL;
14931
14932 }
14933 }
14934 case 'b':
14935 if (strncmp (KR_keyword, "/dev/sdbz8", 10) == 0)
14936 {
14937 {
14938 return dev_storage + 1558;
14939
14940 }
14941 }
14942 else
14943 {
14944 {
14945 return NULL;
14946
14947 }
14948 }
14949 case 'a':
14950 if (strncmp (KR_keyword, "/dev/sdaz8", 10) == 0)
14951 {
14952 {
14953 return dev_storage + 1142;
14954
14955 }
14956 }
14957 else
14958 {
14959 {
14960 return NULL;
14961
14962 }
14963 }
14964 default:
14965 {
14966 return NULL;
14967
14968 }
14969 }
14970 case 'y':
14971 switch (KR_keyword [7])
14972 {
14973 case 'c':
14974 if (strncmp (KR_keyword, "/dev/sdcy8", 10) == 0)
14975 {
14976 {
14977 return dev_storage + 1959;
14978
14979 }
14980 }
14981 else
14982 {
14983 {
14984 return NULL;
14985
14986 }
14987 }
14988 case 'b':
14989 if (strncmp (KR_keyword, "/dev/sdby8", 10) == 0)
14990 {
14991 {
14992 return dev_storage + 1543;
14993
14994 }
14995 }
14996 else
14997 {
14998 {
14999 return NULL;
15000
15001 }
15002 }
15003 case 'a':
15004 if (strncmp (KR_keyword, "/dev/sday8", 10) == 0)
15005 {
15006 {
15007 return dev_storage + 1127;
15008
15009 }
15010 }
15011 else
15012 {
15013 {
15014 return NULL;
15015
15016 }
15017 }
15018 default:
15019 {
15020 return NULL;
15021
15022 }
15023 }
15024 case 'x':
15025 switch (KR_keyword [7])
15026 {
15027 case 'd':
15028 if (strncmp (KR_keyword, "/dev/sddx8", 10) == 0)
15029 {
15030 {
15031 return dev_storage + 2358;
15032
15033 }
15034 }
15035 else
15036 {
15037 {
15038 return NULL;
15039
15040 }
15041 }
15042 case 'c':
15043 if (strncmp (KR_keyword, "/dev/sdcx8", 10) == 0)
15044 {
15045 {
15046 return dev_storage + 1944;
15047
15048 }
15049 }
15050 else
15051 {
15052 {
15053 return NULL;
15054
15055 }
15056 }
15057 case 'b':
15058 if (strncmp (KR_keyword, "/dev/sdbx8", 10) == 0)
15059 {
15060 {
15061 return dev_storage + 1528;
15062
15063 }
15064 }
15065 else
15066 {
15067 {
15068 return NULL;
15069
15070 }
15071 }
15072 case 'a':
15073 if (strncmp (KR_keyword, "/dev/sdax8", 10) == 0)
15074 {
15075 {
15076 return dev_storage + 1112;
15077
15078 }
15079 }
15080 else
15081 {
15082 {
15083 return NULL;
15084
15085 }
15086 }
15087 default:
15088 {
15089 return NULL;
15090
15091 }
15092 }
15093 case 'w':
15094 switch (KR_keyword [7])
15095 {
15096 case 'd':
15097 if (strncmp (KR_keyword, "/dev/sddw8", 10) == 0)
15098 {
15099 {
15100 return dev_storage + 2343;
15101
15102 }
15103 }
15104 else
15105 {
15106 {
15107 return NULL;
15108
15109 }
15110 }
15111 case 'c':
15112 if (strncmp (KR_keyword, "/dev/sdcw8", 10) == 0)
15113 {
15114 {
15115 return dev_storage + 1929;
15116
15117 }
15118 }
15119 else
15120 {
15121 {
15122 return NULL;
15123
15124 }
15125 }
15126 case 'b':
15127 if (strncmp (KR_keyword, "/dev/sdbw8", 10) == 0)
15128 {
15129 {
15130 return dev_storage + 1513;
15131
15132 }
15133 }
15134 else
15135 {
15136 {
15137 return NULL;
15138
15139 }
15140 }
15141 case 'a':
15142 if (strncmp (KR_keyword, "/dev/sdaw8", 10) == 0)
15143 {
15144 {
15145 return dev_storage + 1097;
15146
15147 }
15148 }
15149 else
15150 {
15151 {
15152 return NULL;
15153
15154 }
15155 }
15156 default:
15157 {
15158 return NULL;
15159
15160 }
15161 }
15162 case 'v':
15163 switch (KR_keyword [7])
15164 {
15165 case 'd':
15166 if (strncmp (KR_keyword, "/dev/sddv8", 10) == 0)
15167 {
15168 {
15169 return dev_storage + 2328;
15170
15171 }
15172 }
15173 else
15174 {
15175 {
15176 return NULL;
15177
15178 }
15179 }
15180 case 'c':
15181 if (strncmp (KR_keyword, "/dev/sdcv8", 10) == 0)
15182 {
15183 {
15184 return dev_storage + 1914;
15185
15186 }
15187 }
15188 else
15189 {
15190 {
15191 return NULL;
15192
15193 }
15194 }
15195 case 'b':
15196 if (strncmp (KR_keyword, "/dev/sdbv8", 10) == 0)
15197 {
15198 {
15199 return dev_storage + 1498;
15200
15201 }
15202 }
15203 else
15204 {
15205 {
15206 return NULL;
15207
15208 }
15209 }
15210 case 'a':
15211 if (strncmp (KR_keyword, "/dev/sdav8", 10) == 0)
15212 {
15213 {
15214 return dev_storage + 1082;
15215
15216 }
15217 }
15218 else
15219 {
15220 {
15221 return NULL;
15222
15223 }
15224 }
15225 default:
15226 {
15227 return NULL;
15228
15229 }
15230 }
15231 case 'u':
15232 switch (KR_keyword [7])
15233 {
15234 case 'd':
15235 if (strncmp (KR_keyword, "/dev/sddu8", 10) == 0)
15236 {
15237 {
15238 return dev_storage + 2313;
15239
15240 }
15241 }
15242 else
15243 {
15244 {
15245 return NULL;
15246
15247 }
15248 }
15249 case 'c':
15250 if (strncmp (KR_keyword, "/dev/sdcu8", 10) == 0)
15251 {
15252 {
15253 return dev_storage + 1899;
15254
15255 }
15256 }
15257 else
15258 {
15259 {
15260 return NULL;
15261
15262 }
15263 }
15264 case 'b':
15265 if (strncmp (KR_keyword, "/dev/sdbu8", 10) == 0)
15266 {
15267 {
15268 return dev_storage + 1483;
15269
15270 }
15271 }
15272 else
15273 {
15274 {
15275 return NULL;
15276
15277 }
15278 }
15279 case 'a':
15280 if (strncmp (KR_keyword, "/dev/sdau8", 10) == 0)
15281 {
15282 {
15283 return dev_storage + 1067;
15284
15285 }
15286 }
15287 else
15288 {
15289 {
15290 return NULL;
15291
15292 }
15293 }
15294 default:
15295 {
15296 return NULL;
15297
15298 }
15299 }
15300 case 't':
15301 switch (KR_keyword [7])
15302 {
15303 case 'd':
15304 if (strncmp (KR_keyword, "/dev/sddt8", 10) == 0)
15305 {
15306 {
15307 return dev_storage + 2298;
15308
15309 }
15310 }
15311 else
15312 {
15313 {
15314 return NULL;
15315
15316 }
15317 }
15318 case 'c':
15319 if (strncmp (KR_keyword, "/dev/sdct8", 10) == 0)
15320 {
15321 {
15322 return dev_storage + 1884;
15323
15324 }
15325 }
15326 else
15327 {
15328 {
15329 return NULL;
15330
15331 }
15332 }
15333 case 'b':
15334 if (strncmp (KR_keyword, "/dev/sdbt8", 10) == 0)
15335 {
15336 {
15337 return dev_storage + 1468;
15338
15339 }
15340 }
15341 else
15342 {
15343 {
15344 return NULL;
15345
15346 }
15347 }
15348 case 'a':
15349 if (strncmp (KR_keyword, "/dev/sdat8", 10) == 0)
15350 {
15351 {
15352 return dev_storage + 1052;
15353
15354 }
15355 }
15356 else
15357 {
15358 {
15359 return NULL;
15360
15361 }
15362 }
15363 default:
15364 {
15365 return NULL;
15366
15367 }
15368 }
15369 case 's':
15370 switch (KR_keyword [7])
15371 {
15372 case 'n':
15373 if (strncmp (KR_keyword, "/dev/cons8", 10) == 0)
15374 {
15375 {
15376 return dev_storage + 28;
15377
15378 }
15379 }
15380 else
15381 {
15382 {
15383 return NULL;
15384
15385 }
15386 }
15387 case 'd':
15388 if (strncmp (KR_keyword, "/dev/sdds8", 10) == 0)
15389 {
15390 {
15391 return dev_storage + 2283;
15392
15393 }
15394 }
15395 else
15396 {
15397 {
15398 return NULL;
15399
15400 }
15401 }
15402 case 'c':
15403 if (strncmp (KR_keyword, "/dev/sdcs8", 10) == 0)
15404 {
15405 {
15406 return dev_storage + 1869;
15407
15408 }
15409 }
15410 else
15411 {
15412 {
15413 return NULL;
15414
15415 }
15416 }
15417 case 'b':
15418 if (strncmp (KR_keyword, "/dev/sdbs8", 10) == 0)
15419 {
15420 {
15421 return dev_storage + 1453;
15422
15423 }
15424 }
15425 else
15426 {
15427 {
15428 return NULL;
15429
15430 }
15431 }
15432 case 'a':
15433 if (strncmp (KR_keyword, "/dev/sdas8", 10) == 0)
15434 {
15435 {
15436 return dev_storage + 1037;
15437
15438 }
15439 }
15440 else
15441 {
15442 {
15443 return NULL;
15444
15445 }
15446 }
15447 default:
15448 {
15449 return NULL;
15450
15451 }
15452 }
15453 case 'r':
15454 switch (KR_keyword [7])
15455 {
15456 case 'd':
15457 if (strncmp (KR_keyword, "/dev/sddr8", 10) == 0)
15458 {
15459 {
15460 return dev_storage + 2268;
15461
15462 }
15463 }
15464 else
15465 {
15466 {
15467 return NULL;
15468
15469 }
15470 }
15471 case 'c':
15472 if (strncmp (KR_keyword, "/dev/sdcr8", 10) == 0)
15473 {
15474 {
15475 return dev_storage + 1854;
15476
15477 }
15478 }
15479 else
15480 {
15481 {
15482 return NULL;
15483
15484 }
15485 }
15486 case 'b':
15487 if (strncmp (KR_keyword, "/dev/sdbr8", 10) == 0)
15488 {
15489 {
15490 return dev_storage + 1438;
15491
15492 }
15493 }
15494 else
15495 {
15496 {
15497 return NULL;
15498
15499 }
15500 }
15501 case 'a':
15502 if (strncmp (KR_keyword, "/dev/sdar8", 10) == 0)
15503 {
15504 {
15505 return dev_storage + 1022;
15506
15507 }
15508 }
15509 else
15510 {
15511 {
15512 return NULL;
15513
15514 }
15515 }
15516 default:
15517 {
15518 return NULL;
15519
15520 }
15521 }
15522 case 'q':
15523 switch (KR_keyword [7])
15524 {
15525 case 'd':
15526 if (strncmp (KR_keyword, "/dev/sddq8", 10) == 0)
15527 {
15528 {
15529 return dev_storage + 2253;
15530
15531 }
15532 }
15533 else
15534 {
15535 {
15536 return NULL;
15537
15538 }
15539 }
15540 case 'c':
15541 if (strncmp (KR_keyword, "/dev/sdcq8", 10) == 0)
15542 {
15543 {
15544 return dev_storage + 1839;
15545
15546 }
15547 }
15548 else
15549 {
15550 {
15551 return NULL;
15552
15553 }
15554 }
15555 case 'b':
15556 if (strncmp (KR_keyword, "/dev/sdbq8", 10) == 0)
15557 {
15558 {
15559 return dev_storage + 1423;
15560
15561 }
15562 }
15563 else
15564 {
15565 {
15566 return NULL;
15567
15568 }
15569 }
15570 case 'a':
15571 if (strncmp (KR_keyword, "/dev/sdaq8", 10) == 0)
15572 {
15573 {
15574 return dev_storage + 1007;
15575
15576 }
15577 }
15578 else
15579 {
15580 {
15581 return NULL;
15582
15583 }
15584 }
15585 default:
15586 {
15587 return NULL;
15588
15589 }
15590 }
15591 case 'p':
15592 switch (KR_keyword [7])
15593 {
15594 case 'd':
15595 if (strncmp (KR_keyword, "/dev/sddp8", 10) == 0)
15596 {
15597 {
15598 return dev_storage + 2238;
15599
15600 }
15601 }
15602 else
15603 {
15604 {
15605 return NULL;
15606
15607 }
15608 }
15609 case 'c':
15610 if (strncmp (KR_keyword, "/dev/sdcp8", 10) == 0)
15611 {
15612 {
15613 return dev_storage + 1824;
15614
15615 }
15616 }
15617 else
15618 {
15619 {
15620 return NULL;
15621
15622 }
15623 }
15624 case 'b':
15625 if (strncmp (KR_keyword, "/dev/sdbp8", 10) == 0)
15626 {
15627 {
15628 return dev_storage + 1408;
15629
15630 }
15631 }
15632 else
15633 {
15634 {
15635 return NULL;
15636
15637 }
15638 }
15639 case 'a':
15640 if (strncmp (KR_keyword, "/dev/sdap8", 10) == 0)
15641 {
15642 {
15643 return dev_storage + 992;
15644
15645 }
15646 }
15647 else
15648 {
15649 {
15650 return NULL;
15651
15652 }
15653 }
15654 default:
15655 {
15656 return NULL;
15657
15658 }
15659 }
15660 case 'o':
15661 switch (KR_keyword [7])
15662 {
15663 case 'd':
15664 if (strncmp (KR_keyword, "/dev/sddo8", 10) == 0)
15665 {
15666 {
15667 return dev_storage + 2223;
15668
15669 }
15670 }
15671 else
15672 {
15673 {
15674 return NULL;
15675
15676 }
15677 }
15678 case 'c':
15679 if (strncmp (KR_keyword, "/dev/sdco8", 10) == 0)
15680 {
15681 {
15682 return dev_storage + 1809;
15683
15684 }
15685 }
15686 else
15687 {
15688 {
15689 return NULL;
15690
15691 }
15692 }
15693 case 'b':
15694 if (strncmp (KR_keyword, "/dev/sdbo8", 10) == 0)
15695 {
15696 {
15697 return dev_storage + 1393;
15698
15699 }
15700 }
15701 else
15702 {
15703 {
15704 return NULL;
15705
15706 }
15707 }
15708 case 'a':
15709 if (strncmp (KR_keyword, "/dev/sdao8", 10) == 0)
15710 {
15711 {
15712 return dev_storage + 977;
15713
15714 }
15715 }
15716 else
15717 {
15718 {
15719 return NULL;
15720
15721 }
15722 }
15723 default:
15724 {
15725 return NULL;
15726
15727 }
15728 }
15729 case 'n':
15730 switch (KR_keyword [7])
15731 {
15732 case 'd':
15733 if (strncmp (KR_keyword, "/dev/sddn8", 10) == 0)
15734 {
15735 {
15736 return dev_storage + 2208;
15737
15738 }
15739 }
15740 else
15741 {
15742 {
15743 return NULL;
15744
15745 }
15746 }
15747 case 'c':
15748 if (strncmp (KR_keyword, "/dev/sdcn8", 10) == 0)
15749 {
15750 {
15751 return dev_storage + 1794;
15752
15753 }
15754 }
15755 else
15756 {
15757 {
15758 return NULL;
15759
15760 }
15761 }
15762 case 'b':
15763 if (strncmp (KR_keyword, "/dev/sdbn8", 10) == 0)
15764 {
15765 {
15766 return dev_storage + 1378;
15767
15768 }
15769 }
15770 else
15771 {
15772 {
15773 return NULL;
15774
15775 }
15776 }
15777 case 'a':
15778 if (strncmp (KR_keyword, "/dev/sdan8", 10) == 0)
15779 {
15780 {
15781 return dev_storage + 962;
15782
15783 }
15784 }
15785 else
15786 {
15787 {
15788 return NULL;
15789
15790 }
15791 }
15792 default:
15793 {
15794 return NULL;
15795
15796 }
15797 }
15798 case 'm':
15799 switch (KR_keyword [7])
15800 {
15801 case 'd':
15802 if (strncmp (KR_keyword, "/dev/sddm8", 10) == 0)
15803 {
15804 {
15805 return dev_storage + 2193;
15806
15807 }
15808 }
15809 else
15810 {
15811 {
15812 return NULL;
15813
15814 }
15815 }
15816 case 'c':
15817 if (strncmp (KR_keyword, "/dev/sdcm8", 10) == 0)
15818 {
15819 {
15820 return dev_storage + 1779;
15821
15822 }
15823 }
15824 else
15825 {
15826 {
15827 return NULL;
15828
15829 }
15830 }
15831 case 'b':
15832 if (strncmp (KR_keyword, "/dev/sdbm8", 10) == 0)
15833 {
15834 {
15835 return dev_storage + 1363;
15836
15837 }
15838 }
15839 else
15840 {
15841 {
15842 return NULL;
15843
15844 }
15845 }
15846 case 'a':
15847 if (strncmp (KR_keyword, "/dev/sdam8", 10) == 0)
15848 {
15849 {
15850 return dev_storage + 947;
15851
15852 }
15853 }
15854 else
15855 {
15856 {
15857 return NULL;
15858
15859 }
15860 }
15861 default:
15862 {
15863 return NULL;
15864
15865 }
15866 }
15867 case 'l':
15868 switch (KR_keyword [7])
15869 {
15870 case 'd':
15871 if (strncmp (KR_keyword, "/dev/sddl8", 10) == 0)
15872 {
15873 {
15874 return dev_storage + 2178;
15875
15876 }
15877 }
15878 else
15879 {
15880 {
15881 return NULL;
15882
15883 }
15884 }
15885 case 'c':
15886 if (strncmp (KR_keyword, "/dev/sdcl8", 10) == 0)
15887 {
15888 {
15889 return dev_storage + 1764;
15890
15891 }
15892 }
15893 else
15894 {
15895 {
15896 return NULL;
15897
15898 }
15899 }
15900 case 'b':
15901 if (strncmp (KR_keyword, "/dev/sdbl8", 10) == 0)
15902 {
15903 {
15904 return dev_storage + 1348;
15905
15906 }
15907 }
15908 else
15909 {
15910 {
15911 return NULL;
15912
15913 }
15914 }
15915 case 'a':
15916 if (strncmp (KR_keyword, "/dev/sdal8", 10) == 0)
15917 {
15918 {
15919 return dev_storage + 932;
15920
15921 }
15922 }
15923 else
15924 {
15925 {
15926 return NULL;
15927
15928 }
15929 }
15930 default:
15931 {
15932 return NULL;
15933
15934 }
15935 }
15936 case 'k':
15937 switch (KR_keyword [7])
15938 {
15939 case 'd':
15940 if (strncmp (KR_keyword, "/dev/sddk8", 10) == 0)
15941 {
15942 {
15943 return dev_storage + 2163;
15944
15945 }
15946 }
15947 else
15948 {
15949 {
15950 return NULL;
15951
15952 }
15953 }
15954 case 'c':
15955 if (strncmp (KR_keyword, "/dev/sdck8", 10) == 0)
15956 {
15957 {
15958 return dev_storage + 1749;
15959
15960 }
15961 }
15962 else
15963 {
15964 {
15965 return NULL;
15966
15967 }
15968 }
15969 case 'b':
15970 if (strncmp (KR_keyword, "/dev/sdbk8", 10) == 0)
15971 {
15972 {
15973 return dev_storage + 1333;
15974
15975 }
15976 }
15977 else
15978 {
15979 {
15980 return NULL;
15981
15982 }
15983 }
15984 case 'a':
15985 if (strncmp (KR_keyword, "/dev/sdak8", 10) == 0)
15986 {
15987 {
15988 return dev_storage + 917;
15989
15990 }
15991 }
15992 else
15993 {
15994 {
15995 return NULL;
15996
15997 }
15998 }
15999 default:
16000 {
16001 return NULL;
16002
16003 }
16004 }
16005 case 'j':
16006 switch (KR_keyword [7])
16007 {
16008 case 'd':
16009 if (strncmp (KR_keyword, "/dev/sddj8", 10) == 0)
16010 {
16011 {
16012 return dev_storage + 2148;
16013
16014 }
16015 }
16016 else
16017 {
16018 {
16019 return NULL;
16020
16021 }
16022 }
16023 case 'c':
16024 if (strncmp (KR_keyword, "/dev/sdcj8", 10) == 0)
16025 {
16026 {
16027 return dev_storage + 1734;
16028
16029 }
16030 }
16031 else
16032 {
16033 {
16034 return NULL;
16035
16036 }
16037 }
16038 case 'b':
16039 if (strncmp (KR_keyword, "/dev/sdbj8", 10) == 0)
16040 {
16041 {
16042 return dev_storage + 1318;
16043
16044 }
16045 }
16046 else
16047 {
16048 {
16049 return NULL;
16050
16051 }
16052 }
16053 case 'a':
16054 if (strncmp (KR_keyword, "/dev/sdaj8", 10) == 0)
16055 {
16056 {
16057 return dev_storage + 902;
16058
16059 }
16060 }
16061 else
16062 {
16063 {
16064 return NULL;
16065
16066 }
16067 }
16068 default:
16069 {
16070 return NULL;
16071
16072 }
16073 }
16074 case 'i':
16075 switch (KR_keyword [7])
16076 {
16077 case 'd':
16078 if (strncmp (KR_keyword, "/dev/sddi8", 10) == 0)
16079 {
16080 {
16081 return dev_storage + 2133;
16082
16083 }
16084 }
16085 else
16086 {
16087 {
16088 return NULL;
16089
16090 }
16091 }
16092 case 'c':
16093 if (strncmp (KR_keyword, "/dev/sdci8", 10) == 0)
16094 {
16095 {
16096 return dev_storage + 1719;
16097
16098 }
16099 }
16100 else
16101 {
16102 {
16103 return NULL;
16104
16105 }
16106 }
16107 case 'b':
16108 if (strncmp (KR_keyword, "/dev/sdbi8", 10) == 0)
16109 {
16110 {
16111 return dev_storage + 1303;
16112
16113 }
16114 }
16115 else
16116 {
16117 {
16118 return NULL;
16119
16120 }
16121 }
16122 case 'a':
16123 if (strncmp (KR_keyword, "/dev/sdai8", 10) == 0)
16124 {
16125 {
16126 return dev_storage + 887;
16127
16128 }
16129 }
16130 else
16131 {
16132 {
16133 return NULL;
16134
16135 }
16136 }
16137 default:
16138 {
16139 return NULL;
16140
16141 }
16142 }
16143 case 'h':
16144 switch (KR_keyword [7])
16145 {
16146 case 'd':
16147 if (strncmp (KR_keyword, "/dev/sddh8", 10) == 0)
16148 {
16149 {
16150 return dev_storage + 2118;
16151
16152 }
16153 }
16154 else
16155 {
16156 {
16157 return NULL;
16158
16159 }
16160 }
16161 case 'c':
16162 if (strncmp (KR_keyword, "/dev/sdch8", 10) == 0)
16163 {
16164 {
16165 return dev_storage + 1704;
16166
16167 }
16168 }
16169 else
16170 {
16171 {
16172 return NULL;
16173
16174 }
16175 }
16176 case 'b':
16177 if (strncmp (KR_keyword, "/dev/sdbh8", 10) == 0)
16178 {
16179 {
16180 return dev_storage + 1288;
16181
16182 }
16183 }
16184 else
16185 {
16186 {
16187 return NULL;
16188
16189 }
16190 }
16191 case 'a':
16192 if (strncmp (KR_keyword, "/dev/sdah8", 10) == 0)
16193 {
16194 {
16195 return dev_storage + 872;
16196
16197 }
16198 }
16199 else
16200 {
16201 {
16202 return NULL;
16203
16204 }
16205 }
16206 default:
16207 {
16208 return NULL;
16209
16210 }
16211 }
16212 case 'g':
16213 switch (KR_keyword [7])
16214 {
16215 case 'd':
16216 if (strncmp (KR_keyword, "/dev/sddg8", 10) == 0)
16217 {
16218 {
16219 return dev_storage + 2103;
16220
16221 }
16222 }
16223 else
16224 {
16225 {
16226 return NULL;
16227
16228 }
16229 }
16230 case 'c':
16231 if (strncmp (KR_keyword, "/dev/sdcg8", 10) == 0)
16232 {
16233 {
16234 return dev_storage + 1689;
16235
16236 }
16237 }
16238 else
16239 {
16240 {
16241 return NULL;
16242
16243 }
16244 }
16245 case 'b':
16246 if (strncmp (KR_keyword, "/dev/sdbg8", 10) == 0)
16247 {
16248 {
16249 return dev_storage + 1273;
16250
16251 }
16252 }
16253 else
16254 {
16255 {
16256 return NULL;
16257
16258 }
16259 }
16260 case 'a':
16261 if (strncmp (KR_keyword, "/dev/sdag8", 10) == 0)
16262 {
16263 {
16264 return dev_storage + 857;
16265
16266 }
16267 }
16268 else
16269 {
16270 {
16271 return NULL;
16272
16273 }
16274 }
16275 default:
16276 {
16277 return NULL;
16278
16279 }
16280 }
16281 case 'f':
16282 switch (KR_keyword [7])
16283 {
16284 case 'd':
16285 if (strncmp (KR_keyword, "/dev/sddf8", 10) == 0)
16286 {
16287 {
16288 return dev_storage + 2088;
16289
16290 }
16291 }
16292 else
16293 {
16294 {
16295 return NULL;
16296
16297 }
16298 }
16299 case 'c':
16300 if (strncmp (KR_keyword, "/dev/sdcf8", 10) == 0)
16301 {
16302 {
16303 return dev_storage + 1674;
16304
16305 }
16306 }
16307 else
16308 {
16309 {
16310 return NULL;
16311
16312 }
16313 }
16314 case 'b':
16315 if (strncmp (KR_keyword, "/dev/sdbf8", 10) == 0)
16316 {
16317 {
16318 return dev_storage + 1258;
16319
16320 }
16321 }
16322 else
16323 {
16324 {
16325 return NULL;
16326
16327 }
16328 }
16329 case 'a':
16330 if (strncmp (KR_keyword, "/dev/sdaf8", 10) == 0)
16331 {
16332 {
16333 return dev_storage + 842;
16334
16335 }
16336 }
16337 else
16338 {
16339 {
16340 return NULL;
16341
16342 }
16343 }
16344 default:
16345 {
16346 return NULL;
16347
16348 }
16349 }
16350 case 'e':
16351 switch (KR_keyword [7])
16352 {
16353 case 'd':
16354 if (strncmp (KR_keyword, "/dev/sdde8", 10) == 0)
16355 {
16356 {
16357 return dev_storage + 2073;
16358
16359 }
16360 }
16361 else
16362 {
16363 {
16364 return NULL;
16365
16366 }
16367 }
16368 case 'c':
16369 if (strncmp (KR_keyword, "/dev/sdce8", 10) == 0)
16370 {
16371 {
16372 return dev_storage + 1659;
16373
16374 }
16375 }
16376 else
16377 {
16378 {
16379 return NULL;
16380
16381 }
16382 }
16383 case 'b':
16384 if (strncmp (KR_keyword, "/dev/sdbe8", 10) == 0)
16385 {
16386 {
16387 return dev_storage + 1243;
16388
16389 }
16390 }
16391 else
16392 {
16393 {
16394 return NULL;
16395
16396 }
16397 }
16398 case 'a':
16399 if (strncmp (KR_keyword, "/dev/sdae8", 10) == 0)
16400 {
16401 {
16402 return dev_storage + 827;
16403
16404 }
16405 }
16406 else
16407 {
16408 {
16409 return NULL;
16410
16411 }
16412 }
16413 default:
16414 {
16415 return NULL;
16416
16417 }
16418 }
16419 case 'd':
16420 switch (KR_keyword [7])
16421 {
16422 case 'd':
16423 if (strncmp (KR_keyword, "/dev/sddd8", 10) == 0)
16424 {
16425 {
16426 return dev_storage + 2058;
16427
16428 }
16429 }
16430 else
16431 {
16432 {
16433 return NULL;
16434
16435 }
16436 }
16437 case 'c':
16438 if (strncmp (KR_keyword, "/dev/sdcd8", 10) == 0)
16439 {
16440 {
16441 return dev_storage + 1644;
16442
16443 }
16444 }
16445 else
16446 {
16447 {
16448 return NULL;
16449
16450 }
16451 }
16452 case 'b':
16453 if (strncmp (KR_keyword, "/dev/sdbd8", 10) == 0)
16454 {
16455 {
16456 return dev_storage + 1228;
16457
16458 }
16459 }
16460 else
16461 {
16462 {
16463 return NULL;
16464
16465 }
16466 }
16467 case 'a':
16468 if (strncmp (KR_keyword, "/dev/sdad8", 10) == 0)
16469 {
16470 {
16471 return dev_storage + 812;
16472
16473 }
16474 }
16475 else
16476 {
16477 {
16478 return NULL;
16479
16480 }
16481 }
16482 default:
16483 {
16484 return NULL;
16485
16486 }
16487 }
16488 case 'c':
16489 switch (KR_keyword [7])
16490 {
16491 case 'd':
16492 if (strncmp (KR_keyword, "/dev/sddc8", 10) == 0)
16493 {
16494 {
16495 return dev_storage + 2043;
16496
16497 }
16498 }
16499 else
16500 {
16501 {
16502 return NULL;
16503
16504 }
16505 }
16506 case 'c':
16507 if (strncmp (KR_keyword, "/dev/sdcc8", 10) == 0)
16508 {
16509 {
16510 return dev_storage + 1629;
16511
16512 }
16513 }
16514 else
16515 {
16516 {
16517 return NULL;
16518
16519 }
16520 }
16521 case 'b':
16522 if (strncmp (KR_keyword, "/dev/sdbc8", 10) == 0)
16523 {
16524 {
16525 return dev_storage + 1213;
16526
16527 }
16528 }
16529 else
16530 {
16531 {
16532 return NULL;
16533
16534 }
16535 }
16536 case 'a':
16537 if (strncmp (KR_keyword, "/dev/sdac8", 10) == 0)
16538 {
16539 {
16540 return dev_storage + 797;
16541
16542 }
16543 }
16544 else
16545 {
16546 {
16547 return NULL;
16548
16549 }
16550 }
16551 default:
16552 {
16553 return NULL;
16554
16555 }
16556 }
16557 case 'b':
16558 switch (KR_keyword [7])
16559 {
16560 case 'd':
16561 if (strncmp (KR_keyword, "/dev/sddb8", 10) == 0)
16562 {
16563 {
16564 return dev_storage + 2028;
16565
16566 }
16567 }
16568 else
16569 {
16570 {
16571 return NULL;
16572
16573 }
16574 }
16575 case 'c':
16576 if (strncmp (KR_keyword, "/dev/sdcb8", 10) == 0)
16577 {
16578 {
16579 return dev_storage + 1614;
16580
16581 }
16582 }
16583 else
16584 {
16585 {
16586 return NULL;
16587
16588 }
16589 }
16590 case 'b':
16591 if (strncmp (KR_keyword, "/dev/sdbb8", 10) == 0)
16592 {
16593 {
16594 return dev_storage + 1198;
16595
16596 }
16597 }
16598 else
16599 {
16600 {
16601 return NULL;
16602
16603 }
16604 }
16605 case 'a':
16606 if (strncmp (KR_keyword, "/dev/sdab8", 10) == 0)
16607 {
16608 {
16609 return dev_storage + 782;
16610
16611 }
16612 }
16613 else
16614 {
16615 {
16616 return NULL;
16617
16618 }
16619 }
16620 default:
16621 {
16622 return NULL;
16623
16624 }
16625 }
16626 case 'a':
16627 switch (KR_keyword [7])
16628 {
16629 case 'd':
16630 if (strncmp (KR_keyword, "/dev/sdda8", 10) == 0)
16631 {
16632 {
16633 return dev_storage + 2013;
16634
16635 }
16636 }
16637 else
16638 {
16639 {
16640 return NULL;
16641
16642 }
16643 }
16644 case 'c':
16645 if (strncmp (KR_keyword, "/dev/sdca8", 10) == 0)
16646 {
16647 {
16648 return dev_storage + 1599;
16649
16650 }
16651 }
16652 else
16653 {
16654 {
16655 return NULL;
16656
16657 }
16658 }
16659 case 'b':
16660 if (strncmp (KR_keyword, "/dev/sdba8", 10) == 0)
16661 {
16662 {
16663 return dev_storage + 1183;
16664
16665 }
16666 }
16667 else
16668 {
16669 {
16670 return NULL;
16671
16672 }
16673 }
16674 case 'a':
16675 if (strncmp (KR_keyword, "/dev/sdaa8", 10) == 0)
16676 {
16677 {
16678 return dev_storage + 767;
16679
16680 }
16681 }
16682 else
16683 {
16684 {
16685 return NULL;
16686
16687 }
16688 }
16689 default:
16690 {
16691 return NULL;
16692
16693 }
16694 }
16695 case 'S':
16696 if (strncmp (KR_keyword, "/dev/ttyS8", 10) == 0)
16697 {
16698 {
16699 return dev_storage + 2519;
16700
16701 }
16702 }
16703 else
16704 {
16705 {
16706 return NULL;
16707
16708 }
16709 }
16710 case '9':
16711 if (strncmp (KR_keyword, "/dev/nst98", 10) == 0)
16712 {
16713 {
16714 return dev_storage + 204;
16715
16716 }
16717 }
16718 else
16719 {
16720 {
16721 return NULL;
16722
16723 }
16724 }
16725 case '8':
16726 if (strncmp (KR_keyword, "/dev/nst88", 10) == 0)
16727 {
16728 {
16729 return dev_storage + 194;
16730
16731 }
16732 }
16733 else
16734 {
16735 {
16736 return NULL;
16737
16738 }
16739 }
16740 case '7':
16741 if (strncmp (KR_keyword, "/dev/nst78", 10) == 0)
16742 {
16743 {
16744 return dev_storage + 184;
16745
16746 }
16747 }
16748 else
16749 {
16750 {
16751 return NULL;
16752
16753 }
16754 }
16755 case '6':
16756 if (strncmp (KR_keyword, "/dev/nst68", 10) == 0)
16757 {
16758 {
16759 return dev_storage + 174;
16760
16761 }
16762 }
16763 else
16764 {
16765 {
16766 return NULL;
16767
16768 }
16769 }
16770 case '5':
16771 switch (KR_keyword [5])
16772 {
16773 case 'p':
16774 if (strncmp (KR_keyword, "/dev/pty58", 10) == 0)
16775 {
16776 {
16777 return dev_storage + 295;
16778
16779 }
16780 }
16781 else
16782 {
16783 {
16784 return NULL;
16785
16786 }
16787 }
16788 case 'n':
16789 if (strncmp (KR_keyword, "/dev/nst58", 10) == 0)
16790 {
16791 {
16792 return dev_storage + 164;
16793
16794 }
16795 }
16796 else
16797 {
16798 {
16799 return NULL;
16800
16801 }
16802 }
16803 default:
16804 {
16805 return NULL;
16806
16807 }
16808 }
16809 case '4':
16810 switch (KR_keyword [5])
16811 {
16812 case 'p':
16813 if (strncmp (KR_keyword, "/dev/pty48", 10) == 0)
16814 {
16815 {
16816 return dev_storage + 285;
16817
16818 }
16819 }
16820 else
16821 {
16822 {
16823 return NULL;
16824
16825 }
16826 }
16827 case 'n':
16828 if (strncmp (KR_keyword, "/dev/nst48", 10) == 0)
16829 {
16830 {
16831 return dev_storage + 154;
16832
16833 }
16834 }
16835 else
16836 {
16837 {
16838 return NULL;
16839
16840 }
16841 }
16842 default:
16843 {
16844 return NULL;
16845
16846 }
16847 }
16848 case '3':
16849 switch (KR_keyword [5])
16850 {
16851 case 'p':
16852 if (strncmp (KR_keyword, "/dev/pty38", 10) == 0)
16853 {
16854 {
16855 return dev_storage + 275;
16856
16857 }
16858 }
16859 else
16860 {
16861 {
16862 return NULL;
16863
16864 }
16865 }
16866 case 'n':
16867 if (strncmp (KR_keyword, "/dev/nst38", 10) == 0)
16868 {
16869 {
16870 return dev_storage + 144;
16871
16872 }
16873 }
16874 else
16875 {
16876 {
16877 return NULL;
16878
16879 }
16880 }
16881 default:
16882 {
16883 return NULL;
16884
16885 }
16886 }
16887 case '2':
16888 switch (KR_keyword [5])
16889 {
16890 case 'p':
16891 if (strncmp (KR_keyword, "/dev/pty28", 10) == 0)
16892 {
16893 {
16894 return dev_storage + 265;
16895
16896 }
16897 }
16898 else
16899 {
16900 {
16901 return NULL;
16902
16903 }
16904 }
16905 case 'n':
16906 if (strncmp (KR_keyword, "/dev/nst28", 10) == 0)
16907 {
16908 {
16909 return dev_storage + 134;
16910
16911 }
16912 }
16913 else
16914 {
16915 {
16916 return NULL;
16917
16918 }
16919 }
16920 default:
16921 {
16922 return NULL;
16923
16924 }
16925 }
16926 case '1':
16927 switch (KR_keyword [5])
16928 {
16929 case 's':
16930 if (strncmp (KR_keyword, "/dev/st118", 10) == 0)
16931 {
16932 {
16933 return dev_storage + 2500;
16934
16935 }
16936 }
16937 else
16938 {
16939 {
16940 return NULL;
16941
16942 }
16943 }
16944 case 'p':
16945 if (strncmp (KR_keyword, "/dev/pty18", 10) == 0)
16946 {
16947 {
16948 return dev_storage + 255;
16949
16950 }
16951 }
16952 else
16953 {
16954 {
16955 return NULL;
16956
16957 }
16958 }
16959 case 'n':
16960 if (strncmp (KR_keyword, "/dev/nst18", 10) == 0)
16961 {
16962 {
16963 return dev_storage + 124;
16964
16965 }
16966 }
16967 else
16968 {
16969 {
16970 return NULL;
16971
16972 }
16973 }
16974 default:
16975 {
16976 return NULL;
16977
16978 }
16979 }
16980 case '0':
16981 if (strncmp (KR_keyword, "/dev/st108", 10) == 0)
16982 {
16983 {
16984 return dev_storage + 2490;
16985
16986 }
16987 }
16988 else
16989 {
16990 {
16991 return NULL;
16992
16993 }
16994 }
16995 default:
16996 {
16997 return NULL;
16998
16999 }
17000 }
17001 case '7':
17002 switch (KR_keyword [8])
17003 {
17004 case 'z':
17005 switch (KR_keyword [7])
17006 {
17007 case 'c':
17008 if (strncmp (KR_keyword, "/dev/sdcz7", 10) == 0)
17009 {
17010 {
17011 return dev_storage + 1973;
17012
17013 }
17014 }
17015 else
17016 {
17017 {
17018 return NULL;
17019
17020 }
17021 }
17022 case 'b':
17023 if (strncmp (KR_keyword, "/dev/sdbz7", 10) == 0)
17024 {
17025 {
17026 return dev_storage + 1557;
17027
17028 }
17029 }
17030 else
17031 {
17032 {
17033 return NULL;
17034
17035 }
17036 }
17037 case 'a':
17038 if (strncmp (KR_keyword, "/dev/sdaz7", 10) == 0)
17039 {
17040 {
17041 return dev_storage + 1141;
17042
17043 }
17044 }
17045 else
17046 {
17047 {
17048 return NULL;
17049
17050 }
17051 }
17052 default:
17053 {
17054 return NULL;
17055
17056 }
17057 }
17058 case 'y':
17059 switch (KR_keyword [7])
17060 {
17061 case 'c':
17062 if (strncmp (KR_keyword, "/dev/sdcy7", 10) == 0)
17063 {
17064 {
17065 return dev_storage + 1958;
17066
17067 }
17068 }
17069 else
17070 {
17071 {
17072 return NULL;
17073
17074 }
17075 }
17076 case 'b':
17077 if (strncmp (KR_keyword, "/dev/sdby7", 10) == 0)
17078 {
17079 {
17080 return dev_storage + 1542;
17081
17082 }
17083 }
17084 else
17085 {
17086 {
17087 return NULL;
17088
17089 }
17090 }
17091 case 'a':
17092 if (strncmp (KR_keyword, "/dev/sday7", 10) == 0)
17093 {
17094 {
17095 return dev_storage + 1126;
17096
17097 }
17098 }
17099 else
17100 {
17101 {
17102 return NULL;
17103
17104 }
17105 }
17106 default:
17107 {
17108 return NULL;
17109
17110 }
17111 }
17112 case 'x':
17113 switch (KR_keyword [7])
17114 {
17115 case 'd':
17116 if (strncmp (KR_keyword, "/dev/sddx7", 10) == 0)
17117 {
17118 {
17119 return dev_storage + 2357;
17120
17121 }
17122 }
17123 else
17124 {
17125 {
17126 return NULL;
17127
17128 }
17129 }
17130 case 'c':
17131 if (strncmp (KR_keyword, "/dev/sdcx7", 10) == 0)
17132 {
17133 {
17134 return dev_storage + 1943;
17135
17136 }
17137 }
17138 else
17139 {
17140 {
17141 return NULL;
17142
17143 }
17144 }
17145 case 'b':
17146 if (strncmp (KR_keyword, "/dev/sdbx7", 10) == 0)
17147 {
17148 {
17149 return dev_storage + 1527;
17150
17151 }
17152 }
17153 else
17154 {
17155 {
17156 return NULL;
17157
17158 }
17159 }
17160 case 'a':
17161 if (strncmp (KR_keyword, "/dev/sdax7", 10) == 0)
17162 {
17163 {
17164 return dev_storage + 1111;
17165
17166 }
17167 }
17168 else
17169 {
17170 {
17171 return NULL;
17172
17173 }
17174 }
17175 default:
17176 {
17177 return NULL;
17178
17179 }
17180 }
17181 case 'w':
17182 switch (KR_keyword [7])
17183 {
17184 case 'd':
17185 if (strncmp (KR_keyword, "/dev/sddw7", 10) == 0)
17186 {
17187 {
17188 return dev_storage + 2342;
17189
17190 }
17191 }
17192 else
17193 {
17194 {
17195 return NULL;
17196
17197 }
17198 }
17199 case 'c':
17200 if (strncmp (KR_keyword, "/dev/sdcw7", 10) == 0)
17201 {
17202 {
17203 return dev_storage + 1928;
17204
17205 }
17206 }
17207 else
17208 {
17209 {
17210 return NULL;
17211
17212 }
17213 }
17214 case 'b':
17215 if (strncmp (KR_keyword, "/dev/sdbw7", 10) == 0)
17216 {
17217 {
17218 return dev_storage + 1512;
17219
17220 }
17221 }
17222 else
17223 {
17224 {
17225 return NULL;
17226
17227 }
17228 }
17229 case 'a':
17230 if (strncmp (KR_keyword, "/dev/sdaw7", 10) == 0)
17231 {
17232 {
17233 return dev_storage + 1096;
17234
17235 }
17236 }
17237 else
17238 {
17239 {
17240 return NULL;
17241
17242 }
17243 }
17244 default:
17245 {
17246 return NULL;
17247
17248 }
17249 }
17250 case 'v':
17251 switch (KR_keyword [7])
17252 {
17253 case 'd':
17254 if (strncmp (KR_keyword, "/dev/sddv7", 10) == 0)
17255 {
17256 {
17257 return dev_storage + 2327;
17258
17259 }
17260 }
17261 else
17262 {
17263 {
17264 return NULL;
17265
17266 }
17267 }
17268 case 'c':
17269 if (strncmp (KR_keyword, "/dev/sdcv7", 10) == 0)
17270 {
17271 {
17272 return dev_storage + 1913;
17273
17274 }
17275 }
17276 else
17277 {
17278 {
17279 return NULL;
17280
17281 }
17282 }
17283 case 'b':
17284 if (strncmp (KR_keyword, "/dev/sdbv7", 10) == 0)
17285 {
17286 {
17287 return dev_storage + 1497;
17288
17289 }
17290 }
17291 else
17292 {
17293 {
17294 return NULL;
17295
17296 }
17297 }
17298 case 'a':
17299 if (strncmp (KR_keyword, "/dev/sdav7", 10) == 0)
17300 {
17301 {
17302 return dev_storage + 1081;
17303
17304 }
17305 }
17306 else
17307 {
17308 {
17309 return NULL;
17310
17311 }
17312 }
17313 default:
17314 {
17315 return NULL;
17316
17317 }
17318 }
17319 case 'u':
17320 switch (KR_keyword [7])
17321 {
17322 case 'd':
17323 if (strncmp (KR_keyword, "/dev/sddu7", 10) == 0)
17324 {
17325 {
17326 return dev_storage + 2312;
17327
17328 }
17329 }
17330 else
17331 {
17332 {
17333 return NULL;
17334
17335 }
17336 }
17337 case 'c':
17338 if (strncmp (KR_keyword, "/dev/sdcu7", 10) == 0)
17339 {
17340 {
17341 return dev_storage + 1898;
17342
17343 }
17344 }
17345 else
17346 {
17347 {
17348 return NULL;
17349
17350 }
17351 }
17352 case 'b':
17353 if (strncmp (KR_keyword, "/dev/sdbu7", 10) == 0)
17354 {
17355 {
17356 return dev_storage + 1482;
17357
17358 }
17359 }
17360 else
17361 {
17362 {
17363 return NULL;
17364
17365 }
17366 }
17367 case 'a':
17368 if (strncmp (KR_keyword, "/dev/sdau7", 10) == 0)
17369 {
17370 {
17371 return dev_storage + 1066;
17372
17373 }
17374 }
17375 else
17376 {
17377 {
17378 return NULL;
17379
17380 }
17381 }
17382 default:
17383 {
17384 return NULL;
17385
17386 }
17387 }
17388 case 't':
17389 switch (KR_keyword [7])
17390 {
17391 case 'd':
17392 if (strncmp (KR_keyword, "/dev/sddt7", 10) == 0)
17393 {
17394 {
17395 return dev_storage + 2297;
17396
17397 }
17398 }
17399 else
17400 {
17401 {
17402 return NULL;
17403
17404 }
17405 }
17406 case 'c':
17407 if (strncmp (KR_keyword, "/dev/sdct7", 10) == 0)
17408 {
17409 {
17410 return dev_storage + 1883;
17411
17412 }
17413 }
17414 else
17415 {
17416 {
17417 return NULL;
17418
17419 }
17420 }
17421 case 'b':
17422 if (strncmp (KR_keyword, "/dev/sdbt7", 10) == 0)
17423 {
17424 {
17425 return dev_storage + 1467;
17426
17427 }
17428 }
17429 else
17430 {
17431 {
17432 return NULL;
17433
17434 }
17435 }
17436 case 'a':
17437 if (strncmp (KR_keyword, "/dev/sdat7", 10) == 0)
17438 {
17439 {
17440 return dev_storage + 1051;
17441
17442 }
17443 }
17444 else
17445 {
17446 {
17447 return NULL;
17448
17449 }
17450 }
17451 default:
17452 {
17453 return NULL;
17454
17455 }
17456 }
17457 case 's':
17458 switch (KR_keyword [7])
17459 {
17460 case 'n':
17461 if (strncmp (KR_keyword, "/dev/cons7", 10) == 0)
17462 {
17463 {
17464 return dev_storage + 27;
17465
17466 }
17467 }
17468 else
17469 {
17470 {
17471 return NULL;
17472
17473 }
17474 }
17475 case 'd':
17476 if (strncmp (KR_keyword, "/dev/sdds7", 10) == 0)
17477 {
17478 {
17479 return dev_storage + 2282;
17480
17481 }
17482 }
17483 else
17484 {
17485 {
17486 return NULL;
17487
17488 }
17489 }
17490 case 'c':
17491 if (strncmp (KR_keyword, "/dev/sdcs7", 10) == 0)
17492 {
17493 {
17494 return dev_storage + 1868;
17495
17496 }
17497 }
17498 else
17499 {
17500 {
17501 return NULL;
17502
17503 }
17504 }
17505 case 'b':
17506 if (strncmp (KR_keyword, "/dev/sdbs7", 10) == 0)
17507 {
17508 {
17509 return dev_storage + 1452;
17510
17511 }
17512 }
17513 else
17514 {
17515 {
17516 return NULL;
17517
17518 }
17519 }
17520 case 'a':
17521 if (strncmp (KR_keyword, "/dev/sdas7", 10) == 0)
17522 {
17523 {
17524 return dev_storage + 1036;
17525
17526 }
17527 }
17528 else
17529 {
17530 {
17531 return NULL;
17532
17533 }
17534 }
17535 default:
17536 {
17537 return NULL;
17538
17539 }
17540 }
17541 case 'r':
17542 switch (KR_keyword [7])
17543 {
17544 case 'd':
17545 if (strncmp (KR_keyword, "/dev/sddr7", 10) == 0)
17546 {
17547 {
17548 return dev_storage + 2267;
17549
17550 }
17551 }
17552 else
17553 {
17554 {
17555 return NULL;
17556
17557 }
17558 }
17559 case 'c':
17560 if (strncmp (KR_keyword, "/dev/sdcr7", 10) == 0)
17561 {
17562 {
17563 return dev_storage + 1853;
17564
17565 }
17566 }
17567 else
17568 {
17569 {
17570 return NULL;
17571
17572 }
17573 }
17574 case 'b':
17575 if (strncmp (KR_keyword, "/dev/sdbr7", 10) == 0)
17576 {
17577 {
17578 return dev_storage + 1437;
17579
17580 }
17581 }
17582 else
17583 {
17584 {
17585 return NULL;
17586
17587 }
17588 }
17589 case 'a':
17590 if (strncmp (KR_keyword, "/dev/sdar7", 10) == 0)
17591 {
17592 {
17593 return dev_storage + 1021;
17594
17595 }
17596 }
17597 else
17598 {
17599 {
17600 return NULL;
17601
17602 }
17603 }
17604 default:
17605 {
17606 return NULL;
17607
17608 }
17609 }
17610 case 'q':
17611 switch (KR_keyword [7])
17612 {
17613 case 'd':
17614 if (strncmp (KR_keyword, "/dev/sddq7", 10) == 0)
17615 {
17616 {
17617 return dev_storage + 2252;
17618
17619 }
17620 }
17621 else
17622 {
17623 {
17624 return NULL;
17625
17626 }
17627 }
17628 case 'c':
17629 if (strncmp (KR_keyword, "/dev/sdcq7", 10) == 0)
17630 {
17631 {
17632 return dev_storage + 1838;
17633
17634 }
17635 }
17636 else
17637 {
17638 {
17639 return NULL;
17640
17641 }
17642 }
17643 case 'b':
17644 if (strncmp (KR_keyword, "/dev/sdbq7", 10) == 0)
17645 {
17646 {
17647 return dev_storage + 1422;
17648
17649 }
17650 }
17651 else
17652 {
17653 {
17654 return NULL;
17655
17656 }
17657 }
17658 case 'a':
17659 if (strncmp (KR_keyword, "/dev/sdaq7", 10) == 0)
17660 {
17661 {
17662 return dev_storage + 1006;
17663
17664 }
17665 }
17666 else
17667 {
17668 {
17669 return NULL;
17670
17671 }
17672 }
17673 default:
17674 {
17675 return NULL;
17676
17677 }
17678 }
17679 case 'p':
17680 switch (KR_keyword [7])
17681 {
17682 case 'd':
17683 if (strncmp (KR_keyword, "/dev/sddp7", 10) == 0)
17684 {
17685 {
17686 return dev_storage + 2237;
17687
17688 }
17689 }
17690 else
17691 {
17692 {
17693 return NULL;
17694
17695 }
17696 }
17697 case 'c':
17698 if (strncmp (KR_keyword, "/dev/sdcp7", 10) == 0)
17699 {
17700 {
17701 return dev_storage + 1823;
17702
17703 }
17704 }
17705 else
17706 {
17707 {
17708 return NULL;
17709
17710 }
17711 }
17712 case 'b':
17713 if (strncmp (KR_keyword, "/dev/sdbp7", 10) == 0)
17714 {
17715 {
17716 return dev_storage + 1407;
17717
17718 }
17719 }
17720 else
17721 {
17722 {
17723 return NULL;
17724
17725 }
17726 }
17727 case 'a':
17728 if (strncmp (KR_keyword, "/dev/sdap7", 10) == 0)
17729 {
17730 {
17731 return dev_storage + 991;
17732
17733 }
17734 }
17735 else
17736 {
17737 {
17738 return NULL;
17739
17740 }
17741 }
17742 default:
17743 {
17744 return NULL;
17745
17746 }
17747 }
17748 case 'o':
17749 switch (KR_keyword [7])
17750 {
17751 case 'd':
17752 if (strncmp (KR_keyword, "/dev/sddo7", 10) == 0)
17753 {
17754 {
17755 return dev_storage + 2222;
17756
17757 }
17758 }
17759 else
17760 {
17761 {
17762 return NULL;
17763
17764 }
17765 }
17766 case 'c':
17767 if (strncmp (KR_keyword, "/dev/sdco7", 10) == 0)
17768 {
17769 {
17770 return dev_storage + 1808;
17771
17772 }
17773 }
17774 else
17775 {
17776 {
17777 return NULL;
17778
17779 }
17780 }
17781 case 'b':
17782 if (strncmp (KR_keyword, "/dev/sdbo7", 10) == 0)
17783 {
17784 {
17785 return dev_storage + 1392;
17786
17787 }
17788 }
17789 else
17790 {
17791 {
17792 return NULL;
17793
17794 }
17795 }
17796 case 'a':
17797 if (strncmp (KR_keyword, "/dev/sdao7", 10) == 0)
17798 {
17799 {
17800 return dev_storage + 976;
17801
17802 }
17803 }
17804 else
17805 {
17806 {
17807 return NULL;
17808
17809 }
17810 }
17811 default:
17812 {
17813 return NULL;
17814
17815 }
17816 }
17817 case 'n':
17818 switch (KR_keyword [7])
17819 {
17820 case 'd':
17821 if (strncmp (KR_keyword, "/dev/sddn7", 10) == 0)
17822 {
17823 {
17824 return dev_storage + 2207;
17825
17826 }
17827 }
17828 else
17829 {
17830 {
17831 return NULL;
17832
17833 }
17834 }
17835 case 'c':
17836 if (strncmp (KR_keyword, "/dev/sdcn7", 10) == 0)
17837 {
17838 {
17839 return dev_storage + 1793;
17840
17841 }
17842 }
17843 else
17844 {
17845 {
17846 return NULL;
17847
17848 }
17849 }
17850 case 'b':
17851 if (strncmp (KR_keyword, "/dev/sdbn7", 10) == 0)
17852 {
17853 {
17854 return dev_storage + 1377;
17855
17856 }
17857 }
17858 else
17859 {
17860 {
17861 return NULL;
17862
17863 }
17864 }
17865 case 'a':
17866 if (strncmp (KR_keyword, "/dev/sdan7", 10) == 0)
17867 {
17868 {
17869 return dev_storage + 961;
17870
17871 }
17872 }
17873 else
17874 {
17875 {
17876 return NULL;
17877
17878 }
17879 }
17880 default:
17881 {
17882 return NULL;
17883
17884 }
17885 }
17886 case 'm':
17887 switch (KR_keyword [7])
17888 {
17889 case 'd':
17890 if (strncmp (KR_keyword, "/dev/sddm7", 10) == 0)
17891 {
17892 {
17893 return dev_storage + 2192;
17894
17895 }
17896 }
17897 else
17898 {
17899 {
17900 return NULL;
17901
17902 }
17903 }
17904 case 'c':
17905 if (strncmp (KR_keyword, "/dev/sdcm7", 10) == 0)
17906 {
17907 {
17908 return dev_storage + 1778;
17909
17910 }
17911 }
17912 else
17913 {
17914 {
17915 return NULL;
17916
17917 }
17918 }
17919 case 'b':
17920 if (strncmp (KR_keyword, "/dev/sdbm7", 10) == 0)
17921 {
17922 {
17923 return dev_storage + 1362;
17924
17925 }
17926 }
17927 else
17928 {
17929 {
17930 return NULL;
17931
17932 }
17933 }
17934 case 'a':
17935 if (strncmp (KR_keyword, "/dev/sdam7", 10) == 0)
17936 {
17937 {
17938 return dev_storage + 946;
17939
17940 }
17941 }
17942 else
17943 {
17944 {
17945 return NULL;
17946
17947 }
17948 }
17949 default:
17950 {
17951 return NULL;
17952
17953 }
17954 }
17955 case 'l':
17956 switch (KR_keyword [7])
17957 {
17958 case 'd':
17959 if (strncmp (KR_keyword, "/dev/sddl7", 10) == 0)
17960 {
17961 {
17962 return dev_storage + 2177;
17963
17964 }
17965 }
17966 else
17967 {
17968 {
17969 return NULL;
17970
17971 }
17972 }
17973 case 'c':
17974 if (strncmp (KR_keyword, "/dev/sdcl7", 10) == 0)
17975 {
17976 {
17977 return dev_storage + 1763;
17978
17979 }
17980 }
17981 else
17982 {
17983 {
17984 return NULL;
17985
17986 }
17987 }
17988 case 'b':
17989 if (strncmp (KR_keyword, "/dev/sdbl7", 10) == 0)
17990 {
17991 {
17992 return dev_storage + 1347;
17993
17994 }
17995 }
17996 else
17997 {
17998 {
17999 return NULL;
18000
18001 }
18002 }
18003 case 'a':
18004 if (strncmp (KR_keyword, "/dev/sdal7", 10) == 0)
18005 {
18006 {
18007 return dev_storage + 931;
18008
18009 }
18010 }
18011 else
18012 {
18013 {
18014 return NULL;
18015
18016 }
18017 }
18018 default:
18019 {
18020 return NULL;
18021
18022 }
18023 }
18024 case 'k':
18025 switch (KR_keyword [7])
18026 {
18027 case 'd':
18028 if (strncmp (KR_keyword, "/dev/sddk7", 10) == 0)
18029 {
18030 {
18031 return dev_storage + 2162;
18032
18033 }
18034 }
18035 else
18036 {
18037 {
18038 return NULL;
18039
18040 }
18041 }
18042 case 'c':
18043 if (strncmp (KR_keyword, "/dev/sdck7", 10) == 0)
18044 {
18045 {
18046 return dev_storage + 1748;
18047
18048 }
18049 }
18050 else
18051 {
18052 {
18053 return NULL;
18054
18055 }
18056 }
18057 case 'b':
18058 if (strncmp (KR_keyword, "/dev/sdbk7", 10) == 0)
18059 {
18060 {
18061 return dev_storage + 1332;
18062
18063 }
18064 }
18065 else
18066 {
18067 {
18068 return NULL;
18069
18070 }
18071 }
18072 case 'a':
18073 if (strncmp (KR_keyword, "/dev/sdak7", 10) == 0)
18074 {
18075 {
18076 return dev_storage + 916;
18077
18078 }
18079 }
18080 else
18081 {
18082 {
18083 return NULL;
18084
18085 }
18086 }
18087 default:
18088 {
18089 return NULL;
18090
18091 }
18092 }
18093 case 'j':
18094 switch (KR_keyword [7])
18095 {
18096 case 'd':
18097 if (strncmp (KR_keyword, "/dev/sddj7", 10) == 0)
18098 {
18099 {
18100 return dev_storage + 2147;
18101
18102 }
18103 }
18104 else
18105 {
18106 {
18107 return NULL;
18108
18109 }
18110 }
18111 case 'c':
18112 if (strncmp (KR_keyword, "/dev/sdcj7", 10) == 0)
18113 {
18114 {
18115 return dev_storage + 1733;
18116
18117 }
18118 }
18119 else
18120 {
18121 {
18122 return NULL;
18123
18124 }
18125 }
18126 case 'b':
18127 if (strncmp (KR_keyword, "/dev/sdbj7", 10) == 0)
18128 {
18129 {
18130 return dev_storage + 1317;
18131
18132 }
18133 }
18134 else
18135 {
18136 {
18137 return NULL;
18138
18139 }
18140 }
18141 case 'a':
18142 if (strncmp (KR_keyword, "/dev/sdaj7", 10) == 0)
18143 {
18144 {
18145 return dev_storage + 901;
18146
18147 }
18148 }
18149 else
18150 {
18151 {
18152 return NULL;
18153
18154 }
18155 }
18156 default:
18157 {
18158 return NULL;
18159
18160 }
18161 }
18162 case 'i':
18163 switch (KR_keyword [7])
18164 {
18165 case 'd':
18166 if (strncmp (KR_keyword, "/dev/sddi7", 10) == 0)
18167 {
18168 {
18169 return dev_storage + 2132;
18170
18171 }
18172 }
18173 else
18174 {
18175 {
18176 return NULL;
18177
18178 }
18179 }
18180 case 'c':
18181 if (strncmp (KR_keyword, "/dev/sdci7", 10) == 0)
18182 {
18183 {
18184 return dev_storage + 1718;
18185
18186 }
18187 }
18188 else
18189 {
18190 {
18191 return NULL;
18192
18193 }
18194 }
18195 case 'b':
18196 if (strncmp (KR_keyword, "/dev/sdbi7", 10) == 0)
18197 {
18198 {
18199 return dev_storage + 1302;
18200
18201 }
18202 }
18203 else
18204 {
18205 {
18206 return NULL;
18207
18208 }
18209 }
18210 case 'a':
18211 if (strncmp (KR_keyword, "/dev/sdai7", 10) == 0)
18212 {
18213 {
18214 return dev_storage + 886;
18215
18216 }
18217 }
18218 else
18219 {
18220 {
18221 return NULL;
18222
18223 }
18224 }
18225 default:
18226 {
18227 return NULL;
18228
18229 }
18230 }
18231 case 'h':
18232 switch (KR_keyword [7])
18233 {
18234 case 'd':
18235 if (strncmp (KR_keyword, "/dev/sddh7", 10) == 0)
18236 {
18237 {
18238 return dev_storage + 2117;
18239
18240 }
18241 }
18242 else
18243 {
18244 {
18245 return NULL;
18246
18247 }
18248 }
18249 case 'c':
18250 if (strncmp (KR_keyword, "/dev/sdch7", 10) == 0)
18251 {
18252 {
18253 return dev_storage + 1703;
18254
18255 }
18256 }
18257 else
18258 {
18259 {
18260 return NULL;
18261
18262 }
18263 }
18264 case 'b':
18265 if (strncmp (KR_keyword, "/dev/sdbh7", 10) == 0)
18266 {
18267 {
18268 return dev_storage + 1287;
18269
18270 }
18271 }
18272 else
18273 {
18274 {
18275 return NULL;
18276
18277 }
18278 }
18279 case 'a':
18280 if (strncmp (KR_keyword, "/dev/sdah7", 10) == 0)
18281 {
18282 {
18283 return dev_storage + 871;
18284
18285 }
18286 }
18287 else
18288 {
18289 {
18290 return NULL;
18291
18292 }
18293 }
18294 default:
18295 {
18296 return NULL;
18297
18298 }
18299 }
18300 case 'g':
18301 switch (KR_keyword [7])
18302 {
18303 case 'd':
18304 if (strncmp (KR_keyword, "/dev/sddg7", 10) == 0)
18305 {
18306 {
18307 return dev_storage + 2102;
18308
18309 }
18310 }
18311 else
18312 {
18313 {
18314 return NULL;
18315
18316 }
18317 }
18318 case 'c':
18319 if (strncmp (KR_keyword, "/dev/sdcg7", 10) == 0)
18320 {
18321 {
18322 return dev_storage + 1688;
18323
18324 }
18325 }
18326 else
18327 {
18328 {
18329 return NULL;
18330
18331 }
18332 }
18333 case 'b':
18334 if (strncmp (KR_keyword, "/dev/sdbg7", 10) == 0)
18335 {
18336 {
18337 return dev_storage + 1272;
18338
18339 }
18340 }
18341 else
18342 {
18343 {
18344 return NULL;
18345
18346 }
18347 }
18348 case 'a':
18349 if (strncmp (KR_keyword, "/dev/sdag7", 10) == 0)
18350 {
18351 {
18352 return dev_storage + 856;
18353
18354 }
18355 }
18356 else
18357 {
18358 {
18359 return NULL;
18360
18361 }
18362 }
18363 default:
18364 {
18365 return NULL;
18366
18367 }
18368 }
18369 case 'f':
18370 switch (KR_keyword [7])
18371 {
18372 case 'd':
18373 if (strncmp (KR_keyword, "/dev/sddf7", 10) == 0)
18374 {
18375 {
18376 return dev_storage + 2087;
18377
18378 }
18379 }
18380 else
18381 {
18382 {
18383 return NULL;
18384
18385 }
18386 }
18387 case 'c':
18388 if (strncmp (KR_keyword, "/dev/sdcf7", 10) == 0)
18389 {
18390 {
18391 return dev_storage + 1673;
18392
18393 }
18394 }
18395 else
18396 {
18397 {
18398 return NULL;
18399
18400 }
18401 }
18402 case 'b':
18403 if (strncmp (KR_keyword, "/dev/sdbf7", 10) == 0)
18404 {
18405 {
18406 return dev_storage + 1257;
18407
18408 }
18409 }
18410 else
18411 {
18412 {
18413 return NULL;
18414
18415 }
18416 }
18417 case 'a':
18418 if (strncmp (KR_keyword, "/dev/sdaf7", 10) == 0)
18419 {
18420 {
18421 return dev_storage + 841;
18422
18423 }
18424 }
18425 else
18426 {
18427 {
18428 return NULL;
18429
18430 }
18431 }
18432 default:
18433 {
18434 return NULL;
18435
18436 }
18437 }
18438 case 'e':
18439 switch (KR_keyword [7])
18440 {
18441 case 'd':
18442 if (strncmp (KR_keyword, "/dev/sdde7", 10) == 0)
18443 {
18444 {
18445 return dev_storage + 2072;
18446
18447 }
18448 }
18449 else
18450 {
18451 {
18452 return NULL;
18453
18454 }
18455 }
18456 case 'c':
18457 if (strncmp (KR_keyword, "/dev/sdce7", 10) == 0)
18458 {
18459 {
18460 return dev_storage + 1658;
18461
18462 }
18463 }
18464 else
18465 {
18466 {
18467 return NULL;
18468
18469 }
18470 }
18471 case 'b':
18472 if (strncmp (KR_keyword, "/dev/sdbe7", 10) == 0)
18473 {
18474 {
18475 return dev_storage + 1242;
18476
18477 }
18478 }
18479 else
18480 {
18481 {
18482 return NULL;
18483
18484 }
18485 }
18486 case 'a':
18487 if (strncmp (KR_keyword, "/dev/sdae7", 10) == 0)
18488 {
18489 {
18490 return dev_storage + 826;
18491
18492 }
18493 }
18494 else
18495 {
18496 {
18497 return NULL;
18498
18499 }
18500 }
18501 default:
18502 {
18503 return NULL;
18504
18505 }
18506 }
18507 case 'd':
18508 switch (KR_keyword [7])
18509 {
18510 case 'd':
18511 if (strncmp (KR_keyword, "/dev/sddd7", 10) == 0)
18512 {
18513 {
18514 return dev_storage + 2057;
18515
18516 }
18517 }
18518 else
18519 {
18520 {
18521 return NULL;
18522
18523 }
18524 }
18525 case 'c':
18526 if (strncmp (KR_keyword, "/dev/sdcd7", 10) == 0)
18527 {
18528 {
18529 return dev_storage + 1643;
18530
18531 }
18532 }
18533 else
18534 {
18535 {
18536 return NULL;
18537
18538 }
18539 }
18540 case 'b':
18541 if (strncmp (KR_keyword, "/dev/sdbd7", 10) == 0)
18542 {
18543 {
18544 return dev_storage + 1227;
18545
18546 }
18547 }
18548 else
18549 {
18550 {
18551 return NULL;
18552
18553 }
18554 }
18555 case 'a':
18556 if (strncmp (KR_keyword, "/dev/sdad7", 10) == 0)
18557 {
18558 {
18559 return dev_storage + 811;
18560
18561 }
18562 }
18563 else
18564 {
18565 {
18566 return NULL;
18567
18568 }
18569 }
18570 default:
18571 {
18572 return NULL;
18573
18574 }
18575 }
18576 case 'c':
18577 switch (KR_keyword [7])
18578 {
18579 case 'd':
18580 if (strncmp (KR_keyword, "/dev/sddc7", 10) == 0)
18581 {
18582 {
18583 return dev_storage + 2042;
18584
18585 }
18586 }
18587 else
18588 {
18589 {
18590 return NULL;
18591
18592 }
18593 }
18594 case 'c':
18595 if (strncmp (KR_keyword, "/dev/sdcc7", 10) == 0)
18596 {
18597 {
18598 return dev_storage + 1628;
18599
18600 }
18601 }
18602 else
18603 {
18604 {
18605 return NULL;
18606
18607 }
18608 }
18609 case 'b':
18610 if (strncmp (KR_keyword, "/dev/sdbc7", 10) == 0)
18611 {
18612 {
18613 return dev_storage + 1212;
18614
18615 }
18616 }
18617 else
18618 {
18619 {
18620 return NULL;
18621
18622 }
18623 }
18624 case 'a':
18625 if (strncmp (KR_keyword, "/dev/sdac7", 10) == 0)
18626 {
18627 {
18628 return dev_storage + 796;
18629
18630 }
18631 }
18632 else
18633 {
18634 {
18635 return NULL;
18636
18637 }
18638 }
18639 default:
18640 {
18641 return NULL;
18642
18643 }
18644 }
18645 case 'b':
18646 switch (KR_keyword [7])
18647 {
18648 case 'd':
18649 if (strncmp (KR_keyword, "/dev/sddb7", 10) == 0)
18650 {
18651 {
18652 return dev_storage + 2027;
18653
18654 }
18655 }
18656 else
18657 {
18658 {
18659 return NULL;
18660
18661 }
18662 }
18663 case 'c':
18664 if (strncmp (KR_keyword, "/dev/sdcb7", 10) == 0)
18665 {
18666 {
18667 return dev_storage + 1613;
18668
18669 }
18670 }
18671 else
18672 {
18673 {
18674 return NULL;
18675
18676 }
18677 }
18678 case 'b':
18679 if (strncmp (KR_keyword, "/dev/sdbb7", 10) == 0)
18680 {
18681 {
18682 return dev_storage + 1197;
18683
18684 }
18685 }
18686 else
18687 {
18688 {
18689 return NULL;
18690
18691 }
18692 }
18693 case 'a':
18694 if (strncmp (KR_keyword, "/dev/sdab7", 10) == 0)
18695 {
18696 {
18697 return dev_storage + 781;
18698
18699 }
18700 }
18701 else
18702 {
18703 {
18704 return NULL;
18705
18706 }
18707 }
18708 default:
18709 {
18710 return NULL;
18711
18712 }
18713 }
18714 case 'a':
18715 switch (KR_keyword [7])
18716 {
18717 case 'd':
18718 if (strncmp (KR_keyword, "/dev/sdda7", 10) == 0)
18719 {
18720 {
18721 return dev_storage + 2012;
18722
18723 }
18724 }
18725 else
18726 {
18727 {
18728 return NULL;
18729
18730 }
18731 }
18732 case 'c':
18733 if (strncmp (KR_keyword, "/dev/sdca7", 10) == 0)
18734 {
18735 {
18736 return dev_storage + 1598;
18737
18738 }
18739 }
18740 else
18741 {
18742 {
18743 return NULL;
18744
18745 }
18746 }
18747 case 'b':
18748 if (strncmp (KR_keyword, "/dev/sdba7", 10) == 0)
18749 {
18750 {
18751 return dev_storage + 1182;
18752
18753 }
18754 }
18755 else
18756 {
18757 {
18758 return NULL;
18759
18760 }
18761 }
18762 case 'a':
18763 if (strncmp (KR_keyword, "/dev/sdaa7", 10) == 0)
18764 {
18765 {
18766 return dev_storage + 766;
18767
18768 }
18769 }
18770 else
18771 {
18772 {
18773 return NULL;
18774
18775 }
18776 }
18777 default:
18778 {
18779 return NULL;
18780
18781 }
18782 }
18783 case 'S':
18784 if (strncmp (KR_keyword, "/dev/ttyS7", 10) == 0)
18785 {
18786 {
18787 return dev_storage + 2518;
18788
18789 }
18790 }
18791 else
18792 {
18793 {
18794 return NULL;
18795
18796 }
18797 }
18798 case '9':
18799 if (strncmp (KR_keyword, "/dev/nst97", 10) == 0)
18800 {
18801 {
18802 return dev_storage + 203;
18803
18804 }
18805 }
18806 else
18807 {
18808 {
18809 return NULL;
18810
18811 }
18812 }
18813 case '8':
18814 if (strncmp (KR_keyword, "/dev/nst87", 10) == 0)
18815 {
18816 {
18817 return dev_storage + 193;
18818
18819 }
18820 }
18821 else
18822 {
18823 {
18824 return NULL;
18825
18826 }
18827 }
18828 case '7':
18829 if (strncmp (KR_keyword, "/dev/nst77", 10) == 0)
18830 {
18831 {
18832 return dev_storage + 183;
18833
18834 }
18835 }
18836 else
18837 {
18838 {
18839 return NULL;
18840
18841 }
18842 }
18843 case '6':
18844 if (strncmp (KR_keyword, "/dev/nst67", 10) == 0)
18845 {
18846 {
18847 return dev_storage + 173;
18848
18849 }
18850 }
18851 else
18852 {
18853 {
18854 return NULL;
18855
18856 }
18857 }
18858 case '5':
18859 switch (KR_keyword [5])
18860 {
18861 case 'p':
18862 if (strncmp (KR_keyword, "/dev/pty57", 10) == 0)
18863 {
18864 {
18865 return dev_storage + 294;
18866
18867 }
18868 }
18869 else
18870 {
18871 {
18872 return NULL;
18873
18874 }
18875 }
18876 case 'n':
18877 if (strncmp (KR_keyword, "/dev/nst57", 10) == 0)
18878 {
18879 {
18880 return dev_storage + 163;
18881
18882 }
18883 }
18884 else
18885 {
18886 {
18887 return NULL;
18888
18889 }
18890 }
18891 default:
18892 {
18893 return NULL;
18894
18895 }
18896 }
18897 case '4':
18898 switch (KR_keyword [5])
18899 {
18900 case 'p':
18901 if (strncmp (KR_keyword, "/dev/pty47", 10) == 0)
18902 {
18903 {
18904 return dev_storage + 284;
18905
18906 }
18907 }
18908 else
18909 {
18910 {
18911 return NULL;
18912
18913 }
18914 }
18915 case 'n':
18916 if (strncmp (KR_keyword, "/dev/nst47", 10) == 0)
18917 {
18918 {
18919 return dev_storage + 153;
18920
18921 }
18922 }
18923 else
18924 {
18925 {
18926 return NULL;
18927
18928 }
18929 }
18930 default:
18931 {
18932 return NULL;
18933
18934 }
18935 }
18936 case '3':
18937 switch (KR_keyword [5])
18938 {
18939 case 'p':
18940 if (strncmp (KR_keyword, "/dev/pty37", 10) == 0)
18941 {
18942 {
18943 return dev_storage + 274;
18944
18945 }
18946 }
18947 else
18948 {
18949 {
18950 return NULL;
18951
18952 }
18953 }
18954 case 'n':
18955 if (strncmp (KR_keyword, "/dev/nst37", 10) == 0)
18956 {
18957 {
18958 return dev_storage + 143;
18959
18960 }
18961 }
18962 else
18963 {
18964 {
18965 return NULL;
18966
18967 }
18968 }
18969 default:
18970 {
18971 return NULL;
18972
18973 }
18974 }
18975 case '2':
18976 switch (KR_keyword [5])
18977 {
18978 case 's':
18979 if (strncmp (KR_keyword, "/dev/st127", 10) == 0)
18980 {
18981 {
18982 return dev_storage + 2509;
18983
18984 }
18985 }
18986 else
18987 {
18988 {
18989 return NULL;
18990
18991 }
18992 }
18993 case 'p':
18994 if (strncmp (KR_keyword, "/dev/pty27", 10) == 0)
18995 {
18996 {
18997 return dev_storage + 264;
18998
18999 }
19000 }
19001 else
19002 {
19003 {
19004 return NULL;
19005
19006 }
19007 }
19008 case 'n':
19009 if (strncmp (KR_keyword, "/dev/nst27", 10) == 0)
19010 {
19011 {
19012 return dev_storage + 133;
19013
19014 }
19015 }
19016 else
19017 {
19018 {
19019 return NULL;
19020
19021 }
19022 }
19023 default:
19024 {
19025 return NULL;
19026
19027 }
19028 }
19029 case '1':
19030 switch (KR_keyword [5])
19031 {
19032 case 's':
19033 if (strncmp (KR_keyword, "/dev/st117", 10) == 0)
19034 {
19035 {
19036 return dev_storage + 2499;
19037
19038 }
19039 }
19040 else
19041 {
19042 {
19043 return NULL;
19044
19045 }
19046 }
19047 case 'p':
19048 if (strncmp (KR_keyword, "/dev/pty17", 10) == 0)
19049 {
19050 {
19051 return dev_storage + 254;
19052
19053 }
19054 }
19055 else
19056 {
19057 {
19058 return NULL;
19059
19060 }
19061 }
19062 case 'n':
19063 if (strncmp (KR_keyword, "/dev/nst17", 10) == 0)
19064 {
19065 {
19066 return dev_storage + 123;
19067
19068 }
19069 }
19070 else
19071 {
19072 {
19073 return NULL;
19074
19075 }
19076 }
19077 default:
19078 {
19079 return NULL;
19080
19081 }
19082 }
19083 case '0':
19084 if (strncmp (KR_keyword, "/dev/st107", 10) == 0)
19085 {
19086 {
19087 return dev_storage + 2489;
19088
19089 }
19090 }
19091 else
19092 {
19093 {
19094 return NULL;
19095
19096 }
19097 }
19098 default:
19099 {
19100 return NULL;
19101
19102 }
19103 }
19104 case '6':
19105 switch (KR_keyword [8])
19106 {
19107 case 'z':
19108 switch (KR_keyword [7])
19109 {
19110 case 'c':
19111 if (strncmp (KR_keyword, "/dev/sdcz6", 10) == 0)
19112 {
19113 {
19114 return dev_storage + 1972;
19115
19116 }
19117 }
19118 else
19119 {
19120 {
19121 return NULL;
19122
19123 }
19124 }
19125 case 'b':
19126 if (strncmp (KR_keyword, "/dev/sdbz6", 10) == 0)
19127 {
19128 {
19129 return dev_storage + 1556;
19130
19131 }
19132 }
19133 else
19134 {
19135 {
19136 return NULL;
19137
19138 }
19139 }
19140 case 'a':
19141 if (strncmp (KR_keyword, "/dev/sdaz6", 10) == 0)
19142 {
19143 {
19144 return dev_storage + 1140;
19145
19146 }
19147 }
19148 else
19149 {
19150 {
19151 return NULL;
19152
19153 }
19154 }
19155 default:
19156 {
19157 return NULL;
19158
19159 }
19160 }
19161 case 'y':
19162 switch (KR_keyword [7])
19163 {
19164 case 'c':
19165 if (strncmp (KR_keyword, "/dev/sdcy6", 10) == 0)
19166 {
19167 {
19168 return dev_storage + 1957;
19169
19170 }
19171 }
19172 else
19173 {
19174 {
19175 return NULL;
19176
19177 }
19178 }
19179 case 'b':
19180 if (strncmp (KR_keyword, "/dev/sdby6", 10) == 0)
19181 {
19182 {
19183 return dev_storage + 1541;
19184
19185 }
19186 }
19187 else
19188 {
19189 {
19190 return NULL;
19191
19192 }
19193 }
19194 case 'a':
19195 if (strncmp (KR_keyword, "/dev/sday6", 10) == 0)
19196 {
19197 {
19198 return dev_storage + 1125;
19199
19200 }
19201 }
19202 else
19203 {
19204 {
19205 return NULL;
19206
19207 }
19208 }
19209 default:
19210 {
19211 return NULL;
19212
19213 }
19214 }
19215 case 'x':
19216 switch (KR_keyword [7])
19217 {
19218 case 'd':
19219 if (strncmp (KR_keyword, "/dev/sddx6", 10) == 0)
19220 {
19221 {
19222 return dev_storage + 2356;
19223
19224 }
19225 }
19226 else
19227 {
19228 {
19229 return NULL;
19230
19231 }
19232 }
19233 case 'c':
19234 if (strncmp (KR_keyword, "/dev/sdcx6", 10) == 0)
19235 {
19236 {
19237 return dev_storage + 1942;
19238
19239 }
19240 }
19241 else
19242 {
19243 {
19244 return NULL;
19245
19246 }
19247 }
19248 case 'b':
19249 if (strncmp (KR_keyword, "/dev/sdbx6", 10) == 0)
19250 {
19251 {
19252 return dev_storage + 1526;
19253
19254 }
19255 }
19256 else
19257 {
19258 {
19259 return NULL;
19260
19261 }
19262 }
19263 case 'a':
19264 if (strncmp (KR_keyword, "/dev/sdax6", 10) == 0)
19265 {
19266 {
19267 return dev_storage + 1110;
19268
19269 }
19270 }
19271 else
19272 {
19273 {
19274 return NULL;
19275
19276 }
19277 }
19278 default:
19279 {
19280 return NULL;
19281
19282 }
19283 }
19284 case 'w':
19285 switch (KR_keyword [7])
19286 {
19287 case 'd':
19288 if (strncmp (KR_keyword, "/dev/sddw6", 10) == 0)
19289 {
19290 {
19291 return dev_storage + 2341;
19292
19293 }
19294 }
19295 else
19296 {
19297 {
19298 return NULL;
19299
19300 }
19301 }
19302 case 'c':
19303 if (strncmp (KR_keyword, "/dev/sdcw6", 10) == 0)
19304 {
19305 {
19306 return dev_storage + 1927;
19307
19308 }
19309 }
19310 else
19311 {
19312 {
19313 return NULL;
19314
19315 }
19316 }
19317 case 'b':
19318 if (strncmp (KR_keyword, "/dev/sdbw6", 10) == 0)
19319 {
19320 {
19321 return dev_storage + 1511;
19322
19323 }
19324 }
19325 else
19326 {
19327 {
19328 return NULL;
19329
19330 }
19331 }
19332 case 'a':
19333 if (strncmp (KR_keyword, "/dev/sdaw6", 10) == 0)
19334 {
19335 {
19336 return dev_storage + 1095;
19337
19338 }
19339 }
19340 else
19341 {
19342 {
19343 return NULL;
19344
19345 }
19346 }
19347 default:
19348 {
19349 return NULL;
19350
19351 }
19352 }
19353 case 'v':
19354 switch (KR_keyword [7])
19355 {
19356 case 'd':
19357 if (strncmp (KR_keyword, "/dev/sddv6", 10) == 0)
19358 {
19359 {
19360 return dev_storage + 2326;
19361
19362 }
19363 }
19364 else
19365 {
19366 {
19367 return NULL;
19368
19369 }
19370 }
19371 case 'c':
19372 if (strncmp (KR_keyword, "/dev/sdcv6", 10) == 0)
19373 {
19374 {
19375 return dev_storage + 1912;
19376
19377 }
19378 }
19379 else
19380 {
19381 {
19382 return NULL;
19383
19384 }
19385 }
19386 case 'b':
19387 if (strncmp (KR_keyword, "/dev/sdbv6", 10) == 0)
19388 {
19389 {
19390 return dev_storage + 1496;
19391
19392 }
19393 }
19394 else
19395 {
19396 {
19397 return NULL;
19398
19399 }
19400 }
19401 case 'a':
19402 if (strncmp (KR_keyword, "/dev/sdav6", 10) == 0)
19403 {
19404 {
19405 return dev_storage + 1080;
19406
19407 }
19408 }
19409 else
19410 {
19411 {
19412 return NULL;
19413
19414 }
19415 }
19416 default:
19417 {
19418 return NULL;
19419
19420 }
19421 }
19422 case 'u':
19423 switch (KR_keyword [7])
19424 {
19425 case 'd':
19426 if (strncmp (KR_keyword, "/dev/sddu6", 10) == 0)
19427 {
19428 {
19429 return dev_storage + 2311;
19430
19431 }
19432 }
19433 else
19434 {
19435 {
19436 return NULL;
19437
19438 }
19439 }
19440 case 'c':
19441 if (strncmp (KR_keyword, "/dev/sdcu6", 10) == 0)
19442 {
19443 {
19444 return dev_storage + 1897;
19445
19446 }
19447 }
19448 else
19449 {
19450 {
19451 return NULL;
19452
19453 }
19454 }
19455 case 'b':
19456 if (strncmp (KR_keyword, "/dev/sdbu6", 10) == 0)
19457 {
19458 {
19459 return dev_storage + 1481;
19460
19461 }
19462 }
19463 else
19464 {
19465 {
19466 return NULL;
19467
19468 }
19469 }
19470 case 'a':
19471 if (strncmp (KR_keyword, "/dev/sdau6", 10) == 0)
19472 {
19473 {
19474 return dev_storage + 1065;
19475
19476 }
19477 }
19478 else
19479 {
19480 {
19481 return NULL;
19482
19483 }
19484 }
19485 default:
19486 {
19487 return NULL;
19488
19489 }
19490 }
19491 case 't':
19492 switch (KR_keyword [7])
19493 {
19494 case 'd':
19495 if (strncmp (KR_keyword, "/dev/sddt6", 10) == 0)
19496 {
19497 {
19498 return dev_storage + 2296;
19499
19500 }
19501 }
19502 else
19503 {
19504 {
19505 return NULL;
19506
19507 }
19508 }
19509 case 'c':
19510 if (strncmp (KR_keyword, "/dev/sdct6", 10) == 0)
19511 {
19512 {
19513 return dev_storage + 1882;
19514
19515 }
19516 }
19517 else
19518 {
19519 {
19520 return NULL;
19521
19522 }
19523 }
19524 case 'b':
19525 if (strncmp (KR_keyword, "/dev/sdbt6", 10) == 0)
19526 {
19527 {
19528 return dev_storage + 1466;
19529
19530 }
19531 }
19532 else
19533 {
19534 {
19535 return NULL;
19536
19537 }
19538 }
19539 case 'a':
19540 if (strncmp (KR_keyword, "/dev/sdat6", 10) == 0)
19541 {
19542 {
19543 return dev_storage + 1050;
19544
19545 }
19546 }
19547 else
19548 {
19549 {
19550 return NULL;
19551
19552 }
19553 }
19554 default:
19555 {
19556 return NULL;
19557
19558 }
19559 }
19560 case 's':
19561 switch (KR_keyword [7])
19562 {
19563 case 'n':
19564 if (strncmp (KR_keyword, "/dev/cons6", 10) == 0)
19565 {
19566 {
19567 return dev_storage + 26;
19568
19569 }
19570 }
19571 else
19572 {
19573 {
19574 return NULL;
19575
19576 }
19577 }
19578 case 'd':
19579 if (strncmp (KR_keyword, "/dev/sdds6", 10) == 0)
19580 {
19581 {
19582 return dev_storage + 2281;
19583
19584 }
19585 }
19586 else
19587 {
19588 {
19589 return NULL;
19590
19591 }
19592 }
19593 case 'c':
19594 if (strncmp (KR_keyword, "/dev/sdcs6", 10) == 0)
19595 {
19596 {
19597 return dev_storage + 1867;
19598
19599 }
19600 }
19601 else
19602 {
19603 {
19604 return NULL;
19605
19606 }
19607 }
19608 case 'b':
19609 if (strncmp (KR_keyword, "/dev/sdbs6", 10) == 0)
19610 {
19611 {
19612 return dev_storage + 1451;
19613
19614 }
19615 }
19616 else
19617 {
19618 {
19619 return NULL;
19620
19621 }
19622 }
19623 case 'a':
19624 if (strncmp (KR_keyword, "/dev/sdas6", 10) == 0)
19625 {
19626 {
19627 return dev_storage + 1035;
19628
19629 }
19630 }
19631 else
19632 {
19633 {
19634 return NULL;
19635
19636 }
19637 }
19638 default:
19639 {
19640 return NULL;
19641
19642 }
19643 }
19644 case 'r':
19645 switch (KR_keyword [7])
19646 {
19647 case 'd':
19648 if (strncmp (KR_keyword, "/dev/sddr6", 10) == 0)
19649 {
19650 {
19651 return dev_storage + 2266;
19652
19653 }
19654 }
19655 else
19656 {
19657 {
19658 return NULL;
19659
19660 }
19661 }
19662 case 'c':
19663 if (strncmp (KR_keyword, "/dev/sdcr6", 10) == 0)
19664 {
19665 {
19666 return dev_storage + 1852;
19667
19668 }
19669 }
19670 else
19671 {
19672 {
19673 return NULL;
19674
19675 }
19676 }
19677 case 'b':
19678 if (strncmp (KR_keyword, "/dev/sdbr6", 10) == 0)
19679 {
19680 {
19681 return dev_storage + 1436;
19682
19683 }
19684 }
19685 else
19686 {
19687 {
19688 return NULL;
19689
19690 }
19691 }
19692 case 'a':
19693 if (strncmp (KR_keyword, "/dev/sdar6", 10) == 0)
19694 {
19695 {
19696 return dev_storage + 1020;
19697
19698 }
19699 }
19700 else
19701 {
19702 {
19703 return NULL;
19704
19705 }
19706 }
19707 default:
19708 {
19709 return NULL;
19710
19711 }
19712 }
19713 case 'q':
19714 switch (KR_keyword [7])
19715 {
19716 case 'd':
19717 if (strncmp (KR_keyword, "/dev/sddq6", 10) == 0)
19718 {
19719 {
19720 return dev_storage + 2251;
19721
19722 }
19723 }
19724 else
19725 {
19726 {
19727 return NULL;
19728
19729 }
19730 }
19731 case 'c':
19732 if (strncmp (KR_keyword, "/dev/sdcq6", 10) == 0)
19733 {
19734 {
19735 return dev_storage + 1837;
19736
19737 }
19738 }
19739 else
19740 {
19741 {
19742 return NULL;
19743
19744 }
19745 }
19746 case 'b':
19747 if (strncmp (KR_keyword, "/dev/sdbq6", 10) == 0)
19748 {
19749 {
19750 return dev_storage + 1421;
19751
19752 }
19753 }
19754 else
19755 {
19756 {
19757 return NULL;
19758
19759 }
19760 }
19761 case 'a':
19762 if (strncmp (KR_keyword, "/dev/sdaq6", 10) == 0)
19763 {
19764 {
19765 return dev_storage + 1005;
19766
19767 }
19768 }
19769 else
19770 {
19771 {
19772 return NULL;
19773
19774 }
19775 }
19776 default:
19777 {
19778 return NULL;
19779
19780 }
19781 }
19782 case 'p':
19783 switch (KR_keyword [7])
19784 {
19785 case 'd':
19786 if (strncmp (KR_keyword, "/dev/sddp6", 10) == 0)
19787 {
19788 {
19789 return dev_storage + 2236;
19790
19791 }
19792 }
19793 else
19794 {
19795 {
19796 return NULL;
19797
19798 }
19799 }
19800 case 'c':
19801 if (strncmp (KR_keyword, "/dev/sdcp6", 10) == 0)
19802 {
19803 {
19804 return dev_storage + 1822;
19805
19806 }
19807 }
19808 else
19809 {
19810 {
19811 return NULL;
19812
19813 }
19814 }
19815 case 'b':
19816 if (strncmp (KR_keyword, "/dev/sdbp6", 10) == 0)
19817 {
19818 {
19819 return dev_storage + 1406;
19820
19821 }
19822 }
19823 else
19824 {
19825 {
19826 return NULL;
19827
19828 }
19829 }
19830 case 'a':
19831 if (strncmp (KR_keyword, "/dev/sdap6", 10) == 0)
19832 {
19833 {
19834 return dev_storage + 990;
19835
19836 }
19837 }
19838 else
19839 {
19840 {
19841 return NULL;
19842
19843 }
19844 }
19845 default:
19846 {
19847 return NULL;
19848
19849 }
19850 }
19851 case 'o':
19852 switch (KR_keyword [7])
19853 {
19854 case 'd':
19855 if (strncmp (KR_keyword, "/dev/sddo6", 10) == 0)
19856 {
19857 {
19858 return dev_storage + 2221;
19859
19860 }
19861 }
19862 else
19863 {
19864 {
19865 return NULL;
19866
19867 }
19868 }
19869 case 'c':
19870 if (strncmp (KR_keyword, "/dev/sdco6", 10) == 0)
19871 {
19872 {
19873 return dev_storage + 1807;
19874
19875 }
19876 }
19877 else
19878 {
19879 {
19880 return NULL;
19881
19882 }
19883 }
19884 case 'b':
19885 if (strncmp (KR_keyword, "/dev/sdbo6", 10) == 0)
19886 {
19887 {
19888 return dev_storage + 1391;
19889
19890 }
19891 }
19892 else
19893 {
19894 {
19895 return NULL;
19896
19897 }
19898 }
19899 case 'a':
19900 if (strncmp (KR_keyword, "/dev/sdao6", 10) == 0)
19901 {
19902 {
19903 return dev_storage + 975;
19904
19905 }
19906 }
19907 else
19908 {
19909 {
19910 return NULL;
19911
19912 }
19913 }
19914 default:
19915 {
19916 return NULL;
19917
19918 }
19919 }
19920 case 'n':
19921 switch (KR_keyword [7])
19922 {
19923 case 'd':
19924 if (strncmp (KR_keyword, "/dev/sddn6", 10) == 0)
19925 {
19926 {
19927 return dev_storage + 2206;
19928
19929 }
19930 }
19931 else
19932 {
19933 {
19934 return NULL;
19935
19936 }
19937 }
19938 case 'c':
19939 if (strncmp (KR_keyword, "/dev/sdcn6", 10) == 0)
19940 {
19941 {
19942 return dev_storage + 1792;
19943
19944 }
19945 }
19946 else
19947 {
19948 {
19949 return NULL;
19950
19951 }
19952 }
19953 case 'b':
19954 if (strncmp (KR_keyword, "/dev/sdbn6", 10) == 0)
19955 {
19956 {
19957 return dev_storage + 1376;
19958
19959 }
19960 }
19961 else
19962 {
19963 {
19964 return NULL;
19965
19966 }
19967 }
19968 case 'a':
19969 if (strncmp (KR_keyword, "/dev/sdan6", 10) == 0)
19970 {
19971 {
19972 return dev_storage + 960;
19973
19974 }
19975 }
19976 else
19977 {
19978 {
19979 return NULL;
19980
19981 }
19982 }
19983 default:
19984 {
19985 return NULL;
19986
19987 }
19988 }
19989 case 'm':
19990 switch (KR_keyword [7])
19991 {
19992 case 'd':
19993 if (strncmp (KR_keyword, "/dev/sddm6", 10) == 0)
19994 {
19995 {
19996 return dev_storage + 2191;
19997
19998 }
19999 }
20000 else
20001 {
20002 {
20003 return NULL;
20004
20005 }
20006 }
20007 case 'c':
20008 if (strncmp (KR_keyword, "/dev/sdcm6", 10) == 0)
20009 {
20010 {
20011 return dev_storage + 1777;
20012
20013 }
20014 }
20015 else
20016 {
20017 {
20018 return NULL;
20019
20020 }
20021 }
20022 case 'b':
20023 if (strncmp (KR_keyword, "/dev/sdbm6", 10) == 0)
20024 {
20025 {
20026 return dev_storage + 1361;
20027
20028 }
20029 }
20030 else
20031 {
20032 {
20033 return NULL;
20034
20035 }
20036 }
20037 case 'a':
20038 if (strncmp (KR_keyword, "/dev/sdam6", 10) == 0)
20039 {
20040 {
20041 return dev_storage + 945;
20042
20043 }
20044 }
20045 else
20046 {
20047 {
20048 return NULL;
20049
20050 }
20051 }
20052 default:
20053 {
20054 return NULL;
20055
20056 }
20057 }
20058 case 'l':
20059 switch (KR_keyword [7])
20060 {
20061 case 'd':
20062 if (strncmp (KR_keyword, "/dev/sddl6", 10) == 0)
20063 {
20064 {
20065 return dev_storage + 2176;
20066
20067 }
20068 }
20069 else
20070 {
20071 {
20072 return NULL;
20073
20074 }
20075 }
20076 case 'c':
20077 if (strncmp (KR_keyword, "/dev/sdcl6", 10) == 0)
20078 {
20079 {
20080 return dev_storage + 1762;
20081
20082 }
20083 }
20084 else
20085 {
20086 {
20087 return NULL;
20088
20089 }
20090 }
20091 case 'b':
20092 if (strncmp (KR_keyword, "/dev/sdbl6", 10) == 0)
20093 {
20094 {
20095 return dev_storage + 1346;
20096
20097 }
20098 }
20099 else
20100 {
20101 {
20102 return NULL;
20103
20104 }
20105 }
20106 case 'a':
20107 if (strncmp (KR_keyword, "/dev/sdal6", 10) == 0)
20108 {
20109 {
20110 return dev_storage + 930;
20111
20112 }
20113 }
20114 else
20115 {
20116 {
20117 return NULL;
20118
20119 }
20120 }
20121 default:
20122 {
20123 return NULL;
20124
20125 }
20126 }
20127 case 'k':
20128 switch (KR_keyword [7])
20129 {
20130 case 'd':
20131 if (strncmp (KR_keyword, "/dev/sddk6", 10) == 0)
20132 {
20133 {
20134 return dev_storage + 2161;
20135
20136 }
20137 }
20138 else
20139 {
20140 {
20141 return NULL;
20142
20143 }
20144 }
20145 case 'c':
20146 if (strncmp (KR_keyword, "/dev/sdck6", 10) == 0)
20147 {
20148 {
20149 return dev_storage + 1747;
20150
20151 }
20152 }
20153 else
20154 {
20155 {
20156 return NULL;
20157
20158 }
20159 }
20160 case 'b':
20161 if (strncmp (KR_keyword, "/dev/sdbk6", 10) == 0)
20162 {
20163 {
20164 return dev_storage + 1331;
20165
20166 }
20167 }
20168 else
20169 {
20170 {
20171 return NULL;
20172
20173 }
20174 }
20175 case 'a':
20176 if (strncmp (KR_keyword, "/dev/sdak6", 10) == 0)
20177 {
20178 {
20179 return dev_storage + 915;
20180
20181 }
20182 }
20183 else
20184 {
20185 {
20186 return NULL;
20187
20188 }
20189 }
20190 default:
20191 {
20192 return NULL;
20193
20194 }
20195 }
20196 case 'j':
20197 switch (KR_keyword [7])
20198 {
20199 case 'd':
20200 if (strncmp (KR_keyword, "/dev/sddj6", 10) == 0)
20201 {
20202 {
20203 return dev_storage + 2146;
20204
20205 }
20206 }
20207 else
20208 {
20209 {
20210 return NULL;
20211
20212 }
20213 }
20214 case 'c':
20215 if (strncmp (KR_keyword, "/dev/sdcj6", 10) == 0)
20216 {
20217 {
20218 return dev_storage + 1732;
20219
20220 }
20221 }
20222 else
20223 {
20224 {
20225 return NULL;
20226
20227 }
20228 }
20229 case 'b':
20230 if (strncmp (KR_keyword, "/dev/sdbj6", 10) == 0)
20231 {
20232 {
20233 return dev_storage + 1316;
20234
20235 }
20236 }
20237 else
20238 {
20239 {
20240 return NULL;
20241
20242 }
20243 }
20244 case 'a':
20245 if (strncmp (KR_keyword, "/dev/sdaj6", 10) == 0)
20246 {
20247 {
20248 return dev_storage + 900;
20249
20250 }
20251 }
20252 else
20253 {
20254 {
20255 return NULL;
20256
20257 }
20258 }
20259 default:
20260 {
20261 return NULL;
20262
20263 }
20264 }
20265 case 'i':
20266 switch (KR_keyword [7])
20267 {
20268 case 'd':
20269 if (strncmp (KR_keyword, "/dev/sddi6", 10) == 0)
20270 {
20271 {
20272 return dev_storage + 2131;
20273
20274 }
20275 }
20276 else
20277 {
20278 {
20279 return NULL;
20280
20281 }
20282 }
20283 case 'c':
20284 if (strncmp (KR_keyword, "/dev/sdci6", 10) == 0)
20285 {
20286 {
20287 return dev_storage + 1717;
20288
20289 }
20290 }
20291 else
20292 {
20293 {
20294 return NULL;
20295
20296 }
20297 }
20298 case 'b':
20299 if (strncmp (KR_keyword, "/dev/sdbi6", 10) == 0)
20300 {
20301 {
20302 return dev_storage + 1301;
20303
20304 }
20305 }
20306 else
20307 {
20308 {
20309 return NULL;
20310
20311 }
20312 }
20313 case 'a':
20314 if (strncmp (KR_keyword, "/dev/sdai6", 10) == 0)
20315 {
20316 {
20317 return dev_storage + 885;
20318
20319 }
20320 }
20321 else
20322 {
20323 {
20324 return NULL;
20325
20326 }
20327 }
20328 default:
20329 {
20330 return NULL;
20331
20332 }
20333 }
20334 case 'h':
20335 switch (KR_keyword [7])
20336 {
20337 case 'd':
20338 if (strncmp (KR_keyword, "/dev/sddh6", 10) == 0)
20339 {
20340 {
20341 return dev_storage + 2116;
20342
20343 }
20344 }
20345 else
20346 {
20347 {
20348 return NULL;
20349
20350 }
20351 }
20352 case 'c':
20353 if (strncmp (KR_keyword, "/dev/sdch6", 10) == 0)
20354 {
20355 {
20356 return dev_storage + 1702;
20357
20358 }
20359 }
20360 else
20361 {
20362 {
20363 return NULL;
20364
20365 }
20366 }
20367 case 'b':
20368 if (strncmp (KR_keyword, "/dev/sdbh6", 10) == 0)
20369 {
20370 {
20371 return dev_storage + 1286;
20372
20373 }
20374 }
20375 else
20376 {
20377 {
20378 return NULL;
20379
20380 }
20381 }
20382 case 'a':
20383 if (strncmp (KR_keyword, "/dev/sdah6", 10) == 0)
20384 {
20385 {
20386 return dev_storage + 870;
20387
20388 }
20389 }
20390 else
20391 {
20392 {
20393 return NULL;
20394
20395 }
20396 }
20397 default:
20398 {
20399 return NULL;
20400
20401 }
20402 }
20403 case 'g':
20404 switch (KR_keyword [7])
20405 {
20406 case 'd':
20407 if (strncmp (KR_keyword, "/dev/sddg6", 10) == 0)
20408 {
20409 {
20410 return dev_storage + 2101;
20411
20412 }
20413 }
20414 else
20415 {
20416 {
20417 return NULL;
20418
20419 }
20420 }
20421 case 'c':
20422 if (strncmp (KR_keyword, "/dev/sdcg6", 10) == 0)
20423 {
20424 {
20425 return dev_storage + 1687;
20426
20427 }
20428 }
20429 else
20430 {
20431 {
20432 return NULL;
20433
20434 }
20435 }
20436 case 'b':
20437 if (strncmp (KR_keyword, "/dev/sdbg6", 10) == 0)
20438 {
20439 {
20440 return dev_storage + 1271;
20441
20442 }
20443 }
20444 else
20445 {
20446 {
20447 return NULL;
20448
20449 }
20450 }
20451 case 'a':
20452 if (strncmp (KR_keyword, "/dev/sdag6", 10) == 0)
20453 {
20454 {
20455 return dev_storage + 855;
20456
20457 }
20458 }
20459 else
20460 {
20461 {
20462 return NULL;
20463
20464 }
20465 }
20466 default:
20467 {
20468 return NULL;
20469
20470 }
20471 }
20472 case 'f':
20473 switch (KR_keyword [7])
20474 {
20475 case 'd':
20476 if (strncmp (KR_keyword, "/dev/sddf6", 10) == 0)
20477 {
20478 {
20479 return dev_storage + 2086;
20480
20481 }
20482 }
20483 else
20484 {
20485 {
20486 return NULL;
20487
20488 }
20489 }
20490 case 'c':
20491 if (strncmp (KR_keyword, "/dev/sdcf6", 10) == 0)
20492 {
20493 {
20494 return dev_storage + 1672;
20495
20496 }
20497 }
20498 else
20499 {
20500 {
20501 return NULL;
20502
20503 }
20504 }
20505 case 'b':
20506 if (strncmp (KR_keyword, "/dev/sdbf6", 10) == 0)
20507 {
20508 {
20509 return dev_storage + 1256;
20510
20511 }
20512 }
20513 else
20514 {
20515 {
20516 return NULL;
20517
20518 }
20519 }
20520 case 'a':
20521 if (strncmp (KR_keyword, "/dev/sdaf6", 10) == 0)
20522 {
20523 {
20524 return dev_storage + 840;
20525
20526 }
20527 }
20528 else
20529 {
20530 {
20531 return NULL;
20532
20533 }
20534 }
20535 default:
20536 {
20537 return NULL;
20538
20539 }
20540 }
20541 case 'e':
20542 switch (KR_keyword [7])
20543 {
20544 case 'd':
20545 if (strncmp (KR_keyword, "/dev/sdde6", 10) == 0)
20546 {
20547 {
20548 return dev_storage + 2071;
20549
20550 }
20551 }
20552 else
20553 {
20554 {
20555 return NULL;
20556
20557 }
20558 }
20559 case 'c':
20560 if (strncmp (KR_keyword, "/dev/sdce6", 10) == 0)
20561 {
20562 {
20563 return dev_storage + 1657;
20564
20565 }
20566 }
20567 else
20568 {
20569 {
20570 return NULL;
20571
20572 }
20573 }
20574 case 'b':
20575 if (strncmp (KR_keyword, "/dev/sdbe6", 10) == 0)
20576 {
20577 {
20578 return dev_storage + 1241;
20579
20580 }
20581 }
20582 else
20583 {
20584 {
20585 return NULL;
20586
20587 }
20588 }
20589 case 'a':
20590 if (strncmp (KR_keyword, "/dev/sdae6", 10) == 0)
20591 {
20592 {
20593 return dev_storage + 825;
20594
20595 }
20596 }
20597 else
20598 {
20599 {
20600 return NULL;
20601
20602 }
20603 }
20604 default:
20605 {
20606 return NULL;
20607
20608 }
20609 }
20610 case 'd':
20611 switch (KR_keyword [7])
20612 {
20613 case 'd':
20614 if (strncmp (KR_keyword, "/dev/sddd6", 10) == 0)
20615 {
20616 {
20617 return dev_storage + 2056;
20618
20619 }
20620 }
20621 else
20622 {
20623 {
20624 return NULL;
20625
20626 }
20627 }
20628 case 'c':
20629 if (strncmp (KR_keyword, "/dev/sdcd6", 10) == 0)
20630 {
20631 {
20632 return dev_storage + 1642;
20633
20634 }
20635 }
20636 else
20637 {
20638 {
20639 return NULL;
20640
20641 }
20642 }
20643 case 'b':
20644 if (strncmp (KR_keyword, "/dev/sdbd6", 10) == 0)
20645 {
20646 {
20647 return dev_storage + 1226;
20648
20649 }
20650 }
20651 else
20652 {
20653 {
20654 return NULL;
20655
20656 }
20657 }
20658 case 'a':
20659 if (strncmp (KR_keyword, "/dev/sdad6", 10) == 0)
20660 {
20661 {
20662 return dev_storage + 810;
20663
20664 }
20665 }
20666 else
20667 {
20668 {
20669 return NULL;
20670
20671 }
20672 }
20673 default:
20674 {
20675 return NULL;
20676
20677 }
20678 }
20679 case 'c':
20680 switch (KR_keyword [7])
20681 {
20682 case 'd':
20683 if (strncmp (KR_keyword, "/dev/sddc6", 10) == 0)
20684 {
20685 {
20686 return dev_storage + 2041;
20687
20688 }
20689 }
20690 else
20691 {
20692 {
20693 return NULL;
20694
20695 }
20696 }
20697 case 'c':
20698 if (strncmp (KR_keyword, "/dev/sdcc6", 10) == 0)
20699 {
20700 {
20701 return dev_storage + 1627;
20702
20703 }
20704 }
20705 else
20706 {
20707 {
20708 return NULL;
20709
20710 }
20711 }
20712 case 'b':
20713 if (strncmp (KR_keyword, "/dev/sdbc6", 10) == 0)
20714 {
20715 {
20716 return dev_storage + 1211;
20717
20718 }
20719 }
20720 else
20721 {
20722 {
20723 return NULL;
20724
20725 }
20726 }
20727 case 'a':
20728 if (strncmp (KR_keyword, "/dev/sdac6", 10) == 0)
20729 {
20730 {
20731 return dev_storage + 795;
20732
20733 }
20734 }
20735 else
20736 {
20737 {
20738 return NULL;
20739
20740 }
20741 }
20742 default:
20743 {
20744 return NULL;
20745
20746 }
20747 }
20748 case 'b':
20749 switch (KR_keyword [7])
20750 {
20751 case 'd':
20752 if (strncmp (KR_keyword, "/dev/sddb6", 10) == 0)
20753 {
20754 {
20755 return dev_storage + 2026;
20756
20757 }
20758 }
20759 else
20760 {
20761 {
20762 return NULL;
20763
20764 }
20765 }
20766 case 'c':
20767 if (strncmp (KR_keyword, "/dev/sdcb6", 10) == 0)
20768 {
20769 {
20770 return dev_storage + 1612;
20771
20772 }
20773 }
20774 else
20775 {
20776 {
20777 return NULL;
20778
20779 }
20780 }
20781 case 'b':
20782 if (strncmp (KR_keyword, "/dev/sdbb6", 10) == 0)
20783 {
20784 {
20785 return dev_storage + 1196;
20786
20787 }
20788 }
20789 else
20790 {
20791 {
20792 return NULL;
20793
20794 }
20795 }
20796 case 'a':
20797 if (strncmp (KR_keyword, "/dev/sdab6", 10) == 0)
20798 {
20799 {
20800 return dev_storage + 780;
20801
20802 }
20803 }
20804 else
20805 {
20806 {
20807 return NULL;
20808
20809 }
20810 }
20811 default:
20812 {
20813 return NULL;
20814
20815 }
20816 }
20817 case 'a':
20818 switch (KR_keyword [7])
20819 {
20820 case 'd':
20821 if (strncmp (KR_keyword, "/dev/sdda6", 10) == 0)
20822 {
20823 {
20824 return dev_storage + 2011;
20825
20826 }
20827 }
20828 else
20829 {
20830 {
20831 return NULL;
20832
20833 }
20834 }
20835 case 'c':
20836 if (strncmp (KR_keyword, "/dev/sdca6", 10) == 0)
20837 {
20838 {
20839 return dev_storage + 1597;
20840
20841 }
20842 }
20843 else
20844 {
20845 {
20846 return NULL;
20847
20848 }
20849 }
20850 case 'b':
20851 if (strncmp (KR_keyword, "/dev/sdba6", 10) == 0)
20852 {
20853 {
20854 return dev_storage + 1181;
20855
20856 }
20857 }
20858 else
20859 {
20860 {
20861 return NULL;
20862
20863 }
20864 }
20865 case 'a':
20866 if (strncmp (KR_keyword, "/dev/sdaa6", 10) == 0)
20867 {
20868 {
20869 return dev_storage + 765;
20870
20871 }
20872 }
20873 else
20874 {
20875 {
20876 return NULL;
20877
20878 }
20879 }
20880 default:
20881 {
20882 return NULL;
20883
20884 }
20885 }
20886 case 'S':
20887 if (strncmp (KR_keyword, "/dev/ttyS6", 10) == 0)
20888 {
20889 {
20890 return dev_storage + 2517;
20891
20892 }
20893 }
20894 else
20895 {
20896 {
20897 return NULL;
20898
20899 }
20900 }
20901 case '9':
20902 if (strncmp (KR_keyword, "/dev/nst96", 10) == 0)
20903 {
20904 {
20905 return dev_storage + 202;
20906
20907 }
20908 }
20909 else
20910 {
20911 {
20912 return NULL;
20913
20914 }
20915 }
20916 case '8':
20917 if (strncmp (KR_keyword, "/dev/nst86", 10) == 0)
20918 {
20919 {
20920 return dev_storage + 192;
20921
20922 }
20923 }
20924 else
20925 {
20926 {
20927 return NULL;
20928
20929 }
20930 }
20931 case '7':
20932 if (strncmp (KR_keyword, "/dev/nst76", 10) == 0)
20933 {
20934 {
20935 return dev_storage + 182;
20936
20937 }
20938 }
20939 else
20940 {
20941 {
20942 return NULL;
20943
20944 }
20945 }
20946 case '6':
20947 if (strncmp (KR_keyword, "/dev/nst66", 10) == 0)
20948 {
20949 {
20950 return dev_storage + 172;
20951
20952 }
20953 }
20954 else
20955 {
20956 {
20957 return NULL;
20958
20959 }
20960 }
20961 case '5':
20962 switch (KR_keyword [5])
20963 {
20964 case 'p':
20965 if (strncmp (KR_keyword, "/dev/pty56", 10) == 0)
20966 {
20967 {
20968 return dev_storage + 293;
20969
20970 }
20971 }
20972 else
20973 {
20974 {
20975 return NULL;
20976
20977 }
20978 }
20979 case 'n':
20980 if (strncmp (KR_keyword, "/dev/nst56", 10) == 0)
20981 {
20982 {
20983 return dev_storage + 162;
20984
20985 }
20986 }
20987 else
20988 {
20989 {
20990 return NULL;
20991
20992 }
20993 }
20994 default:
20995 {
20996 return NULL;
20997
20998 }
20999 }
21000 case '4':
21001 switch (KR_keyword [5])
21002 {
21003 case 'p':
21004 if (strncmp (KR_keyword, "/dev/pty46", 10) == 0)
21005 {
21006 {
21007 return dev_storage + 283;
21008
21009 }
21010 }
21011 else
21012 {
21013 {
21014 return NULL;
21015
21016 }
21017 }
21018 case 'n':
21019 if (strncmp (KR_keyword, "/dev/nst46", 10) == 0)
21020 {
21021 {
21022 return dev_storage + 152;
21023
21024 }
21025 }
21026 else
21027 {
21028 {
21029 return NULL;
21030
21031 }
21032 }
21033 default:
21034 {
21035 return NULL;
21036
21037 }
21038 }
21039 case '3':
21040 switch (KR_keyword [5])
21041 {
21042 case 'p':
21043 if (strncmp (KR_keyword, "/dev/pty36", 10) == 0)
21044 {
21045 {
21046 return dev_storage + 273;
21047
21048 }
21049 }
21050 else
21051 {
21052 {
21053 return NULL;
21054
21055 }
21056 }
21057 case 'n':
21058 if (strncmp (KR_keyword, "/dev/nst36", 10) == 0)
21059 {
21060 {
21061 return dev_storage + 142;
21062
21063 }
21064 }
21065 else
21066 {
21067 {
21068 return NULL;
21069
21070 }
21071 }
21072 default:
21073 {
21074 return NULL;
21075
21076 }
21077 }
21078 case '2':
21079 switch (KR_keyword [5])
21080 {
21081 case 's':
21082 if (strncmp (KR_keyword, "/dev/st126", 10) == 0)
21083 {
21084 {
21085 return dev_storage + 2508;
21086
21087 }
21088 }
21089 else
21090 {
21091 {
21092 return NULL;
21093
21094 }
21095 }
21096 case 'p':
21097 if (strncmp (KR_keyword, "/dev/pty26", 10) == 0)
21098 {
21099 {
21100 return dev_storage + 263;
21101
21102 }
21103 }
21104 else
21105 {
21106 {
21107 return NULL;
21108
21109 }
21110 }
21111 case 'n':
21112 if (strncmp (KR_keyword, "/dev/nst26", 10) == 0)
21113 {
21114 {
21115 return dev_storage + 132;
21116
21117 }
21118 }
21119 else
21120 {
21121 {
21122 return NULL;
21123
21124 }
21125 }
21126 default:
21127 {
21128 return NULL;
21129
21130 }
21131 }
21132 case '1':
21133 switch (KR_keyword [5])
21134 {
21135 case 's':
21136 if (strncmp (KR_keyword, "/dev/st116", 10) == 0)
21137 {
21138 {
21139 return dev_storage + 2498;
21140
21141 }
21142 }
21143 else
21144 {
21145 {
21146 return NULL;
21147
21148 }
21149 }
21150 case 'p':
21151 if (strncmp (KR_keyword, "/dev/pty16", 10) == 0)
21152 {
21153 {
21154 return dev_storage + 253;
21155
21156 }
21157 }
21158 else
21159 {
21160 {
21161 return NULL;
21162
21163 }
21164 }
21165 case 'n':
21166 if (strncmp (KR_keyword, "/dev/nst16", 10) == 0)
21167 {
21168 {
21169 return dev_storage + 122;
21170
21171 }
21172 }
21173 else
21174 {
21175 {
21176 return NULL;
21177
21178 }
21179 }
21180 case 'c':
21181 if (strncmp (KR_keyword, "/dev/com16", 10) == 0)
21182 {
21183 {
21184 return dev_storage + 17;
21185
21186 }
21187 }
21188 else
21189 {
21190 {
21191 return NULL;
21192
21193 }
21194 }
21195 default:
21196 {
21197 return NULL;
21198
21199 }
21200 }
21201 case '0':
21202 if (strncmp (KR_keyword, "/dev/st106", 10) == 0)
21203 {
21204 {
21205 return dev_storage + 2488;
21206
21207 }
21208 }
21209 else
21210 {
21211 {
21212 return NULL;
21213
21214 }
21215 }
21216 default:
21217 {
21218 return NULL;
21219
21220 }
21221 }
21222 case '5':
21223 switch (KR_keyword [7])
21224 {
21225 case 'z':
21226 if (strncmp (KR_keyword, "/dev/sdz15", 10) == 0)
21227 {
21228 {
21229 return dev_storage + 733;
21230
21231 }
21232 }
21233 else
21234 {
21235 {
21236 return NULL;
21237
21238 }
21239 }
21240 case 'y':
21241 switch (KR_keyword [8])
21242 {
21243 case 'S':
21244 if (strncmp (KR_keyword, "/dev/ttyS5", 10) == 0)
21245 {
21246 {
21247 return dev_storage + 2516;
21248
21249 }
21250 }
21251 else
21252 {
21253 {
21254 return NULL;
21255
21256 }
21257 }
21258 case '5':
21259 if (strncmp (KR_keyword, "/dev/pty55", 10) == 0)
21260 {
21261 {
21262 return dev_storage + 292;
21263
21264 }
21265 }
21266 else
21267 {
21268 {
21269 return NULL;
21270
21271 }
21272 }
21273 case '4':
21274 if (strncmp (KR_keyword, "/dev/pty45", 10) == 0)
21275 {
21276 {
21277 return dev_storage + 282;
21278
21279 }
21280 }
21281 else
21282 {
21283 {
21284 return NULL;
21285
21286 }
21287 }
21288 case '3':
21289 if (strncmp (KR_keyword, "/dev/pty35", 10) == 0)
21290 {
21291 {
21292 return dev_storage + 272;
21293
21294 }
21295 }
21296 else
21297 {
21298 {
21299 return NULL;
21300
21301 }
21302 }
21303 case '2':
21304 if (strncmp (KR_keyword, "/dev/pty25", 10) == 0)
21305 {
21306 {
21307 return dev_storage + 262;
21308
21309 }
21310 }
21311 else
21312 {
21313 {
21314 return NULL;
21315
21316 }
21317 }
21318 case '1':
21319 switch (KR_keyword [5])
21320 {
21321 case 's':
21322 if (strncmp (KR_keyword, "/dev/sdy15", 10) == 0)
21323 {
21324 {
21325 return dev_storage + 718;
21326
21327 }
21328 }
21329 else
21330 {
21331 {
21332 return NULL;
21333
21334 }
21335 }
21336 case 'p':
21337 if (strncmp (KR_keyword, "/dev/pty15", 10) == 0)
21338 {
21339 {
21340 return dev_storage + 252;
21341
21342 }
21343 }
21344 else
21345 {
21346 {
21347 return NULL;
21348
21349 }
21350 }
21351 default:
21352 {
21353 return NULL;
21354
21355 }
21356 }
21357 default:
21358 {
21359 return NULL;
21360
21361 }
21362 }
21363 case 'x':
21364 if (strncmp (KR_keyword, "/dev/sdx15", 10) == 0)
21365 {
21366 {
21367 return dev_storage + 703;
21368
21369 }
21370 }
21371 else
21372 {
21373 {
21374 return NULL;
21375
21376 }
21377 }
21378 case 'w':
21379 if (strncmp (KR_keyword, "/dev/sdw15", 10) == 0)
21380 {
21381 {
21382 return dev_storage + 688;
21383
21384 }
21385 }
21386 else
21387 {
21388 {
21389 return NULL;
21390
21391 }
21392 }
21393 case 'v':
21394 if (strncmp (KR_keyword, "/dev/sdv15", 10) == 0)
21395 {
21396 {
21397 return dev_storage + 673;
21398
21399 }
21400 }
21401 else
21402 {
21403 {
21404 return NULL;
21405
21406 }
21407 }
21408 case 'u':
21409 if (strncmp (KR_keyword, "/dev/sdu15", 10) == 0)
21410 {
21411 {
21412 return dev_storage + 658;
21413
21414 }
21415 }
21416 else
21417 {
21418 {
21419 return NULL;
21420
21421 }
21422 }
21423 case 't':
21424 switch (KR_keyword [8])
21425 {
21426 case '9':
21427 if (strncmp (KR_keyword, "/dev/nst95", 10) == 0)
21428 {
21429 {
21430 return dev_storage + 201;
21431
21432 }
21433 }
21434 else
21435 {
21436 {
21437 return NULL;
21438
21439 }
21440 }
21441 case '8':
21442 if (strncmp (KR_keyword, "/dev/nst85", 10) == 0)
21443 {
21444 {
21445 return dev_storage + 191;
21446
21447 }
21448 }
21449 else
21450 {
21451 {
21452 return NULL;
21453
21454 }
21455 }
21456 case '7':
21457 if (strncmp (KR_keyword, "/dev/nst75", 10) == 0)
21458 {
21459 {
21460 return dev_storage + 181;
21461
21462 }
21463 }
21464 else
21465 {
21466 {
21467 return NULL;
21468
21469 }
21470 }
21471 case '6':
21472 if (strncmp (KR_keyword, "/dev/nst65", 10) == 0)
21473 {
21474 {
21475 return dev_storage + 171;
21476
21477 }
21478 }
21479 else
21480 {
21481 {
21482 return NULL;
21483
21484 }
21485 }
21486 case '5':
21487 if (strncmp (KR_keyword, "/dev/nst55", 10) == 0)
21488 {
21489 {
21490 return dev_storage + 161;
21491
21492 }
21493 }
21494 else
21495 {
21496 {
21497 return NULL;
21498
21499 }
21500 }
21501 case '4':
21502 if (strncmp (KR_keyword, "/dev/nst45", 10) == 0)
21503 {
21504 {
21505 return dev_storage + 151;
21506
21507 }
21508 }
21509 else
21510 {
21511 {
21512 return NULL;
21513
21514 }
21515 }
21516 case '3':
21517 if (strncmp (KR_keyword, "/dev/nst35", 10) == 0)
21518 {
21519 {
21520 return dev_storage + 141;
21521
21522 }
21523 }
21524 else
21525 {
21526 {
21527 return NULL;
21528
21529 }
21530 }
21531 case '2':
21532 if (strncmp (KR_keyword, "/dev/nst25", 10) == 0)
21533 {
21534 {
21535 return dev_storage + 131;
21536
21537 }
21538 }
21539 else
21540 {
21541 {
21542 return NULL;
21543
21544 }
21545 }
21546 case '1':
21547 switch (KR_keyword [5])
21548 {
21549 case 's':
21550 if (strncmp (KR_keyword, "/dev/sdt15", 10) == 0)
21551 {
21552 {
21553 return dev_storage + 643;
21554
21555 }
21556 }
21557 else
21558 {
21559 {
21560 return NULL;
21561
21562 }
21563 }
21564 case 'n':
21565 if (strncmp (KR_keyword, "/dev/nst15", 10) == 0)
21566 {
21567 {
21568 return dev_storage + 121;
21569
21570 }
21571 }
21572 else
21573 {
21574 {
21575 return NULL;
21576
21577 }
21578 }
21579 default:
21580 {
21581 return NULL;
21582
21583 }
21584 }
21585 default:
21586 {
21587 return NULL;
21588
21589 }
21590 }
21591 case 's':
21592 if (strncmp (KR_keyword, "/dev/sds15", 10) == 0)
21593 {
21594 {
21595 return dev_storage + 628;
21596
21597 }
21598 }
21599 else
21600 {
21601 {
21602 return NULL;
21603
21604 }
21605 }
21606 case 'r':
21607 if (strncmp (KR_keyword, "/dev/sdr15", 10) == 0)
21608 {
21609 {
21610 return dev_storage + 613;
21611
21612 }
21613 }
21614 else
21615 {
21616 {
21617 return NULL;
21618
21619 }
21620 }
21621 case 'q':
21622 if (strncmp (KR_keyword, "/dev/sdq15", 10) == 0)
21623 {
21624 {
21625 return dev_storage + 598;
21626
21627 }
21628 }
21629 else
21630 {
21631 {
21632 return NULL;
21633
21634 }
21635 }
21636 case 'p':
21637 if (strncmp (KR_keyword, "/dev/sdp15", 10) == 0)
21638 {
21639 {
21640 return dev_storage + 583;
21641
21642 }
21643 }
21644 else
21645 {
21646 {
21647 return NULL;
21648
21649 }
21650 }
21651 case 'o':
21652 if (strncmp (KR_keyword, "/dev/sdo15", 10) == 0)
21653 {
21654 {
21655 return dev_storage + 568;
21656
21657 }
21658 }
21659 else
21660 {
21661 {
21662 return NULL;
21663
21664 }
21665 }
21666 case 'n':
21667 switch (KR_keyword [5])
21668 {
21669 case 's':
21670 if (strncmp (KR_keyword, "/dev/sdn15", 10) == 0)
21671 {
21672 {
21673 return dev_storage + 553;
21674
21675 }
21676 }
21677 else
21678 {
21679 {
21680 return NULL;
21681
21682 }
21683 }
21684 case 'c':
21685 if (strncmp (KR_keyword, "/dev/cons5", 10) == 0)
21686 {
21687 {
21688 return dev_storage + 25;
21689
21690 }
21691 }
21692 else
21693 {
21694 {
21695 return NULL;
21696
21697 }
21698 }
21699 default:
21700 {
21701 return NULL;
21702
21703 }
21704 }
21705 case 'm':
21706 switch (KR_keyword [5])
21707 {
21708 case 's':
21709 if (strncmp (KR_keyword, "/dev/sdm15", 10) == 0)
21710 {
21711 {
21712 return dev_storage + 538;
21713
21714 }
21715 }
21716 else
21717 {
21718 {
21719 return NULL;
21720
21721 }
21722 }
21723 case 'c':
21724 if (strncmp (KR_keyword, "/dev/com15", 10) == 0)
21725 {
21726 {
21727 return dev_storage + 16;
21728
21729 }
21730 }
21731 else
21732 {
21733 {
21734 return NULL;
21735
21736 }
21737 }
21738 default:
21739 {
21740 return NULL;
21741
21742 }
21743 }
21744 case 'l':
21745 if (strncmp (KR_keyword, "/dev/sdl15", 10) == 0)
21746 {
21747 {
21748 return dev_storage + 523;
21749
21750 }
21751 }
21752 else
21753 {
21754 {
21755 return NULL;
21756
21757 }
21758 }
21759 case 'k':
21760 if (strncmp (KR_keyword, "/dev/sdk15", 10) == 0)
21761 {
21762 {
21763 return dev_storage + 508;
21764
21765 }
21766 }
21767 else
21768 {
21769 {
21770 return NULL;
21771
21772 }
21773 }
21774 case 'j':
21775 if (strncmp (KR_keyword, "/dev/sdj15", 10) == 0)
21776 {
21777 {
21778 return dev_storage + 493;
21779
21780 }
21781 }
21782 else
21783 {
21784 {
21785 return NULL;
21786
21787 }
21788 }
21789 case 'i':
21790 if (strncmp (KR_keyword, "/dev/sdi15", 10) == 0)
21791 {
21792 {
21793 return dev_storage + 478;
21794
21795 }
21796 }
21797 else
21798 {
21799 {
21800 return NULL;
21801
21802 }
21803 }
21804 case 'h':
21805 if (strncmp (KR_keyword, "/dev/sdh15", 10) == 0)
21806 {
21807 {
21808 return dev_storage + 463;
21809
21810 }
21811 }
21812 else
21813 {
21814 {
21815 return NULL;
21816
21817 }
21818 }
21819 case 'g':
21820 if (strncmp (KR_keyword, "/dev/sdg15", 10) == 0)
21821 {
21822 {
21823 return dev_storage + 448;
21824
21825 }
21826 }
21827 else
21828 {
21829 {
21830 return NULL;
21831
21832 }
21833 }
21834 case 'f':
21835 if (strncmp (KR_keyword, "/dev/sdf15", 10) == 0)
21836 {
21837 {
21838 return dev_storage + 433;
21839
21840 }
21841 }
21842 else
21843 {
21844 {
21845 return NULL;
21846
21847 }
21848 }
21849 case 'e':
21850 if (strncmp (KR_keyword, "/dev/sde15", 10) == 0)
21851 {
21852 {
21853 return dev_storage + 418;
21854
21855 }
21856 }
21857 else
21858 {
21859 {
21860 return NULL;
21861
21862 }
21863 }
21864 case 'd':
21865 switch (KR_keyword [8])
21866 {
21867 case 'x':
21868 if (strncmp (KR_keyword, "/dev/sddx5", 10) == 0)
21869 {
21870 {
21871 return dev_storage + 2355;
21872
21873 }
21874 }
21875 else
21876 {
21877 {
21878 return NULL;
21879
21880 }
21881 }
21882 case 'w':
21883 if (strncmp (KR_keyword, "/dev/sddw5", 10) == 0)
21884 {
21885 {
21886 return dev_storage + 2340;
21887
21888 }
21889 }
21890 else
21891 {
21892 {
21893 return NULL;
21894
21895 }
21896 }
21897 case 'v':
21898 if (strncmp (KR_keyword, "/dev/sddv5", 10) == 0)
21899 {
21900 {
21901 return dev_storage + 2325;
21902
21903 }
21904 }
21905 else
21906 {
21907 {
21908 return NULL;
21909
21910 }
21911 }
21912 case 'u':
21913 if (strncmp (KR_keyword, "/dev/sddu5", 10) == 0)
21914 {
21915 {
21916 return dev_storage + 2310;
21917
21918 }
21919 }
21920 else
21921 {
21922 {
21923 return NULL;
21924
21925 }
21926 }
21927 case 't':
21928 if (strncmp (KR_keyword, "/dev/sddt5", 10) == 0)
21929 {
21930 {
21931 return dev_storage + 2295;
21932
21933 }
21934 }
21935 else
21936 {
21937 {
21938 return NULL;
21939
21940 }
21941 }
21942 case 's':
21943 if (strncmp (KR_keyword, "/dev/sdds5", 10) == 0)
21944 {
21945 {
21946 return dev_storage + 2280;
21947
21948 }
21949 }
21950 else
21951 {
21952 {
21953 return NULL;
21954
21955 }
21956 }
21957 case 'r':
21958 if (strncmp (KR_keyword, "/dev/sddr5", 10) == 0)
21959 {
21960 {
21961 return dev_storage + 2265;
21962
21963 }
21964 }
21965 else
21966 {
21967 {
21968 return NULL;
21969
21970 }
21971 }
21972 case 'q':
21973 if (strncmp (KR_keyword, "/dev/sddq5", 10) == 0)
21974 {
21975 {
21976 return dev_storage + 2250;
21977
21978 }
21979 }
21980 else
21981 {
21982 {
21983 return NULL;
21984
21985 }
21986 }
21987 case 'p':
21988 if (strncmp (KR_keyword, "/dev/sddp5", 10) == 0)
21989 {
21990 {
21991 return dev_storage + 2235;
21992
21993 }
21994 }
21995 else
21996 {
21997 {
21998 return NULL;
21999
22000 }
22001 }
22002 case 'o':
22003 if (strncmp (KR_keyword, "/dev/sddo5", 10) == 0)
22004 {
22005 {
22006 return dev_storage + 2220;
22007
22008 }
22009 }
22010 else
22011 {
22012 {
22013 return NULL;
22014
22015 }
22016 }
22017 case 'n':
22018 if (strncmp (KR_keyword, "/dev/sddn5", 10) == 0)
22019 {
22020 {
22021 return dev_storage + 2205;
22022
22023 }
22024 }
22025 else
22026 {
22027 {
22028 return NULL;
22029
22030 }
22031 }
22032 case 'm':
22033 if (strncmp (KR_keyword, "/dev/sddm5", 10) == 0)
22034 {
22035 {
22036 return dev_storage + 2190;
22037
22038 }
22039 }
22040 else
22041 {
22042 {
22043 return NULL;
22044
22045 }
22046 }
22047 case 'l':
22048 if (strncmp (KR_keyword, "/dev/sddl5", 10) == 0)
22049 {
22050 {
22051 return dev_storage + 2175;
22052
22053 }
22054 }
22055 else
22056 {
22057 {
22058 return NULL;
22059
22060 }
22061 }
22062 case 'k':
22063 if (strncmp (KR_keyword, "/dev/sddk5", 10) == 0)
22064 {
22065 {
22066 return dev_storage + 2160;
22067
22068 }
22069 }
22070 else
22071 {
22072 {
22073 return NULL;
22074
22075 }
22076 }
22077 case 'j':
22078 if (strncmp (KR_keyword, "/dev/sddj5", 10) == 0)
22079 {
22080 {
22081 return dev_storage + 2145;
22082
22083 }
22084 }
22085 else
22086 {
22087 {
22088 return NULL;
22089
22090 }
22091 }
22092 case 'i':
22093 if (strncmp (KR_keyword, "/dev/sddi5", 10) == 0)
22094 {
22095 {
22096 return dev_storage + 2130;
22097
22098 }
22099 }
22100 else
22101 {
22102 {
22103 return NULL;
22104
22105 }
22106 }
22107 case 'h':
22108 if (strncmp (KR_keyword, "/dev/sddh5", 10) == 0)
22109 {
22110 {
22111 return dev_storage + 2115;
22112
22113 }
22114 }
22115 else
22116 {
22117 {
22118 return NULL;
22119
22120 }
22121 }
22122 case 'g':
22123 if (strncmp (KR_keyword, "/dev/sddg5", 10) == 0)
22124 {
22125 {
22126 return dev_storage + 2100;
22127
22128 }
22129 }
22130 else
22131 {
22132 {
22133 return NULL;
22134
22135 }
22136 }
22137 case 'f':
22138 if (strncmp (KR_keyword, "/dev/sddf5", 10) == 0)
22139 {
22140 {
22141 return dev_storage + 2085;
22142
22143 }
22144 }
22145 else
22146 {
22147 {
22148 return NULL;
22149
22150 }
22151 }
22152 case 'e':
22153 if (strncmp (KR_keyword, "/dev/sdde5", 10) == 0)
22154 {
22155 {
22156 return dev_storage + 2070;
22157
22158 }
22159 }
22160 else
22161 {
22162 {
22163 return NULL;
22164
22165 }
22166 }
22167 case 'd':
22168 if (strncmp (KR_keyword, "/dev/sddd5", 10) == 0)
22169 {
22170 {
22171 return dev_storage + 2055;
22172
22173 }
22174 }
22175 else
22176 {
22177 {
22178 return NULL;
22179
22180 }
22181 }
22182 case 'c':
22183 if (strncmp (KR_keyword, "/dev/sddc5", 10) == 0)
22184 {
22185 {
22186 return dev_storage + 2040;
22187
22188 }
22189 }
22190 else
22191 {
22192 {
22193 return NULL;
22194
22195 }
22196 }
22197 case 'b':
22198 if (strncmp (KR_keyword, "/dev/sddb5", 10) == 0)
22199 {
22200 {
22201 return dev_storage + 2025;
22202
22203 }
22204 }
22205 else
22206 {
22207 {
22208 return NULL;
22209
22210 }
22211 }
22212 case 'a':
22213 if (strncmp (KR_keyword, "/dev/sdda5", 10) == 0)
22214 {
22215 {
22216 return dev_storage + 2010;
22217
22218 }
22219 }
22220 else
22221 {
22222 {
22223 return NULL;
22224
22225 }
22226 }
22227 case '1':
22228 switch (KR_keyword [6])
22229 {
22230 case 'd':
22231 if (strncmp (KR_keyword, "/dev/sdd15", 10) == 0)
22232 {
22233 {
22234 return dev_storage + 403;
22235
22236 }
22237 }
22238 else
22239 {
22240 {
22241 return NULL;
22242
22243 }
22244 }
22245 case 'c':
22246 if (strncmp (KR_keyword, "/dev/scd15", 10) == 0)
22247 {
22248 {
22249 return dev_storage + 317;
22250
22251 }
22252 }
22253 else
22254 {
22255 {
22256 return NULL;
22257
22258 }
22259 }
22260 default:
22261 {
22262 return NULL;
22263
22264 }
22265 }
22266 default:
22267 {
22268 return NULL;
22269
22270 }
22271 }
22272 case 'c':
22273 switch (KR_keyword [8])
22274 {
22275 case 'z':
22276 if (strncmp (KR_keyword, "/dev/sdcz5", 10) == 0)
22277 {
22278 {
22279 return dev_storage + 1971;
22280
22281 }
22282 }
22283 else
22284 {
22285 {
22286 return NULL;
22287
22288 }
22289 }
22290 case 'y':
22291 if (strncmp (KR_keyword, "/dev/sdcy5", 10) == 0)
22292 {
22293 {
22294 return dev_storage + 1956;
22295
22296 }
22297 }
22298 else
22299 {
22300 {
22301 return NULL;
22302
22303 }
22304 }
22305 case 'x':
22306 if (strncmp (KR_keyword, "/dev/sdcx5", 10) == 0)
22307 {
22308 {
22309 return dev_storage + 1941;
22310
22311 }
22312 }
22313 else
22314 {
22315 {
22316 return NULL;
22317
22318 }
22319 }
22320 case 'w':
22321 if (strncmp (KR_keyword, "/dev/sdcw5", 10) == 0)
22322 {
22323 {
22324 return dev_storage + 1926;
22325
22326 }
22327 }
22328 else
22329 {
22330 {
22331 return NULL;
22332
22333 }
22334 }
22335 case 'v':
22336 if (strncmp (KR_keyword, "/dev/sdcv5", 10) == 0)
22337 {
22338 {
22339 return dev_storage + 1911;
22340
22341 }
22342 }
22343 else
22344 {
22345 {
22346 return NULL;
22347
22348 }
22349 }
22350 case 'u':
22351 if (strncmp (KR_keyword, "/dev/sdcu5", 10) == 0)
22352 {
22353 {
22354 return dev_storage + 1896;
22355
22356 }
22357 }
22358 else
22359 {
22360 {
22361 return NULL;
22362
22363 }
22364 }
22365 case 't':
22366 if (strncmp (KR_keyword, "/dev/sdct5", 10) == 0)
22367 {
22368 {
22369 return dev_storage + 1881;
22370
22371 }
22372 }
22373 else
22374 {
22375 {
22376 return NULL;
22377
22378 }
22379 }
22380 case 's':
22381 if (strncmp (KR_keyword, "/dev/sdcs5", 10) == 0)
22382 {
22383 {
22384 return dev_storage + 1866;
22385
22386 }
22387 }
22388 else
22389 {
22390 {
22391 return NULL;
22392
22393 }
22394 }
22395 case 'r':
22396 if (strncmp (KR_keyword, "/dev/sdcr5", 10) == 0)
22397 {
22398 {
22399 return dev_storage + 1851;
22400
22401 }
22402 }
22403 else
22404 {
22405 {
22406 return NULL;
22407
22408 }
22409 }
22410 case 'q':
22411 if (strncmp (KR_keyword, "/dev/sdcq5", 10) == 0)
22412 {
22413 {
22414 return dev_storage + 1836;
22415
22416 }
22417 }
22418 else
22419 {
22420 {
22421 return NULL;
22422
22423 }
22424 }
22425 case 'p':
22426 if (strncmp (KR_keyword, "/dev/sdcp5", 10) == 0)
22427 {
22428 {
22429 return dev_storage + 1821;
22430
22431 }
22432 }
22433 else
22434 {
22435 {
22436 return NULL;
22437
22438 }
22439 }
22440 case 'o':
22441 if (strncmp (KR_keyword, "/dev/sdco5", 10) == 0)
22442 {
22443 {
22444 return dev_storage + 1806;
22445
22446 }
22447 }
22448 else
22449 {
22450 {
22451 return NULL;
22452
22453 }
22454 }
22455 case 'n':
22456 if (strncmp (KR_keyword, "/dev/sdcn5", 10) == 0)
22457 {
22458 {
22459 return dev_storage + 1791;
22460
22461 }
22462 }
22463 else
22464 {
22465 {
22466 return NULL;
22467
22468 }
22469 }
22470 case 'm':
22471 if (strncmp (KR_keyword, "/dev/sdcm5", 10) == 0)
22472 {
22473 {
22474 return dev_storage + 1776;
22475
22476 }
22477 }
22478 else
22479 {
22480 {
22481 return NULL;
22482
22483 }
22484 }
22485 case 'l':
22486 if (strncmp (KR_keyword, "/dev/sdcl5", 10) == 0)
22487 {
22488 {
22489 return dev_storage + 1761;
22490
22491 }
22492 }
22493 else
22494 {
22495 {
22496 return NULL;
22497
22498 }
22499 }
22500 case 'k':
22501 if (strncmp (KR_keyword, "/dev/sdck5", 10) == 0)
22502 {
22503 {
22504 return dev_storage + 1746;
22505
22506 }
22507 }
22508 else
22509 {
22510 {
22511 return NULL;
22512
22513 }
22514 }
22515 case 'j':
22516 if (strncmp (KR_keyword, "/dev/sdcj5", 10) == 0)
22517 {
22518 {
22519 return dev_storage + 1731;
22520
22521 }
22522 }
22523 else
22524 {
22525 {
22526 return NULL;
22527
22528 }
22529 }
22530 case 'i':
22531 if (strncmp (KR_keyword, "/dev/sdci5", 10) == 0)
22532 {
22533 {
22534 return dev_storage + 1716;
22535
22536 }
22537 }
22538 else
22539 {
22540 {
22541 return NULL;
22542
22543 }
22544 }
22545 case 'h':
22546 if (strncmp (KR_keyword, "/dev/sdch5", 10) == 0)
22547 {
22548 {
22549 return dev_storage + 1701;
22550
22551 }
22552 }
22553 else
22554 {
22555 {
22556 return NULL;
22557
22558 }
22559 }
22560 case 'g':
22561 if (strncmp (KR_keyword, "/dev/sdcg5", 10) == 0)
22562 {
22563 {
22564 return dev_storage + 1686;
22565
22566 }
22567 }
22568 else
22569 {
22570 {
22571 return NULL;
22572
22573 }
22574 }
22575 case 'f':
22576 if (strncmp (KR_keyword, "/dev/sdcf5", 10) == 0)
22577 {
22578 {
22579 return dev_storage + 1671;
22580
22581 }
22582 }
22583 else
22584 {
22585 {
22586 return NULL;
22587
22588 }
22589 }
22590 case 'e':
22591 if (strncmp (KR_keyword, "/dev/sdce5", 10) == 0)
22592 {
22593 {
22594 return dev_storage + 1656;
22595
22596 }
22597 }
22598 else
22599 {
22600 {
22601 return NULL;
22602
22603 }
22604 }
22605 case 'd':
22606 if (strncmp (KR_keyword, "/dev/sdcd5", 10) == 0)
22607 {
22608 {
22609 return dev_storage + 1641;
22610
22611 }
22612 }
22613 else
22614 {
22615 {
22616 return NULL;
22617
22618 }
22619 }
22620 case 'c':
22621 if (strncmp (KR_keyword, "/dev/sdcc5", 10) == 0)
22622 {
22623 {
22624 return dev_storage + 1626;
22625
22626 }
22627 }
22628 else
22629 {
22630 {
22631 return NULL;
22632
22633 }
22634 }
22635 case 'b':
22636 if (strncmp (KR_keyword, "/dev/sdcb5", 10) == 0)
22637 {
22638 {
22639 return dev_storage + 1611;
22640
22641 }
22642 }
22643 else
22644 {
22645 {
22646 return NULL;
22647
22648 }
22649 }
22650 case 'a':
22651 if (strncmp (KR_keyword, "/dev/sdca5", 10) == 0)
22652 {
22653 {
22654 return dev_storage + 1596;
22655
22656 }
22657 }
22658 else
22659 {
22660 {
22661 return NULL;
22662
22663 }
22664 }
22665 case '1':
22666 if (strncmp (KR_keyword, "/dev/sdc15", 10) == 0)
22667 {
22668 {
22669 return dev_storage + 388;
22670
22671 }
22672 }
22673 else
22674 {
22675 {
22676 return NULL;
22677
22678 }
22679 }
22680 default:
22681 {
22682 return NULL;
22683
22684 }
22685 }
22686 case 'b':
22687 switch (KR_keyword [8])
22688 {
22689 case 'z':
22690 if (strncmp (KR_keyword, "/dev/sdbz5", 10) == 0)
22691 {
22692 {
22693 return dev_storage + 1555;
22694
22695 }
22696 }
22697 else
22698 {
22699 {
22700 return NULL;
22701
22702 }
22703 }
22704 case 'y':
22705 if (strncmp (KR_keyword, "/dev/sdby5", 10) == 0)
22706 {
22707 {
22708 return dev_storage + 1540;
22709
22710 }
22711 }
22712 else
22713 {
22714 {
22715 return NULL;
22716
22717 }
22718 }
22719 case 'x':
22720 if (strncmp (KR_keyword, "/dev/sdbx5", 10) == 0)
22721 {
22722 {
22723 return dev_storage + 1525;
22724
22725 }
22726 }
22727 else
22728 {
22729 {
22730 return NULL;
22731
22732 }
22733 }
22734 case 'w':
22735 if (strncmp (KR_keyword, "/dev/sdbw5", 10) == 0)
22736 {
22737 {
22738 return dev_storage + 1510;
22739
22740 }
22741 }
22742 else
22743 {
22744 {
22745 return NULL;
22746
22747 }
22748 }
22749 case 'v':
22750 if (strncmp (KR_keyword, "/dev/sdbv5", 10) == 0)
22751 {
22752 {
22753 return dev_storage + 1495;
22754
22755 }
22756 }
22757 else
22758 {
22759 {
22760 return NULL;
22761
22762 }
22763 }
22764 case 'u':
22765 if (strncmp (KR_keyword, "/dev/sdbu5", 10) == 0)
22766 {
22767 {
22768 return dev_storage + 1480;
22769
22770 }
22771 }
22772 else
22773 {
22774 {
22775 return NULL;
22776
22777 }
22778 }
22779 case 't':
22780 if (strncmp (KR_keyword, "/dev/sdbt5", 10) == 0)
22781 {
22782 {
22783 return dev_storage + 1465;
22784
22785 }
22786 }
22787 else
22788 {
22789 {
22790 return NULL;
22791
22792 }
22793 }
22794 case 's':
22795 if (strncmp (KR_keyword, "/dev/sdbs5", 10) == 0)
22796 {
22797 {
22798 return dev_storage + 1450;
22799
22800 }
22801 }
22802 else
22803 {
22804 {
22805 return NULL;
22806
22807 }
22808 }
22809 case 'r':
22810 if (strncmp (KR_keyword, "/dev/sdbr5", 10) == 0)
22811 {
22812 {
22813 return dev_storage + 1435;
22814
22815 }
22816 }
22817 else
22818 {
22819 {
22820 return NULL;
22821
22822 }
22823 }
22824 case 'q':
22825 if (strncmp (KR_keyword, "/dev/sdbq5", 10) == 0)
22826 {
22827 {
22828 return dev_storage + 1420;
22829
22830 }
22831 }
22832 else
22833 {
22834 {
22835 return NULL;
22836
22837 }
22838 }
22839 case 'p':
22840 if (strncmp (KR_keyword, "/dev/sdbp5", 10) == 0)
22841 {
22842 {
22843 return dev_storage + 1405;
22844
22845 }
22846 }
22847 else
22848 {
22849 {
22850 return NULL;
22851
22852 }
22853 }
22854 case 'o':
22855 if (strncmp (KR_keyword, "/dev/sdbo5", 10) == 0)
22856 {
22857 {
22858 return dev_storage + 1390;
22859
22860 }
22861 }
22862 else
22863 {
22864 {
22865 return NULL;
22866
22867 }
22868 }
22869 case 'n':
22870 if (strncmp (KR_keyword, "/dev/sdbn5", 10) == 0)
22871 {
22872 {
22873 return dev_storage + 1375;
22874
22875 }
22876 }
22877 else
22878 {
22879 {
22880 return NULL;
22881
22882 }
22883 }
22884 case 'm':
22885 if (strncmp (KR_keyword, "/dev/sdbm5", 10) == 0)
22886 {
22887 {
22888 return dev_storage + 1360;
22889
22890 }
22891 }
22892 else
22893 {
22894 {
22895 return NULL;
22896
22897 }
22898 }
22899 case 'l':
22900 if (strncmp (KR_keyword, "/dev/sdbl5", 10) == 0)
22901 {
22902 {
22903 return dev_storage + 1345;
22904
22905 }
22906 }
22907 else
22908 {
22909 {
22910 return NULL;
22911
22912 }
22913 }
22914 case 'k':
22915 if (strncmp (KR_keyword, "/dev/sdbk5", 10) == 0)
22916 {
22917 {
22918 return dev_storage + 1330;
22919
22920 }
22921 }
22922 else
22923 {
22924 {
22925 return NULL;
22926
22927 }
22928 }
22929 case 'j':
22930 if (strncmp (KR_keyword, "/dev/sdbj5", 10) == 0)
22931 {
22932 {
22933 return dev_storage + 1315;
22934
22935 }
22936 }
22937 else
22938 {
22939 {
22940 return NULL;
22941
22942 }
22943 }
22944 case 'i':
22945 if (strncmp (KR_keyword, "/dev/sdbi5", 10) == 0)
22946 {
22947 {
22948 return dev_storage + 1300;
22949
22950 }
22951 }
22952 else
22953 {
22954 {
22955 return NULL;
22956
22957 }
22958 }
22959 case 'h':
22960 if (strncmp (KR_keyword, "/dev/sdbh5", 10) == 0)
22961 {
22962 {
22963 return dev_storage + 1285;
22964
22965 }
22966 }
22967 else
22968 {
22969 {
22970 return NULL;
22971
22972 }
22973 }
22974 case 'g':
22975 if (strncmp (KR_keyword, "/dev/sdbg5", 10) == 0)
22976 {
22977 {
22978 return dev_storage + 1270;
22979
22980 }
22981 }
22982 else
22983 {
22984 {
22985 return NULL;
22986
22987 }
22988 }
22989 case 'f':
22990 if (strncmp (KR_keyword, "/dev/sdbf5", 10) == 0)
22991 {
22992 {
22993 return dev_storage + 1255;
22994
22995 }
22996 }
22997 else
22998 {
22999 {
23000 return NULL;
23001
23002 }
23003 }
23004 case 'e':
23005 if (strncmp (KR_keyword, "/dev/sdbe5", 10) == 0)
23006 {
23007 {
23008 return dev_storage + 1240;
23009
23010 }
23011 }
23012 else
23013 {
23014 {
23015 return NULL;
23016
23017 }
23018 }
23019 case 'd':
23020 if (strncmp (KR_keyword, "/dev/sdbd5", 10) == 0)
23021 {
23022 {
23023 return dev_storage + 1225;
23024
23025 }
23026 }
23027 else
23028 {
23029 {
23030 return NULL;
23031
23032 }
23033 }
23034 case 'c':
23035 if (strncmp (KR_keyword, "/dev/sdbc5", 10) == 0)
23036 {
23037 {
23038 return dev_storage + 1210;
23039
23040 }
23041 }
23042 else
23043 {
23044 {
23045 return NULL;
23046
23047 }
23048 }
23049 case 'b':
23050 if (strncmp (KR_keyword, "/dev/sdbb5", 10) == 0)
23051 {
23052 {
23053 return dev_storage + 1195;
23054
23055 }
23056 }
23057 else
23058 {
23059 {
23060 return NULL;
23061
23062 }
23063 }
23064 case 'a':
23065 if (strncmp (KR_keyword, "/dev/sdba5", 10) == 0)
23066 {
23067 {
23068 return dev_storage + 1180;
23069
23070 }
23071 }
23072 else
23073 {
23074 {
23075 return NULL;
23076
23077 }
23078 }
23079 case '1':
23080 if (strncmp (KR_keyword, "/dev/sdb15", 10) == 0)
23081 {
23082 {
23083 return dev_storage + 373;
23084
23085 }
23086 }
23087 else
23088 {
23089 {
23090 return NULL;
23091
23092 }
23093 }
23094 default:
23095 {
23096 return NULL;
23097
23098 }
23099 }
23100 case 'a':
23101 switch (KR_keyword [8])
23102 {
23103 case 'z':
23104 if (strncmp (KR_keyword, "/dev/sdaz5", 10) == 0)
23105 {
23106 {
23107 return dev_storage + 1139;
23108
23109 }
23110 }
23111 else
23112 {
23113 {
23114 return NULL;
23115
23116 }
23117 }
23118 case 'y':
23119 if (strncmp (KR_keyword, "/dev/sday5", 10) == 0)
23120 {
23121 {
23122 return dev_storage + 1124;
23123
23124 }
23125 }
23126 else
23127 {
23128 {
23129 return NULL;
23130
23131 }
23132 }
23133 case 'x':
23134 if (strncmp (KR_keyword, "/dev/sdax5", 10) == 0)
23135 {
23136 {
23137 return dev_storage + 1109;
23138
23139 }
23140 }
23141 else
23142 {
23143 {
23144 return NULL;
23145
23146 }
23147 }
23148 case 'w':
23149 if (strncmp (KR_keyword, "/dev/sdaw5", 10) == 0)
23150 {
23151 {
23152 return dev_storage + 1094;
23153
23154 }
23155 }
23156 else
23157 {
23158 {
23159 return NULL;
23160
23161 }
23162 }
23163 case 'v':
23164 if (strncmp (KR_keyword, "/dev/sdav5", 10) == 0)
23165 {
23166 {
23167 return dev_storage + 1079;
23168
23169 }
23170 }
23171 else
23172 {
23173 {
23174 return NULL;
23175
23176 }
23177 }
23178 case 'u':
23179 if (strncmp (KR_keyword, "/dev/sdau5", 10) == 0)
23180 {
23181 {
23182 return dev_storage + 1064;
23183
23184 }
23185 }
23186 else
23187 {
23188 {
23189 return NULL;
23190
23191 }
23192 }
23193 case 't':
23194 if (strncmp (KR_keyword, "/dev/sdat5", 10) == 0)
23195 {
23196 {
23197 return dev_storage + 1049;
23198
23199 }
23200 }
23201 else
23202 {
23203 {
23204 return NULL;
23205
23206 }
23207 }
23208 case 's':
23209 if (strncmp (KR_keyword, "/dev/sdas5", 10) == 0)
23210 {
23211 {
23212 return dev_storage + 1034;
23213
23214 }
23215 }
23216 else
23217 {
23218 {
23219 return NULL;
23220
23221 }
23222 }
23223 case 'r':
23224 if (strncmp (KR_keyword, "/dev/sdar5", 10) == 0)
23225 {
23226 {
23227 return dev_storage + 1019;
23228
23229 }
23230 }
23231 else
23232 {
23233 {
23234 return NULL;
23235
23236 }
23237 }
23238 case 'q':
23239 if (strncmp (KR_keyword, "/dev/sdaq5", 10) == 0)
23240 {
23241 {
23242 return dev_storage + 1004;
23243
23244 }
23245 }
23246 else
23247 {
23248 {
23249 return NULL;
23250
23251 }
23252 }
23253 case 'p':
23254 if (strncmp (KR_keyword, "/dev/sdap5", 10) == 0)
23255 {
23256 {
23257 return dev_storage + 989;
23258
23259 }
23260 }
23261 else
23262 {
23263 {
23264 return NULL;
23265
23266 }
23267 }
23268 case 'o':
23269 if (strncmp (KR_keyword, "/dev/sdao5", 10) == 0)
23270 {
23271 {
23272 return dev_storage + 974;
23273
23274 }
23275 }
23276 else
23277 {
23278 {
23279 return NULL;
23280
23281 }
23282 }
23283 case 'n':
23284 if (strncmp (KR_keyword, "/dev/sdan5", 10) == 0)
23285 {
23286 {
23287 return dev_storage + 959;
23288
23289 }
23290 }
23291 else
23292 {
23293 {
23294 return NULL;
23295
23296 }
23297 }
23298 case 'm':
23299 if (strncmp (KR_keyword, "/dev/sdam5", 10) == 0)
23300 {
23301 {
23302 return dev_storage + 944;
23303
23304 }
23305 }
23306 else
23307 {
23308 {
23309 return NULL;
23310
23311 }
23312 }
23313 case 'l':
23314 if (strncmp (KR_keyword, "/dev/sdal5", 10) == 0)
23315 {
23316 {
23317 return dev_storage + 929;
23318
23319 }
23320 }
23321 else
23322 {
23323 {
23324 return NULL;
23325
23326 }
23327 }
23328 case 'k':
23329 if (strncmp (KR_keyword, "/dev/sdak5", 10) == 0)
23330 {
23331 {
23332 return dev_storage + 914;
23333
23334 }
23335 }
23336 else
23337 {
23338 {
23339 return NULL;
23340
23341 }
23342 }
23343 case 'j':
23344 if (strncmp (KR_keyword, "/dev/sdaj5", 10) == 0)
23345 {
23346 {
23347 return dev_storage + 899;
23348
23349 }
23350 }
23351 else
23352 {
23353 {
23354 return NULL;
23355
23356 }
23357 }
23358 case 'i':
23359 if (strncmp (KR_keyword, "/dev/sdai5", 10) == 0)
23360 {
23361 {
23362 return dev_storage + 884;
23363
23364 }
23365 }
23366 else
23367 {
23368 {
23369 return NULL;
23370
23371 }
23372 }
23373 case 'h':
23374 if (strncmp (KR_keyword, "/dev/sdah5", 10) == 0)
23375 {
23376 {
23377 return dev_storage + 869;
23378
23379 }
23380 }
23381 else
23382 {
23383 {
23384 return NULL;
23385
23386 }
23387 }
23388 case 'g':
23389 if (strncmp (KR_keyword, "/dev/sdag5", 10) == 0)
23390 {
23391 {
23392 return dev_storage + 854;
23393
23394 }
23395 }
23396 else
23397 {
23398 {
23399 return NULL;
23400
23401 }
23402 }
23403 case 'f':
23404 if (strncmp (KR_keyword, "/dev/sdaf5", 10) == 0)
23405 {
23406 {
23407 return dev_storage + 839;
23408
23409 }
23410 }
23411 else
23412 {
23413 {
23414 return NULL;
23415
23416 }
23417 }
23418 case 'e':
23419 if (strncmp (KR_keyword, "/dev/sdae5", 10) == 0)
23420 {
23421 {
23422 return dev_storage + 824;
23423
23424 }
23425 }
23426 else
23427 {
23428 {
23429 return NULL;
23430
23431 }
23432 }
23433 case 'd':
23434 if (strncmp (KR_keyword, "/dev/sdad5", 10) == 0)
23435 {
23436 {
23437 return dev_storage + 809;
23438
23439 }
23440 }
23441 else
23442 {
23443 {
23444 return NULL;
23445
23446 }
23447 }
23448 case 'c':
23449 if (strncmp (KR_keyword, "/dev/sdac5", 10) == 0)
23450 {
23451 {
23452 return dev_storage + 794;
23453
23454 }
23455 }
23456 else
23457 {
23458 {
23459 return NULL;
23460
23461 }
23462 }
23463 case 'b':
23464 if (strncmp (KR_keyword, "/dev/sdab5", 10) == 0)
23465 {
23466 {
23467 return dev_storage + 779;
23468
23469 }
23470 }
23471 else
23472 {
23473 {
23474 return NULL;
23475
23476 }
23477 }
23478 case 'a':
23479 if (strncmp (KR_keyword, "/dev/sdaa5", 10) == 0)
23480 {
23481 {
23482 return dev_storage + 764;
23483
23484 }
23485 }
23486 else
23487 {
23488 {
23489 return NULL;
23490
23491 }
23492 }
23493 case '1':
23494 if (strncmp (KR_keyword, "/dev/sda15", 10) == 0)
23495 {
23496 {
23497 return dev_storage + 358;
23498
23499 }
23500 }
23501 else
23502 {
23503 {
23504 return NULL;
23505
23506 }
23507 }
23508 default:
23509 {
23510 return NULL;
23511
23512 }
23513 }
23514 case '1':
23515 switch (KR_keyword [8])
23516 {
23517 case '2':
23518 if (strncmp (KR_keyword, "/dev/st125", 10) == 0)
23519 {
23520 {
23521 return dev_storage + 2507;
23522
23523 }
23524 }
23525 else
23526 {
23527 {
23528 return NULL;
23529
23530 }
23531 }
23532 case '1':
23533 if (strncmp (KR_keyword, "/dev/st115", 10) == 0)
23534 {
23535 {
23536 return dev_storage + 2497;
23537
23538 }
23539 }
23540 else
23541 {
23542 {
23543 return NULL;
23544
23545 }
23546 }
23547 case '0':
23548 if (strncmp (KR_keyword, "/dev/st105", 10) == 0)
23549 {
23550 {
23551 return dev_storage + 2487;
23552
23553 }
23554 }
23555 else
23556 {
23557 {
23558 return NULL;
23559
23560 }
23561 }
23562 default:
23563 {
23564 return NULL;
23565
23566 }
23567 }
23568 default:
23569 {
23570 return NULL;
23571
23572 }
23573 }
23574 case '4':
23575 switch (KR_keyword [7])
23576 {
23577 case 'z':
23578 if (strncmp (KR_keyword, "/dev/sdz14", 10) == 0)
23579 {
23580 {
23581 return dev_storage + 732;
23582
23583 }
23584 }
23585 else
23586 {
23587 {
23588 return NULL;
23589
23590 }
23591 }
23592 case 'y':
23593 switch (KR_keyword [8])
23594 {
23595 case 'S':
23596 if (strncmp (KR_keyword, "/dev/ttyS4", 10) == 0)
23597 {
23598 {
23599 return dev_storage + 2515;
23600
23601 }
23602 }
23603 else
23604 {
23605 {
23606 return NULL;
23607
23608 }
23609 }
23610 case '5':
23611 if (strncmp (KR_keyword, "/dev/pty54", 10) == 0)
23612 {
23613 {
23614 return dev_storage + 291;
23615
23616 }
23617 }
23618 else
23619 {
23620 {
23621 return NULL;
23622
23623 }
23624 }
23625 case '4':
23626 if (strncmp (KR_keyword, "/dev/pty44", 10) == 0)
23627 {
23628 {
23629 return dev_storage + 281;
23630
23631 }
23632 }
23633 else
23634 {
23635 {
23636 return NULL;
23637
23638 }
23639 }
23640 case '3':
23641 if (strncmp (KR_keyword, "/dev/pty34", 10) == 0)
23642 {
23643 {
23644 return dev_storage + 271;
23645
23646 }
23647 }
23648 else
23649 {
23650 {
23651 return NULL;
23652
23653 }
23654 }
23655 case '2':
23656 if (strncmp (KR_keyword, "/dev/pty24", 10) == 0)
23657 {
23658 {
23659 return dev_storage + 261;
23660
23661 }
23662 }
23663 else
23664 {
23665 {
23666 return NULL;
23667
23668 }
23669 }
23670 case '1':
23671 switch (KR_keyword [5])
23672 {
23673 case 's':
23674 if (strncmp (KR_keyword, "/dev/sdy14", 10) == 0)
23675 {
23676 {
23677 return dev_storage + 717;
23678
23679 }
23680 }
23681 else
23682 {
23683 {
23684 return NULL;
23685
23686 }
23687 }
23688 case 'p':
23689 if (strncmp (KR_keyword, "/dev/pty14", 10) == 0)
23690 {
23691 {
23692 return dev_storage + 251;
23693
23694 }
23695 }
23696 else
23697 {
23698 {
23699 return NULL;
23700
23701 }
23702 }
23703 default:
23704 {
23705 return NULL;
23706
23707 }
23708 }
23709 default:
23710 {
23711 return NULL;
23712
23713 }
23714 }
23715 case 'x':
23716 if (strncmp (KR_keyword, "/dev/sdx14", 10) == 0)
23717 {
23718 {
23719 return dev_storage + 702;
23720
23721 }
23722 }
23723 else
23724 {
23725 {
23726 return NULL;
23727
23728 }
23729 }
23730 case 'w':
23731 if (strncmp (KR_keyword, "/dev/sdw14", 10) == 0)
23732 {
23733 {
23734 return dev_storage + 687;
23735
23736 }
23737 }
23738 else
23739 {
23740 {
23741 return NULL;
23742
23743 }
23744 }
23745 case 'v':
23746 if (strncmp (KR_keyword, "/dev/sdv14", 10) == 0)
23747 {
23748 {
23749 return dev_storage + 672;
23750
23751 }
23752 }
23753 else
23754 {
23755 {
23756 return NULL;
23757
23758 }
23759 }
23760 case 'u':
23761 if (strncmp (KR_keyword, "/dev/sdu14", 10) == 0)
23762 {
23763 {
23764 return dev_storage + 657;
23765
23766 }
23767 }
23768 else
23769 {
23770 {
23771 return NULL;
23772
23773 }
23774 }
23775 case 't':
23776 switch (KR_keyword [8])
23777 {
23778 case '9':
23779 if (strncmp (KR_keyword, "/dev/nst94", 10) == 0)
23780 {
23781 {
23782 return dev_storage + 200;
23783
23784 }
23785 }
23786 else
23787 {
23788 {
23789 return NULL;
23790
23791 }
23792 }
23793 case '8':
23794 if (strncmp (KR_keyword, "/dev/nst84", 10) == 0)
23795 {
23796 {
23797 return dev_storage + 190;
23798
23799 }
23800 }
23801 else
23802 {
23803 {
23804 return NULL;
23805
23806 }
23807 }
23808 case '7':
23809 if (strncmp (KR_keyword, "/dev/nst74", 10) == 0)
23810 {
23811 {
23812 return dev_storage + 180;
23813
23814 }
23815 }
23816 else
23817 {
23818 {
23819 return NULL;
23820
23821 }
23822 }
23823 case '6':
23824 if (strncmp (KR_keyword, "/dev/nst64", 10) == 0)
23825 {
23826 {
23827 return dev_storage + 170;
23828
23829 }
23830 }
23831 else
23832 {
23833 {
23834 return NULL;
23835
23836 }
23837 }
23838 case '5':
23839 if (strncmp (KR_keyword, "/dev/nst54", 10) == 0)
23840 {
23841 {
23842 return dev_storage + 160;
23843
23844 }
23845 }
23846 else
23847 {
23848 {
23849 return NULL;
23850
23851 }
23852 }
23853 case '4':
23854 if (strncmp (KR_keyword, "/dev/nst44", 10) == 0)
23855 {
23856 {
23857 return dev_storage + 150;
23858
23859 }
23860 }
23861 else
23862 {
23863 {
23864 return NULL;
23865
23866 }
23867 }
23868 case '3':
23869 if (strncmp (KR_keyword, "/dev/nst34", 10) == 0)
23870 {
23871 {
23872 return dev_storage + 140;
23873
23874 }
23875 }
23876 else
23877 {
23878 {
23879 return NULL;
23880
23881 }
23882 }
23883 case '2':
23884 if (strncmp (KR_keyword, "/dev/nst24", 10) == 0)
23885 {
23886 {
23887 return dev_storage + 130;
23888
23889 }
23890 }
23891 else
23892 {
23893 {
23894 return NULL;
23895
23896 }
23897 }
23898 case '1':
23899 switch (KR_keyword [5])
23900 {
23901 case 's':
23902 if (strncmp (KR_keyword, "/dev/sdt14", 10) == 0)
23903 {
23904 {
23905 return dev_storage + 642;
23906
23907 }
23908 }
23909 else
23910 {
23911 {
23912 return NULL;
23913
23914 }
23915 }
23916 case 'n':
23917 if (strncmp (KR_keyword, "/dev/nst14", 10) == 0)
23918 {
23919 {
23920 return dev_storage + 120;
23921
23922 }
23923 }
23924 else
23925 {
23926 {
23927 return NULL;
23928
23929 }
23930 }
23931 default:
23932 {
23933 return NULL;
23934
23935 }
23936 }
23937 default:
23938 {
23939 return NULL;
23940
23941 }
23942 }
23943 case 's':
23944 if (strncmp (KR_keyword, "/dev/sds14", 10) == 0)
23945 {
23946 {
23947 return dev_storage + 627;
23948
23949 }
23950 }
23951 else
23952 {
23953 {
23954 return NULL;
23955
23956 }
23957 }
23958 case 'r':
23959 if (strncmp (KR_keyword, "/dev/sdr14", 10) == 0)
23960 {
23961 {
23962 return dev_storage + 612;
23963
23964 }
23965 }
23966 else
23967 {
23968 {
23969 return NULL;
23970
23971 }
23972 }
23973 case 'q':
23974 if (strncmp (KR_keyword, "/dev/sdq14", 10) == 0)
23975 {
23976 {
23977 return dev_storage + 597;
23978
23979 }
23980 }
23981 else
23982 {
23983 {
23984 return NULL;
23985
23986 }
23987 }
23988 case 'p':
23989 if (strncmp (KR_keyword, "/dev/sdp14", 10) == 0)
23990 {
23991 {
23992 return dev_storage + 582;
23993
23994 }
23995 }
23996 else
23997 {
23998 {
23999 return NULL;
24000
24001 }
24002 }
24003 case 'o':
24004 if (strncmp (KR_keyword, "/dev/sdo14", 10) == 0)
24005 {
24006 {
24007 return dev_storage + 567;
24008
24009 }
24010 }
24011 else
24012 {
24013 {
24014 return NULL;
24015
24016 }
24017 }
24018 case 'n':
24019 switch (KR_keyword [5])
24020 {
24021 case 's':
24022 if (strncmp (KR_keyword, "/dev/sdn14", 10) == 0)
24023 {
24024 {
24025 return dev_storage + 552;
24026
24027 }
24028 }
24029 else
24030 {
24031 {
24032 return NULL;
24033
24034 }
24035 }
24036 case 'c':
24037 if (strncmp (KR_keyword, "/dev/cons4", 10) == 0)
24038 {
24039 {
24040 return dev_storage + 24;
24041
24042 }
24043 }
24044 else
24045 {
24046 {
24047 return NULL;
24048
24049 }
24050 }
24051 default:
24052 {
24053 return NULL;
24054
24055 }
24056 }
24057 case 'm':
24058 switch (KR_keyword [5])
24059 {
24060 case 's':
24061 if (strncmp (KR_keyword, "/dev/sdm14", 10) == 0)
24062 {
24063 {
24064 return dev_storage + 537;
24065
24066 }
24067 }
24068 else
24069 {
24070 {
24071 return NULL;
24072
24073 }
24074 }
24075 case 'c':
24076 if (strncmp (KR_keyword, "/dev/com14", 10) == 0)
24077 {
24078 {
24079 return dev_storage + 15;
24080
24081 }
24082 }
24083 else
24084 {
24085 {
24086 return NULL;
24087
24088 }
24089 }
24090 default:
24091 {
24092 return NULL;
24093
24094 }
24095 }
24096 case 'l':
24097 if (strncmp (KR_keyword, "/dev/sdl14", 10) == 0)
24098 {
24099 {
24100 return dev_storage + 522;
24101
24102 }
24103 }
24104 else
24105 {
24106 {
24107 return NULL;
24108
24109 }
24110 }
24111 case 'k':
24112 if (strncmp (KR_keyword, "/dev/sdk14", 10) == 0)
24113 {
24114 {
24115 return dev_storage + 507;
24116
24117 }
24118 }
24119 else
24120 {
24121 {
24122 return NULL;
24123
24124 }
24125 }
24126 case 'j':
24127 if (strncmp (KR_keyword, "/dev/sdj14", 10) == 0)
24128 {
24129 {
24130 return dev_storage + 492;
24131
24132 }
24133 }
24134 else
24135 {
24136 {
24137 return NULL;
24138
24139 }
24140 }
24141 case 'i':
24142 if (strncmp (KR_keyword, "/dev/sdi14", 10) == 0)
24143 {
24144 {
24145 return dev_storage + 477;
24146
24147 }
24148 }
24149 else
24150 {
24151 {
24152 return NULL;
24153
24154 }
24155 }
24156 case 'h':
24157 if (strncmp (KR_keyword, "/dev/sdh14", 10) == 0)
24158 {
24159 {
24160 return dev_storage + 462;
24161
24162 }
24163 }
24164 else
24165 {
24166 {
24167 return NULL;
24168
24169 }
24170 }
24171 case 'g':
24172 if (strncmp (KR_keyword, "/dev/sdg14", 10) == 0)
24173 {
24174 {
24175 return dev_storage + 447;
24176
24177 }
24178 }
24179 else
24180 {
24181 {
24182 return NULL;
24183
24184 }
24185 }
24186 case 'f':
24187 if (strncmp (KR_keyword, "/dev/sdf14", 10) == 0)
24188 {
24189 {
24190 return dev_storage + 432;
24191
24192 }
24193 }
24194 else
24195 {
24196 {
24197 return NULL;
24198
24199 }
24200 }
24201 case 'e':
24202 if (strncmp (KR_keyword, "/dev/sde14", 10) == 0)
24203 {
24204 {
24205 return dev_storage + 417;
24206
24207 }
24208 }
24209 else
24210 {
24211 {
24212 return NULL;
24213
24214 }
24215 }
24216 case 'd':
24217 switch (KR_keyword [8])
24218 {
24219 case 'x':
24220 if (strncmp (KR_keyword, "/dev/sddx4", 10) == 0)
24221 {
24222 {
24223 return dev_storage + 2354;
24224
24225 }
24226 }
24227 else
24228 {
24229 {
24230 return NULL;
24231
24232 }
24233 }
24234 case 'w':
24235 if (strncmp (KR_keyword, "/dev/sddw4", 10) == 0)
24236 {
24237 {
24238 return dev_storage + 2339;
24239
24240 }
24241 }
24242 else
24243 {
24244 {
24245 return NULL;
24246
24247 }
24248 }
24249 case 'v':
24250 if (strncmp (KR_keyword, "/dev/sddv4", 10) == 0)
24251 {
24252 {
24253 return dev_storage + 2324;
24254
24255 }
24256 }
24257 else
24258 {
24259 {
24260 return NULL;
24261
24262 }
24263 }
24264 case 'u':
24265 if (strncmp (KR_keyword, "/dev/sddu4", 10) == 0)
24266 {
24267 {
24268 return dev_storage + 2309;
24269
24270 }
24271 }
24272 else
24273 {
24274 {
24275 return NULL;
24276
24277 }
24278 }
24279 case 't':
24280 if (strncmp (KR_keyword, "/dev/sddt4", 10) == 0)
24281 {
24282 {
24283 return dev_storage + 2294;
24284
24285 }
24286 }
24287 else
24288 {
24289 {
24290 return NULL;
24291
24292 }
24293 }
24294 case 's':
24295 if (strncmp (KR_keyword, "/dev/sdds4", 10) == 0)
24296 {
24297 {
24298 return dev_storage + 2279;
24299
24300 }
24301 }
24302 else
24303 {
24304 {
24305 return NULL;
24306
24307 }
24308 }
24309 case 'r':
24310 if (strncmp (KR_keyword, "/dev/sddr4", 10) == 0)
24311 {
24312 {
24313 return dev_storage + 2264;
24314
24315 }
24316 }
24317 else
24318 {
24319 {
24320 return NULL;
24321
24322 }
24323 }
24324 case 'q':
24325 if (strncmp (KR_keyword, "/dev/sddq4", 10) == 0)
24326 {
24327 {
24328 return dev_storage + 2249;
24329
24330 }
24331 }
24332 else
24333 {
24334 {
24335 return NULL;
24336
24337 }
24338 }
24339 case 'p':
24340 if (strncmp (KR_keyword, "/dev/sddp4", 10) == 0)
24341 {
24342 {
24343 return dev_storage + 2234;
24344
24345 }
24346 }
24347 else
24348 {
24349 {
24350 return NULL;
24351
24352 }
24353 }
24354 case 'o':
24355 if (strncmp (KR_keyword, "/dev/sddo4", 10) == 0)
24356 {
24357 {
24358 return dev_storage + 2219;
24359
24360 }
24361 }
24362 else
24363 {
24364 {
24365 return NULL;
24366
24367 }
24368 }
24369 case 'n':
24370 if (strncmp (KR_keyword, "/dev/sddn4", 10) == 0)
24371 {
24372 {
24373 return dev_storage + 2204;
24374
24375 }
24376 }
24377 else
24378 {
24379 {
24380 return NULL;
24381
24382 }
24383 }
24384 case 'm':
24385 if (strncmp (KR_keyword, "/dev/sddm4", 10) == 0)
24386 {
24387 {
24388 return dev_storage + 2189;
24389
24390 }
24391 }
24392 else
24393 {
24394 {
24395 return NULL;
24396
24397 }
24398 }
24399 case 'l':
24400 if (strncmp (KR_keyword, "/dev/sddl4", 10) == 0)
24401 {
24402 {
24403 return dev_storage + 2174;
24404
24405 }
24406 }
24407 else
24408 {
24409 {
24410 return NULL;
24411
24412 }
24413 }
24414 case 'k':
24415 if (strncmp (KR_keyword, "/dev/sddk4", 10) == 0)
24416 {
24417 {
24418 return dev_storage + 2159;
24419
24420 }
24421 }
24422 else
24423 {
24424 {
24425 return NULL;
24426
24427 }
24428 }
24429 case 'j':
24430 if (strncmp (KR_keyword, "/dev/sddj4", 10) == 0)
24431 {
24432 {
24433 return dev_storage + 2144;
24434
24435 }
24436 }
24437 else
24438 {
24439 {
24440 return NULL;
24441
24442 }
24443 }
24444 case 'i':
24445 if (strncmp (KR_keyword, "/dev/sddi4", 10) == 0)
24446 {
24447 {
24448 return dev_storage + 2129;
24449
24450 }
24451 }
24452 else
24453 {
24454 {
24455 return NULL;
24456
24457 }
24458 }
24459 case 'h':
24460 if (strncmp (KR_keyword, "/dev/sddh4", 10) == 0)
24461 {
24462 {
24463 return dev_storage + 2114;
24464
24465 }
24466 }
24467 else
24468 {
24469 {
24470 return NULL;
24471
24472 }
24473 }
24474 case 'g':
24475 if (strncmp (KR_keyword, "/dev/sddg4", 10) == 0)
24476 {
24477 {
24478 return dev_storage + 2099;
24479
24480 }
24481 }
24482 else
24483 {
24484 {
24485 return NULL;
24486
24487 }
24488 }
24489 case 'f':
24490 if (strncmp (KR_keyword, "/dev/sddf4", 10) == 0)
24491 {
24492 {
24493 return dev_storage + 2084;
24494
24495 }
24496 }
24497 else
24498 {
24499 {
24500 return NULL;
24501
24502 }
24503 }
24504 case 'e':
24505 if (strncmp (KR_keyword, "/dev/sdde4", 10) == 0)
24506 {
24507 {
24508 return dev_storage + 2069;
24509
24510 }
24511 }
24512 else
24513 {
24514 {
24515 return NULL;
24516
24517 }
24518 }
24519 case 'd':
24520 if (strncmp (KR_keyword, "/dev/sddd4", 10) == 0)
24521 {
24522 {
24523 return dev_storage + 2054;
24524
24525 }
24526 }
24527 else
24528 {
24529 {
24530 return NULL;
24531
24532 }
24533 }
24534 case 'c':
24535 if (strncmp (KR_keyword, "/dev/sddc4", 10) == 0)
24536 {
24537 {
24538 return dev_storage + 2039;
24539
24540 }
24541 }
24542 else
24543 {
24544 {
24545 return NULL;
24546
24547 }
24548 }
24549 case 'b':
24550 if (strncmp (KR_keyword, "/dev/sddb4", 10) == 0)
24551 {
24552 {
24553 return dev_storage + 2024;
24554
24555 }
24556 }
24557 else
24558 {
24559 {
24560 return NULL;
24561
24562 }
24563 }
24564 case 'a':
24565 if (strncmp (KR_keyword, "/dev/sdda4", 10) == 0)
24566 {
24567 {
24568 return dev_storage + 2009;
24569
24570 }
24571 }
24572 else
24573 {
24574 {
24575 return NULL;
24576
24577 }
24578 }
24579 case '1':
24580 switch (KR_keyword [6])
24581 {
24582 case 'd':
24583 if (strncmp (KR_keyword, "/dev/sdd14", 10) == 0)
24584 {
24585 {
24586 return dev_storage + 402;
24587
24588 }
24589 }
24590 else
24591 {
24592 {
24593 return NULL;
24594
24595 }
24596 }
24597 case 'c':
24598 if (strncmp (KR_keyword, "/dev/scd14", 10) == 0)
24599 {
24600 {
24601 return dev_storage + 316;
24602
24603 }
24604 }
24605 else
24606 {
24607 {
24608 return NULL;
24609
24610 }
24611 }
24612 default:
24613 {
24614 return NULL;
24615
24616 }
24617 }
24618 default:
24619 {
24620 return NULL;
24621
24622 }
24623 }
24624 case 'c':
24625 switch (KR_keyword [8])
24626 {
24627 case 'z':
24628 if (strncmp (KR_keyword, "/dev/sdcz4", 10) == 0)
24629 {
24630 {
24631 return dev_storage + 1970;
24632
24633 }
24634 }
24635 else
24636 {
24637 {
24638 return NULL;
24639
24640 }
24641 }
24642 case 'y':
24643 if (strncmp (KR_keyword, "/dev/sdcy4", 10) == 0)
24644 {
24645 {
24646 return dev_storage + 1955;
24647
24648 }
24649 }
24650 else
24651 {
24652 {
24653 return NULL;
24654
24655 }
24656 }
24657 case 'x':
24658 if (strncmp (KR_keyword, "/dev/sdcx4", 10) == 0)
24659 {
24660 {
24661 return dev_storage + 1940;
24662
24663 }
24664 }
24665 else
24666 {
24667 {
24668 return NULL;
24669
24670 }
24671 }
24672 case 'w':
24673 if (strncmp (KR_keyword, "/dev/sdcw4", 10) == 0)
24674 {
24675 {
24676 return dev_storage + 1925;
24677
24678 }
24679 }
24680 else
24681 {
24682 {
24683 return NULL;
24684
24685 }
24686 }
24687 case 'v':
24688 if (strncmp (KR_keyword, "/dev/sdcv4", 10) == 0)
24689 {
24690 {
24691 return dev_storage + 1910;
24692
24693 }
24694 }
24695 else
24696 {
24697 {
24698 return NULL;
24699
24700 }
24701 }
24702 case 'u':
24703 if (strncmp (KR_keyword, "/dev/sdcu4", 10) == 0)
24704 {
24705 {
24706 return dev_storage + 1895;
24707
24708 }
24709 }
24710 else
24711 {
24712 {
24713 return NULL;
24714
24715 }
24716 }
24717 case 't':
24718 if (strncmp (KR_keyword, "/dev/sdct4", 10) == 0)
24719 {
24720 {
24721 return dev_storage + 1880;
24722
24723 }
24724 }
24725 else
24726 {
24727 {
24728 return NULL;
24729
24730 }
24731 }
24732 case 's':
24733 if (strncmp (KR_keyword, "/dev/sdcs4", 10) == 0)
24734 {
24735 {
24736 return dev_storage + 1865;
24737
24738 }
24739 }
24740 else
24741 {
24742 {
24743 return NULL;
24744
24745 }
24746 }
24747 case 'r':
24748 if (strncmp (KR_keyword, "/dev/sdcr4", 10) == 0)
24749 {
24750 {
24751 return dev_storage + 1850;
24752
24753 }
24754 }
24755 else
24756 {
24757 {
24758 return NULL;
24759
24760 }
24761 }
24762 case 'q':
24763 if (strncmp (KR_keyword, "/dev/sdcq4", 10) == 0)
24764 {
24765 {
24766 return dev_storage + 1835;
24767
24768 }
24769 }
24770 else
24771 {
24772 {
24773 return NULL;
24774
24775 }
24776 }
24777 case 'p':
24778 if (strncmp (KR_keyword, "/dev/sdcp4", 10) == 0)
24779 {
24780 {
24781 return dev_storage + 1820;
24782
24783 }
24784 }
24785 else
24786 {
24787 {
24788 return NULL;
24789
24790 }
24791 }
24792 case 'o':
24793 if (strncmp (KR_keyword, "/dev/sdco4", 10) == 0)
24794 {
24795 {
24796 return dev_storage + 1805;
24797
24798 }
24799 }
24800 else
24801 {
24802 {
24803 return NULL;
24804
24805 }
24806 }
24807 case 'n':
24808 if (strncmp (KR_keyword, "/dev/sdcn4", 10) == 0)
24809 {
24810 {
24811 return dev_storage + 1790;
24812
24813 }
24814 }
24815 else
24816 {
24817 {
24818 return NULL;
24819
24820 }
24821 }
24822 case 'm':
24823 if (strncmp (KR_keyword, "/dev/sdcm4", 10) == 0)
24824 {
24825 {
24826 return dev_storage + 1775;
24827
24828 }
24829 }
24830 else
24831 {
24832 {
24833 return NULL;
24834
24835 }
24836 }
24837 case 'l':
24838 if (strncmp (KR_keyword, "/dev/sdcl4", 10) == 0)
24839 {
24840 {
24841 return dev_storage + 1760;
24842
24843 }
24844 }
24845 else
24846 {
24847 {
24848 return NULL;
24849
24850 }
24851 }
24852 case 'k':
24853 if (strncmp (KR_keyword, "/dev/sdck4", 10) == 0)
24854 {
24855 {
24856 return dev_storage + 1745;
24857
24858 }
24859 }
24860 else
24861 {
24862 {
24863 return NULL;
24864
24865 }
24866 }
24867 case 'j':
24868 if (strncmp (KR_keyword, "/dev/sdcj4", 10) == 0)
24869 {
24870 {
24871 return dev_storage + 1730;
24872
24873 }
24874 }
24875 else
24876 {
24877 {
24878 return NULL;
24879
24880 }
24881 }
24882 case 'i':
24883 if (strncmp (KR_keyword, "/dev/sdci4", 10) == 0)
24884 {
24885 {
24886 return dev_storage + 1715;
24887
24888 }
24889 }
24890 else
24891 {
24892 {
24893 return NULL;
24894
24895 }
24896 }
24897 case 'h':
24898 if (strncmp (KR_keyword, "/dev/sdch4", 10) == 0)
24899 {
24900 {
24901 return dev_storage + 1700;
24902
24903 }
24904 }
24905 else
24906 {
24907 {
24908 return NULL;
24909
24910 }
24911 }
24912 case 'g':
24913 if (strncmp (KR_keyword, "/dev/sdcg4", 10) == 0)
24914 {
24915 {
24916 return dev_storage + 1685;
24917
24918 }
24919 }
24920 else
24921 {
24922 {
24923 return NULL;
24924
24925 }
24926 }
24927 case 'f':
24928 if (strncmp (KR_keyword, "/dev/sdcf4", 10) == 0)
24929 {
24930 {
24931 return dev_storage + 1670;
24932
24933 }
24934 }
24935 else
24936 {
24937 {
24938 return NULL;
24939
24940 }
24941 }
24942 case 'e':
24943 if (strncmp (KR_keyword, "/dev/sdce4", 10) == 0)
24944 {
24945 {
24946 return dev_storage + 1655;
24947
24948 }
24949 }
24950 else
24951 {
24952 {
24953 return NULL;
24954
24955 }
24956 }
24957 case 'd':
24958 if (strncmp (KR_keyword, "/dev/sdcd4", 10) == 0)
24959 {
24960 {
24961 return dev_storage + 1640;
24962
24963 }
24964 }
24965 else
24966 {
24967 {
24968 return NULL;
24969
24970 }
24971 }
24972 case 'c':
24973 if (strncmp (KR_keyword, "/dev/sdcc4", 10) == 0)
24974 {
24975 {
24976 return dev_storage + 1625;
24977
24978 }
24979 }
24980 else
24981 {
24982 {
24983 return NULL;
24984
24985 }
24986 }
24987 case 'b':
24988 if (strncmp (KR_keyword, "/dev/sdcb4", 10) == 0)
24989 {
24990 {
24991 return dev_storage + 1610;
24992
24993 }
24994 }
24995 else
24996 {
24997 {
24998 return NULL;
24999
25000 }
25001 }
25002 case 'a':
25003 if (strncmp (KR_keyword, "/dev/sdca4", 10) == 0)
25004 {
25005 {
25006 return dev_storage + 1595;
25007
25008 }
25009 }
25010 else
25011 {
25012 {
25013 return NULL;
25014
25015 }
25016 }
25017 case '1':
25018 if (strncmp (KR_keyword, "/dev/sdc14", 10) == 0)
25019 {
25020 {
25021 return dev_storage + 387;
25022
25023 }
25024 }
25025 else
25026 {
25027 {
25028 return NULL;
25029
25030 }
25031 }
25032 default:
25033 {
25034 return NULL;
25035
25036 }
25037 }
25038 case 'b':
25039 switch (KR_keyword [8])
25040 {
25041 case 'z':
25042 if (strncmp (KR_keyword, "/dev/sdbz4", 10) == 0)
25043 {
25044 {
25045 return dev_storage + 1554;
25046
25047 }
25048 }
25049 else
25050 {
25051 {
25052 return NULL;
25053
25054 }
25055 }
25056 case 'y':
25057 if (strncmp (KR_keyword, "/dev/sdby4", 10) == 0)
25058 {
25059 {
25060 return dev_storage + 1539;
25061
25062 }
25063 }
25064 else
25065 {
25066 {
25067 return NULL;
25068
25069 }
25070 }
25071 case 'x':
25072 if (strncmp (KR_keyword, "/dev/sdbx4", 10) == 0)
25073 {
25074 {
25075 return dev_storage + 1524;
25076
25077 }
25078 }
25079 else
25080 {
25081 {
25082 return NULL;
25083
25084 }
25085 }
25086 case 'w':
25087 if (strncmp (KR_keyword, "/dev/sdbw4", 10) == 0)
25088 {
25089 {
25090 return dev_storage + 1509;
25091
25092 }
25093 }
25094 else
25095 {
25096 {
25097 return NULL;
25098
25099 }
25100 }
25101 case 'v':
25102 if (strncmp (KR_keyword, "/dev/sdbv4", 10) == 0)
25103 {
25104 {
25105 return dev_storage + 1494;
25106
25107 }
25108 }
25109 else
25110 {
25111 {
25112 return NULL;
25113
25114 }
25115 }
25116 case 'u':
25117 if (strncmp (KR_keyword, "/dev/sdbu4", 10) == 0)
25118 {
25119 {
25120 return dev_storage + 1479;
25121
25122 }
25123 }
25124 else
25125 {
25126 {
25127 return NULL;
25128
25129 }
25130 }
25131 case 't':
25132 if (strncmp (KR_keyword, "/dev/sdbt4", 10) == 0)
25133 {
25134 {
25135 return dev_storage + 1464;
25136
25137 }
25138 }
25139 else
25140 {
25141 {
25142 return NULL;
25143
25144 }
25145 }
25146 case 's':
25147 if (strncmp (KR_keyword, "/dev/sdbs4", 10) == 0)
25148 {
25149 {
25150 return dev_storage + 1449;
25151
25152 }
25153 }
25154 else
25155 {
25156 {
25157 return NULL;
25158
25159 }
25160 }
25161 case 'r':
25162 if (strncmp (KR_keyword, "/dev/sdbr4", 10) == 0)
25163 {
25164 {
25165 return dev_storage + 1434;
25166
25167 }
25168 }
25169 else
25170 {
25171 {
25172 return NULL;
25173
25174 }
25175 }
25176 case 'q':
25177 if (strncmp (KR_keyword, "/dev/sdbq4", 10) == 0)
25178 {
25179 {
25180 return dev_storage + 1419;
25181
25182 }
25183 }
25184 else
25185 {
25186 {
25187 return NULL;
25188
25189 }
25190 }
25191 case 'p':
25192 if (strncmp (KR_keyword, "/dev/sdbp4", 10) == 0)
25193 {
25194 {
25195 return dev_storage + 1404;
25196
25197 }
25198 }
25199 else
25200 {
25201 {
25202 return NULL;
25203
25204 }
25205 }
25206 case 'o':
25207 if (strncmp (KR_keyword, "/dev/sdbo4", 10) == 0)
25208 {
25209 {
25210 return dev_storage + 1389;
25211
25212 }
25213 }
25214 else
25215 {
25216 {
25217 return NULL;
25218
25219 }
25220 }
25221 case 'n':
25222 if (strncmp (KR_keyword, "/dev/sdbn4", 10) == 0)
25223 {
25224 {
25225 return dev_storage + 1374;
25226
25227 }
25228 }
25229 else
25230 {
25231 {
25232 return NULL;
25233
25234 }
25235 }
25236 case 'm':
25237 if (strncmp (KR_keyword, "/dev/sdbm4", 10) == 0)
25238 {
25239 {
25240 return dev_storage + 1359;
25241
25242 }
25243 }
25244 else
25245 {
25246 {
25247 return NULL;
25248
25249 }
25250 }
25251 case 'l':
25252 if (strncmp (KR_keyword, "/dev/sdbl4", 10) == 0)
25253 {
25254 {
25255 return dev_storage + 1344;
25256
25257 }
25258 }
25259 else
25260 {
25261 {
25262 return NULL;
25263
25264 }
25265 }
25266 case 'k':
25267 if (strncmp (KR_keyword, "/dev/sdbk4", 10) == 0)
25268 {
25269 {
25270 return dev_storage + 1329;
25271
25272 }
25273 }
25274 else
25275 {
25276 {
25277 return NULL;
25278
25279 }
25280 }
25281 case 'j':
25282 if (strncmp (KR_keyword, "/dev/sdbj4", 10) == 0)
25283 {
25284 {
25285 return dev_storage + 1314;
25286
25287 }
25288 }
25289 else
25290 {
25291 {
25292 return NULL;
25293
25294 }
25295 }
25296 case 'i':
25297 if (strncmp (KR_keyword, "/dev/sdbi4", 10) == 0)
25298 {
25299 {
25300 return dev_storage + 1299;
25301
25302 }
25303 }
25304 else
25305 {
25306 {
25307 return NULL;
25308
25309 }
25310 }
25311 case 'h':
25312 if (strncmp (KR_keyword, "/dev/sdbh4", 10) == 0)
25313 {
25314 {
25315 return dev_storage + 1284;
25316
25317 }
25318 }
25319 else
25320 {
25321 {
25322 return NULL;
25323
25324 }
25325 }
25326 case 'g':
25327 if (strncmp (KR_keyword, "/dev/sdbg4", 10) == 0)
25328 {
25329 {
25330 return dev_storage + 1269;
25331
25332 }
25333 }
25334 else
25335 {
25336 {
25337 return NULL;
25338
25339 }
25340 }
25341 case 'f':
25342 if (strncmp (KR_keyword, "/dev/sdbf4", 10) == 0)
25343 {
25344 {
25345 return dev_storage + 1254;
25346
25347 }
25348 }
25349 else
25350 {
25351 {
25352 return NULL;
25353
25354 }
25355 }
25356 case 'e':
25357 if (strncmp (KR_keyword, "/dev/sdbe4", 10) == 0)
25358 {
25359 {
25360 return dev_storage + 1239;
25361
25362 }
25363 }
25364 else
25365 {
25366 {
25367 return NULL;
25368
25369 }
25370 }
25371 case 'd':
25372 if (strncmp (KR_keyword, "/dev/sdbd4", 10) == 0)
25373 {
25374 {
25375 return dev_storage + 1224;
25376
25377 }
25378 }
25379 else
25380 {
25381 {
25382 return NULL;
25383
25384 }
25385 }
25386 case 'c':
25387 if (strncmp (KR_keyword, "/dev/sdbc4", 10) == 0)
25388 {
25389 {
25390 return dev_storage + 1209;
25391
25392 }
25393 }
25394 else
25395 {
25396 {
25397 return NULL;
25398
25399 }
25400 }
25401 case 'b':
25402 if (strncmp (KR_keyword, "/dev/sdbb4", 10) == 0)
25403 {
25404 {
25405 return dev_storage + 1194;
25406
25407 }
25408 }
25409 else
25410 {
25411 {
25412 return NULL;
25413
25414 }
25415 }
25416 case 'a':
25417 if (strncmp (KR_keyword, "/dev/sdba4", 10) == 0)
25418 {
25419 {
25420 return dev_storage + 1179;
25421
25422 }
25423 }
25424 else
25425 {
25426 {
25427 return NULL;
25428
25429 }
25430 }
25431 case '1':
25432 if (strncmp (KR_keyword, "/dev/sdb14", 10) == 0)
25433 {
25434 {
25435 return dev_storage + 372;
25436
25437 }
25438 }
25439 else
25440 {
25441 {
25442 return NULL;
25443
25444 }
25445 }
25446 default:
25447 {
25448 return NULL;
25449
25450 }
25451 }
25452 case 'a':
25453 switch (KR_keyword [8])
25454 {
25455 case 'z':
25456 if (strncmp (KR_keyword, "/dev/sdaz4", 10) == 0)
25457 {
25458 {
25459 return dev_storage + 1138;
25460
25461 }
25462 }
25463 else
25464 {
25465 {
25466 return NULL;
25467
25468 }
25469 }
25470 case 'y':
25471 if (strncmp (KR_keyword, "/dev/sday4", 10) == 0)
25472 {
25473 {
25474 return dev_storage + 1123;
25475
25476 }
25477 }
25478 else
25479 {
25480 {
25481 return NULL;
25482
25483 }
25484 }
25485 case 'x':
25486 if (strncmp (KR_keyword, "/dev/sdax4", 10) == 0)
25487 {
25488 {
25489 return dev_storage + 1108;
25490
25491 }
25492 }
25493 else
25494 {
25495 {
25496 return NULL;
25497
25498 }
25499 }
25500 case 'w':
25501 if (strncmp (KR_keyword, "/dev/sdaw4", 10) == 0)
25502 {
25503 {
25504 return dev_storage + 1093;
25505
25506 }
25507 }
25508 else
25509 {
25510 {
25511 return NULL;
25512
25513 }
25514 }
25515 case 'v':
25516 if (strncmp (KR_keyword, "/dev/sdav4", 10) == 0)
25517 {
25518 {
25519 return dev_storage + 1078;
25520
25521 }
25522 }
25523 else
25524 {
25525 {
25526 return NULL;
25527
25528 }
25529 }
25530 case 'u':
25531 if (strncmp (KR_keyword, "/dev/sdau4", 10) == 0)
25532 {
25533 {
25534 return dev_storage + 1063;
25535
25536 }
25537 }
25538 else
25539 {
25540 {
25541 return NULL;
25542
25543 }
25544 }
25545 case 't':
25546 if (strncmp (KR_keyword, "/dev/sdat4", 10) == 0)
25547 {
25548 {
25549 return dev_storage + 1048;
25550
25551 }
25552 }
25553 else
25554 {
25555 {
25556 return NULL;
25557
25558 }
25559 }
25560 case 's':
25561 if (strncmp (KR_keyword, "/dev/sdas4", 10) == 0)
25562 {
25563 {
25564 return dev_storage + 1033;
25565
25566 }
25567 }
25568 else
25569 {
25570 {
25571 return NULL;
25572
25573 }
25574 }
25575 case 'r':
25576 if (strncmp (KR_keyword, "/dev/sdar4", 10) == 0)
25577 {
25578 {
25579 return dev_storage + 1018;
25580
25581 }
25582 }
25583 else
25584 {
25585 {
25586 return NULL;
25587
25588 }
25589 }
25590 case 'q':
25591 if (strncmp (KR_keyword, "/dev/sdaq4", 10) == 0)
25592 {
25593 {
25594 return dev_storage + 1003;
25595
25596 }
25597 }
25598 else
25599 {
25600 {
25601 return NULL;
25602
25603 }
25604 }
25605 case 'p':
25606 if (strncmp (KR_keyword, "/dev/sdap4", 10) == 0)
25607 {
25608 {
25609 return dev_storage + 988;
25610
25611 }
25612 }
25613 else
25614 {
25615 {
25616 return NULL;
25617
25618 }
25619 }
25620 case 'o':
25621 if (strncmp (KR_keyword, "/dev/sdao4", 10) == 0)
25622 {
25623 {
25624 return dev_storage + 973;
25625
25626 }
25627 }
25628 else
25629 {
25630 {
25631 return NULL;
25632
25633 }
25634 }
25635 case 'n':
25636 if (strncmp (KR_keyword, "/dev/sdan4", 10) == 0)
25637 {
25638 {
25639 return dev_storage + 958;
25640
25641 }
25642 }
25643 else
25644 {
25645 {
25646 return NULL;
25647
25648 }
25649 }
25650 case 'm':
25651 if (strncmp (KR_keyword, "/dev/sdam4", 10) == 0)
25652 {
25653 {
25654 return dev_storage + 943;
25655
25656 }
25657 }
25658 else
25659 {
25660 {
25661 return NULL;
25662
25663 }
25664 }
25665 case 'l':
25666 if (strncmp (KR_keyword, "/dev/sdal4", 10) == 0)
25667 {
25668 {
25669 return dev_storage + 928;
25670
25671 }
25672 }
25673 else
25674 {
25675 {
25676 return NULL;
25677
25678 }
25679 }
25680 case 'k':
25681 if (strncmp (KR_keyword, "/dev/sdak4", 10) == 0)
25682 {
25683 {
25684 return dev_storage + 913;
25685
25686 }
25687 }
25688 else
25689 {
25690 {
25691 return NULL;
25692
25693 }
25694 }
25695 case 'j':
25696 if (strncmp (KR_keyword, "/dev/sdaj4", 10) == 0)
25697 {
25698 {
25699 return dev_storage + 898;
25700
25701 }
25702 }
25703 else
25704 {
25705 {
25706 return NULL;
25707
25708 }
25709 }
25710 case 'i':
25711 if (strncmp (KR_keyword, "/dev/sdai4", 10) == 0)
25712 {
25713 {
25714 return dev_storage + 883;
25715
25716 }
25717 }
25718 else
25719 {
25720 {
25721 return NULL;
25722
25723 }
25724 }
25725 case 'h':
25726 if (strncmp (KR_keyword, "/dev/sdah4", 10) == 0)
25727 {
25728 {
25729 return dev_storage + 868;
25730
25731 }
25732 }
25733 else
25734 {
25735 {
25736 return NULL;
25737
25738 }
25739 }
25740 case 'g':
25741 if (strncmp (KR_keyword, "/dev/sdag4", 10) == 0)
25742 {
25743 {
25744 return dev_storage + 853;
25745
25746 }
25747 }
25748 else
25749 {
25750 {
25751 return NULL;
25752
25753 }
25754 }
25755 case 'f':
25756 if (strncmp (KR_keyword, "/dev/sdaf4", 10) == 0)
25757 {
25758 {
25759 return dev_storage + 838;
25760
25761 }
25762 }
25763 else
25764 {
25765 {
25766 return NULL;
25767
25768 }
25769 }
25770 case 'e':
25771 if (strncmp (KR_keyword, "/dev/sdae4", 10) == 0)
25772 {
25773 {
25774 return dev_storage + 823;
25775
25776 }
25777 }
25778 else
25779 {
25780 {
25781 return NULL;
25782
25783 }
25784 }
25785 case 'd':
25786 if (strncmp (KR_keyword, "/dev/sdad4", 10) == 0)
25787 {
25788 {
25789 return dev_storage + 808;
25790
25791 }
25792 }
25793 else
25794 {
25795 {
25796 return NULL;
25797
25798 }
25799 }
25800 case 'c':
25801 if (strncmp (KR_keyword, "/dev/sdac4", 10) == 0)
25802 {
25803 {
25804 return dev_storage + 793;
25805
25806 }
25807 }
25808 else
25809 {
25810 {
25811 return NULL;
25812
25813 }
25814 }
25815 case 'b':
25816 if (strncmp (KR_keyword, "/dev/sdab4", 10) == 0)
25817 {
25818 {
25819 return dev_storage + 778;
25820
25821 }
25822 }
25823 else
25824 {
25825 {
25826 return NULL;
25827
25828 }
25829 }
25830 case 'a':
25831 if (strncmp (KR_keyword, "/dev/sdaa4", 10) == 0)
25832 {
25833 {
25834 return dev_storage + 763;
25835
25836 }
25837 }
25838 else
25839 {
25840 {
25841 return NULL;
25842
25843 }
25844 }
25845 case '1':
25846 if (strncmp (KR_keyword, "/dev/sda14", 10) == 0)
25847 {
25848 {
25849 return dev_storage + 357;
25850
25851 }
25852 }
25853 else
25854 {
25855 {
25856 return NULL;
25857
25858 }
25859 }
25860 default:
25861 {
25862 return NULL;
25863
25864 }
25865 }
25866 case '1':
25867 switch (KR_keyword [8])
25868 {
25869 case '2':
25870 if (strncmp (KR_keyword, "/dev/st124", 10) == 0)
25871 {
25872 {
25873 return dev_storage + 2506;
25874
25875 }
25876 }
25877 else
25878 {
25879 {
25880 return NULL;
25881
25882 }
25883 }
25884 case '1':
25885 if (strncmp (KR_keyword, "/dev/st114", 10) == 0)
25886 {
25887 {
25888 return dev_storage + 2496;
25889
25890 }
25891 }
25892 else
25893 {
25894 {
25895 return NULL;
25896
25897 }
25898 }
25899 case '0':
25900 if (strncmp (KR_keyword, "/dev/st104", 10) == 0)
25901 {
25902 {
25903 return dev_storage + 2486;
25904
25905 }
25906 }
25907 else
25908 {
25909 {
25910 return NULL;
25911
25912 }
25913 }
25914 default:
25915 {
25916 return NULL;
25917
25918 }
25919 }
25920 default:
25921 {
25922 return NULL;
25923
25924 }
25925 }
25926 case '3':
25927 switch (KR_keyword [7])
25928 {
25929 case 'z':
25930 if (strncmp (KR_keyword, "/dev/sdz13", 10) == 0)
25931 {
25932 {
25933 return dev_storage + 731;
25934
25935 }
25936 }
25937 else
25938 {
25939 {
25940 return NULL;
25941
25942 }
25943 }
25944 case 'y':
25945 switch (KR_keyword [8])
25946 {
25947 case 'S':
25948 if (strncmp (KR_keyword, "/dev/ttyS3", 10) == 0)
25949 {
25950 {
25951 return dev_storage + 2514;
25952
25953 }
25954 }
25955 else
25956 {
25957 {
25958 return NULL;
25959
25960 }
25961 }
25962 case '6':
25963 if (strncmp (KR_keyword, "/dev/pty63", 10) == 0)
25964 {
25965 {
25966 return dev_storage + 300;
25967
25968 }
25969 }
25970 else
25971 {
25972 {
25973 return NULL;
25974
25975 }
25976 }
25977 case '5':
25978 if (strncmp (KR_keyword, "/dev/pty53", 10) == 0)
25979 {
25980 {
25981 return dev_storage + 290;
25982
25983 }
25984 }
25985 else
25986 {
25987 {
25988 return NULL;
25989
25990 }
25991 }
25992 case '4':
25993 if (strncmp (KR_keyword, "/dev/pty43", 10) == 0)
25994 {
25995 {
25996 return dev_storage + 280;
25997
25998 }
25999 }
26000 else
26001 {
26002 {
26003 return NULL;
26004
26005 }
26006 }
26007 case '3':
26008 if (strncmp (KR_keyword, "/dev/pty33", 10) == 0)
26009 {
26010 {
26011 return dev_storage + 270;
26012
26013 }
26014 }
26015 else
26016 {
26017 {
26018 return NULL;
26019
26020 }
26021 }
26022 case '2':
26023 if (strncmp (KR_keyword, "/dev/pty23", 10) == 0)
26024 {
26025 {
26026 return dev_storage + 260;
26027
26028 }
26029 }
26030 else
26031 {
26032 {
26033 return NULL;
26034
26035 }
26036 }
26037 case '1':
26038 switch (KR_keyword [5])
26039 {
26040 case 's':
26041 if (strncmp (KR_keyword, "/dev/sdy13", 10) == 0)
26042 {
26043 {
26044 return dev_storage + 716;
26045
26046 }
26047 }
26048 else
26049 {
26050 {
26051 return NULL;
26052
26053 }
26054 }
26055 case 'p':
26056 if (strncmp (KR_keyword, "/dev/pty13", 10) == 0)
26057 {
26058 {
26059 return dev_storage + 250;
26060
26061 }
26062 }
26063 else
26064 {
26065 {
26066 return NULL;
26067
26068 }
26069 }
26070 default:
26071 {
26072 return NULL;
26073
26074 }
26075 }
26076 default:
26077 {
26078 return NULL;
26079
26080 }
26081 }
26082 case 'x':
26083 if (strncmp (KR_keyword, "/dev/sdx13", 10) == 0)
26084 {
26085 {
26086 return dev_storage + 701;
26087
26088 }
26089 }
26090 else
26091 {
26092 {
26093 return NULL;
26094
26095 }
26096 }
26097 case 'w':
26098 if (strncmp (KR_keyword, "/dev/sdw13", 10) == 0)
26099 {
26100 {
26101 return dev_storage + 686;
26102
26103 }
26104 }
26105 else
26106 {
26107 {
26108 return NULL;
26109
26110 }
26111 }
26112 case 'v':
26113 if (strncmp (KR_keyword, "/dev/sdv13", 10) == 0)
26114 {
26115 {
26116 return dev_storage + 671;
26117
26118 }
26119 }
26120 else
26121 {
26122 {
26123 return NULL;
26124
26125 }
26126 }
26127 case 'u':
26128 if (strncmp (KR_keyword, "/dev/sdu13", 10) == 0)
26129 {
26130 {
26131 return dev_storage + 656;
26132
26133 }
26134 }
26135 else
26136 {
26137 {
26138 return NULL;
26139
26140 }
26141 }
26142 case 't':
26143 switch (KR_keyword [8])
26144 {
26145 case '9':
26146 if (strncmp (KR_keyword, "/dev/nst93", 10) == 0)
26147 {
26148 {
26149 return dev_storage + 199;
26150
26151 }
26152 }
26153 else
26154 {
26155 {
26156 return NULL;
26157
26158 }
26159 }
26160 case '8':
26161 if (strncmp (KR_keyword, "/dev/nst83", 10) == 0)
26162 {
26163 {
26164 return dev_storage + 189;
26165
26166 }
26167 }
26168 else
26169 {
26170 {
26171 return NULL;
26172
26173 }
26174 }
26175 case '7':
26176 if (strncmp (KR_keyword, "/dev/nst73", 10) == 0)
26177 {
26178 {
26179 return dev_storage + 179;
26180
26181 }
26182 }
26183 else
26184 {
26185 {
26186 return NULL;
26187
26188 }
26189 }
26190 case '6':
26191 if (strncmp (KR_keyword, "/dev/nst63", 10) == 0)
26192 {
26193 {
26194 return dev_storage + 169;
26195
26196 }
26197 }
26198 else
26199 {
26200 {
26201 return NULL;
26202
26203 }
26204 }
26205 case '5':
26206 if (strncmp (KR_keyword, "/dev/nst53", 10) == 0)
26207 {
26208 {
26209 return dev_storage + 159;
26210
26211 }
26212 }
26213 else
26214 {
26215 {
26216 return NULL;
26217
26218 }
26219 }
26220 case '4':
26221 if (strncmp (KR_keyword, "/dev/nst43", 10) == 0)
26222 {
26223 {
26224 return dev_storage + 149;
26225
26226 }
26227 }
26228 else
26229 {
26230 {
26231 return NULL;
26232
26233 }
26234 }
26235 case '3':
26236 if (strncmp (KR_keyword, "/dev/nst33", 10) == 0)
26237 {
26238 {
26239 return dev_storage + 139;
26240
26241 }
26242 }
26243 else
26244 {
26245 {
26246 return NULL;
26247
26248 }
26249 }
26250 case '2':
26251 if (strncmp (KR_keyword, "/dev/nst23", 10) == 0)
26252 {
26253 {
26254 return dev_storage + 129;
26255
26256 }
26257 }
26258 else
26259 {
26260 {
26261 return NULL;
26262
26263 }
26264 }
26265 case '1':
26266 switch (KR_keyword [5])
26267 {
26268 case 's':
26269 if (strncmp (KR_keyword, "/dev/sdt13", 10) == 0)
26270 {
26271 {
26272 return dev_storage + 641;
26273
26274 }
26275 }
26276 else
26277 {
26278 {
26279 return NULL;
26280
26281 }
26282 }
26283 case 'n':
26284 if (strncmp (KR_keyword, "/dev/nst13", 10) == 0)
26285 {
26286 {
26287 return dev_storage + 119;
26288
26289 }
26290 }
26291 else
26292 {
26293 {
26294 return NULL;
26295
26296 }
26297 }
26298 default:
26299 {
26300 return NULL;
26301
26302 }
26303 }
26304 default:
26305 {
26306 return NULL;
26307
26308 }
26309 }
26310 case 's':
26311 if (strncmp (KR_keyword, "/dev/sds13", 10) == 0)
26312 {
26313 {
26314 return dev_storage + 626;
26315
26316 }
26317 }
26318 else
26319 {
26320 {
26321 return NULL;
26322
26323 }
26324 }
26325 case 'r':
26326 if (strncmp (KR_keyword, "/dev/sdr13", 10) == 0)
26327 {
26328 {
26329 return dev_storage + 611;
26330
26331 }
26332 }
26333 else
26334 {
26335 {
26336 return NULL;
26337
26338 }
26339 }
26340 case 'q':
26341 if (strncmp (KR_keyword, "/dev/sdq13", 10) == 0)
26342 {
26343 {
26344 return dev_storage + 596;
26345
26346 }
26347 }
26348 else
26349 {
26350 {
26351 return NULL;
26352
26353 }
26354 }
26355 case 'p':
26356 if (strncmp (KR_keyword, "/dev/sdp13", 10) == 0)
26357 {
26358 {
26359 return dev_storage + 581;
26360
26361 }
26362 }
26363 else
26364 {
26365 {
26366 return NULL;
26367
26368 }
26369 }
26370 case 'o':
26371 if (strncmp (KR_keyword, "/dev/sdo13", 10) == 0)
26372 {
26373 {
26374 return dev_storage + 566;
26375
26376 }
26377 }
26378 else
26379 {
26380 {
26381 return NULL;
26382
26383 }
26384 }
26385 case 'n':
26386 switch (KR_keyword [5])
26387 {
26388 case 's':
26389 if (strncmp (KR_keyword, "/dev/sdn13", 10) == 0)
26390 {
26391 {
26392 return dev_storage + 551;
26393
26394 }
26395 }
26396 else
26397 {
26398 {
26399 return NULL;
26400
26401 }
26402 }
26403 case 'c':
26404 if (strncmp (KR_keyword, "/dev/cons3", 10) == 0)
26405 {
26406 {
26407 return dev_storage + 23;
26408
26409 }
26410 }
26411 else
26412 {
26413 {
26414 return NULL;
26415
26416 }
26417 }
26418 default:
26419 {
26420 return NULL;
26421
26422 }
26423 }
26424 case 'm':
26425 switch (KR_keyword [5])
26426 {
26427 case 's':
26428 if (strncmp (KR_keyword, "/dev/sdm13", 10) == 0)
26429 {
26430 {
26431 return dev_storage + 536;
26432
26433 }
26434 }
26435 else
26436 {
26437 {
26438 return NULL;
26439
26440 }
26441 }
26442 case 'c':
26443 if (strncmp (KR_keyword, "/dev/com13", 10) == 0)
26444 {
26445 {
26446 return dev_storage + 14;
26447
26448 }
26449 }
26450 else
26451 {
26452 {
26453 return NULL;
26454
26455 }
26456 }
26457 default:
26458 {
26459 return NULL;
26460
26461 }
26462 }
26463 case 'l':
26464 if (strncmp (KR_keyword, "/dev/sdl13", 10) == 0)
26465 {
26466 {
26467 return dev_storage + 521;
26468
26469 }
26470 }
26471 else
26472 {
26473 {
26474 return NULL;
26475
26476 }
26477 }
26478 case 'k':
26479 if (strncmp (KR_keyword, "/dev/sdk13", 10) == 0)
26480 {
26481 {
26482 return dev_storage + 506;
26483
26484 }
26485 }
26486 else
26487 {
26488 {
26489 return NULL;
26490
26491 }
26492 }
26493 case 'j':
26494 if (strncmp (KR_keyword, "/dev/sdj13", 10) == 0)
26495 {
26496 {
26497 return dev_storage + 491;
26498
26499 }
26500 }
26501 else
26502 {
26503 {
26504 return NULL;
26505
26506 }
26507 }
26508 case 'i':
26509 if (strncmp (KR_keyword, "/dev/sdi13", 10) == 0)
26510 {
26511 {
26512 return dev_storage + 476;
26513
26514 }
26515 }
26516 else
26517 {
26518 {
26519 return NULL;
26520
26521 }
26522 }
26523 case 'h':
26524 if (strncmp (KR_keyword, "/dev/sdh13", 10) == 0)
26525 {
26526 {
26527 return dev_storage + 461;
26528
26529 }
26530 }
26531 else
26532 {
26533 {
26534 return NULL;
26535
26536 }
26537 }
26538 case 'g':
26539 if (strncmp (KR_keyword, "/dev/sdg13", 10) == 0)
26540 {
26541 {
26542 return dev_storage + 446;
26543
26544 }
26545 }
26546 else
26547 {
26548 {
26549 return NULL;
26550
26551 }
26552 }
26553 case 'f':
26554 if (strncmp (KR_keyword, "/dev/sdf13", 10) == 0)
26555 {
26556 {
26557 return dev_storage + 431;
26558
26559 }
26560 }
26561 else
26562 {
26563 {
26564 return NULL;
26565
26566 }
26567 }
26568 case 'e':
26569 if (strncmp (KR_keyword, "/dev/sde13", 10) == 0)
26570 {
26571 {
26572 return dev_storage + 416;
26573
26574 }
26575 }
26576 else
26577 {
26578 {
26579 return NULL;
26580
26581 }
26582 }
26583 case 'd':
26584 switch (KR_keyword [8])
26585 {
26586 case 'x':
26587 if (strncmp (KR_keyword, "/dev/sddx3", 10) == 0)
26588 {
26589 {
26590 return dev_storage + 2353;
26591
26592 }
26593 }
26594 else
26595 {
26596 {
26597 return NULL;
26598
26599 }
26600 }
26601 case 'w':
26602 if (strncmp (KR_keyword, "/dev/sddw3", 10) == 0)
26603 {
26604 {
26605 return dev_storage + 2338;
26606
26607 }
26608 }
26609 else
26610 {
26611 {
26612 return NULL;
26613
26614 }
26615 }
26616 case 'v':
26617 if (strncmp (KR_keyword, "/dev/sddv3", 10) == 0)
26618 {
26619 {
26620 return dev_storage + 2323;
26621
26622 }
26623 }
26624 else
26625 {
26626 {
26627 return NULL;
26628
26629 }
26630 }
26631 case 'u':
26632 if (strncmp (KR_keyword, "/dev/sddu3", 10) == 0)
26633 {
26634 {
26635 return dev_storage + 2308;
26636
26637 }
26638 }
26639 else
26640 {
26641 {
26642 return NULL;
26643
26644 }
26645 }
26646 case 't':
26647 if (strncmp (KR_keyword, "/dev/sddt3", 10) == 0)
26648 {
26649 {
26650 return dev_storage + 2293;
26651
26652 }
26653 }
26654 else
26655 {
26656 {
26657 return NULL;
26658
26659 }
26660 }
26661 case 's':
26662 if (strncmp (KR_keyword, "/dev/sdds3", 10) == 0)
26663 {
26664 {
26665 return dev_storage + 2278;
26666
26667 }
26668 }
26669 else
26670 {
26671 {
26672 return NULL;
26673
26674 }
26675 }
26676 case 'r':
26677 if (strncmp (KR_keyword, "/dev/sddr3", 10) == 0)
26678 {
26679 {
26680 return dev_storage + 2263;
26681
26682 }
26683 }
26684 else
26685 {
26686 {
26687 return NULL;
26688
26689 }
26690 }
26691 case 'q':
26692 if (strncmp (KR_keyword, "/dev/sddq3", 10) == 0)
26693 {
26694 {
26695 return dev_storage + 2248;
26696
26697 }
26698 }
26699 else
26700 {
26701 {
26702 return NULL;
26703
26704 }
26705 }
26706 case 'p':
26707 if (strncmp (KR_keyword, "/dev/sddp3", 10) == 0)
26708 {
26709 {
26710 return dev_storage + 2233;
26711
26712 }
26713 }
26714 else
26715 {
26716 {
26717 return NULL;
26718
26719 }
26720 }
26721 case 'o':
26722 if (strncmp (KR_keyword, "/dev/sddo3", 10) == 0)
26723 {
26724 {
26725 return dev_storage + 2218;
26726
26727 }
26728 }
26729 else
26730 {
26731 {
26732 return NULL;
26733
26734 }
26735 }
26736 case 'n':
26737 if (strncmp (KR_keyword, "/dev/sddn3", 10) == 0)
26738 {
26739 {
26740 return dev_storage + 2203;
26741
26742 }
26743 }
26744 else
26745 {
26746 {
26747 return NULL;
26748
26749 }
26750 }
26751 case 'm':
26752 if (strncmp (KR_keyword, "/dev/sddm3", 10) == 0)
26753 {
26754 {
26755 return dev_storage + 2188;
26756
26757 }
26758 }
26759 else
26760 {
26761 {
26762 return NULL;
26763
26764 }
26765 }
26766 case 'l':
26767 if (strncmp (KR_keyword, "/dev/sddl3", 10) == 0)
26768 {
26769 {
26770 return dev_storage + 2173;
26771
26772 }
26773 }
26774 else
26775 {
26776 {
26777 return NULL;
26778
26779 }
26780 }
26781 case 'k':
26782 if (strncmp (KR_keyword, "/dev/sddk3", 10) == 0)
26783 {
26784 {
26785 return dev_storage + 2158;
26786
26787 }
26788 }
26789 else
26790 {
26791 {
26792 return NULL;
26793
26794 }
26795 }
26796 case 'j':
26797 if (strncmp (KR_keyword, "/dev/sddj3", 10) == 0)
26798 {
26799 {
26800 return dev_storage + 2143;
26801
26802 }
26803 }
26804 else
26805 {
26806 {
26807 return NULL;
26808
26809 }
26810 }
26811 case 'i':
26812 if (strncmp (KR_keyword, "/dev/sddi3", 10) == 0)
26813 {
26814 {
26815 return dev_storage + 2128;
26816
26817 }
26818 }
26819 else
26820 {
26821 {
26822 return NULL;
26823
26824 }
26825 }
26826 case 'h':
26827 if (strncmp (KR_keyword, "/dev/sddh3", 10) == 0)
26828 {
26829 {
26830 return dev_storage + 2113;
26831
26832 }
26833 }
26834 else
26835 {
26836 {
26837 return NULL;
26838
26839 }
26840 }
26841 case 'g':
26842 if (strncmp (KR_keyword, "/dev/sddg3", 10) == 0)
26843 {
26844 {
26845 return dev_storage + 2098;
26846
26847 }
26848 }
26849 else
26850 {
26851 {
26852 return NULL;
26853
26854 }
26855 }
26856 case 'f':
26857 if (strncmp (KR_keyword, "/dev/sddf3", 10) == 0)
26858 {
26859 {
26860 return dev_storage + 2083;
26861
26862 }
26863 }
26864 else
26865 {
26866 {
26867 return NULL;
26868
26869 }
26870 }
26871 case 'e':
26872 if (strncmp (KR_keyword, "/dev/sdde3", 10) == 0)
26873 {
26874 {
26875 return dev_storage + 2068;
26876
26877 }
26878 }
26879 else
26880 {
26881 {
26882 return NULL;
26883
26884 }
26885 }
26886 case 'd':
26887 if (strncmp (KR_keyword, "/dev/sddd3", 10) == 0)
26888 {
26889 {
26890 return dev_storage + 2053;
26891
26892 }
26893 }
26894 else
26895 {
26896 {
26897 return NULL;
26898
26899 }
26900 }
26901 case 'c':
26902 if (strncmp (KR_keyword, "/dev/sddc3", 10) == 0)
26903 {
26904 {
26905 return dev_storage + 2038;
26906
26907 }
26908 }
26909 else
26910 {
26911 {
26912 return NULL;
26913
26914 }
26915 }
26916 case 'b':
26917 if (strncmp (KR_keyword, "/dev/sddb3", 10) == 0)
26918 {
26919 {
26920 return dev_storage + 2023;
26921
26922 }
26923 }
26924 else
26925 {
26926 {
26927 return NULL;
26928
26929 }
26930 }
26931 case 'a':
26932 if (strncmp (KR_keyword, "/dev/sdda3", 10) == 0)
26933 {
26934 {
26935 return dev_storage + 2008;
26936
26937 }
26938 }
26939 else
26940 {
26941 {
26942 return NULL;
26943
26944 }
26945 }
26946 case '1':
26947 switch (KR_keyword [6])
26948 {
26949 case 'd':
26950 if (strncmp (KR_keyword, "/dev/sdd13", 10) == 0)
26951 {
26952 {
26953 return dev_storage + 401;
26954
26955 }
26956 }
26957 else
26958 {
26959 {
26960 return NULL;
26961
26962 }
26963 }
26964 case 'c':
26965 if (strncmp (KR_keyword, "/dev/scd13", 10) == 0)
26966 {
26967 {
26968 return dev_storage + 315;
26969
26970 }
26971 }
26972 else
26973 {
26974 {
26975 return NULL;
26976
26977 }
26978 }
26979 default:
26980 {
26981 return NULL;
26982
26983 }
26984 }
26985 default:
26986 {
26987 return NULL;
26988
26989 }
26990 }
26991 case 'c':
26992 switch (KR_keyword [8])
26993 {
26994 case 'z':
26995 if (strncmp (KR_keyword, "/dev/sdcz3", 10) == 0)
26996 {
26997 {
26998 return dev_storage + 1969;
26999
27000 }
27001 }
27002 else
27003 {
27004 {
27005 return NULL;
27006
27007 }
27008 }
27009 case 'y':
27010 if (strncmp (KR_keyword, "/dev/sdcy3", 10) == 0)
27011 {
27012 {
27013 return dev_storage + 1954;
27014
27015 }
27016 }
27017 else
27018 {
27019 {
27020 return NULL;
27021
27022 }
27023 }
27024 case 'x':
27025 if (strncmp (KR_keyword, "/dev/sdcx3", 10) == 0)
27026 {
27027 {
27028 return dev_storage + 1939;
27029
27030 }
27031 }
27032 else
27033 {
27034 {
27035 return NULL;
27036
27037 }
27038 }
27039 case 'w':
27040 if (strncmp (KR_keyword, "/dev/sdcw3", 10) == 0)
27041 {
27042 {
27043 return dev_storage + 1924;
27044
27045 }
27046 }
27047 else
27048 {
27049 {
27050 return NULL;
27051
27052 }
27053 }
27054 case 'v':
27055 if (strncmp (KR_keyword, "/dev/sdcv3", 10) == 0)
27056 {
27057 {
27058 return dev_storage + 1909;
27059
27060 }
27061 }
27062 else
27063 {
27064 {
27065 return NULL;
27066
27067 }
27068 }
27069 case 'u':
27070 if (strncmp (KR_keyword, "/dev/sdcu3", 10) == 0)
27071 {
27072 {
27073 return dev_storage + 1894;
27074
27075 }
27076 }
27077 else
27078 {
27079 {
27080 return NULL;
27081
27082 }
27083 }
27084 case 't':
27085 if (strncmp (KR_keyword, "/dev/sdct3", 10) == 0)
27086 {
27087 {
27088 return dev_storage + 1879;
27089
27090 }
27091 }
27092 else
27093 {
27094 {
27095 return NULL;
27096
27097 }
27098 }
27099 case 's':
27100 if (strncmp (KR_keyword, "/dev/sdcs3", 10) == 0)
27101 {
27102 {
27103 return dev_storage + 1864;
27104
27105 }
27106 }
27107 else
27108 {
27109 {
27110 return NULL;
27111
27112 }
27113 }
27114 case 'r':
27115 if (strncmp (KR_keyword, "/dev/sdcr3", 10) == 0)
27116 {
27117 {
27118 return dev_storage + 1849;
27119
27120 }
27121 }
27122 else
27123 {
27124 {
27125 return NULL;
27126
27127 }
27128 }
27129 case 'q':
27130 if (strncmp (KR_keyword, "/dev/sdcq3", 10) == 0)
27131 {
27132 {
27133 return dev_storage + 1834;
27134
27135 }
27136 }
27137 else
27138 {
27139 {
27140 return NULL;
27141
27142 }
27143 }
27144 case 'p':
27145 if (strncmp (KR_keyword, "/dev/sdcp3", 10) == 0)
27146 {
27147 {
27148 return dev_storage + 1819;
27149
27150 }
27151 }
27152 else
27153 {
27154 {
27155 return NULL;
27156
27157 }
27158 }
27159 case 'o':
27160 if (strncmp (KR_keyword, "/dev/sdco3", 10) == 0)
27161 {
27162 {
27163 return dev_storage + 1804;
27164
27165 }
27166 }
27167 else
27168 {
27169 {
27170 return NULL;
27171
27172 }
27173 }
27174 case 'n':
27175 if (strncmp (KR_keyword, "/dev/sdcn3", 10) == 0)
27176 {
27177 {
27178 return dev_storage + 1789;
27179
27180 }
27181 }
27182 else
27183 {
27184 {
27185 return NULL;
27186
27187 }
27188 }
27189 case 'm':
27190 if (strncmp (KR_keyword, "/dev/sdcm3", 10) == 0)
27191 {
27192 {
27193 return dev_storage + 1774;
27194
27195 }
27196 }
27197 else
27198 {
27199 {
27200 return NULL;
27201
27202 }
27203 }
27204 case 'l':
27205 if (strncmp (KR_keyword, "/dev/sdcl3", 10) == 0)
27206 {
27207 {
27208 return dev_storage + 1759;
27209
27210 }
27211 }
27212 else
27213 {
27214 {
27215 return NULL;
27216
27217 }
27218 }
27219 case 'k':
27220 if (strncmp (KR_keyword, "/dev/sdck3", 10) == 0)
27221 {
27222 {
27223 return dev_storage + 1744;
27224
27225 }
27226 }
27227 else
27228 {
27229 {
27230 return NULL;
27231
27232 }
27233 }
27234 case 'j':
27235 if (strncmp (KR_keyword, "/dev/sdcj3", 10) == 0)
27236 {
27237 {
27238 return dev_storage + 1729;
27239
27240 }
27241 }
27242 else
27243 {
27244 {
27245 return NULL;
27246
27247 }
27248 }
27249 case 'i':
27250 if (strncmp (KR_keyword, "/dev/sdci3", 10) == 0)
27251 {
27252 {
27253 return dev_storage + 1714;
27254
27255 }
27256 }
27257 else
27258 {
27259 {
27260 return NULL;
27261
27262 }
27263 }
27264 case 'h':
27265 if (strncmp (KR_keyword, "/dev/sdch3", 10) == 0)
27266 {
27267 {
27268 return dev_storage + 1699;
27269
27270 }
27271 }
27272 else
27273 {
27274 {
27275 return NULL;
27276
27277 }
27278 }
27279 case 'g':
27280 if (strncmp (KR_keyword, "/dev/sdcg3", 10) == 0)
27281 {
27282 {
27283 return dev_storage + 1684;
27284
27285 }
27286 }
27287 else
27288 {
27289 {
27290 return NULL;
27291
27292 }
27293 }
27294 case 'f':
27295 if (strncmp (KR_keyword, "/dev/sdcf3", 10) == 0)
27296 {
27297 {
27298 return dev_storage + 1669;
27299
27300 }
27301 }
27302 else
27303 {
27304 {
27305 return NULL;
27306
27307 }
27308 }
27309 case 'e':
27310 if (strncmp (KR_keyword, "/dev/sdce3", 10) == 0)
27311 {
27312 {
27313 return dev_storage + 1654;
27314
27315 }
27316 }
27317 else
27318 {
27319 {
27320 return NULL;
27321
27322 }
27323 }
27324 case 'd':
27325 if (strncmp (KR_keyword, "/dev/sdcd3", 10) == 0)
27326 {
27327 {
27328 return dev_storage + 1639;
27329
27330 }
27331 }
27332 else
27333 {
27334 {
27335 return NULL;
27336
27337 }
27338 }
27339 case 'c':
27340 if (strncmp (KR_keyword, "/dev/sdcc3", 10) == 0)
27341 {
27342 {
27343 return dev_storage + 1624;
27344
27345 }
27346 }
27347 else
27348 {
27349 {
27350 return NULL;
27351
27352 }
27353 }
27354 case 'b':
27355 if (strncmp (KR_keyword, "/dev/sdcb3", 10) == 0)
27356 {
27357 {
27358 return dev_storage + 1609;
27359
27360 }
27361 }
27362 else
27363 {
27364 {
27365 return NULL;
27366
27367 }
27368 }
27369 case 'a':
27370 if (strncmp (KR_keyword, "/dev/sdca3", 10) == 0)
27371 {
27372 {
27373 return dev_storage + 1594;
27374
27375 }
27376 }
27377 else
27378 {
27379 {
27380 return NULL;
27381
27382 }
27383 }
27384 case '1':
27385 if (strncmp (KR_keyword, "/dev/sdc13", 10) == 0)
27386 {
27387 {
27388 return dev_storage + 386;
27389
27390 }
27391 }
27392 else
27393 {
27394 {
27395 return NULL;
27396
27397 }
27398 }
27399 default:
27400 {
27401 return NULL;
27402
27403 }
27404 }
27405 case 'b':
27406 switch (KR_keyword [8])
27407 {
27408 case 'z':
27409 if (strncmp (KR_keyword, "/dev/sdbz3", 10) == 0)
27410 {
27411 {
27412 return dev_storage + 1553;
27413
27414 }
27415 }
27416 else
27417 {
27418 {
27419 return NULL;
27420
27421 }
27422 }
27423 case 'y':
27424 if (strncmp (KR_keyword, "/dev/sdby3", 10) == 0)
27425 {
27426 {
27427 return dev_storage + 1538;
27428
27429 }
27430 }
27431 else
27432 {
27433 {
27434 return NULL;
27435
27436 }
27437 }
27438 case 'x':
27439 if (strncmp (KR_keyword, "/dev/sdbx3", 10) == 0)
27440 {
27441 {
27442 return dev_storage + 1523;
27443
27444 }
27445 }
27446 else
27447 {
27448 {
27449 return NULL;
27450
27451 }
27452 }
27453 case 'w':
27454 if (strncmp (KR_keyword, "/dev/sdbw3", 10) == 0)
27455 {
27456 {
27457 return dev_storage + 1508;
27458
27459 }
27460 }
27461 else
27462 {
27463 {
27464 return NULL;
27465
27466 }
27467 }
27468 case 'v':
27469 if (strncmp (KR_keyword, "/dev/sdbv3", 10) == 0)
27470 {
27471 {
27472 return dev_storage + 1493;
27473
27474 }
27475 }
27476 else
27477 {
27478 {
27479 return NULL;
27480
27481 }
27482 }
27483 case 'u':
27484 if (strncmp (KR_keyword, "/dev/sdbu3", 10) == 0)
27485 {
27486 {
27487 return dev_storage + 1478;
27488
27489 }
27490 }
27491 else
27492 {
27493 {
27494 return NULL;
27495
27496 }
27497 }
27498 case 't':
27499 if (strncmp (KR_keyword, "/dev/sdbt3", 10) == 0)
27500 {
27501 {
27502 return dev_storage + 1463;
27503
27504 }
27505 }
27506 else
27507 {
27508 {
27509 return NULL;
27510
27511 }
27512 }
27513 case 's':
27514 if (strncmp (KR_keyword, "/dev/sdbs3", 10) == 0)
27515 {
27516 {
27517 return dev_storage + 1448;
27518
27519 }
27520 }
27521 else
27522 {
27523 {
27524 return NULL;
27525
27526 }
27527 }
27528 case 'r':
27529 if (strncmp (KR_keyword, "/dev/sdbr3", 10) == 0)
27530 {
27531 {
27532 return dev_storage + 1433;
27533
27534 }
27535 }
27536 else
27537 {
27538 {
27539 return NULL;
27540
27541 }
27542 }
27543 case 'q':
27544 if (strncmp (KR_keyword, "/dev/sdbq3", 10) == 0)
27545 {
27546 {
27547 return dev_storage + 1418;
27548
27549 }
27550 }
27551 else
27552 {
27553 {
27554 return NULL;
27555
27556 }
27557 }
27558 case 'p':
27559 if (strncmp (KR_keyword, "/dev/sdbp3", 10) == 0)
27560 {
27561 {
27562 return dev_storage + 1403;
27563
27564 }
27565 }
27566 else
27567 {
27568 {
27569 return NULL;
27570
27571 }
27572 }
27573 case 'o':
27574 if (strncmp (KR_keyword, "/dev/sdbo3", 10) == 0)
27575 {
27576 {
27577 return dev_storage + 1388;
27578
27579 }
27580 }
27581 else
27582 {
27583 {
27584 return NULL;
27585
27586 }
27587 }
27588 case 'n':
27589 if (strncmp (KR_keyword, "/dev/sdbn3", 10) == 0)
27590 {
27591 {
27592 return dev_storage + 1373;
27593
27594 }
27595 }
27596 else
27597 {
27598 {
27599 return NULL;
27600
27601 }
27602 }
27603 case 'm':
27604 if (strncmp (KR_keyword, "/dev/sdbm3", 10) == 0)
27605 {
27606 {
27607 return dev_storage + 1358;
27608
27609 }
27610 }
27611 else
27612 {
27613 {
27614 return NULL;
27615
27616 }
27617 }
27618 case 'l':
27619 if (strncmp (KR_keyword, "/dev/sdbl3", 10) == 0)
27620 {
27621 {
27622 return dev_storage + 1343;
27623
27624 }
27625 }
27626 else
27627 {
27628 {
27629 return NULL;
27630
27631 }
27632 }
27633 case 'k':
27634 if (strncmp (KR_keyword, "/dev/sdbk3", 10) == 0)
27635 {
27636 {
27637 return dev_storage + 1328;
27638
27639 }
27640 }
27641 else
27642 {
27643 {
27644 return NULL;
27645
27646 }
27647 }
27648 case 'j':
27649 if (strncmp (KR_keyword, "/dev/sdbj3", 10) == 0)
27650 {
27651 {
27652 return dev_storage + 1313;
27653
27654 }
27655 }
27656 else
27657 {
27658 {
27659 return NULL;
27660
27661 }
27662 }
27663 case 'i':
27664 if (strncmp (KR_keyword, "/dev/sdbi3", 10) == 0)
27665 {
27666 {
27667 return dev_storage + 1298;
27668
27669 }
27670 }
27671 else
27672 {
27673 {
27674 return NULL;
27675
27676 }
27677 }
27678 case 'h':
27679 if (strncmp (KR_keyword, "/dev/sdbh3", 10) == 0)
27680 {
27681 {
27682 return dev_storage + 1283;
27683
27684 }
27685 }
27686 else
27687 {
27688 {
27689 return NULL;
27690
27691 }
27692 }
27693 case 'g':
27694 if (strncmp (KR_keyword, "/dev/sdbg3", 10) == 0)
27695 {
27696 {
27697 return dev_storage + 1268;
27698
27699 }
27700 }
27701 else
27702 {
27703 {
27704 return NULL;
27705
27706 }
27707 }
27708 case 'f':
27709 if (strncmp (KR_keyword, "/dev/sdbf3", 10) == 0)
27710 {
27711 {
27712 return dev_storage + 1253;
27713
27714 }
27715 }
27716 else
27717 {
27718 {
27719 return NULL;
27720
27721 }
27722 }
27723 case 'e':
27724 if (strncmp (KR_keyword, "/dev/sdbe3", 10) == 0)
27725 {
27726 {
27727 return dev_storage + 1238;
27728
27729 }
27730 }
27731 else
27732 {
27733 {
27734 return NULL;
27735
27736 }
27737 }
27738 case 'd':
27739 if (strncmp (KR_keyword, "/dev/sdbd3", 10) == 0)
27740 {
27741 {
27742 return dev_storage + 1223;
27743
27744 }
27745 }
27746 else
27747 {
27748 {
27749 return NULL;
27750
27751 }
27752 }
27753 case 'c':
27754 if (strncmp (KR_keyword, "/dev/sdbc3", 10) == 0)
27755 {
27756 {
27757 return dev_storage + 1208;
27758
27759 }
27760 }
27761 else
27762 {
27763 {
27764 return NULL;
27765
27766 }
27767 }
27768 case 'b':
27769 if (strncmp (KR_keyword, "/dev/sdbb3", 10) == 0)
27770 {
27771 {
27772 return dev_storage + 1193;
27773
27774 }
27775 }
27776 else
27777 {
27778 {
27779 return NULL;
27780
27781 }
27782 }
27783 case 'a':
27784 if (strncmp (KR_keyword, "/dev/sdba3", 10) == 0)
27785 {
27786 {
27787 return dev_storage + 1178;
27788
27789 }
27790 }
27791 else
27792 {
27793 {
27794 return NULL;
27795
27796 }
27797 }
27798 case '1':
27799 if (strncmp (KR_keyword, "/dev/sdb13", 10) == 0)
27800 {
27801 {
27802 return dev_storage + 371;
27803
27804 }
27805 }
27806 else
27807 {
27808 {
27809 return NULL;
27810
27811 }
27812 }
27813 default:
27814 {
27815 return NULL;
27816
27817 }
27818 }
27819 case 'a':
27820 switch (KR_keyword [8])
27821 {
27822 case 'z':
27823 if (strncmp (KR_keyword, "/dev/sdaz3", 10) == 0)
27824 {
27825 {
27826 return dev_storage + 1137;
27827
27828 }
27829 }
27830 else
27831 {
27832 {
27833 return NULL;
27834
27835 }
27836 }
27837 case 'y':
27838 if (strncmp (KR_keyword, "/dev/sday3", 10) == 0)
27839 {
27840 {
27841 return dev_storage + 1122;
27842
27843 }
27844 }
27845 else
27846 {
27847 {
27848 return NULL;
27849
27850 }
27851 }
27852 case 'x':
27853 if (strncmp (KR_keyword, "/dev/sdax3", 10) == 0)
27854 {
27855 {
27856 return dev_storage + 1107;
27857
27858 }
27859 }
27860 else
27861 {
27862 {
27863 return NULL;
27864
27865 }
27866 }
27867 case 'w':
27868 if (strncmp (KR_keyword, "/dev/sdaw3", 10) == 0)
27869 {
27870 {
27871 return dev_storage + 1092;
27872
27873 }
27874 }
27875 else
27876 {
27877 {
27878 return NULL;
27879
27880 }
27881 }
27882 case 'v':
27883 if (strncmp (KR_keyword, "/dev/sdav3", 10) == 0)
27884 {
27885 {
27886 return dev_storage + 1077;
27887
27888 }
27889 }
27890 else
27891 {
27892 {
27893 return NULL;
27894
27895 }
27896 }
27897 case 'u':
27898 if (strncmp (KR_keyword, "/dev/sdau3", 10) == 0)
27899 {
27900 {
27901 return dev_storage + 1062;
27902
27903 }
27904 }
27905 else
27906 {
27907 {
27908 return NULL;
27909
27910 }
27911 }
27912 case 't':
27913 if (strncmp (KR_keyword, "/dev/sdat3", 10) == 0)
27914 {
27915 {
27916 return dev_storage + 1047;
27917
27918 }
27919 }
27920 else
27921 {
27922 {
27923 return NULL;
27924
27925 }
27926 }
27927 case 's':
27928 if (strncmp (KR_keyword, "/dev/sdas3", 10) == 0)
27929 {
27930 {
27931 return dev_storage + 1032;
27932
27933 }
27934 }
27935 else
27936 {
27937 {
27938 return NULL;
27939
27940 }
27941 }
27942 case 'r':
27943 if (strncmp (KR_keyword, "/dev/sdar3", 10) == 0)
27944 {
27945 {
27946 return dev_storage + 1017;
27947
27948 }
27949 }
27950 else
27951 {
27952 {
27953 return NULL;
27954
27955 }
27956 }
27957 case 'q':
27958 if (strncmp (KR_keyword, "/dev/sdaq3", 10) == 0)
27959 {
27960 {
27961 return dev_storage + 1002;
27962
27963 }
27964 }
27965 else
27966 {
27967 {
27968 return NULL;
27969
27970 }
27971 }
27972 case 'p':
27973 if (strncmp (KR_keyword, "/dev/sdap3", 10) == 0)
27974 {
27975 {
27976 return dev_storage + 987;
27977
27978 }
27979 }
27980 else
27981 {
27982 {
27983 return NULL;
27984
27985 }
27986 }
27987 case 'o':
27988 if (strncmp (KR_keyword, "/dev/sdao3", 10) == 0)
27989 {
27990 {
27991 return dev_storage + 972;
27992
27993 }
27994 }
27995 else
27996 {
27997 {
27998 return NULL;
27999
28000 }
28001 }
28002 case 'n':
28003 if (strncmp (KR_keyword, "/dev/sdan3", 10) == 0)
28004 {
28005 {
28006 return dev_storage + 957;
28007
28008 }
28009 }
28010 else
28011 {
28012 {
28013 return NULL;
28014
28015 }
28016 }
28017 case 'm':
28018 if (strncmp (KR_keyword, "/dev/sdam3", 10) == 0)
28019 {
28020 {
28021 return dev_storage + 942;
28022
28023 }
28024 }
28025 else
28026 {
28027 {
28028 return NULL;
28029
28030 }
28031 }
28032 case 'l':
28033 if (strncmp (KR_keyword, "/dev/sdal3", 10) == 0)
28034 {
28035 {
28036 return dev_storage + 927;
28037
28038 }
28039 }
28040 else
28041 {
28042 {
28043 return NULL;
28044
28045 }
28046 }
28047 case 'k':
28048 if (strncmp (KR_keyword, "/dev/sdak3", 10) == 0)
28049 {
28050 {
28051 return dev_storage + 912;
28052
28053 }
28054 }
28055 else
28056 {
28057 {
28058 return NULL;
28059
28060 }
28061 }
28062 case 'j':
28063 if (strncmp (KR_keyword, "/dev/sdaj3", 10) == 0)
28064 {
28065 {
28066 return dev_storage + 897;
28067
28068 }
28069 }
28070 else
28071 {
28072 {
28073 return NULL;
28074
28075 }
28076 }
28077 case 'i':
28078 if (strncmp (KR_keyword, "/dev/sdai3", 10) == 0)
28079 {
28080 {
28081 return dev_storage + 882;
28082
28083 }
28084 }
28085 else
28086 {
28087 {
28088 return NULL;
28089
28090 }
28091 }
28092 case 'h':
28093 if (strncmp (KR_keyword, "/dev/sdah3", 10) == 0)
28094 {
28095 {
28096 return dev_storage + 867;
28097
28098 }
28099 }
28100 else
28101 {
28102 {
28103 return NULL;
28104
28105 }
28106 }
28107 case 'g':
28108 if (strncmp (KR_keyword, "/dev/sdag3", 10) == 0)
28109 {
28110 {
28111 return dev_storage + 852;
28112
28113 }
28114 }
28115 else
28116 {
28117 {
28118 return NULL;
28119
28120 }
28121 }
28122 case 'f':
28123 if (strncmp (KR_keyword, "/dev/sdaf3", 10) == 0)
28124 {
28125 {
28126 return dev_storage + 837;
28127
28128 }
28129 }
28130 else
28131 {
28132 {
28133 return NULL;
28134
28135 }
28136 }
28137 case 'e':
28138 if (strncmp (KR_keyword, "/dev/sdae3", 10) == 0)
28139 {
28140 {
28141 return dev_storage + 822;
28142
28143 }
28144 }
28145 else
28146 {
28147 {
28148 return NULL;
28149
28150 }
28151 }
28152 case 'd':
28153 if (strncmp (KR_keyword, "/dev/sdad3", 10) == 0)
28154 {
28155 {
28156 return dev_storage + 807;
28157
28158 }
28159 }
28160 else
28161 {
28162 {
28163 return NULL;
28164
28165 }
28166 }
28167 case 'c':
28168 if (strncmp (KR_keyword, "/dev/sdac3", 10) == 0)
28169 {
28170 {
28171 return dev_storage + 792;
28172
28173 }
28174 }
28175 else
28176 {
28177 {
28178 return NULL;
28179
28180 }
28181 }
28182 case 'b':
28183 if (strncmp (KR_keyword, "/dev/sdab3", 10) == 0)
28184 {
28185 {
28186 return dev_storage + 777;
28187
28188 }
28189 }
28190 else
28191 {
28192 {
28193 return NULL;
28194
28195 }
28196 }
28197 case 'a':
28198 if (strncmp (KR_keyword, "/dev/sdaa3", 10) == 0)
28199 {
28200 {
28201 return dev_storage + 762;
28202
28203 }
28204 }
28205 else
28206 {
28207 {
28208 return NULL;
28209
28210 }
28211 }
28212 case '1':
28213 if (strncmp (KR_keyword, "/dev/sda13", 10) == 0)
28214 {
28215 {
28216 return dev_storage + 356;
28217
28218 }
28219 }
28220 else
28221 {
28222 {
28223 return NULL;
28224
28225 }
28226 }
28227 default:
28228 {
28229 return NULL;
28230
28231 }
28232 }
28233 case '1':
28234 switch (KR_keyword [8])
28235 {
28236 case '2':
28237 if (strncmp (KR_keyword, "/dev/st123", 10) == 0)
28238 {
28239 {
28240 return dev_storage + 2505;
28241
28242 }
28243 }
28244 else
28245 {
28246 {
28247 return NULL;
28248
28249 }
28250 }
28251 case '1':
28252 if (strncmp (KR_keyword, "/dev/st113", 10) == 0)
28253 {
28254 {
28255 return dev_storage + 2495;
28256
28257 }
28258 }
28259 else
28260 {
28261 {
28262 return NULL;
28263
28264 }
28265 }
28266 case '0':
28267 if (strncmp (KR_keyword, "/dev/st103", 10) == 0)
28268 {
28269 {
28270 return dev_storage + 2485;
28271
28272 }
28273 }
28274 else
28275 {
28276 {
28277 return NULL;
28278
28279 }
28280 }
28281 default:
28282 {
28283 return NULL;
28284
28285 }
28286 }
28287 default:
28288 {
28289 return NULL;
28290
28291 }
28292 }
28293 case '2':
28294 switch (KR_keyword [7])
28295 {
28296 case 'z':
28297 if (strncmp (KR_keyword, "/dev/sdz12", 10) == 0)
28298 {
28299 {
28300 return dev_storage + 730;
28301
28302 }
28303 }
28304 else
28305 {
28306 {
28307 return NULL;
28308
28309 }
28310 }
28311 case 'y':
28312 switch (KR_keyword [8])
28313 {
28314 case 'S':
28315 if (strncmp (KR_keyword, "/dev/ttyS2", 10) == 0)
28316 {
28317 {
28318 return dev_storage + 2513;
28319
28320 }
28321 }
28322 else
28323 {
28324 {
28325 return NULL;
28326
28327 }
28328 }
28329 case '6':
28330 if (strncmp (KR_keyword, "/dev/pty62", 10) == 0)
28331 {
28332 {
28333 return dev_storage + 299;
28334
28335 }
28336 }
28337 else
28338 {
28339 {
28340 return NULL;
28341
28342 }
28343 }
28344 case '5':
28345 if (strncmp (KR_keyword, "/dev/pty52", 10) == 0)
28346 {
28347 {
28348 return dev_storage + 289;
28349
28350 }
28351 }
28352 else
28353 {
28354 {
28355 return NULL;
28356
28357 }
28358 }
28359 case '4':
28360 if (strncmp (KR_keyword, "/dev/pty42", 10) == 0)
28361 {
28362 {
28363 return dev_storage + 279;
28364
28365 }
28366 }
28367 else
28368 {
28369 {
28370 return NULL;
28371
28372 }
28373 }
28374 case '3':
28375 if (strncmp (KR_keyword, "/dev/pty32", 10) == 0)
28376 {
28377 {
28378 return dev_storage + 269;
28379
28380 }
28381 }
28382 else
28383 {
28384 {
28385 return NULL;
28386
28387 }
28388 }
28389 case '2':
28390 if (strncmp (KR_keyword, "/dev/pty22", 10) == 0)
28391 {
28392 {
28393 return dev_storage + 259;
28394
28395 }
28396 }
28397 else
28398 {
28399 {
28400 return NULL;
28401
28402 }
28403 }
28404 case '1':
28405 switch (KR_keyword [5])
28406 {
28407 case 's':
28408 if (strncmp (KR_keyword, "/dev/sdy12", 10) == 0)
28409 {
28410 {
28411 return dev_storage + 715;
28412
28413 }
28414 }
28415 else
28416 {
28417 {
28418 return NULL;
28419
28420 }
28421 }
28422 case 'p':
28423 if (strncmp (KR_keyword, "/dev/pty12", 10) == 0)
28424 {
28425 {
28426 return dev_storage + 249;
28427
28428 }
28429 }
28430 else
28431 {
28432 {
28433 return NULL;
28434
28435 }
28436 }
28437 default:
28438 {
28439 return NULL;
28440
28441 }
28442 }
28443 default:
28444 {
28445 return NULL;
28446
28447 }
28448 }
28449 case 'x':
28450 if (strncmp (KR_keyword, "/dev/sdx12", 10) == 0)
28451 {
28452 {
28453 return dev_storage + 700;
28454
28455 }
28456 }
28457 else
28458 {
28459 {
28460 return NULL;
28461
28462 }
28463 }
28464 case 'w':
28465 if (strncmp (KR_keyword, "/dev/sdw12", 10) == 0)
28466 {
28467 {
28468 return dev_storage + 685;
28469
28470 }
28471 }
28472 else
28473 {
28474 {
28475 return NULL;
28476
28477 }
28478 }
28479 case 'v':
28480 if (strncmp (KR_keyword, "/dev/sdv12", 10) == 0)
28481 {
28482 {
28483 return dev_storage + 670;
28484
28485 }
28486 }
28487 else
28488 {
28489 {
28490 return NULL;
28491
28492 }
28493 }
28494 case 'u':
28495 if (strncmp (KR_keyword, "/dev/sdu12", 10) == 0)
28496 {
28497 {
28498 return dev_storage + 655;
28499
28500 }
28501 }
28502 else
28503 {
28504 {
28505 return NULL;
28506
28507 }
28508 }
28509 case 't':
28510 switch (KR_keyword [8])
28511 {
28512 case '9':
28513 if (strncmp (KR_keyword, "/dev/nst92", 10) == 0)
28514 {
28515 {
28516 return dev_storage + 198;
28517
28518 }
28519 }
28520 else
28521 {
28522 {
28523 return NULL;
28524
28525 }
28526 }
28527 case '8':
28528 if (strncmp (KR_keyword, "/dev/nst82", 10) == 0)
28529 {
28530 {
28531 return dev_storage + 188;
28532
28533 }
28534 }
28535 else
28536 {
28537 {
28538 return NULL;
28539
28540 }
28541 }
28542 case '7':
28543 if (strncmp (KR_keyword, "/dev/nst72", 10) == 0)
28544 {
28545 {
28546 return dev_storage + 178;
28547
28548 }
28549 }
28550 else
28551 {
28552 {
28553 return NULL;
28554
28555 }
28556 }
28557 case '6':
28558 if (strncmp (KR_keyword, "/dev/nst62", 10) == 0)
28559 {
28560 {
28561 return dev_storage + 168;
28562
28563 }
28564 }
28565 else
28566 {
28567 {
28568 return NULL;
28569
28570 }
28571 }
28572 case '5':
28573 if (strncmp (KR_keyword, "/dev/nst52", 10) == 0)
28574 {
28575 {
28576 return dev_storage + 158;
28577
28578 }
28579 }
28580 else
28581 {
28582 {
28583 return NULL;
28584
28585 }
28586 }
28587 case '4':
28588 if (strncmp (KR_keyword, "/dev/nst42", 10) == 0)
28589 {
28590 {
28591 return dev_storage + 148;
28592
28593 }
28594 }
28595 else
28596 {
28597 {
28598 return NULL;
28599
28600 }
28601 }
28602 case '3':
28603 if (strncmp (KR_keyword, "/dev/nst32", 10) == 0)
28604 {
28605 {
28606 return dev_storage + 138;
28607
28608 }
28609 }
28610 else
28611 {
28612 {
28613 return NULL;
28614
28615 }
28616 }
28617 case '2':
28618 if (strncmp (KR_keyword, "/dev/nst22", 10) == 0)
28619 {
28620 {
28621 return dev_storage + 128;
28622
28623 }
28624 }
28625 else
28626 {
28627 {
28628 return NULL;
28629
28630 }
28631 }
28632 case '1':
28633 switch (KR_keyword [5])
28634 {
28635 case 's':
28636 if (strncmp (KR_keyword, "/dev/sdt12", 10) == 0)
28637 {
28638 {
28639 return dev_storage + 640;
28640
28641 }
28642 }
28643 else
28644 {
28645 {
28646 return NULL;
28647
28648 }
28649 }
28650 case 'n':
28651 if (strncmp (KR_keyword, "/dev/nst12", 10) == 0)
28652 {
28653 {
28654 return dev_storage + 118;
28655
28656 }
28657 }
28658 else
28659 {
28660 {
28661 return NULL;
28662
28663 }
28664 }
28665 default:
28666 {
28667 return NULL;
28668
28669 }
28670 }
28671 default:
28672 {
28673 return NULL;
28674
28675 }
28676 }
28677 case 's':
28678 if (strncmp (KR_keyword, "/dev/sds12", 10) == 0)
28679 {
28680 {
28681 return dev_storage + 625;
28682
28683 }
28684 }
28685 else
28686 {
28687 {
28688 return NULL;
28689
28690 }
28691 }
28692 case 'r':
28693 if (strncmp (KR_keyword, "/dev/sdr12", 10) == 0)
28694 {
28695 {
28696 return dev_storage + 610;
28697
28698 }
28699 }
28700 else
28701 {
28702 {
28703 return NULL;
28704
28705 }
28706 }
28707 case 'q':
28708 if (strncmp (KR_keyword, "/dev/sdq12", 10) == 0)
28709 {
28710 {
28711 return dev_storage + 595;
28712
28713 }
28714 }
28715 else
28716 {
28717 {
28718 return NULL;
28719
28720 }
28721 }
28722 case 'p':
28723 if (strncmp (KR_keyword, "/dev/sdp12", 10) == 0)
28724 {
28725 {
28726 return dev_storage + 580;
28727
28728 }
28729 }
28730 else
28731 {
28732 {
28733 return NULL;
28734
28735 }
28736 }
28737 case 'o':
28738 if (strncmp (KR_keyword, "/dev/sdo12", 10) == 0)
28739 {
28740 {
28741 return dev_storage + 565;
28742
28743 }
28744 }
28745 else
28746 {
28747 {
28748 return NULL;
28749
28750 }
28751 }
28752 case 'n':
28753 switch (KR_keyword [5])
28754 {
28755 case 's':
28756 if (strncmp (KR_keyword, "/dev/sdn12", 10) == 0)
28757 {
28758 {
28759 return dev_storage + 550;
28760
28761 }
28762 }
28763 else
28764 {
28765 {
28766 return NULL;
28767
28768 }
28769 }
28770 case 'c':
28771 if (strncmp (KR_keyword, "/dev/cons2", 10) == 0)
28772 {
28773 {
28774 return dev_storage + 22;
28775
28776 }
28777 }
28778 else
28779 {
28780 {
28781 return NULL;
28782
28783 }
28784 }
28785 default:
28786 {
28787 return NULL;
28788
28789 }
28790 }
28791 case 'm':
28792 switch (KR_keyword [5])
28793 {
28794 case 's':
28795 if (strncmp (KR_keyword, "/dev/sdm12", 10) == 0)
28796 {
28797 {
28798 return dev_storage + 535;
28799
28800 }
28801 }
28802 else
28803 {
28804 {
28805 return NULL;
28806
28807 }
28808 }
28809 case 'c':
28810 if (strncmp (KR_keyword, "/dev/com12", 10) == 0)
28811 {
28812 {
28813 return dev_storage + 13;
28814
28815 }
28816 }
28817 else
28818 {
28819 {
28820 return NULL;
28821
28822 }
28823 }
28824 default:
28825 {
28826 return NULL;
28827
28828 }
28829 }
28830 case 'l':
28831 if (strncmp (KR_keyword, "/dev/sdl12", 10) == 0)
28832 {
28833 {
28834 return dev_storage + 520;
28835
28836 }
28837 }
28838 else
28839 {
28840 {
28841 return NULL;
28842
28843 }
28844 }
28845 case 'k':
28846 if (strncmp (KR_keyword, "/dev/sdk12", 10) == 0)
28847 {
28848 {
28849 return dev_storage + 505;
28850
28851 }
28852 }
28853 else
28854 {
28855 {
28856 return NULL;
28857
28858 }
28859 }
28860 case 'j':
28861 if (strncmp (KR_keyword, "/dev/sdj12", 10) == 0)
28862 {
28863 {
28864 return dev_storage + 490;
28865
28866 }
28867 }
28868 else
28869 {
28870 {
28871 return NULL;
28872
28873 }
28874 }
28875 case 'i':
28876 if (strncmp (KR_keyword, "/dev/sdi12", 10) == 0)
28877 {
28878 {
28879 return dev_storage + 475;
28880
28881 }
28882 }
28883 else
28884 {
28885 {
28886 return NULL;
28887
28888 }
28889 }
28890 case 'h':
28891 if (strncmp (KR_keyword, "/dev/sdh12", 10) == 0)
28892 {
28893 {
28894 return dev_storage + 460;
28895
28896 }
28897 }
28898 else
28899 {
28900 {
28901 return NULL;
28902
28903 }
28904 }
28905 case 'g':
28906 if (strncmp (KR_keyword, "/dev/sdg12", 10) == 0)
28907 {
28908 {
28909 return dev_storage + 445;
28910
28911 }
28912 }
28913 else
28914 {
28915 {
28916 return NULL;
28917
28918 }
28919 }
28920 case 'f':
28921 if (strncmp (KR_keyword, "/dev/sdf12", 10) == 0)
28922 {
28923 {
28924 return dev_storage + 430;
28925
28926 }
28927 }
28928 else
28929 {
28930 {
28931 return NULL;
28932
28933 }
28934 }
28935 case 'e':
28936 if (strncmp (KR_keyword, "/dev/sde12", 10) == 0)
28937 {
28938 {
28939 return dev_storage + 415;
28940
28941 }
28942 }
28943 else
28944 {
28945 {
28946 return NULL;
28947
28948 }
28949 }
28950 case 'd':
28951 switch (KR_keyword [8])
28952 {
28953 case 'x':
28954 if (strncmp (KR_keyword, "/dev/sddx2", 10) == 0)
28955 {
28956 {
28957 return dev_storage + 2352;
28958
28959 }
28960 }
28961 else
28962 {
28963 {
28964 return NULL;
28965
28966 }
28967 }
28968 case 'w':
28969 if (strncmp (KR_keyword, "/dev/sddw2", 10) == 0)
28970 {
28971 {
28972 return dev_storage + 2337;
28973
28974 }
28975 }
28976 else
28977 {
28978 {
28979 return NULL;
28980
28981 }
28982 }
28983 case 'v':
28984 if (strncmp (KR_keyword, "/dev/sddv2", 10) == 0)
28985 {
28986 {
28987 return dev_storage + 2322;
28988
28989 }
28990 }
28991 else
28992 {
28993 {
28994 return NULL;
28995
28996 }
28997 }
28998 case 'u':
28999 if (strncmp (KR_keyword, "/dev/sddu2", 10) == 0)
29000 {
29001 {
29002 return dev_storage + 2307;
29003
29004 }
29005 }
29006 else
29007 {
29008 {
29009 return NULL;
29010
29011 }
29012 }
29013 case 't':
29014 if (strncmp (KR_keyword, "/dev/sddt2", 10) == 0)
29015 {
29016 {
29017 return dev_storage + 2292;
29018
29019 }
29020 }
29021 else
29022 {
29023 {
29024 return NULL;
29025
29026 }
29027 }
29028 case 's':
29029 if (strncmp (KR_keyword, "/dev/sdds2", 10) == 0)
29030 {
29031 {
29032 return dev_storage + 2277;
29033
29034 }
29035 }
29036 else
29037 {
29038 {
29039 return NULL;
29040
29041 }
29042 }
29043 case 'r':
29044 if (strncmp (KR_keyword, "/dev/sddr2", 10) == 0)
29045 {
29046 {
29047 return dev_storage + 2262;
29048
29049 }
29050 }
29051 else
29052 {
29053 {
29054 return NULL;
29055
29056 }
29057 }
29058 case 'q':
29059 if (strncmp (KR_keyword, "/dev/sddq2", 10) == 0)
29060 {
29061 {
29062 return dev_storage + 2247;
29063
29064 }
29065 }
29066 else
29067 {
29068 {
29069 return NULL;
29070
29071 }
29072 }
29073 case 'p':
29074 if (strncmp (KR_keyword, "/dev/sddp2", 10) == 0)
29075 {
29076 {
29077 return dev_storage + 2232;
29078
29079 }
29080 }
29081 else
29082 {
29083 {
29084 return NULL;
29085
29086 }
29087 }
29088 case 'o':
29089 if (strncmp (KR_keyword, "/dev/sddo2", 10) == 0)
29090 {
29091 {
29092 return dev_storage + 2217;
29093
29094 }
29095 }
29096 else
29097 {
29098 {
29099 return NULL;
29100
29101 }
29102 }
29103 case 'n':
29104 if (strncmp (KR_keyword, "/dev/sddn2", 10) == 0)
29105 {
29106 {
29107 return dev_storage + 2202;
29108
29109 }
29110 }
29111 else
29112 {
29113 {
29114 return NULL;
29115
29116 }
29117 }
29118 case 'm':
29119 if (strncmp (KR_keyword, "/dev/sddm2", 10) == 0)
29120 {
29121 {
29122 return dev_storage + 2187;
29123
29124 }
29125 }
29126 else
29127 {
29128 {
29129 return NULL;
29130
29131 }
29132 }
29133 case 'l':
29134 if (strncmp (KR_keyword, "/dev/sddl2", 10) == 0)
29135 {
29136 {
29137 return dev_storage + 2172;
29138
29139 }
29140 }
29141 else
29142 {
29143 {
29144 return NULL;
29145
29146 }
29147 }
29148 case 'k':
29149 if (strncmp (KR_keyword, "/dev/sddk2", 10) == 0)
29150 {
29151 {
29152 return dev_storage + 2157;
29153
29154 }
29155 }
29156 else
29157 {
29158 {
29159 return NULL;
29160
29161 }
29162 }
29163 case 'j':
29164 if (strncmp (KR_keyword, "/dev/sddj2", 10) == 0)
29165 {
29166 {
29167 return dev_storage + 2142;
29168
29169 }
29170 }
29171 else
29172 {
29173 {
29174 return NULL;
29175
29176 }
29177 }
29178 case 'i':
29179 if (strncmp (KR_keyword, "/dev/sddi2", 10) == 0)
29180 {
29181 {
29182 return dev_storage + 2127;
29183
29184 }
29185 }
29186 else
29187 {
29188 {
29189 return NULL;
29190
29191 }
29192 }
29193 case 'h':
29194 if (strncmp (KR_keyword, "/dev/sddh2", 10) == 0)
29195 {
29196 {
29197 return dev_storage + 2112;
29198
29199 }
29200 }
29201 else
29202 {
29203 {
29204 return NULL;
29205
29206 }
29207 }
29208 case 'g':
29209 if (strncmp (KR_keyword, "/dev/sddg2", 10) == 0)
29210 {
29211 {
29212 return dev_storage + 2097;
29213
29214 }
29215 }
29216 else
29217 {
29218 {
29219 return NULL;
29220
29221 }
29222 }
29223 case 'f':
29224 if (strncmp (KR_keyword, "/dev/sddf2", 10) == 0)
29225 {
29226 {
29227 return dev_storage + 2082;
29228
29229 }
29230 }
29231 else
29232 {
29233 {
29234 return NULL;
29235
29236 }
29237 }
29238 case 'e':
29239 if (strncmp (KR_keyword, "/dev/sdde2", 10) == 0)
29240 {
29241 {
29242 return dev_storage + 2067;
29243
29244 }
29245 }
29246 else
29247 {
29248 {
29249 return NULL;
29250
29251 }
29252 }
29253 case 'd':
29254 if (strncmp (KR_keyword, "/dev/sddd2", 10) == 0)
29255 {
29256 {
29257 return dev_storage + 2052;
29258
29259 }
29260 }
29261 else
29262 {
29263 {
29264 return NULL;
29265
29266 }
29267 }
29268 case 'c':
29269 if (strncmp (KR_keyword, "/dev/sddc2", 10) == 0)
29270 {
29271 {
29272 return dev_storage + 2037;
29273
29274 }
29275 }
29276 else
29277 {
29278 {
29279 return NULL;
29280
29281 }
29282 }
29283 case 'b':
29284 if (strncmp (KR_keyword, "/dev/sddb2", 10) == 0)
29285 {
29286 {
29287 return dev_storage + 2022;
29288
29289 }
29290 }
29291 else
29292 {
29293 {
29294 return NULL;
29295
29296 }
29297 }
29298 case 'a':
29299 if (strncmp (KR_keyword, "/dev/sdda2", 10) == 0)
29300 {
29301 {
29302 return dev_storage + 2007;
29303
29304 }
29305 }
29306 else
29307 {
29308 {
29309 return NULL;
29310
29311 }
29312 }
29313 case '1':
29314 switch (KR_keyword [6])
29315 {
29316 case 'd':
29317 if (strncmp (KR_keyword, "/dev/sdd12", 10) == 0)
29318 {
29319 {
29320 return dev_storage + 400;
29321
29322 }
29323 }
29324 else
29325 {
29326 {
29327 return NULL;
29328
29329 }
29330 }
29331 case 'c':
29332 if (strncmp (KR_keyword, "/dev/scd12", 10) == 0)
29333 {
29334 {
29335 return dev_storage + 314;
29336
29337 }
29338 }
29339 else
29340 {
29341 {
29342 return NULL;
29343
29344 }
29345 }
29346 default:
29347 {
29348 return NULL;
29349
29350 }
29351 }
29352 default:
29353 {
29354 return NULL;
29355
29356 }
29357 }
29358 case 'c':
29359 switch (KR_keyword [8])
29360 {
29361 case 'z':
29362 if (strncmp (KR_keyword, "/dev/sdcz2", 10) == 0)
29363 {
29364 {
29365 return dev_storage + 1968;
29366
29367 }
29368 }
29369 else
29370 {
29371 {
29372 return NULL;
29373
29374 }
29375 }
29376 case 'y':
29377 if (strncmp (KR_keyword, "/dev/sdcy2", 10) == 0)
29378 {
29379 {
29380 return dev_storage + 1953;
29381
29382 }
29383 }
29384 else
29385 {
29386 {
29387 return NULL;
29388
29389 }
29390 }
29391 case 'x':
29392 if (strncmp (KR_keyword, "/dev/sdcx2", 10) == 0)
29393 {
29394 {
29395 return dev_storage + 1938;
29396
29397 }
29398 }
29399 else
29400 {
29401 {
29402 return NULL;
29403
29404 }
29405 }
29406 case 'w':
29407 if (strncmp (KR_keyword, "/dev/sdcw2", 10) == 0)
29408 {
29409 {
29410 return dev_storage + 1923;
29411
29412 }
29413 }
29414 else
29415 {
29416 {
29417 return NULL;
29418
29419 }
29420 }
29421 case 'v':
29422 if (strncmp (KR_keyword, "/dev/sdcv2", 10) == 0)
29423 {
29424 {
29425 return dev_storage + 1908;
29426
29427 }
29428 }
29429 else
29430 {
29431 {
29432 return NULL;
29433
29434 }
29435 }
29436 case 'u':
29437 if (strncmp (KR_keyword, "/dev/sdcu2", 10) == 0)
29438 {
29439 {
29440 return dev_storage + 1893;
29441
29442 }
29443 }
29444 else
29445 {
29446 {
29447 return NULL;
29448
29449 }
29450 }
29451 case 't':
29452 if (strncmp (KR_keyword, "/dev/sdct2", 10) == 0)
29453 {
29454 {
29455 return dev_storage + 1878;
29456
29457 }
29458 }
29459 else
29460 {
29461 {
29462 return NULL;
29463
29464 }
29465 }
29466 case 's':
29467 if (strncmp (KR_keyword, "/dev/sdcs2", 10) == 0)
29468 {
29469 {
29470 return dev_storage + 1863;
29471
29472 }
29473 }
29474 else
29475 {
29476 {
29477 return NULL;
29478
29479 }
29480 }
29481 case 'r':
29482 if (strncmp (KR_keyword, "/dev/sdcr2", 10) == 0)
29483 {
29484 {
29485 return dev_storage + 1848;
29486
29487 }
29488 }
29489 else
29490 {
29491 {
29492 return NULL;
29493
29494 }
29495 }
29496 case 'q':
29497 if (strncmp (KR_keyword, "/dev/sdcq2", 10) == 0)
29498 {
29499 {
29500 return dev_storage + 1833;
29501
29502 }
29503 }
29504 else
29505 {
29506 {
29507 return NULL;
29508
29509 }
29510 }
29511 case 'p':
29512 if (strncmp (KR_keyword, "/dev/sdcp2", 10) == 0)
29513 {
29514 {
29515 return dev_storage + 1818;
29516
29517 }
29518 }
29519 else
29520 {
29521 {
29522 return NULL;
29523
29524 }
29525 }
29526 case 'o':
29527 if (strncmp (KR_keyword, "/dev/sdco2", 10) == 0)
29528 {
29529 {
29530 return dev_storage + 1803;
29531
29532 }
29533 }
29534 else
29535 {
29536 {
29537 return NULL;
29538
29539 }
29540 }
29541 case 'n':
29542 if (strncmp (KR_keyword, "/dev/sdcn2", 10) == 0)
29543 {
29544 {
29545 return dev_storage + 1788;
29546
29547 }
29548 }
29549 else
29550 {
29551 {
29552 return NULL;
29553
29554 }
29555 }
29556 case 'm':
29557 if (strncmp (KR_keyword, "/dev/sdcm2", 10) == 0)
29558 {
29559 {
29560 return dev_storage + 1773;
29561
29562 }
29563 }
29564 else
29565 {
29566 {
29567 return NULL;
29568
29569 }
29570 }
29571 case 'l':
29572 if (strncmp (KR_keyword, "/dev/sdcl2", 10) == 0)
29573 {
29574 {
29575 return dev_storage + 1758;
29576
29577 }
29578 }
29579 else
29580 {
29581 {
29582 return NULL;
29583
29584 }
29585 }
29586 case 'k':
29587 if (strncmp (KR_keyword, "/dev/sdck2", 10) == 0)
29588 {
29589 {
29590 return dev_storage + 1743;
29591
29592 }
29593 }
29594 else
29595 {
29596 {
29597 return NULL;
29598
29599 }
29600 }
29601 case 'j':
29602 if (strncmp (KR_keyword, "/dev/sdcj2", 10) == 0)
29603 {
29604 {
29605 return dev_storage + 1728;
29606
29607 }
29608 }
29609 else
29610 {
29611 {
29612 return NULL;
29613
29614 }
29615 }
29616 case 'i':
29617 if (strncmp (KR_keyword, "/dev/sdci2", 10) == 0)
29618 {
29619 {
29620 return dev_storage + 1713;
29621
29622 }
29623 }
29624 else
29625 {
29626 {
29627 return NULL;
29628
29629 }
29630 }
29631 case 'h':
29632 if (strncmp (KR_keyword, "/dev/sdch2", 10) == 0)
29633 {
29634 {
29635 return dev_storage + 1698;
29636
29637 }
29638 }
29639 else
29640 {
29641 {
29642 return NULL;
29643
29644 }
29645 }
29646 case 'g':
29647 if (strncmp (KR_keyword, "/dev/sdcg2", 10) == 0)
29648 {
29649 {
29650 return dev_storage + 1683;
29651
29652 }
29653 }
29654 else
29655 {
29656 {
29657 return NULL;
29658
29659 }
29660 }
29661 case 'f':
29662 if (strncmp (KR_keyword, "/dev/sdcf2", 10) == 0)
29663 {
29664 {
29665 return dev_storage + 1668;
29666
29667 }
29668 }
29669 else
29670 {
29671 {
29672 return NULL;
29673
29674 }
29675 }
29676 case 'e':
29677 if (strncmp (KR_keyword, "/dev/sdce2", 10) == 0)
29678 {
29679 {
29680 return dev_storage + 1653;
29681
29682 }
29683 }
29684 else
29685 {
29686 {
29687 return NULL;
29688
29689 }
29690 }
29691 case 'd':
29692 if (strncmp (KR_keyword, "/dev/sdcd2", 10) == 0)
29693 {
29694 {
29695 return dev_storage + 1638;
29696
29697 }
29698 }
29699 else
29700 {
29701 {
29702 return NULL;
29703
29704 }
29705 }
29706 case 'c':
29707 if (strncmp (KR_keyword, "/dev/sdcc2", 10) == 0)
29708 {
29709 {
29710 return dev_storage + 1623;
29711
29712 }
29713 }
29714 else
29715 {
29716 {
29717 return NULL;
29718
29719 }
29720 }
29721 case 'b':
29722 if (strncmp (KR_keyword, "/dev/sdcb2", 10) == 0)
29723 {
29724 {
29725 return dev_storage + 1608;
29726
29727 }
29728 }
29729 else
29730 {
29731 {
29732 return NULL;
29733
29734 }
29735 }
29736 case 'a':
29737 if (strncmp (KR_keyword, "/dev/sdca2", 10) == 0)
29738 {
29739 {
29740 return dev_storage + 1593;
29741
29742 }
29743 }
29744 else
29745 {
29746 {
29747 return NULL;
29748
29749 }
29750 }
29751 case '1':
29752 if (strncmp (KR_keyword, "/dev/sdc12", 10) == 0)
29753 {
29754 {
29755 return dev_storage + 385;
29756
29757 }
29758 }
29759 else
29760 {
29761 {
29762 return NULL;
29763
29764 }
29765 }
29766 default:
29767 {
29768 return NULL;
29769
29770 }
29771 }
29772 case 'b':
29773 switch (KR_keyword [8])
29774 {
29775 case 'z':
29776 if (strncmp (KR_keyword, "/dev/sdbz2", 10) == 0)
29777 {
29778 {
29779 return dev_storage + 1552;
29780
29781 }
29782 }
29783 else
29784 {
29785 {
29786 return NULL;
29787
29788 }
29789 }
29790 case 'y':
29791 if (strncmp (KR_keyword, "/dev/sdby2", 10) == 0)
29792 {
29793 {
29794 return dev_storage + 1537;
29795
29796 }
29797 }
29798 else
29799 {
29800 {
29801 return NULL;
29802
29803 }
29804 }
29805 case 'x':
29806 if (strncmp (KR_keyword, "/dev/sdbx2", 10) == 0)
29807 {
29808 {
29809 return dev_storage + 1522;
29810
29811 }
29812 }
29813 else
29814 {
29815 {
29816 return NULL;
29817
29818 }
29819 }
29820 case 'w':
29821 if (strncmp (KR_keyword, "/dev/sdbw2", 10) == 0)
29822 {
29823 {
29824 return dev_storage + 1507;
29825
29826 }
29827 }
29828 else
29829 {
29830 {
29831 return NULL;
29832
29833 }
29834 }
29835 case 'v':
29836 if (strncmp (KR_keyword, "/dev/sdbv2", 10) == 0)
29837 {
29838 {
29839 return dev_storage + 1492;
29840
29841 }
29842 }
29843 else
29844 {
29845 {
29846 return NULL;
29847
29848 }
29849 }
29850 case 'u':
29851 if (strncmp (KR_keyword, "/dev/sdbu2", 10) == 0)
29852 {
29853 {
29854 return dev_storage + 1477;
29855
29856 }
29857 }
29858 else
29859 {
29860 {
29861 return NULL;
29862
29863 }
29864 }
29865 case 't':
29866 if (strncmp (KR_keyword, "/dev/sdbt2", 10) == 0)
29867 {
29868 {
29869 return dev_storage + 1462;
29870
29871 }
29872 }
29873 else
29874 {
29875 {
29876 return NULL;
29877
29878 }
29879 }
29880 case 's':
29881 if (strncmp (KR_keyword, "/dev/sdbs2", 10) == 0)
29882 {
29883 {
29884 return dev_storage + 1447;
29885
29886 }
29887 }
29888 else
29889 {
29890 {
29891 return NULL;
29892
29893 }
29894 }
29895 case 'r':
29896 if (strncmp (KR_keyword, "/dev/sdbr2", 10) == 0)
29897 {
29898 {
29899 return dev_storage + 1432;
29900
29901 }
29902 }
29903 else
29904 {
29905 {
29906 return NULL;
29907
29908 }
29909 }
29910 case 'q':
29911 if (strncmp (KR_keyword, "/dev/sdbq2", 10) == 0)
29912 {
29913 {
29914 return dev_storage + 1417;
29915
29916 }
29917 }
29918 else
29919 {
29920 {
29921 return NULL;
29922
29923 }
29924 }
29925 case 'p':
29926 if (strncmp (KR_keyword, "/dev/sdbp2", 10) == 0)
29927 {
29928 {
29929 return dev_storage + 1402;
29930
29931 }
29932 }
29933 else
29934 {
29935 {
29936 return NULL;
29937
29938 }
29939 }
29940 case 'o':
29941 if (strncmp (KR_keyword, "/dev/sdbo2", 10) == 0)
29942 {
29943 {
29944 return dev_storage + 1387;
29945
29946 }
29947 }
29948 else
29949 {
29950 {
29951 return NULL;
29952
29953 }
29954 }
29955 case 'n':
29956 if (strncmp (KR_keyword, "/dev/sdbn2", 10) == 0)
29957 {
29958 {
29959 return dev_storage + 1372;
29960
29961 }
29962 }
29963 else
29964 {
29965 {
29966 return NULL;
29967
29968 }
29969 }
29970 case 'm':
29971 if (strncmp (KR_keyword, "/dev/sdbm2", 10) == 0)
29972 {
29973 {
29974 return dev_storage + 1357;
29975
29976 }
29977 }
29978 else
29979 {
29980 {
29981 return NULL;
29982
29983 }
29984 }
29985 case 'l':
29986 if (strncmp (KR_keyword, "/dev/sdbl2", 10) == 0)
29987 {
29988 {
29989 return dev_storage + 1342;
29990
29991 }
29992 }
29993 else
29994 {
29995 {
29996 return NULL;
29997
29998 }
29999 }
30000 case 'k':
30001 if (strncmp (KR_keyword, "/dev/sdbk2", 10) == 0)
30002 {
30003 {
30004 return dev_storage + 1327;
30005
30006 }
30007 }
30008 else
30009 {
30010 {
30011 return NULL;
30012
30013 }
30014 }
30015 case 'j':
30016 if (strncmp (KR_keyword, "/dev/sdbj2", 10) == 0)
30017 {
30018 {
30019 return dev_storage + 1312;
30020
30021 }
30022 }
30023 else
30024 {
30025 {
30026 return NULL;
30027
30028 }
30029 }
30030 case 'i':
30031 if (strncmp (KR_keyword, "/dev/sdbi2", 10) == 0)
30032 {
30033 {
30034 return dev_storage + 1297;
30035
30036 }
30037 }
30038 else
30039 {
30040 {
30041 return NULL;
30042
30043 }
30044 }
30045 case 'h':
30046 if (strncmp (KR_keyword, "/dev/sdbh2", 10) == 0)
30047 {
30048 {
30049 return dev_storage + 1282;
30050
30051 }
30052 }
30053 else
30054 {
30055 {
30056 return NULL;
30057
30058 }
30059 }
30060 case 'g':
30061 if (strncmp (KR_keyword, "/dev/sdbg2", 10) == 0)
30062 {
30063 {
30064 return dev_storage + 1267;
30065
30066 }
30067 }
30068 else
30069 {
30070 {
30071 return NULL;
30072
30073 }
30074 }
30075 case 'f':
30076 if (strncmp (KR_keyword, "/dev/sdbf2", 10) == 0)
30077 {
30078 {
30079 return dev_storage + 1252;
30080
30081 }
30082 }
30083 else
30084 {
30085 {
30086 return NULL;
30087
30088 }
30089 }
30090 case 'e':
30091 if (strncmp (KR_keyword, "/dev/sdbe2", 10) == 0)
30092 {
30093 {
30094 return dev_storage + 1237;
30095
30096 }
30097 }
30098 else
30099 {
30100 {
30101 return NULL;
30102
30103 }
30104 }
30105 case 'd':
30106 if (strncmp (KR_keyword, "/dev/sdbd2", 10) == 0)
30107 {
30108 {
30109 return dev_storage + 1222;
30110
30111 }
30112 }
30113 else
30114 {
30115 {
30116 return NULL;
30117
30118 }
30119 }
30120 case 'c':
30121 if (strncmp (KR_keyword, "/dev/sdbc2", 10) == 0)
30122 {
30123 {
30124 return dev_storage + 1207;
30125
30126 }
30127 }
30128 else
30129 {
30130 {
30131 return NULL;
30132
30133 }
30134 }
30135 case 'b':
30136 if (strncmp (KR_keyword, "/dev/sdbb2", 10) == 0)
30137 {
30138 {
30139 return dev_storage + 1192;
30140
30141 }
30142 }
30143 else
30144 {
30145 {
30146 return NULL;
30147
30148 }
30149 }
30150 case 'a':
30151 if (strncmp (KR_keyword, "/dev/sdba2", 10) == 0)
30152 {
30153 {
30154 return dev_storage + 1177;
30155
30156 }
30157 }
30158 else
30159 {
30160 {
30161 return NULL;
30162
30163 }
30164 }
30165 case '1':
30166 if (strncmp (KR_keyword, "/dev/sdb12", 10) == 0)
30167 {
30168 {
30169 return dev_storage + 370;
30170
30171 }
30172 }
30173 else
30174 {
30175 {
30176 return NULL;
30177
30178 }
30179 }
30180 default:
30181 {
30182 return NULL;
30183
30184 }
30185 }
30186 case 'a':
30187 switch (KR_keyword [8])
30188 {
30189 case 'z':
30190 if (strncmp (KR_keyword, "/dev/sdaz2", 10) == 0)
30191 {
30192 {
30193 return dev_storage + 1136;
30194
30195 }
30196 }
30197 else
30198 {
30199 {
30200 return NULL;
30201
30202 }
30203 }
30204 case 'y':
30205 if (strncmp (KR_keyword, "/dev/sday2", 10) == 0)
30206 {
30207 {
30208 return dev_storage + 1121;
30209
30210 }
30211 }
30212 else
30213 {
30214 {
30215 return NULL;
30216
30217 }
30218 }
30219 case 'x':
30220 if (strncmp (KR_keyword, "/dev/sdax2", 10) == 0)
30221 {
30222 {
30223 return dev_storage + 1106;
30224
30225 }
30226 }
30227 else
30228 {
30229 {
30230 return NULL;
30231
30232 }
30233 }
30234 case 'w':
30235 if (strncmp (KR_keyword, "/dev/sdaw2", 10) == 0)
30236 {
30237 {
30238 return dev_storage + 1091;
30239
30240 }
30241 }
30242 else
30243 {
30244 {
30245 return NULL;
30246
30247 }
30248 }
30249 case 'v':
30250 if (strncmp (KR_keyword, "/dev/sdav2", 10) == 0)
30251 {
30252 {
30253 return dev_storage + 1076;
30254
30255 }
30256 }
30257 else
30258 {
30259 {
30260 return NULL;
30261
30262 }
30263 }
30264 case 'u':
30265 if (strncmp (KR_keyword, "/dev/sdau2", 10) == 0)
30266 {
30267 {
30268 return dev_storage + 1061;
30269
30270 }
30271 }
30272 else
30273 {
30274 {
30275 return NULL;
30276
30277 }
30278 }
30279 case 't':
30280 if (strncmp (KR_keyword, "/dev/sdat2", 10) == 0)
30281 {
30282 {
30283 return dev_storage + 1046;
30284
30285 }
30286 }
30287 else
30288 {
30289 {
30290 return NULL;
30291
30292 }
30293 }
30294 case 's':
30295 if (strncmp (KR_keyword, "/dev/sdas2", 10) == 0)
30296 {
30297 {
30298 return dev_storage + 1031;
30299
30300 }
30301 }
30302 else
30303 {
30304 {
30305 return NULL;
30306
30307 }
30308 }
30309 case 'r':
30310 if (strncmp (KR_keyword, "/dev/sdar2", 10) == 0)
30311 {
30312 {
30313 return dev_storage + 1016;
30314
30315 }
30316 }
30317 else
30318 {
30319 {
30320 return NULL;
30321
30322 }
30323 }
30324 case 'q':
30325 if (strncmp (KR_keyword, "/dev/sdaq2", 10) == 0)
30326 {
30327 {
30328 return dev_storage + 1001;
30329
30330 }
30331 }
30332 else
30333 {
30334 {
30335 return NULL;
30336
30337 }
30338 }
30339 case 'p':
30340 if (strncmp (KR_keyword, "/dev/sdap2", 10) == 0)
30341 {
30342 {
30343 return dev_storage + 986;
30344
30345 }
30346 }
30347 else
30348 {
30349 {
30350 return NULL;
30351
30352 }
30353 }
30354 case 'o':
30355 if (strncmp (KR_keyword, "/dev/sdao2", 10) == 0)
30356 {
30357 {
30358 return dev_storage + 971;
30359
30360 }
30361 }
30362 else
30363 {
30364 {
30365 return NULL;
30366
30367 }
30368 }
30369 case 'n':
30370 if (strncmp (KR_keyword, "/dev/sdan2", 10) == 0)
30371 {
30372 {
30373 return dev_storage + 956;
30374
30375 }
30376 }
30377 else
30378 {
30379 {
30380 return NULL;
30381
30382 }
30383 }
30384 case 'm':
30385 if (strncmp (KR_keyword, "/dev/sdam2", 10) == 0)
30386 {
30387 {
30388 return dev_storage + 941;
30389
30390 }
30391 }
30392 else
30393 {
30394 {
30395 return NULL;
30396
30397 }
30398 }
30399 case 'l':
30400 if (strncmp (KR_keyword, "/dev/sdal2", 10) == 0)
30401 {
30402 {
30403 return dev_storage + 926;
30404
30405 }
30406 }
30407 else
30408 {
30409 {
30410 return NULL;
30411
30412 }
30413 }
30414 case 'k':
30415 if (strncmp (KR_keyword, "/dev/sdak2", 10) == 0)
30416 {
30417 {
30418 return dev_storage + 911;
30419
30420 }
30421 }
30422 else
30423 {
30424 {
30425 return NULL;
30426
30427 }
30428 }
30429 case 'j':
30430 if (strncmp (KR_keyword, "/dev/sdaj2", 10) == 0)
30431 {
30432 {
30433 return dev_storage + 896;
30434
30435 }
30436 }
30437 else
30438 {
30439 {
30440 return NULL;
30441
30442 }
30443 }
30444 case 'i':
30445 if (strncmp (KR_keyword, "/dev/sdai2", 10) == 0)
30446 {
30447 {
30448 return dev_storage + 881;
30449
30450 }
30451 }
30452 else
30453 {
30454 {
30455 return NULL;
30456
30457 }
30458 }
30459 case 'h':
30460 if (strncmp (KR_keyword, "/dev/sdah2", 10) == 0)
30461 {
30462 {
30463 return dev_storage + 866;
30464
30465 }
30466 }
30467 else
30468 {
30469 {
30470 return NULL;
30471
30472 }
30473 }
30474 case 'g':
30475 if (strncmp (KR_keyword, "/dev/sdag2", 10) == 0)
30476 {
30477 {
30478 return dev_storage + 851;
30479
30480 }
30481 }
30482 else
30483 {
30484 {
30485 return NULL;
30486
30487 }
30488 }
30489 case 'f':
30490 if (strncmp (KR_keyword, "/dev/sdaf2", 10) == 0)
30491 {
30492 {
30493 return dev_storage + 836;
30494
30495 }
30496 }
30497 else
30498 {
30499 {
30500 return NULL;
30501
30502 }
30503 }
30504 case 'e':
30505 if (strncmp (KR_keyword, "/dev/sdae2", 10) == 0)
30506 {
30507 {
30508 return dev_storage + 821;
30509
30510 }
30511 }
30512 else
30513 {
30514 {
30515 return NULL;
30516
30517 }
30518 }
30519 case 'd':
30520 if (strncmp (KR_keyword, "/dev/sdad2", 10) == 0)
30521 {
30522 {
30523 return dev_storage + 806;
30524
30525 }
30526 }
30527 else
30528 {
30529 {
30530 return NULL;
30531
30532 }
30533 }
30534 case 'c':
30535 if (strncmp (KR_keyword, "/dev/sdac2", 10) == 0)
30536 {
30537 {
30538 return dev_storage + 791;
30539
30540 }
30541 }
30542 else
30543 {
30544 {
30545 return NULL;
30546
30547 }
30548 }
30549 case 'b':
30550 if (strncmp (KR_keyword, "/dev/sdab2", 10) == 0)
30551 {
30552 {
30553 return dev_storage + 776;
30554
30555 }
30556 }
30557 else
30558 {
30559 {
30560 return NULL;
30561
30562 }
30563 }
30564 case 'a':
30565 if (strncmp (KR_keyword, "/dev/sdaa2", 10) == 0)
30566 {
30567 {
30568 return dev_storage + 761;
30569
30570 }
30571 }
30572 else
30573 {
30574 {
30575 return NULL;
30576
30577 }
30578 }
30579 case '1':
30580 if (strncmp (KR_keyword, "/dev/sda12", 10) == 0)
30581 {
30582 {
30583 return dev_storage + 355;
30584
30585 }
30586 }
30587 else
30588 {
30589 {
30590 return NULL;
30591
30592 }
30593 }
30594 default:
30595 {
30596 return NULL;
30597
30598 }
30599 }
30600 case '1':
30601 switch (KR_keyword [8])
30602 {
30603 case '2':
30604 if (strncmp (KR_keyword, "/dev/st122", 10) == 0)
30605 {
30606 {
30607 return dev_storage + 2504;
30608
30609 }
30610 }
30611 else
30612 {
30613 {
30614 return NULL;
30615
30616 }
30617 }
30618 case '1':
30619 if (strncmp (KR_keyword, "/dev/st112", 10) == 0)
30620 {
30621 {
30622 return dev_storage + 2494;
30623
30624 }
30625 }
30626 else
30627 {
30628 {
30629 return NULL;
30630
30631 }
30632 }
30633 case '0':
30634 if (strncmp (KR_keyword, "/dev/st102", 10) == 0)
30635 {
30636 {
30637 return dev_storage + 2484;
30638
30639 }
30640 }
30641 else
30642 {
30643 {
30644 return NULL;
30645
30646 }
30647 }
30648 default:
30649 {
30650 return NULL;
30651
30652 }
30653 }
30654 default:
30655 {
30656 return NULL;
30657
30658 }
30659 }
30660 case '1':
30661 switch (KR_keyword [7])
30662 {
30663 case 'z':
30664 if (strncmp (KR_keyword, "/dev/sdz11", 10) == 0)
30665 {
30666 {
30667 return dev_storage + 729;
30668
30669 }
30670 }
30671 else
30672 {
30673 {
30674 return NULL;
30675
30676 }
30677 }
30678 case 'y':
30679 switch (KR_keyword [8])
30680 {
30681 case 'S':
30682 if (strncmp (KR_keyword, "/dev/ttyS1", 10) == 0)
30683 {
30684 {
30685 return dev_storage + 2512;
30686
30687 }
30688 }
30689 else
30690 {
30691 {
30692 return NULL;
30693
30694 }
30695 }
30696 case '6':
30697 if (strncmp (KR_keyword, "/dev/pty61", 10) == 0)
30698 {
30699 {
30700 return dev_storage + 298;
30701
30702 }
30703 }
30704 else
30705 {
30706 {
30707 return NULL;
30708
30709 }
30710 }
30711 case '5':
30712 if (strncmp (KR_keyword, "/dev/pty51", 10) == 0)
30713 {
30714 {
30715 return dev_storage + 288;
30716
30717 }
30718 }
30719 else
30720 {
30721 {
30722 return NULL;
30723
30724 }
30725 }
30726 case '4':
30727 if (strncmp (KR_keyword, "/dev/pty41", 10) == 0)
30728 {
30729 {
30730 return dev_storage + 278;
30731
30732 }
30733 }
30734 else
30735 {
30736 {
30737 return NULL;
30738
30739 }
30740 }
30741 case '3':
30742 if (strncmp (KR_keyword, "/dev/pty31", 10) == 0)
30743 {
30744 {
30745 return dev_storage + 268;
30746
30747 }
30748 }
30749 else
30750 {
30751 {
30752 return NULL;
30753
30754 }
30755 }
30756 case '2':
30757 if (strncmp (KR_keyword, "/dev/pty21", 10) == 0)
30758 {
30759 {
30760 return dev_storage + 258;
30761
30762 }
30763 }
30764 else
30765 {
30766 {
30767 return NULL;
30768
30769 }
30770 }
30771 case '1':
30772 switch (KR_keyword [5])
30773 {
30774 case 's':
30775 if (strncmp (KR_keyword, "/dev/sdy11", 10) == 0)
30776 {
30777 {
30778 return dev_storage + 714;
30779
30780 }
30781 }
30782 else
30783 {
30784 {
30785 return NULL;
30786
30787 }
30788 }
30789 case 'p':
30790 if (strncmp (KR_keyword, "/dev/pty11", 10) == 0)
30791 {
30792 {
30793 return dev_storage + 248;
30794
30795 }
30796 }
30797 else
30798 {
30799 {
30800 return NULL;
30801
30802 }
30803 }
30804 default:
30805 {
30806 return NULL;
30807
30808 }
30809 }
30810 default:
30811 {
30812 return NULL;
30813
30814 }
30815 }
30816 case 'x':
30817 if (strncmp (KR_keyword, "/dev/sdx11", 10) == 0)
30818 {
30819 {
30820 return dev_storage + 699;
30821
30822 }
30823 }
30824 else
30825 {
30826 {
30827 return NULL;
30828
30829 }
30830 }
30831 case 'w':
30832 if (strncmp (KR_keyword, "/dev/sdw11", 10) == 0)
30833 {
30834 {
30835 return dev_storage + 684;
30836
30837 }
30838 }
30839 else
30840 {
30841 {
30842 return NULL;
30843
30844 }
30845 }
30846 case 'v':
30847 if (strncmp (KR_keyword, "/dev/sdv11", 10) == 0)
30848 {
30849 {
30850 return dev_storage + 669;
30851
30852 }
30853 }
30854 else
30855 {
30856 {
30857 return NULL;
30858
30859 }
30860 }
30861 case 'u':
30862 if (strncmp (KR_keyword, "/dev/sdu11", 10) == 0)
30863 {
30864 {
30865 return dev_storage + 654;
30866
30867 }
30868 }
30869 else
30870 {
30871 {
30872 return NULL;
30873
30874 }
30875 }
30876 case 't':
30877 switch (KR_keyword [8])
30878 {
30879 case '9':
30880 if (strncmp (KR_keyword, "/dev/nst91", 10) == 0)
30881 {
30882 {
30883 return dev_storage + 197;
30884
30885 }
30886 }
30887 else
30888 {
30889 {
30890 return NULL;
30891
30892 }
30893 }
30894 case '8':
30895 if (strncmp (KR_keyword, "/dev/nst81", 10) == 0)
30896 {
30897 {
30898 return dev_storage + 187;
30899
30900 }
30901 }
30902 else
30903 {
30904 {
30905 return NULL;
30906
30907 }
30908 }
30909 case '7':
30910 if (strncmp (KR_keyword, "/dev/nst71", 10) == 0)
30911 {
30912 {
30913 return dev_storage + 177;
30914
30915 }
30916 }
30917 else
30918 {
30919 {
30920 return NULL;
30921
30922 }
30923 }
30924 case '6':
30925 if (strncmp (KR_keyword, "/dev/nst61", 10) == 0)
30926 {
30927 {
30928 return dev_storage + 167;
30929
30930 }
30931 }
30932 else
30933 {
30934 {
30935 return NULL;
30936
30937 }
30938 }
30939 case '5':
30940 if (strncmp (KR_keyword, "/dev/nst51", 10) == 0)
30941 {
30942 {
30943 return dev_storage + 157;
30944
30945 }
30946 }
30947 else
30948 {
30949 {
30950 return NULL;
30951
30952 }
30953 }
30954 case '4':
30955 if (strncmp (KR_keyword, "/dev/nst41", 10) == 0)
30956 {
30957 {
30958 return dev_storage + 147;
30959
30960 }
30961 }
30962 else
30963 {
30964 {
30965 return NULL;
30966
30967 }
30968 }
30969 case '3':
30970 if (strncmp (KR_keyword, "/dev/nst31", 10) == 0)
30971 {
30972 {
30973 return dev_storage + 137;
30974
30975 }
30976 }
30977 else
30978 {
30979 {
30980 return NULL;
30981
30982 }
30983 }
30984 case '2':
30985 if (strncmp (KR_keyword, "/dev/nst21", 10) == 0)
30986 {
30987 {
30988 return dev_storage + 127;
30989
30990 }
30991 }
30992 else
30993 {
30994 {
30995 return NULL;
30996
30997 }
30998 }
30999 case '1':
31000 switch (KR_keyword [5])
31001 {
31002 case 's':
31003 if (strncmp (KR_keyword, "/dev/sdt11", 10) == 0)
31004 {
31005 {
31006 return dev_storage + 639;
31007
31008 }
31009 }
31010 else
31011 {
31012 {
31013 return NULL;
31014
31015 }
31016 }
31017 case 'n':
31018 if (strncmp (KR_keyword, "/dev/nst11", 10) == 0)
31019 {
31020 {
31021 return dev_storage + 117;
31022
31023 }
31024 }
31025 else
31026 {
31027 {
31028 return NULL;
31029
31030 }
31031 }
31032 default:
31033 {
31034 return NULL;
31035
31036 }
31037 }
31038 default:
31039 {
31040 return NULL;
31041
31042 }
31043 }
31044 case 's':
31045 if (strncmp (KR_keyword, "/dev/sds11", 10) == 0)
31046 {
31047 {
31048 return dev_storage + 624;
31049
31050 }
31051 }
31052 else
31053 {
31054 {
31055 return NULL;
31056
31057 }
31058 }
31059 case 'r':
31060 if (strncmp (KR_keyword, "/dev/sdr11", 10) == 0)
31061 {
31062 {
31063 return dev_storage + 609;
31064
31065 }
31066 }
31067 else
31068 {
31069 {
31070 return NULL;
31071
31072 }
31073 }
31074 case 'q':
31075 if (strncmp (KR_keyword, "/dev/sdq11", 10) == 0)
31076 {
31077 {
31078 return dev_storage + 594;
31079
31080 }
31081 }
31082 else
31083 {
31084 {
31085 return NULL;
31086
31087 }
31088 }
31089 case 'p':
31090 if (strncmp (KR_keyword, "/dev/sdp11", 10) == 0)
31091 {
31092 {
31093 return dev_storage + 579;
31094
31095 }
31096 }
31097 else
31098 {
31099 {
31100 return NULL;
31101
31102 }
31103 }
31104 case 'o':
31105 if (strncmp (KR_keyword, "/dev/sdo11", 10) == 0)
31106 {
31107 {
31108 return dev_storage + 564;
31109
31110 }
31111 }
31112 else
31113 {
31114 {
31115 return NULL;
31116
31117 }
31118 }
31119 case 'n':
31120 switch (KR_keyword [5])
31121 {
31122 case 's':
31123 if (strncmp (KR_keyword, "/dev/sdn11", 10) == 0)
31124 {
31125 {
31126 return dev_storage + 549;
31127
31128 }
31129 }
31130 else
31131 {
31132 {
31133 return NULL;
31134
31135 }
31136 }
31137 case 'c':
31138 if (strncmp (KR_keyword, "/dev/cons1", 10) == 0)
31139 {
31140 {
31141 return dev_storage + 21;
31142
31143 }
31144 }
31145 else
31146 {
31147 {
31148 return NULL;
31149
31150 }
31151 }
31152 default:
31153 {
31154 return NULL;
31155
31156 }
31157 }
31158 case 'm':
31159 switch (KR_keyword [5])
31160 {
31161 case 's':
31162 if (strncmp (KR_keyword, "/dev/sdm11", 10) == 0)
31163 {
31164 {
31165 return dev_storage + 534;
31166
31167 }
31168 }
31169 else
31170 {
31171 {
31172 return NULL;
31173
31174 }
31175 }
31176 case 'c':
31177 if (strncmp (KR_keyword, "/dev/com11", 10) == 0)
31178 {
31179 {
31180 return dev_storage + 12;
31181
31182 }
31183 }
31184 else
31185 {
31186 {
31187 return NULL;
31188
31189 }
31190 }
31191 default:
31192 {
31193 return NULL;
31194
31195 }
31196 }
31197 case 'l':
31198 if (strncmp (KR_keyword, "/dev/sdl11", 10) == 0)
31199 {
31200 {
31201 return dev_storage + 519;
31202
31203 }
31204 }
31205 else
31206 {
31207 {
31208 return NULL;
31209
31210 }
31211 }
31212 case 'k':
31213 if (strncmp (KR_keyword, "/dev/sdk11", 10) == 0)
31214 {
31215 {
31216 return dev_storage + 504;
31217
31218 }
31219 }
31220 else
31221 {
31222 {
31223 return NULL;
31224
31225 }
31226 }
31227 case 'j':
31228 if (strncmp (KR_keyword, "/dev/sdj11", 10) == 0)
31229 {
31230 {
31231 return dev_storage + 489;
31232
31233 }
31234 }
31235 else
31236 {
31237 {
31238 return NULL;
31239
31240 }
31241 }
31242 case 'i':
31243 if (strncmp (KR_keyword, "/dev/sdi11", 10) == 0)
31244 {
31245 {
31246 return dev_storage + 474;
31247
31248 }
31249 }
31250 else
31251 {
31252 {
31253 return NULL;
31254
31255 }
31256 }
31257 case 'h':
31258 if (strncmp (KR_keyword, "/dev/sdh11", 10) == 0)
31259 {
31260 {
31261 return dev_storage + 459;
31262
31263 }
31264 }
31265 else
31266 {
31267 {
31268 return NULL;
31269
31270 }
31271 }
31272 case 'g':
31273 if (strncmp (KR_keyword, "/dev/sdg11", 10) == 0)
31274 {
31275 {
31276 return dev_storage + 444;
31277
31278 }
31279 }
31280 else
31281 {
31282 {
31283 return NULL;
31284
31285 }
31286 }
31287 case 'f':
31288 if (strncmp (KR_keyword, "/dev/sdf11", 10) == 0)
31289 {
31290 {
31291 return dev_storage + 429;
31292
31293 }
31294 }
31295 else
31296 {
31297 {
31298 return NULL;
31299
31300 }
31301 }
31302 case 'e':
31303 if (strncmp (KR_keyword, "/dev/sde11", 10) == 0)
31304 {
31305 {
31306 return dev_storage + 414;
31307
31308 }
31309 }
31310 else
31311 {
31312 {
31313 return NULL;
31314
31315 }
31316 }
31317 case 'd':
31318 switch (KR_keyword [8])
31319 {
31320 case 'x':
31321 if (strncmp (KR_keyword, "/dev/sddx1", 10) == 0)
31322 {
31323 {
31324 return dev_storage + 2351;
31325
31326 }
31327 }
31328 else
31329 {
31330 {
31331 return NULL;
31332
31333 }
31334 }
31335 case 'w':
31336 if (strncmp (KR_keyword, "/dev/sddw1", 10) == 0)
31337 {
31338 {
31339 return dev_storage + 2336;
31340
31341 }
31342 }
31343 else
31344 {
31345 {
31346 return NULL;
31347
31348 }
31349 }
31350 case 'v':
31351 if (strncmp (KR_keyword, "/dev/sddv1", 10) == 0)
31352 {
31353 {
31354 return dev_storage + 2321;
31355
31356 }
31357 }
31358 else
31359 {
31360 {
31361 return NULL;
31362
31363 }
31364 }
31365 case 'u':
31366 if (strncmp (KR_keyword, "/dev/sddu1", 10) == 0)
31367 {
31368 {
31369 return dev_storage + 2306;
31370
31371 }
31372 }
31373 else
31374 {
31375 {
31376 return NULL;
31377
31378 }
31379 }
31380 case 't':
31381 if (strncmp (KR_keyword, "/dev/sddt1", 10) == 0)
31382 {
31383 {
31384 return dev_storage + 2291;
31385
31386 }
31387 }
31388 else
31389 {
31390 {
31391 return NULL;
31392
31393 }
31394 }
31395 case 's':
31396 if (strncmp (KR_keyword, "/dev/sdds1", 10) == 0)
31397 {
31398 {
31399 return dev_storage + 2276;
31400
31401 }
31402 }
31403 else
31404 {
31405 {
31406 return NULL;
31407
31408 }
31409 }
31410 case 'r':
31411 if (strncmp (KR_keyword, "/dev/sddr1", 10) == 0)
31412 {
31413 {
31414 return dev_storage + 2261;
31415
31416 }
31417 }
31418 else
31419 {
31420 {
31421 return NULL;
31422
31423 }
31424 }
31425 case 'q':
31426 if (strncmp (KR_keyword, "/dev/sddq1", 10) == 0)
31427 {
31428 {
31429 return dev_storage + 2246;
31430
31431 }
31432 }
31433 else
31434 {
31435 {
31436 return NULL;
31437
31438 }
31439 }
31440 case 'p':
31441 if (strncmp (KR_keyword, "/dev/sddp1", 10) == 0)
31442 {
31443 {
31444 return dev_storage + 2231;
31445
31446 }
31447 }
31448 else
31449 {
31450 {
31451 return NULL;
31452
31453 }
31454 }
31455 case 'o':
31456 if (strncmp (KR_keyword, "/dev/sddo1", 10) == 0)
31457 {
31458 {
31459 return dev_storage + 2216;
31460
31461 }
31462 }
31463 else
31464 {
31465 {
31466 return NULL;
31467
31468 }
31469 }
31470 case 'n':
31471 if (strncmp (KR_keyword, "/dev/sddn1", 10) == 0)
31472 {
31473 {
31474 return dev_storage + 2201;
31475
31476 }
31477 }
31478 else
31479 {
31480 {
31481 return NULL;
31482
31483 }
31484 }
31485 case 'm':
31486 if (strncmp (KR_keyword, "/dev/sddm1", 10) == 0)
31487 {
31488 {
31489 return dev_storage + 2186;
31490
31491 }
31492 }
31493 else
31494 {
31495 {
31496 return NULL;
31497
31498 }
31499 }
31500 case 'l':
31501 if (strncmp (KR_keyword, "/dev/sddl1", 10) == 0)
31502 {
31503 {
31504 return dev_storage + 2171;
31505
31506 }
31507 }
31508 else
31509 {
31510 {
31511 return NULL;
31512
31513 }
31514 }
31515 case 'k':
31516 if (strncmp (KR_keyword, "/dev/sddk1", 10) == 0)
31517 {
31518 {
31519 return dev_storage + 2156;
31520
31521 }
31522 }
31523 else
31524 {
31525 {
31526 return NULL;
31527
31528 }
31529 }
31530 case 'j':
31531 if (strncmp (KR_keyword, "/dev/sddj1", 10) == 0)
31532 {
31533 {
31534 return dev_storage + 2141;
31535
31536 }
31537 }
31538 else
31539 {
31540 {
31541 return NULL;
31542
31543 }
31544 }
31545 case 'i':
31546 if (strncmp (KR_keyword, "/dev/sddi1", 10) == 0)
31547 {
31548 {
31549 return dev_storage + 2126;
31550
31551 }
31552 }
31553 else
31554 {
31555 {
31556 return NULL;
31557
31558 }
31559 }
31560 case 'h':
31561 if (strncmp (KR_keyword, "/dev/sddh1", 10) == 0)
31562 {
31563 {
31564 return dev_storage + 2111;
31565
31566 }
31567 }
31568 else
31569 {
31570 {
31571 return NULL;
31572
31573 }
31574 }
31575 case 'g':
31576 if (strncmp (KR_keyword, "/dev/sddg1", 10) == 0)
31577 {
31578 {
31579 return dev_storage + 2096;
31580
31581 }
31582 }
31583 else
31584 {
31585 {
31586 return NULL;
31587
31588 }
31589 }
31590 case 'f':
31591 if (strncmp (KR_keyword, "/dev/sddf1", 10) == 0)
31592 {
31593 {
31594 return dev_storage + 2081;
31595
31596 }
31597 }
31598 else
31599 {
31600 {
31601 return NULL;
31602
31603 }
31604 }
31605 case 'e':
31606 if (strncmp (KR_keyword, "/dev/sdde1", 10) == 0)
31607 {
31608 {
31609 return dev_storage + 2066;
31610
31611 }
31612 }
31613 else
31614 {
31615 {
31616 return NULL;
31617
31618 }
31619 }
31620 case 'd':
31621 if (strncmp (KR_keyword, "/dev/sddd1", 10) == 0)
31622 {
31623 {
31624 return dev_storage + 2051;
31625
31626 }
31627 }
31628 else
31629 {
31630 {
31631 return NULL;
31632
31633 }
31634 }
31635 case 'c':
31636 if (strncmp (KR_keyword, "/dev/sddc1", 10) == 0)
31637 {
31638 {
31639 return dev_storage + 2036;
31640
31641 }
31642 }
31643 else
31644 {
31645 {
31646 return NULL;
31647
31648 }
31649 }
31650 case 'b':
31651 if (strncmp (KR_keyword, "/dev/sddb1", 10) == 0)
31652 {
31653 {
31654 return dev_storage + 2021;
31655
31656 }
31657 }
31658 else
31659 {
31660 {
31661 return NULL;
31662
31663 }
31664 }
31665 case 'a':
31666 if (strncmp (KR_keyword, "/dev/sdda1", 10) == 0)
31667 {
31668 {
31669 return dev_storage + 2006;
31670
31671 }
31672 }
31673 else
31674 {
31675 {
31676 return NULL;
31677
31678 }
31679 }
31680 case '1':
31681 switch (KR_keyword [6])
31682 {
31683 case 'd':
31684 if (strncmp (KR_keyword, "/dev/sdd11", 10) == 0)
31685 {
31686 {
31687 return dev_storage + 399;
31688
31689 }
31690 }
31691 else
31692 {
31693 {
31694 return NULL;
31695
31696 }
31697 }
31698 case 'c':
31699 if (strncmp (KR_keyword, "/dev/scd11", 10) == 0)
31700 {
31701 {
31702 return dev_storage + 313;
31703
31704 }
31705 }
31706 else
31707 {
31708 {
31709 return NULL;
31710
31711 }
31712 }
31713 default:
31714 {
31715 return NULL;
31716
31717 }
31718 }
31719 default:
31720 {
31721 return NULL;
31722
31723 }
31724 }
31725 case 'c':
31726 switch (KR_keyword [8])
31727 {
31728 case 'z':
31729 if (strncmp (KR_keyword, "/dev/sdcz1", 10) == 0)
31730 {
31731 {
31732 return dev_storage + 1967;
31733
31734 }
31735 }
31736 else
31737 {
31738 {
31739 return NULL;
31740
31741 }
31742 }
31743 case 'y':
31744 if (strncmp (KR_keyword, "/dev/sdcy1", 10) == 0)
31745 {
31746 {
31747 return dev_storage + 1952;
31748
31749 }
31750 }
31751 else
31752 {
31753 {
31754 return NULL;
31755
31756 }
31757 }
31758 case 'x':
31759 if (strncmp (KR_keyword, "/dev/sdcx1", 10) == 0)
31760 {
31761 {
31762 return dev_storage + 1937;
31763
31764 }
31765 }
31766 else
31767 {
31768 {
31769 return NULL;
31770
31771 }
31772 }
31773 case 'w':
31774 if (strncmp (KR_keyword, "/dev/sdcw1", 10) == 0)
31775 {
31776 {
31777 return dev_storage + 1922;
31778
31779 }
31780 }
31781 else
31782 {
31783 {
31784 return NULL;
31785
31786 }
31787 }
31788 case 'v':
31789 if (strncmp (KR_keyword, "/dev/sdcv1", 10) == 0)
31790 {
31791 {
31792 return dev_storage + 1907;
31793
31794 }
31795 }
31796 else
31797 {
31798 {
31799 return NULL;
31800
31801 }
31802 }
31803 case 'u':
31804 if (strncmp (KR_keyword, "/dev/sdcu1", 10) == 0)
31805 {
31806 {
31807 return dev_storage + 1892;
31808
31809 }
31810 }
31811 else
31812 {
31813 {
31814 return NULL;
31815
31816 }
31817 }
31818 case 't':
31819 if (strncmp (KR_keyword, "/dev/sdct1", 10) == 0)
31820 {
31821 {
31822 return dev_storage + 1877;
31823
31824 }
31825 }
31826 else
31827 {
31828 {
31829 return NULL;
31830
31831 }
31832 }
31833 case 's':
31834 if (strncmp (KR_keyword, "/dev/sdcs1", 10) == 0)
31835 {
31836 {
31837 return dev_storage + 1862;
31838
31839 }
31840 }
31841 else
31842 {
31843 {
31844 return NULL;
31845
31846 }
31847 }
31848 case 'r':
31849 if (strncmp (KR_keyword, "/dev/sdcr1", 10) == 0)
31850 {
31851 {
31852 return dev_storage + 1847;
31853
31854 }
31855 }
31856 else
31857 {
31858 {
31859 return NULL;
31860
31861 }
31862 }
31863 case 'q':
31864 if (strncmp (KR_keyword, "/dev/sdcq1", 10) == 0)
31865 {
31866 {
31867 return dev_storage + 1832;
31868
31869 }
31870 }
31871 else
31872 {
31873 {
31874 return NULL;
31875
31876 }
31877 }
31878 case 'p':
31879 if (strncmp (KR_keyword, "/dev/sdcp1", 10) == 0)
31880 {
31881 {
31882 return dev_storage + 1817;
31883
31884 }
31885 }
31886 else
31887 {
31888 {
31889 return NULL;
31890
31891 }
31892 }
31893 case 'o':
31894 if (strncmp (KR_keyword, "/dev/sdco1", 10) == 0)
31895 {
31896 {
31897 return dev_storage + 1802;
31898
31899 }
31900 }
31901 else
31902 {
31903 {
31904 return NULL;
31905
31906 }
31907 }
31908 case 'n':
31909 if (strncmp (KR_keyword, "/dev/sdcn1", 10) == 0)
31910 {
31911 {
31912 return dev_storage + 1787;
31913
31914 }
31915 }
31916 else
31917 {
31918 {
31919 return NULL;
31920
31921 }
31922 }
31923 case 'm':
31924 if (strncmp (KR_keyword, "/dev/sdcm1", 10) == 0)
31925 {
31926 {
31927 return dev_storage + 1772;
31928
31929 }
31930 }
31931 else
31932 {
31933 {
31934 return NULL;
31935
31936 }
31937 }
31938 case 'l':
31939 if (strncmp (KR_keyword, "/dev/sdcl1", 10) == 0)
31940 {
31941 {
31942 return dev_storage + 1757;
31943
31944 }
31945 }
31946 else
31947 {
31948 {
31949 return NULL;
31950
31951 }
31952 }
31953 case 'k':
31954 if (strncmp (KR_keyword, "/dev/sdck1", 10) == 0)
31955 {
31956 {
31957 return dev_storage + 1742;
31958
31959 }
31960 }
31961 else
31962 {
31963 {
31964 return NULL;
31965
31966 }
31967 }
31968 case 'j':
31969 if (strncmp (KR_keyword, "/dev/sdcj1", 10) == 0)
31970 {
31971 {
31972 return dev_storage + 1727;
31973
31974 }
31975 }
31976 else
31977 {
31978 {
31979 return NULL;
31980
31981 }
31982 }
31983 case 'i':
31984 if (strncmp (KR_keyword, "/dev/sdci1", 10) == 0)
31985 {
31986 {
31987 return dev_storage + 1712;
31988
31989 }
31990 }
31991 else
31992 {
31993 {
31994 return NULL;
31995
31996 }
31997 }
31998 case 'h':
31999 if (strncmp (KR_keyword, "/dev/sdch1", 10) == 0)
32000 {
32001 {
32002 return dev_storage + 1697;
32003
32004 }
32005 }
32006 else
32007 {
32008 {
32009 return NULL;
32010
32011 }
32012 }
32013 case 'g':
32014 if (strncmp (KR_keyword, "/dev/sdcg1", 10) == 0)
32015 {
32016 {
32017 return dev_storage + 1682;
32018
32019 }
32020 }
32021 else
32022 {
32023 {
32024 return NULL;
32025
32026 }
32027 }
32028 case 'f':
32029 if (strncmp (KR_keyword, "/dev/sdcf1", 10) == 0)
32030 {
32031 {
32032 return dev_storage + 1667;
32033
32034 }
32035 }
32036 else
32037 {
32038 {
32039 return NULL;
32040
32041 }
32042 }
32043 case 'e':
32044 if (strncmp (KR_keyword, "/dev/sdce1", 10) == 0)
32045 {
32046 {
32047 return dev_storage + 1652;
32048
32049 }
32050 }
32051 else
32052 {
32053 {
32054 return NULL;
32055
32056 }
32057 }
32058 case 'd':
32059 if (strncmp (KR_keyword, "/dev/sdcd1", 10) == 0)
32060 {
32061 {
32062 return dev_storage + 1637;
32063
32064 }
32065 }
32066 else
32067 {
32068 {
32069 return NULL;
32070
32071 }
32072 }
32073 case 'c':
32074 if (strncmp (KR_keyword, "/dev/sdcc1", 10) == 0)
32075 {
32076 {
32077 return dev_storage + 1622;
32078
32079 }
32080 }
32081 else
32082 {
32083 {
32084 return NULL;
32085
32086 }
32087 }
32088 case 'b':
32089 if (strncmp (KR_keyword, "/dev/sdcb1", 10) == 0)
32090 {
32091 {
32092 return dev_storage + 1607;
32093
32094 }
32095 }
32096 else
32097 {
32098 {
32099 return NULL;
32100
32101 }
32102 }
32103 case 'a':
32104 if (strncmp (KR_keyword, "/dev/sdca1", 10) == 0)
32105 {
32106 {
32107 return dev_storage + 1592;
32108
32109 }
32110 }
32111 else
32112 {
32113 {
32114 return NULL;
32115
32116 }
32117 }
32118 case '1':
32119 if (strncmp (KR_keyword, "/dev/sdc11", 10) == 0)
32120 {
32121 {
32122 return dev_storage + 384;
32123
32124 }
32125 }
32126 else
32127 {
32128 {
32129 return NULL;
32130
32131 }
32132 }
32133 default:
32134 {
32135 return NULL;
32136
32137 }
32138 }
32139 case 'b':
32140 switch (KR_keyword [8])
32141 {
32142 case 'z':
32143 if (strncmp (KR_keyword, "/dev/sdbz1", 10) == 0)
32144 {
32145 {
32146 return dev_storage + 1551;
32147
32148 }
32149 }
32150 else
32151 {
32152 {
32153 return NULL;
32154
32155 }
32156 }
32157 case 'y':
32158 if (strncmp (KR_keyword, "/dev/sdby1", 10) == 0)
32159 {
32160 {
32161 return dev_storage + 1536;
32162
32163 }
32164 }
32165 else
32166 {
32167 {
32168 return NULL;
32169
32170 }
32171 }
32172 case 'x':
32173 if (strncmp (KR_keyword, "/dev/sdbx1", 10) == 0)
32174 {
32175 {
32176 return dev_storage + 1521;
32177
32178 }
32179 }
32180 else
32181 {
32182 {
32183 return NULL;
32184
32185 }
32186 }
32187 case 'w':
32188 if (strncmp (KR_keyword, "/dev/sdbw1", 10) == 0)
32189 {
32190 {
32191 return dev_storage + 1506;
32192
32193 }
32194 }
32195 else
32196 {
32197 {
32198 return NULL;
32199
32200 }
32201 }
32202 case 'v':
32203 if (strncmp (KR_keyword, "/dev/sdbv1", 10) == 0)
32204 {
32205 {
32206 return dev_storage + 1491;
32207
32208 }
32209 }
32210 else
32211 {
32212 {
32213 return NULL;
32214
32215 }
32216 }
32217 case 'u':
32218 if (strncmp (KR_keyword, "/dev/sdbu1", 10) == 0)
32219 {
32220 {
32221 return dev_storage + 1476;
32222
32223 }
32224 }
32225 else
32226 {
32227 {
32228 return NULL;
32229
32230 }
32231 }
32232 case 't':
32233 if (strncmp (KR_keyword, "/dev/sdbt1", 10) == 0)
32234 {
32235 {
32236 return dev_storage + 1461;
32237
32238 }
32239 }
32240 else
32241 {
32242 {
32243 return NULL;
32244
32245 }
32246 }
32247 case 's':
32248 if (strncmp (KR_keyword, "/dev/sdbs1", 10) == 0)
32249 {
32250 {
32251 return dev_storage + 1446;
32252
32253 }
32254 }
32255 else
32256 {
32257 {
32258 return NULL;
32259
32260 }
32261 }
32262 case 'r':
32263 if (strncmp (KR_keyword, "/dev/sdbr1", 10) == 0)
32264 {
32265 {
32266 return dev_storage + 1431;
32267
32268 }
32269 }
32270 else
32271 {
32272 {
32273 return NULL;
32274
32275 }
32276 }
32277 case 'q':
32278 if (strncmp (KR_keyword, "/dev/sdbq1", 10) == 0)
32279 {
32280 {
32281 return dev_storage + 1416;
32282
32283 }
32284 }
32285 else
32286 {
32287 {
32288 return NULL;
32289
32290 }
32291 }
32292 case 'p':
32293 if (strncmp (KR_keyword, "/dev/sdbp1", 10) == 0)
32294 {
32295 {
32296 return dev_storage + 1401;
32297
32298 }
32299 }
32300 else
32301 {
32302 {
32303 return NULL;
32304
32305 }
32306 }
32307 case 'o':
32308 if (strncmp (KR_keyword, "/dev/sdbo1", 10) == 0)
32309 {
32310 {
32311 return dev_storage + 1386;
32312
32313 }
32314 }
32315 else
32316 {
32317 {
32318 return NULL;
32319
32320 }
32321 }
32322 case 'n':
32323 if (strncmp (KR_keyword, "/dev/sdbn1", 10) == 0)
32324 {
32325 {
32326 return dev_storage + 1371;
32327
32328 }
32329 }
32330 else
32331 {
32332 {
32333 return NULL;
32334
32335 }
32336 }
32337 case 'm':
32338 if (strncmp (KR_keyword, "/dev/sdbm1", 10) == 0)
32339 {
32340 {
32341 return dev_storage + 1356;
32342
32343 }
32344 }
32345 else
32346 {
32347 {
32348 return NULL;
32349
32350 }
32351 }
32352 case 'l':
32353 if (strncmp (KR_keyword, "/dev/sdbl1", 10) == 0)
32354 {
32355 {
32356 return dev_storage + 1341;
32357
32358 }
32359 }
32360 else
32361 {
32362 {
32363 return NULL;
32364
32365 }
32366 }
32367 case 'k':
32368 if (strncmp (KR_keyword, "/dev/sdbk1", 10) == 0)
32369 {
32370 {
32371 return dev_storage + 1326;
32372
32373 }
32374 }
32375 else
32376 {
32377 {
32378 return NULL;
32379
32380 }
32381 }
32382 case 'j':
32383 if (strncmp (KR_keyword, "/dev/sdbj1", 10) == 0)
32384 {
32385 {
32386 return dev_storage + 1311;
32387
32388 }
32389 }
32390 else
32391 {
32392 {
32393 return NULL;
32394
32395 }
32396 }
32397 case 'i':
32398 if (strncmp (KR_keyword, "/dev/sdbi1", 10) == 0)
32399 {
32400 {
32401 return dev_storage + 1296;
32402
32403 }
32404 }
32405 else
32406 {
32407 {
32408 return NULL;
32409
32410 }
32411 }
32412 case 'h':
32413 if (strncmp (KR_keyword, "/dev/sdbh1", 10) == 0)
32414 {
32415 {
32416 return dev_storage + 1281;
32417
32418 }
32419 }
32420 else
32421 {
32422 {
32423 return NULL;
32424
32425 }
32426 }
32427 case 'g':
32428 if (strncmp (KR_keyword, "/dev/sdbg1", 10) == 0)
32429 {
32430 {
32431 return dev_storage + 1266;
32432
32433 }
32434 }
32435 else
32436 {
32437 {
32438 return NULL;
32439
32440 }
32441 }
32442 case 'f':
32443 if (strncmp (KR_keyword, "/dev/sdbf1", 10) == 0)
32444 {
32445 {
32446 return dev_storage + 1251;
32447
32448 }
32449 }
32450 else
32451 {
32452 {
32453 return NULL;
32454
32455 }
32456 }
32457 case 'e':
32458 if (strncmp (KR_keyword, "/dev/sdbe1", 10) == 0)
32459 {
32460 {
32461 return dev_storage + 1236;
32462
32463 }
32464 }
32465 else
32466 {
32467 {
32468 return NULL;
32469
32470 }
32471 }
32472 case 'd':
32473 if (strncmp (KR_keyword, "/dev/sdbd1", 10) == 0)
32474 {
32475 {
32476 return dev_storage + 1221;
32477
32478 }
32479 }
32480 else
32481 {
32482 {
32483 return NULL;
32484
32485 }
32486 }
32487 case 'c':
32488 if (strncmp (KR_keyword, "/dev/sdbc1", 10) == 0)
32489 {
32490 {
32491 return dev_storage + 1206;
32492
32493 }
32494 }
32495 else
32496 {
32497 {
32498 return NULL;
32499
32500 }
32501 }
32502 case 'b':
32503 if (strncmp (KR_keyword, "/dev/sdbb1", 10) == 0)
32504 {
32505 {
32506 return dev_storage + 1191;
32507
32508 }
32509 }
32510 else
32511 {
32512 {
32513 return NULL;
32514
32515 }
32516 }
32517 case 'a':
32518 if (strncmp (KR_keyword, "/dev/sdba1", 10) == 0)
32519 {
32520 {
32521 return dev_storage + 1176;
32522
32523 }
32524 }
32525 else
32526 {
32527 {
32528 return NULL;
32529
32530 }
32531 }
32532 case '1':
32533 if (strncmp (KR_keyword, "/dev/sdb11", 10) == 0)
32534 {
32535 {
32536 return dev_storage + 369;
32537
32538 }
32539 }
32540 else
32541 {
32542 {
32543 return NULL;
32544
32545 }
32546 }
32547 default:
32548 {
32549 return NULL;
32550
32551 }
32552 }
32553 case 'a':
32554 switch (KR_keyword [8])
32555 {
32556 case 'z':
32557 if (strncmp (KR_keyword, "/dev/sdaz1", 10) == 0)
32558 {
32559 {
32560 return dev_storage + 1135;
32561
32562 }
32563 }
32564 else
32565 {
32566 {
32567 return NULL;
32568
32569 }
32570 }
32571 case 'y':
32572 if (strncmp (KR_keyword, "/dev/sday1", 10) == 0)
32573 {
32574 {
32575 return dev_storage + 1120;
32576
32577 }
32578 }
32579 else
32580 {
32581 {
32582 return NULL;
32583
32584 }
32585 }
32586 case 'x':
32587 if (strncmp (KR_keyword, "/dev/sdax1", 10) == 0)
32588 {
32589 {
32590 return dev_storage + 1105;
32591
32592 }
32593 }
32594 else
32595 {
32596 {
32597 return NULL;
32598
32599 }
32600 }
32601 case 'w':
32602 if (strncmp (KR_keyword, "/dev/sdaw1", 10) == 0)
32603 {
32604 {
32605 return dev_storage + 1090;
32606
32607 }
32608 }
32609 else
32610 {
32611 {
32612 return NULL;
32613
32614 }
32615 }
32616 case 'v':
32617 if (strncmp (KR_keyword, "/dev/sdav1", 10) == 0)
32618 {
32619 {
32620 return dev_storage + 1075;
32621
32622 }
32623 }
32624 else
32625 {
32626 {
32627 return NULL;
32628
32629 }
32630 }
32631 case 'u':
32632 if (strncmp (KR_keyword, "/dev/sdau1", 10) == 0)
32633 {
32634 {
32635 return dev_storage + 1060;
32636
32637 }
32638 }
32639 else
32640 {
32641 {
32642 return NULL;
32643
32644 }
32645 }
32646 case 't':
32647 if (strncmp (KR_keyword, "/dev/sdat1", 10) == 0)
32648 {
32649 {
32650 return dev_storage + 1045;
32651
32652 }
32653 }
32654 else
32655 {
32656 {
32657 return NULL;
32658
32659 }
32660 }
32661 case 's':
32662 if (strncmp (KR_keyword, "/dev/sdas1", 10) == 0)
32663 {
32664 {
32665 return dev_storage + 1030;
32666
32667 }
32668 }
32669 else
32670 {
32671 {
32672 return NULL;
32673
32674 }
32675 }
32676 case 'r':
32677 if (strncmp (KR_keyword, "/dev/sdar1", 10) == 0)
32678 {
32679 {
32680 return dev_storage + 1015;
32681
32682 }
32683 }
32684 else
32685 {
32686 {
32687 return NULL;
32688
32689 }
32690 }
32691 case 'q':
32692 if (strncmp (KR_keyword, "/dev/sdaq1", 10) == 0)
32693 {
32694 {
32695 return dev_storage + 1000;
32696
32697 }
32698 }
32699 else
32700 {
32701 {
32702 return NULL;
32703
32704 }
32705 }
32706 case 'p':
32707 if (strncmp (KR_keyword, "/dev/sdap1", 10) == 0)
32708 {
32709 {
32710 return dev_storage + 985;
32711
32712 }
32713 }
32714 else
32715 {
32716 {
32717 return NULL;
32718
32719 }
32720 }
32721 case 'o':
32722 if (strncmp (KR_keyword, "/dev/sdao1", 10) == 0)
32723 {
32724 {
32725 return dev_storage + 970;
32726
32727 }
32728 }
32729 else
32730 {
32731 {
32732 return NULL;
32733
32734 }
32735 }
32736 case 'n':
32737 if (strncmp (KR_keyword, "/dev/sdan1", 10) == 0)
32738 {
32739 {
32740 return dev_storage + 955;
32741
32742 }
32743 }
32744 else
32745 {
32746 {
32747 return NULL;
32748
32749 }
32750 }
32751 case 'm':
32752 if (strncmp (KR_keyword, "/dev/sdam1", 10) == 0)
32753 {
32754 {
32755 return dev_storage + 940;
32756
32757 }
32758 }
32759 else
32760 {
32761 {
32762 return NULL;
32763
32764 }
32765 }
32766 case 'l':
32767 if (strncmp (KR_keyword, "/dev/sdal1", 10) == 0)
32768 {
32769 {
32770 return dev_storage + 925;
32771
32772 }
32773 }
32774 else
32775 {
32776 {
32777 return NULL;
32778
32779 }
32780 }
32781 case 'k':
32782 if (strncmp (KR_keyword, "/dev/sdak1", 10) == 0)
32783 {
32784 {
32785 return dev_storage + 910;
32786
32787 }
32788 }
32789 else
32790 {
32791 {
32792 return NULL;
32793
32794 }
32795 }
32796 case 'j':
32797 if (strncmp (KR_keyword, "/dev/sdaj1", 10) == 0)
32798 {
32799 {
32800 return dev_storage + 895;
32801
32802 }
32803 }
32804 else
32805 {
32806 {
32807 return NULL;
32808
32809 }
32810 }
32811 case 'i':
32812 if (strncmp (KR_keyword, "/dev/sdai1", 10) == 0)
32813 {
32814 {
32815 return dev_storage + 880;
32816
32817 }
32818 }
32819 else
32820 {
32821 {
32822 return NULL;
32823
32824 }
32825 }
32826 case 'h':
32827 if (strncmp (KR_keyword, "/dev/sdah1", 10) == 0)
32828 {
32829 {
32830 return dev_storage + 865;
32831
32832 }
32833 }
32834 else
32835 {
32836 {
32837 return NULL;
32838
32839 }
32840 }
32841 case 'g':
32842 if (strncmp (KR_keyword, "/dev/sdag1", 10) == 0)
32843 {
32844 {
32845 return dev_storage + 850;
32846
32847 }
32848 }
32849 else
32850 {
32851 {
32852 return NULL;
32853
32854 }
32855 }
32856 case 'f':
32857 if (strncmp (KR_keyword, "/dev/sdaf1", 10) == 0)
32858 {
32859 {
32860 return dev_storage + 835;
32861
32862 }
32863 }
32864 else
32865 {
32866 {
32867 return NULL;
32868
32869 }
32870 }
32871 case 'e':
32872 if (strncmp (KR_keyword, "/dev/sdae1", 10) == 0)
32873 {
32874 {
32875 return dev_storage + 820;
32876
32877 }
32878 }
32879 else
32880 {
32881 {
32882 return NULL;
32883
32884 }
32885 }
32886 case 'd':
32887 if (strncmp (KR_keyword, "/dev/sdad1", 10) == 0)
32888 {
32889 {
32890 return dev_storage + 805;
32891
32892 }
32893 }
32894 else
32895 {
32896 {
32897 return NULL;
32898
32899 }
32900 }
32901 case 'c':
32902 if (strncmp (KR_keyword, "/dev/sdac1", 10) == 0)
32903 {
32904 {
32905 return dev_storage + 790;
32906
32907 }
32908 }
32909 else
32910 {
32911 {
32912 return NULL;
32913
32914 }
32915 }
32916 case 'b':
32917 if (strncmp (KR_keyword, "/dev/sdab1", 10) == 0)
32918 {
32919 {
32920 return dev_storage + 775;
32921
32922 }
32923 }
32924 else
32925 {
32926 {
32927 return NULL;
32928
32929 }
32930 }
32931 case 'a':
32932 if (strncmp (KR_keyword, "/dev/sdaa1", 10) == 0)
32933 {
32934 {
32935 return dev_storage + 760;
32936
32937 }
32938 }
32939 else
32940 {
32941 {
32942 return NULL;
32943
32944 }
32945 }
32946 case '1':
32947 if (strncmp (KR_keyword, "/dev/sda11", 10) == 0)
32948 {
32949 {
32950 return dev_storage + 354;
32951
32952 }
32953 }
32954 else
32955 {
32956 {
32957 return NULL;
32958
32959 }
32960 }
32961 default:
32962 {
32963 return NULL;
32964
32965 }
32966 }
32967 case '1':
32968 switch (KR_keyword [8])
32969 {
32970 case '2':
32971 if (strncmp (KR_keyword, "/dev/st121", 10) == 0)
32972 {
32973 {
32974 return dev_storage + 2503;
32975
32976 }
32977 }
32978 else
32979 {
32980 {
32981 return NULL;
32982
32983 }
32984 }
32985 case '1':
32986 if (strncmp (KR_keyword, "/dev/st111", 10) == 0)
32987 {
32988 {
32989 return dev_storage + 2493;
32990
32991 }
32992 }
32993 else
32994 {
32995 {
32996 return NULL;
32997
32998 }
32999 }
33000 case '0':
33001 if (strncmp (KR_keyword, "/dev/st101", 10) == 0)
33002 {
33003 {
33004 return dev_storage + 2483;
33005
33006 }
33007 }
33008 else
33009 {
33010 {
33011 return NULL;
33012
33013 }
33014 }
33015 default:
33016 {
33017 return NULL;
33018
33019 }
33020 }
33021 default:
33022 {
33023 return NULL;
33024
33025 }
33026 }
33027 case '0':
33028 switch (KR_keyword [7])
33029 {
33030 case 'z':
33031 if (strncmp (KR_keyword, "/dev/sdz10", 10) == 0)
33032 {
33033 {
33034 return dev_storage + 728;
33035
33036 }
33037 }
33038 else
33039 {
33040 {
33041 return NULL;
33042
33043 }
33044 }
33045 case 'y':
33046 switch (KR_keyword [8])
33047 {
33048 case 'S':
33049 if (strncmp (KR_keyword, "/dev/ttyS0", 10) == 0)
33050 {
33051 {
33052 return dev_storage + 2511;
33053
33054 }
33055 }
33056 else
33057 {
33058 {
33059 return NULL;
33060
33061 }
33062 }
33063 case '6':
33064 if (strncmp (KR_keyword, "/dev/pty60", 10) == 0)
33065 {
33066 {
33067 return dev_storage + 297;
33068
33069 }
33070 }
33071 else
33072 {
33073 {
33074 return NULL;
33075
33076 }
33077 }
33078 case '5':
33079 if (strncmp (KR_keyword, "/dev/pty50", 10) == 0)
33080 {
33081 {
33082 return dev_storage + 287;
33083
33084 }
33085 }
33086 else
33087 {
33088 {
33089 return NULL;
33090
33091 }
33092 }
33093 case '4':
33094 if (strncmp (KR_keyword, "/dev/pty40", 10) == 0)
33095 {
33096 {
33097 return dev_storage + 277;
33098
33099 }
33100 }
33101 else
33102 {
33103 {
33104 return NULL;
33105
33106 }
33107 }
33108 case '3':
33109 if (strncmp (KR_keyword, "/dev/pty30", 10) == 0)
33110 {
33111 {
33112 return dev_storage + 267;
33113
33114 }
33115 }
33116 else
33117 {
33118 {
33119 return NULL;
33120
33121 }
33122 }
33123 case '2':
33124 if (strncmp (KR_keyword, "/dev/pty20", 10) == 0)
33125 {
33126 {
33127 return dev_storage + 257;
33128
33129 }
33130 }
33131 else
33132 {
33133 {
33134 return NULL;
33135
33136 }
33137 }
33138 case '1':
33139 switch (KR_keyword [5])
33140 {
33141 case 's':
33142 if (strncmp (KR_keyword, "/dev/sdy10", 10) == 0)
33143 {
33144 {
33145 return dev_storage + 713;
33146
33147 }
33148 }
33149 else
33150 {
33151 {
33152 return NULL;
33153
33154 }
33155 }
33156 case 'p':
33157 if (strncmp (KR_keyword, "/dev/pty10", 10) == 0)
33158 {
33159 {
33160 return dev_storage + 247;
33161
33162 }
33163 }
33164 else
33165 {
33166 {
33167 return NULL;
33168
33169 }
33170 }
33171 default:
33172 {
33173 return NULL;
33174
33175 }
33176 }
33177 default:
33178 {
33179 return NULL;
33180
33181 }
33182 }
33183 case 'x':
33184 if (strncmp (KR_keyword, "/dev/sdx10", 10) == 0)
33185 {
33186 {
33187 return dev_storage + 698;
33188
33189 }
33190 }
33191 else
33192 {
33193 {
33194 return NULL;
33195
33196 }
33197 }
33198 case 'w':
33199 if (strncmp (KR_keyword, "/dev/sdw10", 10) == 0)
33200 {
33201 {
33202 return dev_storage + 683;
33203
33204 }
33205 }
33206 else
33207 {
33208 {
33209 return NULL;
33210
33211 }
33212 }
33213 case 'v':
33214 if (strncmp (KR_keyword, "/dev/sdv10", 10) == 0)
33215 {
33216 {
33217 return dev_storage + 668;
33218
33219 }
33220 }
33221 else
33222 {
33223 {
33224 return NULL;
33225
33226 }
33227 }
33228 case 'u':
33229 if (strncmp (KR_keyword, "/dev/sdu10", 10) == 0)
33230 {
33231 {
33232 return dev_storage + 653;
33233
33234 }
33235 }
33236 else
33237 {
33238 {
33239 return NULL;
33240
33241 }
33242 }
33243 case 't':
33244 switch (KR_keyword [8])
33245 {
33246 case '9':
33247 if (strncmp (KR_keyword, "/dev/nst90", 10) == 0)
33248 {
33249 {
33250 return dev_storage + 196;
33251
33252 }
33253 }
33254 else
33255 {
33256 {
33257 return NULL;
33258
33259 }
33260 }
33261 case '8':
33262 if (strncmp (KR_keyword, "/dev/nst80", 10) == 0)
33263 {
33264 {
33265 return dev_storage + 186;
33266
33267 }
33268 }
33269 else
33270 {
33271 {
33272 return NULL;
33273
33274 }
33275 }
33276 case '7':
33277 if (strncmp (KR_keyword, "/dev/nst70", 10) == 0)
33278 {
33279 {
33280 return dev_storage + 176;
33281
33282 }
33283 }
33284 else
33285 {
33286 {
33287 return NULL;
33288
33289 }
33290 }
33291 case '6':
33292 if (strncmp (KR_keyword, "/dev/nst60", 10) == 0)
33293 {
33294 {
33295 return dev_storage + 166;
33296
33297 }
33298 }
33299 else
33300 {
33301 {
33302 return NULL;
33303
33304 }
33305 }
33306 case '5':
33307 if (strncmp (KR_keyword, "/dev/nst50", 10) == 0)
33308 {
33309 {
33310 return dev_storage + 156;
33311
33312 }
33313 }
33314 else
33315 {
33316 {
33317 return NULL;
33318
33319 }
33320 }
33321 case '4':
33322 if (strncmp (KR_keyword, "/dev/nst40", 10) == 0)
33323 {
33324 {
33325 return dev_storage + 146;
33326
33327 }
33328 }
33329 else
33330 {
33331 {
33332 return NULL;
33333
33334 }
33335 }
33336 case '3':
33337 if (strncmp (KR_keyword, "/dev/nst30", 10) == 0)
33338 {
33339 {
33340 return dev_storage + 136;
33341
33342 }
33343 }
33344 else
33345 {
33346 {
33347 return NULL;
33348
33349 }
33350 }
33351 case '2':
33352 if (strncmp (KR_keyword, "/dev/nst20", 10) == 0)
33353 {
33354 {
33355 return dev_storage + 126;
33356
33357 }
33358 }
33359 else
33360 {
33361 {
33362 return NULL;
33363
33364 }
33365 }
33366 case '1':
33367 switch (KR_keyword [5])
33368 {
33369 case 's':
33370 if (strncmp (KR_keyword, "/dev/sdt10", 10) == 0)
33371 {
33372 {
33373 return dev_storage + 638;
33374
33375 }
33376 }
33377 else
33378 {
33379 {
33380 return NULL;
33381
33382 }
33383 }
33384 case 'n':
33385 if (strncmp (KR_keyword, "/dev/nst10", 10) == 0)
33386 {
33387 {
33388 return dev_storage + 116;
33389
33390 }
33391 }
33392 else
33393 {
33394 {
33395 return NULL;
33396
33397 }
33398 }
33399 default:
33400 {
33401 return NULL;
33402
33403 }
33404 }
33405 default:
33406 {
33407 return NULL;
33408
33409 }
33410 }
33411 case 's':
33412 if (strncmp (KR_keyword, "/dev/sds10", 10) == 0)
33413 {
33414 {
33415 return dev_storage + 623;
33416
33417 }
33418 }
33419 else
33420 {
33421 {
33422 return NULL;
33423
33424 }
33425 }
33426 case 'r':
33427 if (strncmp (KR_keyword, "/dev/sdr10", 10) == 0)
33428 {
33429 {
33430 return dev_storage + 608;
33431
33432 }
33433 }
33434 else
33435 {
33436 {
33437 return NULL;
33438
33439 }
33440 }
33441 case 'q':
33442 if (strncmp (KR_keyword, "/dev/sdq10", 10) == 0)
33443 {
33444 {
33445 return dev_storage + 593;
33446
33447 }
33448 }
33449 else
33450 {
33451 {
33452 return NULL;
33453
33454 }
33455 }
33456 case 'p':
33457 if (strncmp (KR_keyword, "/dev/sdp10", 10) == 0)
33458 {
33459 {
33460 return dev_storage + 578;
33461
33462 }
33463 }
33464 else
33465 {
33466 {
33467 return NULL;
33468
33469 }
33470 }
33471 case 'o':
33472 if (strncmp (KR_keyword, "/dev/sdo10", 10) == 0)
33473 {
33474 {
33475 return dev_storage + 563;
33476
33477 }
33478 }
33479 else
33480 {
33481 {
33482 return NULL;
33483
33484 }
33485 }
33486 case 'n':
33487 switch (KR_keyword [5])
33488 {
33489 case 's':
33490 if (strncmp (KR_keyword, "/dev/sdn10", 10) == 0)
33491 {
33492 {
33493 return dev_storage + 548;
33494
33495 }
33496 }
33497 else
33498 {
33499 {
33500 return NULL;
33501
33502 }
33503 }
33504 case 'c':
33505 if (strncmp (KR_keyword, "/dev/cons0", 10) == 0)
33506 {
33507 {
33508 return dev_storage + 20;
33509
33510 }
33511 }
33512 else
33513 {
33514 {
33515 return NULL;
33516
33517 }
33518 }
33519 default:
33520 {
33521 return NULL;
33522
33523 }
33524 }
33525 case 'm':
33526 switch (KR_keyword [5])
33527 {
33528 case 's':
33529 if (strncmp (KR_keyword, "/dev/sdm10", 10) == 0)
33530 {
33531 {
33532 return dev_storage + 533;
33533
33534 }
33535 }
33536 else
33537 {
33538 {
33539 return NULL;
33540
33541 }
33542 }
33543 case 'c':
33544 if (strncmp (KR_keyword, "/dev/com10", 10) == 0)
33545 {
33546 {
33547 return dev_storage + 11;
33548
33549 }
33550 }
33551 else
33552 {
33553 {
33554 return NULL;
33555
33556 }
33557 }
33558 default:
33559 {
33560 return NULL;
33561
33562 }
33563 }
33564 case 'l':
33565 if (strncmp (KR_keyword, "/dev/sdl10", 10) == 0)
33566 {
33567 {
33568 return dev_storage + 518;
33569
33570 }
33571 }
33572 else
33573 {
33574 {
33575 return NULL;
33576
33577 }
33578 }
33579 case 'k':
33580 if (strncmp (KR_keyword, "/dev/sdk10", 10) == 0)
33581 {
33582 {
33583 return dev_storage + 503;
33584
33585 }
33586 }
33587 else
33588 {
33589 {
33590 return NULL;
33591
33592 }
33593 }
33594 case 'j':
33595 if (strncmp (KR_keyword, "/dev/sdj10", 10) == 0)
33596 {
33597 {
33598 return dev_storage + 488;
33599
33600 }
33601 }
33602 else
33603 {
33604 {
33605 return NULL;
33606
33607 }
33608 }
33609 case 'i':
33610 if (strncmp (KR_keyword, "/dev/sdi10", 10) == 0)
33611 {
33612 {
33613 return dev_storage + 473;
33614
33615 }
33616 }
33617 else
33618 {
33619 {
33620 return NULL;
33621
33622 }
33623 }
33624 case 'h':
33625 if (strncmp (KR_keyword, "/dev/sdh10", 10) == 0)
33626 {
33627 {
33628 return dev_storage + 458;
33629
33630 }
33631 }
33632 else
33633 {
33634 {
33635 return NULL;
33636
33637 }
33638 }
33639 case 'g':
33640 if (strncmp (KR_keyword, "/dev/sdg10", 10) == 0)
33641 {
33642 {
33643 return dev_storage + 443;
33644
33645 }
33646 }
33647 else
33648 {
33649 {
33650 return NULL;
33651
33652 }
33653 }
33654 case 'f':
33655 if (strncmp (KR_keyword, "/dev/sdf10", 10) == 0)
33656 {
33657 {
33658 return dev_storage + 428;
33659
33660 }
33661 }
33662 else
33663 {
33664 {
33665 return NULL;
33666
33667 }
33668 }
33669 case 'e':
33670 if (strncmp (KR_keyword, "/dev/sde10", 10) == 0)
33671 {
33672 {
33673 return dev_storage + 413;
33674
33675 }
33676 }
33677 else
33678 {
33679 {
33680 return NULL;
33681
33682 }
33683 }
33684 case 'd':
33685 switch (KR_keyword [6])
33686 {
33687 case 'd':
33688 if (strncmp (KR_keyword, "/dev/sdd10", 10) == 0)
33689 {
33690 {
33691 return dev_storage + 398;
33692
33693 }
33694 }
33695 else
33696 {
33697 {
33698 return NULL;
33699
33700 }
33701 }
33702 case 'c':
33703 if (strncmp (KR_keyword, "/dev/scd10", 10) == 0)
33704 {
33705 {
33706 return dev_storage + 312;
33707
33708 }
33709 }
33710 else
33711 {
33712 {
33713 return NULL;
33714
33715 }
33716 }
33717 default:
33718 {
33719 return NULL;
33720
33721 }
33722 }
33723 case 'c':
33724 if (strncmp (KR_keyword, "/dev/sdc10", 10) == 0)
33725 {
33726 {
33727 return dev_storage + 383;
33728
33729 }
33730 }
33731 else
33732 {
33733 {
33734 return NULL;
33735
33736 }
33737 }
33738 case 'b':
33739 if (strncmp (KR_keyword, "/dev/sdb10", 10) == 0)
33740 {
33741 {
33742 return dev_storage + 368;
33743
33744 }
33745 }
33746 else
33747 {
33748 {
33749 return NULL;
33750
33751 }
33752 }
33753 case 'a':
33754 if (strncmp (KR_keyword, "/dev/sda10", 10) == 0)
33755 {
33756 {
33757 return dev_storage + 353;
33758
33759 }
33760 }
33761 else
33762 {
33763 {
33764 return NULL;
33765
33766 }
33767 }
33768 case '1':
33769 switch (KR_keyword [8])
33770 {
33771 case '2':
33772 if (strncmp (KR_keyword, "/dev/st120", 10) == 0)
33773 {
33774 {
33775 return dev_storage + 2502;
33776
33777 }
33778 }
33779 else
33780 {
33781 {
33782 return NULL;
33783
33784 }
33785 }
33786 case '1':
33787 if (strncmp (KR_keyword, "/dev/st110", 10) == 0)
33788 {
33789 {
33790 return dev_storage + 2492;
33791
33792 }
33793 }
33794 else
33795 {
33796 {
33797 return NULL;
33798
33799 }
33800 }
33801 case '0':
33802 if (strncmp (KR_keyword, "/dev/st100", 10) == 0)
33803 {
33804 {
33805 return dev_storage + 2482;
33806
33807 }
33808 }
33809 else
33810 {
33811 {
33812 return NULL;
33813
33814 }
33815 }
33816 default:
33817 {
33818 return NULL;
33819
33820 }
33821 }
33822 default:
33823 {
33824 return NULL;
33825
33826 }
33827 }
33828 default:
33829 {
33830 return NULL;
33831
33832 }
33833 }
33834 case 11:
33835 switch (KR_keyword [10])
33836 {
33837 case 't':
33838 if (strncmp (KR_keyword, "/dev/conout", 11) == 0)
33839 {
33840 {
33841 return dev_storage + 19;
33842
33843 }
33844 }
33845 else
33846 {
33847 {
33848 return NULL;
33849
33850 }
33851 }
33852 case 'm':
33853 if (strncmp (KR_keyword, "/dev/random", 11) == 0)
33854 {
33855 {
33856 return dev_storage + 301;
33857
33858 }
33859 }
33860 else
33861 {
33862 {
33863 return NULL;
33864
33865 }
33866 }
33867 case '9':
33868 switch (KR_keyword [9])
33869 {
33870 case '5':
33871 switch (KR_keyword [5])
33872 {
33873 case 't':
33874 if (strncmp (KR_keyword, "/dev/ttyS59", 11) == 0)
33875 {
33876 {
33877 return dev_storage + 2570;
33878
33879 }
33880 }
33881 else
33882 {
33883 {
33884 return NULL;
33885
33886 }
33887 }
33888 case 'c':
33889 if (strncmp (KR_keyword, "/dev/cons59", 11) == 0)
33890 {
33891 {
33892 return dev_storage + 79;
33893
33894 }
33895 }
33896 else
33897 {
33898 {
33899 return NULL;
33900
33901 }
33902 }
33903 default:
33904 {
33905 return NULL;
33906
33907 }
33908 }
33909 case '4':
33910 switch (KR_keyword [5])
33911 {
33912 case 't':
33913 if (strncmp (KR_keyword, "/dev/ttyS49", 11) == 0)
33914 {
33915 {
33916 return dev_storage + 2560;
33917
33918 }
33919 }
33920 else
33921 {
33922 {
33923 return NULL;
33924
33925 }
33926 }
33927 case 'c':
33928 if (strncmp (KR_keyword, "/dev/cons49", 11) == 0)
33929 {
33930 {
33931 return dev_storage + 69;
33932
33933 }
33934 }
33935 else
33936 {
33937 {
33938 return NULL;
33939
33940 }
33941 }
33942 default:
33943 {
33944 return NULL;
33945
33946 }
33947 }
33948 case '3':
33949 switch (KR_keyword [5])
33950 {
33951 case 't':
33952 if (strncmp (KR_keyword, "/dev/ttyS39", 11) == 0)
33953 {
33954 {
33955 return dev_storage + 2550;
33956
33957 }
33958 }
33959 else
33960 {
33961 {
33962 return NULL;
33963
33964 }
33965 }
33966 case 'c':
33967 if (strncmp (KR_keyword, "/dev/cons39", 11) == 0)
33968 {
33969 {
33970 return dev_storage + 59;
33971
33972 }
33973 }
33974 else
33975 {
33976 {
33977 return NULL;
33978
33979 }
33980 }
33981 default:
33982 {
33983 return NULL;
33984
33985 }
33986 }
33987 case '2':
33988 switch (KR_keyword [5])
33989 {
33990 case 't':
33991 if (strncmp (KR_keyword, "/dev/ttyS29", 11) == 0)
33992 {
33993 {
33994 return dev_storage + 2540;
33995
33996 }
33997 }
33998 else
33999 {
34000 {
34001 return NULL;
34002
34003 }
34004 }
34005 case 'c':
34006 if (strncmp (KR_keyword, "/dev/cons29", 11) == 0)
34007 {
34008 {
34009 return dev_storage + 49;
34010
34011 }
34012 }
34013 else
34014 {
34015 {
34016 return NULL;
34017
34018 }
34019 }
34020 default:
34021 {
34022 return NULL;
34023
34024 }
34025 }
34026 case '1':
34027 switch (KR_keyword [5])
34028 {
34029 case 't':
34030 if (strncmp (KR_keyword, "/dev/ttyS19", 11) == 0)
34031 {
34032 {
34033 return dev_storage + 2530;
34034
34035 }
34036 }
34037 else
34038 {
34039 {
34040 return NULL;
34041
34042 }
34043 }
34044 case 'n':
34045 if (strncmp (KR_keyword, "/dev/nst119", 11) == 0)
34046 {
34047 {
34048 return dev_storage + 225;
34049
34050 }
34051 }
34052 else
34053 {
34054 {
34055 return NULL;
34056
34057 }
34058 }
34059 case 'c':
34060 if (strncmp (KR_keyword, "/dev/cons19", 11) == 0)
34061 {
34062 {
34063 return dev_storage + 39;
34064
34065 }
34066 }
34067 else
34068 {
34069 {
34070 return NULL;
34071
34072 }
34073 }
34074 default:
34075 {
34076 return NULL;
34077
34078 }
34079 }
34080 case '0':
34081 if (strncmp (KR_keyword, "/dev/nst109", 11) == 0)
34082 {
34083 {
34084 return dev_storage + 215;
34085
34086 }
34087 }
34088 else
34089 {
34090 {
34091 return NULL;
34092
34093 }
34094 }
34095 default:
34096 {
34097 return NULL;
34098
34099 }
34100 }
34101 case '8':
34102 switch (KR_keyword [9])
34103 {
34104 case '5':
34105 switch (KR_keyword [5])
34106 {
34107 case 't':
34108 if (strncmp (KR_keyword, "/dev/ttyS58", 11) == 0)
34109 {
34110 {
34111 return dev_storage + 2569;
34112
34113 }
34114 }
34115 else
34116 {
34117 {
34118 return NULL;
34119
34120 }
34121 }
34122 case 'c':
34123 if (strncmp (KR_keyword, "/dev/cons58", 11) == 0)
34124 {
34125 {
34126 return dev_storage + 78;
34127
34128 }
34129 }
34130 else
34131 {
34132 {
34133 return NULL;
34134
34135 }
34136 }
34137 default:
34138 {
34139 return NULL;
34140
34141 }
34142 }
34143 case '4':
34144 switch (KR_keyword [5])
34145 {
34146 case 't':
34147 if (strncmp (KR_keyword, "/dev/ttyS48", 11) == 0)
34148 {
34149 {
34150 return dev_storage + 2559;
34151
34152 }
34153 }
34154 else
34155 {
34156 {
34157 return NULL;
34158
34159 }
34160 }
34161 case 'c':
34162 if (strncmp (KR_keyword, "/dev/cons48", 11) == 0)
34163 {
34164 {
34165 return dev_storage + 68;
34166
34167 }
34168 }
34169 else
34170 {
34171 {
34172 return NULL;
34173
34174 }
34175 }
34176 default:
34177 {
34178 return NULL;
34179
34180 }
34181 }
34182 case '3':
34183 switch (KR_keyword [5])
34184 {
34185 case 't':
34186 if (strncmp (KR_keyword, "/dev/ttyS38", 11) == 0)
34187 {
34188 {
34189 return dev_storage + 2549;
34190
34191 }
34192 }
34193 else
34194 {
34195 {
34196 return NULL;
34197
34198 }
34199 }
34200 case 'c':
34201 if (strncmp (KR_keyword, "/dev/cons38", 11) == 0)
34202 {
34203 {
34204 return dev_storage + 58;
34205
34206 }
34207 }
34208 else
34209 {
34210 {
34211 return NULL;
34212
34213 }
34214 }
34215 default:
34216 {
34217 return NULL;
34218
34219 }
34220 }
34221 case '2':
34222 switch (KR_keyword [5])
34223 {
34224 case 't':
34225 if (strncmp (KR_keyword, "/dev/ttyS28", 11) == 0)
34226 {
34227 {
34228 return dev_storage + 2539;
34229
34230 }
34231 }
34232 else
34233 {
34234 {
34235 return NULL;
34236
34237 }
34238 }
34239 case 'c':
34240 if (strncmp (KR_keyword, "/dev/cons28", 11) == 0)
34241 {
34242 {
34243 return dev_storage + 48;
34244
34245 }
34246 }
34247 else
34248 {
34249 {
34250 return NULL;
34251
34252 }
34253 }
34254 default:
34255 {
34256 return NULL;
34257
34258 }
34259 }
34260 case '1':
34261 switch (KR_keyword [5])
34262 {
34263 case 't':
34264 if (strncmp (KR_keyword, "/dev/ttyS18", 11) == 0)
34265 {
34266 {
34267 return dev_storage + 2529;
34268
34269 }
34270 }
34271 else
34272 {
34273 {
34274 return NULL;
34275
34276 }
34277 }
34278 case 'n':
34279 if (strncmp (KR_keyword, "/dev/nst118", 11) == 0)
34280 {
34281 {
34282 return dev_storage + 224;
34283
34284 }
34285 }
34286 else
34287 {
34288 {
34289 return NULL;
34290
34291 }
34292 }
34293 case 'c':
34294 if (strncmp (KR_keyword, "/dev/cons18", 11) == 0)
34295 {
34296 {
34297 return dev_storage + 38;
34298
34299 }
34300 }
34301 else
34302 {
34303 {
34304 return NULL;
34305
34306 }
34307 }
34308 default:
34309 {
34310 return NULL;
34311
34312 }
34313 }
34314 case '0':
34315 if (strncmp (KR_keyword, "/dev/nst108", 11) == 0)
34316 {
34317 {
34318 return dev_storage + 214;
34319
34320 }
34321 }
34322 else
34323 {
34324 {
34325 return NULL;
34326
34327 }
34328 }
34329 default:
34330 {
34331 return NULL;
34332
34333 }
34334 }
34335 case '7':
34336 switch (KR_keyword [9])
34337 {
34338 case '5':
34339 switch (KR_keyword [5])
34340 {
34341 case 't':
34342 if (strncmp (KR_keyword, "/dev/ttyS57", 11) == 0)
34343 {
34344 {
34345 return dev_storage + 2568;
34346
34347 }
34348 }
34349 else
34350 {
34351 {
34352 return NULL;
34353
34354 }
34355 }
34356 case 'c':
34357 if (strncmp (KR_keyword, "/dev/cons57", 11) == 0)
34358 {
34359 {
34360 return dev_storage + 77;
34361
34362 }
34363 }
34364 else
34365 {
34366 {
34367 return NULL;
34368
34369 }
34370 }
34371 default:
34372 {
34373 return NULL;
34374
34375 }
34376 }
34377 case '4':
34378 switch (KR_keyword [5])
34379 {
34380 case 't':
34381 if (strncmp (KR_keyword, "/dev/ttyS47", 11) == 0)
34382 {
34383 {
34384 return dev_storage + 2558;
34385
34386 }
34387 }
34388 else
34389 {
34390 {
34391 return NULL;
34392
34393 }
34394 }
34395 case 'c':
34396 if (strncmp (KR_keyword, "/dev/cons47", 11) == 0)
34397 {
34398 {
34399 return dev_storage + 67;
34400
34401 }
34402 }
34403 else
34404 {
34405 {
34406 return NULL;
34407
34408 }
34409 }
34410 default:
34411 {
34412 return NULL;
34413
34414 }
34415 }
34416 case '3':
34417 switch (KR_keyword [5])
34418 {
34419 case 't':
34420 if (strncmp (KR_keyword, "/dev/ttyS37", 11) == 0)
34421 {
34422 {
34423 return dev_storage + 2548;
34424
34425 }
34426 }
34427 else
34428 {
34429 {
34430 return NULL;
34431
34432 }
34433 }
34434 case 'c':
34435 if (strncmp (KR_keyword, "/dev/cons37", 11) == 0)
34436 {
34437 {
34438 return dev_storage + 57;
34439
34440 }
34441 }
34442 else
34443 {
34444 {
34445 return NULL;
34446
34447 }
34448 }
34449 default:
34450 {
34451 return NULL;
34452
34453 }
34454 }
34455 case '2':
34456 switch (KR_keyword [5])
34457 {
34458 case 't':
34459 if (strncmp (KR_keyword, "/dev/ttyS27", 11) == 0)
34460 {
34461 {
34462 return dev_storage + 2538;
34463
34464 }
34465 }
34466 else
34467 {
34468 {
34469 return NULL;
34470
34471 }
34472 }
34473 case 'n':
34474 if (strncmp (KR_keyword, "/dev/nst127", 11) == 0)
34475 {
34476 {
34477 return dev_storage + 233;
34478
34479 }
34480 }
34481 else
34482 {
34483 {
34484 return NULL;
34485
34486 }
34487 }
34488 case 'c':
34489 if (strncmp (KR_keyword, "/dev/cons27", 11) == 0)
34490 {
34491 {
34492 return dev_storage + 47;
34493
34494 }
34495 }
34496 else
34497 {
34498 {
34499 return NULL;
34500
34501 }
34502 }
34503 default:
34504 {
34505 return NULL;
34506
34507 }
34508 }
34509 case '1':
34510 switch (KR_keyword [5])
34511 {
34512 case 't':
34513 if (strncmp (KR_keyword, "/dev/ttyS17", 11) == 0)
34514 {
34515 {
34516 return dev_storage + 2528;
34517
34518 }
34519 }
34520 else
34521 {
34522 {
34523 return NULL;
34524
34525 }
34526 }
34527 case 'n':
34528 if (strncmp (KR_keyword, "/dev/nst117", 11) == 0)
34529 {
34530 {
34531 return dev_storage + 223;
34532
34533 }
34534 }
34535 else
34536 {
34537 {
34538 return NULL;
34539
34540 }
34541 }
34542 case 'c':
34543 if (strncmp (KR_keyword, "/dev/cons17", 11) == 0)
34544 {
34545 {
34546 return dev_storage + 37;
34547
34548 }
34549 }
34550 else
34551 {
34552 {
34553 return NULL;
34554
34555 }
34556 }
34557 default:
34558 {
34559 return NULL;
34560
34561 }
34562 }
34563 case '0':
34564 if (strncmp (KR_keyword, "/dev/nst107", 11) == 0)
34565 {
34566 {
34567 return dev_storage + 213;
34568
34569 }
34570 }
34571 else
34572 {
34573 {
34574 return NULL;
34575
34576 }
34577 }
34578 default:
34579 {
34580 return NULL;
34581
34582 }
34583 }
34584 case '6':
34585 switch (KR_keyword [9])
34586 {
34587 case '5':
34588 switch (KR_keyword [5])
34589 {
34590 case 't':
34591 if (strncmp (KR_keyword, "/dev/ttyS56", 11) == 0)
34592 {
34593 {
34594 return dev_storage + 2567;
34595
34596 }
34597 }
34598 else
34599 {
34600 {
34601 return NULL;
34602
34603 }
34604 }
34605 case 'c':
34606 if (strncmp (KR_keyword, "/dev/cons56", 11) == 0)
34607 {
34608 {
34609 return dev_storage + 76;
34610
34611 }
34612 }
34613 else
34614 {
34615 {
34616 return NULL;
34617
34618 }
34619 }
34620 default:
34621 {
34622 return NULL;
34623
34624 }
34625 }
34626 case '4':
34627 switch (KR_keyword [5])
34628 {
34629 case 't':
34630 if (strncmp (KR_keyword, "/dev/ttyS46", 11) == 0)
34631 {
34632 {
34633 return dev_storage + 2557;
34634
34635 }
34636 }
34637 else
34638 {
34639 {
34640 return NULL;
34641
34642 }
34643 }
34644 case 'c':
34645 if (strncmp (KR_keyword, "/dev/cons46", 11) == 0)
34646 {
34647 {
34648 return dev_storage + 66;
34649
34650 }
34651 }
34652 else
34653 {
34654 {
34655 return NULL;
34656
34657 }
34658 }
34659 default:
34660 {
34661 return NULL;
34662
34663 }
34664 }
34665 case '3':
34666 switch (KR_keyword [5])
34667 {
34668 case 't':
34669 if (strncmp (KR_keyword, "/dev/ttyS36", 11) == 0)
34670 {
34671 {
34672 return dev_storage + 2547;
34673
34674 }
34675 }
34676 else
34677 {
34678 {
34679 return NULL;
34680
34681 }
34682 }
34683 case 'c':
34684 if (strncmp (KR_keyword, "/dev/cons36", 11) == 0)
34685 {
34686 {
34687 return dev_storage + 56;
34688
34689 }
34690 }
34691 else
34692 {
34693 {
34694 return NULL;
34695
34696 }
34697 }
34698 default:
34699 {
34700 return NULL;
34701
34702 }
34703 }
34704 case '2':
34705 switch (KR_keyword [5])
34706 {
34707 case 't':
34708 if (strncmp (KR_keyword, "/dev/ttyS26", 11) == 0)
34709 {
34710 {
34711 return dev_storage + 2537;
34712
34713 }
34714 }
34715 else
34716 {
34717 {
34718 return NULL;
34719
34720 }
34721 }
34722 case 'n':
34723 if (strncmp (KR_keyword, "/dev/nst126", 11) == 0)
34724 {
34725 {
34726 return dev_storage + 232;
34727
34728 }
34729 }
34730 else
34731 {
34732 {
34733 return NULL;
34734
34735 }
34736 }
34737 case 'c':
34738 if (strncmp (KR_keyword, "/dev/cons26", 11) == 0)
34739 {
34740 {
34741 return dev_storage + 46;
34742
34743 }
34744 }
34745 else
34746 {
34747 {
34748 return NULL;
34749
34750 }
34751 }
34752 default:
34753 {
34754 return NULL;
34755
34756 }
34757 }
34758 case '1':
34759 switch (KR_keyword [5])
34760 {
34761 case 't':
34762 if (strncmp (KR_keyword, "/dev/ttyS16", 11) == 0)
34763 {
34764 {
34765 return dev_storage + 2527;
34766
34767 }
34768 }
34769 else
34770 {
34771 {
34772 return NULL;
34773
34774 }
34775 }
34776 case 'n':
34777 if (strncmp (KR_keyword, "/dev/nst116", 11) == 0)
34778 {
34779 {
34780 return dev_storage + 222;
34781
34782 }
34783 }
34784 else
34785 {
34786 {
34787 return NULL;
34788
34789 }
34790 }
34791 case 'c':
34792 if (strncmp (KR_keyword, "/dev/cons16", 11) == 0)
34793 {
34794 {
34795 return dev_storage + 36;
34796
34797 }
34798 }
34799 else
34800 {
34801 {
34802 return NULL;
34803
34804 }
34805 }
34806 default:
34807 {
34808 return NULL;
34809
34810 }
34811 }
34812 case '0':
34813 if (strncmp (KR_keyword, "/dev/nst106", 11) == 0)
34814 {
34815 {
34816 return dev_storage + 212;
34817
34818 }
34819 }
34820 else
34821 {
34822 {
34823 return NULL;
34824
34825 }
34826 }
34827 default:
34828 {
34829 return NULL;
34830
34831 }
34832 }
34833 case '5':
34834 switch (KR_keyword [7])
34835 {
34836 case 'y':
34837 switch (KR_keyword [9])
34838 {
34839 case '5':
34840 if (strncmp (KR_keyword, "/dev/ttyS55", 11) == 0)
34841 {
34842 {
34843 return dev_storage + 2566;
34844
34845 }
34846 }
34847 else
34848 {
34849 {
34850 return NULL;
34851
34852 }
34853 }
34854 case '4':
34855 if (strncmp (KR_keyword, "/dev/ttyS45", 11) == 0)
34856 {
34857 {
34858 return dev_storage + 2556;
34859
34860 }
34861 }
34862 else
34863 {
34864 {
34865 return NULL;
34866
34867 }
34868 }
34869 case '3':
34870 if (strncmp (KR_keyword, "/dev/ttyS35", 11) == 0)
34871 {
34872 {
34873 return dev_storage + 2546;
34874
34875 }
34876 }
34877 else
34878 {
34879 {
34880 return NULL;
34881
34882 }
34883 }
34884 case '2':
34885 if (strncmp (KR_keyword, "/dev/ttyS25", 11) == 0)
34886 {
34887 {
34888 return dev_storage + 2536;
34889
34890 }
34891 }
34892 else
34893 {
34894 {
34895 return NULL;
34896
34897 }
34898 }
34899 case '1':
34900 if (strncmp (KR_keyword, "/dev/ttyS15", 11) == 0)
34901 {
34902 {
34903 return dev_storage + 2526;
34904
34905 }
34906 }
34907 else
34908 {
34909 {
34910 return NULL;
34911
34912 }
34913 }
34914 default:
34915 {
34916 return NULL;
34917
34918 }
34919 }
34920 case 't':
34921 switch (KR_keyword [9])
34922 {
34923 case '2':
34924 if (strncmp (KR_keyword, "/dev/nst125", 11) == 0)
34925 {
34926 {
34927 return dev_storage + 231;
34928
34929 }
34930 }
34931 else
34932 {
34933 {
34934 return NULL;
34935
34936 }
34937 }
34938 case '1':
34939 if (strncmp (KR_keyword, "/dev/nst115", 11) == 0)
34940 {
34941 {
34942 return dev_storage + 221;
34943
34944 }
34945 }
34946 else
34947 {
34948 {
34949 return NULL;
34950
34951 }
34952 }
34953 case '0':
34954 if (strncmp (KR_keyword, "/dev/nst105", 11) == 0)
34955 {
34956 {
34957 return dev_storage + 211;
34958
34959 }
34960 }
34961 else
34962 {
34963 {
34964 return NULL;
34965
34966 }
34967 }
34968 default:
34969 {
34970 return NULL;
34971
34972 }
34973 }
34974 case 'n':
34975 switch (KR_keyword [9])
34976 {
34977 case '5':
34978 if (strncmp (KR_keyword, "/dev/cons55", 11) == 0)
34979 {
34980 {
34981 return dev_storage + 75;
34982
34983 }
34984 }
34985 else
34986 {
34987 {
34988 return NULL;
34989
34990 }
34991 }
34992 case '4':
34993 if (strncmp (KR_keyword, "/dev/cons45", 11) == 0)
34994 {
34995 {
34996 return dev_storage + 65;
34997
34998 }
34999 }
35000 else
35001 {
35002 {
35003 return NULL;
35004
35005 }
35006 }
35007 case '3':
35008 if (strncmp (KR_keyword, "/dev/cons35", 11) == 0)
35009 {
35010 {
35011 return dev_storage + 55;
35012
35013 }
35014 }
35015 else
35016 {
35017 {
35018 return NULL;
35019
35020 }
35021 }
35022 case '2':
35023 if (strncmp (KR_keyword, "/dev/cons25", 11) == 0)
35024 {
35025 {
35026 return dev_storage + 45;
35027
35028 }
35029 }
35030 else
35031 {
35032 {
35033 return NULL;
35034
35035 }
35036 }
35037 case '1':
35038 if (strncmp (KR_keyword, "/dev/cons15", 11) == 0)
35039 {
35040 {
35041 return dev_storage + 35;
35042
35043 }
35044 }
35045 else
35046 {
35047 {
35048 return NULL;
35049
35050 }
35051 }
35052 default:
35053 {
35054 return NULL;
35055
35056 }
35057 }
35058 case 'd':
35059 switch (KR_keyword [8])
35060 {
35061 case 'x':
35062 if (strncmp (KR_keyword, "/dev/sddx15", 11) == 0)
35063 {
35064 {
35065 return dev_storage + 2365;
35066
35067 }
35068 }
35069 else
35070 {
35071 {
35072 return NULL;
35073
35074 }
35075 }
35076 case 'w':
35077 if (strncmp (KR_keyword, "/dev/sddw15", 11) == 0)
35078 {
35079 {
35080 return dev_storage + 2350;
35081
35082 }
35083 }
35084 else
35085 {
35086 {
35087 return NULL;
35088
35089 }
35090 }
35091 case 'v':
35092 if (strncmp (KR_keyword, "/dev/sddv15", 11) == 0)
35093 {
35094 {
35095 return dev_storage + 2335;
35096
35097 }
35098 }
35099 else
35100 {
35101 {
35102 return NULL;
35103
35104 }
35105 }
35106 case 'u':
35107 if (strncmp (KR_keyword, "/dev/sddu15", 11) == 0)
35108 {
35109 {
35110 return dev_storage + 2320;
35111
35112 }
35113 }
35114 else
35115 {
35116 {
35117 return NULL;
35118
35119 }
35120 }
35121 case 't':
35122 if (strncmp (KR_keyword, "/dev/sddt15", 11) == 0)
35123 {
35124 {
35125 return dev_storage + 2305;
35126
35127 }
35128 }
35129 else
35130 {
35131 {
35132 return NULL;
35133
35134 }
35135 }
35136 case 's':
35137 if (strncmp (KR_keyword, "/dev/sdds15", 11) == 0)
35138 {
35139 {
35140 return dev_storage + 2290;
35141
35142 }
35143 }
35144 else
35145 {
35146 {
35147 return NULL;
35148
35149 }
35150 }
35151 case 'r':
35152 if (strncmp (KR_keyword, "/dev/sddr15", 11) == 0)
35153 {
35154 {
35155 return dev_storage + 2275;
35156
35157 }
35158 }
35159 else
35160 {
35161 {
35162 return NULL;
35163
35164 }
35165 }
35166 case 'q':
35167 if (strncmp (KR_keyword, "/dev/sddq15", 11) == 0)
35168 {
35169 {
35170 return dev_storage + 2260;
35171
35172 }
35173 }
35174 else
35175 {
35176 {
35177 return NULL;
35178
35179 }
35180 }
35181 case 'p':
35182 if (strncmp (KR_keyword, "/dev/sddp15", 11) == 0)
35183 {
35184 {
35185 return dev_storage + 2245;
35186
35187 }
35188 }
35189 else
35190 {
35191 {
35192 return NULL;
35193
35194 }
35195 }
35196 case 'o':
35197 if (strncmp (KR_keyword, "/dev/sddo15", 11) == 0)
35198 {
35199 {
35200 return dev_storage + 2230;
35201
35202 }
35203 }
35204 else
35205 {
35206 {
35207 return NULL;
35208
35209 }
35210 }
35211 case 'n':
35212 if (strncmp (KR_keyword, "/dev/sddn15", 11) == 0)
35213 {
35214 {
35215 return dev_storage + 2215;
35216
35217 }
35218 }
35219 else
35220 {
35221 {
35222 return NULL;
35223
35224 }
35225 }
35226 case 'm':
35227 if (strncmp (KR_keyword, "/dev/sddm15", 11) == 0)
35228 {
35229 {
35230 return dev_storage + 2200;
35231
35232 }
35233 }
35234 else
35235 {
35236 {
35237 return NULL;
35238
35239 }
35240 }
35241 case 'l':
35242 if (strncmp (KR_keyword, "/dev/sddl15", 11) == 0)
35243 {
35244 {
35245 return dev_storage + 2185;
35246
35247 }
35248 }
35249 else
35250 {
35251 {
35252 return NULL;
35253
35254 }
35255 }
35256 case 'k':
35257 if (strncmp (KR_keyword, "/dev/sddk15", 11) == 0)
35258 {
35259 {
35260 return dev_storage + 2170;
35261
35262 }
35263 }
35264 else
35265 {
35266 {
35267 return NULL;
35268
35269 }
35270 }
35271 case 'j':
35272 if (strncmp (KR_keyword, "/dev/sddj15", 11) == 0)
35273 {
35274 {
35275 return dev_storage + 2155;
35276
35277 }
35278 }
35279 else
35280 {
35281 {
35282 return NULL;
35283
35284 }
35285 }
35286 case 'i':
35287 if (strncmp (KR_keyword, "/dev/sddi15", 11) == 0)
35288 {
35289 {
35290 return dev_storage + 2140;
35291
35292 }
35293 }
35294 else
35295 {
35296 {
35297 return NULL;
35298
35299 }
35300 }
35301 case 'h':
35302 if (strncmp (KR_keyword, "/dev/sddh15", 11) == 0)
35303 {
35304 {
35305 return dev_storage + 2125;
35306
35307 }
35308 }
35309 else
35310 {
35311 {
35312 return NULL;
35313
35314 }
35315 }
35316 case 'g':
35317 if (strncmp (KR_keyword, "/dev/sddg15", 11) == 0)
35318 {
35319 {
35320 return dev_storage + 2110;
35321
35322 }
35323 }
35324 else
35325 {
35326 {
35327 return NULL;
35328
35329 }
35330 }
35331 case 'f':
35332 if (strncmp (KR_keyword, "/dev/sddf15", 11) == 0)
35333 {
35334 {
35335 return dev_storage + 2095;
35336
35337 }
35338 }
35339 else
35340 {
35341 {
35342 return NULL;
35343
35344 }
35345 }
35346 case 'e':
35347 if (strncmp (KR_keyword, "/dev/sdde15", 11) == 0)
35348 {
35349 {
35350 return dev_storage + 2080;
35351
35352 }
35353 }
35354 else
35355 {
35356 {
35357 return NULL;
35358
35359 }
35360 }
35361 case 'd':
35362 if (strncmp (KR_keyword, "/dev/sddd15", 11) == 0)
35363 {
35364 {
35365 return dev_storage + 2065;
35366
35367 }
35368 }
35369 else
35370 {
35371 {
35372 return NULL;
35373
35374 }
35375 }
35376 case 'c':
35377 if (strncmp (KR_keyword, "/dev/sddc15", 11) == 0)
35378 {
35379 {
35380 return dev_storage + 2050;
35381
35382 }
35383 }
35384 else
35385 {
35386 {
35387 return NULL;
35388
35389 }
35390 }
35391 case 'b':
35392 if (strncmp (KR_keyword, "/dev/sddb15", 11) == 0)
35393 {
35394 {
35395 return dev_storage + 2035;
35396
35397 }
35398 }
35399 else
35400 {
35401 {
35402 return NULL;
35403
35404 }
35405 }
35406 case 'a':
35407 if (strncmp (KR_keyword, "/dev/sdda15", 11) == 0)
35408 {
35409 {
35410 return dev_storage + 2020;
35411
35412 }
35413 }
35414 else
35415 {
35416 {
35417 return NULL;
35418
35419 }
35420 }
35421 default:
35422 {
35423 return NULL;
35424
35425 }
35426 }
35427 case 'c':
35428 switch (KR_keyword [8])
35429 {
35430 case 'z':
35431 if (strncmp (KR_keyword, "/dev/sdcz15", 11) == 0)
35432 {
35433 {
35434 return dev_storage + 1981;
35435
35436 }
35437 }
35438 else
35439 {
35440 {
35441 return NULL;
35442
35443 }
35444 }
35445 case 'y':
35446 if (strncmp (KR_keyword, "/dev/sdcy15", 11) == 0)
35447 {
35448 {
35449 return dev_storage + 1966;
35450
35451 }
35452 }
35453 else
35454 {
35455 {
35456 return NULL;
35457
35458 }
35459 }
35460 case 'x':
35461 if (strncmp (KR_keyword, "/dev/sdcx15", 11) == 0)
35462 {
35463 {
35464 return dev_storage + 1951;
35465
35466 }
35467 }
35468 else
35469 {
35470 {
35471 return NULL;
35472
35473 }
35474 }
35475 case 'w':
35476 if (strncmp (KR_keyword, "/dev/sdcw15", 11) == 0)
35477 {
35478 {
35479 return dev_storage + 1936;
35480
35481 }
35482 }
35483 else
35484 {
35485 {
35486 return NULL;
35487
35488 }
35489 }
35490 case 'v':
35491 if (strncmp (KR_keyword, "/dev/sdcv15", 11) == 0)
35492 {
35493 {
35494 return dev_storage + 1921;
35495
35496 }
35497 }
35498 else
35499 {
35500 {
35501 return NULL;
35502
35503 }
35504 }
35505 case 'u':
35506 if (strncmp (KR_keyword, "/dev/sdcu15", 11) == 0)
35507 {
35508 {
35509 return dev_storage + 1906;
35510
35511 }
35512 }
35513 else
35514 {
35515 {
35516 return NULL;
35517
35518 }
35519 }
35520 case 't':
35521 if (strncmp (KR_keyword, "/dev/sdct15", 11) == 0)
35522 {
35523 {
35524 return dev_storage + 1891;
35525
35526 }
35527 }
35528 else
35529 {
35530 {
35531 return NULL;
35532
35533 }
35534 }
35535 case 's':
35536 if (strncmp (KR_keyword, "/dev/sdcs15", 11) == 0)
35537 {
35538 {
35539 return dev_storage + 1876;
35540
35541 }
35542 }
35543 else
35544 {
35545 {
35546 return NULL;
35547
35548 }
35549 }
35550 case 'r':
35551 if (strncmp (KR_keyword, "/dev/sdcr15", 11) == 0)
35552 {
35553 {
35554 return dev_storage + 1861;
35555
35556 }
35557 }
35558 else
35559 {
35560 {
35561 return NULL;
35562
35563 }
35564 }
35565 case 'q':
35566 if (strncmp (KR_keyword, "/dev/sdcq15", 11) == 0)
35567 {
35568 {
35569 return dev_storage + 1846;
35570
35571 }
35572 }
35573 else
35574 {
35575 {
35576 return NULL;
35577
35578 }
35579 }
35580 case 'p':
35581 if (strncmp (KR_keyword, "/dev/sdcp15", 11) == 0)
35582 {
35583 {
35584 return dev_storage + 1831;
35585
35586 }
35587 }
35588 else
35589 {
35590 {
35591 return NULL;
35592
35593 }
35594 }
35595 case 'o':
35596 if (strncmp (KR_keyword, "/dev/sdco15", 11) == 0)
35597 {
35598 {
35599 return dev_storage + 1816;
35600
35601 }
35602 }
35603 else
35604 {
35605 {
35606 return NULL;
35607
35608 }
35609 }
35610 case 'n':
35611 if (strncmp (KR_keyword, "/dev/sdcn15", 11) == 0)
35612 {
35613 {
35614 return dev_storage + 1801;
35615
35616 }
35617 }
35618 else
35619 {
35620 {
35621 return NULL;
35622
35623 }
35624 }
35625 case 'm':
35626 if (strncmp (KR_keyword, "/dev/sdcm15", 11) == 0)
35627 {
35628 {
35629 return dev_storage + 1786;
35630
35631 }
35632 }
35633 else
35634 {
35635 {
35636 return NULL;
35637
35638 }
35639 }
35640 case 'l':
35641 if (strncmp (KR_keyword, "/dev/sdcl15", 11) == 0)
35642 {
35643 {
35644 return dev_storage + 1771;
35645
35646 }
35647 }
35648 else
35649 {
35650 {
35651 return NULL;
35652
35653 }
35654 }
35655 case 'k':
35656 if (strncmp (KR_keyword, "/dev/sdck15", 11) == 0)
35657 {
35658 {
35659 return dev_storage + 1756;
35660
35661 }
35662 }
35663 else
35664 {
35665 {
35666 return NULL;
35667
35668 }
35669 }
35670 case 'j':
35671 if (strncmp (KR_keyword, "/dev/sdcj15", 11) == 0)
35672 {
35673 {
35674 return dev_storage + 1741;
35675
35676 }
35677 }
35678 else
35679 {
35680 {
35681 return NULL;
35682
35683 }
35684 }
35685 case 'i':
35686 if (strncmp (KR_keyword, "/dev/sdci15", 11) == 0)
35687 {
35688 {
35689 return dev_storage + 1726;
35690
35691 }
35692 }
35693 else
35694 {
35695 {
35696 return NULL;
35697
35698 }
35699 }
35700 case 'h':
35701 if (strncmp (KR_keyword, "/dev/sdch15", 11) == 0)
35702 {
35703 {
35704 return dev_storage + 1711;
35705
35706 }
35707 }
35708 else
35709 {
35710 {
35711 return NULL;
35712
35713 }
35714 }
35715 case 'g':
35716 if (strncmp (KR_keyword, "/dev/sdcg15", 11) == 0)
35717 {
35718 {
35719 return dev_storage + 1696;
35720
35721 }
35722 }
35723 else
35724 {
35725 {
35726 return NULL;
35727
35728 }
35729 }
35730 case 'f':
35731 if (strncmp (KR_keyword, "/dev/sdcf15", 11) == 0)
35732 {
35733 {
35734 return dev_storage + 1681;
35735
35736 }
35737 }
35738 else
35739 {
35740 {
35741 return NULL;
35742
35743 }
35744 }
35745 case 'e':
35746 if (strncmp (KR_keyword, "/dev/sdce15", 11) == 0)
35747 {
35748 {
35749 return dev_storage + 1666;
35750
35751 }
35752 }
35753 else
35754 {
35755 {
35756 return NULL;
35757
35758 }
35759 }
35760 case 'd':
35761 if (strncmp (KR_keyword, "/dev/sdcd15", 11) == 0)
35762 {
35763 {
35764 return dev_storage + 1651;
35765
35766 }
35767 }
35768 else
35769 {
35770 {
35771 return NULL;
35772
35773 }
35774 }
35775 case 'c':
35776 if (strncmp (KR_keyword, "/dev/sdcc15", 11) == 0)
35777 {
35778 {
35779 return dev_storage + 1636;
35780
35781 }
35782 }
35783 else
35784 {
35785 {
35786 return NULL;
35787
35788 }
35789 }
35790 case 'b':
35791 if (strncmp (KR_keyword, "/dev/sdcb15", 11) == 0)
35792 {
35793 {
35794 return dev_storage + 1621;
35795
35796 }
35797 }
35798 else
35799 {
35800 {
35801 return NULL;
35802
35803 }
35804 }
35805 case 'a':
35806 if (strncmp (KR_keyword, "/dev/sdca15", 11) == 0)
35807 {
35808 {
35809 return dev_storage + 1606;
35810
35811 }
35812 }
35813 else
35814 {
35815 {
35816 return NULL;
35817
35818 }
35819 }
35820 default:
35821 {
35822 return NULL;
35823
35824 }
35825 }
35826 case 'b':
35827 switch (KR_keyword [8])
35828 {
35829 case 'z':
35830 if (strncmp (KR_keyword, "/dev/sdbz15", 11) == 0)
35831 {
35832 {
35833 return dev_storage + 1565;
35834
35835 }
35836 }
35837 else
35838 {
35839 {
35840 return NULL;
35841
35842 }
35843 }
35844 case 'y':
35845 if (strncmp (KR_keyword, "/dev/sdby15", 11) == 0)
35846 {
35847 {
35848 return dev_storage + 1550;
35849
35850 }
35851 }
35852 else
35853 {
35854 {
35855 return NULL;
35856
35857 }
35858 }
35859 case 'x':
35860 if (strncmp (KR_keyword, "/dev/sdbx15", 11) == 0)
35861 {
35862 {
35863 return dev_storage + 1535;
35864
35865 }
35866 }
35867 else
35868 {
35869 {
35870 return NULL;
35871
35872 }
35873 }
35874 case 'w':
35875 if (strncmp (KR_keyword, "/dev/sdbw15", 11) == 0)
35876 {
35877 {
35878 return dev_storage + 1520;
35879
35880 }
35881 }
35882 else
35883 {
35884 {
35885 return NULL;
35886
35887 }
35888 }
35889 case 'v':
35890 if (strncmp (KR_keyword, "/dev/sdbv15", 11) == 0)
35891 {
35892 {
35893 return dev_storage + 1505;
35894
35895 }
35896 }
35897 else
35898 {
35899 {
35900 return NULL;
35901
35902 }
35903 }
35904 case 'u':
35905 if (strncmp (KR_keyword, "/dev/sdbu15", 11) == 0)
35906 {
35907 {
35908 return dev_storage + 1490;
35909
35910 }
35911 }
35912 else
35913 {
35914 {
35915 return NULL;
35916
35917 }
35918 }
35919 case 't':
35920 if (strncmp (KR_keyword, "/dev/sdbt15", 11) == 0)
35921 {
35922 {
35923 return dev_storage + 1475;
35924
35925 }
35926 }
35927 else
35928 {
35929 {
35930 return NULL;
35931
35932 }
35933 }
35934 case 's':
35935 if (strncmp (KR_keyword, "/dev/sdbs15", 11) == 0)
35936 {
35937 {
35938 return dev_storage + 1460;
35939
35940 }
35941 }
35942 else
35943 {
35944 {
35945 return NULL;
35946
35947 }
35948 }
35949 case 'r':
35950 if (strncmp (KR_keyword, "/dev/sdbr15", 11) == 0)
35951 {
35952 {
35953 return dev_storage + 1445;
35954
35955 }
35956 }
35957 else
35958 {
35959 {
35960 return NULL;
35961
35962 }
35963 }
35964 case 'q':
35965 if (strncmp (KR_keyword, "/dev/sdbq15", 11) == 0)
35966 {
35967 {
35968 return dev_storage + 1430;
35969
35970 }
35971 }
35972 else
35973 {
35974 {
35975 return NULL;
35976
35977 }
35978 }
35979 case 'p':
35980 if (strncmp (KR_keyword, "/dev/sdbp15", 11) == 0)
35981 {
35982 {
35983 return dev_storage + 1415;
35984
35985 }
35986 }
35987 else
35988 {
35989 {
35990 return NULL;
35991
35992 }
35993 }
35994 case 'o':
35995 if (strncmp (KR_keyword, "/dev/sdbo15", 11) == 0)
35996 {
35997 {
35998 return dev_storage + 1400;
35999
36000 }
36001 }
36002 else
36003 {
36004 {
36005 return NULL;
36006
36007 }
36008 }
36009 case 'n':
36010 if (strncmp (KR_keyword, "/dev/sdbn15", 11) == 0)
36011 {
36012 {
36013 return dev_storage + 1385;
36014
36015 }
36016 }
36017 else
36018 {
36019 {
36020 return NULL;
36021
36022 }
36023 }
36024 case 'm':
36025 if (strncmp (KR_keyword, "/dev/sdbm15", 11) == 0)
36026 {
36027 {
36028 return dev_storage + 1370;
36029
36030 }
36031 }
36032 else
36033 {
36034 {
36035 return NULL;
36036
36037 }
36038 }
36039 case 'l':
36040 if (strncmp (KR_keyword, "/dev/sdbl15", 11) == 0)
36041 {
36042 {
36043 return dev_storage + 1355;
36044
36045 }
36046 }
36047 else
36048 {
36049 {
36050 return NULL;
36051
36052 }
36053 }
36054 case 'k':
36055 if (strncmp (KR_keyword, "/dev/sdbk15", 11) == 0)
36056 {
36057 {
36058 return dev_storage + 1340;
36059
36060 }
36061 }
36062 else
36063 {
36064 {
36065 return NULL;
36066
36067 }
36068 }
36069 case 'j':
36070 if (strncmp (KR_keyword, "/dev/sdbj15", 11) == 0)
36071 {
36072 {
36073 return dev_storage + 1325;
36074
36075 }
36076 }
36077 else
36078 {
36079 {
36080 return NULL;
36081
36082 }
36083 }
36084 case 'i':
36085 if (strncmp (KR_keyword, "/dev/sdbi15", 11) == 0)
36086 {
36087 {
36088 return dev_storage + 1310;
36089
36090 }
36091 }
36092 else
36093 {
36094 {
36095 return NULL;
36096
36097 }
36098 }
36099 case 'h':
36100 if (strncmp (KR_keyword, "/dev/sdbh15", 11) == 0)
36101 {
36102 {
36103 return dev_storage + 1295;
36104
36105 }
36106 }
36107 else
36108 {
36109 {
36110 return NULL;
36111
36112 }
36113 }
36114 case 'g':
36115 if (strncmp (KR_keyword, "/dev/sdbg15", 11) == 0)
36116 {
36117 {
36118 return dev_storage + 1280;
36119
36120 }
36121 }
36122 else
36123 {
36124 {
36125 return NULL;
36126
36127 }
36128 }
36129 case 'f':
36130 if (strncmp (KR_keyword, "/dev/sdbf15", 11) == 0)
36131 {
36132 {
36133 return dev_storage + 1265;
36134
36135 }
36136 }
36137 else
36138 {
36139 {
36140 return NULL;
36141
36142 }
36143 }
36144 case 'e':
36145 if (strncmp (KR_keyword, "/dev/sdbe15", 11) == 0)
36146 {
36147 {
36148 return dev_storage + 1250;
36149
36150 }
36151 }
36152 else
36153 {
36154 {
36155 return NULL;
36156
36157 }
36158 }
36159 case 'd':
36160 if (strncmp (KR_keyword, "/dev/sdbd15", 11) == 0)
36161 {
36162 {
36163 return dev_storage + 1235;
36164
36165 }
36166 }
36167 else
36168 {
36169 {
36170 return NULL;
36171
36172 }
36173 }
36174 case 'c':
36175 if (strncmp (KR_keyword, "/dev/sdbc15", 11) == 0)
36176 {
36177 {
36178 return dev_storage + 1220;
36179
36180 }
36181 }
36182 else
36183 {
36184 {
36185 return NULL;
36186
36187 }
36188 }
36189 case 'b':
36190 if (strncmp (KR_keyword, "/dev/sdbb15", 11) == 0)
36191 {
36192 {
36193 return dev_storage + 1205;
36194
36195 }
36196 }
36197 else
36198 {
36199 {
36200 return NULL;
36201
36202 }
36203 }
36204 case 'a':
36205 if (strncmp (KR_keyword, "/dev/sdba15", 11) == 0)
36206 {
36207 {
36208 return dev_storage + 1190;
36209
36210 }
36211 }
36212 else
36213 {
36214 {
36215 return NULL;
36216
36217 }
36218 }
36219 default:
36220 {
36221 return NULL;
36222
36223 }
36224 }
36225 case 'a':
36226 switch (KR_keyword [8])
36227 {
36228 case 'z':
36229 if (strncmp (KR_keyword, "/dev/sdaz15", 11) == 0)
36230 {
36231 {
36232 return dev_storage + 1149;
36233
36234 }
36235 }
36236 else
36237 {
36238 {
36239 return NULL;
36240
36241 }
36242 }
36243 case 'y':
36244 if (strncmp (KR_keyword, "/dev/sday15", 11) == 0)
36245 {
36246 {
36247 return dev_storage + 1134;
36248
36249 }
36250 }
36251 else
36252 {
36253 {
36254 return NULL;
36255
36256 }
36257 }
36258 case 'x':
36259 if (strncmp (KR_keyword, "/dev/sdax15", 11) == 0)
36260 {
36261 {
36262 return dev_storage + 1119;
36263
36264 }
36265 }
36266 else
36267 {
36268 {
36269 return NULL;
36270
36271 }
36272 }
36273 case 'w':
36274 if (strncmp (KR_keyword, "/dev/sdaw15", 11) == 0)
36275 {
36276 {
36277 return dev_storage + 1104;
36278
36279 }
36280 }
36281 else
36282 {
36283 {
36284 return NULL;
36285
36286 }
36287 }
36288 case 'v':
36289 if (strncmp (KR_keyword, "/dev/sdav15", 11) == 0)
36290 {
36291 {
36292 return dev_storage + 1089;
36293
36294 }
36295 }
36296 else
36297 {
36298 {
36299 return NULL;
36300
36301 }
36302 }
36303 case 'u':
36304 if (strncmp (KR_keyword, "/dev/sdau15", 11) == 0)
36305 {
36306 {
36307 return dev_storage + 1074;
36308
36309 }
36310 }
36311 else
36312 {
36313 {
36314 return NULL;
36315
36316 }
36317 }
36318 case 't':
36319 if (strncmp (KR_keyword, "/dev/sdat15", 11) == 0)
36320 {
36321 {
36322 return dev_storage + 1059;
36323
36324 }
36325 }
36326 else
36327 {
36328 {
36329 return NULL;
36330
36331 }
36332 }
36333 case 's':
36334 if (strncmp (KR_keyword, "/dev/sdas15", 11) == 0)
36335 {
36336 {
36337 return dev_storage + 1044;
36338
36339 }
36340 }
36341 else
36342 {
36343 {
36344 return NULL;
36345
36346 }
36347 }
36348 case 'r':
36349 if (strncmp (KR_keyword, "/dev/sdar15", 11) == 0)
36350 {
36351 {
36352 return dev_storage + 1029;
36353
36354 }
36355 }
36356 else
36357 {
36358 {
36359 return NULL;
36360
36361 }
36362 }
36363 case 'q':
36364 if (strncmp (KR_keyword, "/dev/sdaq15", 11) == 0)
36365 {
36366 {
36367 return dev_storage + 1014;
36368
36369 }
36370 }
36371 else
36372 {
36373 {
36374 return NULL;
36375
36376 }
36377 }
36378 case 'p':
36379 if (strncmp (KR_keyword, "/dev/sdap15", 11) == 0)
36380 {
36381 {
36382 return dev_storage + 999;
36383
36384 }
36385 }
36386 else
36387 {
36388 {
36389 return NULL;
36390
36391 }
36392 }
36393 case 'o':
36394 if (strncmp (KR_keyword, "/dev/sdao15", 11) == 0)
36395 {
36396 {
36397 return dev_storage + 984;
36398
36399 }
36400 }
36401 else
36402 {
36403 {
36404 return NULL;
36405
36406 }
36407 }
36408 case 'n':
36409 if (strncmp (KR_keyword, "/dev/sdan15", 11) == 0)
36410 {
36411 {
36412 return dev_storage + 969;
36413
36414 }
36415 }
36416 else
36417 {
36418 {
36419 return NULL;
36420
36421 }
36422 }
36423 case 'm':
36424 if (strncmp (KR_keyword, "/dev/sdam15", 11) == 0)
36425 {
36426 {
36427 return dev_storage + 954;
36428
36429 }
36430 }
36431 else
36432 {
36433 {
36434 return NULL;
36435
36436 }
36437 }
36438 case 'l':
36439 if (strncmp (KR_keyword, "/dev/sdal15", 11) == 0)
36440 {
36441 {
36442 return dev_storage + 939;
36443
36444 }
36445 }
36446 else
36447 {
36448 {
36449 return NULL;
36450
36451 }
36452 }
36453 case 'k':
36454 if (strncmp (KR_keyword, "/dev/sdak15", 11) == 0)
36455 {
36456 {
36457 return dev_storage + 924;
36458
36459 }
36460 }
36461 else
36462 {
36463 {
36464 return NULL;
36465
36466 }
36467 }
36468 case 'j':
36469 if (strncmp (KR_keyword, "/dev/sdaj15", 11) == 0)
36470 {
36471 {
36472 return dev_storage + 909;
36473
36474 }
36475 }
36476 else
36477 {
36478 {
36479 return NULL;
36480
36481 }
36482 }
36483 case 'i':
36484 if (strncmp (KR_keyword, "/dev/sdai15", 11) == 0)
36485 {
36486 {
36487 return dev_storage + 894;
36488
36489 }
36490 }
36491 else
36492 {
36493 {
36494 return NULL;
36495
36496 }
36497 }
36498 case 'h':
36499 if (strncmp (KR_keyword, "/dev/sdah15", 11) == 0)
36500 {
36501 {
36502 return dev_storage + 879;
36503
36504 }
36505 }
36506 else
36507 {
36508 {
36509 return NULL;
36510
36511 }
36512 }
36513 case 'g':
36514 if (strncmp (KR_keyword, "/dev/sdag15", 11) == 0)
36515 {
36516 {
36517 return dev_storage + 864;
36518
36519 }
36520 }
36521 else
36522 {
36523 {
36524 return NULL;
36525
36526 }
36527 }
36528 case 'f':
36529 if (strncmp (KR_keyword, "/dev/sdaf15", 11) == 0)
36530 {
36531 {
36532 return dev_storage + 849;
36533
36534 }
36535 }
36536 else
36537 {
36538 {
36539 return NULL;
36540
36541 }
36542 }
36543 case 'e':
36544 if (strncmp (KR_keyword, "/dev/sdae15", 11) == 0)
36545 {
36546 {
36547 return dev_storage + 834;
36548
36549 }
36550 }
36551 else
36552 {
36553 {
36554 return NULL;
36555
36556 }
36557 }
36558 case 'd':
36559 if (strncmp (KR_keyword, "/dev/sdad15", 11) == 0)
36560 {
36561 {
36562 return dev_storage + 819;
36563
36564 }
36565 }
36566 else
36567 {
36568 {
36569 return NULL;
36570
36571 }
36572 }
36573 case 'c':
36574 if (strncmp (KR_keyword, "/dev/sdac15", 11) == 0)
36575 {
36576 {
36577 return dev_storage + 804;
36578
36579 }
36580 }
36581 else
36582 {
36583 {
36584 return NULL;
36585
36586 }
36587 }
36588 case 'b':
36589 if (strncmp (KR_keyword, "/dev/sdab15", 11) == 0)
36590 {
36591 {
36592 return dev_storage + 789;
36593
36594 }
36595 }
36596 else
36597 {
36598 {
36599 return NULL;
36600
36601 }
36602 }
36603 case 'a':
36604 if (strncmp (KR_keyword, "/dev/sdaa15", 11) == 0)
36605 {
36606 {
36607 return dev_storage + 774;
36608
36609 }
36610 }
36611 else
36612 {
36613 {
36614 return NULL;
36615
36616 }
36617 }
36618 default:
36619 {
36620 return NULL;
36621
36622 }
36623 }
36624 default:
36625 {
36626 return NULL;
36627
36628 }
36629 }
36630 case '4':
36631 switch (KR_keyword [7])
36632 {
36633 case 'y':
36634 switch (KR_keyword [9])
36635 {
36636 case '5':
36637 if (strncmp (KR_keyword, "/dev/ttyS54", 11) == 0)
36638 {
36639 {
36640 return dev_storage + 2565;
36641
36642 }
36643 }
36644 else
36645 {
36646 {
36647 return NULL;
36648
36649 }
36650 }
36651 case '4':
36652 if (strncmp (KR_keyword, "/dev/ttyS44", 11) == 0)
36653 {
36654 {
36655 return dev_storage + 2555;
36656
36657 }
36658 }
36659 else
36660 {
36661 {
36662 return NULL;
36663
36664 }
36665 }
36666 case '3':
36667 if (strncmp (KR_keyword, "/dev/ttyS34", 11) == 0)
36668 {
36669 {
36670 return dev_storage + 2545;
36671
36672 }
36673 }
36674 else
36675 {
36676 {
36677 return NULL;
36678
36679 }
36680 }
36681 case '2':
36682 if (strncmp (KR_keyword, "/dev/ttyS24", 11) == 0)
36683 {
36684 {
36685 return dev_storage + 2535;
36686
36687 }
36688 }
36689 else
36690 {
36691 {
36692 return NULL;
36693
36694 }
36695 }
36696 case '1':
36697 if (strncmp (KR_keyword, "/dev/ttyS14", 11) == 0)
36698 {
36699 {
36700 return dev_storage + 2525;
36701
36702 }
36703 }
36704 else
36705 {
36706 {
36707 return NULL;
36708
36709 }
36710 }
36711 default:
36712 {
36713 return NULL;
36714
36715 }
36716 }
36717 case 't':
36718 switch (KR_keyword [9])
36719 {
36720 case '2':
36721 if (strncmp (KR_keyword, "/dev/nst124", 11) == 0)
36722 {
36723 {
36724 return dev_storage + 230;
36725
36726 }
36727 }
36728 else
36729 {
36730 {
36731 return NULL;
36732
36733 }
36734 }
36735 case '1':
36736 if (strncmp (KR_keyword, "/dev/nst114", 11) == 0)
36737 {
36738 {
36739 return dev_storage + 220;
36740
36741 }
36742 }
36743 else
36744 {
36745 {
36746 return NULL;
36747
36748 }
36749 }
36750 case '0':
36751 if (strncmp (KR_keyword, "/dev/nst104", 11) == 0)
36752 {
36753 {
36754 return dev_storage + 210;
36755
36756 }
36757 }
36758 else
36759 {
36760 {
36761 return NULL;
36762
36763 }
36764 }
36765 default:
36766 {
36767 return NULL;
36768
36769 }
36770 }
36771 case 'n':
36772 switch (KR_keyword [9])
36773 {
36774 case '5':
36775 if (strncmp (KR_keyword, "/dev/cons54", 11) == 0)
36776 {
36777 {
36778 return dev_storage + 74;
36779
36780 }
36781 }
36782 else
36783 {
36784 {
36785 return NULL;
36786
36787 }
36788 }
36789 case '4':
36790 if (strncmp (KR_keyword, "/dev/cons44", 11) == 0)
36791 {
36792 {
36793 return dev_storage + 64;
36794
36795 }
36796 }
36797 else
36798 {
36799 {
36800 return NULL;
36801
36802 }
36803 }
36804 case '3':
36805 if (strncmp (KR_keyword, "/dev/cons34", 11) == 0)
36806 {
36807 {
36808 return dev_storage + 54;
36809
36810 }
36811 }
36812 else
36813 {
36814 {
36815 return NULL;
36816
36817 }
36818 }
36819 case '2':
36820 if (strncmp (KR_keyword, "/dev/cons24", 11) == 0)
36821 {
36822 {
36823 return dev_storage + 44;
36824
36825 }
36826 }
36827 else
36828 {
36829 {
36830 return NULL;
36831
36832 }
36833 }
36834 case '1':
36835 if (strncmp (KR_keyword, "/dev/cons14", 11) == 0)
36836 {
36837 {
36838 return dev_storage + 34;
36839
36840 }
36841 }
36842 else
36843 {
36844 {
36845 return NULL;
36846
36847 }
36848 }
36849 default:
36850 {
36851 return NULL;
36852
36853 }
36854 }
36855 case 'd':
36856 switch (KR_keyword [8])
36857 {
36858 case 'x':
36859 if (strncmp (KR_keyword, "/dev/sddx14", 11) == 0)
36860 {
36861 {
36862 return dev_storage + 2364;
36863
36864 }
36865 }
36866 else
36867 {
36868 {
36869 return NULL;
36870
36871 }
36872 }
36873 case 'w':
36874 if (strncmp (KR_keyword, "/dev/sddw14", 11) == 0)
36875 {
36876 {
36877 return dev_storage + 2349;
36878
36879 }
36880 }
36881 else
36882 {
36883 {
36884 return NULL;
36885
36886 }
36887 }
36888 case 'v':
36889 if (strncmp (KR_keyword, "/dev/sddv14", 11) == 0)
36890 {
36891 {
36892 return dev_storage + 2334;
36893
36894 }
36895 }
36896 else
36897 {
36898 {
36899 return NULL;
36900
36901 }
36902 }
36903 case 'u':
36904 if (strncmp (KR_keyword, "/dev/sddu14", 11) == 0)
36905 {
36906 {
36907 return dev_storage + 2319;
36908
36909 }
36910 }
36911 else
36912 {
36913 {
36914 return NULL;
36915
36916 }
36917 }
36918 case 't':
36919 if (strncmp (KR_keyword, "/dev/sddt14", 11) == 0)
36920 {
36921 {
36922 return dev_storage + 2304;
36923
36924 }
36925 }
36926 else
36927 {
36928 {
36929 return NULL;
36930
36931 }
36932 }
36933 case 's':
36934 if (strncmp (KR_keyword, "/dev/sdds14", 11) == 0)
36935 {
36936 {
36937 return dev_storage + 2289;
36938
36939 }
36940 }
36941 else
36942 {
36943 {
36944 return NULL;
36945
36946 }
36947 }
36948 case 'r':
36949 if (strncmp (KR_keyword, "/dev/sddr14", 11) == 0)
36950 {
36951 {
36952 return dev_storage + 2274;
36953
36954 }
36955 }
36956 else
36957 {
36958 {
36959 return NULL;
36960
36961 }
36962 }
36963 case 'q':
36964 if (strncmp (KR_keyword, "/dev/sddq14", 11) == 0)
36965 {
36966 {
36967 return dev_storage + 2259;
36968
36969 }
36970 }
36971 else
36972 {
36973 {
36974 return NULL;
36975
36976 }
36977 }
36978 case 'p':
36979 if (strncmp (KR_keyword, "/dev/sddp14", 11) == 0)
36980 {
36981 {
36982 return dev_storage + 2244;
36983
36984 }
36985 }
36986 else
36987 {
36988 {
36989 return NULL;
36990
36991 }
36992 }
36993 case 'o':
36994 if (strncmp (KR_keyword, "/dev/sddo14", 11) == 0)
36995 {
36996 {
36997 return dev_storage + 2229;
36998
36999 }
37000 }
37001 else
37002 {
37003 {
37004 return NULL;
37005
37006 }
37007 }
37008 case 'n':
37009 if (strncmp (KR_keyword, "/dev/sddn14", 11) == 0)
37010 {
37011 {
37012 return dev_storage + 2214;
37013
37014 }
37015 }
37016 else
37017 {
37018 {
37019 return NULL;
37020
37021 }
37022 }
37023 case 'm':
37024 if (strncmp (KR_keyword, "/dev/sddm14", 11) == 0)
37025 {
37026 {
37027 return dev_storage + 2199;
37028
37029 }
37030 }
37031 else
37032 {
37033 {
37034 return NULL;
37035
37036 }
37037 }
37038 case 'l':
37039 if (strncmp (KR_keyword, "/dev/sddl14", 11) == 0)
37040 {
37041 {
37042 return dev_storage + 2184;
37043
37044 }
37045 }
37046 else
37047 {
37048 {
37049 return NULL;
37050
37051 }
37052 }
37053 case 'k':
37054 if (strncmp (KR_keyword, "/dev/sddk14", 11) == 0)
37055 {
37056 {
37057 return dev_storage + 2169;
37058
37059 }
37060 }
37061 else
37062 {
37063 {
37064 return NULL;
37065
37066 }
37067 }
37068 case 'j':
37069 if (strncmp (KR_keyword, "/dev/sddj14", 11) == 0)
37070 {
37071 {
37072 return dev_storage + 2154;
37073
37074 }
37075 }
37076 else
37077 {
37078 {
37079 return NULL;
37080
37081 }
37082 }
37083 case 'i':
37084 if (strncmp (KR_keyword, "/dev/sddi14", 11) == 0)
37085 {
37086 {
37087 return dev_storage + 2139;
37088
37089 }
37090 }
37091 else
37092 {
37093 {
37094 return NULL;
37095
37096 }
37097 }
37098 case 'h':
37099 if (strncmp (KR_keyword, "/dev/sddh14", 11) == 0)
37100 {
37101 {
37102 return dev_storage + 2124;
37103
37104 }
37105 }
37106 else
37107 {
37108 {
37109 return NULL;
37110
37111 }
37112 }
37113 case 'g':
37114 if (strncmp (KR_keyword, "/dev/sddg14", 11) == 0)
37115 {
37116 {
37117 return dev_storage + 2109;
37118
37119 }
37120 }
37121 else
37122 {
37123 {
37124 return NULL;
37125
37126 }
37127 }
37128 case 'f':
37129 if (strncmp (KR_keyword, "/dev/sddf14", 11) == 0)
37130 {
37131 {
37132 return dev_storage + 2094;
37133
37134 }
37135 }
37136 else
37137 {
37138 {
37139 return NULL;
37140
37141 }
37142 }
37143 case 'e':
37144 if (strncmp (KR_keyword, "/dev/sdde14", 11) == 0)
37145 {
37146 {
37147 return dev_storage + 2079;
37148
37149 }
37150 }
37151 else
37152 {
37153 {
37154 return NULL;
37155
37156 }
37157 }
37158 case 'd':
37159 if (strncmp (KR_keyword, "/dev/sddd14", 11) == 0)
37160 {
37161 {
37162 return dev_storage + 2064;
37163
37164 }
37165 }
37166 else
37167 {
37168 {
37169 return NULL;
37170
37171 }
37172 }
37173 case 'c':
37174 if (strncmp (KR_keyword, "/dev/sddc14", 11) == 0)
37175 {
37176 {
37177 return dev_storage + 2049;
37178
37179 }
37180 }
37181 else
37182 {
37183 {
37184 return NULL;
37185
37186 }
37187 }
37188 case 'b':
37189 if (strncmp (KR_keyword, "/dev/sddb14", 11) == 0)
37190 {
37191 {
37192 return dev_storage + 2034;
37193
37194 }
37195 }
37196 else
37197 {
37198 {
37199 return NULL;
37200
37201 }
37202 }
37203 case 'a':
37204 if (strncmp (KR_keyword, "/dev/sdda14", 11) == 0)
37205 {
37206 {
37207 return dev_storage + 2019;
37208
37209 }
37210 }
37211 else
37212 {
37213 {
37214 return NULL;
37215
37216 }
37217 }
37218 default:
37219 {
37220 return NULL;
37221
37222 }
37223 }
37224 case 'c':
37225 switch (KR_keyword [8])
37226 {
37227 case 'z':
37228 if (strncmp (KR_keyword, "/dev/sdcz14", 11) == 0)
37229 {
37230 {
37231 return dev_storage + 1980;
37232
37233 }
37234 }
37235 else
37236 {
37237 {
37238 return NULL;
37239
37240 }
37241 }
37242 case 'y':
37243 if (strncmp (KR_keyword, "/dev/sdcy14", 11) == 0)
37244 {
37245 {
37246 return dev_storage + 1965;
37247
37248 }
37249 }
37250 else
37251 {
37252 {
37253 return NULL;
37254
37255 }
37256 }
37257 case 'x':
37258 if (strncmp (KR_keyword, "/dev/sdcx14", 11) == 0)
37259 {
37260 {
37261 return dev_storage + 1950;
37262
37263 }
37264 }
37265 else
37266 {
37267 {
37268 return NULL;
37269
37270 }
37271 }
37272 case 'w':
37273 if (strncmp (KR_keyword, "/dev/sdcw14", 11) == 0)
37274 {
37275 {
37276 return dev_storage + 1935;
37277
37278 }
37279 }
37280 else
37281 {
37282 {
37283 return NULL;
37284
37285 }
37286 }
37287 case 'v':
37288 if (strncmp (KR_keyword, "/dev/sdcv14", 11) == 0)
37289 {
37290 {
37291 return dev_storage + 1920;
37292
37293 }
37294 }
37295 else
37296 {
37297 {
37298 return NULL;
37299
37300 }
37301 }
37302 case 'u':
37303 if (strncmp (KR_keyword, "/dev/sdcu14", 11) == 0)
37304 {
37305 {
37306 return dev_storage + 1905;
37307
37308 }
37309 }
37310 else
37311 {
37312 {
37313 return NULL;
37314
37315 }
37316 }
37317 case 't':
37318 if (strncmp (KR_keyword, "/dev/sdct14", 11) == 0)
37319 {
37320 {
37321 return dev_storage + 1890;
37322
37323 }
37324 }
37325 else
37326 {
37327 {
37328 return NULL;
37329
37330 }
37331 }
37332 case 's':
37333 if (strncmp (KR_keyword, "/dev/sdcs14", 11) == 0)
37334 {
37335 {
37336 return dev_storage + 1875;
37337
37338 }
37339 }
37340 else
37341 {
37342 {
37343 return NULL;
37344
37345 }
37346 }
37347 case 'r':
37348 if (strncmp (KR_keyword, "/dev/sdcr14", 11) == 0)
37349 {
37350 {
37351 return dev_storage + 1860;
37352
37353 }
37354 }
37355 else
37356 {
37357 {
37358 return NULL;
37359
37360 }
37361 }
37362 case 'q':
37363 if (strncmp (KR_keyword, "/dev/sdcq14", 11) == 0)
37364 {
37365 {
37366 return dev_storage + 1845;
37367
37368 }
37369 }
37370 else
37371 {
37372 {
37373 return NULL;
37374
37375 }
37376 }
37377 case 'p':
37378 if (strncmp (KR_keyword, "/dev/sdcp14", 11) == 0)
37379 {
37380 {
37381 return dev_storage + 1830;
37382
37383 }
37384 }
37385 else
37386 {
37387 {
37388 return NULL;
37389
37390 }
37391 }
37392 case 'o':
37393 if (strncmp (KR_keyword, "/dev/sdco14", 11) == 0)
37394 {
37395 {
37396 return dev_storage + 1815;
37397
37398 }
37399 }
37400 else
37401 {
37402 {
37403 return NULL;
37404
37405 }
37406 }
37407 case 'n':
37408 if (strncmp (KR_keyword, "/dev/sdcn14", 11) == 0)
37409 {
37410 {
37411 return dev_storage + 1800;
37412
37413 }
37414 }
37415 else
37416 {
37417 {
37418 return NULL;
37419
37420 }
37421 }
37422 case 'm':
37423 if (strncmp (KR_keyword, "/dev/sdcm14", 11) == 0)
37424 {
37425 {
37426 return dev_storage + 1785;
37427
37428 }
37429 }
37430 else
37431 {
37432 {
37433 return NULL;
37434
37435 }
37436 }
37437 case 'l':
37438 if (strncmp (KR_keyword, "/dev/sdcl14", 11) == 0)
37439 {
37440 {
37441 return dev_storage + 1770;
37442
37443 }
37444 }
37445 else
37446 {
37447 {
37448 return NULL;
37449
37450 }
37451 }
37452 case 'k':
37453 if (strncmp (KR_keyword, "/dev/sdck14", 11) == 0)
37454 {
37455 {
37456 return dev_storage + 1755;
37457
37458 }
37459 }
37460 else
37461 {
37462 {
37463 return NULL;
37464
37465 }
37466 }
37467 case 'j':
37468 if (strncmp (KR_keyword, "/dev/sdcj14", 11) == 0)
37469 {
37470 {
37471 return dev_storage + 1740;
37472
37473 }
37474 }
37475 else
37476 {
37477 {
37478 return NULL;
37479
37480 }
37481 }
37482 case 'i':
37483 if (strncmp (KR_keyword, "/dev/sdci14", 11) == 0)
37484 {
37485 {
37486 return dev_storage + 1725;
37487
37488 }
37489 }
37490 else
37491 {
37492 {
37493 return NULL;
37494
37495 }
37496 }
37497 case 'h':
37498 if (strncmp (KR_keyword, "/dev/sdch14", 11) == 0)
37499 {
37500 {
37501 return dev_storage + 1710;
37502
37503 }
37504 }
37505 else
37506 {
37507 {
37508 return NULL;
37509
37510 }
37511 }
37512 case 'g':
37513 if (strncmp (KR_keyword, "/dev/sdcg14", 11) == 0)
37514 {
37515 {
37516 return dev_storage + 1695;
37517
37518 }
37519 }
37520 else
37521 {
37522 {
37523 return NULL;
37524
37525 }
37526 }
37527 case 'f':
37528 if (strncmp (KR_keyword, "/dev/sdcf14", 11) == 0)
37529 {
37530 {
37531 return dev_storage + 1680;
37532
37533 }
37534 }
37535 else
37536 {
37537 {
37538 return NULL;
37539
37540 }
37541 }
37542 case 'e':
37543 if (strncmp (KR_keyword, "/dev/sdce14", 11) == 0)
37544 {
37545 {
37546 return dev_storage + 1665;
37547
37548 }
37549 }
37550 else
37551 {
37552 {
37553 return NULL;
37554
37555 }
37556 }
37557 case 'd':
37558 if (strncmp (KR_keyword, "/dev/sdcd14", 11) == 0)
37559 {
37560 {
37561 return dev_storage + 1650;
37562
37563 }
37564 }
37565 else
37566 {
37567 {
37568 return NULL;
37569
37570 }
37571 }
37572 case 'c':
37573 if (strncmp (KR_keyword, "/dev/sdcc14", 11) == 0)
37574 {
37575 {
37576 return dev_storage + 1635;
37577
37578 }
37579 }
37580 else
37581 {
37582 {
37583 return NULL;
37584
37585 }
37586 }
37587 case 'b':
37588 if (strncmp (KR_keyword, "/dev/sdcb14", 11) == 0)
37589 {
37590 {
37591 return dev_storage + 1620;
37592
37593 }
37594 }
37595 else
37596 {
37597 {
37598 return NULL;
37599
37600 }
37601 }
37602 case 'a':
37603 if (strncmp (KR_keyword, "/dev/sdca14", 11) == 0)
37604 {
37605 {
37606 return dev_storage + 1605;
37607
37608 }
37609 }
37610 else
37611 {
37612 {
37613 return NULL;
37614
37615 }
37616 }
37617 default:
37618 {
37619 return NULL;
37620
37621 }
37622 }
37623 case 'b':
37624 switch (KR_keyword [8])
37625 {
37626 case 'z':
37627 if (strncmp (KR_keyword, "/dev/sdbz14", 11) == 0)
37628 {
37629 {
37630 return dev_storage + 1564;
37631
37632 }
37633 }
37634 else
37635 {
37636 {
37637 return NULL;
37638
37639 }
37640 }
37641 case 'y':
37642 if (strncmp (KR_keyword, "/dev/sdby14", 11) == 0)
37643 {
37644 {
37645 return dev_storage + 1549;
37646
37647 }
37648 }
37649 else
37650 {
37651 {
37652 return NULL;
37653
37654 }
37655 }
37656 case 'x':
37657 if (strncmp (KR_keyword, "/dev/sdbx14", 11) == 0)
37658 {
37659 {
37660 return dev_storage + 1534;
37661
37662 }
37663 }
37664 else
37665 {
37666 {
37667 return NULL;
37668
37669 }
37670 }
37671 case 'w':
37672 if (strncmp (KR_keyword, "/dev/sdbw14", 11) == 0)
37673 {
37674 {
37675 return dev_storage + 1519;
37676
37677 }
37678 }
37679 else
37680 {
37681 {
37682 return NULL;
37683
37684 }
37685 }
37686 case 'v':
37687 if (strncmp (KR_keyword, "/dev/sdbv14", 11) == 0)
37688 {
37689 {
37690 return dev_storage + 1504;
37691
37692 }
37693 }
37694 else
37695 {
37696 {
37697 return NULL;
37698
37699 }
37700 }
37701 case 'u':
37702 if (strncmp (KR_keyword, "/dev/sdbu14", 11) == 0)
37703 {
37704 {
37705 return dev_storage + 1489;
37706
37707 }
37708 }
37709 else
37710 {
37711 {
37712 return NULL;
37713
37714 }
37715 }
37716 case 't':
37717 if (strncmp (KR_keyword, "/dev/sdbt14", 11) == 0)
37718 {
37719 {
37720 return dev_storage + 1474;
37721
37722 }
37723 }
37724 else
37725 {
37726 {
37727 return NULL;
37728
37729 }
37730 }
37731 case 's':
37732 if (strncmp (KR_keyword, "/dev/sdbs14", 11) == 0)
37733 {
37734 {
37735 return dev_storage + 1459;
37736
37737 }
37738 }
37739 else
37740 {
37741 {
37742 return NULL;
37743
37744 }
37745 }
37746 case 'r':
37747 if (strncmp (KR_keyword, "/dev/sdbr14", 11) == 0)
37748 {
37749 {
37750 return dev_storage + 1444;
37751
37752 }
37753 }
37754 else
37755 {
37756 {
37757 return NULL;
37758
37759 }
37760 }
37761 case 'q':
37762 if (strncmp (KR_keyword, "/dev/sdbq14", 11) == 0)
37763 {
37764 {
37765 return dev_storage + 1429;
37766
37767 }
37768 }
37769 else
37770 {
37771 {
37772 return NULL;
37773
37774 }
37775 }
37776 case 'p':
37777 if (strncmp (KR_keyword, "/dev/sdbp14", 11) == 0)
37778 {
37779 {
37780 return dev_storage + 1414;
37781
37782 }
37783 }
37784 else
37785 {
37786 {
37787 return NULL;
37788
37789 }
37790 }
37791 case 'o':
37792 if (strncmp (KR_keyword, "/dev/sdbo14", 11) == 0)
37793 {
37794 {
37795 return dev_storage + 1399;
37796
37797 }
37798 }
37799 else
37800 {
37801 {
37802 return NULL;
37803
37804 }
37805 }
37806 case 'n':
37807 if (strncmp (KR_keyword, "/dev/sdbn14", 11) == 0)
37808 {
37809 {
37810 return dev_storage + 1384;
37811
37812 }
37813 }
37814 else
37815 {
37816 {
37817 return NULL;
37818
37819 }
37820 }
37821 case 'm':
37822 if (strncmp (KR_keyword, "/dev/sdbm14", 11) == 0)
37823 {
37824 {
37825 return dev_storage + 1369;
37826
37827 }
37828 }
37829 else
37830 {
37831 {
37832 return NULL;
37833
37834 }
37835 }
37836 case 'l':
37837 if (strncmp (KR_keyword, "/dev/sdbl14", 11) == 0)
37838 {
37839 {
37840 return dev_storage + 1354;
37841
37842 }
37843 }
37844 else
37845 {
37846 {
37847 return NULL;
37848
37849 }
37850 }
37851 case 'k':
37852 if (strncmp (KR_keyword, "/dev/sdbk14", 11) == 0)
37853 {
37854 {
37855 return dev_storage + 1339;
37856
37857 }
37858 }
37859 else
37860 {
37861 {
37862 return NULL;
37863
37864 }
37865 }
37866 case 'j':
37867 if (strncmp (KR_keyword, "/dev/sdbj14", 11) == 0)
37868 {
37869 {
37870 return dev_storage + 1324;
37871
37872 }
37873 }
37874 else
37875 {
37876 {
37877 return NULL;
37878
37879 }
37880 }
37881 case 'i':
37882 if (strncmp (KR_keyword, "/dev/sdbi14", 11) == 0)
37883 {
37884 {
37885 return dev_storage + 1309;
37886
37887 }
37888 }
37889 else
37890 {
37891 {
37892 return NULL;
37893
37894 }
37895 }
37896 case 'h':
37897 if (strncmp (KR_keyword, "/dev/sdbh14", 11) == 0)
37898 {
37899 {
37900 return dev_storage + 1294;
37901
37902 }
37903 }
37904 else
37905 {
37906 {
37907 return NULL;
37908
37909 }
37910 }
37911 case 'g':
37912 if (strncmp (KR_keyword, "/dev/sdbg14", 11) == 0)
37913 {
37914 {
37915 return dev_storage + 1279;
37916
37917 }
37918 }
37919 else
37920 {
37921 {
37922 return NULL;
37923
37924 }
37925 }
37926 case 'f':
37927 if (strncmp (KR_keyword, "/dev/sdbf14", 11) == 0)
37928 {
37929 {
37930 return dev_storage + 1264;
37931
37932 }
37933 }
37934 else
37935 {
37936 {
37937 return NULL;
37938
37939 }
37940 }
37941 case 'e':
37942 if (strncmp (KR_keyword, "/dev/sdbe14", 11) == 0)
37943 {
37944 {
37945 return dev_storage + 1249;
37946
37947 }
37948 }
37949 else
37950 {
37951 {
37952 return NULL;
37953
37954 }
37955 }
37956 case 'd':
37957 if (strncmp (KR_keyword, "/dev/sdbd14", 11) == 0)
37958 {
37959 {
37960 return dev_storage + 1234;
37961
37962 }
37963 }
37964 else
37965 {
37966 {
37967 return NULL;
37968
37969 }
37970 }
37971 case 'c':
37972 if (strncmp (KR_keyword, "/dev/sdbc14", 11) == 0)
37973 {
37974 {
37975 return dev_storage + 1219;
37976
37977 }
37978 }
37979 else
37980 {
37981 {
37982 return NULL;
37983
37984 }
37985 }
37986 case 'b':
37987 if (strncmp (KR_keyword, "/dev/sdbb14", 11) == 0)
37988 {
37989 {
37990 return dev_storage + 1204;
37991
37992 }
37993 }
37994 else
37995 {
37996 {
37997 return NULL;
37998
37999 }
38000 }
38001 case 'a':
38002 if (strncmp (KR_keyword, "/dev/sdba14", 11) == 0)
38003 {
38004 {
38005 return dev_storage + 1189;
38006
38007 }
38008 }
38009 else
38010 {
38011 {
38012 return NULL;
38013
38014 }
38015 }
38016 default:
38017 {
38018 return NULL;
38019
38020 }
38021 }
38022 case 'a':
38023 switch (KR_keyword [8])
38024 {
38025 case 'z':
38026 if (strncmp (KR_keyword, "/dev/sdaz14", 11) == 0)
38027 {
38028 {
38029 return dev_storage + 1148;
38030
38031 }
38032 }
38033 else
38034 {
38035 {
38036 return NULL;
38037
38038 }
38039 }
38040 case 'y':
38041 if (strncmp (KR_keyword, "/dev/sday14", 11) == 0)
38042 {
38043 {
38044 return dev_storage + 1133;
38045
38046 }
38047 }
38048 else
38049 {
38050 {
38051 return NULL;
38052
38053 }
38054 }
38055 case 'x':
38056 if (strncmp (KR_keyword, "/dev/sdax14", 11) == 0)
38057 {
38058 {
38059 return dev_storage + 1118;
38060
38061 }
38062 }
38063 else
38064 {
38065 {
38066 return NULL;
38067
38068 }
38069 }
38070 case 'w':
38071 if (strncmp (KR_keyword, "/dev/sdaw14", 11) == 0)
38072 {
38073 {
38074 return dev_storage + 1103;
38075
38076 }
38077 }
38078 else
38079 {
38080 {
38081 return NULL;
38082
38083 }
38084 }
38085 case 'v':
38086 if (strncmp (KR_keyword, "/dev/sdav14", 11) == 0)
38087 {
38088 {
38089 return dev_storage + 1088;
38090
38091 }
38092 }
38093 else
38094 {
38095 {
38096 return NULL;
38097
38098 }
38099 }
38100 case 'u':
38101 if (strncmp (KR_keyword, "/dev/sdau14", 11) == 0)
38102 {
38103 {
38104 return dev_storage + 1073;
38105
38106 }
38107 }
38108 else
38109 {
38110 {
38111 return NULL;
38112
38113 }
38114 }
38115 case 't':
38116 if (strncmp (KR_keyword, "/dev/sdat14", 11) == 0)
38117 {
38118 {
38119 return dev_storage + 1058;
38120
38121 }
38122 }
38123 else
38124 {
38125 {
38126 return NULL;
38127
38128 }
38129 }
38130 case 's':
38131 if (strncmp (KR_keyword, "/dev/sdas14", 11) == 0)
38132 {
38133 {
38134 return dev_storage + 1043;
38135
38136 }
38137 }
38138 else
38139 {
38140 {
38141 return NULL;
38142
38143 }
38144 }
38145 case 'r':
38146 if (strncmp (KR_keyword, "/dev/sdar14", 11) == 0)
38147 {
38148 {
38149 return dev_storage + 1028;
38150
38151 }
38152 }
38153 else
38154 {
38155 {
38156 return NULL;
38157
38158 }
38159 }
38160 case 'q':
38161 if (strncmp (KR_keyword, "/dev/sdaq14", 11) == 0)
38162 {
38163 {
38164 return dev_storage + 1013;
38165
38166 }
38167 }
38168 else
38169 {
38170 {
38171 return NULL;
38172
38173 }
38174 }
38175 case 'p':
38176 if (strncmp (KR_keyword, "/dev/sdap14", 11) == 0)
38177 {
38178 {
38179 return dev_storage + 998;
38180
38181 }
38182 }
38183 else
38184 {
38185 {
38186 return NULL;
38187
38188 }
38189 }
38190 case 'o':
38191 if (strncmp (KR_keyword, "/dev/sdao14", 11) == 0)
38192 {
38193 {
38194 return dev_storage + 983;
38195
38196 }
38197 }
38198 else
38199 {
38200 {
38201 return NULL;
38202
38203 }
38204 }
38205 case 'n':
38206 if (strncmp (KR_keyword, "/dev/sdan14", 11) == 0)
38207 {
38208 {
38209 return dev_storage + 968;
38210
38211 }
38212 }
38213 else
38214 {
38215 {
38216 return NULL;
38217
38218 }
38219 }
38220 case 'm':
38221 if (strncmp (KR_keyword, "/dev/sdam14", 11) == 0)
38222 {
38223 {
38224 return dev_storage + 953;
38225
38226 }
38227 }
38228 else
38229 {
38230 {
38231 return NULL;
38232
38233 }
38234 }
38235 case 'l':
38236 if (strncmp (KR_keyword, "/dev/sdal14", 11) == 0)
38237 {
38238 {
38239 return dev_storage + 938;
38240
38241 }
38242 }
38243 else
38244 {
38245 {
38246 return NULL;
38247
38248 }
38249 }
38250 case 'k':
38251 if (strncmp (KR_keyword, "/dev/sdak14", 11) == 0)
38252 {
38253 {
38254 return dev_storage + 923;
38255
38256 }
38257 }
38258 else
38259 {
38260 {
38261 return NULL;
38262
38263 }
38264 }
38265 case 'j':
38266 if (strncmp (KR_keyword, "/dev/sdaj14", 11) == 0)
38267 {
38268 {
38269 return dev_storage + 908;
38270
38271 }
38272 }
38273 else
38274 {
38275 {
38276 return NULL;
38277
38278 }
38279 }
38280 case 'i':
38281 if (strncmp (KR_keyword, "/dev/sdai14", 11) == 0)
38282 {
38283 {
38284 return dev_storage + 893;
38285
38286 }
38287 }
38288 else
38289 {
38290 {
38291 return NULL;
38292
38293 }
38294 }
38295 case 'h':
38296 if (strncmp (KR_keyword, "/dev/sdah14", 11) == 0)
38297 {
38298 {
38299 return dev_storage + 878;
38300
38301 }
38302 }
38303 else
38304 {
38305 {
38306 return NULL;
38307
38308 }
38309 }
38310 case 'g':
38311 if (strncmp (KR_keyword, "/dev/sdag14", 11) == 0)
38312 {
38313 {
38314 return dev_storage + 863;
38315
38316 }
38317 }
38318 else
38319 {
38320 {
38321 return NULL;
38322
38323 }
38324 }
38325 case 'f':
38326 if (strncmp (KR_keyword, "/dev/sdaf14", 11) == 0)
38327 {
38328 {
38329 return dev_storage + 848;
38330
38331 }
38332 }
38333 else
38334 {
38335 {
38336 return NULL;
38337
38338 }
38339 }
38340 case 'e':
38341 if (strncmp (KR_keyword, "/dev/sdae14", 11) == 0)
38342 {
38343 {
38344 return dev_storage + 833;
38345
38346 }
38347 }
38348 else
38349 {
38350 {
38351 return NULL;
38352
38353 }
38354 }
38355 case 'd':
38356 if (strncmp (KR_keyword, "/dev/sdad14", 11) == 0)
38357 {
38358 {
38359 return dev_storage + 818;
38360
38361 }
38362 }
38363 else
38364 {
38365 {
38366 return NULL;
38367
38368 }
38369 }
38370 case 'c':
38371 if (strncmp (KR_keyword, "/dev/sdac14", 11) == 0)
38372 {
38373 {
38374 return dev_storage + 803;
38375
38376 }
38377 }
38378 else
38379 {
38380 {
38381 return NULL;
38382
38383 }
38384 }
38385 case 'b':
38386 if (strncmp (KR_keyword, "/dev/sdab14", 11) == 0)
38387 {
38388 {
38389 return dev_storage + 788;
38390
38391 }
38392 }
38393 else
38394 {
38395 {
38396 return NULL;
38397
38398 }
38399 }
38400 case 'a':
38401 if (strncmp (KR_keyword, "/dev/sdaa14", 11) == 0)
38402 {
38403 {
38404 return dev_storage + 773;
38405
38406 }
38407 }
38408 else
38409 {
38410 {
38411 return NULL;
38412
38413 }
38414 }
38415 default:
38416 {
38417 return NULL;
38418
38419 }
38420 }
38421 default:
38422 {
38423 return NULL;
38424
38425 }
38426 }
38427 case '3':
38428 switch (KR_keyword [7])
38429 {
38430 case 'y':
38431 switch (KR_keyword [9])
38432 {
38433 case '6':
38434 if (strncmp (KR_keyword, "/dev/ttyS63", 11) == 0)
38435 {
38436 {
38437 return dev_storage + 2574;
38438
38439 }
38440 }
38441 else
38442 {
38443 {
38444 return NULL;
38445
38446 }
38447 }
38448 case '5':
38449 if (strncmp (KR_keyword, "/dev/ttyS53", 11) == 0)
38450 {
38451 {
38452 return dev_storage + 2564;
38453
38454 }
38455 }
38456 else
38457 {
38458 {
38459 return NULL;
38460
38461 }
38462 }
38463 case '4':
38464 if (strncmp (KR_keyword, "/dev/ttyS43", 11) == 0)
38465 {
38466 {
38467 return dev_storage + 2554;
38468
38469 }
38470 }
38471 else
38472 {
38473 {
38474 return NULL;
38475
38476 }
38477 }
38478 case '3':
38479 if (strncmp (KR_keyword, "/dev/ttyS33", 11) == 0)
38480 {
38481 {
38482 return dev_storage + 2544;
38483
38484 }
38485 }
38486 else
38487 {
38488 {
38489 return NULL;
38490
38491 }
38492 }
38493 case '2':
38494 if (strncmp (KR_keyword, "/dev/ttyS23", 11) == 0)
38495 {
38496 {
38497 return dev_storage + 2534;
38498
38499 }
38500 }
38501 else
38502 {
38503 {
38504 return NULL;
38505
38506 }
38507 }
38508 case '1':
38509 if (strncmp (KR_keyword, "/dev/ttyS13", 11) == 0)
38510 {
38511 {
38512 return dev_storage + 2524;
38513
38514 }
38515 }
38516 else
38517 {
38518 {
38519 return NULL;
38520
38521 }
38522 }
38523 default:
38524 {
38525 return NULL;
38526
38527 }
38528 }
38529 case 't':
38530 switch (KR_keyword [9])
38531 {
38532 case '2':
38533 if (strncmp (KR_keyword, "/dev/nst123", 11) == 0)
38534 {
38535 {
38536 return dev_storage + 229;
38537
38538 }
38539 }
38540 else
38541 {
38542 {
38543 return NULL;
38544
38545 }
38546 }
38547 case '1':
38548 if (strncmp (KR_keyword, "/dev/nst113", 11) == 0)
38549 {
38550 {
38551 return dev_storage + 219;
38552
38553 }
38554 }
38555 else
38556 {
38557 {
38558 return NULL;
38559
38560 }
38561 }
38562 case '0':
38563 if (strncmp (KR_keyword, "/dev/nst103", 11) == 0)
38564 {
38565 {
38566 return dev_storage + 209;
38567
38568 }
38569 }
38570 else
38571 {
38572 {
38573 return NULL;
38574
38575 }
38576 }
38577 default:
38578 {
38579 return NULL;
38580
38581 }
38582 }
38583 case 'n':
38584 switch (KR_keyword [9])
38585 {
38586 case '6':
38587 if (strncmp (KR_keyword, "/dev/cons63", 11) == 0)
38588 {
38589 {
38590 return dev_storage + 83;
38591
38592 }
38593 }
38594 else
38595 {
38596 {
38597 return NULL;
38598
38599 }
38600 }
38601 case '5':
38602 if (strncmp (KR_keyword, "/dev/cons53", 11) == 0)
38603 {
38604 {
38605 return dev_storage + 73;
38606
38607 }
38608 }
38609 else
38610 {
38611 {
38612 return NULL;
38613
38614 }
38615 }
38616 case '4':
38617 if (strncmp (KR_keyword, "/dev/cons43", 11) == 0)
38618 {
38619 {
38620 return dev_storage + 63;
38621
38622 }
38623 }
38624 else
38625 {
38626 {
38627 return NULL;
38628
38629 }
38630 }
38631 case '3':
38632 if (strncmp (KR_keyword, "/dev/cons33", 11) == 0)
38633 {
38634 {
38635 return dev_storage + 53;
38636
38637 }
38638 }
38639 else
38640 {
38641 {
38642 return NULL;
38643
38644 }
38645 }
38646 case '2':
38647 if (strncmp (KR_keyword, "/dev/cons23", 11) == 0)
38648 {
38649 {
38650 return dev_storage + 43;
38651
38652 }
38653 }
38654 else
38655 {
38656 {
38657 return NULL;
38658
38659 }
38660 }
38661 case '1':
38662 if (strncmp (KR_keyword, "/dev/cons13", 11) == 0)
38663 {
38664 {
38665 return dev_storage + 33;
38666
38667 }
38668 }
38669 else
38670 {
38671 {
38672 return NULL;
38673
38674 }
38675 }
38676 default:
38677 {
38678 return NULL;
38679
38680 }
38681 }
38682 case 'd':
38683 switch (KR_keyword [8])
38684 {
38685 case 'x':
38686 if (strncmp (KR_keyword, "/dev/sddx13", 11) == 0)
38687 {
38688 {
38689 return dev_storage + 2363;
38690
38691 }
38692 }
38693 else
38694 {
38695 {
38696 return NULL;
38697
38698 }
38699 }
38700 case 'w':
38701 if (strncmp (KR_keyword, "/dev/sddw13", 11) == 0)
38702 {
38703 {
38704 return dev_storage + 2348;
38705
38706 }
38707 }
38708 else
38709 {
38710 {
38711 return NULL;
38712
38713 }
38714 }
38715 case 'v':
38716 if (strncmp (KR_keyword, "/dev/sddv13", 11) == 0)
38717 {
38718 {
38719 return dev_storage + 2333;
38720
38721 }
38722 }
38723 else
38724 {
38725 {
38726 return NULL;
38727
38728 }
38729 }
38730 case 'u':
38731 if (strncmp (KR_keyword, "/dev/sddu13", 11) == 0)
38732 {
38733 {
38734 return dev_storage + 2318;
38735
38736 }
38737 }
38738 else
38739 {
38740 {
38741 return NULL;
38742
38743 }
38744 }
38745 case 't':
38746 if (strncmp (KR_keyword, "/dev/sddt13", 11) == 0)
38747 {
38748 {
38749 return dev_storage + 2303;
38750
38751 }
38752 }
38753 else
38754 {
38755 {
38756 return NULL;
38757
38758 }
38759 }
38760 case 's':
38761 if (strncmp (KR_keyword, "/dev/sdds13", 11) == 0)
38762 {
38763 {
38764 return dev_storage + 2288;
38765
38766 }
38767 }
38768 else
38769 {
38770 {
38771 return NULL;
38772
38773 }
38774 }
38775 case 'r':
38776 if (strncmp (KR_keyword, "/dev/sddr13", 11) == 0)
38777 {
38778 {
38779 return dev_storage + 2273;
38780
38781 }
38782 }
38783 else
38784 {
38785 {
38786 return NULL;
38787
38788 }
38789 }
38790 case 'q':
38791 if (strncmp (KR_keyword, "/dev/sddq13", 11) == 0)
38792 {
38793 {
38794 return dev_storage + 2258;
38795
38796 }
38797 }
38798 else
38799 {
38800 {
38801 return NULL;
38802
38803 }
38804 }
38805 case 'p':
38806 if (strncmp (KR_keyword, "/dev/sddp13", 11) == 0)
38807 {
38808 {
38809 return dev_storage + 2243;
38810
38811 }
38812 }
38813 else
38814 {
38815 {
38816 return NULL;
38817
38818 }
38819 }
38820 case 'o':
38821 if (strncmp (KR_keyword, "/dev/sddo13", 11) == 0)
38822 {
38823 {
38824 return dev_storage + 2228;
38825
38826 }
38827 }
38828 else
38829 {
38830 {
38831 return NULL;
38832
38833 }
38834 }
38835 case 'n':
38836 if (strncmp (KR_keyword, "/dev/sddn13", 11) == 0)
38837 {
38838 {
38839 return dev_storage + 2213;
38840
38841 }
38842 }
38843 else
38844 {
38845 {
38846 return NULL;
38847
38848 }
38849 }
38850 case 'm':
38851 if (strncmp (KR_keyword, "/dev/sddm13", 11) == 0)
38852 {
38853 {
38854 return dev_storage + 2198;
38855
38856 }
38857 }
38858 else
38859 {
38860 {
38861 return NULL;
38862
38863 }
38864 }
38865 case 'l':
38866 if (strncmp (KR_keyword, "/dev/sddl13", 11) == 0)
38867 {
38868 {
38869 return dev_storage + 2183;
38870
38871 }
38872 }
38873 else
38874 {
38875 {
38876 return NULL;
38877
38878 }
38879 }
38880 case 'k':
38881 if (strncmp (KR_keyword, "/dev/sddk13", 11) == 0)
38882 {
38883 {
38884 return dev_storage + 2168;
38885
38886 }
38887 }
38888 else
38889 {
38890 {
38891 return NULL;
38892
38893 }
38894 }
38895 case 'j':
38896 if (strncmp (KR_keyword, "/dev/sddj13", 11) == 0)
38897 {
38898 {
38899 return dev_storage + 2153;
38900
38901 }
38902 }
38903 else
38904 {
38905 {
38906 return NULL;
38907
38908 }
38909 }
38910 case 'i':
38911 if (strncmp (KR_keyword, "/dev/sddi13", 11) == 0)
38912 {
38913 {
38914 return dev_storage + 2138;
38915
38916 }
38917 }
38918 else
38919 {
38920 {
38921 return NULL;
38922
38923 }
38924 }
38925 case 'h':
38926 if (strncmp (KR_keyword, "/dev/sddh13", 11) == 0)
38927 {
38928 {
38929 return dev_storage + 2123;
38930
38931 }
38932 }
38933 else
38934 {
38935 {
38936 return NULL;
38937
38938 }
38939 }
38940 case 'g':
38941 if (strncmp (KR_keyword, "/dev/sddg13", 11) == 0)
38942 {
38943 {
38944 return dev_storage + 2108;
38945
38946 }
38947 }
38948 else
38949 {
38950 {
38951 return NULL;
38952
38953 }
38954 }
38955 case 'f':
38956 if (strncmp (KR_keyword, "/dev/sddf13", 11) == 0)
38957 {
38958 {
38959 return dev_storage + 2093;
38960
38961 }
38962 }
38963 else
38964 {
38965 {
38966 return NULL;
38967
38968 }
38969 }
38970 case 'e':
38971 if (strncmp (KR_keyword, "/dev/sdde13", 11) == 0)
38972 {
38973 {
38974 return dev_storage + 2078;
38975
38976 }
38977 }
38978 else
38979 {
38980 {
38981 return NULL;
38982
38983 }
38984 }
38985 case 'd':
38986 if (strncmp (KR_keyword, "/dev/sddd13", 11) == 0)
38987 {
38988 {
38989 return dev_storage + 2063;
38990
38991 }
38992 }
38993 else
38994 {
38995 {
38996 return NULL;
38997
38998 }
38999 }
39000 case 'c':
39001 if (strncmp (KR_keyword, "/dev/sddc13", 11) == 0)
39002 {
39003 {
39004 return dev_storage + 2048;
39005
39006 }
39007 }
39008 else
39009 {
39010 {
39011 return NULL;
39012
39013 }
39014 }
39015 case 'b':
39016 if (strncmp (KR_keyword, "/dev/sddb13", 11) == 0)
39017 {
39018 {
39019 return dev_storage + 2033;
39020
39021 }
39022 }
39023 else
39024 {
39025 {
39026 return NULL;
39027
39028 }
39029 }
39030 case 'a':
39031 if (strncmp (KR_keyword, "/dev/sdda13", 11) == 0)
39032 {
39033 {
39034 return dev_storage + 2018;
39035
39036 }
39037 }
39038 else
39039 {
39040 {
39041 return NULL;
39042
39043 }
39044 }
39045 default:
39046 {
39047 return NULL;
39048
39049 }
39050 }
39051 case 'c':
39052 switch (KR_keyword [8])
39053 {
39054 case 'z':
39055 if (strncmp (KR_keyword, "/dev/sdcz13", 11) == 0)
39056 {
39057 {
39058 return dev_storage + 1979;
39059
39060 }
39061 }
39062 else
39063 {
39064 {
39065 return NULL;
39066
39067 }
39068 }
39069 case 'y':
39070 if (strncmp (KR_keyword, "/dev/sdcy13", 11) == 0)
39071 {
39072 {
39073 return dev_storage + 1964;
39074
39075 }
39076 }
39077 else
39078 {
39079 {
39080 return NULL;
39081
39082 }
39083 }
39084 case 'x':
39085 if (strncmp (KR_keyword, "/dev/sdcx13", 11) == 0)
39086 {
39087 {
39088 return dev_storage + 1949;
39089
39090 }
39091 }
39092 else
39093 {
39094 {
39095 return NULL;
39096
39097 }
39098 }
39099 case 'w':
39100 if (strncmp (KR_keyword, "/dev/sdcw13", 11) == 0)
39101 {
39102 {
39103 return dev_storage + 1934;
39104
39105 }
39106 }
39107 else
39108 {
39109 {
39110 return NULL;
39111
39112 }
39113 }
39114 case 'v':
39115 if (strncmp (KR_keyword, "/dev/sdcv13", 11) == 0)
39116 {
39117 {
39118 return dev_storage + 1919;
39119
39120 }
39121 }
39122 else
39123 {
39124 {
39125 return NULL;
39126
39127 }
39128 }
39129 case 'u':
39130 if (strncmp (KR_keyword, "/dev/sdcu13", 11) == 0)
39131 {
39132 {
39133 return dev_storage + 1904;
39134
39135 }
39136 }
39137 else
39138 {
39139 {
39140 return NULL;
39141
39142 }
39143 }
39144 case 't':
39145 if (strncmp (KR_keyword, "/dev/sdct13", 11) == 0)
39146 {
39147 {
39148 return dev_storage + 1889;
39149
39150 }
39151 }
39152 else
39153 {
39154 {
39155 return NULL;
39156
39157 }
39158 }
39159 case 's':
39160 if (strncmp (KR_keyword, "/dev/sdcs13", 11) == 0)
39161 {
39162 {
39163 return dev_storage + 1874;
39164
39165 }
39166 }
39167 else
39168 {
39169 {
39170 return NULL;
39171
39172 }
39173 }
39174 case 'r':
39175 if (strncmp (KR_keyword, "/dev/sdcr13", 11) == 0)
39176 {
39177 {
39178 return dev_storage + 1859;
39179
39180 }
39181 }
39182 else
39183 {
39184 {
39185 return NULL;
39186
39187 }
39188 }
39189 case 'q':
39190 if (strncmp (KR_keyword, "/dev/sdcq13", 11) == 0)
39191 {
39192 {
39193 return dev_storage + 1844;
39194
39195 }
39196 }
39197 else
39198 {
39199 {
39200 return NULL;
39201
39202 }
39203 }
39204 case 'p':
39205 if (strncmp (KR_keyword, "/dev/sdcp13", 11) == 0)
39206 {
39207 {
39208 return dev_storage + 1829;
39209
39210 }
39211 }
39212 else
39213 {
39214 {
39215 return NULL;
39216
39217 }
39218 }
39219 case 'o':
39220 if (strncmp (KR_keyword, "/dev/sdco13", 11) == 0)
39221 {
39222 {
39223 return dev_storage + 1814;
39224
39225 }
39226 }
39227 else
39228 {
39229 {
39230 return NULL;
39231
39232 }
39233 }
39234 case 'n':
39235 if (strncmp (KR_keyword, "/dev/sdcn13", 11) == 0)
39236 {
39237 {
39238 return dev_storage + 1799;
39239
39240 }
39241 }
39242 else
39243 {
39244 {
39245 return NULL;
39246
39247 }
39248 }
39249 case 'm':
39250 if (strncmp (KR_keyword, "/dev/sdcm13", 11) == 0)
39251 {
39252 {
39253 return dev_storage + 1784;
39254
39255 }
39256 }
39257 else
39258 {
39259 {
39260 return NULL;
39261
39262 }
39263 }
39264 case 'l':
39265 if (strncmp (KR_keyword, "/dev/sdcl13", 11) == 0)
39266 {
39267 {
39268 return dev_storage + 1769;
39269
39270 }
39271 }
39272 else
39273 {
39274 {
39275 return NULL;
39276
39277 }
39278 }
39279 case 'k':
39280 if (strncmp (KR_keyword, "/dev/sdck13", 11) == 0)
39281 {
39282 {
39283 return dev_storage + 1754;
39284
39285 }
39286 }
39287 else
39288 {
39289 {
39290 return NULL;
39291
39292 }
39293 }
39294 case 'j':
39295 if (strncmp (KR_keyword, "/dev/sdcj13", 11) == 0)
39296 {
39297 {
39298 return dev_storage + 1739;
39299
39300 }
39301 }
39302 else
39303 {
39304 {
39305 return NULL;
39306
39307 }
39308 }
39309 case 'i':
39310 if (strncmp (KR_keyword, "/dev/sdci13", 11) == 0)
39311 {
39312 {
39313 return dev_storage + 1724;
39314
39315 }
39316 }
39317 else
39318 {
39319 {
39320 return NULL;
39321
39322 }
39323 }
39324 case 'h':
39325 if (strncmp (KR_keyword, "/dev/sdch13", 11) == 0)
39326 {
39327 {
39328 return dev_storage + 1709;
39329
39330 }
39331 }
39332 else
39333 {
39334 {
39335 return NULL;
39336
39337 }
39338 }
39339 case 'g':
39340 if (strncmp (KR_keyword, "/dev/sdcg13", 11) == 0)
39341 {
39342 {
39343 return dev_storage + 1694;
39344
39345 }
39346 }
39347 else
39348 {
39349 {
39350 return NULL;
39351
39352 }
39353 }
39354 case 'f':
39355 if (strncmp (KR_keyword, "/dev/sdcf13", 11) == 0)
39356 {
39357 {
39358 return dev_storage + 1679;
39359
39360 }
39361 }
39362 else
39363 {
39364 {
39365 return NULL;
39366
39367 }
39368 }
39369 case 'e':
39370 if (strncmp (KR_keyword, "/dev/sdce13", 11) == 0)
39371 {
39372 {
39373 return dev_storage + 1664;
39374
39375 }
39376 }
39377 else
39378 {
39379 {
39380 return NULL;
39381
39382 }
39383 }
39384 case 'd':
39385 if (strncmp (KR_keyword, "/dev/sdcd13", 11) == 0)
39386 {
39387 {
39388 return dev_storage + 1649;
39389
39390 }
39391 }
39392 else
39393 {
39394 {
39395 return NULL;
39396
39397 }
39398 }
39399 case 'c':
39400 if (strncmp (KR_keyword, "/dev/sdcc13", 11) == 0)
39401 {
39402 {
39403 return dev_storage + 1634;
39404
39405 }
39406 }
39407 else
39408 {
39409 {
39410 return NULL;
39411
39412 }
39413 }
39414 case 'b':
39415 if (strncmp (KR_keyword, "/dev/sdcb13", 11) == 0)
39416 {
39417 {
39418 return dev_storage + 1619;
39419
39420 }
39421 }
39422 else
39423 {
39424 {
39425 return NULL;
39426
39427 }
39428 }
39429 case 'a':
39430 if (strncmp (KR_keyword, "/dev/sdca13", 11) == 0)
39431 {
39432 {
39433 return dev_storage + 1604;
39434
39435 }
39436 }
39437 else
39438 {
39439 {
39440 return NULL;
39441
39442 }
39443 }
39444 default:
39445 {
39446 return NULL;
39447
39448 }
39449 }
39450 case 'b':
39451 switch (KR_keyword [8])
39452 {
39453 case 'z':
39454 if (strncmp (KR_keyword, "/dev/sdbz13", 11) == 0)
39455 {
39456 {
39457 return dev_storage + 1563;
39458
39459 }
39460 }
39461 else
39462 {
39463 {
39464 return NULL;
39465
39466 }
39467 }
39468 case 'y':
39469 if (strncmp (KR_keyword, "/dev/sdby13", 11) == 0)
39470 {
39471 {
39472 return dev_storage + 1548;
39473
39474 }
39475 }
39476 else
39477 {
39478 {
39479 return NULL;
39480
39481 }
39482 }
39483 case 'x':
39484 if (strncmp (KR_keyword, "/dev/sdbx13", 11) == 0)
39485 {
39486 {
39487 return dev_storage + 1533;
39488
39489 }
39490 }
39491 else
39492 {
39493 {
39494 return NULL;
39495
39496 }
39497 }
39498 case 'w':
39499 if (strncmp (KR_keyword, "/dev/sdbw13", 11) == 0)
39500 {
39501 {
39502 return dev_storage + 1518;
39503
39504 }
39505 }
39506 else
39507 {
39508 {
39509 return NULL;
39510
39511 }
39512 }
39513 case 'v':
39514 if (strncmp (KR_keyword, "/dev/sdbv13", 11) == 0)
39515 {
39516 {
39517 return dev_storage + 1503;
39518
39519 }
39520 }
39521 else
39522 {
39523 {
39524 return NULL;
39525
39526 }
39527 }
39528 case 'u':
39529 if (strncmp (KR_keyword, "/dev/sdbu13", 11) == 0)
39530 {
39531 {
39532 return dev_storage + 1488;
39533
39534 }
39535 }
39536 else
39537 {
39538 {
39539 return NULL;
39540
39541 }
39542 }
39543 case 't':
39544 if (strncmp (KR_keyword, "/dev/sdbt13", 11) == 0)
39545 {
39546 {
39547 return dev_storage + 1473;
39548
39549 }
39550 }
39551 else
39552 {
39553 {
39554 return NULL;
39555
39556 }
39557 }
39558 case 's':
39559 if (strncmp (KR_keyword, "/dev/sdbs13", 11) == 0)
39560 {
39561 {
39562 return dev_storage + 1458;
39563
39564 }
39565 }
39566 else
39567 {
39568 {
39569 return NULL;
39570
39571 }
39572 }
39573 case 'r':
39574 if (strncmp (KR_keyword, "/dev/sdbr13", 11) == 0)
39575 {
39576 {
39577 return dev_storage + 1443;
39578
39579 }
39580 }
39581 else
39582 {
39583 {
39584 return NULL;
39585
39586 }
39587 }
39588 case 'q':
39589 if (strncmp (KR_keyword, "/dev/sdbq13", 11) == 0)
39590 {
39591 {
39592 return dev_storage + 1428;
39593
39594 }
39595 }
39596 else
39597 {
39598 {
39599 return NULL;
39600
39601 }
39602 }
39603 case 'p':
39604 if (strncmp (KR_keyword, "/dev/sdbp13", 11) == 0)
39605 {
39606 {
39607 return dev_storage + 1413;
39608
39609 }
39610 }
39611 else
39612 {
39613 {
39614 return NULL;
39615
39616 }
39617 }
39618 case 'o':
39619 if (strncmp (KR_keyword, "/dev/sdbo13", 11) == 0)
39620 {
39621 {
39622 return dev_storage + 1398;
39623
39624 }
39625 }
39626 else
39627 {
39628 {
39629 return NULL;
39630
39631 }
39632 }
39633 case 'n':
39634 if (strncmp (KR_keyword, "/dev/sdbn13", 11) == 0)
39635 {
39636 {
39637 return dev_storage + 1383;
39638
39639 }
39640 }
39641 else
39642 {
39643 {
39644 return NULL;
39645
39646 }
39647 }
39648 case 'm':
39649 if (strncmp (KR_keyword, "/dev/sdbm13", 11) == 0)
39650 {
39651 {
39652 return dev_storage + 1368;
39653
39654 }
39655 }
39656 else
39657 {
39658 {
39659 return NULL;
39660
39661 }
39662 }
39663 case 'l':
39664 if (strncmp (KR_keyword, "/dev/sdbl13", 11) == 0)
39665 {
39666 {
39667 return dev_storage + 1353;
39668
39669 }
39670 }
39671 else
39672 {
39673 {
39674 return NULL;
39675
39676 }
39677 }
39678 case 'k':
39679 if (strncmp (KR_keyword, "/dev/sdbk13", 11) == 0)
39680 {
39681 {
39682 return dev_storage + 1338;
39683
39684 }
39685 }
39686 else
39687 {
39688 {
39689 return NULL;
39690
39691 }
39692 }
39693 case 'j':
39694 if (strncmp (KR_keyword, "/dev/sdbj13", 11) == 0)
39695 {
39696 {
39697 return dev_storage + 1323;
39698
39699 }
39700 }
39701 else
39702 {
39703 {
39704 return NULL;
39705
39706 }
39707 }
39708 case 'i':
39709 if (strncmp (KR_keyword, "/dev/sdbi13", 11) == 0)
39710 {
39711 {
39712 return dev_storage + 1308;
39713
39714 }
39715 }
39716 else
39717 {
39718 {
39719 return NULL;
39720
39721 }
39722 }
39723 case 'h':
39724 if (strncmp (KR_keyword, "/dev/sdbh13", 11) == 0)
39725 {
39726 {
39727 return dev_storage + 1293;
39728
39729 }
39730 }
39731 else
39732 {
39733 {
39734 return NULL;
39735
39736 }
39737 }
39738 case 'g':
39739 if (strncmp (KR_keyword, "/dev/sdbg13", 11) == 0)
39740 {
39741 {
39742 return dev_storage + 1278;
39743
39744 }
39745 }
39746 else
39747 {
39748 {
39749 return NULL;
39750
39751 }
39752 }
39753 case 'f':
39754 if (strncmp (KR_keyword, "/dev/sdbf13", 11) == 0)
39755 {
39756 {
39757 return dev_storage + 1263;
39758
39759 }
39760 }
39761 else
39762 {
39763 {
39764 return NULL;
39765
39766 }
39767 }
39768 case 'e':
39769 if (strncmp (KR_keyword, "/dev/sdbe13", 11) == 0)
39770 {
39771 {
39772 return dev_storage + 1248;
39773
39774 }
39775 }
39776 else
39777 {
39778 {
39779 return NULL;
39780
39781 }
39782 }
39783 case 'd':
39784 if (strncmp (KR_keyword, "/dev/sdbd13", 11) == 0)
39785 {
39786 {
39787 return dev_storage + 1233;
39788
39789 }
39790 }
39791 else
39792 {
39793 {
39794 return NULL;
39795
39796 }
39797 }
39798 case 'c':
39799 if (strncmp (KR_keyword, "/dev/sdbc13", 11) == 0)
39800 {
39801 {
39802 return dev_storage + 1218;
39803
39804 }
39805 }
39806 else
39807 {
39808 {
39809 return NULL;
39810
39811 }
39812 }
39813 case 'b':
39814 if (strncmp (KR_keyword, "/dev/sdbb13", 11) == 0)
39815 {
39816 {
39817 return dev_storage + 1203;
39818
39819 }
39820 }
39821 else
39822 {
39823 {
39824 return NULL;
39825
39826 }
39827 }
39828 case 'a':
39829 if (strncmp (KR_keyword, "/dev/sdba13", 11) == 0)
39830 {
39831 {
39832 return dev_storage + 1188;
39833
39834 }
39835 }
39836 else
39837 {
39838 {
39839 return NULL;
39840
39841 }
39842 }
39843 default:
39844 {
39845 return NULL;
39846
39847 }
39848 }
39849 case 'a':
39850 switch (KR_keyword [8])
39851 {
39852 case 'z':
39853 if (strncmp (KR_keyword, "/dev/sdaz13", 11) == 0)
39854 {
39855 {
39856 return dev_storage + 1147;
39857
39858 }
39859 }
39860 else
39861 {
39862 {
39863 return NULL;
39864
39865 }
39866 }
39867 case 'y':
39868 if (strncmp (KR_keyword, "/dev/sday13", 11) == 0)
39869 {
39870 {
39871 return dev_storage + 1132;
39872
39873 }
39874 }
39875 else
39876 {
39877 {
39878 return NULL;
39879
39880 }
39881 }
39882 case 'x':
39883 if (strncmp (KR_keyword, "/dev/sdax13", 11) == 0)
39884 {
39885 {
39886 return dev_storage + 1117;
39887
39888 }
39889 }
39890 else
39891 {
39892 {
39893 return NULL;
39894
39895 }
39896 }
39897 case 'w':
39898 if (strncmp (KR_keyword, "/dev/sdaw13", 11) == 0)
39899 {
39900 {
39901 return dev_storage + 1102;
39902
39903 }
39904 }
39905 else
39906 {
39907 {
39908 return NULL;
39909
39910 }
39911 }
39912 case 'v':
39913 if (strncmp (KR_keyword, "/dev/sdav13", 11) == 0)
39914 {
39915 {
39916 return dev_storage + 1087;
39917
39918 }
39919 }
39920 else
39921 {
39922 {
39923 return NULL;
39924
39925 }
39926 }
39927 case 'u':
39928 if (strncmp (KR_keyword, "/dev/sdau13", 11) == 0)
39929 {
39930 {
39931 return dev_storage + 1072;
39932
39933 }
39934 }
39935 else
39936 {
39937 {
39938 return NULL;
39939
39940 }
39941 }
39942 case 't':
39943 if (strncmp (KR_keyword, "/dev/sdat13", 11) == 0)
39944 {
39945 {
39946 return dev_storage + 1057;
39947
39948 }
39949 }
39950 else
39951 {
39952 {
39953 return NULL;
39954
39955 }
39956 }
39957 case 's':
39958 if (strncmp (KR_keyword, "/dev/sdas13", 11) == 0)
39959 {
39960 {
39961 return dev_storage + 1042;
39962
39963 }
39964 }
39965 else
39966 {
39967 {
39968 return NULL;
39969
39970 }
39971 }
39972 case 'r':
39973 if (strncmp (KR_keyword, "/dev/sdar13", 11) == 0)
39974 {
39975 {
39976 return dev_storage + 1027;
39977
39978 }
39979 }
39980 else
39981 {
39982 {
39983 return NULL;
39984
39985 }
39986 }
39987 case 'q':
39988 if (strncmp (KR_keyword, "/dev/sdaq13", 11) == 0)
39989 {
39990 {
39991 return dev_storage + 1012;
39992
39993 }
39994 }
39995 else
39996 {
39997 {
39998 return NULL;
39999
40000 }
40001 }
40002 case 'p':
40003 if (strncmp (KR_keyword, "/dev/sdap13", 11) == 0)
40004 {
40005 {
40006 return dev_storage + 997;
40007
40008 }
40009 }
40010 else
40011 {
40012 {
40013 return NULL;
40014
40015 }
40016 }
40017 case 'o':
40018 if (strncmp (KR_keyword, "/dev/sdao13", 11) == 0)
40019 {
40020 {
40021 return dev_storage + 982;
40022
40023 }
40024 }
40025 else
40026 {
40027 {
40028 return NULL;
40029
40030 }
40031 }
40032 case 'n':
40033 if (strncmp (KR_keyword, "/dev/sdan13", 11) == 0)
40034 {
40035 {
40036 return dev_storage + 967;
40037
40038 }
40039 }
40040 else
40041 {
40042 {
40043 return NULL;
40044
40045 }
40046 }
40047 case 'm':
40048 if (strncmp (KR_keyword, "/dev/sdam13", 11) == 0)
40049 {
40050 {
40051 return dev_storage + 952;
40052
40053 }
40054 }
40055 else
40056 {
40057 {
40058 return NULL;
40059
40060 }
40061 }
40062 case 'l':
40063 if (strncmp (KR_keyword, "/dev/sdal13", 11) == 0)
40064 {
40065 {
40066 return dev_storage + 937;
40067
40068 }
40069 }
40070 else
40071 {
40072 {
40073 return NULL;
40074
40075 }
40076 }
40077 case 'k':
40078 if (strncmp (KR_keyword, "/dev/sdak13", 11) == 0)
40079 {
40080 {
40081 return dev_storage + 922;
40082
40083 }
40084 }
40085 else
40086 {
40087 {
40088 return NULL;
40089
40090 }
40091 }
40092 case 'j':
40093 if (strncmp (KR_keyword, "/dev/sdaj13", 11) == 0)
40094 {
40095 {
40096 return dev_storage + 907;
40097
40098 }
40099 }
40100 else
40101 {
40102 {
40103 return NULL;
40104
40105 }
40106 }
40107 case 'i':
40108 if (strncmp (KR_keyword, "/dev/sdai13", 11) == 0)
40109 {
40110 {
40111 return dev_storage + 892;
40112
40113 }
40114 }
40115 else
40116 {
40117 {
40118 return NULL;
40119
40120 }
40121 }
40122 case 'h':
40123 if (strncmp (KR_keyword, "/dev/sdah13", 11) == 0)
40124 {
40125 {
40126 return dev_storage + 877;
40127
40128 }
40129 }
40130 else
40131 {
40132 {
40133 return NULL;
40134
40135 }
40136 }
40137 case 'g':
40138 if (strncmp (KR_keyword, "/dev/sdag13", 11) == 0)
40139 {
40140 {
40141 return dev_storage + 862;
40142
40143 }
40144 }
40145 else
40146 {
40147 {
40148 return NULL;
40149
40150 }
40151 }
40152 case 'f':
40153 if (strncmp (KR_keyword, "/dev/sdaf13", 11) == 0)
40154 {
40155 {
40156 return dev_storage + 847;
40157
40158 }
40159 }
40160 else
40161 {
40162 {
40163 return NULL;
40164
40165 }
40166 }
40167 case 'e':
40168 if (strncmp (KR_keyword, "/dev/sdae13", 11) == 0)
40169 {
40170 {
40171 return dev_storage + 832;
40172
40173 }
40174 }
40175 else
40176 {
40177 {
40178 return NULL;
40179
40180 }
40181 }
40182 case 'd':
40183 if (strncmp (KR_keyword, "/dev/sdad13", 11) == 0)
40184 {
40185 {
40186 return dev_storage + 817;
40187
40188 }
40189 }
40190 else
40191 {
40192 {
40193 return NULL;
40194
40195 }
40196 }
40197 case 'c':
40198 if (strncmp (KR_keyword, "/dev/sdac13", 11) == 0)
40199 {
40200 {
40201 return dev_storage + 802;
40202
40203 }
40204 }
40205 else
40206 {
40207 {
40208 return NULL;
40209
40210 }
40211 }
40212 case 'b':
40213 if (strncmp (KR_keyword, "/dev/sdab13", 11) == 0)
40214 {
40215 {
40216 return dev_storage + 787;
40217
40218 }
40219 }
40220 else
40221 {
40222 {
40223 return NULL;
40224
40225 }
40226 }
40227 case 'a':
40228 if (strncmp (KR_keyword, "/dev/sdaa13", 11) == 0)
40229 {
40230 {
40231 return dev_storage + 772;
40232
40233 }
40234 }
40235 else
40236 {
40237 {
40238 return NULL;
40239
40240 }
40241 }
40242 default:
40243 {
40244 return NULL;
40245
40246 }
40247 }
40248 default:
40249 {
40250 return NULL;
40251
40252 }
40253 }
40254 case '2':
40255 switch (KR_keyword [7])
40256 {
40257 case 'y':
40258 switch (KR_keyword [9])
40259 {
40260 case '6':
40261 if (strncmp (KR_keyword, "/dev/ttyS62", 11) == 0)
40262 {
40263 {
40264 return dev_storage + 2573;
40265
40266 }
40267 }
40268 else
40269 {
40270 {
40271 return NULL;
40272
40273 }
40274 }
40275 case '5':
40276 if (strncmp (KR_keyword, "/dev/ttyS52", 11) == 0)
40277 {
40278 {
40279 return dev_storage + 2563;
40280
40281 }
40282 }
40283 else
40284 {
40285 {
40286 return NULL;
40287
40288 }
40289 }
40290 case '4':
40291 if (strncmp (KR_keyword, "/dev/ttyS42", 11) == 0)
40292 {
40293 {
40294 return dev_storage + 2553;
40295
40296 }
40297 }
40298 else
40299 {
40300 {
40301 return NULL;
40302
40303 }
40304 }
40305 case '3':
40306 if (strncmp (KR_keyword, "/dev/ttyS32", 11) == 0)
40307 {
40308 {
40309 return dev_storage + 2543;
40310
40311 }
40312 }
40313 else
40314 {
40315 {
40316 return NULL;
40317
40318 }
40319 }
40320 case '2':
40321 if (strncmp (KR_keyword, "/dev/ttyS22", 11) == 0)
40322 {
40323 {
40324 return dev_storage + 2533;
40325
40326 }
40327 }
40328 else
40329 {
40330 {
40331 return NULL;
40332
40333 }
40334 }
40335 case '1':
40336 if (strncmp (KR_keyword, "/dev/ttyS12", 11) == 0)
40337 {
40338 {
40339 return dev_storage + 2523;
40340
40341 }
40342 }
40343 else
40344 {
40345 {
40346 return NULL;
40347
40348 }
40349 }
40350 default:
40351 {
40352 return NULL;
40353
40354 }
40355 }
40356 case 't':
40357 switch (KR_keyword [9])
40358 {
40359 case '2':
40360 if (strncmp (KR_keyword, "/dev/nst122", 11) == 0)
40361 {
40362 {
40363 return dev_storage + 228;
40364
40365 }
40366 }
40367 else
40368 {
40369 {
40370 return NULL;
40371
40372 }
40373 }
40374 case '1':
40375 if (strncmp (KR_keyword, "/dev/nst112", 11) == 0)
40376 {
40377 {
40378 return dev_storage + 218;
40379
40380 }
40381 }
40382 else
40383 {
40384 {
40385 return NULL;
40386
40387 }
40388 }
40389 case '0':
40390 if (strncmp (KR_keyword, "/dev/nst102", 11) == 0)
40391 {
40392 {
40393 return dev_storage + 208;
40394
40395 }
40396 }
40397 else
40398 {
40399 {
40400 return NULL;
40401
40402 }
40403 }
40404 default:
40405 {
40406 return NULL;
40407
40408 }
40409 }
40410 case 'n':
40411 switch (KR_keyword [9])
40412 {
40413 case '6':
40414 if (strncmp (KR_keyword, "/dev/cons62", 11) == 0)
40415 {
40416 {
40417 return dev_storage + 82;
40418
40419 }
40420 }
40421 else
40422 {
40423 {
40424 return NULL;
40425
40426 }
40427 }
40428 case '5':
40429 if (strncmp (KR_keyword, "/dev/cons52", 11) == 0)
40430 {
40431 {
40432 return dev_storage + 72;
40433
40434 }
40435 }
40436 else
40437 {
40438 {
40439 return NULL;
40440
40441 }
40442 }
40443 case '4':
40444 if (strncmp (KR_keyword, "/dev/cons42", 11) == 0)
40445 {
40446 {
40447 return dev_storage + 62;
40448
40449 }
40450 }
40451 else
40452 {
40453 {
40454 return NULL;
40455
40456 }
40457 }
40458 case '3':
40459 if (strncmp (KR_keyword, "/dev/cons32", 11) == 0)
40460 {
40461 {
40462 return dev_storage + 52;
40463
40464 }
40465 }
40466 else
40467 {
40468 {
40469 return NULL;
40470
40471 }
40472 }
40473 case '2':
40474 if (strncmp (KR_keyword, "/dev/cons22", 11) == 0)
40475 {
40476 {
40477 return dev_storage + 42;
40478
40479 }
40480 }
40481 else
40482 {
40483 {
40484 return NULL;
40485
40486 }
40487 }
40488 case '1':
40489 if (strncmp (KR_keyword, "/dev/cons12", 11) == 0)
40490 {
40491 {
40492 return dev_storage + 32;
40493
40494 }
40495 }
40496 else
40497 {
40498 {
40499 return NULL;
40500
40501 }
40502 }
40503 default:
40504 {
40505 return NULL;
40506
40507 }
40508 }
40509 case 'd':
40510 switch (KR_keyword [8])
40511 {
40512 case 'x':
40513 if (strncmp (KR_keyword, "/dev/sddx12", 11) == 0)
40514 {
40515 {
40516 return dev_storage + 2362;
40517
40518 }
40519 }
40520 else
40521 {
40522 {
40523 return NULL;
40524
40525 }
40526 }
40527 case 'w':
40528 if (strncmp (KR_keyword, "/dev/sddw12", 11) == 0)
40529 {
40530 {
40531 return dev_storage + 2347;
40532
40533 }
40534 }
40535 else
40536 {
40537 {
40538 return NULL;
40539
40540 }
40541 }
40542 case 'v':
40543 if (strncmp (KR_keyword, "/dev/sddv12", 11) == 0)
40544 {
40545 {
40546 return dev_storage + 2332;
40547
40548 }
40549 }
40550 else
40551 {
40552 {
40553 return NULL;
40554
40555 }
40556 }
40557 case 'u':
40558 if (strncmp (KR_keyword, "/dev/sddu12", 11) == 0)
40559 {
40560 {
40561 return dev_storage + 2317;
40562
40563 }
40564 }
40565 else
40566 {
40567 {
40568 return NULL;
40569
40570 }
40571 }
40572 case 't':
40573 if (strncmp (KR_keyword, "/dev/sddt12", 11) == 0)
40574 {
40575 {
40576 return dev_storage + 2302;
40577
40578 }
40579 }
40580 else
40581 {
40582 {
40583 return NULL;
40584
40585 }
40586 }
40587 case 's':
40588 if (strncmp (KR_keyword, "/dev/sdds12", 11) == 0)
40589 {
40590 {
40591 return dev_storage + 2287;
40592
40593 }
40594 }
40595 else
40596 {
40597 {
40598 return NULL;
40599
40600 }
40601 }
40602 case 'r':
40603 if (strncmp (KR_keyword, "/dev/sddr12", 11) == 0)
40604 {
40605 {
40606 return dev_storage + 2272;
40607
40608 }
40609 }
40610 else
40611 {
40612 {
40613 return NULL;
40614
40615 }
40616 }
40617 case 'q':
40618 if (strncmp (KR_keyword, "/dev/sddq12", 11) == 0)
40619 {
40620 {
40621 return dev_storage + 2257;
40622
40623 }
40624 }
40625 else
40626 {
40627 {
40628 return NULL;
40629
40630 }
40631 }
40632 case 'p':
40633 if (strncmp (KR_keyword, "/dev/sddp12", 11) == 0)
40634 {
40635 {
40636 return dev_storage + 2242;
40637
40638 }
40639 }
40640 else
40641 {
40642 {
40643 return NULL;
40644
40645 }
40646 }
40647 case 'o':
40648 if (strncmp (KR_keyword, "/dev/sddo12", 11) == 0)
40649 {
40650 {
40651 return dev_storage + 2227;
40652
40653 }
40654 }
40655 else
40656 {
40657 {
40658 return NULL;
40659
40660 }
40661 }
40662 case 'n':
40663 if (strncmp (KR_keyword, "/dev/sddn12", 11) == 0)
40664 {
40665 {
40666 return dev_storage + 2212;
40667
40668 }
40669 }
40670 else
40671 {
40672 {
40673 return NULL;
40674
40675 }
40676 }
40677 case 'm':
40678 if (strncmp (KR_keyword, "/dev/sddm12", 11) == 0)
40679 {
40680 {
40681 return dev_storage + 2197;
40682
40683 }
40684 }
40685 else
40686 {
40687 {
40688 return NULL;
40689
40690 }
40691 }
40692 case 'l':
40693 if (strncmp (KR_keyword, "/dev/sddl12", 11) == 0)
40694 {
40695 {
40696 return dev_storage + 2182;
40697
40698 }
40699 }
40700 else
40701 {
40702 {
40703 return NULL;
40704
40705 }
40706 }
40707 case 'k':
40708 if (strncmp (KR_keyword, "/dev/sddk12", 11) == 0)
40709 {
40710 {
40711 return dev_storage + 2167;
40712
40713 }
40714 }
40715 else
40716 {
40717 {
40718 return NULL;
40719
40720 }
40721 }
40722 case 'j':
40723 if (strncmp (KR_keyword, "/dev/sddj12", 11) == 0)
40724 {
40725 {
40726 return dev_storage + 2152;
40727
40728 }
40729 }
40730 else
40731 {
40732 {
40733 return NULL;
40734
40735 }
40736 }
40737 case 'i':
40738 if (strncmp (KR_keyword, "/dev/sddi12", 11) == 0)
40739 {
40740 {
40741 return dev_storage + 2137;
40742
40743 }
40744 }
40745 else
40746 {
40747 {
40748 return NULL;
40749
40750 }
40751 }
40752 case 'h':
40753 if (strncmp (KR_keyword, "/dev/sddh12", 11) == 0)
40754 {
40755 {
40756 return dev_storage + 2122;
40757
40758 }
40759 }
40760 else
40761 {
40762 {
40763 return NULL;
40764
40765 }
40766 }
40767 case 'g':
40768 if (strncmp (KR_keyword, "/dev/sddg12", 11) == 0)
40769 {
40770 {
40771 return dev_storage + 2107;
40772
40773 }
40774 }
40775 else
40776 {
40777 {
40778 return NULL;
40779
40780 }
40781 }
40782 case 'f':
40783 if (strncmp (KR_keyword, "/dev/sddf12", 11) == 0)
40784 {
40785 {
40786 return dev_storage + 2092;
40787
40788 }
40789 }
40790 else
40791 {
40792 {
40793 return NULL;
40794
40795 }
40796 }
40797 case 'e':
40798 if (strncmp (KR_keyword, "/dev/sdde12", 11) == 0)
40799 {
40800 {
40801 return dev_storage + 2077;
40802
40803 }
40804 }
40805 else
40806 {
40807 {
40808 return NULL;
40809
40810 }
40811 }
40812 case 'd':
40813 if (strncmp (KR_keyword, "/dev/sddd12", 11) == 0)
40814 {
40815 {
40816 return dev_storage + 2062;
40817
40818 }
40819 }
40820 else
40821 {
40822 {
40823 return NULL;
40824
40825 }
40826 }
40827 case 'c':
40828 if (strncmp (KR_keyword, "/dev/sddc12", 11) == 0)
40829 {
40830 {
40831 return dev_storage + 2047;
40832
40833 }
40834 }
40835 else
40836 {
40837 {
40838 return NULL;
40839
40840 }
40841 }
40842 case 'b':
40843 if (strncmp (KR_keyword, "/dev/sddb12", 11) == 0)
40844 {
40845 {
40846 return dev_storage + 2032;
40847
40848 }
40849 }
40850 else
40851 {
40852 {
40853 return NULL;
40854
40855 }
40856 }
40857 case 'a':
40858 if (strncmp (KR_keyword, "/dev/sdda12", 11) == 0)
40859 {
40860 {
40861 return dev_storage + 2017;
40862
40863 }
40864 }
40865 else
40866 {
40867 {
40868 return NULL;
40869
40870 }
40871 }
40872 default:
40873 {
40874 return NULL;
40875
40876 }
40877 }
40878 case 'c':
40879 switch (KR_keyword [8])
40880 {
40881 case 'z':
40882 if (strncmp (KR_keyword, "/dev/sdcz12", 11) == 0)
40883 {
40884 {
40885 return dev_storage + 1978;
40886
40887 }
40888 }
40889 else
40890 {
40891 {
40892 return NULL;
40893
40894 }
40895 }
40896 case 'y':
40897 if (strncmp (KR_keyword, "/dev/sdcy12", 11) == 0)
40898 {
40899 {
40900 return dev_storage + 1963;
40901
40902 }
40903 }
40904 else
40905 {
40906 {
40907 return NULL;
40908
40909 }
40910 }
40911 case 'x':
40912 if (strncmp (KR_keyword, "/dev/sdcx12", 11) == 0)
40913 {
40914 {
40915 return dev_storage + 1948;
40916
40917 }
40918 }
40919 else
40920 {
40921 {
40922 return NULL;
40923
40924 }
40925 }
40926 case 'w':
40927 if (strncmp (KR_keyword, "/dev/sdcw12", 11) == 0)
40928 {
40929 {
40930 return dev_storage + 1933;
40931
40932 }
40933 }
40934 else
40935 {
40936 {
40937 return NULL;
40938
40939 }
40940 }
40941 case 'v':
40942 if (strncmp (KR_keyword, "/dev/sdcv12", 11) == 0)
40943 {
40944 {
40945 return dev_storage + 1918;
40946
40947 }
40948 }
40949 else
40950 {
40951 {
40952 return NULL;
40953
40954 }
40955 }
40956 case 'u':
40957 if (strncmp (KR_keyword, "/dev/sdcu12", 11) == 0)
40958 {
40959 {
40960 return dev_storage + 1903;
40961
40962 }
40963 }
40964 else
40965 {
40966 {
40967 return NULL;
40968
40969 }
40970 }
40971 case 't':
40972 if (strncmp (KR_keyword, "/dev/sdct12", 11) == 0)
40973 {
40974 {
40975 return dev_storage + 1888;
40976
40977 }
40978 }
40979 else
40980 {
40981 {
40982 return NULL;
40983
40984 }
40985 }
40986 case 's':
40987 if (strncmp (KR_keyword, "/dev/sdcs12", 11) == 0)
40988 {
40989 {
40990 return dev_storage + 1873;
40991
40992 }
40993 }
40994 else
40995 {
40996 {
40997 return NULL;
40998
40999 }
41000 }
41001 case 'r':
41002 if (strncmp (KR_keyword, "/dev/sdcr12", 11) == 0)
41003 {
41004 {
41005 return dev_storage + 1858;
41006
41007 }
41008 }
41009 else
41010 {
41011 {
41012 return NULL;
41013
41014 }
41015 }
41016 case 'q':
41017 if (strncmp (KR_keyword, "/dev/sdcq12", 11) == 0)
41018 {
41019 {
41020 return dev_storage + 1843;
41021
41022 }
41023 }
41024 else
41025 {
41026 {
41027 return NULL;
41028
41029 }
41030 }
41031 case 'p':
41032 if (strncmp (KR_keyword, "/dev/sdcp12", 11) == 0)
41033 {
41034 {
41035 return dev_storage + 1828;
41036
41037 }
41038 }
41039 else
41040 {
41041 {
41042 return NULL;
41043
41044 }
41045 }
41046 case 'o':
41047 if (strncmp (KR_keyword, "/dev/sdco12", 11) == 0)
41048 {
41049 {
41050 return dev_storage + 1813;
41051
41052 }
41053 }
41054 else
41055 {
41056 {
41057 return NULL;
41058
41059 }
41060 }
41061 case 'n':
41062 if (strncmp (KR_keyword, "/dev/sdcn12", 11) == 0)
41063 {
41064 {
41065 return dev_storage + 1798;
41066
41067 }
41068 }
41069 else
41070 {
41071 {
41072 return NULL;
41073
41074 }
41075 }
41076 case 'm':
41077 if (strncmp (KR_keyword, "/dev/sdcm12", 11) == 0)
41078 {
41079 {
41080 return dev_storage + 1783;
41081
41082 }
41083 }
41084 else
41085 {
41086 {
41087 return NULL;
41088
41089 }
41090 }
41091 case 'l':
41092 if (strncmp (KR_keyword, "/dev/sdcl12", 11) == 0)
41093 {
41094 {
41095 return dev_storage + 1768;
41096
41097 }
41098 }
41099 else
41100 {
41101 {
41102 return NULL;
41103
41104 }
41105 }
41106 case 'k':
41107 if (strncmp (KR_keyword, "/dev/sdck12", 11) == 0)
41108 {
41109 {
41110 return dev_storage + 1753;
41111
41112 }
41113 }
41114 else
41115 {
41116 {
41117 return NULL;
41118
41119 }
41120 }
41121 case 'j':
41122 if (strncmp (KR_keyword, "/dev/sdcj12", 11) == 0)
41123 {
41124 {
41125 return dev_storage + 1738;
41126
41127 }
41128 }
41129 else
41130 {
41131 {
41132 return NULL;
41133
41134 }
41135 }
41136 case 'i':
41137 if (strncmp (KR_keyword, "/dev/sdci12", 11) == 0)
41138 {
41139 {
41140 return dev_storage + 1723;
41141
41142 }
41143 }
41144 else
41145 {
41146 {
41147 return NULL;
41148
41149 }
41150 }
41151 case 'h':
41152 if (strncmp (KR_keyword, "/dev/sdch12", 11) == 0)
41153 {
41154 {
41155 return dev_storage + 1708;
41156
41157 }
41158 }
41159 else
41160 {
41161 {
41162 return NULL;
41163
41164 }
41165 }
41166 case 'g':
41167 if (strncmp (KR_keyword, "/dev/sdcg12", 11) == 0)
41168 {
41169 {
41170 return dev_storage + 1693;
41171
41172 }
41173 }
41174 else
41175 {
41176 {
41177 return NULL;
41178
41179 }
41180 }
41181 case 'f':
41182 if (strncmp (KR_keyword, "/dev/sdcf12", 11) == 0)
41183 {
41184 {
41185 return dev_storage + 1678;
41186
41187 }
41188 }
41189 else
41190 {
41191 {
41192 return NULL;
41193
41194 }
41195 }
41196 case 'e':
41197 if (strncmp (KR_keyword, "/dev/sdce12", 11) == 0)
41198 {
41199 {
41200 return dev_storage + 1663;
41201
41202 }
41203 }
41204 else
41205 {
41206 {
41207 return NULL;
41208
41209 }
41210 }
41211 case 'd':
41212 if (strncmp (KR_keyword, "/dev/sdcd12", 11) == 0)
41213 {
41214 {
41215 return dev_storage + 1648;
41216
41217 }
41218 }
41219 else
41220 {
41221 {
41222 return NULL;
41223
41224 }
41225 }
41226 case 'c':
41227 if (strncmp (KR_keyword, "/dev/sdcc12", 11) == 0)
41228 {
41229 {
41230 return dev_storage + 1633;
41231
41232 }
41233 }
41234 else
41235 {
41236 {
41237 return NULL;
41238
41239 }
41240 }
41241 case 'b':
41242 if (strncmp (KR_keyword, "/dev/sdcb12", 11) == 0)
41243 {
41244 {
41245 return dev_storage + 1618;
41246
41247 }
41248 }
41249 else
41250 {
41251 {
41252 return NULL;
41253
41254 }
41255 }
41256 case 'a':
41257 if (strncmp (KR_keyword, "/dev/sdca12", 11) == 0)
41258 {
41259 {
41260 return dev_storage + 1603;
41261
41262 }
41263 }
41264 else
41265 {
41266 {
41267 return NULL;
41268
41269 }
41270 }
41271 default:
41272 {
41273 return NULL;
41274
41275 }
41276 }
41277 case 'b':
41278 switch (KR_keyword [8])
41279 {
41280 case 'z':
41281 if (strncmp (KR_keyword, "/dev/sdbz12", 11) == 0)
41282 {
41283 {
41284 return dev_storage + 1562;
41285
41286 }
41287 }
41288 else
41289 {
41290 {
41291 return NULL;
41292
41293 }
41294 }
41295 case 'y':
41296 if (strncmp (KR_keyword, "/dev/sdby12", 11) == 0)
41297 {
41298 {
41299 return dev_storage + 1547;
41300
41301 }
41302 }
41303 else
41304 {
41305 {
41306 return NULL;
41307
41308 }
41309 }
41310 case 'x':
41311 if (strncmp (KR_keyword, "/dev/sdbx12", 11) == 0)
41312 {
41313 {
41314 return dev_storage + 1532;
41315
41316 }
41317 }
41318 else
41319 {
41320 {
41321 return NULL;
41322
41323 }
41324 }
41325 case 'w':
41326 if (strncmp (KR_keyword, "/dev/sdbw12", 11) == 0)
41327 {
41328 {
41329 return dev_storage + 1517;
41330
41331 }
41332 }
41333 else
41334 {
41335 {
41336 return NULL;
41337
41338 }
41339 }
41340 case 'v':
41341 if (strncmp (KR_keyword, "/dev/sdbv12", 11) == 0)
41342 {
41343 {
41344 return dev_storage + 1502;
41345
41346 }
41347 }
41348 else
41349 {
41350 {
41351 return NULL;
41352
41353 }
41354 }
41355 case 'u':
41356 if (strncmp (KR_keyword, "/dev/sdbu12", 11) == 0)
41357 {
41358 {
41359 return dev_storage + 1487;
41360
41361 }
41362 }
41363 else
41364 {
41365 {
41366 return NULL;
41367
41368 }
41369 }
41370 case 't':
41371 if (strncmp (KR_keyword, "/dev/sdbt12", 11) == 0)
41372 {
41373 {
41374 return dev_storage + 1472;
41375
41376 }
41377 }
41378 else
41379 {
41380 {
41381 return NULL;
41382
41383 }
41384 }
41385 case 's':
41386 if (strncmp (KR_keyword, "/dev/sdbs12", 11) == 0)
41387 {
41388 {
41389 return dev_storage + 1457;
41390
41391 }
41392 }
41393 else
41394 {
41395 {
41396 return NULL;
41397
41398 }
41399 }
41400 case 'r':
41401 if (strncmp (KR_keyword, "/dev/sdbr12", 11) == 0)
41402 {
41403 {
41404 return dev_storage + 1442;
41405
41406 }
41407 }
41408 else
41409 {
41410 {
41411 return NULL;
41412
41413 }
41414 }
41415 case 'q':
41416 if (strncmp (KR_keyword, "/dev/sdbq12", 11) == 0)
41417 {
41418 {
41419 return dev_storage + 1427;
41420
41421 }
41422 }
41423 else
41424 {
41425 {
41426 return NULL;
41427
41428 }
41429 }
41430 case 'p':
41431 if (strncmp (KR_keyword, "/dev/sdbp12", 11) == 0)
41432 {
41433 {
41434 return dev_storage + 1412;
41435
41436 }
41437 }
41438 else
41439 {
41440 {
41441 return NULL;
41442
41443 }
41444 }
41445 case 'o':
41446 if (strncmp (KR_keyword, "/dev/sdbo12", 11) == 0)
41447 {
41448 {
41449 return dev_storage + 1397;
41450
41451 }
41452 }
41453 else
41454 {
41455 {
41456 return NULL;
41457
41458 }
41459 }
41460 case 'n':
41461 if (strncmp (KR_keyword, "/dev/sdbn12", 11) == 0)
41462 {
41463 {
41464 return dev_storage + 1382;
41465
41466 }
41467 }
41468 else
41469 {
41470 {
41471 return NULL;
41472
41473 }
41474 }
41475 case 'm':
41476 if (strncmp (KR_keyword, "/dev/sdbm12", 11) == 0)
41477 {
41478 {
41479 return dev_storage + 1367;
41480
41481 }
41482 }
41483 else
41484 {
41485 {
41486 return NULL;
41487
41488 }
41489 }
41490 case 'l':
41491 if (strncmp (KR_keyword, "/dev/sdbl12", 11) == 0)
41492 {
41493 {
41494 return dev_storage + 1352;
41495
41496 }
41497 }
41498 else
41499 {
41500 {
41501 return NULL;
41502
41503 }
41504 }
41505 case 'k':
41506 if (strncmp (KR_keyword, "/dev/sdbk12", 11) == 0)
41507 {
41508 {
41509 return dev_storage + 1337;
41510
41511 }
41512 }
41513 else
41514 {
41515 {
41516 return NULL;
41517
41518 }
41519 }
41520 case 'j':
41521 if (strncmp (KR_keyword, "/dev/sdbj12", 11) == 0)
41522 {
41523 {
41524 return dev_storage + 1322;
41525
41526 }
41527 }
41528 else
41529 {
41530 {
41531 return NULL;
41532
41533 }
41534 }
41535 case 'i':
41536 if (strncmp (KR_keyword, "/dev/sdbi12", 11) == 0)
41537 {
41538 {
41539 return dev_storage + 1307;
41540
41541 }
41542 }
41543 else
41544 {
41545 {
41546 return NULL;
41547
41548 }
41549 }
41550 case 'h':
41551 if (strncmp (KR_keyword, "/dev/sdbh12", 11) == 0)
41552 {
41553 {
41554 return dev_storage + 1292;
41555
41556 }
41557 }
41558 else
41559 {
41560 {
41561 return NULL;
41562
41563 }
41564 }
41565 case 'g':
41566 if (strncmp (KR_keyword, "/dev/sdbg12", 11) == 0)
41567 {
41568 {
41569 return dev_storage + 1277;
41570
41571 }
41572 }
41573 else
41574 {
41575 {
41576 return NULL;
41577
41578 }
41579 }
41580 case 'f':
41581 if (strncmp (KR_keyword, "/dev/sdbf12", 11) == 0)
41582 {
41583 {
41584 return dev_storage + 1262;
41585
41586 }
41587 }
41588 else
41589 {
41590 {
41591 return NULL;
41592
41593 }
41594 }
41595 case 'e':
41596 if (strncmp (KR_keyword, "/dev/sdbe12", 11) == 0)
41597 {
41598 {
41599 return dev_storage + 1247;
41600
41601 }
41602 }
41603 else
41604 {
41605 {
41606 return NULL;
41607
41608 }
41609 }
41610 case 'd':
41611 if (strncmp (KR_keyword, "/dev/sdbd12", 11) == 0)
41612 {
41613 {
41614 return dev_storage + 1232;
41615
41616 }
41617 }
41618 else
41619 {
41620 {
41621 return NULL;
41622
41623 }
41624 }
41625 case 'c':
41626 if (strncmp (KR_keyword, "/dev/sdbc12", 11) == 0)
41627 {
41628 {
41629 return dev_storage + 1217;
41630
41631 }
41632 }
41633 else
41634 {
41635 {
41636 return NULL;
41637
41638 }
41639 }
41640 case 'b':
41641 if (strncmp (KR_keyword, "/dev/sdbb12", 11) == 0)
41642 {
41643 {
41644 return dev_storage + 1202;
41645
41646 }
41647 }
41648 else
41649 {
41650 {
41651 return NULL;
41652
41653 }
41654 }
41655 case 'a':
41656 if (strncmp (KR_keyword, "/dev/sdba12", 11) == 0)
41657 {
41658 {
41659 return dev_storage + 1187;
41660
41661 }
41662 }
41663 else
41664 {
41665 {
41666 return NULL;
41667
41668 }
41669 }
41670 default:
41671 {
41672 return NULL;
41673
41674 }
41675 }
41676 case 'a':
41677 switch (KR_keyword [8])
41678 {
41679 case 'z':
41680 if (strncmp (KR_keyword, "/dev/sdaz12", 11) == 0)
41681 {
41682 {
41683 return dev_storage + 1146;
41684
41685 }
41686 }
41687 else
41688 {
41689 {
41690 return NULL;
41691
41692 }
41693 }
41694 case 'y':
41695 if (strncmp (KR_keyword, "/dev/sday12", 11) == 0)
41696 {
41697 {
41698 return dev_storage + 1131;
41699
41700 }
41701 }
41702 else
41703 {
41704 {
41705 return NULL;
41706
41707 }
41708 }
41709 case 'x':
41710 if (strncmp (KR_keyword, "/dev/sdax12", 11) == 0)
41711 {
41712 {
41713 return dev_storage + 1116;
41714
41715 }
41716 }
41717 else
41718 {
41719 {
41720 return NULL;
41721
41722 }
41723 }
41724 case 'w':
41725 if (strncmp (KR_keyword, "/dev/sdaw12", 11) == 0)
41726 {
41727 {
41728 return dev_storage + 1101;
41729
41730 }
41731 }
41732 else
41733 {
41734 {
41735 return NULL;
41736
41737 }
41738 }
41739 case 'v':
41740 if (strncmp (KR_keyword, "/dev/sdav12", 11) == 0)
41741 {
41742 {
41743 return dev_storage + 1086;
41744
41745 }
41746 }
41747 else
41748 {
41749 {
41750 return NULL;
41751
41752 }
41753 }
41754 case 'u':
41755 if (strncmp (KR_keyword, "/dev/sdau12", 11) == 0)
41756 {
41757 {
41758 return dev_storage + 1071;
41759
41760 }
41761 }
41762 else
41763 {
41764 {
41765 return NULL;
41766
41767 }
41768 }
41769 case 't':
41770 if (strncmp (KR_keyword, "/dev/sdat12", 11) == 0)
41771 {
41772 {
41773 return dev_storage + 1056;
41774
41775 }
41776 }
41777 else
41778 {
41779 {
41780 return NULL;
41781
41782 }
41783 }
41784 case 's':
41785 if (strncmp (KR_keyword, "/dev/sdas12", 11) == 0)
41786 {
41787 {
41788 return dev_storage + 1041;
41789
41790 }
41791 }
41792 else
41793 {
41794 {
41795 return NULL;
41796
41797 }
41798 }
41799 case 'r':
41800 if (strncmp (KR_keyword, "/dev/sdar12", 11) == 0)
41801 {
41802 {
41803 return dev_storage + 1026;
41804
41805 }
41806 }
41807 else
41808 {
41809 {
41810 return NULL;
41811
41812 }
41813 }
41814 case 'q':
41815 if (strncmp (KR_keyword, "/dev/sdaq12", 11) == 0)
41816 {
41817 {
41818 return dev_storage + 1011;
41819
41820 }
41821 }
41822 else
41823 {
41824 {
41825 return NULL;
41826
41827 }
41828 }
41829 case 'p':
41830 if (strncmp (KR_keyword, "/dev/sdap12", 11) == 0)
41831 {
41832 {
41833 return dev_storage + 996;
41834
41835 }
41836 }
41837 else
41838 {
41839 {
41840 return NULL;
41841
41842 }
41843 }
41844 case 'o':
41845 if (strncmp (KR_keyword, "/dev/sdao12", 11) == 0)
41846 {
41847 {
41848 return dev_storage + 981;
41849
41850 }
41851 }
41852 else
41853 {
41854 {
41855 return NULL;
41856
41857 }
41858 }
41859 case 'n':
41860 if (strncmp (KR_keyword, "/dev/sdan12", 11) == 0)
41861 {
41862 {
41863 return dev_storage + 966;
41864
41865 }
41866 }
41867 else
41868 {
41869 {
41870 return NULL;
41871
41872 }
41873 }
41874 case 'm':
41875 if (strncmp (KR_keyword, "/dev/sdam12", 11) == 0)
41876 {
41877 {
41878 return dev_storage + 951;
41879
41880 }
41881 }
41882 else
41883 {
41884 {
41885 return NULL;
41886
41887 }
41888 }
41889 case 'l':
41890 if (strncmp (KR_keyword, "/dev/sdal12", 11) == 0)
41891 {
41892 {
41893 return dev_storage + 936;
41894
41895 }
41896 }
41897 else
41898 {
41899 {
41900 return NULL;
41901
41902 }
41903 }
41904 case 'k':
41905 if (strncmp (KR_keyword, "/dev/sdak12", 11) == 0)
41906 {
41907 {
41908 return dev_storage + 921;
41909
41910 }
41911 }
41912 else
41913 {
41914 {
41915 return NULL;
41916
41917 }
41918 }
41919 case 'j':
41920 if (strncmp (KR_keyword, "/dev/sdaj12", 11) == 0)
41921 {
41922 {
41923 return dev_storage + 906;
41924
41925 }
41926 }
41927 else
41928 {
41929 {
41930 return NULL;
41931
41932 }
41933 }
41934 case 'i':
41935 if (strncmp (KR_keyword, "/dev/sdai12", 11) == 0)
41936 {
41937 {
41938 return dev_storage + 891;
41939
41940 }
41941 }
41942 else
41943 {
41944 {
41945 return NULL;
41946
41947 }
41948 }
41949 case 'h':
41950 if (strncmp (KR_keyword, "/dev/sdah12", 11) == 0)
41951 {
41952 {
41953 return dev_storage + 876;
41954
41955 }
41956 }
41957 else
41958 {
41959 {
41960 return NULL;
41961
41962 }
41963 }
41964 case 'g':
41965 if (strncmp (KR_keyword, "/dev/sdag12", 11) == 0)
41966 {
41967 {
41968 return dev_storage + 861;
41969
41970 }
41971 }
41972 else
41973 {
41974 {
41975 return NULL;
41976
41977 }
41978 }
41979 case 'f':
41980 if (strncmp (KR_keyword, "/dev/sdaf12", 11) == 0)
41981 {
41982 {
41983 return dev_storage + 846;
41984
41985 }
41986 }
41987 else
41988 {
41989 {
41990 return NULL;
41991
41992 }
41993 }
41994 case 'e':
41995 if (strncmp (KR_keyword, "/dev/sdae12", 11) == 0)
41996 {
41997 {
41998 return dev_storage + 831;
41999
42000 }
42001 }
42002 else
42003 {
42004 {
42005 return NULL;
42006
42007 }
42008 }
42009 case 'd':
42010 if (strncmp (KR_keyword, "/dev/sdad12", 11) == 0)
42011 {
42012 {
42013 return dev_storage + 816;
42014
42015 }
42016 }
42017 else
42018 {
42019 {
42020 return NULL;
42021
42022 }
42023 }
42024 case 'c':
42025 if (strncmp (KR_keyword, "/dev/sdac12", 11) == 0)
42026 {
42027 {
42028 return dev_storage + 801;
42029
42030 }
42031 }
42032 else
42033 {
42034 {
42035 return NULL;
42036
42037 }
42038 }
42039 case 'b':
42040 if (strncmp (KR_keyword, "/dev/sdab12", 11) == 0)
42041 {
42042 {
42043 return dev_storage + 786;
42044
42045 }
42046 }
42047 else
42048 {
42049 {
42050 return NULL;
42051
42052 }
42053 }
42054 case 'a':
42055 if (strncmp (KR_keyword, "/dev/sdaa12", 11) == 0)
42056 {
42057 {
42058 return dev_storage + 771;
42059
42060 }
42061 }
42062 else
42063 {
42064 {
42065 return NULL;
42066
42067 }
42068 }
42069 default:
42070 {
42071 return NULL;
42072
42073 }
42074 }
42075 default:
42076 {
42077 return NULL;
42078
42079 }
42080 }
42081 case '1':
42082 switch (KR_keyword [7])
42083 {
42084 case 'y':
42085 switch (KR_keyword [9])
42086 {
42087 case '6':
42088 if (strncmp (KR_keyword, "/dev/ttyS61", 11) == 0)
42089 {
42090 {
42091 return dev_storage + 2572;
42092
42093 }
42094 }
42095 else
42096 {
42097 {
42098 return NULL;
42099
42100 }
42101 }
42102 case '5':
42103 if (strncmp (KR_keyword, "/dev/ttyS51", 11) == 0)
42104 {
42105 {
42106 return dev_storage + 2562;
42107
42108 }
42109 }
42110 else
42111 {
42112 {
42113 return NULL;
42114
42115 }
42116 }
42117 case '4':
42118 if (strncmp (KR_keyword, "/dev/ttyS41", 11) == 0)
42119 {
42120 {
42121 return dev_storage + 2552;
42122
42123 }
42124 }
42125 else
42126 {
42127 {
42128 return NULL;
42129
42130 }
42131 }
42132 case '3':
42133 if (strncmp (KR_keyword, "/dev/ttyS31", 11) == 0)
42134 {
42135 {
42136 return dev_storage + 2542;
42137
42138 }
42139 }
42140 else
42141 {
42142 {
42143 return NULL;
42144
42145 }
42146 }
42147 case '2':
42148 if (strncmp (KR_keyword, "/dev/ttyS21", 11) == 0)
42149 {
42150 {
42151 return dev_storage + 2532;
42152
42153 }
42154 }
42155 else
42156 {
42157 {
42158 return NULL;
42159
42160 }
42161 }
42162 case '1':
42163 if (strncmp (KR_keyword, "/dev/ttyS11", 11) == 0)
42164 {
42165 {
42166 return dev_storage + 2522;
42167
42168 }
42169 }
42170 else
42171 {
42172 {
42173 return NULL;
42174
42175 }
42176 }
42177 default:
42178 {
42179 return NULL;
42180
42181 }
42182 }
42183 case 't':
42184 switch (KR_keyword [9])
42185 {
42186 case '2':
42187 if (strncmp (KR_keyword, "/dev/nst121", 11) == 0)
42188 {
42189 {
42190 return dev_storage + 227;
42191
42192 }
42193 }
42194 else
42195 {
42196 {
42197 return NULL;
42198
42199 }
42200 }
42201 case '1':
42202 if (strncmp (KR_keyword, "/dev/nst111", 11) == 0)
42203 {
42204 {
42205 return dev_storage + 217;
42206
42207 }
42208 }
42209 else
42210 {
42211 {
42212 return NULL;
42213
42214 }
42215 }
42216 case '0':
42217 if (strncmp (KR_keyword, "/dev/nst101", 11) == 0)
42218 {
42219 {
42220 return dev_storage + 207;
42221
42222 }
42223 }
42224 else
42225 {
42226 {
42227 return NULL;
42228
42229 }
42230 }
42231 default:
42232 {
42233 return NULL;
42234
42235 }
42236 }
42237 case 'n':
42238 switch (KR_keyword [9])
42239 {
42240 case '6':
42241 if (strncmp (KR_keyword, "/dev/cons61", 11) == 0)
42242 {
42243 {
42244 return dev_storage + 81;
42245
42246 }
42247 }
42248 else
42249 {
42250 {
42251 return NULL;
42252
42253 }
42254 }
42255 case '5':
42256 if (strncmp (KR_keyword, "/dev/cons51", 11) == 0)
42257 {
42258 {
42259 return dev_storage + 71;
42260
42261 }
42262 }
42263 else
42264 {
42265 {
42266 return NULL;
42267
42268 }
42269 }
42270 case '4':
42271 if (strncmp (KR_keyword, "/dev/cons41", 11) == 0)
42272 {
42273 {
42274 return dev_storage + 61;
42275
42276 }
42277 }
42278 else
42279 {
42280 {
42281 return NULL;
42282
42283 }
42284 }
42285 case '3':
42286 if (strncmp (KR_keyword, "/dev/cons31", 11) == 0)
42287 {
42288 {
42289 return dev_storage + 51;
42290
42291 }
42292 }
42293 else
42294 {
42295 {
42296 return NULL;
42297
42298 }
42299 }
42300 case '2':
42301 if (strncmp (KR_keyword, "/dev/cons21", 11) == 0)
42302 {
42303 {
42304 return dev_storage + 41;
42305
42306 }
42307 }
42308 else
42309 {
42310 {
42311 return NULL;
42312
42313 }
42314 }
42315 case '1':
42316 if (strncmp (KR_keyword, "/dev/cons11", 11) == 0)
42317 {
42318 {
42319 return dev_storage + 31;
42320
42321 }
42322 }
42323 else
42324 {
42325 {
42326 return NULL;
42327
42328 }
42329 }
42330 default:
42331 {
42332 return NULL;
42333
42334 }
42335 }
42336 case 'd':
42337 switch (KR_keyword [8])
42338 {
42339 case 'x':
42340 if (strncmp (KR_keyword, "/dev/sddx11", 11) == 0)
42341 {
42342 {
42343 return dev_storage + 2361;
42344
42345 }
42346 }
42347 else
42348 {
42349 {
42350 return NULL;
42351
42352 }
42353 }
42354 case 'w':
42355 if (strncmp (KR_keyword, "/dev/sddw11", 11) == 0)
42356 {
42357 {
42358 return dev_storage + 2346;
42359
42360 }
42361 }
42362 else
42363 {
42364 {
42365 return NULL;
42366
42367 }
42368 }
42369 case 'v':
42370 if (strncmp (KR_keyword, "/dev/sddv11", 11) == 0)
42371 {
42372 {
42373 return dev_storage + 2331;
42374
42375 }
42376 }
42377 else
42378 {
42379 {
42380 return NULL;
42381
42382 }
42383 }
42384 case 'u':
42385 if (strncmp (KR_keyword, "/dev/sddu11", 11) == 0)
42386 {
42387 {
42388 return dev_storage + 2316;
42389
42390 }
42391 }
42392 else
42393 {
42394 {
42395 return NULL;
42396
42397 }
42398 }
42399 case 't':
42400 if (strncmp (KR_keyword, "/dev/sddt11", 11) == 0)
42401 {
42402 {
42403 return dev_storage + 2301;
42404
42405 }
42406 }
42407 else
42408 {
42409 {
42410 return NULL;
42411
42412 }
42413 }
42414 case 's':
42415 if (strncmp (KR_keyword, "/dev/sdds11", 11) == 0)
42416 {
42417 {
42418 return dev_storage + 2286;
42419
42420 }
42421 }
42422 else
42423 {
42424 {
42425 return NULL;
42426
42427 }
42428 }
42429 case 'r':
42430 if (strncmp (KR_keyword, "/dev/sddr11", 11) == 0)
42431 {
42432 {
42433 return dev_storage + 2271;
42434
42435 }
42436 }
42437 else
42438 {
42439 {
42440 return NULL;
42441
42442 }
42443 }
42444 case 'q':
42445 if (strncmp (KR_keyword, "/dev/sddq11", 11) == 0)
42446 {
42447 {
42448 return dev_storage + 2256;
42449
42450 }
42451 }
42452 else
42453 {
42454 {
42455 return NULL;
42456
42457 }
42458 }
42459 case 'p':
42460 if (strncmp (KR_keyword, "/dev/sddp11", 11) == 0)
42461 {
42462 {
42463 return dev_storage + 2241;
42464
42465 }
42466 }
42467 else
42468 {
42469 {
42470 return NULL;
42471
42472 }
42473 }
42474 case 'o':
42475 if (strncmp (KR_keyword, "/dev/sddo11", 11) == 0)
42476 {
42477 {
42478 return dev_storage + 2226;
42479
42480 }
42481 }
42482 else
42483 {
42484 {
42485 return NULL;
42486
42487 }
42488 }
42489 case 'n':
42490 if (strncmp (KR_keyword, "/dev/sddn11", 11) == 0)
42491 {
42492 {
42493 return dev_storage + 2211;
42494
42495 }
42496 }
42497 else
42498 {
42499 {
42500 return NULL;
42501
42502 }
42503 }
42504 case 'm':
42505 if (strncmp (KR_keyword, "/dev/sddm11", 11) == 0)
42506 {
42507 {
42508 return dev_storage + 2196;
42509
42510 }
42511 }
42512 else
42513 {
42514 {
42515 return NULL;
42516
42517 }
42518 }
42519 case 'l':
42520 if (strncmp (KR_keyword, "/dev/sddl11", 11) == 0)
42521 {
42522 {
42523 return dev_storage + 2181;
42524
42525 }
42526 }
42527 else
42528 {
42529 {
42530 return NULL;
42531
42532 }
42533 }
42534 case 'k':
42535 if (strncmp (KR_keyword, "/dev/sddk11", 11) == 0)
42536 {
42537 {
42538 return dev_storage + 2166;
42539
42540 }
42541 }
42542 else
42543 {
42544 {
42545 return NULL;
42546
42547 }
42548 }
42549 case 'j':
42550 if (strncmp (KR_keyword, "/dev/sddj11", 11) == 0)
42551 {
42552 {
42553 return dev_storage + 2151;
42554
42555 }
42556 }
42557 else
42558 {
42559 {
42560 return NULL;
42561
42562 }
42563 }
42564 case 'i':
42565 if (strncmp (KR_keyword, "/dev/sddi11", 11) == 0)
42566 {
42567 {
42568 return dev_storage + 2136;
42569
42570 }
42571 }
42572 else
42573 {
42574 {
42575 return NULL;
42576
42577 }
42578 }
42579 case 'h':
42580 if (strncmp (KR_keyword, "/dev/sddh11", 11) == 0)
42581 {
42582 {
42583 return dev_storage + 2121;
42584
42585 }
42586 }
42587 else
42588 {
42589 {
42590 return NULL;
42591
42592 }
42593 }
42594 case 'g':
42595 if (strncmp (KR_keyword, "/dev/sddg11", 11) == 0)
42596 {
42597 {
42598 return dev_storage + 2106;
42599
42600 }
42601 }
42602 else
42603 {
42604 {
42605 return NULL;
42606
42607 }
42608 }
42609 case 'f':
42610 if (strncmp (KR_keyword, "/dev/sddf11", 11) == 0)
42611 {
42612 {
42613 return dev_storage + 2091;
42614
42615 }
42616 }
42617 else
42618 {
42619 {
42620 return NULL;
42621
42622 }
42623 }
42624 case 'e':
42625 if (strncmp (KR_keyword, "/dev/sdde11", 11) == 0)
42626 {
42627 {
42628 return dev_storage + 2076;
42629
42630 }
42631 }
42632 else
42633 {
42634 {
42635 return NULL;
42636
42637 }
42638 }
42639 case 'd':
42640 if (strncmp (KR_keyword, "/dev/sddd11", 11) == 0)
42641 {
42642 {
42643 return dev_storage + 2061;
42644
42645 }
42646 }
42647 else
42648 {
42649 {
42650 return NULL;
42651
42652 }
42653 }
42654 case 'c':
42655 if (strncmp (KR_keyword, "/dev/sddc11", 11) == 0)
42656 {
42657 {
42658 return dev_storage + 2046;
42659
42660 }
42661 }
42662 else
42663 {
42664 {
42665 return NULL;
42666
42667 }
42668 }
42669 case 'b':
42670 if (strncmp (KR_keyword, "/dev/sddb11", 11) == 0)
42671 {
42672 {
42673 return dev_storage + 2031;
42674
42675 }
42676 }
42677 else
42678 {
42679 {
42680 return NULL;
42681
42682 }
42683 }
42684 case 'a':
42685 if (strncmp (KR_keyword, "/dev/sdda11", 11) == 0)
42686 {
42687 {
42688 return dev_storage + 2016;
42689
42690 }
42691 }
42692 else
42693 {
42694 {
42695 return NULL;
42696
42697 }
42698 }
42699 default:
42700 {
42701 return NULL;
42702
42703 }
42704 }
42705 case 'c':
42706 switch (KR_keyword [8])
42707 {
42708 case 'z':
42709 if (strncmp (KR_keyword, "/dev/sdcz11", 11) == 0)
42710 {
42711 {
42712 return dev_storage + 1977;
42713
42714 }
42715 }
42716 else
42717 {
42718 {
42719 return NULL;
42720
42721 }
42722 }
42723 case 'y':
42724 if (strncmp (KR_keyword, "/dev/sdcy11", 11) == 0)
42725 {
42726 {
42727 return dev_storage + 1962;
42728
42729 }
42730 }
42731 else
42732 {
42733 {
42734 return NULL;
42735
42736 }
42737 }
42738 case 'x':
42739 if (strncmp (KR_keyword, "/dev/sdcx11", 11) == 0)
42740 {
42741 {
42742 return dev_storage + 1947;
42743
42744 }
42745 }
42746 else
42747 {
42748 {
42749 return NULL;
42750
42751 }
42752 }
42753 case 'w':
42754 if (strncmp (KR_keyword, "/dev/sdcw11", 11) == 0)
42755 {
42756 {
42757 return dev_storage + 1932;
42758
42759 }
42760 }
42761 else
42762 {
42763 {
42764 return NULL;
42765
42766 }
42767 }
42768 case 'v':
42769 if (strncmp (KR_keyword, "/dev/sdcv11", 11) == 0)
42770 {
42771 {
42772 return dev_storage + 1917;
42773
42774 }
42775 }
42776 else
42777 {
42778 {
42779 return NULL;
42780
42781 }
42782 }
42783 case 'u':
42784 if (strncmp (KR_keyword, "/dev/sdcu11", 11) == 0)
42785 {
42786 {
42787 return dev_storage + 1902;
42788
42789 }
42790 }
42791 else
42792 {
42793 {
42794 return NULL;
42795
42796 }
42797 }
42798 case 't':
42799 if (strncmp (KR_keyword, "/dev/sdct11", 11) == 0)
42800 {
42801 {
42802 return dev_storage + 1887;
42803
42804 }
42805 }
42806 else
42807 {
42808 {
42809 return NULL;
42810
42811 }
42812 }
42813 case 's':
42814 if (strncmp (KR_keyword, "/dev/sdcs11", 11) == 0)
42815 {
42816 {
42817 return dev_storage + 1872;
42818
42819 }
42820 }
42821 else
42822 {
42823 {
42824 return NULL;
42825
42826 }
42827 }
42828 case 'r':
42829 if (strncmp (KR_keyword, "/dev/sdcr11", 11) == 0)
42830 {
42831 {
42832 return dev_storage + 1857;
42833
42834 }
42835 }
42836 else
42837 {
42838 {
42839 return NULL;
42840
42841 }
42842 }
42843 case 'q':
42844 if (strncmp (KR_keyword, "/dev/sdcq11", 11) == 0)
42845 {
42846 {
42847 return dev_storage + 1842;
42848
42849 }
42850 }
42851 else
42852 {
42853 {
42854 return NULL;
42855
42856 }
42857 }
42858 case 'p':
42859 if (strncmp (KR_keyword, "/dev/sdcp11", 11) == 0)
42860 {
42861 {
42862 return dev_storage + 1827;
42863
42864 }
42865 }
42866 else
42867 {
42868 {
42869 return NULL;
42870
42871 }
42872 }
42873 case 'o':
42874 if (strncmp (KR_keyword, "/dev/sdco11", 11) == 0)
42875 {
42876 {
42877 return dev_storage + 1812;
42878
42879 }
42880 }
42881 else
42882 {
42883 {
42884 return NULL;
42885
42886 }
42887 }
42888 case 'n':
42889 if (strncmp (KR_keyword, "/dev/sdcn11", 11) == 0)
42890 {
42891 {
42892 return dev_storage + 1797;
42893
42894 }
42895 }
42896 else
42897 {
42898 {
42899 return NULL;
42900
42901 }
42902 }
42903 case 'm':
42904 if (strncmp (KR_keyword, "/dev/sdcm11", 11) == 0)
42905 {
42906 {
42907 return dev_storage + 1782;
42908
42909 }
42910 }
42911 else
42912 {
42913 {
42914 return NULL;
42915
42916 }
42917 }
42918 case 'l':
42919 if (strncmp (KR_keyword, "/dev/sdcl11", 11) == 0)
42920 {
42921 {
42922 return dev_storage + 1767;
42923
42924 }
42925 }
42926 else
42927 {
42928 {
42929 return NULL;
42930
42931 }
42932 }
42933 case 'k':
42934 if (strncmp (KR_keyword, "/dev/sdck11", 11) == 0)
42935 {
42936 {
42937 return dev_storage + 1752;
42938
42939 }
42940 }
42941 else
42942 {
42943 {
42944 return NULL;
42945
42946 }
42947 }
42948 case 'j':
42949 if (strncmp (KR_keyword, "/dev/sdcj11", 11) == 0)
42950 {
42951 {
42952 return dev_storage + 1737;
42953
42954 }
42955 }
42956 else
42957 {
42958 {
42959 return NULL;
42960
42961 }
42962 }
42963 case 'i':
42964 if (strncmp (KR_keyword, "/dev/sdci11", 11) == 0)
42965 {
42966 {
42967 return dev_storage + 1722;
42968
42969 }
42970 }
42971 else
42972 {
42973 {
42974 return NULL;
42975
42976 }
42977 }
42978 case 'h':
42979 if (strncmp (KR_keyword, "/dev/sdch11", 11) == 0)
42980 {
42981 {
42982 return dev_storage + 1707;
42983
42984 }
42985 }
42986 else
42987 {
42988 {
42989 return NULL;
42990
42991 }
42992 }
42993 case 'g':
42994 if (strncmp (KR_keyword, "/dev/sdcg11", 11) == 0)
42995 {
42996 {
42997 return dev_storage + 1692;
42998
42999 }
43000 }
43001 else
43002 {
43003 {
43004 return NULL;
43005
43006 }
43007 }
43008 case 'f':
43009 if (strncmp (KR_keyword, "/dev/sdcf11", 11) == 0)
43010 {
43011 {
43012 return dev_storage + 1677;
43013
43014 }
43015 }
43016 else
43017 {
43018 {
43019 return NULL;
43020
43021 }
43022 }
43023 case 'e':
43024 if (strncmp (KR_keyword, "/dev/sdce11", 11) == 0)
43025 {
43026 {
43027 return dev_storage + 1662;
43028
43029 }
43030 }
43031 else
43032 {
43033 {
43034 return NULL;
43035
43036 }
43037 }
43038 case 'd':
43039 if (strncmp (KR_keyword, "/dev/sdcd11", 11) == 0)
43040 {
43041 {
43042 return dev_storage + 1647;
43043
43044 }
43045 }
43046 else
43047 {
43048 {
43049 return NULL;
43050
43051 }
43052 }
43053 case 'c':
43054 if (strncmp (KR_keyword, "/dev/sdcc11", 11) == 0)
43055 {
43056 {
43057 return dev_storage + 1632;
43058
43059 }
43060 }
43061 else
43062 {
43063 {
43064 return NULL;
43065
43066 }
43067 }
43068 case 'b':
43069 if (strncmp (KR_keyword, "/dev/sdcb11", 11) == 0)
43070 {
43071 {
43072 return dev_storage + 1617;
43073
43074 }
43075 }
43076 else
43077 {
43078 {
43079 return NULL;
43080
43081 }
43082 }
43083 case 'a':
43084 if (strncmp (KR_keyword, "/dev/sdca11", 11) == 0)
43085 {
43086 {
43087 return dev_storage + 1602;
43088
43089 }
43090 }
43091 else
43092 {
43093 {
43094 return NULL;
43095
43096 }
43097 }
43098 default:
43099 {
43100 return NULL;
43101
43102 }
43103 }
43104 case 'b':
43105 switch (KR_keyword [8])
43106 {
43107 case 'z':
43108 if (strncmp (KR_keyword, "/dev/sdbz11", 11) == 0)
43109 {
43110 {
43111 return dev_storage + 1561;
43112
43113 }
43114 }
43115 else
43116 {
43117 {
43118 return NULL;
43119
43120 }
43121 }
43122 case 'y':
43123 if (strncmp (KR_keyword, "/dev/sdby11", 11) == 0)
43124 {
43125 {
43126 return dev_storage + 1546;
43127
43128 }
43129 }
43130 else
43131 {
43132 {
43133 return NULL;
43134
43135 }
43136 }
43137 case 'x':
43138 if (strncmp (KR_keyword, "/dev/sdbx11", 11) == 0)
43139 {
43140 {
43141 return dev_storage + 1531;
43142
43143 }
43144 }
43145 else
43146 {
43147 {
43148 return NULL;
43149
43150 }
43151 }
43152 case 'w':
43153 if (strncmp (KR_keyword, "/dev/sdbw11", 11) == 0)
43154 {
43155 {
43156 return dev_storage + 1516;
43157
43158 }
43159 }
43160 else
43161 {
43162 {
43163 return NULL;
43164
43165 }
43166 }
43167 case 'v':
43168 if (strncmp (KR_keyword, "/dev/sdbv11", 11) == 0)
43169 {
43170 {
43171 return dev_storage + 1501;
43172
43173 }
43174 }
43175 else
43176 {
43177 {
43178 return NULL;
43179
43180 }
43181 }
43182 case 'u':
43183 if (strncmp (KR_keyword, "/dev/sdbu11", 11) == 0)
43184 {
43185 {
43186 return dev_storage + 1486;
43187
43188 }
43189 }
43190 else
43191 {
43192 {
43193 return NULL;
43194
43195 }
43196 }
43197 case 't':
43198 if (strncmp (KR_keyword, "/dev/sdbt11", 11) == 0)
43199 {
43200 {
43201 return dev_storage + 1471;
43202
43203 }
43204 }
43205 else
43206 {
43207 {
43208 return NULL;
43209
43210 }
43211 }
43212 case 's':
43213 if (strncmp (KR_keyword, "/dev/sdbs11", 11) == 0)
43214 {
43215 {
43216 return dev_storage + 1456;
43217
43218 }
43219 }
43220 else
43221 {
43222 {
43223 return NULL;
43224
43225 }
43226 }
43227 case 'r':
43228 if (strncmp (KR_keyword, "/dev/sdbr11", 11) == 0)
43229 {
43230 {
43231 return dev_storage + 1441;
43232
43233 }
43234 }
43235 else
43236 {
43237 {
43238 return NULL;
43239
43240 }
43241 }
43242 case 'q':
43243 if (strncmp (KR_keyword, "/dev/sdbq11", 11) == 0)
43244 {
43245 {
43246 return dev_storage + 1426;
43247
43248 }
43249 }
43250 else
43251 {
43252 {
43253 return NULL;
43254
43255 }
43256 }
43257 case 'p':
43258 if (strncmp (KR_keyword, "/dev/sdbp11", 11) == 0)
43259 {
43260 {
43261 return dev_storage + 1411;
43262
43263 }
43264 }
43265 else
43266 {
43267 {
43268 return NULL;
43269
43270 }
43271 }
43272 case 'o':
43273 if (strncmp (KR_keyword, "/dev/sdbo11", 11) == 0)
43274 {
43275 {
43276 return dev_storage + 1396;
43277
43278 }
43279 }
43280 else
43281 {
43282 {
43283 return NULL;
43284
43285 }
43286 }
43287 case 'n':
43288 if (strncmp (KR_keyword, "/dev/sdbn11", 11) == 0)
43289 {
43290 {
43291 return dev_storage + 1381;
43292
43293 }
43294 }
43295 else
43296 {
43297 {
43298 return NULL;
43299
43300 }
43301 }
43302 case 'm':
43303 if (strncmp (KR_keyword, "/dev/sdbm11", 11) == 0)
43304 {
43305 {
43306 return dev_storage + 1366;
43307
43308 }
43309 }
43310 else
43311 {
43312 {
43313 return NULL;
43314
43315 }
43316 }
43317 case 'l':
43318 if (strncmp (KR_keyword, "/dev/sdbl11", 11) == 0)
43319 {
43320 {
43321 return dev_storage + 1351;
43322
43323 }
43324 }
43325 else
43326 {
43327 {
43328 return NULL;
43329
43330 }
43331 }
43332 case 'k':
43333 if (strncmp (KR_keyword, "/dev/sdbk11", 11) == 0)
43334 {
43335 {
43336 return dev_storage + 1336;
43337
43338 }
43339 }
43340 else
43341 {
43342 {
43343 return NULL;
43344
43345 }
43346 }
43347 case 'j':
43348 if (strncmp (KR_keyword, "/dev/sdbj11", 11) == 0)
43349 {
43350 {
43351 return dev_storage + 1321;
43352
43353 }
43354 }
43355 else
43356 {
43357 {
43358 return NULL;
43359
43360 }
43361 }
43362 case 'i':
43363 if (strncmp (KR_keyword, "/dev/sdbi11", 11) == 0)
43364 {
43365 {
43366 return dev_storage + 1306;
43367
43368 }
43369 }
43370 else
43371 {
43372 {
43373 return NULL;
43374
43375 }
43376 }
43377 case 'h':
43378 if (strncmp (KR_keyword, "/dev/sdbh11", 11) == 0)
43379 {
43380 {
43381 return dev_storage + 1291;
43382
43383 }
43384 }
43385 else
43386 {
43387 {
43388 return NULL;
43389
43390 }
43391 }
43392 case 'g':
43393 if (strncmp (KR_keyword, "/dev/sdbg11", 11) == 0)
43394 {
43395 {
43396 return dev_storage + 1276;
43397
43398 }
43399 }
43400 else
43401 {
43402 {
43403 return NULL;
43404
43405 }
43406 }
43407 case 'f':
43408 if (strncmp (KR_keyword, "/dev/sdbf11", 11) == 0)
43409 {
43410 {
43411 return dev_storage + 1261;
43412
43413 }
43414 }
43415 else
43416 {
43417 {
43418 return NULL;
43419
43420 }
43421 }
43422 case 'e':
43423 if (strncmp (KR_keyword, "/dev/sdbe11", 11) == 0)
43424 {
43425 {
43426 return dev_storage + 1246;
43427
43428 }
43429 }
43430 else
43431 {
43432 {
43433 return NULL;
43434
43435 }
43436 }
43437 case 'd':
43438 if (strncmp (KR_keyword, "/dev/sdbd11", 11) == 0)
43439 {
43440 {
43441 return dev_storage + 1231;
43442
43443 }
43444 }
43445 else
43446 {
43447 {
43448 return NULL;
43449
43450 }
43451 }
43452 case 'c':
43453 if (strncmp (KR_keyword, "/dev/sdbc11", 11) == 0)
43454 {
43455 {
43456 return dev_storage + 1216;
43457
43458 }
43459 }
43460 else
43461 {
43462 {
43463 return NULL;
43464
43465 }
43466 }
43467 case 'b':
43468 if (strncmp (KR_keyword, "/dev/sdbb11", 11) == 0)
43469 {
43470 {
43471 return dev_storage + 1201;
43472
43473 }
43474 }
43475 else
43476 {
43477 {
43478 return NULL;
43479
43480 }
43481 }
43482 case 'a':
43483 if (strncmp (KR_keyword, "/dev/sdba11", 11) == 0)
43484 {
43485 {
43486 return dev_storage + 1186;
43487
43488 }
43489 }
43490 else
43491 {
43492 {
43493 return NULL;
43494
43495 }
43496 }
43497 default:
43498 {
43499 return NULL;
43500
43501 }
43502 }
43503 case 'a':
43504 switch (KR_keyword [8])
43505 {
43506 case 'z':
43507 if (strncmp (KR_keyword, "/dev/sdaz11", 11) == 0)
43508 {
43509 {
43510 return dev_storage + 1145;
43511
43512 }
43513 }
43514 else
43515 {
43516 {
43517 return NULL;
43518
43519 }
43520 }
43521 case 'y':
43522 if (strncmp (KR_keyword, "/dev/sday11", 11) == 0)
43523 {
43524 {
43525 return dev_storage + 1130;
43526
43527 }
43528 }
43529 else
43530 {
43531 {
43532 return NULL;
43533
43534 }
43535 }
43536 case 'x':
43537 if (strncmp (KR_keyword, "/dev/sdax11", 11) == 0)
43538 {
43539 {
43540 return dev_storage + 1115;
43541
43542 }
43543 }
43544 else
43545 {
43546 {
43547 return NULL;
43548
43549 }
43550 }
43551 case 'w':
43552 if (strncmp (KR_keyword, "/dev/sdaw11", 11) == 0)
43553 {
43554 {
43555 return dev_storage + 1100;
43556
43557 }
43558 }
43559 else
43560 {
43561 {
43562 return NULL;
43563
43564 }
43565 }
43566 case 'v':
43567 if (strncmp (KR_keyword, "/dev/sdav11", 11) == 0)
43568 {
43569 {
43570 return dev_storage + 1085;
43571
43572 }
43573 }
43574 else
43575 {
43576 {
43577 return NULL;
43578
43579 }
43580 }
43581 case 'u':
43582 if (strncmp (KR_keyword, "/dev/sdau11", 11) == 0)
43583 {
43584 {
43585 return dev_storage + 1070;
43586
43587 }
43588 }
43589 else
43590 {
43591 {
43592 return NULL;
43593
43594 }
43595 }
43596 case 't':
43597 if (strncmp (KR_keyword, "/dev/sdat11", 11) == 0)
43598 {
43599 {
43600 return dev_storage + 1055;
43601
43602 }
43603 }
43604 else
43605 {
43606 {
43607 return NULL;
43608
43609 }
43610 }
43611 case 's':
43612 if (strncmp (KR_keyword, "/dev/sdas11", 11) == 0)
43613 {
43614 {
43615 return dev_storage + 1040;
43616
43617 }
43618 }
43619 else
43620 {
43621 {
43622 return NULL;
43623
43624 }
43625 }
43626 case 'r':
43627 if (strncmp (KR_keyword, "/dev/sdar11", 11) == 0)
43628 {
43629 {
43630 return dev_storage + 1025;
43631
43632 }
43633 }
43634 else
43635 {
43636 {
43637 return NULL;
43638
43639 }
43640 }
43641 case 'q':
43642 if (strncmp (KR_keyword, "/dev/sdaq11", 11) == 0)
43643 {
43644 {
43645 return dev_storage + 1010;
43646
43647 }
43648 }
43649 else
43650 {
43651 {
43652 return NULL;
43653
43654 }
43655 }
43656 case 'p':
43657 if (strncmp (KR_keyword, "/dev/sdap11", 11) == 0)
43658 {
43659 {
43660 return dev_storage + 995;
43661
43662 }
43663 }
43664 else
43665 {
43666 {
43667 return NULL;
43668
43669 }
43670 }
43671 case 'o':
43672 if (strncmp (KR_keyword, "/dev/sdao11", 11) == 0)
43673 {
43674 {
43675 return dev_storage + 980;
43676
43677 }
43678 }
43679 else
43680 {
43681 {
43682 return NULL;
43683
43684 }
43685 }
43686 case 'n':
43687 if (strncmp (KR_keyword, "/dev/sdan11", 11) == 0)
43688 {
43689 {
43690 return dev_storage + 965;
43691
43692 }
43693 }
43694 else
43695 {
43696 {
43697 return NULL;
43698
43699 }
43700 }
43701 case 'm':
43702 if (strncmp (KR_keyword, "/dev/sdam11", 11) == 0)
43703 {
43704 {
43705 return dev_storage + 950;
43706
43707 }
43708 }
43709 else
43710 {
43711 {
43712 return NULL;
43713
43714 }
43715 }
43716 case 'l':
43717 if (strncmp (KR_keyword, "/dev/sdal11", 11) == 0)
43718 {
43719 {
43720 return dev_storage + 935;
43721
43722 }
43723 }
43724 else
43725 {
43726 {
43727 return NULL;
43728
43729 }
43730 }
43731 case 'k':
43732 if (strncmp (KR_keyword, "/dev/sdak11", 11) == 0)
43733 {
43734 {
43735 return dev_storage + 920;
43736
43737 }
43738 }
43739 else
43740 {
43741 {
43742 return NULL;
43743
43744 }
43745 }
43746 case 'j':
43747 if (strncmp (KR_keyword, "/dev/sdaj11", 11) == 0)
43748 {
43749 {
43750 return dev_storage + 905;
43751
43752 }
43753 }
43754 else
43755 {
43756 {
43757 return NULL;
43758
43759 }
43760 }
43761 case 'i':
43762 if (strncmp (KR_keyword, "/dev/sdai11", 11) == 0)
43763 {
43764 {
43765 return dev_storage + 890;
43766
43767 }
43768 }
43769 else
43770 {
43771 {
43772 return NULL;
43773
43774 }
43775 }
43776 case 'h':
43777 if (strncmp (KR_keyword, "/dev/sdah11", 11) == 0)
43778 {
43779 {
43780 return dev_storage + 875;
43781
43782 }
43783 }
43784 else
43785 {
43786 {
43787 return NULL;
43788
43789 }
43790 }
43791 case 'g':
43792 if (strncmp (KR_keyword, "/dev/sdag11", 11) == 0)
43793 {
43794 {
43795 return dev_storage + 860;
43796
43797 }
43798 }
43799 else
43800 {
43801 {
43802 return NULL;
43803
43804 }
43805 }
43806 case 'f':
43807 if (strncmp (KR_keyword, "/dev/sdaf11", 11) == 0)
43808 {
43809 {
43810 return dev_storage + 845;
43811
43812 }
43813 }
43814 else
43815 {
43816 {
43817 return NULL;
43818
43819 }
43820 }
43821 case 'e':
43822 if (strncmp (KR_keyword, "/dev/sdae11", 11) == 0)
43823 {
43824 {
43825 return dev_storage + 830;
43826
43827 }
43828 }
43829 else
43830 {
43831 {
43832 return NULL;
43833
43834 }
43835 }
43836 case 'd':
43837 if (strncmp (KR_keyword, "/dev/sdad11", 11) == 0)
43838 {
43839 {
43840 return dev_storage + 815;
43841
43842 }
43843 }
43844 else
43845 {
43846 {
43847 return NULL;
43848
43849 }
43850 }
43851 case 'c':
43852 if (strncmp (KR_keyword, "/dev/sdac11", 11) == 0)
43853 {
43854 {
43855 return dev_storage + 800;
43856
43857 }
43858 }
43859 else
43860 {
43861 {
43862 return NULL;
43863
43864 }
43865 }
43866 case 'b':
43867 if (strncmp (KR_keyword, "/dev/sdab11", 11) == 0)
43868 {
43869 {
43870 return dev_storage + 785;
43871
43872 }
43873 }
43874 else
43875 {
43876 {
43877 return NULL;
43878
43879 }
43880 }
43881 case 'a':
43882 if (strncmp (KR_keyword, "/dev/sdaa11", 11) == 0)
43883 {
43884 {
43885 return dev_storage + 770;
43886
43887 }
43888 }
43889 else
43890 {
43891 {
43892 return NULL;
43893
43894 }
43895 }
43896 default:
43897 {
43898 return NULL;
43899
43900 }
43901 }
43902 default:
43903 {
43904 return NULL;
43905
43906 }
43907 }
43908 case '0':
43909 switch (KR_keyword [7])
43910 {
43911 case 'y':
43912 switch (KR_keyword [9])
43913 {
43914 case '6':
43915 if (strncmp (KR_keyword, "/dev/ttyS60", 11) == 0)
43916 {
43917 {
43918 return dev_storage + 2571;
43919
43920 }
43921 }
43922 else
43923 {
43924 {
43925 return NULL;
43926
43927 }
43928 }
43929 case '5':
43930 if (strncmp (KR_keyword, "/dev/ttyS50", 11) == 0)
43931 {
43932 {
43933 return dev_storage + 2561;
43934
43935 }
43936 }
43937 else
43938 {
43939 {
43940 return NULL;
43941
43942 }
43943 }
43944 case '4':
43945 if (strncmp (KR_keyword, "/dev/ttyS40", 11) == 0)
43946 {
43947 {
43948 return dev_storage + 2551;
43949
43950 }
43951 }
43952 else
43953 {
43954 {
43955 return NULL;
43956
43957 }
43958 }
43959 case '3':
43960 if (strncmp (KR_keyword, "/dev/ttyS30", 11) == 0)
43961 {
43962 {
43963 return dev_storage + 2541;
43964
43965 }
43966 }
43967 else
43968 {
43969 {
43970 return NULL;
43971
43972 }
43973 }
43974 case '2':
43975 if (strncmp (KR_keyword, "/dev/ttyS20", 11) == 0)
43976 {
43977 {
43978 return dev_storage + 2531;
43979
43980 }
43981 }
43982 else
43983 {
43984 {
43985 return NULL;
43986
43987 }
43988 }
43989 case '1':
43990 if (strncmp (KR_keyword, "/dev/ttyS10", 11) == 0)
43991 {
43992 {
43993 return dev_storage + 2521;
43994
43995 }
43996 }
43997 else
43998 {
43999 {
44000 return NULL;
44001
44002 }
44003 }
44004 default:
44005 {
44006 return NULL;
44007
44008 }
44009 }
44010 case 't':
44011 switch (KR_keyword [9])
44012 {
44013 case '2':
44014 if (strncmp (KR_keyword, "/dev/nst120", 11) == 0)
44015 {
44016 {
44017 return dev_storage + 226;
44018
44019 }
44020 }
44021 else
44022 {
44023 {
44024 return NULL;
44025
44026 }
44027 }
44028 case '1':
44029 if (strncmp (KR_keyword, "/dev/nst110", 11) == 0)
44030 {
44031 {
44032 return dev_storage + 216;
44033
44034 }
44035 }
44036 else
44037 {
44038 {
44039 return NULL;
44040
44041 }
44042 }
44043 case '0':
44044 if (strncmp (KR_keyword, "/dev/nst100", 11) == 0)
44045 {
44046 {
44047 return dev_storage + 206;
44048
44049 }
44050 }
44051 else
44052 {
44053 {
44054 return NULL;
44055
44056 }
44057 }
44058 default:
44059 {
44060 return NULL;
44061
44062 }
44063 }
44064 case 'n':
44065 switch (KR_keyword [9])
44066 {
44067 case '6':
44068 if (strncmp (KR_keyword, "/dev/cons60", 11) == 0)
44069 {
44070 {
44071 return dev_storage + 80;
44072
44073 }
44074 }
44075 else
44076 {
44077 {
44078 return NULL;
44079
44080 }
44081 }
44082 case '5':
44083 if (strncmp (KR_keyword, "/dev/cons50", 11) == 0)
44084 {
44085 {
44086 return dev_storage + 70;
44087
44088 }
44089 }
44090 else
44091 {
44092 {
44093 return NULL;
44094
44095 }
44096 }
44097 case '4':
44098 if (strncmp (KR_keyword, "/dev/cons40", 11) == 0)
44099 {
44100 {
44101 return dev_storage + 60;
44102
44103 }
44104 }
44105 else
44106 {
44107 {
44108 return NULL;
44109
44110 }
44111 }
44112 case '3':
44113 if (strncmp (KR_keyword, "/dev/cons30", 11) == 0)
44114 {
44115 {
44116 return dev_storage + 50;
44117
44118 }
44119 }
44120 else
44121 {
44122 {
44123 return NULL;
44124
44125 }
44126 }
44127 case '2':
44128 if (strncmp (KR_keyword, "/dev/cons20", 11) == 0)
44129 {
44130 {
44131 return dev_storage + 40;
44132
44133 }
44134 }
44135 else
44136 {
44137 {
44138 return NULL;
44139
44140 }
44141 }
44142 case '1':
44143 if (strncmp (KR_keyword, "/dev/cons10", 11) == 0)
44144 {
44145 {
44146 return dev_storage + 30;
44147
44148 }
44149 }
44150 else
44151 {
44152 {
44153 return NULL;
44154
44155 }
44156 }
44157 default:
44158 {
44159 return NULL;
44160
44161 }
44162 }
44163 case 'd':
44164 switch (KR_keyword [8])
44165 {
44166 case 'x':
44167 if (strncmp (KR_keyword, "/dev/sddx10", 11) == 0)
44168 {
44169 {
44170 return dev_storage + 2360;
44171
44172 }
44173 }
44174 else
44175 {
44176 {
44177 return NULL;
44178
44179 }
44180 }
44181 case 'w':
44182 if (strncmp (KR_keyword, "/dev/sddw10", 11) == 0)
44183 {
44184 {
44185 return dev_storage + 2345;
44186
44187 }
44188 }
44189 else
44190 {
44191 {
44192 return NULL;
44193
44194 }
44195 }
44196 case 'v':
44197 if (strncmp (KR_keyword, "/dev/sddv10", 11) == 0)
44198 {
44199 {
44200 return dev_storage + 2330;
44201
44202 }
44203 }
44204 else
44205 {
44206 {
44207 return NULL;
44208
44209 }
44210 }
44211 case 'u':
44212 if (strncmp (KR_keyword, "/dev/sddu10", 11) == 0)
44213 {
44214 {
44215 return dev_storage + 2315;
44216
44217 }
44218 }
44219 else
44220 {
44221 {
44222 return NULL;
44223
44224 }
44225 }
44226 case 't':
44227 if (strncmp (KR_keyword, "/dev/sddt10", 11) == 0)
44228 {
44229 {
44230 return dev_storage + 2300;
44231
44232 }
44233 }
44234 else
44235 {
44236 {
44237 return NULL;
44238
44239 }
44240 }
44241 case 's':
44242 if (strncmp (KR_keyword, "/dev/sdds10", 11) == 0)
44243 {
44244 {
44245 return dev_storage + 2285;
44246
44247 }
44248 }
44249 else
44250 {
44251 {
44252 return NULL;
44253
44254 }
44255 }
44256 case 'r':
44257 if (strncmp (KR_keyword, "/dev/sddr10", 11) == 0)
44258 {
44259 {
44260 return dev_storage + 2270;
44261
44262 }
44263 }
44264 else
44265 {
44266 {
44267 return NULL;
44268
44269 }
44270 }
44271 case 'q':
44272 if (strncmp (KR_keyword, "/dev/sddq10", 11) == 0)
44273 {
44274 {
44275 return dev_storage + 2255;
44276
44277 }
44278 }
44279 else
44280 {
44281 {
44282 return NULL;
44283
44284 }
44285 }
44286 case 'p':
44287 if (strncmp (KR_keyword, "/dev/sddp10", 11) == 0)
44288 {
44289 {
44290 return dev_storage + 2240;
44291
44292 }
44293 }
44294 else
44295 {
44296 {
44297 return NULL;
44298
44299 }
44300 }
44301 case 'o':
44302 if (strncmp (KR_keyword, "/dev/sddo10", 11) == 0)
44303 {
44304 {
44305 return dev_storage + 2225;
44306
44307 }
44308 }
44309 else
44310 {
44311 {
44312 return NULL;
44313
44314 }
44315 }
44316 case 'n':
44317 if (strncmp (KR_keyword, "/dev/sddn10", 11) == 0)
44318 {
44319 {
44320 return dev_storage + 2210;
44321
44322 }
44323 }
44324 else
44325 {
44326 {
44327 return NULL;
44328
44329 }
44330 }
44331 case 'm':
44332 if (strncmp (KR_keyword, "/dev/sddm10", 11) == 0)
44333 {
44334 {
44335 return dev_storage + 2195;
44336
44337 }
44338 }
44339 else
44340 {
44341 {
44342 return NULL;
44343
44344 }
44345 }
44346 case 'l':
44347 if (strncmp (KR_keyword, "/dev/sddl10", 11) == 0)
44348 {
44349 {
44350 return dev_storage + 2180;
44351
44352 }
44353 }
44354 else
44355 {
44356 {
44357 return NULL;
44358
44359 }
44360 }
44361 case 'k':
44362 if (strncmp (KR_keyword, "/dev/sddk10", 11) == 0)
44363 {
44364 {
44365 return dev_storage + 2165;
44366
44367 }
44368 }
44369 else
44370 {
44371 {
44372 return NULL;
44373
44374 }
44375 }
44376 case 'j':
44377 if (strncmp (KR_keyword, "/dev/sddj10", 11) == 0)
44378 {
44379 {
44380 return dev_storage + 2150;
44381
44382 }
44383 }
44384 else
44385 {
44386 {
44387 return NULL;
44388
44389 }
44390 }
44391 case 'i':
44392 if (strncmp (KR_keyword, "/dev/sddi10", 11) == 0)
44393 {
44394 {
44395 return dev_storage + 2135;
44396
44397 }
44398 }
44399 else
44400 {
44401 {
44402 return NULL;
44403
44404 }
44405 }
44406 case 'h':
44407 if (strncmp (KR_keyword, "/dev/sddh10", 11) == 0)
44408 {
44409 {
44410 return dev_storage + 2120;
44411
44412 }
44413 }
44414 else
44415 {
44416 {
44417 return NULL;
44418
44419 }
44420 }
44421 case 'g':
44422 if (strncmp (KR_keyword, "/dev/sddg10", 11) == 0)
44423 {
44424 {
44425 return dev_storage + 2105;
44426
44427 }
44428 }
44429 else
44430 {
44431 {
44432 return NULL;
44433
44434 }
44435 }
44436 case 'f':
44437 if (strncmp (KR_keyword, "/dev/sddf10", 11) == 0)
44438 {
44439 {
44440 return dev_storage + 2090;
44441
44442 }
44443 }
44444 else
44445 {
44446 {
44447 return NULL;
44448
44449 }
44450 }
44451 case 'e':
44452 if (strncmp (KR_keyword, "/dev/sdde10", 11) == 0)
44453 {
44454 {
44455 return dev_storage + 2075;
44456
44457 }
44458 }
44459 else
44460 {
44461 {
44462 return NULL;
44463
44464 }
44465 }
44466 case 'd':
44467 if (strncmp (KR_keyword, "/dev/sddd10", 11) == 0)
44468 {
44469 {
44470 return dev_storage + 2060;
44471
44472 }
44473 }
44474 else
44475 {
44476 {
44477 return NULL;
44478
44479 }
44480 }
44481 case 'c':
44482 if (strncmp (KR_keyword, "/dev/sddc10", 11) == 0)
44483 {
44484 {
44485 return dev_storage + 2045;
44486
44487 }
44488 }
44489 else
44490 {
44491 {
44492 return NULL;
44493
44494 }
44495 }
44496 case 'b':
44497 if (strncmp (KR_keyword, "/dev/sddb10", 11) == 0)
44498 {
44499 {
44500 return dev_storage + 2030;
44501
44502 }
44503 }
44504 else
44505 {
44506 {
44507 return NULL;
44508
44509 }
44510 }
44511 case 'a':
44512 if (strncmp (KR_keyword, "/dev/sdda10", 11) == 0)
44513 {
44514 {
44515 return dev_storage + 2015;
44516
44517 }
44518 }
44519 else
44520 {
44521 {
44522 return NULL;
44523
44524 }
44525 }
44526 default:
44527 {
44528 return NULL;
44529
44530 }
44531 }
44532 case 'c':
44533 switch (KR_keyword [8])
44534 {
44535 case 'z':
44536 if (strncmp (KR_keyword, "/dev/sdcz10", 11) == 0)
44537 {
44538 {
44539 return dev_storage + 1976;
44540
44541 }
44542 }
44543 else
44544 {
44545 {
44546 return NULL;
44547
44548 }
44549 }
44550 case 'y':
44551 if (strncmp (KR_keyword, "/dev/sdcy10", 11) == 0)
44552 {
44553 {
44554 return dev_storage + 1961;
44555
44556 }
44557 }
44558 else
44559 {
44560 {
44561 return NULL;
44562
44563 }
44564 }
44565 case 'x':
44566 if (strncmp (KR_keyword, "/dev/sdcx10", 11) == 0)
44567 {
44568 {
44569 return dev_storage + 1946;
44570
44571 }
44572 }
44573 else
44574 {
44575 {
44576 return NULL;
44577
44578 }
44579 }
44580 case 'w':
44581 if (strncmp (KR_keyword, "/dev/sdcw10", 11) == 0)
44582 {
44583 {
44584 return dev_storage + 1931;
44585
44586 }
44587 }
44588 else
44589 {
44590 {
44591 return NULL;
44592
44593 }
44594 }
44595 case 'v':
44596 if (strncmp (KR_keyword, "/dev/sdcv10", 11) == 0)
44597 {
44598 {
44599 return dev_storage + 1916;
44600
44601 }
44602 }
44603 else
44604 {
44605 {
44606 return NULL;
44607
44608 }
44609 }
44610 case 'u':
44611 if (strncmp (KR_keyword, "/dev/sdcu10", 11) == 0)
44612 {
44613 {
44614 return dev_storage + 1901;
44615
44616 }
44617 }
44618 else
44619 {
44620 {
44621 return NULL;
44622
44623 }
44624 }
44625 case 't':
44626 if (strncmp (KR_keyword, "/dev/sdct10", 11) == 0)
44627 {
44628 {
44629 return dev_storage + 1886;
44630
44631 }
44632 }
44633 else
44634 {
44635 {
44636 return NULL;
44637
44638 }
44639 }
44640 case 's':
44641 if (strncmp (KR_keyword, "/dev/sdcs10", 11) == 0)
44642 {
44643 {
44644 return dev_storage + 1871;
44645
44646 }
44647 }
44648 else
44649 {
44650 {
44651 return NULL;
44652
44653 }
44654 }
44655 case 'r':
44656 if (strncmp (KR_keyword, "/dev/sdcr10", 11) == 0)
44657 {
44658 {
44659 return dev_storage + 1856;
44660
44661 }
44662 }
44663 else
44664 {
44665 {
44666 return NULL;
44667
44668 }
44669 }
44670 case 'q':
44671 if (strncmp (KR_keyword, "/dev/sdcq10", 11) == 0)
44672 {
44673 {
44674 return dev_storage + 1841;
44675
44676 }
44677 }
44678 else
44679 {
44680 {
44681 return NULL;
44682
44683 }
44684 }
44685 case 'p':
44686 if (strncmp (KR_keyword, "/dev/sdcp10", 11) == 0)
44687 {
44688 {
44689 return dev_storage + 1826;
44690
44691 }
44692 }
44693 else
44694 {
44695 {
44696 return NULL;
44697
44698 }
44699 }
44700 case 'o':
44701 if (strncmp (KR_keyword, "/dev/sdco10", 11) == 0)
44702 {
44703 {
44704 return dev_storage + 1811;
44705
44706 }
44707 }
44708 else
44709 {
44710 {
44711 return NULL;
44712
44713 }
44714 }
44715 case 'n':
44716 if (strncmp (KR_keyword, "/dev/sdcn10", 11) == 0)
44717 {
44718 {
44719 return dev_storage + 1796;
44720
44721 }
44722 }
44723 else
44724 {
44725 {
44726 return NULL;
44727
44728 }
44729 }
44730 case 'm':
44731 if (strncmp (KR_keyword, "/dev/sdcm10", 11) == 0)
44732 {
44733 {
44734 return dev_storage + 1781;
44735
44736 }
44737 }
44738 else
44739 {
44740 {
44741 return NULL;
44742
44743 }
44744 }
44745 case 'l':
44746 if (strncmp (KR_keyword, "/dev/sdcl10", 11) == 0)
44747 {
44748 {
44749 return dev_storage + 1766;
44750
44751 }
44752 }
44753 else
44754 {
44755 {
44756 return NULL;
44757
44758 }
44759 }
44760 case 'k':
44761 if (strncmp (KR_keyword, "/dev/sdck10", 11) == 0)
44762 {
44763 {
44764 return dev_storage + 1751;
44765
44766 }
44767 }
44768 else
44769 {
44770 {
44771 return NULL;
44772
44773 }
44774 }
44775 case 'j':
44776 if (strncmp (KR_keyword, "/dev/sdcj10", 11) == 0)
44777 {
44778 {
44779 return dev_storage + 1736;
44780
44781 }
44782 }
44783 else
44784 {
44785 {
44786 return NULL;
44787
44788 }
44789 }
44790 case 'i':
44791 if (strncmp (KR_keyword, "/dev/sdci10", 11) == 0)
44792 {
44793 {
44794 return dev_storage + 1721;
44795
44796 }
44797 }
44798 else
44799 {
44800 {
44801 return NULL;
44802
44803 }
44804 }
44805 case 'h':
44806 if (strncmp (KR_keyword, "/dev/sdch10", 11) == 0)
44807 {
44808 {
44809 return dev_storage + 1706;
44810
44811 }
44812 }
44813 else
44814 {
44815 {
44816 return NULL;
44817
44818 }
44819 }
44820 case 'g':
44821 if (strncmp (KR_keyword, "/dev/sdcg10", 11) == 0)
44822 {
44823 {
44824 return dev_storage + 1691;
44825
44826 }
44827 }
44828 else
44829 {
44830 {
44831 return NULL;
44832
44833 }
44834 }
44835 case 'f':
44836 if (strncmp (KR_keyword, "/dev/sdcf10", 11) == 0)
44837 {
44838 {
44839 return dev_storage + 1676;
44840
44841 }
44842 }
44843 else
44844 {
44845 {
44846 return NULL;
44847
44848 }
44849 }
44850 case 'e':
44851 if (strncmp (KR_keyword, "/dev/sdce10", 11) == 0)
44852 {
44853 {
44854 return dev_storage + 1661;
44855
44856 }
44857 }
44858 else
44859 {
44860 {
44861 return NULL;
44862
44863 }
44864 }
44865 case 'd':
44866 if (strncmp (KR_keyword, "/dev/sdcd10", 11) == 0)
44867 {
44868 {
44869 return dev_storage + 1646;
44870
44871 }
44872 }
44873 else
44874 {
44875 {
44876 return NULL;
44877
44878 }
44879 }
44880 case 'c':
44881 if (strncmp (KR_keyword, "/dev/sdcc10", 11) == 0)
44882 {
44883 {
44884 return dev_storage + 1631;
44885
44886 }
44887 }
44888 else
44889 {
44890 {
44891 return NULL;
44892
44893 }
44894 }
44895 case 'b':
44896 if (strncmp (KR_keyword, "/dev/sdcb10", 11) == 0)
44897 {
44898 {
44899 return dev_storage + 1616;
44900
44901 }
44902 }
44903 else
44904 {
44905 {
44906 return NULL;
44907
44908 }
44909 }
44910 case 'a':
44911 if (strncmp (KR_keyword, "/dev/sdca10", 11) == 0)
44912 {
44913 {
44914 return dev_storage + 1601;
44915
44916 }
44917 }
44918 else
44919 {
44920 {
44921 return NULL;
44922
44923 }
44924 }
44925 default:
44926 {
44927 return NULL;
44928
44929 }
44930 }
44931 case 'b':
44932 switch (KR_keyword [8])
44933 {
44934 case 'z':
44935 if (strncmp (KR_keyword, "/dev/sdbz10", 11) == 0)
44936 {
44937 {
44938 return dev_storage + 1560;
44939
44940 }
44941 }
44942 else
44943 {
44944 {
44945 return NULL;
44946
44947 }
44948 }
44949 case 'y':
44950 if (strncmp (KR_keyword, "/dev/sdby10", 11) == 0)
44951 {
44952 {
44953 return dev_storage + 1545;
44954
44955 }
44956 }
44957 else
44958 {
44959 {
44960 return NULL;
44961
44962 }
44963 }
44964 case 'x':
44965 if (strncmp (KR_keyword, "/dev/sdbx10", 11) == 0)
44966 {
44967 {
44968 return dev_storage + 1530;
44969
44970 }
44971 }
44972 else
44973 {
44974 {
44975 return NULL;
44976
44977 }
44978 }
44979 case 'w':
44980 if (strncmp (KR_keyword, "/dev/sdbw10", 11) == 0)
44981 {
44982 {
44983 return dev_storage + 1515;
44984
44985 }
44986 }
44987 else
44988 {
44989 {
44990 return NULL;
44991
44992 }
44993 }
44994 case 'v':
44995 if (strncmp (KR_keyword, "/dev/sdbv10", 11) == 0)
44996 {
44997 {
44998 return dev_storage + 1500;
44999
45000 }
45001 }
45002 else
45003 {
45004 {
45005 return NULL;
45006
45007 }
45008 }
45009 case 'u':
45010 if (strncmp (KR_keyword, "/dev/sdbu10", 11) == 0)
45011 {
45012 {
45013 return dev_storage + 1485;
45014
45015 }
45016 }
45017 else
45018 {
45019 {
45020 return NULL;
45021
45022 }
45023 }
45024 case 't':
45025 if (strncmp (KR_keyword, "/dev/sdbt10", 11) == 0)
45026 {
45027 {
45028 return dev_storage + 1470;
45029
45030 }
45031 }
45032 else
45033 {
45034 {
45035 return NULL;
45036
45037 }
45038 }
45039 case 's':
45040 if (strncmp (KR_keyword, "/dev/sdbs10", 11) == 0)
45041 {
45042 {
45043 return dev_storage + 1455;
45044
45045 }
45046 }
45047 else
45048 {
45049 {
45050 return NULL;
45051
45052 }
45053 }
45054 case 'r':
45055 if (strncmp (KR_keyword, "/dev/sdbr10", 11) == 0)
45056 {
45057 {
45058 return dev_storage + 1440;
45059
45060 }
45061 }
45062 else
45063 {
45064 {
45065 return NULL;
45066
45067 }
45068 }
45069 case 'q':
45070 if (strncmp (KR_keyword, "/dev/sdbq10", 11) == 0)
45071 {
45072 {
45073 return dev_storage + 1425;
45074
45075 }
45076 }
45077 else
45078 {
45079 {
45080 return NULL;
45081
45082 }
45083 }
45084 case 'p':
45085 if (strncmp (KR_keyword, "/dev/sdbp10", 11) == 0)
45086 {
45087 {
45088 return dev_storage + 1410;
45089
45090 }
45091 }
45092 else
45093 {
45094 {
45095 return NULL;
45096
45097 }
45098 }
45099 case 'o':
45100 if (strncmp (KR_keyword, "/dev/sdbo10", 11) == 0)
45101 {
45102 {
45103 return dev_storage + 1395;
45104
45105 }
45106 }
45107 else
45108 {
45109 {
45110 return NULL;
45111
45112 }
45113 }
45114 case 'n':
45115 if (strncmp (KR_keyword, "/dev/sdbn10", 11) == 0)
45116 {
45117 {
45118 return dev_storage + 1380;
45119
45120 }
45121 }
45122 else
45123 {
45124 {
45125 return NULL;
45126
45127 }
45128 }
45129 case 'm':
45130 if (strncmp (KR_keyword, "/dev/sdbm10", 11) == 0)
45131 {
45132 {
45133 return dev_storage + 1365;
45134
45135 }
45136 }
45137 else
45138 {
45139 {
45140 return NULL;
45141
45142 }
45143 }
45144 case 'l':
45145 if (strncmp (KR_keyword, "/dev/sdbl10", 11) == 0)
45146 {
45147 {
45148 return dev_storage + 1350;
45149
45150 }
45151 }
45152 else
45153 {
45154 {
45155 return NULL;
45156
45157 }
45158 }
45159 case 'k':
45160 if (strncmp (KR_keyword, "/dev/sdbk10", 11) == 0)
45161 {
45162 {
45163 return dev_storage + 1335;
45164
45165 }
45166 }
45167 else
45168 {
45169 {
45170 return NULL;
45171
45172 }
45173 }
45174 case 'j':
45175 if (strncmp (KR_keyword, "/dev/sdbj10", 11) == 0)
45176 {
45177 {
45178 return dev_storage + 1320;
45179
45180 }
45181 }
45182 else
45183 {
45184 {
45185 return NULL;
45186
45187 }
45188 }
45189 case 'i':
45190 if (strncmp (KR_keyword, "/dev/sdbi10", 11) == 0)
45191 {
45192 {
45193 return dev_storage + 1305;
45194
45195 }
45196 }
45197 else
45198 {
45199 {
45200 return NULL;
45201
45202 }
45203 }
45204 case 'h':
45205 if (strncmp (KR_keyword, "/dev/sdbh10", 11) == 0)
45206 {
45207 {
45208 return dev_storage + 1290;
45209
45210 }
45211 }
45212 else
45213 {
45214 {
45215 return NULL;
45216
45217 }
45218 }
45219 case 'g':
45220 if (strncmp (KR_keyword, "/dev/sdbg10", 11) == 0)
45221 {
45222 {
45223 return dev_storage + 1275;
45224
45225 }
45226 }
45227 else
45228 {
45229 {
45230 return NULL;
45231
45232 }
45233 }
45234 case 'f':
45235 if (strncmp (KR_keyword, "/dev/sdbf10", 11) == 0)
45236 {
45237 {
45238 return dev_storage + 1260;
45239
45240 }
45241 }
45242 else
45243 {
45244 {
45245 return NULL;
45246
45247 }
45248 }
45249 case 'e':
45250 if (strncmp (KR_keyword, "/dev/sdbe10", 11) == 0)
45251 {
45252 {
45253 return dev_storage + 1245;
45254
45255 }
45256 }
45257 else
45258 {
45259 {
45260 return NULL;
45261
45262 }
45263 }
45264 case 'd':
45265 if (strncmp (KR_keyword, "/dev/sdbd10", 11) == 0)
45266 {
45267 {
45268 return dev_storage + 1230;
45269
45270 }
45271 }
45272 else
45273 {
45274 {
45275 return NULL;
45276
45277 }
45278 }
45279 case 'c':
45280 if (strncmp (KR_keyword, "/dev/sdbc10", 11) == 0)
45281 {
45282 {
45283 return dev_storage + 1215;
45284
45285 }
45286 }
45287 else
45288 {
45289 {
45290 return NULL;
45291
45292 }
45293 }
45294 case 'b':
45295 if (strncmp (KR_keyword, "/dev/sdbb10", 11) == 0)
45296 {
45297 {
45298 return dev_storage + 1200;
45299
45300 }
45301 }
45302 else
45303 {
45304 {
45305 return NULL;
45306
45307 }
45308 }
45309 case 'a':
45310 if (strncmp (KR_keyword, "/dev/sdba10", 11) == 0)
45311 {
45312 {
45313 return dev_storage + 1185;
45314
45315 }
45316 }
45317 else
45318 {
45319 {
45320 return NULL;
45321
45322 }
45323 }
45324 default:
45325 {
45326 return NULL;
45327
45328 }
45329 }
45330 case 'a':
45331 switch (KR_keyword [8])
45332 {
45333 case 'z':
45334 if (strncmp (KR_keyword, "/dev/sdaz10", 11) == 0)
45335 {
45336 {
45337 return dev_storage + 1144;
45338
45339 }
45340 }
45341 else
45342 {
45343 {
45344 return NULL;
45345
45346 }
45347 }
45348 case 'y':
45349 if (strncmp (KR_keyword, "/dev/sday10", 11) == 0)
45350 {
45351 {
45352 return dev_storage + 1129;
45353
45354 }
45355 }
45356 else
45357 {
45358 {
45359 return NULL;
45360
45361 }
45362 }
45363 case 'x':
45364 if (strncmp (KR_keyword, "/dev/sdax10", 11) == 0)
45365 {
45366 {
45367 return dev_storage + 1114;
45368
45369 }
45370 }
45371 else
45372 {
45373 {
45374 return NULL;
45375
45376 }
45377 }
45378 case 'w':
45379 if (strncmp (KR_keyword, "/dev/sdaw10", 11) == 0)
45380 {
45381 {
45382 return dev_storage + 1099;
45383
45384 }
45385 }
45386 else
45387 {
45388 {
45389 return NULL;
45390
45391 }
45392 }
45393 case 'v':
45394 if (strncmp (KR_keyword, "/dev/sdav10", 11) == 0)
45395 {
45396 {
45397 return dev_storage + 1084;
45398
45399 }
45400 }
45401 else
45402 {
45403 {
45404 return NULL;
45405
45406 }
45407 }
45408 case 'u':
45409 if (strncmp (KR_keyword, "/dev/sdau10", 11) == 0)
45410 {
45411 {
45412 return dev_storage + 1069;
45413
45414 }
45415 }
45416 else
45417 {
45418 {
45419 return NULL;
45420
45421 }
45422 }
45423 case 't':
45424 if (strncmp (KR_keyword, "/dev/sdat10", 11) == 0)
45425 {
45426 {
45427 return dev_storage + 1054;
45428
45429 }
45430 }
45431 else
45432 {
45433 {
45434 return NULL;
45435
45436 }
45437 }
45438 case 's':
45439 if (strncmp (KR_keyword, "/dev/sdas10", 11) == 0)
45440 {
45441 {
45442 return dev_storage + 1039;
45443
45444 }
45445 }
45446 else
45447 {
45448 {
45449 return NULL;
45450
45451 }
45452 }
45453 case 'r':
45454 if (strncmp (KR_keyword, "/dev/sdar10", 11) == 0)
45455 {
45456 {
45457 return dev_storage + 1024;
45458
45459 }
45460 }
45461 else
45462 {
45463 {
45464 return NULL;
45465
45466 }
45467 }
45468 case 'q':
45469 if (strncmp (KR_keyword, "/dev/sdaq10", 11) == 0)
45470 {
45471 {
45472 return dev_storage + 1009;
45473
45474 }
45475 }
45476 else
45477 {
45478 {
45479 return NULL;
45480
45481 }
45482 }
45483 case 'p':
45484 if (strncmp (KR_keyword, "/dev/sdap10", 11) == 0)
45485 {
45486 {
45487 return dev_storage + 994;
45488
45489 }
45490 }
45491 else
45492 {
45493 {
45494 return NULL;
45495
45496 }
45497 }
45498 case 'o':
45499 if (strncmp (KR_keyword, "/dev/sdao10", 11) == 0)
45500 {
45501 {
45502 return dev_storage + 979;
45503
45504 }
45505 }
45506 else
45507 {
45508 {
45509 return NULL;
45510
45511 }
45512 }
45513 case 'n':
45514 if (strncmp (KR_keyword, "/dev/sdan10", 11) == 0)
45515 {
45516 {
45517 return dev_storage + 964;
45518
45519 }
45520 }
45521 else
45522 {
45523 {
45524 return NULL;
45525
45526 }
45527 }
45528 case 'm':
45529 if (strncmp (KR_keyword, "/dev/sdam10", 11) == 0)
45530 {
45531 {
45532 return dev_storage + 949;
45533
45534 }
45535 }
45536 else
45537 {
45538 {
45539 return NULL;
45540
45541 }
45542 }
45543 case 'l':
45544 if (strncmp (KR_keyword, "/dev/sdal10", 11) == 0)
45545 {
45546 {
45547 return dev_storage + 934;
45548
45549 }
45550 }
45551 else
45552 {
45553 {
45554 return NULL;
45555
45556 }
45557 }
45558 case 'k':
45559 if (strncmp (KR_keyword, "/dev/sdak10", 11) == 0)
45560 {
45561 {
45562 return dev_storage + 919;
45563
45564 }
45565 }
45566 else
45567 {
45568 {
45569 return NULL;
45570
45571 }
45572 }
45573 case 'j':
45574 if (strncmp (KR_keyword, "/dev/sdaj10", 11) == 0)
45575 {
45576 {
45577 return dev_storage + 904;
45578
45579 }
45580 }
45581 else
45582 {
45583 {
45584 return NULL;
45585
45586 }
45587 }
45588 case 'i':
45589 if (strncmp (KR_keyword, "/dev/sdai10", 11) == 0)
45590 {
45591 {
45592 return dev_storage + 889;
45593
45594 }
45595 }
45596 else
45597 {
45598 {
45599 return NULL;
45600
45601 }
45602 }
45603 case 'h':
45604 if (strncmp (KR_keyword, "/dev/sdah10", 11) == 0)
45605 {
45606 {
45607 return dev_storage + 874;
45608
45609 }
45610 }
45611 else
45612 {
45613 {
45614 return NULL;
45615
45616 }
45617 }
45618 case 'g':
45619 if (strncmp (KR_keyword, "/dev/sdag10", 11) == 0)
45620 {
45621 {
45622 return dev_storage + 859;
45623
45624 }
45625 }
45626 else
45627 {
45628 {
45629 return NULL;
45630
45631 }
45632 }
45633 case 'f':
45634 if (strncmp (KR_keyword, "/dev/sdaf10", 11) == 0)
45635 {
45636 {
45637 return dev_storage + 844;
45638
45639 }
45640 }
45641 else
45642 {
45643 {
45644 return NULL;
45645
45646 }
45647 }
45648 case 'e':
45649 if (strncmp (KR_keyword, "/dev/sdae10", 11) == 0)
45650 {
45651 {
45652 return dev_storage + 829;
45653
45654 }
45655 }
45656 else
45657 {
45658 {
45659 return NULL;
45660
45661 }
45662 }
45663 case 'd':
45664 if (strncmp (KR_keyword, "/dev/sdad10", 11) == 0)
45665 {
45666 {
45667 return dev_storage + 814;
45668
45669 }
45670 }
45671 else
45672 {
45673 {
45674 return NULL;
45675
45676 }
45677 }
45678 case 'c':
45679 if (strncmp (KR_keyword, "/dev/sdac10", 11) == 0)
45680 {
45681 {
45682 return dev_storage + 799;
45683
45684 }
45685 }
45686 else
45687 {
45688 {
45689 return NULL;
45690
45691 }
45692 }
45693 case 'b':
45694 if (strncmp (KR_keyword, "/dev/sdab10", 11) == 0)
45695 {
45696 {
45697 return dev_storage + 784;
45698
45699 }
45700 }
45701 else
45702 {
45703 {
45704 return NULL;
45705
45706 }
45707 }
45708 case 'a':
45709 if (strncmp (KR_keyword, "/dev/sdaa10", 11) == 0)
45710 {
45711 {
45712 return dev_storage + 769;
45713
45714 }
45715 }
45716 else
45717 {
45718 {
45719 return NULL;
45720
45721 }
45722 }
45723 default:
45724 {
45725 return NULL;
45726
45727 }
45728 }
45729 default:
45730 {
45731 return NULL;
45732
45733 }
45734 }
45735 default:
45736 {
45737 return NULL;
45738
45739 }
45740 }
45741 case 12:
45742 switch (KR_keyword [5])
45743 {
45744 case 'w':
45745 if (strncmp (KR_keyword, "/dev/windows", 12) == 0)
45746 {
45747 {
45748 return dev_storage + 2576;
45749
45750 }
45751 }
45752 else
45753 {
45754 {
45755 return NULL;
45756
45757 }
45758 }
45759 case 'u':
45760 if (strncmp (KR_keyword, "/dev/urandom", 12) == 0)
45761 {
45762 {
45763 return dev_storage + 2575;
45764
45765 }
45766 }
45767 else
45768 {
45769 {
45770 return NULL;
45771
45772 }
45773 }
45774 case 'c':
45775 if (strncmp (KR_keyword, "/dev/console", 12) == 0)
45776 {
45777 {
45778 return dev_storage + 84;
45779
45780 }
45781 }
45782 else
45783 {
45784 {
45785 return NULL;
45786
45787 }
45788 }
45789 default:
45790 {
45791 return NULL;
45792
45793 }
45794 }
45795 case 14:
45796 if (strncmp (KR_keyword, "/dev/clipboard", 14) == 0)
45797 {
45798 {
45799 return dev_storage + 1;
45800
45801 }
45802 }
45803 else
45804 {
45805 {
45806 return NULL;
45807
45808 }
45809 }
45810 default:
45811 {
45812 return NULL;
45813
45814 }
45815 }
45816 }
45817
45818
45819
45820
45821
45822
45823 #undef BRACK
45824
45825 const device *dev_storage_end = dev_storage + (sizeof dev_storage / sizeof dev_storage[0]);
45826
45827 void
45828 device::parse (const char *s)
45829 {
45830 size_t len = strlen (s);
45831 const device *dev = KR_find_keyword (s, len);
45832
45833 if (!dev)
45834 *this = *fs_dev;
45835 else
45836 *this = *dev;
45837 }
45838
45839 void
45840 device::init ()
45841 {
45842 /* nothing to do... yet */
45843 }
45844
45845 void
45846 device::parse (_major_t major, _minor_t minor)
45847 {
45848 dev_t devn = FHDEV (major, minor);
45849
45850 d.devn = 0;
45851
45852 for (const device *devidx = dev_storage; devidx < dev_storage_end; devidx++)
45853 if (devidx->d.devn == devn)
45854 {
45855 *this = *devidx;
45856 break;
45857 }
45858
45859 if (!*this)
45860 d.devn = FHDEV (major, minor);
45861 }
45862
45863 void
45864 device::parse (dev_t dev)
45865 {
45866 parse (_major (dev), _minor (dev));
45867 }
45868
45869 void
45870 device::parsedisk (int drive, int part)
45871 {
45872 int base;
45873 if (drive < ('q' - 'a')) /* /dev/sda -to- /dev/sdp */
45874 base = DEV_SD_MAJOR;
45875 else if (drive < 32) /* /dev/sdq -to- /dev/sdaf */
45876 {
45877 base = DEV_SD1_MAJOR;
45878 drive -= 'q' - 'a';
45879 }
45880 else if (drive < 48) /* /dev/sdag -to- /dev/sdav */
45881 {
45882 base = DEV_SD2_MAJOR;
45883 drive -= 32;
45884 }
45885 else if (drive < 64) /* /dev/sdaw -to- /dev/sdbl */
45886 {
45887 base = DEV_SD3_MAJOR;
45888 drive -= 48;
45889 }
45890 else if (drive < 80) /* /dev/sdbm -to- /dev/sdcb */
45891 {
45892 base = DEV_SD4_MAJOR;
45893 drive -= 64;
45894 }
45895 else if (drive < 96) /* /dev/sdcc -to- /dev/sdcr */
45896 {
45897 base = DEV_SD5_MAJOR;
45898 drive -= 80;
45899 }
45900 else if (drive < 112) /* /dev/sdcs -to- /dev/sddh */
45901 {
45902 base = DEV_SD6_MAJOR;
45903 drive -= 96;
45904 }
45905 /* NOTE: This will cause multiple /dev/sddx entries in
45906 /proc/partitions if there are more than 128 devices */
45907 else /* /dev/sddi -to- /dev/sddx */
45908 {
45909 base = DEV_SD7_MAJOR;
45910 drive -= 112;
45911 }
45912 parse (base, part + (drive * 16));
45913 }
45914
45915
This page took 2.224968 seconds and 5 git commands to generate.