device_detector 0.7.0 → 0.8.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (72) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile +4 -0
  3. data/Rakefile +12 -6
  4. data/device_detector.gemspec +1 -1
  5. data/lib/device_detector.rb +65 -4
  6. data/lib/device_detector/client.rb +6 -6
  7. data/lib/device_detector/device.rb +62 -31
  8. data/lib/device_detector/memory_cache.rb +1 -1
  9. data/lib/device_detector/metadata_extractor.rb +4 -13
  10. data/lib/device_detector/model_extractor.rb +10 -1
  11. data/lib/device_detector/name_extractor.rb +1 -1
  12. data/lib/device_detector/os.rb +141 -5
  13. data/lib/device_detector/parser.rb +23 -12
  14. data/lib/device_detector/version.rb +1 -1
  15. data/lib/device_detector/version_extractor.rb +1 -1
  16. data/regexes/bots.yml +36 -1
  17. data/regexes/{browser_engines.yml → client/browser_engine.yml} +4 -1
  18. data/regexes/{browsers.yml → client/browsers.yml} +31 -27
  19. data/regexes/{feed_readers.yml → client/feed_readers.yml} +0 -1
  20. data/regexes/{libraries.yml → client/libraries.yml} +1 -1
  21. data/regexes/{mediaplayers.yml → client/mediaplayers.yml} +1 -1
  22. data/regexes/{mobile_apps.yml → client/mobile_apps.yml} +0 -1
  23. data/regexes/{pim.yml → client/pim.yml} +1 -1
  24. data/regexes/{devices → device}/cameras.yml +1 -1
  25. data/regexes/{devices → device}/car_browsers.yml +0 -1
  26. data/regexes/{devices → device}/consoles.yml +0 -1
  27. data/regexes/{devices → device}/mobiles.yml +193 -49
  28. data/regexes/{devices/portable_media_players.yml → device/portable_media_player.yml} +0 -1
  29. data/regexes/{devices → device}/televisions.yml +0 -3
  30. data/regexes/oss.yml +105 -102
  31. data/regexes/vendorfragments.yml +70 -0
  32. data/spec/device_detector/bot_fixtures_spec.rb +30 -0
  33. data/spec/device_detector/client_fixtures_spec.rb +31 -0
  34. data/spec/device_detector/concrete_user_agent_spec.rb +41 -1
  35. data/spec/device_detector/detector_fixtures_spec.rb +56 -0
  36. data/spec/device_detector/device_fixtures_spec.rb +36 -0
  37. data/spec/device_detector/device_spec.rb +3 -3
  38. data/spec/device_detector/memory_cache_spec.rb +1 -1
  39. data/spec/device_detector/model_extractor_spec.rb +7 -7
  40. data/spec/device_detector/os_fixtures_spec.rb +26 -0
  41. data/spec/device_detector/version_extractor_spec.rb +10 -10
  42. data/spec/device_detector_spec.rb +1 -1
  43. data/spec/fixtures/client/browser.yml +986 -0
  44. data/spec/fixtures/client/feed_reader.yml +180 -0
  45. data/spec/fixtures/client/library.yml +78 -0
  46. data/spec/fixtures/client/mediaplayer.yml +144 -0
  47. data/spec/fixtures/client/mobile_app.yml +24 -0
  48. data/spec/fixtures/client/pim.yml +90 -0
  49. data/spec/fixtures/detector/bots.yml +716 -0
  50. data/spec/fixtures/detector/camera.yml +91 -0
  51. data/spec/fixtures/detector/car_browser.yml +19 -0
  52. data/spec/fixtures/detector/console.yml +253 -0
  53. data/spec/fixtures/detector/desktop.yml +4568 -0
  54. data/spec/fixtures/detector/feature_phone.yml +719 -0
  55. data/spec/fixtures/detector/feed_reader.yml +462 -0
  56. data/spec/fixtures/detector/mediaplayer.yml +141 -0
  57. data/spec/fixtures/detector/mobile_apps.yml +32 -0
  58. data/spec/fixtures/detector/phablet.yml +1095 -0
  59. data/spec/fixtures/detector/portable_media_player.yml +145 -0
  60. data/spec/fixtures/detector/smart_display.yml +19 -0
  61. data/spec/fixtures/detector/smartphone.yml +28673 -0
  62. data/spec/fixtures/detector/tablet.yml +13201 -0
  63. data/spec/fixtures/detector/tv.yml +1380 -0
  64. data/spec/fixtures/detector/unknown.yml +3536 -0
  65. data/spec/fixtures/device/camera.yml +18 -0
  66. data/spec/fixtures/device/car_browser.yml +6 -0
  67. data/spec/fixtures/device/console.yml +72 -0
  68. data/spec/fixtures/parser/bots.yml +2055 -0
  69. data/spec/fixtures/parser/oss.yml +607 -0
  70. data/spec/fixtures/parser/vendorfragments.yml +156 -0
  71. data/spec/spec_helper.rb +6 -2
  72. metadata +84 -17
