device_detector 1.0.2 → 1.0.6

Sign up to get free protection for your applications and to get access to all the features.
Files changed (112) hide show
  1. checksums.yaml +5 -5
  2. data/.rubocop.yml +49 -0
  3. data/.ruby-version +1 -0
  4. data/.travis.yml +5 -6
  5. data/CHANGELOG.md +11 -0
  6. data/README.md +8 -7
  7. data/Rakefile +7 -4
  8. data/device_detector.gemspec +1 -0
  9. data/lib/device_detector/bot.rb +2 -2
  10. data/lib/device_detector/browser.rb +364 -0
  11. data/lib/device_detector/client.rb +11 -2
  12. data/lib/device_detector/device.rb +1168 -22
  13. data/lib/device_detector/memory_cache.rb +5 -5
  14. data/lib/device_detector/metadata_extractor.rb +7 -8
  15. data/lib/device_detector/model_extractor.rb +3 -3
  16. data/lib/device_detector/name_extractor.rb +2 -2
  17. data/lib/device_detector/os.rb +148 -116
  18. data/lib/device_detector/parser.rb +22 -9
  19. data/lib/device_detector/version.rb +1 -1
  20. data/lib/device_detector/version_extractor.rb +10 -2
  21. data/lib/device_detector.rb +73 -40
  22. data/regexes/bots.yml +909 -59
  23. data/regexes/client/browser_engine.yml +14 -2
  24. data/regexes/client/browsers.yml +1356 -241
  25. data/regexes/client/feed_readers.yml +10 -10
  26. data/regexes/client/libraries.yml +75 -1
  27. data/regexes/client/mediaplayers.yml +39 -3
  28. data/regexes/client/mobile_apps.yml +524 -45
  29. data/regexes/client/pim.yml +55 -2
  30. data/regexes/device/cameras.yml +6 -6
  31. data/regexes/device/car_browsers.yml +23 -3
  32. data/regexes/device/consoles.yml +9 -3
  33. data/regexes/device/mobiles.yml +16903 -3199
  34. data/regexes/device/notebooks.yml +114 -0
  35. data/regexes/device/portable_media_player.yml +20 -3
  36. data/regexes/device/shell_tv.yml +117 -0
  37. data/regexes/device/televisions.yml +440 -35
  38. data/regexes/oss.yml +603 -165
  39. data/regexes/vendorfragments.yml +6 -2
  40. data/spec/device_detector/concrete_user_agent_spec.rb +38 -51
  41. data/spec/device_detector/detector_fixtures_spec.rb +36 -37
  42. data/spec/device_detector/device_spec.rb +52 -56
  43. data/spec/device_detector/memory_cache_spec.rb +19 -19
  44. data/spec/device_detector/model_extractor_spec.rb +3 -3
  45. data/spec/device_detector/version_extractor_spec.rb +5 -6
  46. data/spec/device_detector_spec.rb +26 -26
  47. data/spec/fixtures/client/browser.yml +2617 -555
  48. data/spec/fixtures/client/feed_reader.yml +34 -52
  49. data/spec/fixtures/client/library.yml +129 -38
  50. data/spec/fixtures/client/mediaplayer.yml +59 -28
  51. data/spec/fixtures/client/mobile_app.yml +589 -20
  52. data/spec/fixtures/client/pim.yml +92 -19
  53. data/spec/fixtures/detector/bots.yml +1749 -458
  54. data/spec/fixtures/detector/camera.yml +30 -24
  55. data/spec/fixtures/detector/car_browser.yml +199 -3
  56. data/spec/fixtures/detector/console.yml +107 -45
  57. data/spec/fixtures/detector/desktop.yml +3216 -758
  58. data/spec/fixtures/detector/feature_phone.yml +935 -181
  59. data/spec/fixtures/detector/feed_reader.yml +181 -193
  60. data/spec/fixtures/detector/mediaplayer.yml +157 -60
  61. data/spec/fixtures/detector/mobile_apps.yml +914 -136
  62. data/spec/fixtures/detector/peripheral.yml +271 -0
  63. data/spec/fixtures/detector/phablet.yml +5593 -1533
  64. data/spec/fixtures/detector/portable_media_player.yml +398 -32
  65. data/spec/fixtures/detector/smart_display.yml +183 -9
  66. data/spec/fixtures/detector/smart_speaker.yml +60 -0
  67. data/spec/fixtures/detector/smartphone-1.yml +3930 -4239
  68. data/spec/fixtures/detector/smartphone-10.yml +3985 -7366
  69. data/spec/fixtures/detector/smartphone-11.yml +5083 -3784
  70. data/spec/fixtures/detector/smartphone-12.yml +8989 -0
  71. data/spec/fixtures/detector/smartphone-13.yml +9412 -0
  72. data/spec/fixtures/detector/smartphone-14.yml +9477 -0
  73. data/spec/fixtures/detector/smartphone-15.yml +9281 -0
  74. data/spec/fixtures/detector/smartphone-16.yml +9678 -0
  75. data/spec/fixtures/detector/smartphone-17.yml +9965 -0
  76. data/spec/fixtures/detector/smartphone-18.yml +9806 -0
  77. data/spec/fixtures/detector/smartphone-19.yml +9965 -0
  78. data/spec/fixtures/detector/smartphone-2.yml +6670 -4375
  79. data/spec/fixtures/detector/smartphone-20.yml +9710 -0
  80. data/spec/fixtures/detector/smartphone-21.yml +8693 -0
  81. data/spec/fixtures/detector/smartphone-22.yml +10178 -0
  82. data/spec/fixtures/detector/smartphone-23.yml +9453 -0
  83. data/spec/fixtures/detector/smartphone-24.yml +9843 -0
  84. data/spec/fixtures/detector/smartphone-25.yml +9703 -0
  85. data/spec/fixtures/detector/smartphone-26.yml +10007 -0
  86. data/spec/fixtures/detector/smartphone-27.yml +4927 -0
  87. data/spec/fixtures/detector/smartphone-3.yml +4656 -4711
  88. data/spec/fixtures/detector/smartphone-4.yml +3518 -4479
  89. data/spec/fixtures/detector/smartphone-5.yml +3805 -4803
  90. data/spec/fixtures/detector/smartphone-6.yml +3745 -4693
  91. data/spec/fixtures/detector/smartphone-7.yml +3721 -4645
  92. data/spec/fixtures/detector/smartphone-8.yml +4564 -4699
  93. data/spec/fixtures/detector/smartphone-9.yml +3897 -4888
  94. data/spec/fixtures/detector/smartphone.yml +3154 -4141
  95. data/spec/fixtures/detector/tablet-1.yml +4742 -4576
  96. data/spec/fixtures/detector/tablet-2.yml +3803 -4731
  97. data/spec/fixtures/detector/tablet-3.yml +6210 -2309
  98. data/spec/fixtures/detector/tablet-4.yml +9062 -0
  99. data/spec/fixtures/detector/tablet-5.yml +9273 -0
  100. data/spec/fixtures/detector/tablet-6.yml +4588 -0
  101. data/spec/fixtures/detector/tablet.yml +3629 -4613
  102. data/spec/fixtures/detector/tv-1.yml +2501 -0
  103. data/spec/fixtures/detector/tv.yml +8856 -2064
  104. data/spec/fixtures/detector/unknown.yml +412 -587
  105. data/spec/fixtures/detector/wearable.yml +915 -0
  106. data/spec/fixtures/device/camera.yml +4 -3
  107. data/spec/fixtures/device/car_browser.yml +9 -2
  108. data/spec/fixtures/device/console.yml +15 -14
  109. data/spec/fixtures/device/notebook.yml +7 -0
  110. data/spec/fixtures/parser/oss.yml +1392 -21
  111. data/spec/fixtures/parser/vendorfragments.yml +57 -51
  112. metadata +70 -4
@@ -6,6 +6,7 @@
6
6
  short_name: AMG
7
7
  version:
8
8
  platform:
9
+ family: AmigaOS
9
10
  -
10
11
  user_agent: Mozilla/5.0 (AmigaOS; U; AmigaOS 1.3; en-US; rv:1.8.1.21) Gecko/20090303 SeaMonkey/1.1.15
11
12
  os:
@@ -13,6 +14,7 @@
13
14
  short_name: AMG
14
15
  version: "1.3"
15
16
  platform:
17
+ family: AmigaOS
16
18
  -
17
19
  user_agent: Mozilla/5.0 ArchLinux (X11; U; Linux x86_64; en-US) AppleWebKit/534.30 (KHTML, like Gecko) Chrome/12.0.742.100 Safari/534.30
18
20
  os:
@@ -20,6 +22,7 @@
20
22
  short_name: ARL
21
23
  version:
22
24
  platform: x64
25
+ family: GNU/Linux
23
26
  -
24
27
  user_agent: Mozilla/3.0 (compatible; NetPositive/2.2.1; BeOS)
25
28
  os:
@@ -27,6 +30,7 @@
27
30
  short_name: BEO
28
31
  version:
29
32
  platform:
33
+ family: BeOS
30
34
  -
31
35
  user_agent: Mozilla/5.0 (X11; U; Linux i686 (x86_64); en-US; rv:1.9.0.6) Gecko/2009020414 CentOS/3.0.6-1.el5.centos Firefox/3.0.6
32
36
  os:
@@ -34,6 +38,7 @@
34
38
  short_name: CES
35
39
  version: "3.0.6"
36
40
  platform: x64
41
+ family: GNU/Linux
37
42
  -
38
43
  user_agent: Mozilla/5.0 (X11; U; Linux i686; fr-fr) AppleWebKit/531.2+ (KHTML, like Gecko) Version/5.0 Safari/531.2+ Debian/squeeze (2.30.6-1) Epiphany/2.30.6
39
44
  os:
@@ -41,6 +46,7 @@
41
46
  short_name: DEB
42
47
  version:
43
48
  platform: x86
49
+ family: GNU/Linux
44
50
  -
45
51
  user_agent: Mozilla/5.0 (X11; U; Linux i686; de; rv:1.9.0.15) Gecko/2009102815 Iceweasel/3.0.6 (Debian-3.0.6-3)
46
52
  os:
@@ -48,6 +54,7 @@
48
54
  short_name: DEB
49
55
  version: "3.0.6"
50
56
  platform: x86
57
+ family: GNU/Linux
51
58
  -
52
59
  user_agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.0.8) Gecko Fedora/1.9.0.8-1.fc10 Kazehakase/0.5.6
53
60
  os:
@@ -55,6 +62,7 @@
55
62
  short_name: FED
56
63
  version: "1.9.0.8"
57
64
  platform: x86
65
+ family: GNU/Linux
58
66
  -
59
67
  user_agent: Fire OS/5.3.6.2 stagefright/1.2 (Linux;Android 5.1.1)
60
68
  os:
@@ -62,6 +70,7 @@
62
70
  short_name: FIR
63
71
  version: 5.3.6.2
64
72
  platform: ""
73
+ family: Android
65
74
  -
66
75
  user_agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:25.0) Gecko/20100101 Firefox/25.0
67
76
  os:
@@ -69,6 +78,7 @@
69
78
  short_name: BSD
70
79
  version:
71
80
  platform: x64
81
+ family: Unix
72
82
  -
73
83
  user_agent: Mozilla/3.0 (WorldGate Gazelle 3.5.1 build 11; FreeBSD2.2.8-STABLE)
74
84
  os:
@@ -76,6 +86,7 @@
76
86
  short_name: BSD
77
87
  version: "2.2.8"
78
88
  platform:
89
+ family: Unix
79
90
  -
80
91
  user_agent: Mozilla/5.0 (X11; U; Gentoo x86_64; de-DE) Firefox/26.0
81
92
  os:
@@ -83,6 +94,7 @@
83
94
  short_name: GNT
84
95
  version:
85
96
  platform: x64
97
+ family: GNU/Linux
86
98
  -
87
99
  user_agent: Mozilla/5.0 (X11; Linux x86_64; rv:25.0) Gecko/20100101 conkeror/1.0pre
88
100
  os:
@@ -90,6 +102,7 @@
90
102
  short_name: LIN
91
103
  version:
92
104
  platform: x64
105
+ family: GNU/Linux
93
106
  -
94
107
  user_agent: MOT-A1600/1.0 LinuxOS/2.4.20 Release/8.22.2006 Browser/Opera8.00 Profile/MIDP-2.0 Configuration/CLDC-1.1 Software/R542_G_11.61.33R
95
108
  os:
@@ -97,6 +110,7 @@
97
110
  short_name: LIN
98
111
  version:
99
112
  platform:
113
+ family: GNU/Linux
100
114
  -
101
115
  user_agent: Mozilla/5.0 (BeOS; U; Haiku BePC; en-US; rv:1.8.1.21pre) Gecko/20090218 BonEcho/2.0.0.21pre
102
116
  os:
@@ -104,13 +118,15 @@
104
118
  short_name: HAI
105
119
  version:
106
120
  platform:
121
+ family: BeOS
107
122
  -
108
123
  user_agent: Mozilla/5.0 (Macintosh; Intel Haiku R1 x86) AppleWebKit/605.1.17 (KHTML, like Gecko) WebPositive/1.2 Version/11.1 Safari/605.1.17
109
124
  os:
110
125
  name: Haiku OS
111
126
  short_name: HAI
112
127
  version: ""
113
- platform: ""
128
+ platform: x86
129
+ family: BeOS
114
130
  -
115
131
  user_agent: Mozilla/4.08 (Charon; Inferno)
116
132
  os:
@@ -118,6 +134,7 @@
118
134
  short_name: INF
119
135
  version:
120
136
  platform:
137
+ family: Unix
121
138
  -
122
139
  user_agent: 'Mozilla/4.04 [en] (X11; I; IRIX 5.3 IP22)'
123
140
  os:
@@ -125,6 +142,7 @@
125
142
  short_name: IRI
126
143
  version: "5.3"
127
144
  platform:
145
+ family: Unix
128
146
  -
129
147
  user_agent: 'Mozilla/4.77 [en] (X11; I; IRIX;64 6.5 IP30)'
130
148
  os:
@@ -132,6 +150,7 @@
132
150
  short_name: IRI
133
151
  version: "6.5"
134
152
  platform:
153
+ family: Unix
135
154
  -
