ua_dict 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,15 @@
1
+ ---
2
+ !binary "U0hBMQ==":
3
+ metadata.gz: !binary |-
4
+ ZWUxZmMwNWQxZWJjOTVkODA5NjkyM2MxNGM3MTYxNzg1YWJlYzk0ZQ==
5
+ data.tar.gz: !binary |-
6
+ Y2ZlM2E3ZTM1NTk3MjBkY2QyOGFjNmI4OWE5NzNmZDE0NWZjYjUzNw==
7
+ SHA512:
8
+ metadata.gz: !binary |-
9
+ Y2JhN2ZhODVmZWFiYmE4YmRkZGIxMGU1N2Y3ZWRjZDViOTNmODVkMTA5NTE2
10
+ ODc3NmQzZDQ1NDQ1ZWNjNzI2OWJjMzU0MDhiYmEyNTBlODg3OGJhNDcyZjM1
11
+ NjZmZTdmMjE3ZWVjYWNiMTBmMDFhMzFhYmQwNTNhMDZmNDM5YmM=
12
+ data.tar.gz: !binary |-
13
+ NWRmNGNlZGRjYzg0NmY3ZDQ0ZDVlMzNkYWJkZmM2YTBjZTY1YTc3ZmMwNGQ2
14
+ YWI5NjAyNTI5ZjIxOGE0Y2QyYmM0YmQzN2IyNWRkZmZmOGNlM2VlNjdlOWEw
15
+ MjI4MzRlMTQ4ODg0MGZlZThmNTE4NzZmMmRiZDlkNjQ0YmJkNzU=
@@ -0,0 +1,17 @@
1
+ *.gem
2
+ *.rbc
3
+ .bundle
4
+ .config
5
+ .yardoc
6
+ Gemfile.lock
7
+ InstalledFiles
8
+ _yardoc
9
+ coverage
10
+ doc/
11
+ lib/bundler/man
12
+ pkg
13
+ rdoc
14
+ spec/reports
15
+ test/tmp
16
+ test/version_tmp
17
+ tmp
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in ua_dict.gemspec
4
+ gemspec
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2014 Spirit
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,29 @@
1
+ # UaDict
2
+
3
+ TODO: Write a gem description
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ gem 'ua_dict'
10
+
11
+ And then execute:
12
+
13
+ $ bundle
14
+
15
+ Or install it yourself as:
16
+
17
+ $ gem install ua_dict
18
+
19
+ ## Usage
20
+
21
+ TODO: Write usage instructions here
22
+
23
+ ## Contributing
24
+
25
+ 1. Fork it ( http://github.com/<my-github-username>/ua_dict/fork )
26
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
27
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
28
+ 4. Push to the branch (`git push origin my-new-feature`)
29
+ 5. Create new Pull Request
@@ -0,0 +1 @@
1
+ require "bundler/gem_tasks"
@@ -0,0 +1,94 @@
1
+ require 'json'
2
+ require 'ua_dict/version'
3
+
4
+ module UaDict
5
+
6
+ #
7
+ # @browser_data 浏览器版本和制造商的关系数据
8
+ # @operating_data 操作系统和制造商的关系数据
9
+ # @device_data 设备和制造商的关系数据
10
+ #
11
+
12
+ def initialize_parser
13
+ @ua_dict_path = File.dirname(__FILE__) + '/ua_dict/dict/'
14
+
15
+ @browser_data = ua_data('Browser.json')
16
+ @operating_data = ua_data('OperatingSystem.json')
17
+ @device_data = ua_data('Device.json')
18
+
19
+ @mobile = false
20
+ end
21
+
22
+ def ua_data json_file
23
+ result = []
24
+ File.open(@ua_dict_path + json_file) do |f|
25
+ result = JSON.load(f)
26
+ end
27
+ raise "Parse error: #{json_file}" if result == []
28
+ result
29
+ end
30
+
31
+ def fetch_aliases op, ua
32
+ op['aliases'].each do |_alias|
33
+ if ua.upcase.include?(_alias.upcase)
34
+ return op, _alias
35
+ end
36
+ end
37
+ nil
38
+ end
39
+
40
+ def fetch_info type_data, ua
41
+ found, info = false, nil
42
+ type_data.each do |ua_dict|
43
+ has_res = fetch_aliases(ua_dict, ua)
44
+ if has_res
45
+ found, info = true, has_res
46
+ if ua_dict['children'] != []
47
+ found, info = fetch_info(ua_dict['children'], ua)
48
+ end
49
+ break if found
50
+ end
51
+ end
52
+ return found, info
53
+ end
54
+
55
+ def decode_ua ua
56
+ @b_info = fetch_info(@browser_data, ua)[1]
57
+ if ua.upcase.include?('MOBILE')
58
+ @mobile = true
59
+ @d_info = fetch_info(@device_data, ua)[1]
60
+ end
61
+ @o_info = fetch_info(@operating_data, ua)[1]
62
+ end
63
+
64
+ # [name, alias]
65
+ def brower_info
66
+ if @b_info
67
+ [@b_info[0]['name'], @b_info[1]]
68
+ else
69
+ ['Unknown', 'Unknown']
70
+ end
71
+ end
72
+
73
+ # [name, alias]
74
+ def device_info
75
+ if @d_info
76
+ [@d_info[0]['name'], @d_info[1]]
77
+ else
78
+ ['Unknown', 'Unknown']
79
+ end
80
+ end
81
+
82
+ # [name, alias]
83
+ def operating_info
84
+ if @o_info
85
+ [@o_info[0]['name'], @o_info[1]]
86
+ else
87
+ ['Unknown', 'Unknown']
88
+ end
89
+ end
90
+
91
+ def is_mobile?
92
+ @mobile
93
+ end
94
+ end
@@ -0,0 +1,1669 @@
1
+ [
2
+ {
3
+ "aliases": [
4
+ "360SE",
5
+ "360QH",
6
+ "360"
7
+ ],
8
+ "browserType": "WEB_BROWSER",
9
+ "children": [],
10
+ "excludeList": null,
11
+ "manufacturer": "OTHER",
12
+ "name": "360Browser",
13
+ "versionId": 21,
14
+ "versionRegEx": null
15
+ },
16
+ {
17
+ "aliases": [
18
+ "Avant Browser"
19
+ ],
20
+ "browserType": "WEB_BROWSER",
21
+ "children": [],
22
+ "excludeList": null,
23
+ "manufacturer": "OTHER",
24
+ "name": "Avant Browser",
25
+ "versionId": 22,
26
+ "versionRegEx": null
27
+ },
28
+ {
29
+ "aliases": [
30
+ "The World"
31
+ ],
32
+ "browserType": "WEB_BROWSER",
33
+ "children": [],
34
+ "excludeList": null,
35
+ "manufacturer": "OTHER",
36
+ "name": "World Browser",
37
+ "versionId": 23,
38
+ "versionRegEx": null
39
+ },
40
+ {
41
+ "aliases": [
42
+ "TencentTraveler",
43
+ "TT",
44
+ "QQ"
45
+ ],
46
+ "browserType": "WEB_BROWSER",
47
+ "children": [],
48
+ "excludeList": null,
49
+ "manufacturer": "TENCENT",
50
+ "name": "Tencent Browser",
51
+ "versionId": 24,
52
+ "versionRegEx": "TencentTraveler (\\d+)\\.(\\d+)"
53
+ },
54
+ {
55
+ "aliases": [
56
+ "UC",
57
+ "UCWEB"
58
+ ],
59
+ "browserType": "MOBILE_BROWSER",
60
+ "children": [],
61
+ "excludeList": null,
62
+ "manufacturer": "OTHER",
63
+ "name": "UC Browser",
64
+ "versionId": 25,
65
+ "versionRegEx": "UCWEB(\\d+)\\.(\\d+)\\.(\\d+)\\.(\\d+)/(\\d+)/(\\d+)"
66
+ },
67
+ {
68
+ "aliases": [
69
+ "Greenbrowser"
70
+ ],
71
+ "browserType": "WEB_BROWSER",
72
+ "children": [],
73
+ "excludeList": null,
74
+ "manufacturer": "OTHER",
75
+ "name": "Green Browser",
76
+ "versionId": 26,
77
+ "versionRegEx": null
78
+ },
79
+ {
80
+ "aliases": [
81
+ "MiuiBrowser",
82
+ "Xiaomi"
83
+ ],
84
+ "browserType": "MOBILE_BROWSER",
85
+ "children": [],
86
+ "excludeList": null,
87
+ "manufacturer": "XIAOMI",
88
+ "name": "Xiao Mi Browser",
89
+ "versionId": 27,
90
+ "versionRegEx": "MiuiBrowser/(\\d+\\.)"
91
+ },
92
+ {
93
+ "aliases": [
94
+ "baidu"
95
+ ],
96
+ "browserType": "WEB_BROWSER",
97
+ "children": [
98
+ {
99
+ "aliases": [
100
+ "mobile"
101
+ ],
102
+ "browserType": "MOBILE_BROWSER",
103
+ "children": [],
104
+ "excludeList": null,
105
+ "manufacturer": "OTHER",
106
+ "name": "Baidu Mobile Browser",
107
+ "versionId": 29,
108
+ "versionRegEx": null
109
+ }
110
+ ],
111
+ "excludeList": null,
112
+ "manufacturer": "OTHER",
113
+ "name": "Bai Du Browser",
114
+ "versionId": 28,
115
+ "versionRegEx": null
116
+ },
117
+ {
118
+ "aliases": [
119
+ "Nokie",
120
+ "BrowserNG"
121
+ ],
122
+ "browserType": "MOBILE_BROWSER",
123
+ "children": [],
124
+ "excludeList": null,
125
+ "manufacturer": "NOKIA",
126
+ "name": "Nokie Browser",
127
+ "versionId": 30,
128
+ "versionRegEx": null
129
+ },
130
+ {
131
+ "aliases": [
132
+ "Maxthon"
133
+ ],
134
+ "browserType": "WEB_BROWSER",
135
+ "children": [],
136
+ "excludeList": null,
137
+ "manufacturer": "OTHER",
138
+ "name": "Maxthon Browser",
139
+ "versionId": 32,
140
+ "versionRegEx": "Maxthon(\\d+)\\.(\\d+)\\.(\\d+)\\.(\\d+)"
141
+ },
142
+ {
143
+ "aliases": [
144
+ "MetaSr"
145
+ ],
146
+ "browserType": "WEB_BROWSER",
147
+ "children": [],
148
+ "excludeList": null,
149
+ "manufacturer": "OTHER",
150
+ "name": "Sogou Browser",
151
+ "versionId": 33,
152
+ "versionRegEx": "MetaSr (\\d+)\\.(\\d+)"
153
+ },
154
+ {
155
+ "aliases": [
156
+ "MSOffice"
157
+ ],
158
+ "browserType": "EMAIL_CLIENT",
159
+ "children": [
160
+ {
161
+ "aliases": [
162
+ "MSOffice 12"
163
+ ],
164
+ "browserType": "EMAIL_CLIENT",
165
+ "children": [],
166
+ "excludeList": null,
167
+ "manufacturer": "MICROSOFT",
168
+ "name": "Outlook 2007",
169
+ "versionId": 2,
170
+ "versionRegEx": null
171
+ },
172
+ {
173
+ "aliases": [
174
+ "Microsoft Outlook 15"
175
+ ],
176
+ "browserType": "EMAIL_CLIENT",
177
+ "children": [],
178
+ "excludeList": null,
179
+ "manufacturer": "MICROSOFT",
180
+ "name": "Outlook 2013",
181
+ "versionId": 3,
182
+ "versionRegEx": null
183
+ },
184
+ {
185
+ "aliases": [
186
+ "MSOffice 14",
187
+ "Microsoft Outlook 14"
188
+ ],
189
+ "browserType": "EMAIL_CLIENT",
190
+ "children": [],
191
+ "excludeList": null,
192
+ "manufacturer": "MICROSOFT",
193
+ "name": "Outlook 2010",
194
+ "versionId": 4,
195
+ "versionRegEx": null
196
+ }
197
+ ],
198
+ "excludeList": null,
199
+ "manufacturer": "MICROSOFT",
200
+ "name": "Outlook",
201
+ "versionId": 1,
202
+ "versionRegEx": "MSOffice (([0-9]+))"
203
+ },
204
+ {
205
+ "aliases": [
206
+ "MSIE",
207
+ "Trident"
208
+ ],
209
+ "browserType": "WEB_BROWSER",
210
+ "children": [
211
+ {
212
+ "aliases": [
213
+ "Outlook-Express/7.0"
214
+ ],
215
+ "browserType": "EMAIL_CLIENT",
216
+ "children": [],
217
+ "excludeList": null,
218
+ "manufacturer": "MICROSOFT",
219
+ "name": "Windows Live Mail",
220
+ "versionId": 66,
221
+ "versionRegEx": null
222
+ },
223
+ {
224
+ "aliases": [
225
+ "IEMobile/9"
226
+ ],
227
+ "browserType": "MOBILE_BROWSER",
228
+ "children": [],
229
+ "excludeList": null,
230
+ "manufacturer": "MICROSOFT",
231
+ "name": "IE Mobile 9",
232
+ "versionId": 67,
233
+ "versionRegEx": null
234
+ },
235
+ {
236
+ "aliases": [
237
+ "IEMobile 7"
238
+ ],
239
+ "browserType": "MOBILE_BROWSER",
240
+ "children": [],
241
+ "excludeList": null,
242
+ "manufacturer": "MICROSOFT",
243
+ "name": "IE Mobile 7",
244
+ "versionId": 68,
245
+ "versionRegEx": null
246
+ },
247
+ {
248
+ "aliases": [
249
+ "IEMobile 6"
250
+ ],
251
+ "browserType": "MOBILE_BROWSER",
252
+ "children": [],
253
+ "excludeList": null,
254
+ "manufacturer": "MICROSOFT",
255
+ "name": "IE Mobile 6",
256
+ "versionId": 69,
257
+ "versionRegEx": null
258
+ },
259
+ {
260
+ "aliases": [
261
+ "Trident/7"
262
+ ],
263
+ "browserType": "WEB_BROWSER",
264
+ "children": [],
265
+ "excludeList": null,
266
+ "manufacturer": "MICROSOFT",
267
+ "name": "Internet Explorer 11",
268
+ "versionId": 70,
269
+ "versionRegEx": "Trident\\/7\\.0; rv:11"
270
+ },
271
+ {
272
+ "aliases": [
273
+ "MSIE 10"
274
+ ],
275
+ "browserType": "WEB_BROWSER",
276
+ "children": [],
277
+ "excludeList": null,
278
+ "manufacturer": "MICROSOFT",
279
+ "name": "Internet Explorer 10",
280
+ "versionId": 71,
281
+ "versionRegEx": null
282
+ },
283
+ {
284
+ "aliases": [
285
+ "MSIE 9"
286
+ ],
287
+ "browserType": "WEB_BROWSER",
288
+ "children": [],
289
+ "excludeList": null,
290
+ "manufacturer": "MICROSOFT",
291
+ "name": "Internet Explorer 9",
292
+ "versionId": 72,
293
+ "versionRegEx": null
294
+ },
295
+ {
296
+ "aliases": [
297
+ "MSIE 8"
298
+ ],
299
+ "browserType": "WEB_BROWSER",
300
+ "children": [],
301
+ "excludeList": null,
302
+ "manufacturer": "MICROSOFT",
303
+ "name": "Internet Explorer 8",
304
+ "versionId": 73,
305
+ "versionRegEx": null
306
+ },
307
+ {
308
+ "aliases": [
309
+ "MSIE 7"
310
+ ],
311
+ "browserType": "WEB_BROWSER",
312
+ "children": [],
313
+ "excludeList": null,
314
+ "manufacturer": "MICROSOFT",
315
+ "name": "Internet Explorer 7",
316
+ "versionId": 74,
317
+ "versionRegEx": null
318
+ },
319
+ {
320
+ "aliases": [
321
+ "MSIE 6"
322
+ ],
323
+ "browserType": "WEB_BROWSER",
324
+ "children": [],
325
+ "excludeList": null,
326
+ "manufacturer": "MICROSOFT",
327
+ "name": "Internet Explorer 6",
328
+ "versionId": 75,
329
+ "versionRegEx": null
330
+ },
331
+ {
332
+ "aliases": [
333
+ "MSIE 5.5"
334
+ ],
335
+ "browserType": "WEB_BROWSER",
336
+ "children": [],
337
+ "excludeList": null,
338
+ "manufacturer": "MICROSOFT",
339
+ "name": "Internet Explorer 5.5",
340
+ "versionId": 76,
341
+ "versionRegEx": null
342
+ },
343
+ {
344
+ "aliases": [
345
+ "MSIE 5"
346
+ ],
347
+ "browserType": "WEB_BROWSER",
348
+ "children": [],
349
+ "excludeList": null,
350
+ "manufacturer": "MICROSOFT",
351
+ "name": "Internet Explorer 5",
352
+ "versionId": 77,
353
+ "versionRegEx": null
354
+ }
355
+ ],
356
+ "excludeList": null,
357
+ "manufacturer": "MICROSOFT",
358
+ "name": "Internet Explorer",
359
+ "versionId": 65,
360
+ "versionRegEx": "(?:MSIE (([\\d]+)\\.([\\w]+))|Trident\\/(([0-9]+)\\.([0-9]+)))"
361
+ },
362
+ {
363
+ "aliases": [
364
+ "Chrome"
365
+ ],
366
+ "browserType": "WEB_BROWSER",
367
+ "children": [
368
+ {
369
+ "aliases": [
370
+ "Chrome/31"
371
+ ],
372
+ "browserType": "WEB_BROWSER",
373
+ "children": [],
374
+ "excludeList": [
375
+ "OPR/",
376
+ "Web Preview"
377
+ ],
378
+ "manufacturer": "GOOGLE",
379
+ "name": "Chrome 31",
380
+ "versionId": 2,
381
+ "versionRegEx": null
382
+ },
383
+ {
384
+ "aliases": [
385
+ "Chrome/30"
386
+ ],
387
+ "browserType": "WEB_BROWSER",
388
+ "children": [],
389
+ "excludeList": [
390
+ "OPR/",
391
+ "Web Preview"
392
+ ],
393
+ "manufacturer": "GOOGLE",
394
+ "name": "Chrome 30",
395
+ "versionId": 3,
396
+ "versionRegEx": null
397
+ },
398
+ {
399
+ "aliases": [
400
+ "Chrome/29"
401
+ ],
402
+ "browserType": "WEB_BROWSER",
403
+ "children": [],
404
+ "excludeList": [
405
+ "OPR/",
406
+ "Web Preview"
407
+ ],
408
+ "manufacturer": "GOOGLE",
409
+ "name": "Chrome 29",
410
+ "versionId": 4,
411
+ "versionRegEx": null
412
+ },
413
+ {
414
+ "aliases": [
415
+ "Chrome/28"
416
+ ],
417
+ "browserType": "WEB_BROWSER",
418
+ "children": [],
419
+ "excludeList": [
420
+ "OPR/",
421
+ "Web Preview"
422
+ ],
423
+ "manufacturer": "GOOGLE",
424
+ "name": "Chrome 28",
425
+ "versionId": 5,
426
+ "versionRegEx": null
427
+ },
428
+ {
429
+ "aliases": [
430
+ "Chrome/27"
431
+ ],
432
+ "browserType": "WEB_BROWSER",
433
+ "children": [],
434
+ "excludeList": [
435
+ "Web Preview"
436
+ ],
437
+ "manufacturer": "GOOGLE",
438
+ "name": "Chrome 27",
439
+ "versionId": 6,
440
+ "versionRegEx": null
441
+ },
442
+ {
443
+ "aliases": [
444
+ "Chrome/26"
445
+ ],
446
+ "browserType": "WEB_BROWSER",
447
+ "children": [],
448
+ "excludeList": [
449
+ "Web Preview"
450
+ ],
451
+ "manufacturer": "GOOGLE",
452
+ "name": "Chrome 26",
453
+ "versionId": 7,
454
+ "versionRegEx": null
455
+ },
456
+ {
457
+ "aliases": [
458
+ "Chrome/25"
459
+ ],
460
+ "browserType": "WEB_BROWSER",
461
+ "children": [],
462
+ "excludeList": [
463
+ "Web Preview"
464
+ ],
465
+ "manufacturer": "GOOGLE",
466
+ "name": "Chrome 25",
467
+ "versionId": 8,
468
+ "versionRegEx": null
469
+ },
470
+ {
471
+ "aliases": [
472
+ "Chrome/24"
473
+ ],
474
+ "browserType": "WEB_BROWSER",
475
+ "children": [],
476
+ "excludeList": [
477
+ "Web Preview"
478
+ ],
479
+ "manufacturer": "GOOGLE",
480
+ "name": "Chrome 24",
481
+ "versionId": 9,
482
+ "versionRegEx": null
483
+ },
484
+ {
485
+ "aliases": [
486
+ "Chrome/23"
487
+ ],
488
+ "browserType": "WEB_BROWSER",
489
+ "children": [],
490
+ "excludeList": [
491
+ "Web Preview"
492
+ ],
493
+ "manufacturer": "GOOGLE",
494
+ "name": "Chrome 23",
495
+ "versionId": 10,
496
+ "versionRegEx": null
497
+ },
498
+ {
499
+ "aliases": [
500
+ "Chrome/22"
501
+ ],
502
+ "browserType": "WEB_BROWSER",
503
+ "children": [],
504
+ "excludeList": [
505
+ "Web Preview"
506
+ ],
507
+ "manufacturer": "GOOGLE",
508
+ "name": "Chrome 22",
509
+ "versionId": 11,
510
+ "versionRegEx": null
511
+ },
512
+ {
513
+ "aliases": [
514
+ "Chrome/21"
515
+ ],
516
+ "browserType": "WEB_BROWSER",
517
+ "children": [],
518
+ "excludeList": [
519
+ "Web Preview"
520
+ ],
521
+ "manufacturer": "GOOGLE",
522
+ "name": "Chrome 21",
523
+ "versionId": 12,
524
+ "versionRegEx": null
525
+ },
526
+ {
527
+ "aliases": [
528
+ "Chrome/20"
529
+ ],
530
+ "browserType": "WEB_BROWSER",
531
+ "children": [],
532
+ "excludeList": [
533
+ "Web Preview"
534
+ ],
535
+ "manufacturer": "GOOGLE",
536
+ "name": "Chrome 20",
537
+ "versionId": 13,
538
+ "versionRegEx": null
539
+ },
540
+ {
541
+ "aliases": [
542
+ "Chrome/19"
543
+ ],
544
+ "browserType": "WEB_BROWSER",
545
+ "children": [],
546
+ "excludeList": [
547
+ "Web Preview"
548
+ ],
549
+ "manufacturer": "GOOGLE",
550
+ "name": "Chrome 19",
551
+ "versionId": 14,
552
+ "versionRegEx": null
553
+ },
554
+ {
555
+ "aliases": [
556
+ "Chrome/18"
557
+ ],
558
+ "browserType": "WEB_BROWSER",
559
+ "children": [],
560
+ "excludeList": null,
561
+ "manufacturer": "GOOGLE",
562
+ "name": "Chrome 18",
563
+ "versionId": 15,
564
+ "versionRegEx": null
565
+ },
566
+ {
567
+ "aliases": [
568
+ "Chrome/17"
569
+ ],
570
+ "browserType": "WEB_BROWSER",
571
+ "children": [],
572
+ "excludeList": null,
573
+ "manufacturer": "GOOGLE",
574
+ "name": "Chrome 17",
575
+ "versionId": 16,
576
+ "versionRegEx": null
577
+ },
578
+ {
579
+ "aliases": [
580
+ "Chrome/16"
581
+ ],
582
+ "browserType": "WEB_BROWSER",
583
+ "children": [],
584
+ "excludeList": null,
585
+ "manufacturer": "GOOGLE",
586
+ "name": "Chrome 16",
587
+ "versionId": 17,
588
+ "versionRegEx": null
589
+ },
590
+ {
591
+ "aliases": [
592
+ "Chrome/15"
593
+ ],
594
+ "browserType": "WEB_BROWSER",
595
+ "children": [],
596
+ "excludeList": null,
597
+ "manufacturer": "GOOGLE",
598
+ "name": "Chrome 15",
599
+ "versionId": 18,
600
+ "versionRegEx": null
601
+ },
602
+ {
603
+ "aliases": [
604
+ "Chrome/14"
605
+ ],
606
+ "browserType": "WEB_BROWSER",
607
+ "children": [],
608
+ "excludeList": null,
609
+ "manufacturer": "GOOGLE",
610
+ "name": "Chrome 14",
611
+ "versionId": 19,
612
+ "versionRegEx": null
613
+ },
614
+ {
615
+ "aliases": [
616
+ "Chrome/13"
617
+ ],
618
+ "browserType": "WEB_BROWSER",
619
+ "children": [],
620
+ "excludeList": null,
621
+ "manufacturer": "GOOGLE",
622
+ "name": "Chrome 13",
623
+ "versionId": 20,
624
+ "versionRegEx": null
625
+ },
626
+ {
627
+ "aliases": [
628
+ "Chrome/12"
629
+ ],
630
+ "browserType": "WEB_BROWSER",
631
+ "children": [],
632
+ "excludeList": null,
633
+ "manufacturer": "GOOGLE",
634
+ "name": "Chrome 12",
635
+ "versionId": 21,
636
+ "versionRegEx": null
637
+ },
638
+ {
639
+ "aliases": [
640
+ "Chrome/11"
641
+ ],
642
+ "browserType": "WEB_BROWSER",
643
+ "children": [],
644
+ "excludeList": null,
645
+ "manufacturer": "GOOGLE",
646
+ "name": "Chrome 11",
647
+ "versionId": 22,
648
+ "versionRegEx": null
649
+ },
650
+ {
651
+ "aliases": [
652
+ "Chrome/10"
653
+ ],
654
+ "browserType": "WEB_BROWSER",
655
+ "children": [],
656
+ "excludeList": null,
657
+ "manufacturer": "GOOGLE",
658
+ "name": "Chrome 10",
659
+ "versionId": 23,
660
+ "versionRegEx": null
661
+ },
662
+ {
663
+ "aliases": [
664
+ "Chrome/9"
665
+ ],
666
+ "browserType": "WEB_BROWSER",
667
+ "children": [],
668
+ "excludeList": null,
669
+ "manufacturer": "GOOGLE",
670
+ "name": "Chrome 9",
671
+ "versionId": 24,
672
+ "versionRegEx": null
673
+ },
674
+ {
675
+ "aliases": [
676
+ "Chrome/8"
677
+ ],
678
+ "browserType": "WEB_BROWSER",
679
+ "children": [],
680
+ "excludeList": null,
681
+ "manufacturer": "GOOGLE",
682
+ "name": "Chrome 8",
683
+ "versionId": 25,
684
+ "versionRegEx": null
685
+ }
686
+ ],
687
+ "excludeList": [
688
+ "OPR/",
689
+ "Web Preview"
690
+ ],
691
+ "manufacturer": "GOOGLE",
692
+ "name": "Chrome",
693
+ "versionId": 1,
694
+ "versionRegEx": "Chrome\\/(([0-9]+)\\.?([\\w]+)?(\\.[\\w]+)?(\\.[\\w]+)?)"
695
+ },
696
+ {
697
+ "aliases": [
698
+ "OmniWeb"
699
+ ],
700
+ "browserType": "WEB_BROWSER",
701
+ "children": [],
702
+ "excludeList": null,
703
+ "manufacturer": "OTHER",
704
+ "name": "Omniweb",
705
+ "versionId": 2,
706
+ "versionRegEx": null
707
+ },
708
+ {
709
+ "aliases": [
710
+ "Safari"
711
+ ],
712
+ "browserType": "WEB_BROWSER",
713
+ "children": [
714
+ {
715
+ "aliases": [
716
+ "CrMo",
717
+ "CriOS"
718
+ ],
719
+ "browserType": "MOBILE_BROWSER",
720
+ "children": [],
721
+ "excludeList": null,
722
+ "manufacturer": "GOOGLE",
723
+ "name": "Chrome Mobile",
724
+ "versionId": 193,
725
+ "versionRegEx": "(?:CriOS|CrMo)\\/(([0-9]+)\\.?([\\w]+)?(\\.[\\w]+)?(\\.[\\w]+)?)"
726
+ },
727
+ {
728
+ "aliases": [
729
+ "BB10"
730
+ ],
731
+ "browserType": "MOBILE_BROWSER",
732
+ "children": [],
733
+ "excludeList": null,
734
+ "manufacturer": "BLACKBERRY",
735
+ "name": "BlackBerry",
736
+ "versionId": 10,
737
+ "versionRegEx": null
738
+ },
739
+ {
740
+ "aliases": [
741
+ "Mobile Safari",
742
+ "Mobile/"
743
+ ],
744
+ "browserType": "MOBILE_BROWSER",
745
+ "children": [],
746
+ "excludeList": null,
747
+ "manufacturer": "APPLE",
748
+ "name": "Mobile Safari",
749
+ "versionId": 2,
750
+ "versionRegEx": null
751
+ },
752
+ {
753
+ "aliases": [
754
+ "Silk/"
755
+ ],
756
+ "browserType": "WEB_BROWSER",
757
+ "children": [],
758
+ "excludeList": null,
759
+ "manufacturer": "AMAZON",
760
+ "name": "Silk",
761
+ "versionId": 15,
762
+ "versionRegEx": "Silk\\/(([0-9]+)\\.?([\\w]+)?(\\.[\\w]+)?(\\-[\\w]+)?)"
763
+ },
764
+ {
765
+ "aliases": [
766
+ "Version/6"
767
+ ],
768
+ "browserType": "WEB_BROWSER",
769
+ "children": [],
770
+ "excludeList": null,
771
+ "manufacturer": "APPLE",
772
+ "name": "Safari 6",
773
+ "versionId": 6,
774
+ "versionRegEx": null
775
+ },
776
+ {
777
+ "aliases": [
778
+ "Version/5"
779
+ ],
780
+ "browserType": "WEB_BROWSER",
781
+ "children": [],
782
+ "excludeList": null,
783
+ "manufacturer": "APPLE",
784
+ "name": "Safari 5",
785
+ "versionId": 3,
786
+ "versionRegEx": null
787
+ },
788
+ {
789
+ "aliases": [
790
+ "Version/4"
791
+ ],
792
+ "browserType": "WEB_BROWSER",
793
+ "children": [],
794
+ "excludeList": null,
795
+ "manufacturer": "APPLE",
796
+ "name": "Safari 4",
797
+ "versionId": 4,
798
+ "versionRegEx": null
799
+ }
800
+ ],
801
+ "excludeList": [
802
+ "OPR/",
803
+ "Web Preview"
804
+ ],
805
+ "manufacturer": "APPLE",
806
+ "name": "Safari",
807
+ "versionId": 192,
808
+ "versionRegEx": "Version\\/(([0-9]+)\\.?([\\w]+)?(\\.[\\w]+)?)"
809
+ },
810
+ {
811
+ "aliases": [
812
+ " OPR/",
813
+ "Opera"
814
+ ],
815
+ "browserType": "WEB_BROWSER",
816
+ "children": [
817
+ {
818
+ "aliases": [
819
+ "Opera Mini"
820
+ ],
821
+ "browserType": "MOBILE_BROWSER",
822
+ "children": [],
823
+ "excludeList": null,
824
+ "manufacturer": "OPERA",
825
+ "name": "Opera Mini",
826
+ "versionId": 20,
827
+ "versionRegEx": null
828
+ },
829
+ {
830
+ "aliases": [
831
+ "OPR/16."
832
+ ],
833
+ "browserType": "WEB_BROWSER",
834
+ "children": [],
835
+ "excludeList": null,
836
+ "manufacturer": "OPERA",
837
+ "name": "Opera 16",
838
+ "versionId": 16,
839
+ "versionRegEx": "OPR\\/(([\\d]+)\\.([\\w]+)?(\\.[\\w]+)?(\\.[\\w]+)?)"
840
+ },
841
+ {
842
+ "aliases": [
843
+ "OPR/15."
844
+ ],
845
+ "browserType": "WEB_BROWSER",
846
+ "children": [],
847
+ "excludeList": null,
848
+ "manufacturer": "OPERA",
849
+ "name": "Opera 15",
850
+ "versionId": 15,
851
+ "versionRegEx": "OPR\\/(([\\d]+)\\.([\\w]+)?(\\.[\\w]+)?(\\.[\\w]+)?)"
852
+ },
853
+ {
854
+ "aliases": [
855
+ "Opera/12",
856
+ "Version/12."
857
+ ],
858
+ "browserType": "WEB_BROWSER",
859
+ "children": [],
860
+ "excludeList": null,
861
+ "manufacturer": "OPERA",
862
+ "name": "Opera 12",
863
+ "versionId": 12,
864
+ "versionRegEx": "Version\\/(([\\d]+)\\.([\\w]+))"
865
+ },
866
+ {
867
+ "aliases": [
868
+ "Version/11."
869
+ ],
870
+ "browserType": "WEB_BROWSER",
871
+ "children": [],
872
+ "excludeList": null,
873
+ "manufacturer": "OPERA",
874
+ "name": "Opera 11",
875
+ "versionId": 11,
876
+ "versionRegEx": "Version\\/(([\\d]+)\\.([\\w]+))"
877
+ },
878
+ {
879
+ "aliases": [
880
+ "Opera/9.8"
881
+ ],
882
+ "browserType": "WEB_BROWSER",
883
+ "children": [],
884
+ "excludeList": null,
885
+ "manufacturer": "OPERA",
886
+ "name": "Opera 10",
887
+ "versionId": 10,
888
+ "versionRegEx": "Version\\/(([\\d]+)\\.([\\w]+))"
889
+ },
890
+ {
891
+ "aliases": [
892
+ "Opera/9"
893
+ ],
894
+ "browserType": "WEB_BROWSER",
895
+ "children": [],
896
+ "excludeList": null,
897
+ "manufacturer": "OPERA",
898
+ "name": "Opera 9",
899
+ "versionId": 5,
900
+ "versionRegEx": null
901
+ }
902
+ ],
903
+ "excludeList": null,
904
+ "manufacturer": "OPERA",
905
+ "name": "Opera",
906
+ "versionId": 1,
907
+ "versionRegEx": "Opera\\/(([\\d]+)\\.([\\w]+))"
908
+ },
909
+ {
910
+ "aliases": [
911
+ "Konqueror"
912
+ ],
913
+ "browserType": "WEB_BROWSER",
914
+ "children": [],
915
+ "excludeList": null,
916
+ "manufacturer": "OTHER",
917
+ "name": "Konqueror",
918
+ "versionId": 1,
919
+ "versionRegEx": "Konqueror\\/(([0-9]+)\\.?([\\w]+)?(-[\\w]+)?)"
920
+ },
921
+ {
922
+ "aliases": [
923
+ "Dolfin/2"
924
+ ],
925
+ "browserType": "MOBILE_BROWSER",
926
+ "children": [],
927
+ "excludeList": null,
928
+ "manufacturer": "SAMSUNG",
929
+ "name": "Samsung Dolphin 2",
930
+ "versionId": 1,
931
+ "versionRegEx": null
932
+ },
933
+ {
934
+ "aliases": [
935
+ "AppleWebKit"
936
+ ],
937
+ "browserType": "WEB_BROWSER",
938
+ "children": [
939
+ {
940
+ "aliases": [
941
+ "iTunes"
942
+ ],
943
+ "browserType": "APP",
944
+ "children": [],
945
+ "excludeList": null,
946
+ "manufacturer": "APPLE",
947
+ "name": "iTunes",
948
+ "versionId": 52,
949
+ "versionRegEx": null
950
+ },
951
+ {
952
+ "aliases": [
953
+ "MacAppStore"
954
+ ],
955
+ "browserType": "APP",
956
+ "children": [],
957
+ "excludeList": null,
958
+ "manufacturer": "APPLE",
959
+ "name": "App Store",
960
+ "versionId": 53,
961
+ "versionRegEx": null
962
+ },
963
+ {
964
+ "aliases": [
965
+ "AdobeAIR"
966
+ ],
967
+ "browserType": "APP",
968
+ "children": [],
969
+ "excludeList": null,
970
+ "manufacturer": "ADOBE",
971
+ "name": "Adobe AIR application",
972
+ "versionId": 1,
973
+ "versionRegEx": null
974
+ }
975
+ ],
976
+ "excludeList": [
977
+ "OPR/",
978
+ "Web Preview"
979
+ ],
980
+ "manufacturer": "APPLE",
981
+ "name": "Apple WebKit",
982
+ "versionId": 50,
983
+ "versionRegEx": null
984
+ },
985
+ {
986
+ "aliases": [
987
+ "Lotus-Notes"
988
+ ],
989
+ "browserType": "EMAIL_CLIENT",
990
+ "children": [],
991
+ "excludeList": null,
992
+ "manufacturer": "OTHER",
993
+ "name": "Lotus Notes",
994
+ "versionId": 3,
995
+ "versionRegEx": "Lotus-Notes\\/(([\\d]+)\\.([\\w]+))"
996
+ },
997
+ {
998
+ "aliases": [
999
+ "Camino"
1000
+ ],
1001
+ "browserType": "WEB_BROWSER",
1002
+ "children": [
1003
+ {
1004
+ "aliases": [
1005
+ "Camino/2"
1006
+ ],
1007
+ "browserType": "WEB_BROWSER",
1008
+ "children": [],
1009
+ "excludeList": null,
1010
+ "manufacturer": "OTHER",
1011
+ "name": "Camino 2",
1012
+ "versionId": 17,
1013
+ "versionRegEx": null
1014
+ }
1015
+ ],
1016
+ "excludeList": null,
1017
+ "manufacturer": "OTHER",
1018
+ "name": "Camino",
1019
+ "versionId": 5,
1020
+ "versionRegEx": "Camino\\/(([0-9]+)\\.?([\\w]+)?(\\.[\\w]+)?)"
1021
+ },
1022
+ {
1023
+ "aliases": [
1024
+ "Flock"
1025
+ ],
1026
+ "browserType": "WEB_BROWSER",
1027
+ "children": [],
1028
+ "excludeList": null,
1029
+ "manufacturer": "OTHER",
1030
+ "name": "Flock",
1031
+ "versionId": 4,
1032
+ "versionRegEx": "Flock\\/(([0-9]+)\\.?([\\w]+)?(\\.[\\w]+)?)"
1033
+ },
1034
+ {
1035
+ "aliases": [
1036
+ "Firefox"
1037
+ ],
1038
+ "browserType": "WEB_BROWSER",
1039
+ "children": [
1040
+ {
1041
+ "aliases": [
1042
+ "Firefox/3.5 Maemo"
1043
+ ],
1044
+ "browserType": "MOBILE_BROWSER",
1045
+ "children": [],
1046
+ "excludeList": null,
1047
+ "manufacturer": "MOZILLA",
1048
+ "name": "Firefox 3 Mobile",
1049
+ "versionId": 2,
1050
+ "versionRegEx": null
1051
+ },
1052
+ {
1053
+ "aliases": [
1054
+ "Mobile"
1055
+ ],
1056
+ "browserType": "MOBILE_BROWSER",
1057
+ "children": [
1058
+ {
1059
+ "aliases": [
1060
+ "Firefox/23"
1061
+ ],
1062
+ "browserType": "MOBILE_BROWSER",
1063
+ "children": [],
1064
+ "excludeList": null,
1065
+ "manufacturer": "MOZILLA",
1066
+ "name": "Firefox Mobile 23",
1067
+ "versionId": 4,
1068
+ "versionRegEx": null
1069
+ }
1070
+ ],
1071
+ "excludeList": null,
1072
+ "manufacturer": "MOZILLA",
1073
+ "name": "Firefox Mobile",
1074
+ "versionId": 3,
1075
+ "versionRegEx": null
1076
+ },
1077
+ {
1078
+ "aliases": [
1079
+ "Firefox/26"
1080
+ ],
1081
+ "browserType": "WEB_BROWSER",
1082
+ "children": [],
1083
+ "excludeList": null,
1084
+ "manufacturer": "MOZILLA",
1085
+ "name": "Firefox 26",
1086
+ "versionId": 5,
1087
+ "versionRegEx": null
1088
+ },
1089
+ {
1090
+ "aliases": [
1091
+ "Firefox/25"
1092
+ ],
1093
+ "browserType": "WEB_BROWSER",
1094
+ "children": [],
1095
+ "excludeList": null,
1096
+ "manufacturer": "MOZILLA",
1097
+ "name": "Firefox 25",
1098
+ "versionId": 6,
1099
+ "versionRegEx": null
1100
+ },
1101
+ {
1102
+ "aliases": [
1103
+ "Firefox/24"
1104
+ ],
1105
+ "browserType": "WEB_BROWSER",
1106
+ "children": [],
1107
+ "excludeList": null,
1108
+ "manufacturer": "MOZILLA",
1109
+ "name": "Firefox 24",
1110
+ "versionId": 7,
1111
+ "versionRegEx": null
1112
+ },
1113
+ {
1114
+ "aliases": [
1115
+ "Firefox/23"
1116
+ ],
1117
+ "browserType": "WEB_BROWSER",
1118
+ "children": [],
1119
+ "excludeList": null,
1120
+ "manufacturer": "MOZILLA",
1121
+ "name": "Firefox 23",
1122
+ "versionId": 8,
1123
+ "versionRegEx": null
1124
+ },
1125
+ {
1126
+ "aliases": [
1127
+ "Firefox/22"
1128
+ ],
1129
+ "browserType": "WEB_BROWSER",
1130
+ "children": [],
1131
+ "excludeList": null,
1132
+ "manufacturer": "MOZILLA",
1133
+ "name": "Firefox 22",
1134
+ "versionId": 9,
1135
+ "versionRegEx": null
1136
+ },
1137
+ {
1138
+ "aliases": [
1139
+ "Firefox/21"
1140
+ ],
1141
+ "browserType": "WEB_BROWSER",
1142
+ "children": [],
1143
+ "excludeList": null,
1144
+ "manufacturer": "MOZILLA",
1145
+ "name": "Firefox 21",
1146
+ "versionId": 10,
1147
+ "versionRegEx": null
1148
+ },
1149
+ {
1150
+ "aliases": [
1151
+ "Firefox/20"
1152
+ ],
1153
+ "browserType": "WEB_BROWSER",
1154
+ "children": [],
1155
+ "excludeList": null,
1156
+ "manufacturer": "MOZILLA",
1157
+ "name": "Firefox 20",
1158
+ "versionId": 11,
1159
+ "versionRegEx": null
1160
+ },
1161
+ {
1162
+ "aliases": [
1163
+ "Firefox/19"
1164
+ ],
1165
+ "browserType": "WEB_BROWSER",
1166
+ "children": [],
1167
+ "excludeList": null,
1168
+ "manufacturer": "MOZILLA",
1169
+ "name": "Firefox 19",
1170
+ "versionId": 12,
1171
+ "versionRegEx": null
1172
+ },
1173
+ {
1174
+ "aliases": [
1175
+ "Firefox/18"
1176
+ ],
1177
+ "browserType": "WEB_BROWSER",
1178
+ "children": [],
1179
+ "excludeList": null,
1180
+ "manufacturer": "MOZILLA",
1181
+ "name": "Firefox 18",
1182
+ "versionId": 13,
1183
+ "versionRegEx": null
1184
+ },
1185
+ {
1186
+ "aliases": [
1187
+ "Firefox/17"
1188
+ ],
1189
+ "browserType": "WEB_BROWSER",
1190
+ "children": [],
1191
+ "excludeList": null,
1192
+ "manufacturer": "MOZILLA",
1193
+ "name": "Firefox 17",
1194
+ "versionId": 14,
1195
+ "versionRegEx": null
1196
+ },
1197
+ {
1198
+ "aliases": [
1199
+ "Firefox/16"
1200
+ ],
1201
+ "browserType": "WEB_BROWSER",
1202
+ "children": [],
1203
+ "excludeList": null,
1204
+ "manufacturer": "MOZILLA",
1205
+ "name": "Firefox 16",
1206
+ "versionId": 15,
1207
+ "versionRegEx": null
1208
+ },
1209
+ {
1210
+ "aliases": [
1211
+ "Firefox/15"
1212
+ ],
1213
+ "browserType": "WEB_BROWSER",
1214
+ "children": [],
1215
+ "excludeList": null,
1216
+ "manufacturer": "MOZILLA",
1217
+ "name": "Firefox 15",
1218
+ "versionId": 16,
1219
+ "versionRegEx": null
1220
+ },
1221
+ {
1222
+ "aliases": [
1223
+ "Firefox/14"
1224
+ ],
1225
+ "browserType": "WEB_BROWSER",
1226
+ "children": [],
1227
+ "excludeList": null,
1228
+ "manufacturer": "MOZILLA",
1229
+ "name": "Firefox 14",
1230
+ "versionId": 17,
1231
+ "versionRegEx": null
1232
+ },
1233
+ {
1234
+ "aliases": [
1235
+ "Firefox/13"
1236
+ ],
1237
+ "browserType": "WEB_BROWSER",
1238
+ "children": [],
1239
+ "excludeList": null,
1240
+ "manufacturer": "MOZILLA",
1241
+ "name": "Firefox 13",
1242
+ "versionId": 18,
1243
+ "versionRegEx": null
1244
+ },
1245
+ {
1246
+ "aliases": [
1247
+ "Firefox/12"
1248
+ ],
1249
+ "browserType": "WEB_BROWSER",
1250
+ "children": [],
1251
+ "excludeList": null,
1252
+ "manufacturer": "MOZILLA",
1253
+ "name": "Firefox 12",
1254
+ "versionId": 19,
1255
+ "versionRegEx": null
1256
+ },
1257
+ {
1258
+ "aliases": [
1259
+ "Firefox/11"
1260
+ ],
1261
+ "browserType": "WEB_BROWSER",
1262
+ "children": [],
1263
+ "excludeList": null,
1264
+ "manufacturer": "MOZILLA",
1265
+ "name": "Firefox 11",
1266
+ "versionId": 20,
1267
+ "versionRegEx": null
1268
+ },
1269
+ {
1270
+ "aliases": [
1271
+ "Firefox/10"
1272
+ ],
1273
+ "browserType": "WEB_BROWSER",
1274
+ "children": [],
1275
+ "excludeList": null,
1276
+ "manufacturer": "MOZILLA",
1277
+ "name": "Firefox 10",
1278
+ "versionId": 21,
1279
+ "versionRegEx": null
1280
+ },
1281
+ {
1282
+ "aliases": [
1283
+ "Firefox/9"
1284
+ ],
1285
+ "browserType": "WEB_BROWSER",
1286
+ "children": [],
1287
+ "excludeList": null,
1288
+ "manufacturer": "MOZILLA",
1289
+ "name": "Firefox 9",
1290
+ "versionId": 22,
1291
+ "versionRegEx": null
1292
+ },
1293
+ {
1294
+ "aliases": [
1295
+ "Firefox/8"
1296
+ ],
1297
+ "browserType": "WEB_BROWSER",
1298
+ "children": [],
1299
+ "excludeList": null,
1300
+ "manufacturer": "MOZILLA",
1301
+ "name": "Firefox 8",
1302
+ "versionId": 23,
1303
+ "versionRegEx": null
1304
+ },
1305
+ {
1306
+ "aliases": [
1307
+ "Firefox/7"
1308
+ ],
1309
+ "browserType": "WEB_BROWSER",
1310
+ "children": [],
1311
+ "excludeList": null,
1312
+ "manufacturer": "MOZILLA",
1313
+ "name": "Firefox 7",
1314
+ "versionId": 24,
1315
+ "versionRegEx": null
1316
+ },
1317
+ {
1318
+ "aliases": [
1319
+ "Firefox/6"
1320
+ ],
1321
+ "browserType": "WEB_BROWSER",
1322
+ "children": [],
1323
+ "excludeList": null,
1324
+ "manufacturer": "MOZILLA",
1325
+ "name": "Firefox 6",
1326
+ "versionId": 25,
1327
+ "versionRegEx": null
1328
+ },
1329
+ {
1330
+ "aliases": [
1331
+ "Firefox/5"
1332
+ ],
1333
+ "browserType": "WEB_BROWSER",
1334
+ "children": [],
1335
+ "excludeList": null,
1336
+ "manufacturer": "MOZILLA",
1337
+ "name": "Firefox 5",
1338
+ "versionId": 26,
1339
+ "versionRegEx": null
1340
+ },
1341
+ {
1342
+ "aliases": [
1343
+ "Firefox/4"
1344
+ ],
1345
+ "browserType": "WEB_BROWSER",
1346
+ "children": [],
1347
+ "excludeList": null,
1348
+ "manufacturer": "MOZILLA",
1349
+ "name": "Firefox 4",
1350
+ "versionId": 27,
1351
+ "versionRegEx": null
1352
+ },
1353
+ {
1354
+ "aliases": [
1355
+ "Firefox/3"
1356
+ ],
1357
+ "browserType": "WEB_BROWSER",
1358
+ "children": [],
1359
+ "excludeList": null,
1360
+ "manufacturer": "MOZILLA",
1361
+ "name": "Firefox 3",
1362
+ "versionId": 28,
1363
+ "versionRegEx": null
1364
+ },
1365
+ {
1366
+ "aliases": [
1367
+ "Firefox/2"
1368
+ ],
1369
+ "browserType": "WEB_BROWSER",
1370
+ "children": [],
1371
+ "excludeList": null,
1372
+ "manufacturer": "MOZILLA",
1373
+ "name": "Firefox 2",
1374
+ "versionId": 29,
1375
+ "versionRegEx": null
1376
+ },
1377
+ {
1378
+ "aliases": [
1379
+ "Firefox/1.5"
1380
+ ],
1381
+ "browserType": "WEB_BROWSER",
1382
+ "children": [],
1383
+ "excludeList": null,
1384
+ "manufacturer": "MOZILLA",
1385
+ "name": "Firefox 1.5",
1386
+ "versionId": 30,
1387
+ "versionRegEx": null
1388
+ }
1389
+ ],
1390
+ "excludeList": null,
1391
+ "manufacturer": "MOZILLA",
1392
+ "name": "Firefox",
1393
+ "versionId": 1,
1394
+ "versionRegEx": "Firefox\\/(([0-9]+)\\.?([\\w]+)?(\\.[\\w]+)?(\\.[\\w]+)?)"
1395
+ },
1396
+ {
1397
+ "aliases": [
1398
+ "Thunderbird"
1399
+ ],
1400
+ "browserType": "EMAIL_CLIENT",
1401
+ "children": [
1402
+ {
1403
+ "aliases": [
1404
+ "Thunderbird/12"
1405
+ ],
1406
+ "browserType": "EMAIL_CLIENT",
1407
+ "children": [],
1408
+ "excludeList": null,
1409
+ "manufacturer": "MOZILLA",
1410
+ "name": "Thunderbird 12",
1411
+ "versionId": 66,
1412
+ "versionRegEx": null
1413
+ },
1414
+ {
1415
+ "aliases": [
1416
+ "Thunderbird/11"
1417
+ ],
1418
+ "browserType": "EMAIL_CLIENT",
1419
+ "children": [],
1420
+ "excludeList": null,
1421
+ "manufacturer": "MOZILLA",
1422
+ "name": "Thunderbird 11",
1423
+ "versionId": 67,
1424
+ "versionRegEx": null
1425
+ },
1426
+ {
1427
+ "aliases": [
1428
+ "Thunderbird/10"
1429
+ ],
1430
+ "browserType": "EMAIL_CLIENT",
1431
+ "children": [],
1432
+ "excludeList": null,
1433
+ "manufacturer": "MOZILLA",
1434
+ "name": "Thunderbird 10",
1435
+ "versionId": 68,
1436
+ "versionRegEx": null
1437
+ },
1438
+ {
1439
+ "aliases": [
1440
+ "Thunderbird/8"
1441
+ ],
1442
+ "browserType": "EMAIL_CLIENT",
1443
+ "children": [],
1444
+ "excludeList": null,
1445
+ "manufacturer": "MOZILLA",
1446
+ "name": "Thunderbird 8",
1447
+ "versionId": 69,
1448
+ "versionRegEx": null
1449
+ },
1450
+ {
1451
+ "aliases": [
1452
+ "Thunderbird/7"
1453
+ ],
1454
+ "browserType": "EMAIL_CLIENT",
1455
+ "children": [],
1456
+ "excludeList": null,
1457
+ "manufacturer": "MOZILLA",
1458
+ "name": "Thunderbird 7",
1459
+ "versionId": 70,
1460
+ "versionRegEx": null
1461
+ },
1462
+ {
1463
+ "aliases": [
1464
+ "Thunderbird/6"
1465
+ ],
1466
+ "browserType": "EMAIL_CLIENT",
1467
+ "children": [],
1468
+ "excludeList": null,
1469
+ "manufacturer": "MOZILLA",
1470
+ "name": "Thunderbird 6",
1471
+ "versionId": 71,
1472
+ "versionRegEx": null
1473
+ },
1474
+ {
1475
+ "aliases": [
1476
+ "Thunderbird/3"
1477
+ ],
1478
+ "browserType": "EMAIL_CLIENT",
1479
+ "children": [],
1480
+ "excludeList": null,
1481
+ "manufacturer": "MOZILLA",
1482
+ "name": "Thunderbird 3",
1483
+ "versionId": 72,
1484
+ "versionRegEx": null
1485
+ },
1486
+ {
1487
+ "aliases": [
1488
+ "Thunderbird/2"
1489
+ ],
1490
+ "browserType": "EMAIL_CLIENT",
1491
+ "children": [],
1492
+ "excludeList": null,
1493
+ "manufacturer": "MOZILLA",
1494
+ "name": "Thunderbird 2",
1495
+ "versionId": 73,
1496
+ "versionRegEx": null
1497
+ }
1498
+ ],
1499
+ "excludeList": null,
1500
+ "manufacturer": "MOZILLA",
1501
+ "name": "Thunderbird",
1502
+ "versionId": 65,
1503
+ "versionRegEx": "Thunderbird\\/(([0-9]+)\\.?([\\w]+)?(\\.[\\w]+)?(\\.[\\w]+)?)"
1504
+ },
1505
+ {
1506
+ "aliases": [
1507
+ "SeaMonkey"
1508
+ ],
1509
+ "browserType": "WEB_BROWSER",
1510
+ "children": [],
1511
+ "excludeList": null,
1512
+ "manufacturer": "OTHER",
1513
+ "name": "SeaMonkey",
1514
+ "versionId": 15,
1515
+ "versionRegEx": "SeaMonkey\\/(([0-9]+)\\.?([\\w]+)?(\\.[\\w]+)?)"
1516
+ },
1517
+ {
1518
+ "aliases": [
1519
+ "Googlebot",
1520
+ "Web Preview",
1521
+ "bot",
1522
+ "spider",
1523
+ "crawler",
1524
+ "Feedfetcher",
1525
+ "Slurp",
1526
+ "Twiceler",
1527
+ "Nutch",
1528
+ "BecomeBot"
1529
+ ],
1530
+ "browserType": "ROBOT",
1531
+ "children": [],
1532
+ "excludeList": null,
1533
+ "manufacturer": "OTHER",
1534
+ "name": "Robot/Spider",
1535
+ "versionId": 12,
1536
+ "versionRegEx": null
1537
+ },
1538
+ {
1539
+ "aliases": [
1540
+ "Mozilla",
1541
+ "Moozilla"
1542
+ ],
1543
+ "browserType": "WEB_BROWSER",
1544
+ "children": [],
1545
+ "excludeList": null,
1546
+ "manufacturer": "MOZILLA",
1547
+ "name": "Mozilla",
1548
+ "versionId": 128,
1549
+ "versionRegEx": null
1550
+ },
1551
+ {
1552
+ "aliases": [
1553
+ "CFNetwork"
1554
+ ],
1555
+ "browserType": "UNKNOWN",
1556
+ "children": [],
1557
+ "excludeList": null,
1558
+ "manufacturer": "OTHER",
1559
+ "name": "CFNetwork",
1560
+ "versionId": 6,
1561
+ "versionRegEx": null
1562
+ },
1563
+ {
1564
+ "aliases": [
1565
+ "Eudora",
1566
+ "EUDORA"
1567
+ ],
1568
+ "browserType": "EMAIL_CLIENT",
1569
+ "children": [],
1570
+ "excludeList": null,
1571
+ "manufacturer": "OTHER",
1572
+ "name": "Eudora",
1573
+ "versionId": 7,
1574
+ "versionRegEx": null
1575
+ },
1576
+ {
1577
+ "aliases": [
1578
+ "PocoMail"
1579
+ ],
1580
+ "browserType": "EMAIL_CLIENT",
1581
+ "children": [],
1582
+ "excludeList": null,
1583
+ "manufacturer": "OTHER",
1584
+ "name": "PocoMail",
1585
+ "versionId": 8,
1586
+ "versionRegEx": null
1587
+ },
1588
+ {
1589
+ "aliases": [
1590
+ "The Bat"
1591
+ ],
1592
+ "browserType": "EMAIL_CLIENT",
1593
+ "children": [],
1594
+ "excludeList": null,
1595
+ "manufacturer": "OTHER",
1596
+ "name": "The Bat!",
1597
+ "versionId": 9,
1598
+ "versionRegEx": null
1599
+ },
1600
+ {
1601
+ "aliases": [
1602
+ "NetFront"
1603
+ ],
1604
+ "browserType": "MOBILE_BROWSER",
1605
+ "children": [],
1606
+ "excludeList": null,
1607
+ "manufacturer": "OTHER",
1608
+ "name": "NetFront",
1609
+ "versionId": 10,
1610
+ "versionRegEx": null
1611
+ },
1612
+ {
1613
+ "aliases": [
1614
+ "CamelHttpStream"
1615
+ ],
1616
+ "browserType": "EMAIL_CLIENT",
1617
+ "children": [],
1618
+ "excludeList": null,
1619
+ "manufacturer": "OTHER",
1620
+ "name": "Evolution",
1621
+ "versionId": 11,
1622
+ "versionRegEx": null
1623
+ },
1624
+ {
1625
+ "aliases": [
1626
+ "Lynx"
1627
+ ],
1628
+ "browserType": "TEXT_BROWSER",
1629
+ "children": [],
1630
+ "excludeList": null,
1631
+ "manufacturer": "OTHER",
1632
+ "name": "Lynx",
1633
+ "versionId": 13,
1634
+ "versionRegEx": "Lynx\\/(([0-9]+)\\.([\\d]+)\\.?(-[\\w+])?\\.?(-[\\w+])?)"
1635
+ },
1636
+ {
1637
+ "aliases": [
1638
+ "cURL",
1639
+ "wget"
1640
+ ],
1641
+ "browserType": "TEXT_BROWSER",
1642
+ "children": [],
1643
+ "excludeList": null,
1644
+ "manufacturer": "OTHER",
1645
+ "name": "Downloading Tool",
1646
+ "versionId": 16,
1647
+ "versionRegEx": null
1648
+ },
1649
+ {
1650
+ "aliases": [],
1651
+ "browserType": "UNKNOWN",
1652
+ "children": [],
1653
+ "excludeList": null,
1654
+ "manufacturer": "OTHER",
1655
+ "name": "Unknown",
1656
+ "versionId": 14,
1657
+ "versionRegEx": null
1658
+ },
1659
+ {
1660
+ "aliases": [],
1661
+ "browserType": "EMAIL_CLIENT",
1662
+ "children": [],
1663
+ "excludeList": null,
1664
+ "manufacturer": "APPLE",
1665
+ "name": "Apple Mail",
1666
+ "versionId": 51,
1667
+ "versionRegEx": null
1668
+ }
1669
+ ]