@@ -0,0 +1,1380 @@
1
+ ---
2
+ -
3
+ user_agent: Opera/9.80 (Linux sh4 ; U; HBBTV/1.0 (; LOH/1.00; -----;;;) CE-HTML/1.0 Config(L:de,CC:AT); en) Presto/2.5.21 Version/10.30
4
+ os:
5
+ name: GNU/Linux
6
+ short_name: LIN
7
+ version:
8
+ client:
9
+ type: browser
10
+ name: Opera
11
+ short_name: OP
12
+ version: "10.30"
13
+ engine: Presto
14
+ device:
15
+ type: tv
16
+ brand: null
17
+ model: null
18
+ os_family: GNU/Linux
19
+ browser_family: Opera
20
+ -
21
+ user_agent: Opera/10.60 (Linux sh4 ; U; HBBTV/1.0 (; LOH/2.01; -----;;;) CE-HTML/1.0 Config(Hotel,L:de,CC:DE); en) Presto/2.6.33 Version/10.60
22
+ os:
23
+ name: GNU/Linux
24
+ short_name: LIN
25
+ version:
26
+ client:
27
+ type: browser
28
+ name: Opera
29
+ short_name: OP
30
+ version: "10.60"
31
+ engine: Presto
32
+ device:
33
+ type: tv
34
+ brand: null
35
+ model: null
36
+ os_family: GNU/Linux
37
+ browser_family: Opera
38
+ -
39
+ user_agent: XBMC/PRE-11.0 Git:20110623-62171b3 (iOS; 11.0.0 AppleTV2,1; http://www.xbmc.org)
40
+ os:
41
+ name: Apple TV
42
+ short_name: ATV
43
+ version:
44
+ client:
45
+ type: mediaplayer
46
+ name: XBMC
47
+ version:
48
+ device:
49
+ type: tv
50
+ brand: AP
51
+ model: Apple TV
52
+ os_family: Apple TV
53
+ browser_family: Unknown
54
+ -
55
+ user_agent: Opera/9.80 (Linux i686; U; HbbTV/1.1.1 (+PVR+DL; BANGOLUFSEN; A3; ; ; ) CE-HTML/1.0 NETTV/1.0; en) Presto/2.10.287 Version/12.00 A3/1.0.3.30552 (BANGOLUFSEN, A3, wired)
56
+ os:
57
+ name: GNU/Linux
58
+ short_name: LIN
59
+ version:
60
+ client:
61
+ type: browser
62
+ name: Opera
63
+ short_name: OP
64
+ version: "12.00"
65
+ engine: Presto
66
+ device:
67
+ type: tv
68
+ brand: BO
69
+ model: BeoVision
70
+ os_family: GNU/Linux
71
+ browser_family: Opera
72
+ -
73
+ user_agent: Opera/9.80 (Linux i686; U; HbbTV/1.1.1 (+PVR+DL; BANGOLUFSEN; A3; ; ; ) CE-HTML/1.0 NETTV/1.0; en) Presto/2.10.287 Version/12.00 A3/1.0.3.30552 (BANGOLUFSEN, A3, wireless)
74
+ os:
75
+ name: GNU/Linux
76
+ short_name: LIN
77
+ version:
78
+ client:
79
+ type: browser
80
+ name: Opera
81
+ short_name: OP
82
+ version: "12.00"
83
+ engine: Presto
84
+ device:
85
+ type: tv
86
+ brand: BO
87
+ model: BeoVision
88
+ os_family: GNU/Linux
89
+ browser_family: Opera
90
+ -
91
+ user_agent: Opera/9.80 (Linux i686; U; HbbTV/1.1.1 (; BANGOLUFSEN; A3; ; ; ) CE-HTML/1.0 NETTV/1.0; en) Presto/2.10.287 Version/12.00 A3/1.0.2.28805 (BANGOLUFSEN, A3, wireless)
92
+ os:
93
+ name: GNU/Linux
94
+ short_name: LIN
95
+ version:
96
+ client:
97
+ type: browser
98
+ name: Opera
99
+ short_name: OP
100
+ version: "12.00"
101
+ engine: Presto
102
+ device:
103
+ type: tv
104
+ brand: BO
105
+ model: BeoVision
106
+ os_family: GNU/Linux
107
+ browser_family: Opera
108
+ -
109
+ user_agent: Opera/9.80 (Linux i686; U; HbbTV/1.1.1 (; BANGOLUFSEN; A3; ; ; ) CE-HTML/1.0 NETTV/1.0; en) Presto/2.10.287 Version/12.00 A3/1.0.2.28884 (BANGOLUFSEN, A3, wired)
110
+ os:
111
+ name: GNU/Linux
112
+ short_name: LIN
113
+ version:
114
+ client:
115
+ type: browser
116
+ name: Opera
117
+ short_name: OP
118
+ version: "12.00"
119
+ engine: Presto
120
+ device:
121
+ type: tv
122
+ brand: BO
123
+ model: BeoVision
124
+ os_family: GNU/Linux
125
+ browser_family: Opera
126
+ -
127
+ user_agent: Opera/9.80 (Linux sh4; U; ; en; CreNova Build) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 HbbTV/1.1.1 (;CreNova;CNV001;1.0;1.0; FXM-U2FsdGVkX1/VHpIx4++T5dr9nrGwg2lrTv3h0bv5wA819tf9ZWJf5kbW8psLCFgl-END; en) Presto/2.9.167 Ve
128
+ os:
129
+ name: GNU/Linux
130
+ short_name: LIN
131
+ version:
132
+ client:
133
+ type: browser
134
+ name: Opera
135
+ short_name: OP
136
+ version: "4.0"
137
+ engine: Presto
138
+ device:
139
+ type: tv
140
+ brand: CR
141
+ model: CNV001
142
+ os_family: GNU/Linux
143
+ browser_family: Opera
144
+ -
145
+ user_agent: Opera/9.80 (Linux sh4; U; CNV001; en;) HbbTV/1.1.1 (;CreNova;CNV001;1.0;1.0; FXM-U2FsdGVkX1/Oiw1OD4kjnYIMtRrxMWUbzbPMsylGXvFEN7YI7l5UInvIDEkFxQa5-END; en) Presto/2.9.167 Version/11.50
146
+ os:
147
+ name: GNU/Linux
148
+ short_name: LIN
149
+ version:
150
+ client:
151
+ type: browser
152
+ name: Opera
153
+ short_name: OP
154
+ version: "11.50"
155
+ engine: Presto
156
+ device:
157
+ type: tv
158
+ brand: CR
159
+ model: CNV001
160
+ os_family: GNU/Linux
161
+ browser_family: Opera
162
+ -
163
+ user_agent: Mozilla/5.0 (Linux mips; U;HbbTV/1.1.1 (+RTSP;DMM;Dreambox;0.1a;1.0;) CE-HTML/1.0; en) AppleWebKit/535.19 no/Volksbox QtWebkit/2.2
164
+ os:
165
+ name: GNU/Linux
166
+ short_name: LIN
167
+ version:
168
+ client: null
169
+ device:
170
+ type: tv
171
+ brand: DM
172
+ model: Dreambox
173
+ os_family: GNU/Linux
174
+ browser_family: Unknown
175
+ -
176
+ user_agent: Mozilla/5.0 (Linux; GoogleTV 3.2; VAP430 Build/MASTER) AppleWebKit/534.24 (KHTML, like Gecko) Chrome/11.0.696.77 Safari/534.24
177
+ os:
178
+ name: Google TV
179
+ short_name: GTV
180
+ version: "3.2"
181
+ client:
182
+ type: browser
183
+ name: Chrome
184
+ short_name: CH
185
+ version: "11.0.696.77"
186
+ engine: WebKit
187
+ device:
188
+ type: tv
189
+ brand: GO
190
+ model: GoogleTV
191
+ os_family: Google TV
192
+ browser_family: Chrome
193
+ -
194
+ 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
195
+ os:
196
+ name: Google TV
197
+ short_name: GTV
198
+ version: "092754"
199
+ client:
200
+ type: browser
201
+ name: Chrome
202
+ short_name: CH
203
+ version: "11.0.696.77"
204
+ engine: WebKit
205
+ device:
206
+ type: tv
207
+ brand: GO
208
+ model: GoogleTV
209
+ os_family: Google TV
210
+ browser_family: Chrome
211
+ -
212
+ user_agent: Opera/9.80 (Linux 7405b0-smp; U; HbbTV/1.1.1 (; Humax; CXHD-5100C; 1.00.23; 1.0; ); ce-html/1.0; en) Presto/2.9.167 Version/11.50
213
+ os:
214
+ name: GNU/Linux
215
+ short_name: LIN
216
+ version:
217
+ client:
218
+ type: browser
219
+ name: Opera
220
+ short_name: OP
221
+ version: "11.50"
222
+ engine: Presto
223
+ device:
224
+ type: tv
225
+ brand: HX
226
+ model: CXHD-5100C
227
+ os_family: GNU/Linux
228
+ browser_family: Opera
229
+ -
230
+ user_agent: HbbTV/1.1.1 (+PVR;Humax;HD FOX+;1.00.12;1.0)CE-HTML/1.0 ANTGalio/3.1.1.23.04.09
231
+ os: [ ]
232
+ client:
233
+ type: browser
234
+ name: ANTGalio
235
+ short_name: AG
236
+ version: "3.1.1.23.04.09"
237
+ engine:
238
+ device:
239
+ type: tv
240
+ brand: HX
241
+ model: HD FOX+
242
+ os_family: Unknown
243
+ browser_family: Unknown
244
+ -
245
+ user_agent: Opera/9.80 (Linux 7325b0; U; HbbTV/1.1.1 (; Humax; HD NANO; 1.00.16; 1.0; ); ce-html/1.0; en) Presto/2.9.167 Version/11.50
246
+ os:
247
+ name: GNU/Linux
248
+ short_name: LIN
249
+ version:
250
+ client:
251
+ type: browser
252
+ name: Opera
253
+ short_name: OP
254
+ version: "11.50"
255
+ engine: Presto
256
+ device:
257
+ type: tv
258
+ brand: HX
259
+ model: HD NANO
260
+ os_family: GNU/Linux
261
+ browser_family: Opera
262
+ -
263
+ user_agent: Opera/9.80 (Linux mips; U; HbbTV/1.1.1 (; Humax; hms1000s; 1.0.0; 1.0.0; ); ce-html/1.0; en) Presto/2.10.250 Version/11.60
264
+ os:
265
+ name: GNU/Linux
266
+ short_name: LIN
267
+ version:
268
+ client:
269
+ type: browser
270
+ name: Opera
271
+ short_name: OP
272
+ version: "11.60"
273
+ engine: Presto
274
+ device:
275
+ type: tv
276
+ brand: HX
277
+ model: HMS-1000S
278
+ os_family: GNU/Linux
279
+ browser_family: Opera
280
+ -
281
+ user_agent: HbbTV/1.1.1 (+PVR;Humax;iCord Cable;1.01.09;1.0)CE-HTML/1.0 ANTGalio/3.1.1.23.04.09
282
+ os: [ ]
283
+ client:
284
+ type: browser
285
+ name: ANTGalio
286
+ short_name: AG
287
+ version: "3.1.1.23.04.09"
288
+ engine:
289
+ device:
290
+ type: tv
291
+ brand: HX
292
+ model: iCord Cable
293
+ os_family: Unknown
294
+ browser_family: Unknown
295
+ -
296
+ user_agent: Opera/9.80 (Linux mips; U; HbbTV/1.1.1 (; Humax; iCord HD+; 1.0.0; 1.0.0; ); ce-html/1.0; en) Presto/2.10.250 Version/11.60
297
+ os:
298
+ name: GNU/Linux
299
+ short_name: LIN
300
+ version:
301
+ client:
302
+ type: browser
303
+ name: Opera
304
+ short_name: OP
305
+ version: "11.60"
306
+ engine: Presto
307
+ device:
308
+ type: tv
309
+ brand: HX
310
+ model: iCord HD+
311
+ os_family: GNU/Linux
312
+ browser_family: Opera
313
+ -
314
+ user_agent: Opera/9.80 (Linux 7335b0-smp; U; HbbTV/1.1.1 (; Humax; iCord MINI; 0.90.02; 1.0; ); ce-html/1.0; en) Presto/2.10.250 Version/11.60
315
+ os:
316
+ name: GNU/Linux
317
+ short_name: LIN
318
+ version:
319
+ client:
320
+ type: browser
321
+ name: Opera
322
+ short_name: OP
323
+ version: "11.60"
324
+ engine: Presto
325
+ device:
326
+ type: tv
327
+ brand: HX
328
+ model: iCord MINI
329
+ os_family: GNU/Linux
330
+ browser_family: Opera
331
+ -
332
+ user_agent: Opera/9.80 (Linux 7325b0; U; HbbTV/1.1.1 (; Humax; IRHD-5100S; 1.01.26; 1.0; ); ce-html/1.0; en) Presto/2.9.167 Version/11.50
333
+ os:
334
+ name: GNU/Linux
335
+ short_name: LIN
336
+ version:
337
+ client:
338
+ type: browser
339
+ name: Opera
340
+ short_name: OP
341
+ version: "11.50"
342
+ engine: Presto
343
+ device:
344
+ type: tv
345
+ brand: HX
346
+ model: IRHD-5100S
347
+ os_family: GNU/Linux
348
+ browser_family: Opera
349
+ -
350
+ user_agent: Opera/9.80 (Linux armv6l; U; NETRANGEMMH;HbbTV/1.1.1;CE-HTML/1.0;IKEA LF1V358; en) Presto/2.10.250 Version/11.60
351
+ os:
352
+ name: GNU/Linux
353
+ short_name: LIN
354
+ version:
355
+ client:
356
+ type: browser
357
+ name: Opera
358
+ short_name: OP
359
+ version: "11.60"
360
+ engine: Presto
361
+ device:
362
+ type: tv
363
+ brand: IA
364
+ model: LF1V358
365
+ os_family: GNU/Linux
366
+ browser_family: Opera
367
+ -
368
+ user_agent: Opera/9.80 (Linux sh4; U; HbbTV/1.1.1 (; INTEK; Vantage Full HD Model;;;) hdplusSmartTV/1.0 (NETRANGEMMH;) Bee/3.2 CE-HTML/1.0; FXM-U2FsdGVkX19WaYSyGq70V2qt2C4bR92ULIOEtQrDKma1eRx3WQlWfuTO6eCHMYQm-END; en) Presto/2.10.250 Version/11.60
369
+ os:
370
+ name: GNU/Linux
371
+ short_name: LIN
372
+ version:
373
+ client:
374
+ type: browser
375
+ name: Opera
376
+ short_name: OP
377
+ version: "11.60"
378
+ engine: Presto
379
+ device:
380
+ type: tv
381
+ brand: IT
382
+ model: Vantage
383
+ os_family: GNU/Linux
384
+ browser_family: Opera
385
+ -
386
+ user_agent: Opera/9.80 (Linux sh4; U; HbbTV/1.1.1 (; INTEK; VT-100 HD+;;;) hdplusSmartTV/1.0 (NETRANGEMMH;) Bee/3.2 CE-HTML/1.0; en) Presto/2.10.250 Version/11.60
387
+ os:
388
+ name: GNU/Linux
389
+ short_name: LIN
390
+ version:
391
+ client:
392
+ type: browser
393
+ name: Opera
394
+ short_name: OP
395
+ version: "11.60"
396
+ engine: Presto
397
+ device:
398
+ type: tv
399
+ brand: IT
400
+ model: VT-100
401
+ os_family: GNU/Linux
402
+ browser_family: Opera
403
+ -
404
+ user_agent: Opera/9.80 (Linux sh4; U; HbbTV/1.1.1 (; INTEK; VT-100 HD+;;;) hdplusSmartTV/1.0 (NETRANGEMMH;) Bee/3.2 CE-HTML/1.0; FXM-U2FsdGVkX1+9IFast5+XgFhStntZ2aPC75KXhmr7DTyTjVYcbAaLpfmxnMmKiXRe-END; en) Presto/2.10.250 Version/11.60
405
+ os:
406
+ name: GNU/Linux
407
+ short_name: LIN
408
+ version:
409
+ client:
410
+ type: browser
411
+ name: Opera
412
+ short_name: OP
413
+ version: "11.60"
414
+ engine: Presto
415
+ device:
416
+ type: tv
417
+ brand: IT
418
+ model: VT-100
419
+ os_family: GNU/Linux
420
+ browser_family: Opera
421
+ -
422
+ user_agent: 'Mozilla/5.0 (;;;) AppleWebKit/534.6 HbbTV/1.1.1 (+DL+PVR; inverto; IDL-6640N Volksbox Essential; 1.0; 1.0;) hdplusinteraktiv/1.0 (NETRANGEMMH;) CE-HTML/1.0'
423
+ os: [ ]
424
+ client: null
425
+ device:
426
+ type: tv
427
+ brand: IV
428
+ model: Volksbox Essential
429
+ os_family: Unknown
430
+ browser_family: Unknown
431
+ -
432
+ user_agent: 'Mozilla/5.0 (;;;) AppleWebKit/534.6 HbbTV/1.1.1 (+DL+PVR; inverto; IDL-6750N Volksbox II; 1.0; 1.0;) hdplusinteraktiv/1.0 (NETRANGEMMH;) CE-HTML/1.0'
433
+ os: [ ]
434
+ client: null
435
+ device:
436
+ type: tv
437
+ brand: IV
438
+ model: Volksbox II
439
+ os_family: Unknown
440
+ browser_family: Unknown
441
+ -
442
+ user_agent: 'Mozilla/5.0 (;;;) AppleWebKit/534.6 HbbTV/1.1.1 (+DL+PVR; inverto; IDL-6651N Volksbox Web Edition; 1.0; 1.0;) hdplusinteraktiv/1.0 (NETRANGEMMH;) CE-HTML/1.0'
443
+ os: [ ]
444
+ client: null
445
+ device:
446
+ type: tv
447
+ brand: IV
448
+ model: Volksbox Web Edition
449
+ os_family: Unknown
450
+ browser_family: Unknown
451
+ -
452
+ user_agent: Mozilla/5.0 (DirectFB; U; Linux 7630; en) AppleWebKit/531.2+ (KHTML, like Gecko) Safari/531.2+ HbbTV/1.1.1 ( ;LGE ;GLOBAL_PLAT3 ;BR.8.97.067.B ;1.0.0.1 ;)
453
+ os:
454
+ name: GNU/Linux
455
+ short_name: LIN
456
+ version:
457
+ client:
458
+ type: browser
459
+ name: Safari
460
+ short_name: SF
461
+ version:
462
+ engine: WebKit
463
+ device:
464
+ type: tv
465
+ brand: LG
466
+ model: GLOBAL PLAT3
467
+ os_family: GNU/Linux
468
+ browser_family: Safari
469
+ -
470
+ user_agent: Mozilla/5.0 (DirectFB; U; Linux mips; en) AppleWebKit/531.2+ (KHTML, like Gecko) Safari/531.2+ LG Browser/4.0.10(+SCREEN+TUNER; LGE; 42LE5500-SA; 04.02.02; 0x00000001;); LG NetCast.TV-2010
471
+ os:
472
+ name: GNU/Linux
473
+ short_name: LIN
474
+ version:
475
+ client:
476
+ type: browser
477
+ name: Safari
478
+ short_name: SF
479
+ version:
480
+ engine: WebKit
481
+ device:
482
+ type: tv
483
+ brand: LG
484
+ model: NetCast
485
+ os_family: GNU/Linux
486
+ browser_family: Safari
487
+ -
488
+ user_agent: Mozilla/5.0 (DirectFB; Linux armv7l) AppleWebKit/534.26+ (KHTML, like Gecko) Version/5.0 Safari/534.26+ HbbTV/1.1.1 ( ;LGE ;NetCast 3.0 ;1.0 ;1.0M ;)
489
+ os:
490
+ name: GNU/Linux
491
+ short_name: LIN
492
+ version:
493
+ client:
494
+ type: browser
495
+ name: Safari
496
+ short_name: SF
497
+ version: "5.0"
498
+ engine: WebKit
499
+ device:
500
+ type: tv
501
+ brand: LG
502
+ model: NetCast 3.0
503
+ os_family: GNU/Linux
504
+ browser_family: Safari
505
+ -
506
+ user_agent: Mozilla/5.0 (Unknown; Linux armv7l) AppleWebKit/537.1+ (KHTML, like Gecko) Safari/537.1+ HbbTV/1.1.1 ( ;LGE ;NetCast 4.0 ;03.10.81 ;1.0M ;)
507
+ os:
508
+ name: GNU/Linux
509
+ short_name: LIN
510
+ version:
511
+ client:
512
+ type: browser
513
+ name: Safari
514
+ short_name: SF
515
+ version:
516
+ engine: WebKit
517
+ device:
518
+ type: tv
519
+ brand: LG
520
+ model: NetCast 4.0
521
+ os_family: GNU/Linux
522
+ browser_family: Safari
523
+ -
524
+ user_agent: LOEWE/TV HbbTV/1.1.1 (+PVR; Loewe; SL121; LOH;;) CE-HTML/1.0 SL121/16.16.0
525
+ os: [ ]
526
+ client: null
527
+ device:
528
+ type: tv
529
+ brand: LO
530
+ model: SL121
531
+ os_family: Unknown
532
+ browser_family: Unknown
533
+ -
534
+ user_agent: LOEWE/TV HbbTV/1.1.1 CE-HTML/1.0 SL121/16.16.0
535
+ os: [ ]
536
+ client: null
537
+ device:
538
+ type: tv
539
+ brand: LO
540
+ model: SL121
541
+ os_family: Unknown
542
+ browser_family: Unknown
543
+ -
544
+ user_agent: LOEWE/TV HBBTV/1.0 CE-HTML/1.0 SL150/14.16.0
545
+ os: [ ]
546
+ client: null
547
+ device:
548
+ type: tv
549
+ brand: LO
550
+ model: SL150
551
+ os_family: Unknown
552
+ browser_family: Unknown
553
+ -
554
+ user_agent: Opera/9.80 (Linux sh4; U; HbbTV/1.1.1 (+PVR; Loewe; SL150; LOH/3.10;;) CE-HTML/1.0 Config(L:slv,CC:DEU); en) Presto/2.10.250 Version/11.60
555
+ os:
556
+ name: GNU/Linux
557
+ short_name: LIN
558
+ version:
559
+ client:
560
+ type: browser
561
+ name: Opera
562
+ short_name: OP
563
+ version: "11.60"
564
+ engine: Presto
565
+ device:
566
+ type: tv
567
+ brand: LO
568
+ model: SL150
569
+ os_family: GNU/Linux
570
+ browser_family: Opera
571
+ -
572
+ user_agent: LOEWE/TV HbbTV/1.2.1 (+PVR; Loewe; SL220; LOH/4.00;;) CE-HTML/1.0 SL220/
573
+ os: [ ]
574
+ client: null
575
+ device:
576
+ type: tv
577
+ brand: LO
578
+ model: SL220
579
+ os_family: Unknown
580
+ browser_family: Unknown
581
+ -
582
+ user_agent: Opera/9.80 (Linux sh4; U; HbbTV/1.2.1 (+PVR; Loewe; SL220; LOH/4.00;;) CE-HTML/1.0 Config(L:deu,CC:CHE) NETRANGEMMH; en) Presto/2.10.250 Version/11.60
583
+ os:
584
+ name: GNU/Linux
585
+ short_name: LIN
586
+ version:
587
+ client:
588
+ type: browser
589
+ name: Opera
590
+ short_name: OP
591
+ version: "11.60"
592
+ engine: Presto
593
+ device:
594
+ type: tv
595
+ brand: LO
596
+ model: SL220
597
+ os_family: GNU/Linux
598
+ browser_family: Opera
599
+ -
600
+ user_agent: Mozilla/5.0 (DirectFB; U; Linux armv6l; c) AppleWebKit/531.2+ (KHTML, like Gecko) Safari/531.2+ HbbTV/1.1.1 (;Metz;MMS;;;)
601
+ os:
602
+ name: GNU/Linux
603
+ short_name: LIN
604
+ version:
605
+ client:
606
+ type: browser
607
+ name: Safari
608
+ short_name: SF
609
+ version:
610
+ engine: WebKit
611
+ device:
612
+ type: tv
613
+ brand: ME
614
+ model:
615
+ os_family: GNU/Linux
616
+ browser_family: Safari
617
+ -
618
+ user_agent: HbbTV/1.1.1 (;MTK;MT5396;;;) ANTGalio/3.2.0.C341.06
619
+ os: [ ]
620
+ client:
621
+ type: browser
622
+ name: ANTGalio
623
+ short_name: AG
624
+ version: "3.2.0"
625
+ engine:
626
+ device:
627
+ type: tv
628
+ brand: MK
629
+ model: MT5396
630
+ os_family: Unknown
631
+ browser_family: Unknown
632
+ -
633
+ user_agent: HbbTV/1.2.1 (;MTK;MT5396;;;) ANTGalio/3.3.0.26.02.devel
634
+ os: [ ]
635
+ client:
636
+ type: browser
637
+ name: ANTGalio
638
+ short_name: AG
639
+ version: "3.3.0.26.02"
640
+ engine:
641
+ device:
642
+ type: tv
643
+ brand: MK
644
+ model: MT5396
645
+ os_family: Unknown
646
+ browser_family: Unknown
647
+ -
648
+ user_agent: Opera/9.80 (Linux mn10300; U; HbbTV/1.1.1 (+PVR; Panasonic; DIGA M9031; 3.030; ; ); en) Presto/2.9.167 Version/11.50
649
+ os:
650
+ name: GNU/Linux
651
+ short_name: LIN
652
+ version:
653
+ client:
654
+ type: browser
655
+ name: Opera
656
+ short_name: OP
657
+ version: "11.50"
658
+ engine: Presto
659
+ device:
660
+ type: tv
661
+ brand: PA
662
+ model:
663
+ os_family: GNU/Linux
664
+ browser_family: Opera
665
+ -
666
+ user_agent: HbbTV/1.1.1 (;Panasonic;VIERA 2011;1.805;0071-7702 2000-0000;)
667
+ os: [ ]
668
+ client: null
669
+ device:
670
+ type: tv
671
+ brand: PA
672
+ model: VIERA 2011
673
+ os_family: Unknown
674
+ browser_family: Unknown
675
+ -
676
+ user_agent: HbbTV/1.1.1 (;Panasonic;VIERA 2012;1.210;0071-3403 2000-0000;)
677
+ os: [ ]
678
+ client: null
679
+ device:
680
+ type: tv
681
+ brand: PA
682
+ model: VIERA 2012
683
+ os_family: Unknown
684
+ browser_family: Unknown
685
+ -
686
+ user_agent: HbbTV/1.2.1 (;Panasonic;VIERA 2013;3.838;1101-0003 0004-0000;)
687
+ os: [ ]
688
+ client: null
689
+ device:
690
+ type: tv
691
+ brand: PA
692
+ model: VIERA 2013
693
+ os_family: Unknown
694
+ browser_family: Unknown
695
+ -
696
+ user_agent: Opera/9.80 (Linux armv6l; U; NETRANGEMMH;HbbTV/1.1.1;CE-HTML/1.0;PEAQ LF1V350; en) Presto/2.8.115 Version/11.10
697
+ os:
698
+ name: GNU/Linux
699
+ short_name: LIN
700
+ version:
701
+ client:
702
+ type: browser
703
+ name: Opera
704
+ short_name: OP
705
+ version: "11.10"
706
+ engine: Presto
707
+ device:
708
+ type: tv
709
+ brand: PE
710
+ model: LF1V350
711
+ os_family: GNU/Linux
712
+ browser_family: Opera
713
+ -
714
+ user_agent: Opera/9.80 (Linux i686; U; HbbTV/1.1.1 (; Philips; ; ; ; ) CE-HTML/1.0 NETTV/4.0.1; en) Presto/2.10.250 Version/11.60
715
+ os:
716
+ name: GNU/Linux
717
+ short_name: LIN
718
+ version:
719
+ client:
720
+ type: browser
721
+ name: Opera
722
+ short_name: OP
723
+ version: "11.60"
724
+ engine: Presto
725
+ device:
726
+ type: tv
727
+ brand: PH
728
+ model: NETTV/4.0.1
729
+ os_family: GNU/Linux
730
+ browser_family: Opera
731
+ -
732
+ user_agent: Mozilla/5.0 (Linux; U; Android 4.1.1; tr-tr; MK808 Build/JRO03H) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Safari/534.30
733
+ os:
734
+ name: Android
735
+ short_name: AND
736
+ version: "4.1.1"
737
+ client:
738
+ type: browser
739
+ name: Android Browser
740
+ short_name: AN
741
+ version:
742
+ engine: WebKit
743
+ device:
744
+ type: tv
745
+ brand: RI
746
+ model: MK808
747
+ os_family: Android
748
+ browser_family: Android Browser
749
+ -
750
+ user_agent: Mozilla/5.0 (Linux; U; Android 4.2.2; fr-fr; mk808b Build/JDQ39) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Safari/534.30
751
+ os:
752
+ name: Android
753
+ short_name: AND
754
+ version: "4.2.2"
755
+ client:
756
+ type: browser
757
+ name: Android Browser
758
+ short_name: AN
759
+ version:
760
+ engine: WebKit
761
+ device:
762
+ type: tv
763
+ brand: RI
764
+ model: MK808b
765
+ os_family: Android
766
+ browser_family: Android Browser
767
+ -
768
+ user_agent: Mozilla/5.0 (SmartHub; SMART-TV; U; Linux/SmartTV; Maple2012)
769
+ os:
770
+ name: GNU/Linux
771
+ short_name: LIN
772
+ version:
773
+ client: null
774
+ device:
775
+ type: tv
776
+ brand: SA
777
+ model: Smart TV
778
+ os_family: GNU/Linux
779
+ browser_family: Unknown
780
+ -
781
+ user_agent: Mozilla/5.0 (SMART-TV; X11; Linux i686) AppleWebKit/535.20+ (KHTML, like Gecko) Version/5.0 Safari/535.20+
782
+ os:
783
+ name: GNU/Linux
784
+ short_name: LIN
785
+ version:
786
+ client:
787
+ type: browser
788
+ name: Safari
789
+ short_name: SF
790
+ version: "5.0"
791
+ engine: WebKit
792
+ device:
793
+ type: tv
794
+ brand: SA
795
+ model: Smart TV
796
+ os_family: GNU/Linux
797
+ browser_family: Safari
798
+ -
799
+ user_agent: HbbTV/1.1.1 (;;;;;) Maple_2011
800
+ os: [ ]
801
+ client: null
802
+ device:
803
+ type: tv
804
+ brand: SA
805
+ model: SmartTV2011
806
+ os_family: Unknown
807
+ browser_family: Unknown
808
+ -
809
+ user_agent: HbbTV/1.1.1 (;Samsung;SmartTV2012;;;) WebKit
810
+ os: [ ]
811
+ client: null
812
+ device:
813
+ type: tv
814
+ brand: SA
815
+ model: SmartTV2012
816
+ os_family: Unknown
817
+ browser_family: Unknown
818
+ -
819
+ user_agent: HbbTV/1.1.1 (;Samsung;SmartTV2013;BPH-F8509EUB-1003.2;;) WebKit
820
+ os: [ ]
821
+ client: null
822
+ device:
823
+ type: tv
824
+ brand: SA
825
+ model: SmartTV2013
826
+ os_family: Unknown
827
+ browser_family: Unknown
828
+ -
829
+ user_agent: DLNADOC/1.50 SHARP-AQUOS-DMP/2.0W
830
+ os: [ ]
831
+ client: null
832
+ device:
833
+ type: tv
834
+ brand: SH
835
+ model: Aquos Net Plus
836
+ os_family: Unknown
837
+ browser_family: Unknown
838
+ -
839
+ user_agent: Mozilla/5.0 (DTV) AppleWebKit/531.2+ (KHTML, like Gecko) Espial/6.1.5 AQUOSBrowser/2.0 (US01DTV;V;0001;0001)
840
+ os: [ ]
841
+ client:
842
+ type: browser
843
+ name: Espial TV Browser
844
+ short_name: ES
845
+ version: "6.1.5"
846
+ engine: WebKit
847
+ device:
848
+ type: tv
849
+ brand: SH
850
+ model: Aquos Net Plus
851
+ os_family: Unknown
852
+ browser_family: Unknown
853
+ -
854
+ user_agent: Opera/9.80 (Linux mips; U; NETRANGEMMH; Sharp; HbbTV/1.1.1; CE-HTML/1.0; LE542E; FT; LC:deu; CC:che;; en) Presto/2.9.167 Version/11.50
855
+ os:
856
+ name: GNU/Linux
857
+ short_name: LIN
858
+ version:
859
+ client:
860
+ type: browser
861
+ name: Opera
862
+ short_name: OP
863
+ version: "11.50"
864
+ engine: Presto
865
+ device:
866
+ type: tv
867
+ brand: SH
868
+ model: LE542E
869
+ os_family: GNU/Linux
870
+ browser_family: Opera
871
+ -
872
+ user_agent: Opera/9.80 (Linux sh4; HbbTV/1.2.1 (;Sharp;LE652;v0.1.43.5;;) CE-HTML/1.0 Config(L:deu,CC:DEU) NETRANGEMMH) Presto/2.12.362 Version/12.10
873
+ os:
874
+ name: GNU/Linux
875
+ short_name: LIN
876
+ version:
877
+ client:
878
+ type: browser
879
+ name: Opera
880
+ short_name: OP
881
+ version: "12.10"
882
+ engine: Presto
883
+ device:
884
+ type: tv
885
+ brand: SH
886
+ model: LE652
887
+ os_family: GNU/Linux
888
+ browser_family: Opera
889
+ -
890
+ user_agent: Opera/9.80 (Linux mips; U; HbbTV/1.1.1 ( ; Sharp; LE737; 690.1; 1.32;); en) Presto/2.9.167 Version/11.50
891
+ os:
892
+ name: GNU/Linux
893
+ short_name: LIN
894
+ version:
895
+ client:
896
+ type: browser
897
+ name: Opera
898
+ short_name: OP
899
+ version: "11.50"
900
+ engine: Presto
901
+ device:
902
+ type: tv
903
+ brand: SH
904
+ model: LE737
905
+ os_family: GNU/Linux
906
+ browser_family: Opera
907
+ -
908
+ user_agent: Opera/9.80 (Linux sh4; HbbTV/1.2.1 (;Sharp;LE752;v0.1.18.1;;) CE-HTML/1.0 Config(L:eng,CC:DEU) NETRANGEMMH) Presto/2.12.362 Version/12.10
909
+ os:
910
+ name: GNU/Linux
911
+ short_name: LIN
912
+ version:
913
+ client:
914
+ type: browser
915
+ name: Opera
916
+ short_name: OP
917
+ version: "12.10"
918
+ engine: Presto
919
+ device:
920
+ type: tv
921
+ brand: SH
922
+ model: LE752
923
+ os_family: GNU/Linux
924
+ browser_family: Opera
925
+ -
926
+ user_agent: 'Opera/9.80 (Linux mips; U; HbbTV/1.1.1 (; Sony; KDL32CX525; PKG4.008EUA; 2011;);; en) Presto/2.7.61 Version/11.00'
927
+ os:
928
+ name: GNU/Linux
929
+ short_name: LIN
930
+ version:
931
+ client:
932
+ type: browser
933
+ name: Opera
934
+ short_name: OP
935
+ version: "11.00"
936
+ engine: Presto
937
+ device:
938
+ type: tv
939
+ brand: SO
940
+ model: KDL32CX525
941
+ os_family: GNU/Linux
942
+ browser_family: Opera
943
+ -
944
+ user_agent: 'Opera/9.80 (Linux armv7l; U; HbbTV/1.1.1 (; Sony; KDL40HX758; PKG1.212EUA; 2013;);; en) Presto/2.10.287 Version/12.00'
945
+ os:
946
+ name: GNU/Linux
947
+ short_name: LIN
948
+ version:
949
+ client:
950
+ type: browser
951
+ name: Opera
952
+ short_name: OP
953
+ version: "12.00"
954
+ engine: Presto
955
+ device:
956
+ type: tv
957
+ brand: SO
958
+ model: KDL40HX758
959
+ os_family: GNU/Linux
960
+ browser_family: Opera
961
+ -
962
+ user_agent: 'Opera/9.80 (Linux armv7l; HbbTV/1.1.1 (; Sony; KDL42W805A; PKG3.105EUA; 2013;); ) Presto/2.12.362 Version/12.11'
963
+ os:
964
+ name: GNU/Linux
965
+ short_name: LIN
966
+ version:
967
+ client:
968
+ type: browser
969
+ name: Opera
970
+ short_name: OP
971
+ version: "12.11"
972
+ engine: Presto
973
+ device:
974
+ type: tv
975
+ brand: SO
976
+ model: KDL42W805
977
+ os_family: GNU/Linux
978
+ browser_family: Opera
979
+ -
980
+ user_agent: 'Opera/9.80 (Linux armv7l; U; HbbTV/1.1.1 (; Sony; KDL46EX650; PKG0.002EUA; 2013;);; en) Presto/2.10.287 Version/12.00'
981
+ os:
982
+ name: GNU/Linux
983
+ short_name: LIN
984
+ version:
985
+ client:
986
+ type: browser
987
+ name: Opera
988
+ short_name: OP
989
+ version: "12.00"
990
+ engine: Presto
991
+ device:
992
+ type: tv
993
+ brand: SO
994
+ model: KDL46EX650
995
+ os_family: GNU/Linux
996
+ browser_family: Opera
997
+ -
998
+ user_agent: 'Opera/9.80 (Linux mips; U; HbbTV/1.1.1 (; Sony; KDL55NX725; PKG4.012EUA; 2011;);; en) Presto/2.7.61 Version/11.00'
999
+ os:
1000
+ name: GNU/Linux
1001
+ short_name: LIN
1002
+ version:
1003
+ client:
1004
+ type: browser
1005
+ name: Opera
1006
+ short_name: OP
1007
+ version: "11.00"
1008
+ engine: Presto
1009
+ device:
1010
+ type: tv
1011
+ brand: SO
1012
+ model: KDL55NX725
1013
+ os_family: GNU/Linux
1014
+ browser_family: Opera
1015
+ -
1016
+ user_agent: 'Mozilla/5.0 (;;;) AppleWebKit/534.6 HbbTV/1.1.1 (+DL+PVR; smart; CX10; 1.0; 1.0;) CE-HTML/1.0'
1017
+ os: [ ]
1018
+ client: null
1019
+ device:
1020
+ type: tv
1021
+ brand: SR
1022
+ model: CX10
1023
+ os_family: Unknown
1024
+ browser_family: Unknown
1025
+ -
1026
+ user_agent: 'Mozilla/5.0 (;;;) AppleWebKit/534.6 HbbTV/1.1.1 (+DL+PVR; smart; VX10; 1.0; 1.0;) CE-HTML/1.0'
1027
+ os: [ ]
1028
+ client: null
1029
+ device:
1030
+ type: tv
1031
+ brand: SR
1032
+ model: VX10
1033
+ os_family: Unknown
1034
+ browser_family: Unknown
1035
+ -
1036
+ user_agent: 'Mozilla/5.0 (;;;) AppleWebKit/534.6 HbbTV/1.1.1 (+DL+PVR; smart; ZAPPIX HD+; 1.0; 1.0;) CE-HTML/1.0'
1037
+ os: [ ]
1038
+ client: null
1039
+ device:
1040
+ type: tv
1041
+ brand: SR
1042
+ model: ZAPPIX
1043
+ os_family: Unknown
1044
+ browser_family: Unknown
1045
+ -
1046
+ user_agent: 'Mozilla/5.0 (;;;) AppleWebKit/534.6 HbbTV/1.1.1 (+DL+PVR; selevision; Selevision EMC1000i; 1.0; 1.0;) CE-HTML/1.0'
1047
+ os: [ ]
1048
+ client: null
1049
+ device:
1050
+ type: tv
1051
+ brand: SV
1052
+ model: EMC1000i
1053
+ os_family: Unknown
1054
+ browser_family: Unknown
1055
+ -
1056
+ user_agent: 'Mozilla/5.0 (;;;) AppleWebKit/534.6 HbbTV/1.1.1 (+DL+PVR; selevision; Selevision EMC1000i; 1.0; 1.0;) hdplusinteraktiv/1.0 (NETRANGEMMH;) CE-HTML/1.0'
1057
+ os: [ ]
1058
+ client: null
1059
+ device:
1060
+ type: tv
1061
+ brand: SV
1062
+ model: EMC1000i
1063
+ os_family: Unknown
1064
+ browser_family: Unknown
1065
+ -
1066
+ user_agent: Opera/9.80 (Linux mips; U; NETRANGEMMH;HbbTV/1.1.1;CE-HTML/1.0;TCL LF1V042; en) Presto/2.10.287 Version/12.00
1067
+ os:
1068
+ name: GNU/Linux
1069
+ short_name: LIN
1070
+ version:
1071
+ client:
1072
+ type: browser
1073
+ name: Opera
1074
+ short_name: OP
1075
+ version: "12.00"
1076
+ engine: Presto
1077
+ device:
1078
+ type: tv
1079
+ brand: TC
1080
+ model: LF1V042
1081
+ os_family: GNU/Linux
1082
+ browser_family: Opera
1083
+ -
1084
+ user_agent: Opera/9.80 (Linux armv6l; U; NETRANGEMMH;HbbTV/1.1.1;CE-HTML/1.0;TCL LF1V349; en) Presto/2.8.115 Version/11.10
1085
+ os:
1086
+ name: GNU/Linux
1087
+ short_name: LIN
1088
+ version:
1089
+ client:
1090
+ type: browser
1091
+ name: Opera
1092
+ short_name: OP
1093
+ version: "11.10"
1094
+ engine: Presto
1095
+ device:
1096
+ type: tv
1097
+ brand: TC
1098
+ model: LF1V349
1099
+ os_family: GNU/Linux
1100
+ browser_family: Opera
1101
+ -
1102
+ user_agent: Opera/9.80 (Linux mips; U; HbbTV/1.1.1 (; Vestel; MB95; 1.0; 1.0; ); en) Presto/2.10.287 Version/12.00 HbbTV/1.1.1 (; CUS:TELEFUNKEN; MB95; 2.1.4; 1.0;) CE-HTML/1.0 NETRANGEMMH iplayerV3
1103
+ os:
1104
+ name: GNU/Linux
1105
+ short_name: LIN
1106
+ version:
1107
+ client:
1108
+ type: browser
1109
+ name: Opera
1110
+ short_name: OP
1111
+ version: "12.00"
1112
+ engine: Presto
1113
+ device:
1114
+ type: tv
1115
+ brand: TL
1116
+ model: MB95
1117
+ os_family: GNU/Linux
1118
+ browser_family: Opera
1119
+ -
1120
+ user_agent: Opera/9.80 (Linux armv6l; U; NETRANGEMMH;HbbTV/1.1.1;CE-HTML/1.0;THOMSON LF1V017; en) Presto/2.10.250 Version/11.60
1121
+ os:
1122
+ name: GNU/Linux
1123
+ short_name: LIN
1124
+ version:
1125
+ client:
1126
+ type: browser
1127
+ name: Opera
1128
+ short_name: OP
1129
+ version: "11.60"
1130
+ engine: Presto
1131
+ device:
1132
+ type: tv
1133
+ brand: TN
1134
+ model: LF1V017
1135
+ os_family: GNU/Linux
1136
+ browser_family: Opera
1137
+ -
1138
+ user_agent: Opera/9.80 (Linux armv6l; U; NETRANGEMMH;HbbTV/1.1.1;CE-HTML/1.0;THOM LF1V375; en) Presto/2.10.250 Version/11.60
1139
+ os:
1140
+ name: GNU/Linux
1141
+ short_name: LIN
1142
+ version:
1143
+ client:
1144
+ type: browser
1145
+ name: Opera
1146
+ short_name: OP
1147
+ version: "11.60"
1148
+ engine: Presto
1149
+ device:
1150
+ type: tv
1151
+ brand: TN
1152
+ model: LF1V375
1153
+ os_family: GNU/Linux
1154
+ browser_family: Opera
1155
+ -
1156
+ user_agent: Opera/9.80 (Linux armv7l ; U; HbbTV/1.1.1 (; TOSHIBA; 55WL863; 19.5.61.15; 3; ) ; ToshibaTP/1.3.0 (+VIDEO_X_MS_ASF+VIDEO_MP4+AUDIO_MPEG+AUDIO_MP4+DRM+3D) ; de) Presto/2.6.33 Version/10.60
1157
+ os:
1158
+ name: GNU/Linux
1159
+ short_name: LIN
1160
+ version:
1161
+ client:
1162
+ type: browser
1163
+ name: Opera
1164
+ short_name: OP
1165
+ version: "10.60"
1166
+ engine: Presto
1167
+ device:
1168
+ type: tv
1169
+ brand: TS
1170
+ model: 55WL863
1171
+ os_family: GNU/Linux
1172
+ browser_family: Opera
1173
+ -
1174
+ user_agent: Opera/9.80 (Linux armv7l ; U; HbbTV/1.1.1 (; TOSHIBA; 55ZL1; 19.7.61.14; 3; ) ; ToshibaTP/1.3.0 (+VIDEO_MP4+AUDIO_MPEG+AUDIO_MP4) ; de) Presto/2.6.33 Version/10.60
1175
+ os:
1176
+ name: GNU/Linux
1177
+ short_name: LIN
1178
+ version:
1179
+ client:
1180
+ type: browser
1181
+ name: Opera
1182
+ short_name: OP
1183
+ version: "10.60"
1184
+ engine: Presto
1185
+ device:
1186
+ type: tv
1187
+ brand: TS
1188
+ model: 55ZL1
1189
+ os_family: GNU/Linux
1190
+ browser_family: Opera
1191
+ -
1192
+ user_agent: HbbTV/1.1.1 (+DL;TechnoTrend Goerler;S-855;3.1.8.24.04.20.devel;;) CE-HTML/1.0 hdplusinteraktiv/1.0 (NETRANGEMMH;)
1193
+ os: [ ]
1194
+ client: null
1195
+ device:
1196
+ type: tv
1197
+ brand: TT
1198
+ model: S-855
1199
+ os_family: Unknown
1200
+ browser_family: Unknown
1201
+ -
1202
+ user_agent: Opera/9.80 (Linux sh4; U; HbbTV/1.1.1 (;;;;;); CE-HTML; TechniSat DigiCorder ISIO C; de) Presto/2.9.167 Version/11.50
1203
+ os:
1204
+ name: GNU/Linux
1205
+ short_name: LIN
1206
+ version:
1207
+ client:
1208
+ type: browser
1209
+ name: Opera
1210
+ short_name: OP
1211
+ version: "11.50"
1212
+ engine: Presto
1213
+ device:
1214
+ type: tv
1215
+ brand: TX
1216
+ model: DigiCorder ISIO C
1217
+ os_family: GNU/Linux
1218
+ browser_family: Opera
1219
+ -
1220
+ user_agent: Opera/9.80 (Linux sh4; U; HbbTV/1.1.1 (;;;;;); CE-HTML; TechniSat DigiCorder ISIO S; de) Presto/2.9.167 Version/11.50
1221
+ os:
1222
+ name: GNU/Linux
1223
+ short_name: LIN
1224
+ version:
1225
+ client:
1226
+ type: browser
1227
+ name: Opera
1228
+ short_name: OP
1229
+ version: "11.50"
1230
+ engine: Presto
1231
+ device:
1232
+ type: tv
1233
+ brand: TX
1234
+ model: DigiCorder ISIO S
1235
+ os_family: GNU/Linux
1236
+ browser_family: Opera
1237
+ -
1238
+ user_agent: Opera/9.80 (Linux sh4; U; HbbTV/1.1.1 (;;;;;); CE-HTML; TechniSat Digit ISIO C; de) Presto/2.9.167 Version/11.50
1239
+ os:
1240
+ name: GNU/Linux
1241
+ short_name: LIN
1242
+ version:
1243
+ client:
1244
+ type: browser
1245
+ name: Opera
1246
+ short_name: OP
1247
+ version: "11.50"
1248
+ engine: Presto
1249
+ device:
1250
+ type: tv
1251
+ brand: TX
1252
+ model: Digit ISIO C
1253
+ os_family: GNU/Linux
1254
+ browser_family: Opera
1255
+ -
1256
+ user_agent: Opera/9.80 (Linux sh4; U; HbbTV/1.1.1 (;;;;;); CE-HTML; TechniSat Digit ISIO S; de) Presto/2.9.167 Version/11.50
1257
+ os:
1258
+ name: GNU/Linux
1259
+ short_name: LIN
1260
+ version:
1261
+ client:
1262
+ type: browser
1263
+ name: Opera
1264
+ short_name: OP
1265
+ version: "11.50"
1266
+ engine: Presto
1267
+ device:
1268
+ type: tv
1269
+ brand: TX
1270
+ model: Digit ISIO S
1271
+ os_family: GNU/Linux
1272
+ browser_family: Opera
1273
+ -
1274
+ user_agent: Opera/9.80 (Linux i686; U; HbbTV/1.1.1 (;;;;;); CE-HTML; TechniSat MultyVision ISIO; de) Presto/2.9.167 Version/11.50
1275
+ os:
1276
+ name: GNU/Linux
1277
+ short_name: LIN
1278
+ version:
1279
+ client:
1280
+ type: browser
1281
+ name: Opera
1282
+ short_name: OP
1283
+ version: "11.50"
1284
+ engine: Presto
1285
+ device:
1286
+ type: tv
1287
+ brand: TX
1288
+ model: MultyVision ISIO
1289
+ os_family: GNU/Linux
1290
+ browser_family: Opera
1291
+ -
1292
+ user_agent: Opera/9.80 (Linux mips; U; HbbTV/1.1.1 (; Vestel; MB95; 1.0; 1.0; ); en) Presto/2.10.287 Version/12.00
1293
+ os:
1294
+ name: GNU/Linux
1295
+ short_name: LIN
1296
+ version:
1297
+ client:
1298
+ type: browser
1299
+ name: Opera
1300
+ short_name: OP
1301
+ version: "12.00"
1302
+ engine: Presto
1303
+ device:
1304
+ type: tv
1305
+ brand: VT
1306
+ model: MB95
1307
+ os_family: GNU/Linux
1308
+ browser_family: Opera
1309
+ -
1310
+ user_agent: HbbTV/1.1.1 (;;;;) Mozilla/5.0 (compatible; ANTGalio/3.0.2.1.22.43.08; Linux2.6.18-7.1/7405d0-smp)
1311
+ os:
1312
+ name: GNU/Linux
1313
+ short_name: LIN
1314
+ version:
1315
+ client:
1316
+ type: browser
1317
+ name: ANTGalio
1318
+ short_name: AG
1319
+ version: "3.0.2.1.22.43.08"
1320
+ engine:
1321
+ device:
1322
+ type: tv
1323
+ brand: VW
1324
+ model: 600S
1325
+ os_family: GNU/Linux
1326
+ browser_family: Unknown
1327
+ -
1328
+ user_agent: Opera/9.80 (Linux armv7l; U; HbbTV/1.1.1 (;tv2n;videoweb;1.0.0;1.0;); en) Presto/2.8.115 Version/11.10
1329
+ os:
1330
+ name: GNU/Linux
1331
+ short_name: LIN
1332
+ version:
1333
+ client:
1334
+ type: browser
1335
+ name: Opera
1336
+ short_name: OP
1337
+ version: "11.10"
1338
+ engine: Presto
1339
+ device:
1340
+ type: tv
1341
+ brand: VW
1342
+ model: tv2n
1343
+ os_family: GNU/Linux
1344
+ browser_family: Opera
1345
+ -
1346
+ user_agent: Opera/9.80 (Linux mips; U; HbbTV/1.1.1 (; Opera Software; videowebtv; ; ; ); en) Presto/2.10.287 Version/12.00
1347
+ os:
1348
+ name: GNU/Linux
1349
+ short_name: LIN
1350
+ version:
1351
+ client:
1352
+ type: browser
1353
+ name: Opera
1354
+ short_name: OP
1355
+ version: "12.00"
1356
+ engine: Presto
1357
+ device:
1358
+ type: tv
1359
+ brand: VW
1360
+ model: VideoWeb TV
1361
+ os_family: GNU/Linux
1362
+ browser_family: Opera
1363
+ -
1364
+ user_agent: Mozilla/3.0 WebTV/1.2 (compatible; MSIE 2.0)
1365
+ os:
1366
+ name: WebTV
1367
+ short_name: WTV
1368
+ version: "1.2"
1369
+ client:
1370
+ type: browser
1371
+ name: Internet Explorer
1372
+ short_name: IE
1373
+ version: "2.0"
1374
+ engine: Trident
1375
+ device:
1376
+ type: tv
1377
+ brand: WB
1378
+ model:
1379
+ os_family: WebTV
1380
+ browser_family: Internet Explorer