136
155
  user_agent: Mozilla/5.0 (compatible; Konqueror/3.5; Linux) KHTML/3.5.5 (like Gecko) (Kubuntu)
137
156
  os:
@@ -139,6 +158,7 @@
139
158
  short_name: KBT
140
159
  version:
141
160
  platform:
161
+ family: GNU/Linux
142
162
  -
143
163
  user_agent: Mozilla/5.0 (Mobile; LYF/F30C/LYF_F30C-000-09-10-140318; Android; rv:48.0) Gecko/48.0 Firefox/48.0 KAIOS/2.0
144
164
  os:
@@ -146,6 +166,7 @@
146
166
  short_name: KOS
147
167
  version: "2.0"
148
168
  platform: ""
169
+ family: Firefox OS
149
170
  -
150
171
  user_agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.0.1) Gecko/2008072820 Kubuntu/8.04 (hardy) Firefox/3.0.1
151
172
  os:
@@ -153,6 +174,7 @@
153
174
  short_name: KBT
154
175
  version: "8.04"
155
176
  platform: x64
177
+ family: GNU/Linux
156
178
  -
157
179
  user_agent: 'Mozilla/5.0 (Macintosh; U; Intel Mac OS X; en-US) AppleWebKit/532.1 (KHTML, like Gecko) Arora/0.10.1 (Git: 1329 e5385f3) Safari/532.1'
158
180
  os:
@@ -160,6 +182,7 @@
160
182
  short_name: MAC
161
183
  version:
162
184
  platform:
185
+ family: Mac
163
186
  -
164
187
  user_agent: QuickTime\xaa.7.0.4 (qtver=7.0.4;cpu=PPC;os=Mac 10.3.9)
165
188
  os:
@@ -167,6 +190,7 @@
167
190
  short_name: MAC
168
191
  version: "10.3.9"
169
192
  platform:
193
+ family: Mac
170
194
  -
171
195
  user_agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.2.17) Gecko/20110429 Mandriva Linux/1.9.2.17-0.1mdv2010.0 (2010.0) Firefox/3.6.17
172
196
  os:
@@ -174,6 +198,7 @@
174
198
  short_name: MDR
175
199
  version: "1.9.2.17"
176
200
  platform: x86
201
+ family: GNU/Linux
177
202
  -
178
203
  user_agent: Mozilla/5.0 (Linux; U; Android 2.3.7; fr-fr; HTC Desire Build/GRI40; MildWild CM-8.0 JG Stable) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1
179
204
  os:
@@ -181,13 +206,15 @@
181
206
  short_name: MLD
182
207
  version: "8.0"
183
208
  platform:
209
+ family: Android
184
210
  -
185
211
  user_agent: Mozilla/5.0 (Macintosh; PowerPC MorphOS 3.7; Odyssey Web Browser; rv:1.23) AppleWebKit/538.1 (KHTML, like Gecko) OWB/1.23 Safari/538.1
186
212
  os:
187
213
  name: MorphOS
188
214
  short_name: MOR
189
- version: 3.7
215
+ version: "3.7"
190
216
  platform:
217
+ family: AmigaOS
191
218
  -
192
219
  user_agent: Mozilla/5.0 (Linux; U; Android 2.3.7; fr-fr; Nexus One Build/GRK39F; CyanogenMod-7.2.0) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1
193
220
  os:
@@ -195,6 +222,7 @@
195
222
  short_name: CYN
196
223
  version: "7.2.0"
197
224
  platform:
225
+ family: Android
198
226
  -
199
227
  user_agent: Mozilla/5.0 (Linux; U; Android 2.3.6(RazoDroiD); fr-fr; GT-S5830i Build/RazoDroiD v2.0 by (rajrocks)rishee) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1
200
228
  os:
@@ -202,6 +230,7 @@
202
230
  short_name: RZD
203
231
  version:
204
232
  platform:
233
+ family: Android
205
234
  -
206
235
  user_agent: Mozilla 5.0 (Linux; U; Android 2.3.5; zh-cn; ZTE U793 Build MocorDroid2.3.5) UC AppleWebKit 534.31 (KHTML, like Gecko) Mobile Safari 534.31
207
236
  os:
@@ -209,6 +238,7 @@
209
238
  short_name: MCD
210
239
  version: "2.3.5"
211
240
  platform:
241
+ family: Android
212
242
  -
213
243
  user_agent: Mozilla/5.0 (X11; U; Linux armv7l; pt-PT; rv:1.9.2.3pre) Gecko/20100723 Firefox/3.5 Maemo Browser 1.7.4.8 RX-51 N900
214
244
  os:
@@ -216,7 +246,7 @@
216
246
  short_name: MAE
217
247
  version:
218
248
  platform: ARM
219
- client:
249
+ family: Other Mobile
220
250
  -
221
251
  user_agent: Mozilla/5.0 (X11; U; Linux i686; es-ES; rv:2.0) Gecko/20100101 Linux Mint 16/Petra Firefox/25.0.1.
222
252
  os:
@@ -224,6 +254,7 @@
224
254
  short_name: MIN
225
255
  version: "16"
226
256
  platform: x86
257
+ family: GNU/Linux
227
258
  -
228
259
  user_agent: Mozilla/5.0 (X11; U; NetBSD amd64; fr-FR; rv:1.8.0.7) Gecko/20061102 Firefox/1.5.0.7
229
260
  os:
@@ -231,6 +262,7 @@
231
262
  short_name: NBS
232
263
  version:
233
264
  platform: x64
265
+ family: Unix
234
266
  -
235
267
  user_agent: Mozilla/5.0 (X11; OpenBSD amd64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.45 Safari/537.36
236
268
  os:
@@ -238,6 +270,7 @@
238
270
  short_name: OBS
239
271
  version:
240
272
  platform: x64
273
+ family: Unix
241
274
  -
242
275
  user_agent: Mozilla/5.0 (OS/2; Warp 4.5; rv:10.0.12) Gecko/20100101 Firefox/10.0.12
243
276
  os:
@@ -245,6 +278,7 @@
245
278
  short_name: OS2
246
279
  version:
247
280
  platform:
281
+ family: IBM
248
282
  -
249
283
  user_agent: Mozilla/3.0 (X11; I; OSF1 V4.0 alpha)
250
284
  os:
@@ -252,6 +286,7 @@
252
286
  short_name: T64
253
287
  version: "4.0"
254
288
  platform:
289
+ family: Unix
255
290
  -
256
291
  user_agent: Mozilla/5.0 (compatible; Konqueror/4.3; Linux) KHTML/4.3.4 (like Gecko) Red Hat Enterprise Linux/4.3.4-19.el6
257
292
  os:
@@ -259,6 +294,7 @@
259
294
  short_name: RHT
260
295
  version: "4.3.4"
261
296
  platform:
297
+ family: GNU/Linux
262
298
  -
263
299
  user_agent: Opera/9.80 (X11; Linux x86_64; Sabayon) Presto/2.12.388 Version/12.16
264
300
  os:
@@ -266,6 +302,7 @@
266
302
  short_name: SAB
267
303
  version:
268
304
  platform: x64
305
+ family: GNU/Linux
269
306
  -
270
307
  user_agent: Mozilla/5.0 (X11; Linux i686) AppleWebKit/534.30 (KHTML, like Gecko) Slackware/Chrome/12.0.742.100 Safari/534.30
271
308
  os:
@@ -273,6 +310,7 @@
273
310
  short_name: SLW
274
311
  version:
275
312
  platform: x86
313
+ family: GNU/Linux
276
314
  -
277
315
  user_agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.1.2) Gecko/20090729 Slackware/13.0 Firefox/3.5.2
278
316
  os:
@@ -280,6 +318,7 @@
280
318
  short_name: SLW
281
319
  version: "13.0"
282
320
  platform: x86
321
+ family: GNU/Linux
283
322
  -
284
323
  user_agent: Mozilla/5.0 (X11; U; SunOS i86pc; en-US; rv:1.9.1.9) Gecko/20100525 Firefox/3.5.9
285
324
  os:
@@ -287,6 +326,7 @@
287
326
  short_name: SOS
288
327
  version:
289
328
  platform: x86
329
+ family: Unix
290
330
  -
291
331
  user_agent: Mozilla/4.0 (compatible; MSIE 5.0; SunOS 5.10 sun4u; X11)
292
332
  os:
@@ -294,6 +334,7 @@
294
334
  short_name: SOS
295
335
  version: "5.10"
296
336
  platform:
337
+ family: Unix
297
338
  -
298
339
  user_agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.2.24) Gecko/20111101 SUSE/3.6.24-0.2.1 Firefox/3.6.24
299
340
  os:
@@ -301,6 +342,7 @@
301
342
  short_name: SSE
302
343
  version: "3.6.24"
303
344
  platform: x86
345
+ family: GNU/Linux
304
346
  -
305
347
  user_agent: Mozilla/5.0 (compatible; U; ABrowse 0.6; Syllable) AppleWebKit/420+ (KHTML, like Gecko)
306
348
  os:
@@ -308,6 +350,7 @@
308
350
  short_name: SYL
309
351
  version:
310
352
  platform:
353
+ family: Unix
311
354
  -
312
355
  user_agent: Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/31.0.1650.63 Chrome/31.0.1650.63 Safari/537.36
313
356
  os:
@@ -315,6 +358,7 @@
315
358
  short_name: UBT
316
359
  version:
317
360
  platform: x64
361
+ family: GNU/Linux
318
362
  -
319
363
  user_agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.1.13) Gecko/20080313 SeaMonkey/1.1.9 (Ubuntu-1.1.9+nobinonly-0ubuntu1)
320
364
  os:
@@ -322,6 +366,7 @@
322
366
  short_name: UBT
323
367
  version: "1.1.9"
324
368
  platform: x86
369
+ family: GNU/Linux
325
370
  -
326
371
  user_agent: Mozilla/5.0 (X11; U; Linux i686; it-IT; rv:1.9.0.2) Gecko/2008092313 Ubuntu/9.25 (jaunty) Firefox/3.8
327
372
  os:
@@ -329,6 +374,7 @@
329
374
  short_name: UBT
330
375
  version: "9.25"
331
376
  platform: x86
377
+ family: GNU/Linux
332
378
  -
333
379
  user_agent: Mozilla/5.0 (Windows; U; Win9x; en; Stable) Gecko/20020911 Beonex/0.8.1-stable
334
380
  os:
@@ -336,6 +382,7 @@
336
382
  short_name: WIN
337
383
  version:
338
384
  platform:
385
+ family: Windows
339
386
  -
340
387
  user_agent: Mozilla/5.0 (Windows NT 6.4; WOW64; Trident/7.0; Touch; rv:11.0) like Gecko
341
388
  os:
@@ -343,6 +390,7 @@
343
390
  short_name: WIN
344
391
  version: "10"
345
392
  platform: x64
393
+ family: Windows
346
394
  -
347
395
  user_agent: Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; Touch; rv:11.0) like Gecko
348
396
  os:
@@ -350,6 +398,7 @@
350
398
  short_name: WIN
351
399
  version: "10"
352
400
  platform: x64
401
+ family: Windows
353
402
  -
354
403
  user_agent: Mozilla/5.0 (Windows IoT 10.0; Android 6.0.1; WebView/3.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Mobile Safari/537.36 Edge/17.17083
355
404
  os:
@@ -357,6 +406,7 @@
357
406
  short_name: WIO
358
407
  version: "10"
359
408
  platform:
409
+ family: Windows Mobile
360
410
  -
361
411
  user_agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; de; rv:1.8.1.20) Gecko/20081217 Firefox/2.0.0.20
362
412
  os:
@@ -364,6 +414,7 @@
364
414
  short_name: WIN
365
415
  version: "2000"
366
416
  platform:
417
+ family: Windows
367
418
  -
368
419
  user_agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.4.9999.1900 Safari/537.31 BDSpark/26.4
369
420
  os:
@@ -371,6 +422,7 @@
371
422
  short_name: WIN
372
423
  version: "7"
373
424
  platform: x64
425
+ family: Windows
374
426
  -
375
427
  user_agent: Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.17 (KHTML, like Gecko) Chrome/24.0.1312.57 Safari/537.17
376
428
  os:
@@ -378,6 +430,7 @@
378
430
  short_name: WIN
379
431
  version: "8"
380
432
  platform: x64
433
+ family: Windows
381
434
  -
382
435
  user_agent: Mozilla/5.0 (Windows NT 6.3; WOW64; rv:26.0) Gecko/20100101 Firefox/26.0
383
436
  os:
@@ -385,6 +438,7 @@
385
438
  short_name: WIN
386
439
  version: "8.1"
387
440
  platform: x64
441
+ family: Windows
388
442
  -
389
443
  user_agent: Mozilla/2.0 (compatible; MSIE 3.02; Update a; AOL 3.0; Windows 95)
390
444
  os:
@@ -392,6 +446,7 @@
392
446
  short_name: WIN
393
447
  version: "95"
394
448
  platform:
449
+ family: Windows
395
450
  -
396
451
  user_agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Win 9x 4.90; .NET CLR 1.1.4322)
397
452
  os:
@@ -399,6 +454,7 @@
399
454
  short_name: WIN
400
455
  version: "ME"
401
456
  platform:
457
+ family: Windows
402
458
  -
403
459
  user_agent: Mozilla/4.0 (compatible; MSIE 4.01; Digital AlphaServer 1000A 4/233; Windows NT; Powered By 64-Bit Alpha Processor)
404
460
  os:
@@ -406,6 +462,7 @@
406
462
  short_name: WIN
407
463
  version: "NT"
408
464
  platform:
465
+ family: Windows
409
466
  -
410
467
  user_agent: Mozilla/5.0 (Windows; U; Windows NT 5.2 x64; en-US; rv:1.9a1) Gecko/20061007 Minefield/3.0a1
411
468
  os:
@@ -413,6 +470,7 @@
413
470
  short_name: WIN
414
471
  version: "Server 2003"
415
472
  platform: x64
473
+ family: Windows
416
474
  -
417
475
  user_agent: Mozilla/5.0 (Windows NT 6.0; WOW64; rv:18.0) Gecko/20100101 Firefox/18.0
418
476
  os:
@@ -420,6 +478,7 @@
420
478
  short_name: WIN
421
479
  version: "Vista"
422
480
  platform: x64
481
+ family: Windows
423
482
  -
424
483
  user_agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Avant Browser; InfoPath.1)
425
484
  os:
@@ -427,6 +486,7 @@
427
486
  short_name: WIN
428
487
  version: "XP"
429
488
  platform:
489
+ family: Windows
430
490
  -
431
491
  user_agent: Mozilla/5.0 (Linux; U; Android 0.5; en-us) AppleWebKit/522+ (KHTML, like Gecko) Safari/419.3
432
492
  os:
@@ -434,6 +494,7 @@
434
494
  short_name: AND
435
495
  version: "0.5"
436
496
  platform:
497
+ family: Android
437
498
  -
438
499
  user_agent: Mozilla/5.0 (compatible; MSIE 9.0; Windows Phone OS 7.5; Trident/5.0; IEMobile/9.0; Acer; Allegro)
439
500
  os:
@@ -441,6 +502,7 @@
441
502
  short_name: WPH
442
503
  platform:
443
504
  version: "7.5"
505
+ family: Windows Mobile
444
506
  -
445
507
  user_agent: Mozilla/5.0 (Mobile; Windows Phone 8.1; Android 4.0; ARM; Trident/7.0; Touch; rv:11.0; IEMobile/11.0; NOKIA; Lumia 928) like iPhone OS 7_0_3 Mac OS X AppleWebKit/537 (KHTML, like Gecko) Mobile Safari/537
446
508
  os:
@@ -448,6 +510,7 @@
448
510
  short_name: WPH
449
511
  version: "8.1"
450
512
  platform: ARM
513
+ family: Windows Mobile
451
514
  -
452
515
  user_agent: Mozilla/5.0 (Linux; U; Android 2.2.2; fr-fr; E310 Build/FRG83G) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 ACER_E310/1.300.05
453
516
  os:
@@ -455,6 +518,7 @@
455
518
  short_name: AND
456
519
  version: "2.2.2"
457
520
  platform:
521
+ family: Android
458
522
  -
459
523
  user_agent: Mozilla/5.0 (Linux; Android 9; Pixel XL Build/PPR1.180610.009) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.91 Mobile Safari/537.36
460
524
  os:
@@ -462,6 +526,7 @@
462
526
  short_name: AND
463
527
  version: "9"
464
528
  platform: ""
529
+ family: Android
465
530
  -
466
531
  user_agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows CE; IEMobile 8.12; MSIEMobile 6.0) acer_F900
467
532
  os:
@@ -469,6 +534,7 @@
469
534
  short_name: WCE
470
535
  version:
471
536
  platform:
537
+ family: Windows Mobile
472
538
  -
473
539
  user_agent: Mozilla/5.0 (Mobile; ALCATEL ONE TOUCH 4012A; rv:18.1) Gecko/18.1 Firefox/18.1
474
540
  os:
@@ -476,6 +542,7 @@
476
542
  short_name: FOS
477
543
  version:
478
544
  platform:
545
+ family: Firefox OS
479
546
  -
480
547
  user_agent: AtomicBrowser/3.7.1 CFNetwork/467.12 Darwin/10.3.1
481
548
  os:
@@ -483,6 +550,7 @@
483
550
  short_name: IOS
484
551
  version: "3.2"
485
552
  platform:
553
+ family: iOS
486
554
  -
487
555
  user_agent: Mozilla/5.0 (iPhone; U; CPU iPhone OS 4_1 like Mac OS X; ru-ru) AppleWebKit/532.9 (KHTML, like Gecko) Mobile/8B117
488
556
  os:
@@ -490,6 +558,7 @@
490
558
  short_name: IOS
491
559
  version: "4.1"
492
560
  platform:
561
+ family: iOS
493
562
  -
494
563
  user_agent: CFNetwork/758.2.8 Darwin/15.0.0
495
564
  os:
@@ -497,6 +566,7 @@
497
566
  short_name: IOS
498
567
  version: "9.2"
499
568
  platform:
569
+ family: iOS
500
570
  -
501
571
  user_agent: CFNetwork/758.3.15 Darwin/15.4.0
502
572
  os:
@@ -504,6 +574,7 @@
504
574
  short_name: IOS
505
575
  version: "9.3"
506
576
  platform:
577
+ family: iOS
507
578
  -
508
579
  user_agent: SPORT1/4059 CFNetwork/758.4.3 Darwin/15.5.0
509
580
  os:
@@ -511,6 +582,7 @@
511
582
  short_name: IOS
512
583
  version: "9.3.2"
513
584
  platform:
585
+ family: iOS
514
586
  -
515
587
  user_agent: Interflora/22 CFNetwork/808.0.1 Darwin/16.0.0
516
588
  os:
@@ -518,6 +590,7 @@
518
590
  short_name: IOS
519
591
  version: "10.0"
520
592
  platform: ""
593
+ family: iOS
521
594
  -
522
595
  user_agent: MobileSafari/602.1 CFNetwork/808.1.3 Darwin/16.1.0
523
596
  os:
@@ -525,6 +598,7 @@
525
598
  short_name: IOS
526
599
  version: "10.1"
527
600
  platform: ""
601
+ family: iOS
528
602
  -
529
603
  user_agent: MobileSafari/602.1 CFNetwork/808.2.16 Darwin/16.3.0
530
604
  os:
@@ -532,6 +606,7 @@
532
606
  short_name: IOS
533
607
  version: "10.2"
534
608
  platform: ""
609
+ family: iOS
535
610
  -
536
611
  user_agent: MobileSafari/602.1 CFNetwork/811.5.4 Darwin/16.6.0
537
612
  os:
@@ -539,6 +614,7 @@
539
614
  short_name: IOS
540
615
  version: "10.3"
541
616
  platform: ""
617
+ family: iOS
542
618
  -
543
619
  user_agent: MobileSafari/602.1 CFNetwork/808.3 Darwin/16.3.0
544
620
  os:
@@ -546,6 +622,7 @@
546
622
  short_name: IOS
547
623
  version: "10.3"
548
624
  platform: ""
625
+ family: iOS
549
626
  -
550
627
  user_agent: MobileSafari/604.1 CFNetwork/887 Darwin/17.0.0
551
628
  os:
@@ -553,6 +630,7 @@
553
630
  short_name: IOS
554
631
  version: "11.0"
555
632
  platform: ""
633
+ family: iOS
556
634
  -
557
635
  user_agent: MobileSafari/604.1 CFNetwork/889.9 Darwin/17.2.0
558
636
  os:
@@ -560,6 +638,7 @@
560
638
  short_name: IOS
561
639
  version: "11.1"
562
640
  platform: ""
641
+ family: iOS
563
642
  -
564
643
  user_agent: NokiaN73-2/3.0-630.0.2 Series60/3.0 Profile/MIDP-2.0 Configuration/CLDC-1.1
565
644
  os:
@@ -567,13 +646,15 @@
567
646
  short_name: S60
568
647
  version: "3.0"
569
648
  platform:
649
+ family: Symbian
570
650
  -
571
651
  user_agent: XBMC/PRE-11.0 Git:20110623-62171b3 (iOS; 11.0.0 AppleTV2,1; http://www.xbmc.org)
572
652
  os:
573
- name: Apple TV
653
+ name: tvOS
574
654
  short_name: ATV
575
- version:
576
- platform:
655
+ version: 11.0.0
656
+ platform: ARM
657
+ family: iOS
577
658
  -
578
659
  user_agent: Mozilla/5.0 (SAMSUNG; SAMSUNG-GT-S7230E-VODAFONE/S723EBUJJ3; U; Bada/1.0; en-us) AppleWebKit/533.1 (KHTML, like Gecko) Dolfin/2.0 Mobile WQVGA SMM-MMS/1.2.0 NexPlayer/3.0 profile/MIDP-2.1 configuration/CLDC-1.1 OPN-B
579
660
  os:
@@ -581,6 +662,7 @@
581
662
  short_name: SBA
582
663
  version: "1.0"
583
664
  platform:
665
+ family: Other Mobile
584
666
  -
585
667
  user_agent: BlackBerry8520/5.0.0.681 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/134
586
668
  os:
@@ -588,6 +670,7 @@
588
670
  short_name: BLB
589
671
  version: "5.0.0.681"
590
672
  platform:
673
+ family: BlackBerry
591
674
  -
592
675
  user_agent: Mozilla/5.0 (PlayBook; U; RIM Tablet OS 2.1.0; en-US) AppleWebKit/536.2+ (KHTML, like Gecko) Version/7.2.1.0 Safari/536.2+
593
676
  os:
@@ -595,6 +678,7 @@
595
678
  short_name: QNX
596
679
  version: "2.1.0"
597
680
  platform:
681
+ family: BlackBerry
598
682
  -
599
683
  user_agent: NetFront/4.2 (BMP 1.0.4; U; en-us; LG; NetFront/4.2/AMB) Boost LG272 MMP/2.0 Profile/MIDP-2.1 Configuration/CLDC-1.1
600
684
  os:
@@ -602,6 +686,7 @@
602
686
  short_name: BMP
603
687
  version: "1.0.4"
604
688
  platform:
689
+ family: Brew
605
690
  -
606
691
  user_agent: Mozilla/5.0 (X11; CrOS x86_64 4731.101.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.67 Safari/537.36
607
692
  os:
@@ -609,6 +694,7 @@
609
694
  short_name: COS
610
695
  version: "31.0.1650.67"
611
696
  platform: x64
697
+ family: Chrome OS
612
698
  -
613
699
  user_agent: Mozilla/5.0 (X11; Linux i686) AppleWebKit/534.24 (KHTML, like Gecko) Chrome/11.0.696.77 Large Screen Safari/534.24 GoogleTV/092754
614
700
  os:
@@ -616,6 +702,7 @@
616
702
  short_name: GTV
617
703
  version: "092754"
618
704
  platform: x86
705
+ family: Google TV
619
706
  -
620
707
  user_agent: Opera/9.80 (MTK; Nucleus; U; en-US) Presto/2.4.18 Version/10.00
621
708
  os:
@@ -623,13 +710,15 @@
623
710
  short_name: MTK
624
711
  version:
625
712
  platform:
713
+ family: Real-time OS
626
714
  -
627
715
  user_agent: UNTRUSTED/1.0/HS-T39_TD/1.0 Release/03.03.2011 Threadx/4.0 Mocor/W10 Browser/NF4.0 Profile/MIDP-2.0 Config/CLDC-1.1
628
716
  os:
629
717
  name: ThreadX
630
718
  short_name: TDX
631
- version: 4.0
719
+ version: "4.0"
632
720
  platform:
721
+ family: Real-time OS
633
722
  -
634
723
  user_agent: Mozilla/5.0 (MeeGo; NokiaN9) AppleWebKit/534.13 (KHTML, like Gecko) NokiaBrowser/8.5.0 Mobile Safari/534.13
635
724
  os:
@@ -637,6 +726,7 @@
637
726
  short_name: SMG
638
727
  version:
639
728
  platform:
729
+ family: Other Mobile
640
730
  -
641
731
  user_agent: Mozilla/5.0 (PLAYSTATION 3 4.46) AppleWebKit/531.22.8 (KHTML, like Gecko)
642
732
  os:
@@ -644,6 +734,7 @@
644
734
  short_name: PS3
645
735
  version: "3"
646
736
  platform:
737
+ family: Gaming Console
647
738
  -
648
739
  user_agent: Mozilla/5.0 (Nintendo WiiU) AppleWebKit/534.52 (KHTML, like Gecko) NX/2.1.0.8.21 NintendoBrowser/1.0.0.7494.US
649
740
  os:
@@ -651,6 +742,7 @@
651
742
  short_name: WII
652
743
  version: "Wii"
653
744
  platform:
745
+ family: Gaming Console
654
746
  -
655
747
  user_agent: Bunjalloo/0.7.6(Nintendo DS;U;en)
656
748
  os:
@@ -658,6 +750,7 @@
658
750
  short_name: NDS
659
751
  version: "DS"
660
752
  platform:
753
+ family: Mobile Gaming Console
661
754
  -
662
755
  user_agent: Mozilla/5.0 (Nintendo 3DS; U; ; en) Version/1.7498.EU
663
756
  os:
@@ -665,6 +758,7 @@
665
758
  short_name: NDS
666
759
  version: "3DS"
667
760
  platform:
761
+ family: Mobile Gaming Console
668
762
  -
669
763
  user_agent: Mozilla/4.0 (PlayStation Portable); 2.00)
670
764
  os:
@@ -672,6 +766,7 @@
672
766
  short_name: PSP
673
767
  version: "Portable"
674
768
  platform:
769
+ family: Mobile Gaming Console
675
770
  -
676
771
  user_agent: Mozilla/5.0 (PlayStation Vita 3.01) AppleWebKit/536.26 (KHTML, like Gecko) Silk/3.2
677
772
  os:
@@ -679,6 +774,15 @@
679
774
  short_name: PSP
680
775
  version: "Vita"
681
776
  platform:
777
+ family: Mobile Gaming Console
778
+ -
779
+ user_agent: Mozilla/5.0 (Web0S; Linux/SmartTV) AppleWebKit/537.36 (KHTML, like Gecko) QtWebEngine/5.2.1 Chrome/38.0.2125.122 Safari/537.36 WebAppManager
780
+ os:
781
+ name: webOS
782
+ short_name: WOS
783
+ version: "3"
784
+ platform: ""
785
+ family: Other Mobile
682
786
  -
683
787
  user_agent: Mozilla/5.0 (webOS/1.4.5; U; ru-RU) AppleWebKit/532.2 (KHTML, like Gecko) Version/1.0 Safari/532.2 Pixi/1.0
684
788
  os:
@@ -686,6 +790,7 @@
686
790
  short_name: WOS
687
791
  version: "1.4.5"
688
792
  platform:
793
+ family: Other Mobile
689
794
  -
690
795
  user_agent: CorePlayer/1.0 (Palm OS 5.4.9; ARM Intel PXA27x; en) CorePlayer/1.3.2_6909
691
796
  os:
@@ -693,6 +798,7 @@
693
798
  short_name: POS
694
799
  version: "5.4.9"
695
800
  platform: ARM
801
+ family: Other Mobile
696
802
  -
697
803
  user_agent: 'Palmscape/3.0J [ja] (v. 3.5.2H1.5; 153x130; c8)'
698
804
  os:
@@ -700,13 +806,15 @@
700
806
  short_name: POS
701
807
  version:
702
808
  platform:
809
+ family: Other Mobile
703
810
  -
704
811
  user_agent: Browse/0.6 (Linux 3.10.0+; RemixOS 5.1.1; RemixOS SDK built for x86; en_us) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.0.0 Desktop (Opera Mini/Compression)
705
812
  os:
706
813
  name: Remix OS
707
814
  short_name: REM
708
815
  version: "1"
709
- platform:
816
+ platform: x86
817
+ family: Android
710
818
  -
711
819
  user_agent: Browse/0.6.mini (Linux 3.4.0+; RemixOS 6.0; Motorola Moto G 2014; en_us) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.119 Desktop
712
820
  os:
@@ -714,6 +822,7 @@
714
822
  short_name: REM
715
823
  version: 2
716
824
  platform:
825
+ family: Android
717
826
  -
718
827
  user_agent: Mozilla/5.0 (Linux; U; Android 2.3 YunOs 1.0.0.3; zh-cn; K-Touch W658 Build/AliyunOs-2012) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1
719
828
  os:
@@ -721,6 +830,7 @@
721
830
  short_name: YNS
722
831
  version: "1.0.0.3"
723
832
  platform:
833
+ family: Android
724
834
  -
725
835
  user_agent: Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.2; ARM; Trident/6.0; Touch; ARMBJS)
