1*d5ef99ddSAndreas Gohr############### 2*d5ef99ddSAndreas Gohr# Device Detector - The Universal Device Detection library for parsing User Agents 3*d5ef99ddSAndreas Gohr# 4*d5ef99ddSAndreas Gohr# @link https://matomo.org 5*d5ef99ddSAndreas Gohr# @license http://www.gnu.org/licenses/lgpl.html LGPL v3 or later 6*d5ef99ddSAndreas Gohr# 7*d5ef99ddSAndreas Gohr# ATTENTION: This file may only include tv user agents that contain '[a-z]+[ _]Shell[ _]\w{6}' 8*d5ef99ddSAndreas Gohr# 9*d5ef99ddSAndreas Gohr############### 10*d5ef99ddSAndreas Gohr 11*d5ef99ddSAndreas Gohr# Telefunken 12*d5ef99ddSAndreas GohrTelefunken: 13*d5ef99ddSAndreas Gohr regex: 'Telefunken Shell' 14*d5ef99ddSAndreas Gohr device: 'tv' 15*d5ef99ddSAndreas Gohr model: '' 16*d5ef99ddSAndreas Gohr 17*d5ef99ddSAndreas Gohr# JVC 18*d5ef99ddSAndreas GohrJVC: 19*d5ef99ddSAndreas Gohr regex: 'JVC Shell' 20*d5ef99ddSAndreas Gohr device: 'tv' 21*d5ef99ddSAndreas Gohr model: '' 22*d5ef99ddSAndreas Gohr 23*d5ef99ddSAndreas Gohr# Leff 24*d5ef99ddSAndreas GohrLeff: 25*d5ef99ddSAndreas Gohr regex: 'Leff Shell' 26*d5ef99ddSAndreas Gohr device: 'tv' 27*d5ef99ddSAndreas Gohr model: '' 28*d5ef99ddSAndreas Gohr 29*d5ef99ddSAndreas Gohr# Leben 30*d5ef99ddSAndreas GohrLeben: 31*d5ef99ddSAndreas Gohr regex: 'Leben Shell' 32*d5ef99ddSAndreas Gohr device: 'tv' 33*d5ef99ddSAndreas Gohr model: '' 34*d5ef99ddSAndreas Gohr 35*d5ef99ddSAndreas Gohr# Lumus 36*d5ef99ddSAndreas GohrLumus: 37*d5ef99ddSAndreas Gohr regex: 'LUMUS Shell' 38*d5ef99ddSAndreas Gohr device: 'tv' 39*d5ef99ddSAndreas Gohr model: '' 40*d5ef99ddSAndreas Gohr 41*d5ef99ddSAndreas Gohr# Erisson 42*d5ef99ddSAndreas GohrErisson: 43*d5ef99ddSAndreas Gohr regex: 'Erisson[_ ]Shell' 44*d5ef99ddSAndreas Gohr device: 'tv' 45*d5ef99ddSAndreas Gohr model: '' 46*d5ef99ddSAndreas Gohr 47*d5ef99ddSAndreas Gohr# BBK 48*d5ef99ddSAndreas GohrBBK: 49*d5ef99ddSAndreas Gohr regex: 'BBK shell' 50*d5ef99ddSAndreas Gohr device: 'tv' 51*d5ef99ddSAndreas Gohr model: '' 52*d5ef99ddSAndreas Gohr 53*d5ef99ddSAndreas Gohr# Novex 54*d5ef99ddSAndreas GohrNovex: 55*d5ef99ddSAndreas Gohr regex: 'Novex shell' 56*d5ef99ddSAndreas Gohr device: 'tv' 57*d5ef99ddSAndreas Gohr model: '' 58*d5ef99ddSAndreas Gohr 59*d5ef99ddSAndreas Gohr# Digma 60*d5ef99ddSAndreas GohrDigma: 61*d5ef99ddSAndreas Gohr regex: 'Digma Shell' 62*d5ef99ddSAndreas Gohr device: 'tv' 63*d5ef99ddSAndreas Gohr model: '' 64*d5ef99ddSAndreas Gohr 65*d5ef99ddSAndreas Gohr# AMCV 66*d5ef99ddSAndreas GohrAMCV: 67*d5ef99ddSAndreas Gohr regex: 'AMCV Shell' 68*d5ef99ddSAndreas Gohr device: 'tv' 69*d5ef99ddSAndreas Gohr model: '' 70*d5ef99ddSAndreas Gohr 71*d5ef99ddSAndreas Gohr# Mystery 72*d5ef99ddSAndreas GohrMystery: 73*d5ef99ddSAndreas Gohr regex: 'Mystery Shell' 74*d5ef99ddSAndreas Gohr device: 'tv' 75*d5ef99ddSAndreas Gohr model: '' 76*d5ef99ddSAndreas Gohr 77*d5ef99ddSAndreas Gohr# ECON (econ.su) 78*d5ef99ddSAndreas GohrECON: 79*d5ef99ddSAndreas Gohr regex: 'ECON Shell' 80*d5ef99ddSAndreas Gohr device: 'tv' 81*d5ef99ddSAndreas Gohr model: '' 82*d5ef99ddSAndreas Gohr 83*d5ef99ddSAndreas Gohr# Starwind (starwind.com.ru) 84*d5ef99ddSAndreas GohrStarwind: 85*d5ef99ddSAndreas Gohr regex: 'Starwind Shell' 86*d5ef99ddSAndreas Gohr device: 'tv' 87*d5ef99ddSAndreas Gohr model: '' 88*d5ef99ddSAndreas Gohr 89*d5ef99ddSAndreas Gohr# Kvant (tvkvant.ru) 90*d5ef99ddSAndreas GohrKvant: 91*d5ef99ddSAndreas Gohr regex: 'Kvant Shell' 92*d5ef99ddSAndreas Gohr device: 'tv' 93*d5ef99ddSAndreas Gohr model: '' 94*d5ef99ddSAndreas Gohr 95*d5ef99ddSAndreas Gohr# Hi 96*d5ef99ddSAndreas GohrHi: 97*d5ef99ddSAndreas Gohr regex: 'Hi Shell' 98*d5ef99ddSAndreas Gohr device: 'tv' 99*d5ef99ddSAndreas Gohr model: '' 100*d5ef99ddSAndreas Gohr 101*d5ef99ddSAndreas Gohr# AKIRA (myakira.com) 102*d5ef99ddSAndreas GohrAKIRA: 103*d5ef99ddSAndreas Gohr regex: 'AKIRA Shell' 104*d5ef99ddSAndreas Gohr device: 'tv' 105*d5ef99ddSAndreas Gohr model: '' 106*d5ef99ddSAndreas Gohr 107*d5ef99ddSAndreas Gohr# Loview 108*d5ef99ddSAndreas GohrLoview: 109*d5ef99ddSAndreas Gohr regex: 'Loview Shell' 110*d5ef99ddSAndreas Gohr device: 'tv' 111*d5ef99ddSAndreas Gohr model: '' 112*d5ef99ddSAndreas Gohr 113*d5ef99ddSAndreas Gohr# Supra 114*d5ef99ddSAndreas GohrSupra: 115*d5ef99ddSAndreas Gohr regex: 'Supra Shell' 116*d5ef99ddSAndreas Gohr device: 'tv' 117*d5ef99ddSAndreas Gohr model: '' 118*d5ef99ddSAndreas Gohr 119*d5ef99ddSAndreas Gohr# Yuno (yuno.bbk.ru) 120*d5ef99ddSAndreas GohrYuno: 121*d5ef99ddSAndreas Gohr regex: 'Yuno Shell' 122*d5ef99ddSAndreas Gohr device: 'tv' 123*d5ef99ddSAndreas Gohr model: '' 124*d5ef99ddSAndreas Gohr 125*d5ef99ddSAndreas GohrTCL: 126*d5ef99ddSAndreas Gohr regex: 'TCL/TCL-' 127*d5ef99ddSAndreas Gohr device: 'tv' 128*d5ef99ddSAndreas Gohr model: '' 129*d5ef99ddSAndreas Gohr 130*d5ef99ddSAndreas Gohr# RCA Tablets (RCA) (https://www.rca.com/) 131*d5ef99ddSAndreas GohrRCA Tablets: 132*d5ef99ddSAndreas Gohr regex: 'TCL/RCA-' 133*d5ef99ddSAndreas Gohr device: 'tv' 134*d5ef99ddSAndreas Gohr model: '' 135*d5ef99ddSAndreas Gohr 136*d5ef99ddSAndreas Gohr# Thomson 137*d5ef99ddSAndreas GohrThomson: 138*d5ef99ddSAndreas Gohr regex: 'TCL/THOM-' 139*d5ef99ddSAndreas Gohr device: 'tv' 140*d5ef99ddSAndreas Gohr model: '' 141*d5ef99ddSAndreas Gohr 142*d5ef99ddSAndreas GohrDEXP: 143*d5ef99ddSAndreas Gohr regex: 'DEXP Shell' 144*d5ef99ddSAndreas Gohr device: 'tv' 145*d5ef99ddSAndreas Gohr model: '' 146