726
836
  os:
@@ -728,6 +838,7 @@
728
838
  short_name: WRT
729
839
  version:
730
840
  platform: ARM
841
+ family: Windows Mobile
731
842
  -
732
843
  user_agent: Mozilla/5.0 (Windows NT 6.3; ARM; Trident/7.0; Touch; .NET4.0E; .NET4.0C; Tablet PC 2.0; rv:11.0) like Gecko
733
844
  os:
@@ -735,6 +846,7 @@
735
846
  short_name: WRT
736
847
  version: "8.1"
737
848
  platform: ARM
849
+ family: Windows Mobile
738
850
  -
739
851
  user_agent: Opera/9.80 (Windows Mobile; WCE; Opera Mobi/WMD-50433; U; en) Presto/2.4.13 Version/10.00
740
852
  os:
@@ -742,6 +854,7 @@
742
854
  short_name: WMO
743
855
  version:
744
856
  platform:
857
+ family: Windows Mobile
745
858
  -
746
859
  user_agent: Opera/9.7 (WindowsMobile; PPC; Opera Mobi/35267; U; en; Presto/2.1.1)
747
860
  os:
@@ -749,6 +862,7 @@
749
862
  short_name: WMO
750
863
  version: ""
751
864
  platform: ""
865
+ family: Windows Mobile
752
866
  -
753
867
  user_agent: Mozilla/3.0 WebTV/1.2 (compatible; MSIE 2.0)
754
868
  os:
@@ -756,6 +870,7 @@
756
870
  short_name: WTV
757
871
  version: "1.2"
758
872
  platform:
873
+ family: WebTV
759
874
  -
760
875
  user_agent: Mozilla/5.0 (Linux; U; Tizen/1.0 like Android; en-us; AppleWebKit/534.46 (KHTML, like Gecko) Tizen Browser/1.0 Mobile
761
876
  os:
@@ -763,6 +878,7 @@
763
878
  short_name: TIZ
764
879
  version: "1.0"
765
880
  platform:
881
+ family: Other Mobile
766
882
  -
767
883
  user_agent: Mozilla/5.0 (Symbian/3; Series60/5.2 Nokia500/010.029; Profile/MIDP-2.1 Configuration/CLDC-1.1 ) AppleWebKit/533.4 (KHTML, like Gecko) NokiaBrowser/7.3.1.37 Mobile Safari/533.4 3gpp-gba
768
884
  os:
@@ -770,6 +886,7 @@
770
886
  short_name: SY3
771
887
  version: "Anna"
772
888
  platform:
889
+ family: Symbian
773
890
  -
774
891
  user_agent: Mozilla/5.0 (Series40; Nokia306/03.63; Profile/MIDP-2.1 Configuration/CLDC-1.1) Gecko/20100401 S40OviBrowser/3.9.0.0.22
775
892
  os:
@@ -777,6 +894,7 @@
777
894
  short_name: S40
778
895
  version:
779
896
  platform:
897
+ family: Symbian
780
898
  -
781
899
  user_agent: Nokia210/2.0 (04.12) Profile/MIDP-2.1 Configuration/CLDC-1.1 UCWEB/2.0 (Java; U; MIDP-2.0; en-US; Nokia210) U2/1.0.0 UCBrowser/9.3.0.326 U2/1.0.0 Mobile
782
900
  os:
@@ -784,6 +902,7 @@
784
902
  short_name: SYM
785
903
  version:
786
904
  platform:
905
+ family: Symbian
787
906
  -
788
907
  user_agent: Mozilla/5.0 (Symbian; U; N8-00; xx) AppleWebKit/534.3 (KHTML, like Gecko) MiniBrowserMobile/4.0 Mobile Safari/534.3
789
908
  os:
@@ -791,6 +910,7 @@
791
910
  short_name: SYS
792
911
  version:
793
912
  platform:
913
+ family: Symbian
794
914
  -
795
915
  user_agent: Mozilla/5.0 (Maemo; Linux; U; Jolla; Sailfish; Mobile; rv:26.0) Gecko/26.0 Firefox/26.0 SailfishBrowser/1.0 like Safari/538.1
796
916
  os:
@@ -798,6 +918,7 @@
798
918
  short_name: SAF
799
919
  version:
800
920
  platform:
921
+ family: GNU/Linux
801
922
  -
802
923
  user_agent: 'Mozilla/1.10 [en] (Compatible; RISC OS 3.70; Oregano 1.10)'
803
924
  os:
@@ -805,6 +926,7 @@
805
926
  short_name: ROS
806
927
  version: "3.70"
807
928
  platform:
929
+ family: RISC OS
808
930
  -
809
931
  user_agent: Mozilla/5.0 (X11; U; AIX 5.3; en-US; rv:1.7.12) Gecko/20051025
810
932
  os:
@@ -812,6 +934,7 @@
812
934
  short_name: AIX
813
935
  version: "5.3"
814
936
  platform:
937
+ family: Unix
815
938
  -
816
939
  user_agent: Mozilla/5.0 (compatible; Konqueror/4.1; DragonFly) KHTML/4.1.4 (like Gecko)
817
940
  os:
@@ -819,6 +942,7 @@
819
942
  short_name: DFB
820
943
  version:
821
944
  platform:
945
+ family: Unix
822
946
  -
823
947
  user_agent: Mozilla/5.0 (X11; U; HP-UX 9000/785; es-ES; rv:1.0.1) Gecko/20020827 Netscape/7.0
824
948
  os:
@@ -826,6 +950,7 @@
826
950
  short_name: HPX
827
951
  version: "9000"
828
952
  platform:
953
+ family: Unix
829
954
  -
830
955
  user_agent: Mozilla/5.0 (X11; Knoppix; Linux i686; rv:20.0) Gecko/20100101 Firefox/20.0
831
956
  os:
@@ -833,6 +958,7 @@
833
958
  short_name: KNO
834
959
  version:
835
960
  platform: x86
961
+ family: GNU/Linux
836
962
  -
837
963
  user_agent: Mozilla/5.0 (X11; U; Linux i686; en-GB; rv:1.9.1.3) Gecko/20090824 Firefox/3.5.3 (VectorLinux package 3.5.3-1vl60)
838
964
  os:
@@ -840,6 +966,7 @@
840
966
  short_name: VLN
841
967
  version: "3.5.3"
842
968
  platform: x86
969
+ family: GNU/Linux
843
970
  -
844
971
  user_agent: 'Mozilla/5.0 (SymbianOS/9.1; U; [en-us]) AppleWebKit/413 (KHTML, like Gecko) Safari/413'
845
972
  os:
@@ -847,6 +974,7 @@
847
974
  short_name: SYS
848
975
  version: "9.1"
849
976
  platform:
977
+ family: Symbian
850
978
  -
851
979
  user_agent: Mozilla/1.22 (compatible; MSIE 2.0; Windows 3.1)
852
980
  os:
@@ -854,6 +982,7 @@
854
982
  short_name: WIN
855
983
  version: "3.1"
856
984
  platform:
985
+ family: Windows
857
986
  -
858
987
  user_agent: Mozilla/4.0 (compatible; MSIE 4.01; Windows 98)
859
988
  os:
@@ -861,6 +990,7 @@
861
990
  short_name: WIN
862
991
  version: "98"
863
992
  platform:
993
+ family: Windows
864
994
  -
865
995
  user_agent: XBMC/3.3-DEV-r31572 (Xbox; http://www.xbmc.org)
866
996
  os:
@@ -868,6 +998,7 @@
868
998
  short_name: XBX
869
999
  version: "360"
870
1000
  platform:
1001
+ family: Mobile Gaming Console
871
1002
  -
872
1003
  user_agent: Mozilla/5.0 (X11; Linux i686; rv:7.0.1) Firefox/17.0 Xubuntu 12.10
873
1004
  os:
@@ -875,6 +1006,7 @@
875
1006
  short_name: XBT
876
1007
  version: "12.10"
877
1008
  platform: x86
1009
+ family: GNU/Linux
878
1010
  -
879
1011
  user_agent: Opera/9.80 (X11; Linux i686; U; lubuntu 10.10; en) Presto/2.7
880
1012
  os:
@@ -882,6 +1014,7 @@
882
1014
  short_name: LBT
883
1015
  version: "10.10"
884
1016
  platform: x86
1017
+ family: GNU/Linux
885
1018
  -
886
1019
  user_agent: Mozilla/4.0 (X11; BackTrack; Linux i686; rv:10.0.2) Gecko/20100101 Firefox/4.0
887
1020
  os:
@@ -889,6 +1022,7 @@
889
1022
  short_name: BTR
890
1023
  version:
891
1024
  platform: x86
1025
+ family: GNU/Linux
892
1026
  -
893
1027
  user_agent: Instacast/4.5.4 CFNetwork/672.1.14 Darwin/14.0.0
894
1028
  os:
@@ -896,6 +1030,7 @@
896
1030
  short_name: IOS
897
1031
  version: "7.1"
898
1032
  platform:
1033
+ family: iOS
899
1034
  -
900
1035
  user_agent: InstacastHD/1.1.2 CFNetwork/711.0.6 Darwin/14.0.0
901
1036
  os:
@@ -903,27 +1038,31 @@
903
1038
  short_name: IOS
904
1039
  version: "8.0"
905
1040
  platform:
1041
+ family: iOS
906
1042
  -
907
1043
  user_agent: Instacast/2380 CFNetwork/673.3 Darwin/13.4.0 (x86_64) (MacBookPro5%2C4)
908
1044
  os:
909
1045
  name: Mac
910
1046
  short_name: MAC
911
- version: "10.9"
1047
+ version: "10.9.5"
912
1048
  platform: "x64"
1049
+ family: Mac
913
1050
  -
914
1051
  user_agent: Safari/12602.3.12.0.1 CFNetwork/807.2.14 Darwin/16.3.0 (x86_64)
915
1052
  os:
916
1053
  name: Mac
917
1054
  short_name: MAC
918
- version: "10.12"
1055
+ version: "10.12.3"
919
1056
  platform: "x64"
1057
+ family: Mac
920
1058
  -
921
1059
  user_agent: Safari/12603.3.8 CFNetwork/811.5.4 Darwin/16.7.0 (x86_64)
922
1060
  os:
923
1061
  name: Mac
924
1062
  short_name: MAC
925
- version: "10.12"
1063
+ version: "10.12.6"
926
1064
  platform: "x64"
1065
+ family: Mac
927
1066
  -
928
1067
  user_agent: Safari/13604.1.38.1.6 CFNetwork/887 Darwin/17.0.0 (x86_64)
929
1068
  os:
@@ -931,6 +1070,7 @@
931
1070
  short_name: MAC
932
1071
  version: "10.13"
933
1072
  platform: x64
1073
+ family: Mac
934
1074
  -
935
1075
  user_agent: Podcasts/2.1.2
936
1076
  os:
@@ -938,6 +1078,7 @@
938
1078
  short_name: IOS
939
1079
  version:
940
1080
  platform:
1081
+ family: iOS
941
1082
  -
942
1083
  user_agent: Shifty Jelly Pocket Casts, Android v4.4.3.1
943
1084
  os:
@@ -945,6 +1086,7 @@
945
1086
  short_name: AND
946
1087
  version:
947
1088
  platform:
1089
+ family: Android
948
1090
  -
949
1091
  user_agent: Shifty Jelly Pocket Casts, iOS v4.3
950
1092
  os:
@@ -952,7 +1094,7 @@
952
1094
  short_name: IOS
953
1095
  version:
954
1096
  platform:
955
-
1097
+ family: iOS
956
1098
  -
957
1099
  user_agent: Mozilla/5.0 (Linux; U; en-us; BeyondPod)
958
1100
  os:
@@ -960,7 +1102,7 @@
960
1102
  short_name: AND
961
1103
  version:
962
1104
  platform:
963
-
1105
+ family: Android
964
1106
  -
965
1107
  user_agent: AntennaPod/0.9.9.1
966
1108
  os:
@@ -968,7 +1110,7 @@
968
1110
  short_name: AND
969
1111
  version:
970
1112
  platform:
971
-
1113
+ family: Android
972
1114
  -
973
1115
  user_agent: Overcast/1.0 (+http://overcast.fm/; iOS podcast app)
974
1116
  os:
@@ -976,7 +1118,7 @@
976
1118
  short_name: IOS
977
1119
  version:
978
1120
  platform:
979
-
1121
+ family: iOS
980
1122
  -
981
1123
  user_agent: Podkicker Pro/1.9.4
982
1124
  os:
@@ -984,7 +1126,7 @@
984
1126
  short_name: AND
985
1127
  version:
986
1128
  platform:
987
-
1129
+ family: Android
988
1130
  -
989
1131
  user_agent: Castro/64 CFNetwork/672.1.15 Darwin/14.0.0
990
1132
  os:
@@ -992,7 +1134,7 @@
992
1134
  short_name: IOS
993
1135
  version: "7.1"
994
1136
  platform:
995
-
1137
+ family: iOS
996
1138
  -
997
1139
  user_agent: Mozilla/5.0 (Linux; U; Windows NT 6.1; en-us; dream) DoggCatcher
998
1140
  os:
@@ -1000,7 +1142,7 @@
1000
1142
  short_name: AND
1001
1143
  version:
1002
1144
  platform:
1003
-
1145
+ family: Android
1004
1146
  -
1005
1147
  user_agent: iTunes-iPod/6.1.6 (4; 16GB; dt:71)
1006
1148
  os:
@@ -1008,7 +1150,7 @@
1008
1150
  short_name: IOS
1009
1151
  version:
1010
1152
  platform:
1011
-
1153
+ family: iOS
1012
1154
  -
1013
1155
  user_agent: TwitterAndroid/7.73.0-release.17 (8900198-r-17) HUAWEI VNS-L53/7.0 (HUAWEI;HUAWEI VNS-L53;HUAWEI;VNS-L53;0;;1;2013)
1014
1156
  os:
@@ -1016,7 +1158,7 @@
1016
1158
  short_name: AND
1017
1159
  version: "7.0"
1018
1160
  platform:
1019
-
1161
+ family: Android
1020
1162
  -
1021
1163
  user_agent: TwitterAndroid/7.71.1-release.15 (8900196-r-15) TA-1028/8.0.0 (HMD Global;TA-1028;Nokia;TA-1028_00WW;0;;1;2013)
1022
1164
  os:
@@ -1024,6 +1166,7 @@
1024
1166
  short_name: AND
1025
1167
  version: "8.0.0"
1026
1168
  platform:
1169
+ family: Android
1027
1170
  -
1028
1171
  user_agent: RSSRadio/9220 (iPad;iOS;12.3.1)
1029
1172
  os:
@@ -1031,6 +1174,7 @@
1031
1174
  short_name: IOS
1032
1175
  version: ""
1033
1176
  platform:
1177
+ family: iOS
1034
1178
  -
1035
1179
  user_agent: RSSRadio/9252
1036
1180
  os:
@@ -1038,10 +1182,1237 @@
1038
1182
  short_name: IOS
1039
1183
  version: ""
1040
1184
  platform:
1185
+ family: iOS
1041
1186
  -
1042
1187
  user_agent: RSSRadio/
1043
1188
  os:
1044
1189
  name: iOS
1045
1190
  short_name: IOS
1046
1191
  version: ""
1047
- platform:
1192
+ platform:
1193
+ family: iOS
1194
+ -
1195
+ user_agent: Mozilla/5.0 (X11; Linux i686; rv:45.0) Gecko/20100101 Firefox/45.0 Ordissimo/3.8.6.6+svn37147
1196
+ os:
1197
+ name: Ordissimo
1198
+ short_name: ORD
1199
+ version: ""
1200
+ platform: x86
1201
+ family: GNU/Linux
1202
+ -
1203
+ user_agent: Mozilla/5.0 (X11; Linux i686 on x86_64; rv:52.0) Gecko/20100101 Firefox/52.0 Ordissimo/3.8.20+svn37598
1204
+ os:
1205
+ name: Ordissimo
1206
+ short_name: ORD
1207
+ version: ""
1208
+ platform: x64
1209
+ family: GNU/Linux
1210
+ -
1211
+ user_agent: Mozilla/5.0 (X11; Linux i686; rv:45.0) Gecko/20100101 Firefox/45.0 webissimo3/3.7.30+svn32090
1212
+ os:
1213
+ name: Ordissimo
1214
+ short_name: ORD
1215
+ version: ""
1216
+ platform: x86
1217
+ family: GNU/Linux
1218
+ -
1219
+ user_agent: Mozilla/5.0 (X11; Linux i686 on x86_64; rv:42.0) Gecko/20100101 Firefox/42.0 webissimo3/3.7.22+svn30377
1220
+ os:
1221
+ name: Ordissimo
1222
+ short_name: ORD
1223
+ version: ""
1224
+ platform: x64
1225
+ family: GNU/Linux
1226
+ -
1227
+ user_agent: Mozilla/5.0 (X11 TOS; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 ToGate/72.0.3626.109 Safari/537.36
1228
+ os:
1229
+ name: TmaxOS
1230
+ short_name: TOS
1231
+ version: ""
1232
+ platform: x64
1233
+ family: GNU/Linux
1234
+ -
1235
+ user_agent: SAGETEL61D_11C_HW MRE/3.1.00900;MAUI/ARTEL_M5_V07_20171117_MP;BDATE/2017/11/17 15:42;LCD/128160;CHIP/MT6261;KEY/Normal;TOUCH/0;CAMERA/1;SENSOR/0;DEV/SAGETEL61D_11C_HW;WAP Browser/MAUI ;GMOBI/001;MBOUNCE/002;MOMAGIC/003;INDEX/004;SPICEI2I/005;GAMELOFT/006;
1236
+ os:
1237
+ name: MRE
1238
+ short_name: MRE
1239
+ version: "3.1"
1240
+ platform: ""
1241
+ family: Real-time OS
1242
+ -
1243
+ user_agent: Mozilla/5.0 (X11; OS ROSA; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.111 Safari/537.36
1244
+ os:
1245
+ name: Rosa
1246
+ short_name: RSO
1247
+ version: ""
1248
+ platform: x64
1249
+ family: GNU/Linux
1250
+ -
1251
+ user_agent: Mozilla/5.0 (X11; CrOS x86_64 11151.23.2020; SeewoOS x86_64 2.0.16.3558) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.139 Safari/537.36 SeewoBrowser/2.0.16.3558
1252
+ os:
1253
+ name: SeewoOS
1254
+ short_name: SEE
1255
+ version: 2.0.16.3558
1256
+ platform: x64
1257
+ family: Chrome OS
1258
+ -
1259
+ user_agent: Mozilla/5.0 (Freebox; Linux i686) AppleWebKit/538.1 (KHTML, like Gecko) Navigateur web/1.0 Safari/538.1
1260
+ os:
1261
+ name: Freebox
1262
+ short_name: FRE
1263
+ version: ""
1264
+ platform: x86
1265
+ family: GNU/Linux
1266
+ -
1267
+ user_agent: Mozilla/5.0 (X11; Linux x86_64; Deepin 15.11) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.75 Safari/537.36 NFSBrowser/5.0.5.2050
1268
+ os:
1269
+ name: Deepin
1270
+ short_name: DEE
1271
+ version: "15.11"
1272
+ platform: x64
1273
+ family: GNU/Linux
1274
+ -
1275
+ user_agent: Safari/11603.1.30.0.34 CFNetwork/760.6.3 Darwin/15.6.0 (x86_64)
1276
+ os:
1277
+ name: Mac
1278
+ short_name: MAC
1279
+ version: "10.11.6"
1280
+ platform: x64
1281
+ family: Mac
1282
+ -
1283
+ user_agent: Safari/13605.1.33.1.4 CFNetwork/897.15 Darwin/17.5.0 (x86_64)
1284
+ os:
1285
+ name: Mac
1286
+ short_name: MAC
1287
+ version: "10.13.4"
1288
+ platform: x64
1289
+ family: Mac
1290
+ -
1291
+ user_agent: Safari/13606.3.4.1.4 CFNetwork/902.1 Darwin/17.7.0 (x86_64)
1292
+ os:
1293
+ name: Mac
1294
+ short_name: MAC
1295
+ version: "10.13.6"
1296
+ platform: x64
1297
+ family: Mac
1298
+ -
1299
+ user_agent: Safari/13604.5.6 CFNetwork/893.13.1 Darwin/17.4.0 (x86_64)
1300
+ os:
1301
+ name: Mac
1302
+ short_name: MAC
1303
+ version: "10.13.3"
1304
+ platform: x64
1305
+ family: Mac
1306
+ -
1307
+ user_agent: Safari/13604.3.5 CFNetwork/889.9 Darwin/17.2.0 (x86_64)
1308
+ os:
1309
+ name: Mac
1310
+ short_name: MAC
1311
+ version: "10.13.1"
1312
+ platform: x64
1313
+ family: Mac
1314
+ -
1315
+ user_agent: Safari/13604.1.38.1.6 CFNetwork/887 Darwin/17.0.0 (x86_64)
1316
+ os:
1317
+ name: Mac
1318
+ short_name: MAC
1319
+ version: "10.13"
1320
+ platform: x64
1321
+ family: Mac
1322
+ -
1323
+ user_agent: Safari/13605.2.8 CFNetwork/901.1 Darwin/17.6.0 (x86_64)
1324
+ os:
1325
+ name: Mac
1326
+ short_name: MAC
1327
+ version: "10.13.5"
1328
+ platform: x64
1329
+ family: Mac
1330
+ -
1331
+ user_agent: Safari/14607.3.9 CFNetwork/978.0.7 Darwin/18.7.0 (x86_64)
1332
+ os:
1333
+ name: Mac
1334
+ short_name: MAC
1335
+ version: "10.14"
1336
+ platform: x64
1337
+ family: Mac
1338
+ -
1339
+ user_agent: Safari/14606.4.5 CFNetwork/976 Darwin/18.2.0 (x86_64)
1340
+ os:
1341
+ name: Mac
1342
+ short_name: MAC
1343
+ version: "10.14.1"
1344
+ platform: x64
1345
+ family: Mac
1346
+ -
1347
+ user_agent: Safari/14606.2.104.1.1 CFNetwork/975.0.3 Darwin/18.2.0 (x86_64)
1348
+ os:
1349
+ name: Mac
1350
+ short_name: MAC
1351
+ version: "10.14.1"
1352
+ platform: x64
1353
+ family: Mac
1354
+ -
1355
+ user_agent: Safari/14606.1.36.1.9 CFNetwork/974.1 Darwin/18.0.0 (x86_64)
1356
+ os:
1357
+ name: Mac
1358
+ short_name: MAC
1359
+ version: "10.14"
1360
+ platform: x64
1361
+ family: Mac
1362
+ -
1363
+ user_agent: Safari/14606.1.32 CFNetwork/971 Darwin/18.0.0 (x86_64)
1364
+ os:
1365
+ name: Mac
1366
+ short_name: MAC
1367
+ version: "10.14"
1368
+ platform: x64
1369
+ family: Mac
1370
+ -
1371
+ user_agent: Safari/14606.1.24.40.1 CFNetwork/962 Darwin/18.0.0 (x86_64)
1372
+ os:
1373
+ name: Mac
1374
+ short_name: MAC
1375
+ version: "10.14"
1376
+ platform: x64
1377
+ family: Mac
1378
+ -
1379
+ user_agent: Safari/14606.1.30 CFNetwork/969 Darwin/18.0.0 (x86_64)
1380
+ os:
1381
+ name: Mac
1382
+ short_name: MAC
1383
+ version: "10.14"
1384
+ platform: x64
1385
+ family: Mac
1386
+ -
1387
+ user_agent: Podcasts/1400.190 CFNetwork/1088.1 Darwin/19.0.0 (x86_64)
1388
+ os:
1389
+ name: Mac
1390
+ short_name: MAC
1391
+ version: "10.15"
1392
+ platform: x64
1393
+ family: Mac
1394
+ -
1395
+ user_agent: Podcasts/1400.203 CFNetwork/1091 Darwin/19.0.0 (x86_64)
1396
+ os:
1397
+ name: Mac
1398
+ short_name: MAC
1399
+ version: "10.15"
1400
+ platform: x64
1401
+ family: Mac
1402
+ -
1403
+ user_agent: Podcasts/1400.219.5 CFNetwork/1098 Darwin/19.0.0 (x86_64)
1404
+ os:
1405
+ name: Mac
1406
+ short_name: MAC
1407
+ version: "10.15"
1408
+ platform: x64
1409
+ family: Mac
1410
+ -
1411
+ user_agent: Podcasts/1410.10 CFNetwork/1103 Darwin/19.0.0 (x86_64)
1412
+ os:
1413
+ name: Mac
1414
+ short_name: MAC
1415
+ version: "10.15"
1416
+ platform: x64
1417
+ family: Mac
1418
+ -
1419
+ user_agent: Podcasts/1410.10 CFNetwork/1085.4 Darwin/19.0.0 (x86_64)
1420
+ os:
1421
+ name: Mac
1422
+ short_name: MAC
1423
+ version: "10.15"
1424
+ platform: x64
1425
+ family: Mac
1426
+ -
1427
+ user_agent: Podcasts/1410.10 CFNetwork/1082.3.1 Darwin/19.0.0 (x86_64)
1428
+ os:
1429
+ name: Mac
1430
+ short_name: MAC
1431
+ version: "10.15"
1432
+ platform: x64
1433
+ family: Mac
1434
+ -
1435
+ user_agent: MobileSafari/604.1 CFNetwork/978.0.7 Darwin/18.5.0
1436
+ os:
1437
+ name: iOS
1438
+ short_name: IOS
1439
+ version: "12.2"
1440
+ platform: ""
1441
+ family: iOS
1442
+ -
1443
+ user_agent: MobileSafari/604.1 CFNetwork/976 Darwin/18.2.0
1444
+ os:
1445
+ name: iOS
1446
+ short_name: IOS
1447
+ version: "12.1"
1448
+ platform: ""
1449
+ family: iOS
1450
+ -
1451
+ user_agent: MobileSafari/604.1 CFNetwork/975.0.3 Darwin/18.2.0
1452
+ os:
1453
+ name: iOS
1454
+ short_name: IOS
1455
+ version: "12.1"
1456
+ platform: ""
1457
+ family: iOS
1458
+ -
1459
+ user_agent: MobileSafari/604.1 CFNetwork/974.2.1 Darwin/18.0.0
1460
+ os:
1461
+ name: iOS
1462
+ short_name: IOS
1463
+ version: "12.0"
1464
+ platform: ""
1465
+ family: iOS
1466
+ -
1467
+ user_agent: MobileSafari/602.1 CFNetwork/811.5.4 Darwin/16.7.0
1468
+ os:
1469
+ name: iOS
1470
+ short_name: IOS
1471
+ version: "10.3"
1472
+ platform: ""
1473
+ family: iOS
1474
+ -
1475
+ user_agent: MobileSafari/604.1 CFNetwork/902.2 Darwin/17.7.0
1476
+ os:
1477
+ name: iOS
1478
+ short_name: IOS
1479
+ version: "11.4.1"
1480
+ platform: ""
1481
+ family: iOS
1482
+ -
1483
+ user_agent: MobileSafari/604.1 CFNetwork/901.1 Darwin/17.6.0
1484
+ os:
1485
+ name: iOS
1486
+ short_name: IOS
1487
+ version: "11.4"
1488
+ platform: ""
1489
+ family: iOS
1490
+ -
1491
+ user_agent: MobileSafari/604.1 CFNetwork/978.0.7 Darwin/18.6.0
1492
+ os:
1493
+ name: iOS
1494
+ short_name: IOS
1495
+ version: "12.3"
1496
+ platform: ""
1497
+ family: iOS
1498
+ -
1499
+ user_agent: MobileSafari/604.1 CFNetwork/978.0.7 Darwin/18.7.0
1500
+ os:
1501
+ name: iOS
1502
+ short_name: IOS
1503
+ version: "12.4"
1504
+ platform: ""
1505
+ family: iOS
1506
+ -
1507
+ user_agent: MobileSafari/604.1 CFNetwork/1125 Darwin/19.0.0
1508
+ os:
1509
+ name: iOS
1510
+ short_name: IOS
1511
+ version: "13.0"
1512
+ platform: ""
1513
+ family: iOS
1514
+ -
1515
+ user_agent: MobileSafari/604.1 CFNetwork/1121.2.2 Darwin/19.2.0
1516
+ os:
1517
+ name: iOS
1518
+ short_name: IOS
1519
+ version: "13.3"
1520
+ platform: ""
1521
+ family: iOS
1522
+ -
1523
+ user_agent: MobileSafari/604.1 CFNetwork/1121.2.2 Darwin/19.3.0
1524
+ os:
1525
+ name: iOS
1526
+ short_name: IOS
1527
+ version: 13.3.1
1528
+ platform: ""
1529
+ family: iOS
1530
+ -
1531
+ user_agent: MobileSafari/604.1 CFNetwork/1125.2 Darwin/19.4.0
1532
+ os:
1533
+ name: iOS
1534
+ short_name: IOS
1535
+ version: "13.4"
1536
+ platform: ""
1537
+ family: iOS
1538
+ -
1539
+ user_agent: MobileSafari/604.1 CFNetwork/1126 Darwin/19.5.0
1540
+ os:
1541
+ name: iOS
1542
+ short_name: IOS
1543
+ version: "13.5"
1544
+ platform: ""
1545
+ family: iOS
1546
+ -
1547
+ user_agent: MobileSafari/604.1 CFNetwork/1128.0.1 Darwin/19.6.0
1548
+ os:
1549
+ name: iOS
1550
+ short_name: IOS
1551
+ version: "13.6"
1552
+ platform: ""
1553
+ family: iOS
1554
+ -
1555
+ user_agent: MobileSafari/604.1 CFNetwork/1197 Darwin/20.0.0
1556
+ os:
1557
+ name: iOS
1558
+ short_name: IOS
1559
+ version: "14.0"
1560
+ platform: ""
1561
+ family: iOS
1562
+ -
1563
+ user_agent: MobileSafari/604.1 CFNetwork/1206 Darwin/20.1.0
1564
+ os:
1565
+ name: iOS
1566
+ short_name: IOS
1567
+ version: "14.2"
1568
+ platform: ""
1569
+ family: iOS
1570
+ -
1571
+ user_agent: MobileSafari/604.1 CFNetwork/1209 Darwin/20.2.0
1572
+ os:
1573
+ name: iOS
1574
+ short_name: IOS
1575
+ version: "14.3"
1576
+ platform: ""
1577
+ family: iOS
1578
+ -
1579
+ user_agent: CFNetwork/1121.1.2 Darwin/19.2.0 (x86_64)
1580
+ os:
1581
+ name: Mac
1582
+ short_name: MAC
1583
+ version: 10.15.2
1584
+ platform: x64
1585
+ family: Mac
1586
+ -
1587
+ user_agent: Safari/15608.5.11 CFNetwork/1121.1.2 Darwin/19.3.0 (x86_64)
1588
+ os:
1589
+ name: Mac
1590
+ short_name: MAC
1591
+ version: 10.15.3
1592
+ platform: x64
1593
+ family: Mac
1594
+ -
1595
+ user_agent: Safari/15609.1.20.111.8 CFNetwork/1125.2 Darwin/19.4.0 (x86_64)
1596
+ os:
1597
+ name: Mac
1598
+ short_name: MAC
1599
+ version: 10.15.4
1600
+ platform: x64
1601
+ family: Mac
1602
+ -
1603
+ user_agent: com.apple.Safari.SearchHelper/15609.2.9.1.2 CFNetwork/1126 Darwin/19.5.0 (x86_64)
1604
+ os:
1605
+ name: Mac
1606
+ short_name: MAC
1607
+ version: 10.15.5
1608
+ platform: x64
1609
+ family: Mac
1610
+ -
1611
+ user_agent: com.apple.Safari.SearchHelper/15609.3.5.1.3 CFNetwork/1128.0.1 Darwin/19.6.0 (x86_64)
1612
+ os:
1613
+ name: Mac
1614
+ short_name: MAC
1615
+ version: 10.15.6
1616
+ platform: x64
1617
+ family: Mac
1618
+ -
1619
+ user_agent: Safari/16610.1.21.1.2 CFNetwork/1195 Darwin/20.0.0 (x86_64)
1620
+ os:
1621
+ name: Mac
1622
+ short_name: MAC
1623
+ version: "11.0"
1624
+ platform: x64
1625
+ family: Mac
1626
+ -
1627
+ user_agent: Safari/16610.1.21.1.2 CFNetwork/1195 Darwin/20.1.0 (x86_64)
1628
+ os:
1629
+ name: Mac
1630
+ short_name: MAC
1631
+ version: "11.0"
1632
+ platform: x64
1633
+ family: Mac
1634
+ -
1635
+ user_agent: Safari/16610.1.21.1.2 CFNetwork/1195 Darwin/20.2.0 (x86_64)
1636
+ os:
1637
+ name: Mac
1638
+ short_name: MAC
1639
+ version: "11.1"
1640
+ platform: x64
1641
+ family: Mac
1642
+ -
1643
+ user_agent: Safari/13604.4.6 CFNetwork/893.10 Darwin/17.3.0 (x86_64)
1644
+ os:
1645
+ name: Mac
1646
+ short_name: MAC
1647
+ version: 10.13.2
1648
+ platform: x64
1649
+ family: Mac
1650
+ -
1651
+ user_agent: Mail/3273 CFNetwork/811.5.4 Darwin/16.6.0 (x86_64)
1652
+ os:
1653
+ name: Mac
1654
+ short_name: MAC
1655
+ version: 10.12.5
1656
+ platform: x64
1657
+ family: Mac
1658
+ -
1659
+ user_agent: Safari/12602.2.14.0.7 CFNetwork/807.1.3 Darwin/16.1.0 (x86_64)
1660
+ os:
1661
+ name: Mac
1662
+ short_name: MAC
1663
+ version: 10.12.1
1664
+ platform: x64
1665
+ family: Mac
1666
+ -
1667
+ user_agent: Safari/12602.2.14.0.7 CFNetwork/807.1.3 Darwin/16.2.0 (x86_64)
1668
+ os:
1669
+ name: Mac
1670
+ short_name: MAC
1671
+ version: 10.12.2
1672
+ platform: x64
1673
+ family: Mac
1674
+ -
1675
+ user_agent: Safari/12603.1.30.0.34 CFNetwork/811.4.18 Darwin/16.5.0 (x86_64)
1676
+ os:
1677
+ name: Mac
1678
+ short_name: MAC
1679
+ version: 10.12.4
1680
+ platform: x64
1681
+ family: Mac
1682
+ -
1683
+ user_agent: Safari/11601.3.9 CFNetwork/760.2.6 Darwin/15.2.0 (x86_64)
1684
+ os:
1685
+ name: Mac
1686
+ short_name: MAC
1687
+ version: 10.11.2
1688
+ platform: x64
1689
+ family: Mac
1690
+ -
1691
+ user_agent: com.apple.Safari.SearchHelper/11601.4.2 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)
1692
+ os:
1693
+ name: Mac
1694
+ short_name: MAC
1695
+ version: 10.11.3
1696
+ platform: x64
1697
+ family: Mac
1698
+ -
1699
+ user_agent: com.apple.Safari.SearchHelper/11601.5.17 CFNetwork/760.4.2 Darwin/15.4.0 (x86_64)
1700
+ os:
1701
+ name: Mac
1702
+ short_name: MAC
1703
+ version: 10.11.4
1704
+ platform: x64
1705
+ family: Mac
1706
+ -
1707
+ user_agent: com.apple.Safari.SearchHelper/11601.6.11 CFNetwork/760.5.1 Darwin/15.5.0 (x86_64)
1708
+ os:
1709
+ name: Mac
1710
+ short_name: MAC
1711
+ version: 10.11.5
1712
+ platform: x64
1713
+ family: Mac
1714
+ -
1715
+ user_agent: Safari/10600.3.18 CFNetwork/720.2.4 Darwin/14.1.0 (x86_64)
1716
+ os:
1717
+ name: Mac
1718
+ short_name: MAC
1719
+ version: 10.10.2
1720
+ platform: x64
1721
+ family: Mac
1722
+ -
1723
+ user_agent: com.apple.WebKit.WebContent/10600.5.17 CFNetwork/720.3.13 Darwin/14.3.0 (x86_64)
1724
+ os:
1725
+ name: Mac
1726
+ short_name: MAC
1727
+ version: 10.10.3
1728
+ platform: x64
1729
+ family: Mac
1730
+ -
1731
+ user_agent: Safari/10600.7.12 CFNetwork/720.4.4 Darwin/14.4.0 (x86_64)
1732
+ os:
1733
+ name: Mac
1734
+ short_name: MAC
1735
+ version: 10.10.4
1736
+ platform: x64
1737
+ family: Mac
1738
+ -
1739
+ user_agent: Safari/10603.3.8 CFNetwork/720.5.7 Darwin/14.5.0 (x86_64)
1740
+ os:
1741
+ name: Mac
1742
+ short_name: MAC
1743
+ version: 10.10.5
1744
+ platform: x64
1745
+ family: Mac
1746
+ -
1747
+ user_agent: Safari/9537.74.9 CFNetwork/673.2.1 Darwin/13.1.0 (x86_64) (iMac14%2C1)
1748
+ os:
1749
+ name: Mac
1750
+ short_name: MAC
1751
+ version: 10.9.2
1752
+ platform: x64
1753
+ family: Mac
1754
+ -
1755
+ user_agent: Sleipnir/4.5.1 CFNetwork/673.3 Darwin/13.2.0 (x86_64) (MacBookPro11,1)
1756
+ os:
1757
+ name: Mac
1758
+ short_name: MAC
1759
+ version: 10.9.3
1760
+ platform: x64
1761
+ family: Mac
1762
+ -
1763
+ user_agent: Bloodhound/2.1 CFNetwork/673.4 Darwin/13.3.0 (x86_64) (MacBookPro10%2C1)
1764
+ os:
1765
+ name: Mac
1766
+ short_name: MAC
1767
+ version: 10.9.4
1768
+ platform: x64
1769
+ family: Mac
1770
+ -
1771
+ user_agent: 'Reeder/1010.79.00 CFNetwork/596.1 Darwin/12.1.0 (x86_64) (Macmini5%2C2)'
1772
+ os:
1773
+ name: Mac
1774
+ short_name: MAC
1775
+ version: 10.8.1
1776
+ platform: x64
1777
+ family: Mac
1778
+ -
1779
+ user_agent: 'Reeder/1010.79.00 CFNetwork/596.2.3 Darwin/12.2.0 (x86_64) (MacBookAir4%2C2)'
1780
+ os:
1781
+ name: Mac
1782
+ short_name: MAC
1783
+ version: 10.8.2
1784
+ platform: x64
1785
+ family: Mac
1786
+ -
1787
+ user_agent: iCab/5.8.3 CFNetwork/596.3.3 Darwin/12.3.0 (x86_64) (MacBookPro6,2)
1788
+ os:
1789
+ name: Mac
1790
+ short_name: MAC
1791
+ version: 10.8.3
1792
+ platform: x64
1793
+ family: Mac
1794
+ -
1795
+ user_agent: 'Sparrow/1178 CFNetwork/596.4.3 Darwin/12.4.0 (x86_64) (MacBookPro8%2C2)'
1796
+ os:
1797
+ name: Mac
1798
+ short_name: MAC
1799
+ version: 10.8.4
1800
+ platform: x64
1801
+ family: Mac
1802
+ -
1803
+ user_agent: 'Safari/8536.30.1 CFNetwork/596.5 Darwin/12.5.0 (x86_64) (iMac13%2C1)'
1804
+ os:
1805
+ name: Mac
1806
+ short_name: MAC
1807
+ version: 10.8.5
1808
+ platform: x64
1809
+ family: Mac
1810
+ -
1811
+ user_agent: CoverScout%203/3.4.4 CFNetwork/520.0.13 Darwin/11.1.0 (x86_64) (MacBookAir3%2C2)
1812
+ os:
1813
+ name: Mac
1814
+ short_name: MAC
1815
+ version: 10.7.1
1816
+ platform: x64
1817
+ family: Mac
1818
+ -
1819
+ user_agent: Safari/7534.51.22 CFNetwork/520.2.5 Darwin/11.2.0 (x86_64) (MacBookAir4%2C1)
1820
+ os:
1821
+ name: Mac
1822
+ short_name: MAC
1823
+ version: 10.7.2
1824
+ platform: x64
1825
+ family: Mac
1826
+ -
1827
+ user_agent: Safari/7534.53.10 CFNetwork/520.3.2 Darwin/11.3.0 (x86_64) (Macmini4%2C1)
1828
+ os:
1829
+ name: Mac
1830
+ short_name: MAC
1831
+ version: 10.7.3
1832
+ platform: x64
1833
+ family: Mac
1834
+ -
1835
+ user_agent: WebProcess/7534.57.2 CFNetwork/520.4.3 Darwin/11.4.0 (x86_64) (MacBookPro5%2C4)
1836
+ os:
1837
+ name: Mac
1838
+ short_name: MAC
1839
+ version: 10.7.4
1840
+ platform: x64
1841
+ family: Mac
1842
+ -
1843
+ user_agent: 'WebProcess/7534.57.2 CFNetwork/520.4.3 Darwin/11.5.0 (x86_64) (MacBookPro5%2C4)'
1844
+ os:
1845
+ name: Mac
1846
+ short_name: MAC
1847
+ version: 10.7.5
1848
+ platform: x64
1849
+ family: Mac
1850
+ -
1851
+ user_agent: Mozilla/5.0 (Web0S; Linux/SmartTV) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.79 Safari/537.36 HbbTV/1.5.1 (+DRM; LGE; WEBOS6.0; WEBOS6.0 00.00.00; W60_O20N; DTV_W21O;)
1852
+ os:
1853
+ name: webOS
1854
+ short_name: WOS
1855
+ version: "6.0"
1856
+ platform: ""
1857
+ family: Other Mobile
1858
+ -
1859
+ user_agent: Mozilla/5.0 (X11; CrOS aarch64 13310.93.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.133 Safari/537.36
1860
+ os:
1861
+ name: Chrome OS
1862
+ short_name: COS
1863
+ version: 85.0.4183.133
1864
+ platform: ARM
1865
+ family: Chrome OS
1866
+ -
1867
+ user_agent: AppleCoreMedia/1.0.0.17J586 (Apple TV; U; CPU OS 13_0 like Mac OS X; nb_no)
1868
+ os:
1869
+ name: tvOS
1870
+ short_name: ATV
1871
+ version: "13.0"
1872
+ platform: ARM
1873
+ family: iOS
1874
+ -
1875
+ user_agent: atc/1.0 watchOS/6.0 model/Watch4,2 hwp/t8006 build/17R575 (6; dt:191)
1876
+ os:
1877
+ name: watchOS
1878
+ short_name: WAS
1879
+ version: "6.0"
1880
+ platform: ARM
1881
+ family: iOS
1882
+ -
1883
+ user_agent: Watch1,1/4.3.2 (15U70)
1884
+ os:
1885
+ name: watchOS
1886
+ short_name: WAS
1887
+ version: 4.3.2
1888
+ platform: ARM
1889
+ family: iOS
1890
+ -
1891
+ user_agent: Watch1,2/4.3.2 (15U70)
1892
+ os:
1893
+ name: watchOS
1894
+ short_name: WAS
1895
+ version: 4.3.2
1896
+ platform: ARM
1897
+ family: iOS
1898
+ -
1899
+ user_agent: 'server-bag [Watch OS,4.3.2,15U70,Watch1,2]'
1900
+ os:
1901
+ name: watchOS
1902
+ short_name: WAS
1903
+ version: 4.3.2
1904
+ platform: ARM
1905
+ family: iOS
1906
+ -
1907
+ user_agent: BBCNewsUKWatchApp/4.3.0 (Watch1,2; watchOS 3.2.2)
1908
+ os:
1909
+ name: watchOS
1910
+ short_name: WAS
1911
+ version: 3.2.2
1912
+ platform: ARM
1913
+ family: iOS
1914
+ -
1915
+ user_agent: Mozilla/5.0 (Apple TV; U; CPU iPhone OS 10_1_1 like Mac OS X; en-US) FOX Sports GO/1160
1916
+ os:
1917
+ name: tvOS
1918
+ short_name: ATV
1919
+ version: 10.1.1
1920
+ platform: ARM
1921
+ family: iOS
1922
+ -
1923
+ user_agent: H443NM7F8H.CBSSportsApp/1.0 iOS/9.0 model/AppleTV5,3 build/13T393
1924
+ os:
1925
+ name: tvOS
1926
+ short_name: ATV
1927
+ version: "9.0"
1928
+ platform: ARM
1929
+ family: iOS
1930
+ -
1931
+ user_agent: CBS_Sports;AppleTV;H443NM7F8H.CBSSportsApp/1.0 iOS/9.0 AppleTV/9.0 model/AppleTV5,3 hwp/t7000 build/13T5379f (3; dt:119)
1932
+ os:
1933
+ name: tvOS
1934
+ short_name: ATV
1935
+ version: "9.0"
1936
+ platform: ARM
1937
+ family: iOS
1938
+ -
1939
+ user_agent: Mozilla/5.0 (Linux aarch64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36 OPR/36.0.2128.0 OMI/4.8.0.129.Driver6.39 , _TV_MT5806/201.002.048.000 (Philips, PUS78051, wireless) CE-HTML/1.0 NETTV/4.6.0.2 SignOn/2.0 SmartTvA/5.0.0 WH1.0 en
1940
+ os:
1941
+ name: Whale OS
1942
+ short_name: WHS
1943
+ version: "1.0"
1944
+ platform: ARM
1945
+ family: Other Smart TV
1946
+ -
1947
+ user_agent: Mozilla/5.0 (Linux armv7l) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.120 Safari/537.36 OPR/46.0.2207.0 Model/<Model Name>(<Brand>;<CTN>;<SW>_<SW version>;<Platform Name>) SignOn/2.0 WhaleTV/2.0 <language code>
1948
+ os:
1949
+ name: Whale OS
1950
+ short_name: WHS
1951
+ version: "2.0"
1952
+ platform: ARM
1953
+ family: Other Smart TV
1954
+ -
1955
+ user_agent: Mozilla/5.0 (Linux; Android 9; FydeOS Android) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4128.0 Safari/537.36
1956
+ os:
1957
+ name: FydeOS
1958
+ short_name: FYD
1959
+ version: ""
1960
+ platform: ""
1961
+ family: Chrome OS
1962
+ -
1963
+ user_agent: Mozilla/5.0 (X11; Linux x8664) AppleWebKit/537.36 (KHTML like Gecko) Chrome/36.0.1985.143 Safari/537.36
1964
+ os:
1965
+ name: GNU/Linux
1966
+ short_name: LIN
1967
+ version: ""
1968
+ platform: x64
1969
+ family: GNU/Linux
1970
+ -
1971
+ user_agent: Mozilla/5.0 (X11; Mageia; Linux x86_64; rv:10.0.9) Gecko/20100101 Firefox/10.0.9
1972
+ os:
1973
+ name: Mageia
1974
+ short_name: MAG
1975
+ version: ""
1976
+ platform: x64
1977
+ family: GNU/Linux
1978
+ -
1979
+ user_agent: '[FBAN/MessengerForiOS;FBAV/252.1.0.30.119;FBBV/198832146;FBDV/iPhone9,4;FBMD/iPhone;FBSN/iOS;FBSV/13.3.1;FBSS/3;FBID/phone;FBLC/en_US;FBOP/5]'
1980
+ os:
1981
+ name: iOS
1982
+ short_name: IOS
1983
+ version: 13.3.1
1984
+ platform: ""
1985
+ family: iOS
1986
+ -
1987
+ user_agent: 'LightSpeed [FBAN/MessengerLiteForiOS;FBAV/255.0.0.30.124;FBBV/ 202164847;FBDV/iPhone10,4;FBMD/iPhone;FBSN/iOS;FBSV/ 13.3.1;FBSS/2;FBCR/;FBID/phone;FBLC/en_US;FBOP/0]'
1988
+ os:
1989
+ name: iOS
1990
+ short_name: IOS
1991
+ version: 13.3.1
1992
+ platform: ""
1993
+ family: iOS
1994
+ -
1995
+ user_agent: Mozilla/5.0 (X11; U; Mac OSX; it; rv:1.9.0.7) Gecko/2009030422 Firefox/3.0.7
1996
+ os:
1997
+ name: Mac
1998
+ short_name: MAC
1999
+ version: ""
2000
+ platform: ""
2001
+ family: Mac
2002
+ -
2003
+ user_agent: Biyubi/5.0 (Sistema Fenix; G11; Familia Toledo; es-mx)
2004
+ os:
2005
+ name: Fenix
2006
+ short_name: FEN
2007
+ version: ""
2008
+ platform: ""
2009
+ family: GNU/Linux
2010
+ -
2011
+ user_agent: Biyubi/4.5 (WinFenix; G11; Familia Toledo; MX)
2012
+ os:
2013
+ name: Fenix
2014
+ short_name: FEN
2015
+ version: ""
2016
+ platform: ""
2017
+ family: GNU/Linux
2018
+ -
2019
+ user_agent: Mozilla/5.0 (WebOS; Linux/SmartTV) AppleWebKit/537.36 (KHTML, likeGecko) Chrome/53.0.2785.34 Safari/537.36 HbbTV/1.4.1 ( DRM; LGE; 43UM71007LB; WEBOS4.5 03.50.90; W45_K5LP; DTV_W19P;)
2020
+ os:
2021
+ name: webOS
2022
+ short_name: WOS
2023
+ version: "4.5"
2024
+ platform: ""
2025
+ family: Other Mobile
2026
+ -
2027
+ user_agent: Mozilla/5.0 (Linux; Andr0id 9; AFTSO001) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.125 Safari/537.36 OPR/46.0.2207.0 OMI/4.21.0.273.release HbbTV/1.5.1 ( DRM;Amazon;sophia;unknown;unknown;sophia;) FVC/6.0 (Amazon;sophia;) smarttv_AFTSO001_Build_0019126349446_Chromium_84.0.4147.125
2028
+ os:
2029
+ name: Fire OS
2030
+ short_name: FIR
2031
+ version: "7"
2032
+ platform: ""
2033
+ family: Android
2034
+ -
2035
+ user_agent: Mozilla/5.0 (Linux; Andr0id 9; BRAVIA 4K UR1 Build/PTT1.190515.001.S71) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36 OPR/46.0.2207.0 OMI/4.13.5.431.DIA5HBBTV.185 HbbTV/1.5.1 ( DRM; Sony; KDL-GN5; PKG6.4770.0615EUA; ; com.sony.HE.G3.4K; )
2036
+ os:
2037
+ name: Android
2038
+ short_name: AND
2039
+ version: "9"
2040
+ platform: ""
2041
+ family: Android
2042
+ -
2043
+ user_agent: Mozilla/5.0 (X11; Linux armv8l) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.91 Safari/537.36 HbbTV/1.5.1 ( DRM; MTC; 2K_Android_TV_V01; V0.24.7.2.M001; MS66830-ZC01-01; Reference_2K19;) FVC/4.0 (MTC; Reference_2K19;)
2044
+ os:
2045
+ name: Android
2046
+ short_name: AND
2047
+ version: ""
2048
+ platform: ARM
2049
+ family: Android
2050
+ -
2051
+ user_agent: PlacesDll Win32/x4dXIL4zf4fEINN8j7e8GA:c5f40ce19e9659484ed40cba84c12227/3.4.422.8 (Windows Phone OS/8.0; NOKIA:Lumia 625; de-DE)
2052
+ os:
2053
+ name: Windows Phone
2054
+ short_name: WPH
2055
+ version: "8.0"
2056
+ platform: ""
2057
+ family: Windows Mobile
2058
+ -
2059
+ user_agent: MAMPPRO/6.3.1 macOS/11.0.1
2060
+ os:
2061
+ name: Mac
2062
+ short_name: MAC
2063
+ version: 11.0.1
2064
+ platform: ""
2065
+ family: Mac
2066
+ -
2067
+ user_agent: UCWEB/2.0 (MIDP-2.0; U; Adr Android4.1.1; en-US; 9300) U2/1.0.0 UCBrowser/9.4.0.460 U2/1.0.0 Mobile
2068
+ os:
2069
+ name: Android
2070
+ short_name: AND
2071
+ version: 4.1.1
2072
+ platform: ""
2073
+ family: Android
2074
+ -
2075
+ user_agent: UCWEB/2.0 (MIDP-2.0; U; Adr CANVAS EXTREME EDITION; en-US; Micromax_A92) U2/1.0.0 UCBrowser/8.8.1.359 U2/1.0.0 Mobile
2076
+ os:
2077
+ name: Android
2078
+ short_name: AND
2079
+ version: ""
2080
+ platform: ""
2081
+ family: Android
2082
+ -
2083
+ user_agent: Mozilla/5.0 (X11; Linux armv8l) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.91 Safari/537.36 HbbTV/1.5.1 ( DRM; MTC; 4K_Android_TV_V01; 1.001; MS68860-ZC01-01; Reference_2K19;) FVC/4.0 (MTC; Reference_2K19;)
2084
+ os:
2085
+ name: Android
2086
+ short_name: AND
2087
+ version: ""
2088
+ platform: ARM
2089
+ family: Android
2090
+ -
2091
+ user_agent: Mozilla/5.0 (X11; Linux armv8l) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.91 Safari/537.36 HbbTV/1.5.1 (+DRM; UMC-Sharp; FVP6683;1.0.0.0;1.0.0.0; UMC_2KAndroidTV_2019;UMC_SHARP;) FVC/4.0 (UMC-Sharp; UMC_2KAndroidTV_2019;)
2092
+ os:
2093
+ name: Android
2094
+ short_name: AND
2095
+ version: ""
2096
+ platform: ARM
2097
+ family: Android
2098
+ -
2099
+ user_agent: Mozilla/5.0 (Linux; U; Allview_TX1_Quasar 4.0.4; ro-ro; ALLVIEW_TX1_Quasar Build/IMM76D) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Safari/534.30
2100
+ os:
2101
+ name: Android
2102
+ short_name: AND
2103
+ version: 4.0.4
2104
+ platform: ""
2105
+ family: Android
2106
+ -
2107
+ user_agent: Mozilla/5.0 (Linux; U; Cosmote_My_mini_Tab 4.0.4; ro-ro; Cosmote_My_mini_Tab Build/IMM76D) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Safari/534.30
2108
+ os:
2109
+ name: Android
2110
+ short_name: AND
2111
+ version: 4.0.4
2112
+ platform: ""
2113
+ family: Android
2114
+ -
2115
+ user_agent: Microsoft Office OneNote/16.0.12527.21294 (Windows/10.0; Desktop x86; es-MX; Desktop app; Acer/Aspire SW5-012)
2116
+ os:
2117
+ name: Windows
2118
+ short_name: WIN
2119
+ version: "10.0"
2120
+ platform: x86
2121
+ family: Windows
2122
+ -
2123
+ user_agent: Mozilla/5.0 (Linux; U; Android jelly bean 4.2.2; es-co; HUAWEI Y210-0151 Build/HuaweiY210-0151) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1
2124
+ os:
2125
+ name: Android
2126
+ short_name: AND
2127
+ version: 4.2.2
2128
+ platform: ""
2129
+ family: Android
2130
+ -
2131
+ user_agent: Dalvik/1.4.0 (Linux; U; Android Kit Kat 4.4; HUAWEI Y210-0151 Build/HuaweiY210-0151)
2132
+ os:
2133
+ name: Android
2134
+ short_name: AND
2135
+ version: "4.4"
2136
+ platform: ""
2137
+ family: Android
2138
+ -
2139
+ user_agent: Dalvik/1.4.0 (Linux; U; Android S.O. Ginger Bread 2.3.7; E15a Sony Xperia x8 Build/3.0.1.A.0.145)
2140
+ os:
2141
+ name: Android
2142
+ short_name: AND
2143
+ version: 2.3.7
2144
+ platform: ""
2145
+ family: Android
2146
+ -
2147
+ user_agent: Dalvik/1.6.0 (Linux; U; Android The FireCyano 4.0.4; Xperia U Build/IMM76L)
2148
+ os:
2149
+ name: Android
2150
+ short_name: AND
2151
+ version: 4.0.4
2152
+ platform: ""
2153
+ family: Android
2154
+ -
2155
+ user_agent: 'Dalvik/1.6.0 (Linux; U; Android Ice Bean: 4.3 / Android: 4.0.4'
2156
+ os:
2157
+ name: Android
2158
+ short_name: AND
2159
+ version: 4.0.4
2160
+ platform: ""
2161
+ family: Android
2162
+ -
2163
+ user_agent: Mozilla/5.0 (X11; CaixaMagica; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0
2164
+ os:
2165
+ name: Caixa Mágica
2166
+ short_name: CAI
2167
+ version: ""
2168
+ platform: x64
2169
+ family: GNU/Linux
2170
+ -
2171
+ user_agent: com.google.GoogleMobile/99.0 iPad/13.4 hw/iPad7_5
2172
+ os:
2173
+ name: iPadOS
2174
+ short_name: IPA
2175
+ version: "13.4"
2176
+ platform: ""
2177
+ family: iOS
2178
+ -
2179
+ user_agent: Mozilla/5.0 (iPad; CPU OS 14_2_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.1.1 Mobile/15E148 Safari/604.1
2180
+ os:
2181
+ name: iPadOS
2182
+ short_name: IPA
2183
+ version: 14.2.2
2184
+ platform: ""
2185
+ family: iOS
2186
+ -
2187
+ user_agent: Microsoft Office Word/2.44.1211 (iOS/14.0; Tablet; es-MX; AppStore; Apple/iPad11,6)
2188
+ os:
2189
+ name: iPadOS
2190
+ short_name: IPA
2191
+ version: "14.0"
2192
+ platform: ""
2193
+ family: iOS
2194
+ -
2195
+ user_agent: 'LightSpeed [FBAN/MessengerLiteForiOS;FBAV/270.1.0.54.119;FBBV/225524353;FBDV/iPad7,5;FBMD/iPad;FBSN/iOS;FBSV/13.5.1;FBSS/2;FBCR/;FBID/tablet;FBLC/es_ES;FBOP/0]'
2196
+ os:
2197
+ name: iPadOS
2198
+ short_name: IPA
2199
+ version: 13.5.1
2200
+ platform: ""
2201
+ family: iOS
2202
+ -
2203
+ user_agent: '[FBAN/FB4A;FBAV/72.0.0.22.69;FBBV/27550279;FBDM/{density=2.0,width=720,height=1280};FBLC/pt_BR;FBCR/Vivo;FBMF/Android;FBBD/Android;FBPN/com.facebook.katana;FBDV/J7 Prime;FBSV/6.1;FBOP/1;FBCA/armeabi-v7a:armeabi;]'
2204
+ os:
2205
+ name: Android
2206
+ short_name: AND
2207
+ version: "6.1"
2208
+ platform: ARM
2209
+ family: Android
2210
+ -
2211
+ user_agent: '[FBAN/Orca-Android;FBAV/215.1.0.21.101;FBPN/com.facebook.orca;FBLC/en_GB;FBBV/154685928;FBCR/Banglalink;FBMF/Xiaomi;FBBD/xiaomi;FBDV/Redmi Note 5;FBSV/8.1.0;FBCA/armeabi-v7a:armeabi;FBDM/{density=2.75,width=1080,height=2030};FB_FW/1;]'
2212
+ os:
2213
+ name: Android
2214
+ short_name: AND
2215
+ version: 8.1.0
2216
+ platform: ARM
2217
+ family: Android
2218
+ -
2219
+ user_agent: '[FBAN/FBIOS;FBAV/26.0.0.11.13;FBBV/7806348;FBDV/iPhone5,2;FBMD/hone;FBSN/iPhone OS;FBSV/8.1;FBSS/2; FBCR/3DK;FBID/phone;FBLC/da_DK;FBOP/5]'
2220
+ os:
2221
+ name: iOS
2222
+ short_name: IOS
2223
+ version: "8.1"
2224
+ platform: ""
2225
+ family: iOS
2226
+ -
2227
+ user_agent: com.google.Maps/5.51.0 iSL/3.3 iPhone/13.6 hw/iPhone11_8 (gzip),gzip(gfe)
2228
+ os:
2229
+ name: iOS
2230
+ short_name: IOS
2231
+ version: "13.6"
2232
+ platform: ""
2233
+ family: iOS
2234
+ -
2235
+ user_agent: Linux UPnP/1.0 Sonos/50.1-65071 (ACR_:samsung:dreamqltevl:SM-G950W)
2236
+ os:
2237
+ name: Android
2238
+ short_name: AND
2239
+ version: ""
2240
+ platform: ""
2241
+ family: Android
2242
+ -
2243
+ user_agent: Linux UPnP/1.0 Sonos/29.3-87071 (ICRU_iPhone7,1); iOS/Version 8.2 (Build 12D508)
2244
+ os:
2245
+ name: iOS
2246
+ short_name: IOS
2247
+ version: "8.2"
2248
+ platform: ""
2249
+ family: iOS
2250
+ -
2251
+ user_agent: Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36 Helio/0.98.0
2252
+ os:
2253
+ name: Lumin OS
2254
+ short_name: LOS
2255
+ version: 0.98.0
2256
+ platform: x64
2257
+ family: GNU/Linux
2258
+ -
2259
+ user_agent: Mozilla/5.0 (X11; HasCodingOs 1.0; Linux x64) AppleWebKit/637.36 (KHTML, like Gecko) Chrome/70.0.3112.101 Safari/637.36 HasBrowser/5.0
2260
+ os:
2261
+ name: HasCodingOS
2262
+ short_name: HAS
2263
+ version: "1.0"
2264
+ platform: x64
2265
+ family: GNU/Linux
2266
+ -
2267
+ user_agent: Mozilla/5.0 (Linux; U; Grid OS 1.0; en-us) AppleWebKit/533.1 (KHTML, like Gecko) Version/5.0 Safari/533.1
2268
+ os:
2269
+ name: GridOS
2270
+ short_name: GRI
2271
+ version: "1.0"
2272
+ platform: ""
2273
+ family: Android
2274
+ -
2275
+ user_agent: Mozilla/5.0 (X11; Linux x86_64; Debian/9; Deepin/15.11) Blink AppleWebKit/537.36 (KHTML, like Gecko) Chromium/78.0.3904.108 (Chrome/78.0.3904.108, Safari/537.36) QIHU 360SE/12.2.1070.0
2276
+ os:
2277
+ name: Deepin
2278
+ short_name: DEE
2279
+ version: "15.11"
2280
+ platform: x64
2281
+ family: GNU/Linux
2282
+ -
2283
+ user_agent: Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) dvkbuntu-easy-menu/1.0.0 Chrome/83.0.4103.64 Electron/9.0.0 Safari/537.36
2284
+ os:
2285
+ name: DVKBuntu
2286
+ short_name: DVK
2287
+ version: ""
2288
+ platform: x64
2289
+ family: GNU/Linux
2290
+ -
2291
+ user_agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.1.12) Gecko/20080208 PCLinuxOS/2.0.0.12-1pclos2007 (2007) Firefox/2.0.0.12
2292
+ os:
2293
+ name: PCLinuxOS
2294
+ short_name: PCL
2295
+ version: 2.0.0.12
2296
+ platform: x86
2297
+ family: GNU/Linux
2298
+ -
2299
+ user_agent: Wget/1.19.4 (mingw32)
2300
+ os:
2301
+ name: Windows
2302
+ short_name: WIN
2303
+ version: ""
2304
+ platform: ""
2305
+ family: Windows
2306
+ -
2307
+ user_agent: Wget/1.20.3 (darwin16.7.0)
2308
+ os:
2309
+ name: Mac
2310
+ short_name: MAC
2311
+ version: 10.12.6
2312
+ platform: ""
2313
+ family: Mac
2314
+ -
2315
+ user_agent: 'Mozilla/5.0 (osmeta like iPhone; U; osmeta 8.3.31975207; RM-1116_15357) AppleWebKit/602.1.1 (KHTML, like Gecko) Mobile/31975207 [FBAN/MessengerForWinPhone;FBAV/75.0.0.28.70;FBBV/31986830;FBRV/0;FBDV/WindowsPhone;FBMD/RM-1116_15357;FBSN/Windows Phone;FBSV/10.0.14364.0;FBSS/3;FBCR/;FBID/phone;FBLC/en_US;FBOP/45]'
2316
+ os:
2317
+ name: Windows Phone
2318
+ short_name: WPH
2319
+ version: 10.0.14364.0
2320
+ platform: ""
2321
+ family: Windows Mobile
2322
+ -
2323
+ user_agent: curl/7.21.4 (x86_64-apple-darwin12.2.0) libcurl/7.21.4 OpenSSL/0.9.8x zlib/1.2.5 libidn/1.20
2324
+ os:
2325
+ name: Mac
2326
+ short_name: MAC
2327
+ version: 10.8.2
2328
+ platform: x64
2329
+ family: Mac
2330
+ -
2331
+ user_agent: Mozilla/5.0 (iPod; U; CPU iPhone OS 421 like Mac OS X; fy-DE) AppleWebKit/533.17.9 (KHTML like Gecko) Mobile/8C148 iPod41 BingWeb/3.02.1641.20120106
2332
+ os:
2333
+ name: iOS
2334
+ short_name: IOS
2335
+ version: 4.2.1
2336
+ platform: ""
2337
+ family: iOS
2338
+ -
2339
+ user_agent: Opera/9.80 (iOS; Opera Mini/7.0.73345/28.2555; U; ru) Presto/2.10.229 Version/11.62
2340
+ os:
2341
+ name: iOS
2342
+ short_name: IOS
2343
+ version: ""
2344
+ platform: ""
2345
+ family: iOS
2346
+ -
2347
+ user_agent: Opera/9.80 (Android; Opera Mini/7.5.54678/28.2555; U; ru) Presto/2.10.289 Version/12.02
2348
+ os:
2349
+ name: Android
2350
+ short_name: AND
2351
+ version: ""
2352
+ platform: ""
2353
+ family: Android
2354
+ -
2355
+ user_agent: MobileSafari/604.1 CFNetwork/1237 Darwin/20.4.0
2356
+ os:
2357
+ name: iOS
2358
+ short_name: IOS
2359
+ version: "14.5"
2360
+ platform: ""
2361
+ family: iOS
2362
+ -
2363
+ user_agent: 'Opera%20Touch/77 CFNetwork/1220.1 Darwin/20.3.0'
2364
+ os:
2365
+ name: iOS
2366
+ short_name: IOS
2367
+ version: "14.4"
2368
+ platform: ""
2369
+ family: iOS
2370
+ -
2371
+ user_agent: MobileIron/12.11.12.6 CFNetwork/1240.0.4 Darwin/20.5.0
2372
+ os:
2373
+ name: iOS
2374
+ short_name: IOS
2375
+ version: "14.6"
2376
+ platform: ""
2377
+ family: iOS
2378
+ -
2379
+ user_agent: Podcasts/1570.6 CFNetwork/1240.0.4 Darwin/20.6.0
2380
+ os:
2381
+ name: iOS
2382
+ short_name: IOS
2383
+ version: "14.7"
2384
+ platform: ""
2385
+ family: iOS
2386
+ -
2387
+ user_agent: MobileSafari/604.1 CFNetwork/1286 Darwin/21.0.0
2388
+ os:
2389
+ name: iOS
2390
+ short_name: IOS
2391
+ version: "15.0"
2392
+ platform: ""
2393
+ family: iOS
2394
+ -
2395
+ user_agent: Mozilla/5.0 (Linux; Android 10; HarmonyOS; TAS-AL00; HMSCore 6.0.1.306) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.93 HuaweiBrowser/11.1.2.301 Mobile Safari/537.36
2396
+ os:
2397
+ name: HarmonyOS
2398
+ short_name: HAR
2399
+ version: ""
2400
+ platform: ""
2401
+ family: Android
2402
+ -
2403
+ user_agent: Opera/9.80 (J2ME/MIDP; Opera Mini/5.0.22371/28.3782; U; en) Presto/2.8.119 Version/11.10
2404
+ os:
2405
+ name: Java ME
2406
+ short_name: JME
2407
+ version: ""
2408
+ platform: ""
2409
+ family: Real-time OS
2410
+
2411
+ -
2412
+ user_agent: Mozilla/4.0 (REX; U; en-us; Sanyo; SCP-6750/US; NetFront/3.4/AMB)
2413
+ os:
2414
+ name: REX
2415
+ short_name: REX
2416
+ version: ""
2417
+ platform: ""
2418
+ family: Real-time OS