Objetivo

Construir permutaciones de conjuntos de datos de personas y de nombres de equipos deportivos

Descripción

A partir de conjuntos datos (valores individuales) realizar permutaciones para conocer el número de las mismas y el acomodo de los valores para su interpretación en términos de probabilidad.

La diferencias entre permutaciones y combinaciones tiene que ver con la cantidad o el número de eventos.

Al hacer permutaciones, si importa el orden en que se acomodan los elementos, es decir en que columna aparecen, en la primera, segunda, tercera y y sucesivamente.

Para identificar el orden, se puede decir que no es lo mismo “Oscar”, “Paco” que “Paco”, “Oscar”, están a la inversa o el orden está invertido. Eso es una diferencia con las combinaciones, son los mismos elementos pero el orden en que se acomodan o en que aparecen los elementos está diferente.

Se deben hacer las siguientes acciones:

Cargar librerías

Se van a utilizar funciones de la librería “gtools” por lo que se necesario instalarla previamente: install.packages(“gtools”).

Esta librería permitirá hacer combinaciones y permutaciones.

# install.packages("gtools")
library(gtools)

Marco conceptual

Para hacer permutaciones es necesario identificar la importancia del valor factorial de un número

Factorial

El factorial de un número es el producto de \(n\) por todos los naturales menores que el y se representa con el \(!n\), entonces \(n!=n\times(n-1)...\times 1\)

La función factorial es una fórmula matemática representada por el signo de exclamación \(!\). En la fórmula Factorial se deben multiplicar todos los números enteros y positivos que hay entre el número que aparece en la fórmula y el número \(1\).

Ejemplo: hallar el factorial de 6 o se sea \(6!=6\times5\times4\times3\times2\times1=720\)

Permutaciones

La regla de conteo de permutaciones permite calcular el número de resultados experimentales cuando se seleccionan cierto número objetos de un conjunto de \(n\) objetos y el orden de selección es relevante.

Los mismos \(r\) objetos seleccionados en orden diferente se consideran un resultado experimental diferente.

Fórmula de permutaciones

\[ S=Pn\binom{n}{r} = \frac{n!}{(n-r)!}\\S \text{ es el espacio muestral y la cantidad de permutaciones} \\Pn \text{ es el número de permutaciones posibles}\\ \binom{n}{r} \text {es símbolo de permutar n elementos en grupos de r}\\ n \text{ es el total de elementos}\\ r \text{ es de cuantos en cuantos elementos se hacen grupos y permutaciones} \]

Ejemplo 1. Nombres de personas

Se trata de hacer permutaciones con los nombres de cuatro personas: “Oscar”, “Paco”, “Paty”, “Laura”, “Rubén”, “Luis”, “Lucy”, “Alberto”, “Juan”,“Javier” “Liz”,“Fer”,“Cesar”,“Ana” en grupos de 2.

Entonces \(n=14\), porque hay Catorce nombres o elementos y \(r=2\) porque se trata de agrupar o permutar de dos en dos.

¿Cuántas permutaciones deberá haber?

  • Oscar y Paco

  • Paco y Oscar

  • Oscar y Paty

  • Paty y Oscar

  • Oscar y Laura

  • Laura y Oscar

  • Paco y Paty

  • Paty y Paco

  • … …

  • … …

  • Paty y Laura

  • Laura y Paty

nombres <- c("Oscar", "Paco", "Paty", "Laura", "Rubén", "Luis", "Lucy", "Alberto", "Juan","Javier","Liz", "Fer","Cesar","Ana")
n <- length(nombres)
r <- 2 # ¿cómo agrupar o permutar?
Pn <- factorial(n) / factorial(n-r)
paste("Existen ", Pn , " posibles permutaciones del total de ", n , " nombres ", " en grupos de ", r ," en ", r)
## [1] "Existen  182  posibles permutaciones del total de  14  nombres   en grupos de  2  en  2"

Ejemplo 2. Nombres de Empresas Internacionales.

Se trata de hacer combinaciones con los nombres de 10 Empresas :“Google”, “Amazon”, “Netflix”, “Disney”,“Meta”, “Microsoft”, “HP”,“Lenovo”,“Steam”,“Apple” en grupos de 5. Entonces \(n=10\), porque hay Diez Empresas o elementos y \(r=5\) porque se trata de agrupar de Cinco en Cinco.

¿Cuántas permutaciones deberá haber?

Empresas <- c("Google", "Amazon", "Netflix", "Disney","Meta", "Microsoft", "HP","Lenovo","Steam","Apple")
n <- length(Empresas)
r <- 5 # ¿cómo agrupar?
Pn <- factorial(n) / factorial(n-r)
paste("Existen ", Pn , " posibles permutaciones del total de ", n , " equipos ", " en grupos de ", r ," en ", r)
## [1] "Existen  30240  posibles permutaciones del total de  10  equipos   en grupos de  5  en  5"

Desarrollo

Si bien la fórmula de permutaciones indica el número de permutaciones posibles de un conjunto de elementos pero lo que se desea conocer es ¿cómo se forman o cómo se verían los grupos?.

Se utiliza la función permutation

Permutaciones

Se utiliza la función permutation() y se requiere por lo menos tres atributos:

  • La cantidad de elementos n

  • Los grupos de cuanto en cuanto se forman r

  • y los elementos, o sea en este caso el vector v

Nombres de personas

Se muestran las posibles permutaciones de los nombres de personas. Las función permutations() ordena los valores alfabéticamente y luego construye las combinaciones.

nombres
##  [1] "Oscar"   "Paco"    "Paty"    "Laura"   "Rubén"   "Luis"    "Lucy"   
##  [8] "Alberto" "Juan"    "Javier"  "Liz"     "Fer"     "Cesar"   "Ana"
Pern.nombres <- permutations(n = length(nombres), r = 2, v = nombres)
Pern.nombres
##        [,1]      [,2]     
##   [1,] "Alberto" "Ana"    
##   [2,] "Alberto" "Cesar"  
##   [3,] "Alberto" "Fer"    
##   [4,] "Alberto" "Javier" 
##   [5,] "Alberto" "Juan"   
##   [6,] "Alberto" "Laura"  
##   [7,] "Alberto" "Liz"    
##   [8,] "Alberto" "Lucy"   
##   [9,] "Alberto" "Luis"   
##  [10,] "Alberto" "Oscar"  
##  [11,] "Alberto" "Paco"   
##  [12,] "Alberto" "Paty"   
##  [13,] "Alberto" "Rubén"  
##  [14,] "Ana"     "Alberto"
##  [15,] "Ana"     "Cesar"  
##  [16,] "Ana"     "Fer"    
##  [17,] "Ana"     "Javier" 
##  [18,] "Ana"     "Juan"   
##  [19,] "Ana"     "Laura"  
##  [20,] "Ana"     "Liz"    
##  [21,] "Ana"     "Lucy"   
##  [22,] "Ana"     "Luis"   
##  [23,] "Ana"     "Oscar"  
##  [24,] "Ana"     "Paco"   
##  [25,] "Ana"     "Paty"   
##  [26,] "Ana"     "Rubén"  
##  [27,] "Cesar"   "Alberto"
##  [28,] "Cesar"   "Ana"    
##  [29,] "Cesar"   "Fer"    
##  [30,] "Cesar"   "Javier" 
##  [31,] "Cesar"   "Juan"   
##  [32,] "Cesar"   "Laura"  
##  [33,] "Cesar"   "Liz"    
##  [34,] "Cesar"   "Lucy"   
##  [35,] "Cesar"   "Luis"   
##  [36,] "Cesar"   "Oscar"  
##  [37,] "Cesar"   "Paco"   
##  [38,] "Cesar"   "Paty"   
##  [39,] "Cesar"   "Rubén"  
##  [40,] "Fer"     "Alberto"
##  [41,] "Fer"     "Ana"    
##  [42,] "Fer"     "Cesar"  
##  [43,] "Fer"     "Javier" 
##  [44,] "Fer"     "Juan"   
##  [45,] "Fer"     "Laura"  
##  [46,] "Fer"     "Liz"    
##  [47,] "Fer"     "Lucy"   
##  [48,] "Fer"     "Luis"   
##  [49,] "Fer"     "Oscar"  
##  [50,] "Fer"     "Paco"   
##  [51,] "Fer"     "Paty"   
##  [52,] "Fer"     "Rubén"  
##  [53,] "Javier"  "Alberto"
##  [54,] "Javier"  "Ana"    
##  [55,] "Javier"  "Cesar"  
##  [56,] "Javier"  "Fer"    
##  [57,] "Javier"  "Juan"   
##  [58,] "Javier"  "Laura"  
##  [59,] "Javier"  "Liz"    
##  [60,] "Javier"  "Lucy"   
##  [61,] "Javier"  "Luis"   
##  [62,] "Javier"  "Oscar"  
##  [63,] "Javier"  "Paco"   
##  [64,] "Javier"  "Paty"   
##  [65,] "Javier"  "Rubén"  
##  [66,] "Juan"    "Alberto"
##  [67,] "Juan"    "Ana"    
##  [68,] "Juan"    "Cesar"  
##  [69,] "Juan"    "Fer"    
##  [70,] "Juan"    "Javier" 
##  [71,] "Juan"    "Laura"  
##  [72,] "Juan"    "Liz"    
##  [73,] "Juan"    "Lucy"   
##  [74,] "Juan"    "Luis"   
##  [75,] "Juan"    "Oscar"  
##  [76,] "Juan"    "Paco"   
##  [77,] "Juan"    "Paty"   
##  [78,] "Juan"    "Rubén"  
##  [79,] "Laura"   "Alberto"
##  [80,] "Laura"   "Ana"    
##  [81,] "Laura"   "Cesar"  
##  [82,] "Laura"   "Fer"    
##  [83,] "Laura"   "Javier" 
##  [84,] "Laura"   "Juan"   
##  [85,] "Laura"   "Liz"    
##  [86,] "Laura"   "Lucy"   
##  [87,] "Laura"   "Luis"   
##  [88,] "Laura"   "Oscar"  
##  [89,] "Laura"   "Paco"   
##  [90,] "Laura"   "Paty"   
##  [91,] "Laura"   "Rubén"  
##  [92,] "Liz"     "Alberto"
##  [93,] "Liz"     "Ana"    
##  [94,] "Liz"     "Cesar"  
##  [95,] "Liz"     "Fer"    
##  [96,] "Liz"     "Javier" 
##  [97,] "Liz"     "Juan"   
##  [98,] "Liz"     "Laura"  
##  [99,] "Liz"     "Lucy"   
## [100,] "Liz"     "Luis"   
## [101,] "Liz"     "Oscar"  
## [102,] "Liz"     "Paco"   
## [103,] "Liz"     "Paty"   
## [104,] "Liz"     "Rubén"  
## [105,] "Lucy"    "Alberto"
## [106,] "Lucy"    "Ana"    
## [107,] "Lucy"    "Cesar"  
## [108,] "Lucy"    "Fer"    
## [109,] "Lucy"    "Javier" 
## [110,] "Lucy"    "Juan"   
## [111,] "Lucy"    "Laura"  
## [112,] "Lucy"    "Liz"    
## [113,] "Lucy"    "Luis"   
## [114,] "Lucy"    "Oscar"  
## [115,] "Lucy"    "Paco"   
## [116,] "Lucy"    "Paty"   
## [117,] "Lucy"    "Rubén"  
## [118,] "Luis"    "Alberto"
## [119,] "Luis"    "Ana"    
## [120,] "Luis"    "Cesar"  
## [121,] "Luis"    "Fer"    
## [122,] "Luis"    "Javier" 
## [123,] "Luis"    "Juan"   
## [124,] "Luis"    "Laura"  
## [125,] "Luis"    "Liz"    
## [126,] "Luis"    "Lucy"   
## [127,] "Luis"    "Oscar"  
## [128,] "Luis"    "Paco"   
## [129,] "Luis"    "Paty"   
## [130,] "Luis"    "Rubén"  
## [131,] "Oscar"   "Alberto"
## [132,] "Oscar"   "Ana"    
## [133,] "Oscar"   "Cesar"  
## [134,] "Oscar"   "Fer"    
## [135,] "Oscar"   "Javier" 
## [136,] "Oscar"   "Juan"   
## [137,] "Oscar"   "Laura"  
## [138,] "Oscar"   "Liz"    
## [139,] "Oscar"   "Lucy"   
## [140,] "Oscar"   "Luis"   
## [141,] "Oscar"   "Paco"   
## [142,] "Oscar"   "Paty"   
## [143,] "Oscar"   "Rubén"  
## [144,] "Paco"    "Alberto"
## [145,] "Paco"    "Ana"    
## [146,] "Paco"    "Cesar"  
## [147,] "Paco"    "Fer"    
## [148,] "Paco"    "Javier" 
## [149,] "Paco"    "Juan"   
## [150,] "Paco"    "Laura"  
## [151,] "Paco"    "Liz"    
## [152,] "Paco"    "Lucy"   
## [153,] "Paco"    "Luis"   
## [154,] "Paco"    "Oscar"  
## [155,] "Paco"    "Paty"   
## [156,] "Paco"    "Rubén"  
## [157,] "Paty"    "Alberto"
## [158,] "Paty"    "Ana"    
## [159,] "Paty"    "Cesar"  
## [160,] "Paty"    "Fer"    
## [161,] "Paty"    "Javier" 
## [162,] "Paty"    "Juan"   
## [163,] "Paty"    "Laura"  
## [164,] "Paty"    "Liz"    
## [165,] "Paty"    "Lucy"   
## [166,] "Paty"    "Luis"   
## [167,] "Paty"    "Oscar"  
## [168,] "Paty"    "Paco"   
## [169,] "Paty"    "Rubén"  
## [170,] "Rubén"   "Alberto"
## [171,] "Rubén"   "Ana"    
## [172,] "Rubén"   "Cesar"  
## [173,] "Rubén"   "Fer"    
## [174,] "Rubén"   "Javier" 
## [175,] "Rubén"   "Juan"   
## [176,] "Rubén"   "Laura"  
## [177,] "Rubén"   "Liz"    
## [178,] "Rubén"   "Lucy"   
## [179,] "Rubén"   "Luis"   
## [180,] "Rubén"   "Oscar"  
## [181,] "Rubén"   "Paco"   
## [182,] "Rubén"   "Paty"

Nombres de Empresas Internacionales

Se muestran las posibles combinaciones de las Empresas Internacionales.

Empresas
##  [1] "Google"    "Amazon"    "Netflix"   "Disney"    "Meta"      "Microsoft"
##  [7] "HP"        "Lenovo"    "Steam"     "Apple"
Pern.Empresas <- permutations(n = length(Empresas), r = 5, v = Empresas)

Se muestran solo los primeras diez y últimas diez permutaciones de Empresas

head(Pern.Empresas)
##      [,1]     [,2]    [,3]     [,4]     [,5]       
## [1,] "Amazon" "Apple" "Disney" "Google" "HP"       
## [2,] "Amazon" "Apple" "Disney" "Google" "Lenovo"   
## [3,] "Amazon" "Apple" "Disney" "Google" "Meta"     
## [4,] "Amazon" "Apple" "Disney" "Google" "Microsoft"
## [5,] "Amazon" "Apple" "Disney" "Google" "Netflix"  
## [6,] "Amazon" "Apple" "Disney" "Google" "Steam"
tail(Pern.Empresas)
##          [,1]    [,2]      [,3]        [,4]   [,5]    
## [30235,] "Steam" "Netflix" "Microsoft" "Meta" "Amazon"
## [30236,] "Steam" "Netflix" "Microsoft" "Meta" "Apple" 
## [30237,] "Steam" "Netflix" "Microsoft" "Meta" "Disney"
## [30238,] "Steam" "Netflix" "Microsoft" "Meta" "Google"
## [30239,] "Steam" "Netflix" "Microsoft" "Meta" "HP"    
## [30240,] "Steam" "Netflix" "Microsoft" "Meta" "Lenovo"

¿Para qué sirve encontrar el número de permutaciones y la forma en que se agrupan?

Eso sería el espacio muestral que ya construído éste, permite hacer interpretaciones en términos probabilísticos.

Interpretación

El resultado de las permutaciones permite construir un espacio muestral que ofrece la oportunidad de conocer en términos de probabilidad, la cantidad de ocasiones y lo que representa un evento conforme a todo el espacio muestral, es decir frecuencia y frecuencia porcentual.

Preguntas sobre espacio muestral nombres

¿En cuántas ocasiones aparece el nombre de Laura en permutaciones de dos en dos?. Aparece PENDIENTE(16) ocasiones. ¿En cuántas ocasiones aparece el nombre de Oscar en las combinaciones de dos en dos?, Aparece PENDIENTE(16) ocasiones.

En las permutaciones de nombres de dos en dos, ¿en cuántas ocasiones existe Laura y Oscar juntos o contiguos y en ese orden?. Se utiliza la función subset() para hacer filtros y responder a las preguntas.

La nominación [ , ] significa acceder al valor de un data frame por la primer colmna y [ ,2] la segunda columna.

filtro <- subset(Pern.nombres, Pern.nombres[,1] == "Laura" & Pern.nombres[,2] == "Oscar")
filtro
##      [,1]    [,2]   
## [1,] "Laura" "Oscar"
frecuencia <- nrow(filtro)
paste("Existen ", frecuencia, " ocasiones en que se encuentran Laura y Oscar juntos en ese orden, de un total de ", nrow(Pern.nombres), " representan ", round(frecuencia / nrow(Pern.nombres) * 100, 2), "%")
## [1] "Existen  1  ocasiones en que se encuentran Laura y Oscar juntos en ese orden, de un total de  182  representan  0.55 %"

En las permutaciones de nombres de dos en dos, ¿en cuántas ocasiones existe Oscar en la primer columna de todo el espacio muestral?

filtro <- subset(Pern.nombres, Pern.nombres[,1] == "Oscar")
filtro
##       [,1]    [,2]     
##  [1,] "Oscar" "Alberto"
##  [2,] "Oscar" "Ana"    
##  [3,] "Oscar" "Cesar"  
##  [4,] "Oscar" "Fer"    
##  [5,] "Oscar" "Javier" 
##  [6,] "Oscar" "Juan"   
##  [7,] "Oscar" "Laura"  
##  [8,] "Oscar" "Liz"    
##  [9,] "Oscar" "Lucy"   
## [10,] "Oscar" "Luis"   
## [11,] "Oscar" "Paco"   
## [12,] "Oscar" "Paty"   
## [13,] "Oscar" "Rubén"
frecuencia <- nrow(filtro)
paste("Existen ", frecuencia, " ocasiones en que se encuentran Oscar en la primer columna  , de un total de ", nrow(Pern.nombres), " representan ", round(frecuencia / nrow(Pern.nombres) * 100, 2), "%")
## [1] "Existen  13  ocasiones en que se encuentran Oscar en la primer columna  , de un total de  182  representan  7.14 %"

En cuántas ocasiones aparece en primera columna Oscar y Paco o Paty en segunda columna

filtro <- subset(Pern.nombres, Pern.nombres[,1] == "Oscar" & (Pern.nombres[,2] == "Paco" | Pern.nombres[,2] == "Paty"))
filtro
##      [,1]    [,2]  
## [1,] "Oscar" "Paco"
## [2,] "Oscar" "Paty"
frecuencia <- nrow(filtro)
paste("Existen ", frecuencia, " ocasiones en que se encuentran aparece en primera columna Oscar y Paco o Paty en segunda columna, de un total de ", nrow(Pern.nombres), " representan ", round(frecuencia / nrow(Pern.nombres) * 100, 2), "%")
## [1] "Existen  2  ocasiones en que se encuentran aparece en primera columna Oscar y Paco o Paty en segunda columna, de un total de  182  representan  1.1 %"

Preguntas sobre espacio muestral de Empresas Internacionales.

En cuántas ocasiones aparece de manera contigua y en este orden las Empresas como Apple y Amazon en primera y segunda columna respectivamente.

filtro <- subset(Pern.Empresas, Pern.Empresas[,1] == "Apple" & Pern.Empresas[,2] == "Amazon")
filtro
##        [,1]    [,2]     [,3]        [,4]        [,5]       
##   [1,] "Apple" "Amazon" "Disney"    "Google"    "HP"       
##   [2,] "Apple" "Amazon" "Disney"    "Google"    "Lenovo"   
##   [3,] "Apple" "Amazon" "Disney"    "Google"    "Meta"     
##   [4,] "Apple" "Amazon" "Disney"    "Google"    "Microsoft"
##   [5,] "Apple" "Amazon" "Disney"    "Google"    "Netflix"  
##   [6,] "Apple" "Amazon" "Disney"    "Google"    "Steam"    
##   [7,] "Apple" "Amazon" "Disney"    "HP"        "Google"   
##   [8,] "Apple" "Amazon" "Disney"    "HP"        "Lenovo"   
##   [9,] "Apple" "Amazon" "Disney"    "HP"        "Meta"     
##  [10,] "Apple" "Amazon" "Disney"    "HP"        "Microsoft"
##  [11,] "Apple" "Amazon" "Disney"    "HP"        "Netflix"  
##  [12,] "Apple" "Amazon" "Disney"    "HP"        "Steam"    
##  [13,] "Apple" "Amazon" "Disney"    "Lenovo"    "Google"   
##  [14,] "Apple" "Amazon" "Disney"    "Lenovo"    "HP"       
##  [15,] "Apple" "Amazon" "Disney"    "Lenovo"    "Meta"     
##  [16,] "Apple" "Amazon" "Disney"    "Lenovo"    "Microsoft"
##  [17,] "Apple" "Amazon" "Disney"    "Lenovo"    "Netflix"  
##  [18,] "Apple" "Amazon" "Disney"    "Lenovo"    "Steam"    
##  [19,] "Apple" "Amazon" "Disney"    "Meta"      "Google"   
##  [20,] "Apple" "Amazon" "Disney"    "Meta"      "HP"       
##  [21,] "Apple" "Amazon" "Disney"    "Meta"      "Lenovo"   
##  [22,] "Apple" "Amazon" "Disney"    "Meta"      "Microsoft"
##  [23,] "Apple" "Amazon" "Disney"    "Meta"      "Netflix"  
##  [24,] "Apple" "Amazon" "Disney"    "Meta"      "Steam"    
##  [25,] "Apple" "Amazon" "Disney"    "Microsoft" "Google"   
##  [26,] "Apple" "Amazon" "Disney"    "Microsoft" "HP"       
##  [27,] "Apple" "Amazon" "Disney"    "Microsoft" "Lenovo"   
##  [28,] "Apple" "Amazon" "Disney"    "Microsoft" "Meta"     
##  [29,] "Apple" "Amazon" "Disney"    "Microsoft" "Netflix"  
##  [30,] "Apple" "Amazon" "Disney"    "Microsoft" "Steam"    
##  [31,] "Apple" "Amazon" "Disney"    "Netflix"   "Google"   
##  [32,] "Apple" "Amazon" "Disney"    "Netflix"   "HP"       
##  [33,] "Apple" "Amazon" "Disney"    "Netflix"   "Lenovo"   
##  [34,] "Apple" "Amazon" "Disney"    "Netflix"   "Meta"     
##  [35,] "Apple" "Amazon" "Disney"    "Netflix"   "Microsoft"
##  [36,] "Apple" "Amazon" "Disney"    "Netflix"   "Steam"    
##  [37,] "Apple" "Amazon" "Disney"    "Steam"     "Google"   
##  [38,] "Apple" "Amazon" "Disney"    "Steam"     "HP"       
##  [39,] "Apple" "Amazon" "Disney"    "Steam"     "Lenovo"   
##  [40,] "Apple" "Amazon" "Disney"    "Steam"     "Meta"     
##  [41,] "Apple" "Amazon" "Disney"    "Steam"     "Microsoft"
##  [42,] "Apple" "Amazon" "Disney"    "Steam"     "Netflix"  
##  [43,] "Apple" "Amazon" "Google"    "Disney"    "HP"       
##  [44,] "Apple" "Amazon" "Google"    "Disney"    "Lenovo"   
##  [45,] "Apple" "Amazon" "Google"    "Disney"    "Meta"     
##  [46,] "Apple" "Amazon" "Google"    "Disney"    "Microsoft"
##  [47,] "Apple" "Amazon" "Google"    "Disney"    "Netflix"  
##  [48,] "Apple" "Amazon" "Google"    "Disney"    "Steam"    
##  [49,] "Apple" "Amazon" "Google"    "HP"        "Disney"   
##  [50,] "Apple" "Amazon" "Google"    "HP"        "Lenovo"   
##  [51,] "Apple" "Amazon" "Google"    "HP"        "Meta"     
##  [52,] "Apple" "Amazon" "Google"    "HP"        "Microsoft"
##  [53,] "Apple" "Amazon" "Google"    "HP"        "Netflix"  
##  [54,] "Apple" "Amazon" "Google"    "HP"        "Steam"    
##  [55,] "Apple" "Amazon" "Google"    "Lenovo"    "Disney"   
##  [56,] "Apple" "Amazon" "Google"    "Lenovo"    "HP"       
##  [57,] "Apple" "Amazon" "Google"    "Lenovo"    "Meta"     
##  [58,] "Apple" "Amazon" "Google"    "Lenovo"    "Microsoft"
##  [59,] "Apple" "Amazon" "Google"    "Lenovo"    "Netflix"  
##  [60,] "Apple" "Amazon" "Google"    "Lenovo"    "Steam"    
##  [61,] "Apple" "Amazon" "Google"    "Meta"      "Disney"   
##  [62,] "Apple" "Amazon" "Google"    "Meta"      "HP"       
##  [63,] "Apple" "Amazon" "Google"    "Meta"      "Lenovo"   
##  [64,] "Apple" "Amazon" "Google"    "Meta"      "Microsoft"
##  [65,] "Apple" "Amazon" "Google"    "Meta"      "Netflix"  
##  [66,] "Apple" "Amazon" "Google"    "Meta"      "Steam"    
##  [67,] "Apple" "Amazon" "Google"    "Microsoft" "Disney"   
##  [68,] "Apple" "Amazon" "Google"    "Microsoft" "HP"       
##  [69,] "Apple" "Amazon" "Google"    "Microsoft" "Lenovo"   
##  [70,] "Apple" "Amazon" "Google"    "Microsoft" "Meta"     
##  [71,] "Apple" "Amazon" "Google"    "Microsoft" "Netflix"  
##  [72,] "Apple" "Amazon" "Google"    "Microsoft" "Steam"    
##  [73,] "Apple" "Amazon" "Google"    "Netflix"   "Disney"   
##  [74,] "Apple" "Amazon" "Google"    "Netflix"   "HP"       
##  [75,] "Apple" "Amazon" "Google"    "Netflix"   "Lenovo"   
##  [76,] "Apple" "Amazon" "Google"    "Netflix"   "Meta"     
##  [77,] "Apple" "Amazon" "Google"    "Netflix"   "Microsoft"
##  [78,] "Apple" "Amazon" "Google"    "Netflix"   "Steam"    
##  [79,] "Apple" "Amazon" "Google"    "Steam"     "Disney"   
##  [80,] "Apple" "Amazon" "Google"    "Steam"     "HP"       
##  [81,] "Apple" "Amazon" "Google"    "Steam"     "Lenovo"   
##  [82,] "Apple" "Amazon" "Google"    "Steam"     "Meta"     
##  [83,] "Apple" "Amazon" "Google"    "Steam"     "Microsoft"
##  [84,] "Apple" "Amazon" "Google"    "Steam"     "Netflix"  
##  [85,] "Apple" "Amazon" "HP"        "Disney"    "Google"   
##  [86,] "Apple" "Amazon" "HP"        "Disney"    "Lenovo"   
##  [87,] "Apple" "Amazon" "HP"        "Disney"    "Meta"     
##  [88,] "Apple" "Amazon" "HP"        "Disney"    "Microsoft"
##  [89,] "Apple" "Amazon" "HP"        "Disney"    "Netflix"  
##  [90,] "Apple" "Amazon" "HP"        "Disney"    "Steam"    
##  [91,] "Apple" "Amazon" "HP"        "Google"    "Disney"   
##  [92,] "Apple" "Amazon" "HP"        "Google"    "Lenovo"   
##  [93,] "Apple" "Amazon" "HP"        "Google"    "Meta"     
##  [94,] "Apple" "Amazon" "HP"        "Google"    "Microsoft"
##  [95,] "Apple" "Amazon" "HP"        "Google"    "Netflix"  
##  [96,] "Apple" "Amazon" "HP"        "Google"    "Steam"    
##  [97,] "Apple" "Amazon" "HP"        "Lenovo"    "Disney"   
##  [98,] "Apple" "Amazon" "HP"        "Lenovo"    "Google"   
##  [99,] "Apple" "Amazon" "HP"        "Lenovo"    "Meta"     
## [100,] "Apple" "Amazon" "HP"        "Lenovo"    "Microsoft"
## [101,] "Apple" "Amazon" "HP"        "Lenovo"    "Netflix"  
## [102,] "Apple" "Amazon" "HP"        "Lenovo"    "Steam"    
## [103,] "Apple" "Amazon" "HP"        "Meta"      "Disney"   
## [104,] "Apple" "Amazon" "HP"        "Meta"      "Google"   
## [105,] "Apple" "Amazon" "HP"        "Meta"      "Lenovo"   
## [106,] "Apple" "Amazon" "HP"        "Meta"      "Microsoft"
## [107,] "Apple" "Amazon" "HP"        "Meta"      "Netflix"  
## [108,] "Apple" "Amazon" "HP"        "Meta"      "Steam"    
## [109,] "Apple" "Amazon" "HP"        "Microsoft" "Disney"   
## [110,] "Apple" "Amazon" "HP"        "Microsoft" "Google"   
## [111,] "Apple" "Amazon" "HP"        "Microsoft" "Lenovo"   
## [112,] "Apple" "Amazon" "HP"        "Microsoft" "Meta"     
## [113,] "Apple" "Amazon" "HP"        "Microsoft" "Netflix"  
## [114,] "Apple" "Amazon" "HP"        "Microsoft" "Steam"    
## [115,] "Apple" "Amazon" "HP"        "Netflix"   "Disney"   
## [116,] "Apple" "Amazon" "HP"        "Netflix"   "Google"   
## [117,] "Apple" "Amazon" "HP"        "Netflix"   "Lenovo"   
## [118,] "Apple" "Amazon" "HP"        "Netflix"   "Meta"     
## [119,] "Apple" "Amazon" "HP"        "Netflix"   "Microsoft"
## [120,] "Apple" "Amazon" "HP"        "Netflix"   "Steam"    
## [121,] "Apple" "Amazon" "HP"        "Steam"     "Disney"   
## [122,] "Apple" "Amazon" "HP"        "Steam"     "Google"   
## [123,] "Apple" "Amazon" "HP"        "Steam"     "Lenovo"   
## [124,] "Apple" "Amazon" "HP"        "Steam"     "Meta"     
## [125,] "Apple" "Amazon" "HP"        "Steam"     "Microsoft"
## [126,] "Apple" "Amazon" "HP"        "Steam"     "Netflix"  
## [127,] "Apple" "Amazon" "Lenovo"    "Disney"    "Google"   
## [128,] "Apple" "Amazon" "Lenovo"    "Disney"    "HP"       
## [129,] "Apple" "Amazon" "Lenovo"    "Disney"    "Meta"     
## [130,] "Apple" "Amazon" "Lenovo"    "Disney"    "Microsoft"
## [131,] "Apple" "Amazon" "Lenovo"    "Disney"    "Netflix"  
## [132,] "Apple" "Amazon" "Lenovo"    "Disney"    "Steam"    
## [133,] "Apple" "Amazon" "Lenovo"    "Google"    "Disney"   
## [134,] "Apple" "Amazon" "Lenovo"    "Google"    "HP"       
## [135,] "Apple" "Amazon" "Lenovo"    "Google"    "Meta"     
## [136,] "Apple" "Amazon" "Lenovo"    "Google"    "Microsoft"
## [137,] "Apple" "Amazon" "Lenovo"    "Google"    "Netflix"  
## [138,] "Apple" "Amazon" "Lenovo"    "Google"    "Steam"    
## [139,] "Apple" "Amazon" "Lenovo"    "HP"        "Disney"   
## [140,] "Apple" "Amazon" "Lenovo"    "HP"        "Google"   
## [141,] "Apple" "Amazon" "Lenovo"    "HP"        "Meta"     
## [142,] "Apple" "Amazon" "Lenovo"    "HP"        "Microsoft"
## [143,] "Apple" "Amazon" "Lenovo"    "HP"        "Netflix"  
## [144,] "Apple" "Amazon" "Lenovo"    "HP"        "Steam"    
## [145,] "Apple" "Amazon" "Lenovo"    "Meta"      "Disney"   
## [146,] "Apple" "Amazon" "Lenovo"    "Meta"      "Google"   
## [147,] "Apple" "Amazon" "Lenovo"    "Meta"      "HP"       
## [148,] "Apple" "Amazon" "Lenovo"    "Meta"      "Microsoft"
## [149,] "Apple" "Amazon" "Lenovo"    "Meta"      "Netflix"  
## [150,] "Apple" "Amazon" "Lenovo"    "Meta"      "Steam"    
## [151,] "Apple" "Amazon" "Lenovo"    "Microsoft" "Disney"   
## [152,] "Apple" "Amazon" "Lenovo"    "Microsoft" "Google"   
## [153,] "Apple" "Amazon" "Lenovo"    "Microsoft" "HP"       
## [154,] "Apple" "Amazon" "Lenovo"    "Microsoft" "Meta"     
## [155,] "Apple" "Amazon" "Lenovo"    "Microsoft" "Netflix"  
## [156,] "Apple" "Amazon" "Lenovo"    "Microsoft" "Steam"    
## [157,] "Apple" "Amazon" "Lenovo"    "Netflix"   "Disney"   
## [158,] "Apple" "Amazon" "Lenovo"    "Netflix"   "Google"   
## [159,] "Apple" "Amazon" "Lenovo"    "Netflix"   "HP"       
## [160,] "Apple" "Amazon" "Lenovo"    "Netflix"   "Meta"     
## [161,] "Apple" "Amazon" "Lenovo"    "Netflix"   "Microsoft"
## [162,] "Apple" "Amazon" "Lenovo"    "Netflix"   "Steam"    
## [163,] "Apple" "Amazon" "Lenovo"    "Steam"     "Disney"   
## [164,] "Apple" "Amazon" "Lenovo"    "Steam"     "Google"   
## [165,] "Apple" "Amazon" "Lenovo"    "Steam"     "HP"       
## [166,] "Apple" "Amazon" "Lenovo"    "Steam"     "Meta"     
## [167,] "Apple" "Amazon" "Lenovo"    "Steam"     "Microsoft"
## [168,] "Apple" "Amazon" "Lenovo"    "Steam"     "Netflix"  
## [169,] "Apple" "Amazon" "Meta"      "Disney"    "Google"   
## [170,] "Apple" "Amazon" "Meta"      "Disney"    "HP"       
## [171,] "Apple" "Amazon" "Meta"      "Disney"    "Lenovo"   
## [172,] "Apple" "Amazon" "Meta"      "Disney"    "Microsoft"
## [173,] "Apple" "Amazon" "Meta"      "Disney"    "Netflix"  
## [174,] "Apple" "Amazon" "Meta"      "Disney"    "Steam"    
## [175,] "Apple" "Amazon" "Meta"      "Google"    "Disney"   
## [176,] "Apple" "Amazon" "Meta"      "Google"    "HP"       
## [177,] "Apple" "Amazon" "Meta"      "Google"    "Lenovo"   
## [178,] "Apple" "Amazon" "Meta"      "Google"    "Microsoft"
## [179,] "Apple" "Amazon" "Meta"      "Google"    "Netflix"  
## [180,] "Apple" "Amazon" "Meta"      "Google"    "Steam"    
## [181,] "Apple" "Amazon" "Meta"      "HP"        "Disney"   
## [182,] "Apple" "Amazon" "Meta"      "HP"        "Google"   
## [183,] "Apple" "Amazon" "Meta"      "HP"        "Lenovo"   
## [184,] "Apple" "Amazon" "Meta"      "HP"        "Microsoft"
## [185,] "Apple" "Amazon" "Meta"      "HP"        "Netflix"  
## [186,] "Apple" "Amazon" "Meta"      "HP"        "Steam"    
## [187,] "Apple" "Amazon" "Meta"      "Lenovo"    "Disney"   
## [188,] "Apple" "Amazon" "Meta"      "Lenovo"    "Google"   
## [189,] "Apple" "Amazon" "Meta"      "Lenovo"    "HP"       
## [190,] "Apple" "Amazon" "Meta"      "Lenovo"    "Microsoft"
## [191,] "Apple" "Amazon" "Meta"      "Lenovo"    "Netflix"  
## [192,] "Apple" "Amazon" "Meta"      "Lenovo"    "Steam"    
## [193,] "Apple" "Amazon" "Meta"      "Microsoft" "Disney"   
## [194,] "Apple" "Amazon" "Meta"      "Microsoft" "Google"   
## [195,] "Apple" "Amazon" "Meta"      "Microsoft" "HP"       
## [196,] "Apple" "Amazon" "Meta"      "Microsoft" "Lenovo"   
## [197,] "Apple" "Amazon" "Meta"      "Microsoft" "Netflix"  
## [198,] "Apple" "Amazon" "Meta"      "Microsoft" "Steam"    
## [199,] "Apple" "Amazon" "Meta"      "Netflix"   "Disney"   
## [200,] "Apple" "Amazon" "Meta"      "Netflix"   "Google"   
## [201,] "Apple" "Amazon" "Meta"      "Netflix"   "HP"       
## [202,] "Apple" "Amazon" "Meta"      "Netflix"   "Lenovo"   
## [203,] "Apple" "Amazon" "Meta"      "Netflix"   "Microsoft"
## [204,] "Apple" "Amazon" "Meta"      "Netflix"   "Steam"    
## [205,] "Apple" "Amazon" "Meta"      "Steam"     "Disney"   
## [206,] "Apple" "Amazon" "Meta"      "Steam"     "Google"   
## [207,] "Apple" "Amazon" "Meta"      "Steam"     "HP"       
## [208,] "Apple" "Amazon" "Meta"      "Steam"     "Lenovo"   
## [209,] "Apple" "Amazon" "Meta"      "Steam"     "Microsoft"
## [210,] "Apple" "Amazon" "Meta"      "Steam"     "Netflix"  
## [211,] "Apple" "Amazon" "Microsoft" "Disney"    "Google"   
## [212,] "Apple" "Amazon" "Microsoft" "Disney"    "HP"       
## [213,] "Apple" "Amazon" "Microsoft" "Disney"    "Lenovo"   
## [214,] "Apple" "Amazon" "Microsoft" "Disney"    "Meta"     
## [215,] "Apple" "Amazon" "Microsoft" "Disney"    "Netflix"  
## [216,] "Apple" "Amazon" "Microsoft" "Disney"    "Steam"    
## [217,] "Apple" "Amazon" "Microsoft" "Google"    "Disney"   
## [218,] "Apple" "Amazon" "Microsoft" "Google"    "HP"       
## [219,] "Apple" "Amazon" "Microsoft" "Google"    "Lenovo"   
## [220,] "Apple" "Amazon" "Microsoft" "Google"    "Meta"     
## [221,] "Apple" "Amazon" "Microsoft" "Google"    "Netflix"  
## [222,] "Apple" "Amazon" "Microsoft" "Google"    "Steam"    
## [223,] "Apple" "Amazon" "Microsoft" "HP"        "Disney"   
## [224,] "Apple" "Amazon" "Microsoft" "HP"        "Google"   
## [225,] "Apple" "Amazon" "Microsoft" "HP"        "Lenovo"   
## [226,] "Apple" "Amazon" "Microsoft" "HP"        "Meta"     
## [227,] "Apple" "Amazon" "Microsoft" "HP"        "Netflix"  
## [228,] "Apple" "Amazon" "Microsoft" "HP"        "Steam"    
## [229,] "Apple" "Amazon" "Microsoft" "Lenovo"    "Disney"   
## [230,] "Apple" "Amazon" "Microsoft" "Lenovo"    "Google"   
## [231,] "Apple" "Amazon" "Microsoft" "Lenovo"    "HP"       
## [232,] "Apple" "Amazon" "Microsoft" "Lenovo"    "Meta"     
## [233,] "Apple" "Amazon" "Microsoft" "Lenovo"    "Netflix"  
## [234,] "Apple" "Amazon" "Microsoft" "Lenovo"    "Steam"    
## [235,] "Apple" "Amazon" "Microsoft" "Meta"      "Disney"   
## [236,] "Apple" "Amazon" "Microsoft" "Meta"      "Google"   
## [237,] "Apple" "Amazon" "Microsoft" "Meta"      "HP"       
## [238,] "Apple" "Amazon" "Microsoft" "Meta"      "Lenovo"   
## [239,] "Apple" "Amazon" "Microsoft" "Meta"      "Netflix"  
## [240,] "Apple" "Amazon" "Microsoft" "Meta"      "Steam"    
## [241,] "Apple" "Amazon" "Microsoft" "Netflix"   "Disney"   
## [242,] "Apple" "Amazon" "Microsoft" "Netflix"   "Google"   
## [243,] "Apple" "Amazon" "Microsoft" "Netflix"   "HP"       
## [244,] "Apple" "Amazon" "Microsoft" "Netflix"   "Lenovo"   
## [245,] "Apple" "Amazon" "Microsoft" "Netflix"   "Meta"     
## [246,] "Apple" "Amazon" "Microsoft" "Netflix"   "Steam"    
## [247,] "Apple" "Amazon" "Microsoft" "Steam"     "Disney"   
## [248,] "Apple" "Amazon" "Microsoft" "Steam"     "Google"   
## [249,] "Apple" "Amazon" "Microsoft" "Steam"     "HP"       
## [250,] "Apple" "Amazon" "Microsoft" "Steam"     "Lenovo"   
## [251,] "Apple" "Amazon" "Microsoft" "Steam"     "Meta"     
## [252,] "Apple" "Amazon" "Microsoft" "Steam"     "Netflix"  
## [253,] "Apple" "Amazon" "Netflix"   "Disney"    "Google"   
## [254,] "Apple" "Amazon" "Netflix"   "Disney"    "HP"       
## [255,] "Apple" "Amazon" "Netflix"   "Disney"    "Lenovo"   
## [256,] "Apple" "Amazon" "Netflix"   "Disney"    "Meta"     
## [257,] "Apple" "Amazon" "Netflix"   "Disney"    "Microsoft"
## [258,] "Apple" "Amazon" "Netflix"   "Disney"    "Steam"    
## [259,] "Apple" "Amazon" "Netflix"   "Google"    "Disney"   
## [260,] "Apple" "Amazon" "Netflix"   "Google"    "HP"       
## [261,] "Apple" "Amazon" "Netflix"   "Google"    "Lenovo"   
## [262,] "Apple" "Amazon" "Netflix"   "Google"    "Meta"     
## [263,] "Apple" "Amazon" "Netflix"   "Google"    "Microsoft"
## [264,] "Apple" "Amazon" "Netflix"   "Google"    "Steam"    
## [265,] "Apple" "Amazon" "Netflix"   "HP"        "Disney"   
## [266,] "Apple" "Amazon" "Netflix"   "HP"        "Google"   
## [267,] "Apple" "Amazon" "Netflix"   "HP"        "Lenovo"   
## [268,] "Apple" "Amazon" "Netflix"   "HP"        "Meta"     
## [269,] "Apple" "Amazon" "Netflix"   "HP"        "Microsoft"
## [270,] "Apple" "Amazon" "Netflix"   "HP"        "Steam"    
## [271,] "Apple" "Amazon" "Netflix"   "Lenovo"    "Disney"   
## [272,] "Apple" "Amazon" "Netflix"   "Lenovo"    "Google"   
## [273,] "Apple" "Amazon" "Netflix"   "Lenovo"    "HP"       
## [274,] "Apple" "Amazon" "Netflix"   "Lenovo"    "Meta"     
## [275,] "Apple" "Amazon" "Netflix"   "Lenovo"    "Microsoft"
## [276,] "Apple" "Amazon" "Netflix"   "Lenovo"    "Steam"    
## [277,] "Apple" "Amazon" "Netflix"   "Meta"      "Disney"   
## [278,] "Apple" "Amazon" "Netflix"   "Meta"      "Google"   
## [279,] "Apple" "Amazon" "Netflix"   "Meta"      "HP"       
## [280,] "Apple" "Amazon" "Netflix"   "Meta"      "Lenovo"   
## [281,] "Apple" "Amazon" "Netflix"   "Meta"      "Microsoft"
## [282,] "Apple" "Amazon" "Netflix"   "Meta"      "Steam"    
## [283,] "Apple" "Amazon" "Netflix"   "Microsoft" "Disney"   
## [284,] "Apple" "Amazon" "Netflix"   "Microsoft" "Google"   
## [285,] "Apple" "Amazon" "Netflix"   "Microsoft" "HP"       
## [286,] "Apple" "Amazon" "Netflix"   "Microsoft" "Lenovo"   
## [287,] "Apple" "Amazon" "Netflix"   "Microsoft" "Meta"     
## [288,] "Apple" "Amazon" "Netflix"   "Microsoft" "Steam"    
## [289,] "Apple" "Amazon" "Netflix"   "Steam"     "Disney"   
## [290,] "Apple" "Amazon" "Netflix"   "Steam"     "Google"   
## [291,] "Apple" "Amazon" "Netflix"   "Steam"     "HP"       
## [292,] "Apple" "Amazon" "Netflix"   "Steam"     "Lenovo"   
## [293,] "Apple" "Amazon" "Netflix"   "Steam"     "Meta"     
## [294,] "Apple" "Amazon" "Netflix"   "Steam"     "Microsoft"
## [295,] "Apple" "Amazon" "Steam"     "Disney"    "Google"   
## [296,] "Apple" "Amazon" "Steam"     "Disney"    "HP"       
## [297,] "Apple" "Amazon" "Steam"     "Disney"    "Lenovo"   
## [298,] "Apple" "Amazon" "Steam"     "Disney"    "Meta"     
## [299,] "Apple" "Amazon" "Steam"     "Disney"    "Microsoft"
## [300,] "Apple" "Amazon" "Steam"     "Disney"    "Netflix"  
## [301,] "Apple" "Amazon" "Steam"     "Google"    "Disney"   
## [302,] "Apple" "Amazon" "Steam"     "Google"    "HP"       
## [303,] "Apple" "Amazon" "Steam"     "Google"    "Lenovo"   
## [304,] "Apple" "Amazon" "Steam"     "Google"    "Meta"     
## [305,] "Apple" "Amazon" "Steam"     "Google"    "Microsoft"
## [306,] "Apple" "Amazon" "Steam"     "Google"    "Netflix"  
## [307,] "Apple" "Amazon" "Steam"     "HP"        "Disney"   
## [308,] "Apple" "Amazon" "Steam"     "HP"        "Google"   
## [309,] "Apple" "Amazon" "Steam"     "HP"        "Lenovo"   
## [310,] "Apple" "Amazon" "Steam"     "HP"        "Meta"     
## [311,] "Apple" "Amazon" "Steam"     "HP"        "Microsoft"
## [312,] "Apple" "Amazon" "Steam"     "HP"        "Netflix"  
## [313,] "Apple" "Amazon" "Steam"     "Lenovo"    "Disney"   
## [314,] "Apple" "Amazon" "Steam"     "Lenovo"    "Google"   
## [315,] "Apple" "Amazon" "Steam"     "Lenovo"    "HP"       
## [316,] "Apple" "Amazon" "Steam"     "Lenovo"    "Meta"     
## [317,] "Apple" "Amazon" "Steam"     "Lenovo"    "Microsoft"
## [318,] "Apple" "Amazon" "Steam"     "Lenovo"    "Netflix"  
## [319,] "Apple" "Amazon" "Steam"     "Meta"      "Disney"   
## [320,] "Apple" "Amazon" "Steam"     "Meta"      "Google"   
## [321,] "Apple" "Amazon" "Steam"     "Meta"      "HP"       
## [322,] "Apple" "Amazon" "Steam"     "Meta"      "Lenovo"   
## [323,] "Apple" "Amazon" "Steam"     "Meta"      "Microsoft"
## [324,] "Apple" "Amazon" "Steam"     "Meta"      "Netflix"  
## [325,] "Apple" "Amazon" "Steam"     "Microsoft" "Disney"   
## [326,] "Apple" "Amazon" "Steam"     "Microsoft" "Google"   
## [327,] "Apple" "Amazon" "Steam"     "Microsoft" "HP"       
## [328,] "Apple" "Amazon" "Steam"     "Microsoft" "Lenovo"   
## [329,] "Apple" "Amazon" "Steam"     "Microsoft" "Meta"     
## [330,] "Apple" "Amazon" "Steam"     "Microsoft" "Netflix"  
## [331,] "Apple" "Amazon" "Steam"     "Netflix"   "Disney"   
## [332,] "Apple" "Amazon" "Steam"     "Netflix"   "Google"   
## [333,] "Apple" "Amazon" "Steam"     "Netflix"   "HP"       
## [334,] "Apple" "Amazon" "Steam"     "Netflix"   "Lenovo"   
## [335,] "Apple" "Amazon" "Steam"     "Netflix"   "Meta"     
## [336,] "Apple" "Amazon" "Steam"     "Netflix"   "Microsoft"
frecuencia <- nrow(filtro)
paste("Existen ", frecuencia, " ocasiones en que se encuentran Apple y Amazon juntos en ese orden, de un total de ", nrow(Pern.Empresas), " representan ", round(frecuencia / nrow(Pern.Empresas) * 100, 2), "%")
## [1] "Existen  336  ocasiones en que se encuentran Apple y Amazon juntos en ese orden, de un total de  30240  representan  1.11 %"

En cuántas ocasiones aparece de manera contigua y en este orden las Empresas Google y Netflix en primera y segunda columna respectivamente.

filtro <- subset(Pern.Empresas, Pern.Empresas[,1] == "Google")
filtro
##         [,1]     [,2]        [,3]        [,4]        [,5]       
##    [1,] "Google" "Amazon"    "Apple"     "Disney"    "HP"       
##    [2,] "Google" "Amazon"    "Apple"     "Disney"    "Lenovo"   
##    [3,] "Google" "Amazon"    "Apple"     "Disney"    "Meta"     
##    [4,] "Google" "Amazon"    "Apple"     "Disney"    "Microsoft"
##    [5,] "Google" "Amazon"    "Apple"     "Disney"    "Netflix"  
##    [6,] "Google" "Amazon"    "Apple"     "Disney"    "Steam"    
##    [7,] "Google" "Amazon"    "Apple"     "HP"        "Disney"   
##    [8,] "Google" "Amazon"    "Apple"     "HP"        "Lenovo"   
##    [9,] "Google" "Amazon"    "Apple"     "HP"        "Meta"     
##   [10,] "Google" "Amazon"    "Apple"     "HP"        "Microsoft"
##   [11,] "Google" "Amazon"    "Apple"     "HP"        "Netflix"  
##   [12,] "Google" "Amazon"    "Apple"     "HP"        "Steam"    
##   [13,] "Google" "Amazon"    "Apple"     "Lenovo"    "Disney"   
##   [14,] "Google" "Amazon"    "Apple"     "Lenovo"    "HP"       
##   [15,] "Google" "Amazon"    "Apple"     "Lenovo"    "Meta"     
##   [16,] "Google" "Amazon"    "Apple"     "Lenovo"    "Microsoft"
##   [17,] "Google" "Amazon"    "Apple"     "Lenovo"    "Netflix"  
##   [18,] "Google" "Amazon"    "Apple"     "Lenovo"    "Steam"    
##   [19,] "Google" "Amazon"    "Apple"     "Meta"      "Disney"   
##   [20,] "Google" "Amazon"    "Apple"     "Meta"      "HP"       
##   [21,] "Google" "Amazon"    "Apple"     "Meta"      "Lenovo"   
##   [22,] "Google" "Amazon"    "Apple"     "Meta"      "Microsoft"
##   [23,] "Google" "Amazon"    "Apple"     "Meta"      "Netflix"  
##   [24,] "Google" "Amazon"    "Apple"     "Meta"      "Steam"    
##   [25,] "Google" "Amazon"    "Apple"     "Microsoft" "Disney"   
##   [26,] "Google" "Amazon"    "Apple"     "Microsoft" "HP"       
##   [27,] "Google" "Amazon"    "Apple"     "Microsoft" "Lenovo"   
##   [28,] "Google" "Amazon"    "Apple"     "Microsoft" "Meta"     
##   [29,] "Google" "Amazon"    "Apple"     "Microsoft" "Netflix"  
##   [30,] "Google" "Amazon"    "Apple"     "Microsoft" "Steam"    
##   [31,] "Google" "Amazon"    "Apple"     "Netflix"   "Disney"   
##   [32,] "Google" "Amazon"    "Apple"     "Netflix"   "HP"       
##   [33,] "Google" "Amazon"    "Apple"     "Netflix"   "Lenovo"   
##   [34,] "Google" "Amazon"    "Apple"     "Netflix"   "Meta"     
##   [35,] "Google" "Amazon"    "Apple"     "Netflix"   "Microsoft"
##   [36,] "Google" "Amazon"    "Apple"     "Netflix"   "Steam"    
##   [37,] "Google" "Amazon"    "Apple"     "Steam"     "Disney"   
##   [38,] "Google" "Amazon"    "Apple"     "Steam"     "HP"       
##   [39,] "Google" "Amazon"    "Apple"     "Steam"     "Lenovo"   
##   [40,] "Google" "Amazon"    "Apple"     "Steam"     "Meta"     
##   [41,] "Google" "Amazon"    "Apple"     "Steam"     "Microsoft"
##   [42,] "Google" "Amazon"    "Apple"     "Steam"     "Netflix"  
##   [43,] "Google" "Amazon"    "Disney"    "Apple"     "HP"       
##   [44,] "Google" "Amazon"    "Disney"    "Apple"     "Lenovo"   
##   [45,] "Google" "Amazon"    "Disney"    "Apple"     "Meta"     
##   [46,] "Google" "Amazon"    "Disney"    "Apple"     "Microsoft"
##   [47,] "Google" "Amazon"    "Disney"    "Apple"     "Netflix"  
##   [48,] "Google" "Amazon"    "Disney"    "Apple"     "Steam"    
##   [49,] "Google" "Amazon"    "Disney"    "HP"        "Apple"    
##   [50,] "Google" "Amazon"    "Disney"    "HP"        "Lenovo"   
##   [51,] "Google" "Amazon"    "Disney"    "HP"        "Meta"     
##   [52,] "Google" "Amazon"    "Disney"    "HP"        "Microsoft"
##   [53,] "Google" "Amazon"    "Disney"    "HP"        "Netflix"  
##   [54,] "Google" "Amazon"    "Disney"    "HP"        "Steam"    
##   [55,] "Google" "Amazon"    "Disney"    "Lenovo"    "Apple"    
##   [56,] "Google" "Amazon"    "Disney"    "Lenovo"    "HP"       
##   [57,] "Google" "Amazon"    "Disney"    "Lenovo"    "Meta"     
##   [58,] "Google" "Amazon"    "Disney"    "Lenovo"    "Microsoft"
##   [59,] "Google" "Amazon"    "Disney"    "Lenovo"    "Netflix"  
##   [60,] "Google" "Amazon"    "Disney"    "Lenovo"    "Steam"    
##   [61,] "Google" "Amazon"    "Disney"    "Meta"      "Apple"    
##   [62,] "Google" "Amazon"    "Disney"    "Meta"      "HP"       
##   [63,] "Google" "Amazon"    "Disney"    "Meta"      "Lenovo"   
##   [64,] "Google" "Amazon"    "Disney"    "Meta"      "Microsoft"
##   [65,] "Google" "Amazon"    "Disney"    "Meta"      "Netflix"  
##   [66,] "Google" "Amazon"    "Disney"    "Meta"      "Steam"    
##   [67,] "Google" "Amazon"    "Disney"    "Microsoft" "Apple"    
##   [68,] "Google" "Amazon"    "Disney"    "Microsoft" "HP"       
##   [69,] "Google" "Amazon"    "Disney"    "Microsoft" "Lenovo"   
##   [70,] "Google" "Amazon"    "Disney"    "Microsoft" "Meta"     
##   [71,] "Google" "Amazon"    "Disney"    "Microsoft" "Netflix"  
##   [72,] "Google" "Amazon"    "Disney"    "Microsoft" "Steam"    
##   [73,] "Google" "Amazon"    "Disney"    "Netflix"   "Apple"    
##   [74,] "Google" "Amazon"    "Disney"    "Netflix"   "HP"       
##   [75,] "Google" "Amazon"    "Disney"    "Netflix"   "Lenovo"   
##   [76,] "Google" "Amazon"    "Disney"    "Netflix"   "Meta"     
##   [77,] "Google" "Amazon"    "Disney"    "Netflix"   "Microsoft"
##   [78,] "Google" "Amazon"    "Disney"    "Netflix"   "Steam"    
##   [79,] "Google" "Amazon"    "Disney"    "Steam"     "Apple"    
##   [80,] "Google" "Amazon"    "Disney"    "Steam"     "HP"       
##   [81,] "Google" "Amazon"    "Disney"    "Steam"     "Lenovo"   
##   [82,] "Google" "Amazon"    "Disney"    "Steam"     "Meta"     
##   [83,] "Google" "Amazon"    "Disney"    "Steam"     "Microsoft"
##   [84,] "Google" "Amazon"    "Disney"    "Steam"     "Netflix"  
##   [85,] "Google" "Amazon"    "HP"        "Apple"     "Disney"   
##   [86,] "Google" "Amazon"    "HP"        "Apple"     "Lenovo"   
##   [87,] "Google" "Amazon"    "HP"        "Apple"     "Meta"     
##   [88,] "Google" "Amazon"    "HP"        "Apple"     "Microsoft"
##   [89,] "Google" "Amazon"    "HP"        "Apple"     "Netflix"  
##   [90,] "Google" "Amazon"    "HP"        "Apple"     "Steam"    
##   [91,] "Google" "Amazon"    "HP"        "Disney"    "Apple"    
##   [92,] "Google" "Amazon"    "HP"        "Disney"    "Lenovo"   
##   [93,] "Google" "Amazon"    "HP"        "Disney"    "Meta"     
##   [94,] "Google" "Amazon"    "HP"        "Disney"    "Microsoft"
##   [95,] "Google" "Amazon"    "HP"        "Disney"    "Netflix"  
##   [96,] "Google" "Amazon"    "HP"        "Disney"    "Steam"    
##   [97,] "Google" "Amazon"    "HP"        "Lenovo"    "Apple"    
##   [98,] "Google" "Amazon"    "HP"        "Lenovo"    "Disney"   
##   [99,] "Google" "Amazon"    "HP"        "Lenovo"    "Meta"     
##  [100,] "Google" "Amazon"    "HP"        "Lenovo"    "Microsoft"
##  [101,] "Google" "Amazon"    "HP"        "Lenovo"    "Netflix"  
##  [102,] "Google" "Amazon"    "HP"        "Lenovo"    "Steam"    
##  [103,] "Google" "Amazon"    "HP"        "Meta"      "Apple"    
##  [104,] "Google" "Amazon"    "HP"        "Meta"      "Disney"   
##  [105,] "Google" "Amazon"    "HP"        "Meta"      "Lenovo"   
##  [106,] "Google" "Amazon"    "HP"        "Meta"      "Microsoft"
##  [107,] "Google" "Amazon"    "HP"        "Meta"      "Netflix"  
##  [108,] "Google" "Amazon"    "HP"        "Meta"      "Steam"    
##  [109,] "Google" "Amazon"    "HP"        "Microsoft" "Apple"    
##  [110,] "Google" "Amazon"    "HP"        "Microsoft" "Disney"   
##  [111,] "Google" "Amazon"    "HP"        "Microsoft" "Lenovo"   
##  [112,] "Google" "Amazon"    "HP"        "Microsoft" "Meta"     
##  [113,] "Google" "Amazon"    "HP"        "Microsoft" "Netflix"  
##  [114,] "Google" "Amazon"    "HP"        "Microsoft" "Steam"    
##  [115,] "Google" "Amazon"    "HP"        "Netflix"   "Apple"    
##  [116,] "Google" "Amazon"    "HP"        "Netflix"   "Disney"   
##  [117,] "Google" "Amazon"    "HP"        "Netflix"   "Lenovo"   
##  [118,] "Google" "Amazon"    "HP"        "Netflix"   "Meta"     
##  [119,] "Google" "Amazon"    "HP"        "Netflix"   "Microsoft"
##  [120,] "Google" "Amazon"    "HP"        "Netflix"   "Steam"    
##  [121,] "Google" "Amazon"    "HP"        "Steam"     "Apple"    
##  [122,] "Google" "Amazon"    "HP"        "Steam"     "Disney"   
##  [123,] "Google" "Amazon"    "HP"        "Steam"     "Lenovo"   
##  [124,] "Google" "Amazon"    "HP"        "Steam"     "Meta"     
##  [125,] "Google" "Amazon"    "HP"        "Steam"     "Microsoft"
##  [126,] "Google" "Amazon"    "HP"        "Steam"     "Netflix"  
##  [127,] "Google" "Amazon"    "Lenovo"    "Apple"     "Disney"   
##  [128,] "Google" "Amazon"    "Lenovo"    "Apple"     "HP"       
##  [129,] "Google" "Amazon"    "Lenovo"    "Apple"     "Meta"     
##  [130,] "Google" "Amazon"    "Lenovo"    "Apple"     "Microsoft"
##  [131,] "Google" "Amazon"    "Lenovo"    "Apple"     "Netflix"  
##  [132,] "Google" "Amazon"    "Lenovo"    "Apple"     "Steam"    
##  [133,] "Google" "Amazon"    "Lenovo"    "Disney"    "Apple"    
##  [134,] "Google" "Amazon"    "Lenovo"    "Disney"    "HP"       
##  [135,] "Google" "Amazon"    "Lenovo"    "Disney"    "Meta"     
##  [136,] "Google" "Amazon"    "Lenovo"    "Disney"    "Microsoft"
##  [137,] "Google" "Amazon"    "Lenovo"    "Disney"    "Netflix"  
##  [138,] "Google" "Amazon"    "Lenovo"    "Disney"    "Steam"    
##  [139,] "Google" "Amazon"    "Lenovo"    "HP"        "Apple"    
##  [140,] "Google" "Amazon"    "Lenovo"    "HP"        "Disney"   
##  [141,] "Google" "Amazon"    "Lenovo"    "HP"        "Meta"     
##  [142,] "Google" "Amazon"    "Lenovo"    "HP"        "Microsoft"
##  [143,] "Google" "Amazon"    "Lenovo"    "HP"        "Netflix"  
##  [144,] "Google" "Amazon"    "Lenovo"    "HP"        "Steam"    
##  [145,] "Google" "Amazon"    "Lenovo"    "Meta"      "Apple"    
##  [146,] "Google" "Amazon"    "Lenovo"    "Meta"      "Disney"   
##  [147,] "Google" "Amazon"    "Lenovo"    "Meta"      "HP"       
##  [148,] "Google" "Amazon"    "Lenovo"    "Meta"      "Microsoft"
##  [149,] "Google" "Amazon"    "Lenovo"    "Meta"      "Netflix"  
##  [150,] "Google" "Amazon"    "Lenovo"    "Meta"      "Steam"    
##  [151,] "Google" "Amazon"    "Lenovo"    "Microsoft" "Apple"    
##  [152,] "Google" "Amazon"    "Lenovo"    "Microsoft" "Disney"   
##  [153,] "Google" "Amazon"    "Lenovo"    "Microsoft" "HP"       
##  [154,] "Google" "Amazon"    "Lenovo"    "Microsoft" "Meta"     
##  [155,] "Google" "Amazon"    "Lenovo"    "Microsoft" "Netflix"  
##  [156,] "Google" "Amazon"    "Lenovo"    "Microsoft" "Steam"    
##  [157,] "Google" "Amazon"    "Lenovo"    "Netflix"   "Apple"    
##  [158,] "Google" "Amazon"    "Lenovo"    "Netflix"   "Disney"   
##  [159,] "Google" "Amazon"    "Lenovo"    "Netflix"   "HP"       
##  [160,] "Google" "Amazon"    "Lenovo"    "Netflix"   "Meta"     
##  [161,] "Google" "Amazon"    "Lenovo"    "Netflix"   "Microsoft"
##  [162,] "Google" "Amazon"    "Lenovo"    "Netflix"   "Steam"    
##  [163,] "Google" "Amazon"    "Lenovo"    "Steam"     "Apple"    
##  [164,] "Google" "Amazon"    "Lenovo"    "Steam"     "Disney"   
##  [165,] "Google" "Amazon"    "Lenovo"    "Steam"     "HP"       
##  [166,] "Google" "Amazon"    "Lenovo"    "Steam"     "Meta"     
##  [167,] "Google" "Amazon"    "Lenovo"    "Steam"     "Microsoft"
##  [168,] "Google" "Amazon"    "Lenovo"    "Steam"     "Netflix"  
##  [169,] "Google" "Amazon"    "Meta"      "Apple"     "Disney"   
##  [170,] "Google" "Amazon"    "Meta"      "Apple"     "HP"       
##  [171,] "Google" "Amazon"    "Meta"      "Apple"     "Lenovo"   
##  [172,] "Google" "Amazon"    "Meta"      "Apple"     "Microsoft"
##  [173,] "Google" "Amazon"    "Meta"      "Apple"     "Netflix"  
##  [174,] "Google" "Amazon"    "Meta"      "Apple"     "Steam"    
##  [175,] "Google" "Amazon"    "Meta"      "Disney"    "Apple"    
##  [176,] "Google" "Amazon"    "Meta"      "Disney"    "HP"       
##  [177,] "Google" "Amazon"    "Meta"      "Disney"    "Lenovo"   
##  [178,] "Google" "Amazon"    "Meta"      "Disney"    "Microsoft"
##  [179,] "Google" "Amazon"    "Meta"      "Disney"    "Netflix"  
##  [180,] "Google" "Amazon"    "Meta"      "Disney"    "Steam"    
##  [181,] "Google" "Amazon"    "Meta"      "HP"        "Apple"    
##  [182,] "Google" "Amazon"    "Meta"      "HP"        "Disney"   
##  [183,] "Google" "Amazon"    "Meta"      "HP"        "Lenovo"   
##  [184,] "Google" "Amazon"    "Meta"      "HP"        "Microsoft"
##  [185,] "Google" "Amazon"    "Meta"      "HP"        "Netflix"  
##  [186,] "Google" "Amazon"    "Meta"      "HP"        "Steam"    
##  [187,] "Google" "Amazon"    "Meta"      "Lenovo"    "Apple"    
##  [188,] "Google" "Amazon"    "Meta"      "Lenovo"    "Disney"   
##  [189,] "Google" "Amazon"    "Meta"      "Lenovo"    "HP"       
##  [190,] "Google" "Amazon"    "Meta"      "Lenovo"    "Microsoft"
##  [191,] "Google" "Amazon"    "Meta"      "Lenovo"    "Netflix"  
##  [192,] "Google" "Amazon"    "Meta"      "Lenovo"    "Steam"    
##  [193,] "Google" "Amazon"    "Meta"      "Microsoft" "Apple"    
##  [194,] "Google" "Amazon"    "Meta"      "Microsoft" "Disney"   
##  [195,] "Google" "Amazon"    "Meta"      "Microsoft" "HP"       
##  [196,] "Google" "Amazon"    "Meta"      "Microsoft" "Lenovo"   
##  [197,] "Google" "Amazon"    "Meta"      "Microsoft" "Netflix"  
##  [198,] "Google" "Amazon"    "Meta"      "Microsoft" "Steam"    
##  [199,] "Google" "Amazon"    "Meta"      "Netflix"   "Apple"    
##  [200,] "Google" "Amazon"    "Meta"      "Netflix"   "Disney"   
##  [201,] "Google" "Amazon"    "Meta"      "Netflix"   "HP"       
##  [202,] "Google" "Amazon"    "Meta"      "Netflix"   "Lenovo"   
##  [203,] "Google" "Amazon"    "Meta"      "Netflix"   "Microsoft"
##  [204,] "Google" "Amazon"    "Meta"      "Netflix"   "Steam"    
##  [205,] "Google" "Amazon"    "Meta"      "Steam"     "Apple"    
##  [206,] "Google" "Amazon"    "Meta"      "Steam"     "Disney"   
##  [207,] "Google" "Amazon"    "Meta"      "Steam"     "HP"       
##  [208,] "Google" "Amazon"    "Meta"      "Steam"     "Lenovo"   
##  [209,] "Google" "Amazon"    "Meta"      "Steam"     "Microsoft"
##  [210,] "Google" "Amazon"    "Meta"      "Steam"     "Netflix"  
##  [211,] "Google" "Amazon"    "Microsoft" "Apple"     "Disney"   
##  [212,] "Google" "Amazon"    "Microsoft" "Apple"     "HP"       
##  [213,] "Google" "Amazon"    "Microsoft" "Apple"     "Lenovo"   
##  [214,] "Google" "Amazon"    "Microsoft" "Apple"     "Meta"     
##  [215,] "Google" "Amazon"    "Microsoft" "Apple"     "Netflix"  
##  [216,] "Google" "Amazon"    "Microsoft" "Apple"     "Steam"    
##  [217,] "Google" "Amazon"    "Microsoft" "Disney"    "Apple"    
##  [218,] "Google" "Amazon"    "Microsoft" "Disney"    "HP"       
##  [219,] "Google" "Amazon"    "Microsoft" "Disney"    "Lenovo"   
##  [220,] "Google" "Amazon"    "Microsoft" "Disney"    "Meta"     
##  [221,] "Google" "Amazon"    "Microsoft" "Disney"    "Netflix"  
##  [222,] "Google" "Amazon"    "Microsoft" "Disney"    "Steam"    
##  [223,] "Google" "Amazon"    "Microsoft" "HP"        "Apple"    
##  [224,] "Google" "Amazon"    "Microsoft" "HP"        "Disney"   
##  [225,] "Google" "Amazon"    "Microsoft" "HP"        "Lenovo"   
##  [226,] "Google" "Amazon"    "Microsoft" "HP"        "Meta"     
##  [227,] "Google" "Amazon"    "Microsoft" "HP"        "Netflix"  
##  [228,] "Google" "Amazon"    "Microsoft" "HP"        "Steam"    
##  [229,] "Google" "Amazon"    "Microsoft" "Lenovo"    "Apple"    
##  [230,] "Google" "Amazon"    "Microsoft" "Lenovo"    "Disney"   
##  [231,] "Google" "Amazon"    "Microsoft" "Lenovo"    "HP"       
##  [232,] "Google" "Amazon"    "Microsoft" "Lenovo"    "Meta"     
##  [233,] "Google" "Amazon"    "Microsoft" "Lenovo"    "Netflix"  
##  [234,] "Google" "Amazon"    "Microsoft" "Lenovo"    "Steam"    
##  [235,] "Google" "Amazon"    "Microsoft" "Meta"      "Apple"    
##  [236,] "Google" "Amazon"    "Microsoft" "Meta"      "Disney"   
##  [237,] "Google" "Amazon"    "Microsoft" "Meta"      "HP"       
##  [238,] "Google" "Amazon"    "Microsoft" "Meta"      "Lenovo"   
##  [239,] "Google" "Amazon"    "Microsoft" "Meta"      "Netflix"  
##  [240,] "Google" "Amazon"    "Microsoft" "Meta"      "Steam"    
##  [241,] "Google" "Amazon"    "Microsoft" "Netflix"   "Apple"    
##  [242,] "Google" "Amazon"    "Microsoft" "Netflix"   "Disney"   
##  [243,] "Google" "Amazon"    "Microsoft" "Netflix"   "HP"       
##  [244,] "Google" "Amazon"    "Microsoft" "Netflix"   "Lenovo"   
##  [245,] "Google" "Amazon"    "Microsoft" "Netflix"   "Meta"     
##  [246,] "Google" "Amazon"    "Microsoft" "Netflix"   "Steam"    
##  [247,] "Google" "Amazon"    "Microsoft" "Steam"     "Apple"    
##  [248,] "Google" "Amazon"    "Microsoft" "Steam"     "Disney"   
##  [249,] "Google" "Amazon"    "Microsoft" "Steam"     "HP"       
##  [250,] "Google" "Amazon"    "Microsoft" "Steam"     "Lenovo"   
##  [251,] "Google" "Amazon"    "Microsoft" "Steam"     "Meta"     
##  [252,] "Google" "Amazon"    "Microsoft" "Steam"     "Netflix"  
##  [253,] "Google" "Amazon"    "Netflix"   "Apple"     "Disney"   
##  [254,] "Google" "Amazon"    "Netflix"   "Apple"     "HP"       
##  [255,] "Google" "Amazon"    "Netflix"   "Apple"     "Lenovo"   
##  [256,] "Google" "Amazon"    "Netflix"   "Apple"     "Meta"     
##  [257,] "Google" "Amazon"    "Netflix"   "Apple"     "Microsoft"
##  [258,] "Google" "Amazon"    "Netflix"   "Apple"     "Steam"    
##  [259,] "Google" "Amazon"    "Netflix"   "Disney"    "Apple"    
##  [260,] "Google" "Amazon"    "Netflix"   "Disney"    "HP"       
##  [261,] "Google" "Amazon"    "Netflix"   "Disney"    "Lenovo"   
##  [262,] "Google" "Amazon"    "Netflix"   "Disney"    "Meta"     
##  [263,] "Google" "Amazon"    "Netflix"   "Disney"    "Microsoft"
##  [264,] "Google" "Amazon"    "Netflix"   "Disney"    "Steam"    
##  [265,] "Google" "Amazon"    "Netflix"   "HP"        "Apple"    
##  [266,] "Google" "Amazon"    "Netflix"   "HP"        "Disney"   
##  [267,] "Google" "Amazon"    "Netflix"   "HP"        "Lenovo"   
##  [268,] "Google" "Amazon"    "Netflix"   "HP"        "Meta"     
##  [269,] "Google" "Amazon"    "Netflix"   "HP"        "Microsoft"
##  [270,] "Google" "Amazon"    "Netflix"   "HP"        "Steam"    
##  [271,] "Google" "Amazon"    "Netflix"   "Lenovo"    "Apple"    
##  [272,] "Google" "Amazon"    "Netflix"   "Lenovo"    "Disney"   
##  [273,] "Google" "Amazon"    "Netflix"   "Lenovo"    "HP"       
##  [274,] "Google" "Amazon"    "Netflix"   "Lenovo"    "Meta"     
##  [275,] "Google" "Amazon"    "Netflix"   "Lenovo"    "Microsoft"
##  [276,] "Google" "Amazon"    "Netflix"   "Lenovo"    "Steam"    
##  [277,] "Google" "Amazon"    "Netflix"   "Meta"      "Apple"    
##  [278,] "Google" "Amazon"    "Netflix"   "Meta"      "Disney"   
##  [279,] "Google" "Amazon"    "Netflix"   "Meta"      "HP"       
##  [280,] "Google" "Amazon"    "Netflix"   "Meta"      "Lenovo"   
##  [281,] "Google" "Amazon"    "Netflix"   "Meta"      "Microsoft"
##  [282,] "Google" "Amazon"    "Netflix"   "Meta"      "Steam"    
##  [283,] "Google" "Amazon"    "Netflix"   "Microsoft" "Apple"    
##  [284,] "Google" "Amazon"    "Netflix"   "Microsoft" "Disney"   
##  [285,] "Google" "Amazon"    "Netflix"   "Microsoft" "HP"       
##  [286,] "Google" "Amazon"    "Netflix"   "Microsoft" "Lenovo"   
##  [287,] "Google" "Amazon"    "Netflix"   "Microsoft" "Meta"     
##  [288,] "Google" "Amazon"    "Netflix"   "Microsoft" "Steam"    
##  [289,] "Google" "Amazon"    "Netflix"   "Steam"     "Apple"    
##  [290,] "Google" "Amazon"    "Netflix"   "Steam"     "Disney"   
##  [291,] "Google" "Amazon"    "Netflix"   "Steam"     "HP"       
##  [292,] "Google" "Amazon"    "Netflix"   "Steam"     "Lenovo"   
##  [293,] "Google" "Amazon"    "Netflix"   "Steam"     "Meta"     
##  [294,] "Google" "Amazon"    "Netflix"   "Steam"     "Microsoft"
##  [295,] "Google" "Amazon"    "Steam"     "Apple"     "Disney"   
##  [296,] "Google" "Amazon"    "Steam"     "Apple"     "HP"       
##  [297,] "Google" "Amazon"    "Steam"     "Apple"     "Lenovo"   
##  [298,] "Google" "Amazon"    "Steam"     "Apple"     "Meta"     
##  [299,] "Google" "Amazon"    "Steam"     "Apple"     "Microsoft"
##  [300,] "Google" "Amazon"    "Steam"     "Apple"     "Netflix"  
##  [301,] "Google" "Amazon"    "Steam"     "Disney"    "Apple"    
##  [302,] "Google" "Amazon"    "Steam"     "Disney"    "HP"       
##  [303,] "Google" "Amazon"    "Steam"     "Disney"    "Lenovo"   
##  [304,] "Google" "Amazon"    "Steam"     "Disney"    "Meta"     
##  [305,] "Google" "Amazon"    "Steam"     "Disney"    "Microsoft"
##  [306,] "Google" "Amazon"    "Steam"     "Disney"    "Netflix"  
##  [307,] "Google" "Amazon"    "Steam"     "HP"        "Apple"    
##  [308,] "Google" "Amazon"    "Steam"     "HP"        "Disney"   
##  [309,] "Google" "Amazon"    "Steam"     "HP"        "Lenovo"   
##  [310,] "Google" "Amazon"    "Steam"     "HP"        "Meta"     
##  [311,] "Google" "Amazon"    "Steam"     "HP"        "Microsoft"
##  [312,] "Google" "Amazon"    "Steam"     "HP"        "Netflix"  
##  [313,] "Google" "Amazon"    "Steam"     "Lenovo"    "Apple"    
##  [314,] "Google" "Amazon"    "Steam"     "Lenovo"    "Disney"   
##  [315,] "Google" "Amazon"    "Steam"     "Lenovo"    "HP"       
##  [316,] "Google" "Amazon"    "Steam"     "Lenovo"    "Meta"     
##  [317,] "Google" "Amazon"    "Steam"     "Lenovo"    "Microsoft"
##  [318,] "Google" "Amazon"    "Steam"     "Lenovo"    "Netflix"  
##  [319,] "Google" "Amazon"    "Steam"     "Meta"      "Apple"    
##  [320,] "Google" "Amazon"    "Steam"     "Meta"      "Disney"   
##  [321,] "Google" "Amazon"    "Steam"     "Meta"      "HP"       
##  [322,] "Google" "Amazon"    "Steam"     "Meta"      "Lenovo"   
##  [323,] "Google" "Amazon"    "Steam"     "Meta"      "Microsoft"
##  [324,] "Google" "Amazon"    "Steam"     "Meta"      "Netflix"  
##  [325,] "Google" "Amazon"    "Steam"     "Microsoft" "Apple"    
##  [326,] "Google" "Amazon"    "Steam"     "Microsoft" "Disney"   
##  [327,] "Google" "Amazon"    "Steam"     "Microsoft" "HP"       
##  [328,] "Google" "Amazon"    "Steam"     "Microsoft" "Lenovo"   
##  [329,] "Google" "Amazon"    "Steam"     "Microsoft" "Meta"     
##  [330,] "Google" "Amazon"    "Steam"     "Microsoft" "Netflix"  
##  [331,] "Google" "Amazon"    "Steam"     "Netflix"   "Apple"    
##  [332,] "Google" "Amazon"    "Steam"     "Netflix"   "Disney"   
##  [333,] "Google" "Amazon"    "Steam"     "Netflix"   "HP"       
##  [334,] "Google" "Amazon"    "Steam"     "Netflix"   "Lenovo"   
##  [335,] "Google" "Amazon"    "Steam"     "Netflix"   "Meta"     
##  [336,] "Google" "Amazon"    "Steam"     "Netflix"   "Microsoft"
##  [337,] "Google" "Apple"     "Amazon"    "Disney"    "HP"       
##  [338,] "Google" "Apple"     "Amazon"    "Disney"    "Lenovo"   
##  [339,] "Google" "Apple"     "Amazon"    "Disney"    "Meta"     
##  [340,] "Google" "Apple"     "Amazon"    "Disney"    "Microsoft"
##  [341,] "Google" "Apple"     "Amazon"    "Disney"    "Netflix"  
##  [342,] "Google" "Apple"     "Amazon"    "Disney"    "Steam"    
##  [343,] "Google" "Apple"     "Amazon"    "HP"        "Disney"   
##  [344,] "Google" "Apple"     "Amazon"    "HP"        "Lenovo"   
##  [345,] "Google" "Apple"     "Amazon"    "HP"        "Meta"     
##  [346,] "Google" "Apple"     "Amazon"    "HP"        "Microsoft"
##  [347,] "Google" "Apple"     "Amazon"    "HP"        "Netflix"  
##  [348,] "Google" "Apple"     "Amazon"    "HP"        "Steam"    
##  [349,] "Google" "Apple"     "Amazon"    "Lenovo"    "Disney"   
##  [350,] "Google" "Apple"     "Amazon"    "Lenovo"    "HP"       
##  [351,] "Google" "Apple"     "Amazon"    "Lenovo"    "Meta"     
##  [352,] "Google" "Apple"     "Amazon"    "Lenovo"    "Microsoft"
##  [353,] "Google" "Apple"     "Amazon"    "Lenovo"    "Netflix"  
##  [354,] "Google" "Apple"     "Amazon"    "Lenovo"    "Steam"    
##  [355,] "Google" "Apple"     "Amazon"    "Meta"      "Disney"   
##  [356,] "Google" "Apple"     "Amazon"    "Meta"      "HP"       
##  [357,] "Google" "Apple"     "Amazon"    "Meta"      "Lenovo"   
##  [358,] "Google" "Apple"     "Amazon"    "Meta"      "Microsoft"
##  [359,] "Google" "Apple"     "Amazon"    "Meta"      "Netflix"  
##  [360,] "Google" "Apple"     "Amazon"    "Meta"      "Steam"    
##  [361,] "Google" "Apple"     "Amazon"    "Microsoft" "Disney"   
##  [362,] "Google" "Apple"     "Amazon"    "Microsoft" "HP"       
##  [363,] "Google" "Apple"     "Amazon"    "Microsoft" "Lenovo"   
##  [364,] "Google" "Apple"     "Amazon"    "Microsoft" "Meta"     
##  [365,] "Google" "Apple"     "Amazon"    "Microsoft" "Netflix"  
##  [366,] "Google" "Apple"     "Amazon"    "Microsoft" "Steam"    
##  [367,] "Google" "Apple"     "Amazon"    "Netflix"   "Disney"   
##  [368,] "Google" "Apple"     "Amazon"    "Netflix"   "HP"       
##  [369,] "Google" "Apple"     "Amazon"    "Netflix"   "Lenovo"   
##  [370,] "Google" "Apple"     "Amazon"    "Netflix"   "Meta"     
##  [371,] "Google" "Apple"     "Amazon"    "Netflix"   "Microsoft"
##  [372,] "Google" "Apple"     "Amazon"    "Netflix"   "Steam"    
##  [373,] "Google" "Apple"     "Amazon"    "Steam"     "Disney"   
##  [374,] "Google" "Apple"     "Amazon"    "Steam"     "HP"       
##  [375,] "Google" "Apple"     "Amazon"    "Steam"     "Lenovo"   
##  [376,] "Google" "Apple"     "Amazon"    "Steam"     "Meta"     
##  [377,] "Google" "Apple"     "Amazon"    "Steam"     "Microsoft"
##  [378,] "Google" "Apple"     "Amazon"    "Steam"     "Netflix"  
##  [379,] "Google" "Apple"     "Disney"    "Amazon"    "HP"       
##  [380,] "Google" "Apple"     "Disney"    "Amazon"    "Lenovo"   
##  [381,] "Google" "Apple"     "Disney"    "Amazon"    "Meta"     
##  [382,] "Google" "Apple"     "Disney"    "Amazon"    "Microsoft"
##  [383,] "Google" "Apple"     "Disney"    "Amazon"    "Netflix"  
##  [384,] "Google" "Apple"     "Disney"    "Amazon"    "Steam"    
##  [385,] "Google" "Apple"     "Disney"    "HP"        "Amazon"   
##  [386,] "Google" "Apple"     "Disney"    "HP"        "Lenovo"   
##  [387,] "Google" "Apple"     "Disney"    "HP"        "Meta"     
##  [388,] "Google" "Apple"     "Disney"    "HP"        "Microsoft"
##  [389,] "Google" "Apple"     "Disney"    "HP"        "Netflix"  
##  [390,] "Google" "Apple"     "Disney"    "HP"        "Steam"    
##  [391,] "Google" "Apple"     "Disney"    "Lenovo"    "Amazon"   
##  [392,] "Google" "Apple"     "Disney"    "Lenovo"    "HP"       
##  [393,] "Google" "Apple"     "Disney"    "Lenovo"    "Meta"     
##  [394,] "Google" "Apple"     "Disney"    "Lenovo"    "Microsoft"
##  [395,] "Google" "Apple"     "Disney"    "Lenovo"    "Netflix"  
##  [396,] "Google" "Apple"     "Disney"    "Lenovo"    "Steam"    
##  [397,] "Google" "Apple"     "Disney"    "Meta"      "Amazon"   
##  [398,] "Google" "Apple"     "Disney"    "Meta"      "HP"       
##  [399,] "Google" "Apple"     "Disney"    "Meta"      "Lenovo"   
##  [400,] "Google" "Apple"     "Disney"    "Meta"      "Microsoft"
##  [401,] "Google" "Apple"     "Disney"    "Meta"      "Netflix"  
##  [402,] "Google" "Apple"     "Disney"    "Meta"      "Steam"    
##  [403,] "Google" "Apple"     "Disney"    "Microsoft" "Amazon"   
##  [404,] "Google" "Apple"     "Disney"    "Microsoft" "HP"       
##  [405,] "Google" "Apple"     "Disney"    "Microsoft" "Lenovo"   
##  [406,] "Google" "Apple"     "Disney"    "Microsoft" "Meta"     
##  [407,] "Google" "Apple"     "Disney"    "Microsoft" "Netflix"  
##  [408,] "Google" "Apple"     "Disney"    "Microsoft" "Steam"    
##  [409,] "Google" "Apple"     "Disney"    "Netflix"   "Amazon"   
##  [410,] "Google" "Apple"     "Disney"    "Netflix"   "HP"       
##  [411,] "Google" "Apple"     "Disney"    "Netflix"   "Lenovo"   
##  [412,] "Google" "Apple"     "Disney"    "Netflix"   "Meta"     
##  [413,] "Google" "Apple"     "Disney"    "Netflix"   "Microsoft"
##  [414,] "Google" "Apple"     "Disney"    "Netflix"   "Steam"    
##  [415,] "Google" "Apple"     "Disney"    "Steam"     "Amazon"   
##  [416,] "Google" "Apple"     "Disney"    "Steam"     "HP"       
##  [417,] "Google" "Apple"     "Disney"    "Steam"     "Lenovo"   
##  [418,] "Google" "Apple"     "Disney"    "Steam"     "Meta"     
##  [419,] "Google" "Apple"     "Disney"    "Steam"     "Microsoft"
##  [420,] "Google" "Apple"     "Disney"    "Steam"     "Netflix"  
##  [421,] "Google" "Apple"     "HP"        "Amazon"    "Disney"   
##  [422,] "Google" "Apple"     "HP"        "Amazon"    "Lenovo"   
##  [423,] "Google" "Apple"     "HP"        "Amazon"    "Meta"     
##  [424,] "Google" "Apple"     "HP"        "Amazon"    "Microsoft"
##  [425,] "Google" "Apple"     "HP"        "Amazon"    "Netflix"  
##  [426,] "Google" "Apple"     "HP"        "Amazon"    "Steam"    
##  [427,] "Google" "Apple"     "HP"        "Disney"    "Amazon"   
##  [428,] "Google" "Apple"     "HP"        "Disney"    "Lenovo"   
##  [429,] "Google" "Apple"     "HP"        "Disney"    "Meta"     
##  [430,] "Google" "Apple"     "HP"        "Disney"    "Microsoft"
##  [431,] "Google" "Apple"     "HP"        "Disney"    "Netflix"  
##  [432,] "Google" "Apple"     "HP"        "Disney"    "Steam"    
##  [433,] "Google" "Apple"     "HP"        "Lenovo"    "Amazon"   
##  [434,] "Google" "Apple"     "HP"        "Lenovo"    "Disney"   
##  [435,] "Google" "Apple"     "HP"        "Lenovo"    "Meta"     
##  [436,] "Google" "Apple"     "HP"        "Lenovo"    "Microsoft"
##  [437,] "Google" "Apple"     "HP"        "Lenovo"    "Netflix"  
##  [438,] "Google" "Apple"     "HP"        "Lenovo"    "Steam"    
##  [439,] "Google" "Apple"     "HP"        "Meta"      "Amazon"   
##  [440,] "Google" "Apple"     "HP"        "Meta"      "Disney"   
##  [441,] "Google" "Apple"     "HP"        "Meta"      "Lenovo"   
##  [442,] "Google" "Apple"     "HP"        "Meta"      "Microsoft"
##  [443,] "Google" "Apple"     "HP"        "Meta"      "Netflix"  
##  [444,] "Google" "Apple"     "HP"        "Meta"      "Steam"    
##  [445,] "Google" "Apple"     "HP"        "Microsoft" "Amazon"   
##  [446,] "Google" "Apple"     "HP"        "Microsoft" "Disney"   
##  [447,] "Google" "Apple"     "HP"        "Microsoft" "Lenovo"   
##  [448,] "Google" "Apple"     "HP"        "Microsoft" "Meta"     
##  [449,] "Google" "Apple"     "HP"        "Microsoft" "Netflix"  
##  [450,] "Google" "Apple"     "HP"        "Microsoft" "Steam"    
##  [451,] "Google" "Apple"     "HP"        "Netflix"   "Amazon"   
##  [452,] "Google" "Apple"     "HP"        "Netflix"   "Disney"   
##  [453,] "Google" "Apple"     "HP"        "Netflix"   "Lenovo"   
##  [454,] "Google" "Apple"     "HP"        "Netflix"   "Meta"     
##  [455,] "Google" "Apple"     "HP"        "Netflix"   "Microsoft"
##  [456,] "Google" "Apple"     "HP"        "Netflix"   "Steam"    
##  [457,] "Google" "Apple"     "HP"        "Steam"     "Amazon"   
##  [458,] "Google" "Apple"     "HP"        "Steam"     "Disney"   
##  [459,] "Google" "Apple"     "HP"        "Steam"     "Lenovo"   
##  [460,] "Google" "Apple"     "HP"        "Steam"     "Meta"     
##  [461,] "Google" "Apple"     "HP"        "Steam"     "Microsoft"
##  [462,] "Google" "Apple"     "HP"        "Steam"     "Netflix"  
##  [463,] "Google" "Apple"     "Lenovo"    "Amazon"    "Disney"   
##  [464,] "Google" "Apple"     "Lenovo"    "Amazon"    "HP"       
##  [465,] "Google" "Apple"     "Lenovo"    "Amazon"    "Meta"     
##  [466,] "Google" "Apple"     "Lenovo"    "Amazon"    "Microsoft"
##  [467,] "Google" "Apple"     "Lenovo"    "Amazon"    "Netflix"  
##  [468,] "Google" "Apple"     "Lenovo"    "Amazon"    "Steam"    
##  [469,] "Google" "Apple"     "Lenovo"    "Disney"    "Amazon"   
##  [470,] "Google" "Apple"     "Lenovo"    "Disney"    "HP"       
##  [471,] "Google" "Apple"     "Lenovo"    "Disney"    "Meta"     
##  [472,] "Google" "Apple"     "Lenovo"    "Disney"    "Microsoft"
##  [473,] "Google" "Apple"     "Lenovo"    "Disney"    "Netflix"  
##  [474,] "Google" "Apple"     "Lenovo"    "Disney"    "Steam"    
##  [475,] "Google" "Apple"     "Lenovo"    "HP"        "Amazon"   
##  [476,] "Google" "Apple"     "Lenovo"    "HP"        "Disney"   
##  [477,] "Google" "Apple"     "Lenovo"    "HP"        "Meta"     
##  [478,] "Google" "Apple"     "Lenovo"    "HP"        "Microsoft"
##  [479,] "Google" "Apple"     "Lenovo"    "HP"        "Netflix"  
##  [480,] "Google" "Apple"     "Lenovo"    "HP"        "Steam"    
##  [481,] "Google" "Apple"     "Lenovo"    "Meta"      "Amazon"   
##  [482,] "Google" "Apple"     "Lenovo"    "Meta"      "Disney"   
##  [483,] "Google" "Apple"     "Lenovo"    "Meta"      "HP"       
##  [484,] "Google" "Apple"     "Lenovo"    "Meta"      "Microsoft"
##  [485,] "Google" "Apple"     "Lenovo"    "Meta"      "Netflix"  
##  [486,] "Google" "Apple"     "Lenovo"    "Meta"      "Steam"    
##  [487,] "Google" "Apple"     "Lenovo"    "Microsoft" "Amazon"   
##  [488,] "Google" "Apple"     "Lenovo"    "Microsoft" "Disney"   
##  [489,] "Google" "Apple"     "Lenovo"    "Microsoft" "HP"       
##  [490,] "Google" "Apple"     "Lenovo"    "Microsoft" "Meta"     
##  [491,] "Google" "Apple"     "Lenovo"    "Microsoft" "Netflix"  
##  [492,] "Google" "Apple"     "Lenovo"    "Microsoft" "Steam"    
##  [493,] "Google" "Apple"     "Lenovo"    "Netflix"   "Amazon"   
##  [494,] "Google" "Apple"     "Lenovo"    "Netflix"   "Disney"   
##  [495,] "Google" "Apple"     "Lenovo"    "Netflix"   "HP"       
##  [496,] "Google" "Apple"     "Lenovo"    "Netflix"   "Meta"     
##  [497,] "Google" "Apple"     "Lenovo"    "Netflix"   "Microsoft"
##  [498,] "Google" "Apple"     "Lenovo"    "Netflix"   "Steam"    
##  [499,] "Google" "Apple"     "Lenovo"    "Steam"     "Amazon"   
##  [500,] "Google" "Apple"     "Lenovo"    "Steam"     "Disney"   
##  [501,] "Google" "Apple"     "Lenovo"    "Steam"     "HP"       
##  [502,] "Google" "Apple"     "Lenovo"    "Steam"     "Meta"     
##  [503,] "Google" "Apple"     "Lenovo"    "Steam"     "Microsoft"
##  [504,] "Google" "Apple"     "Lenovo"    "Steam"     "Netflix"  
##  [505,] "Google" "Apple"     "Meta"      "Amazon"    "Disney"   
##  [506,] "Google" "Apple"     "Meta"      "Amazon"    "HP"       
##  [507,] "Google" "Apple"     "Meta"      "Amazon"    "Lenovo"   
##  [508,] "Google" "Apple"     "Meta"      "Amazon"    "Microsoft"
##  [509,] "Google" "Apple"     "Meta"      "Amazon"    "Netflix"  
##  [510,] "Google" "Apple"     "Meta"      "Amazon"    "Steam"    
##  [511,] "Google" "Apple"     "Meta"      "Disney"    "Amazon"   
##  [512,] "Google" "Apple"     "Meta"      "Disney"    "HP"       
##  [513,] "Google" "Apple"     "Meta"      "Disney"    "Lenovo"   
##  [514,] "Google" "Apple"     "Meta"      "Disney"    "Microsoft"
##  [515,] "Google" "Apple"     "Meta"      "Disney"    "Netflix"  
##  [516,] "Google" "Apple"     "Meta"      "Disney"    "Steam"    
##  [517,] "Google" "Apple"     "Meta"      "HP"        "Amazon"   
##  [518,] "Google" "Apple"     "Meta"      "HP"        "Disney"   
##  [519,] "Google" "Apple"     "Meta"      "HP"        "Lenovo"   
##  [520,] "Google" "Apple"     "Meta"      "HP"        "Microsoft"
##  [521,] "Google" "Apple"     "Meta"      "HP"        "Netflix"  
##  [522,] "Google" "Apple"     "Meta"      "HP"        "Steam"    
##  [523,] "Google" "Apple"     "Meta"      "Lenovo"    "Amazon"   
##  [524,] "Google" "Apple"     "Meta"      "Lenovo"    "Disney"   
##  [525,] "Google" "Apple"     "Meta"      "Lenovo"    "HP"       
##  [526,] "Google" "Apple"     "Meta"      "Lenovo"    "Microsoft"
##  [527,] "Google" "Apple"     "Meta"      "Lenovo"    "Netflix"  
##  [528,] "Google" "Apple"     "Meta"      "Lenovo"    "Steam"    
##  [529,] "Google" "Apple"     "Meta"      "Microsoft" "Amazon"   
##  [530,] "Google" "Apple"     "Meta"      "Microsoft" "Disney"   
##  [531,] "Google" "Apple"     "Meta"      "Microsoft" "HP"       
##  [532,] "Google" "Apple"     "Meta"      "Microsoft" "Lenovo"   
##  [533,] "Google" "Apple"     "Meta"      "Microsoft" "Netflix"  
##  [534,] "Google" "Apple"     "Meta"      "Microsoft" "Steam"    
##  [535,] "Google" "Apple"     "Meta"      "Netflix"   "Amazon"   
##  [536,] "Google" "Apple"     "Meta"      "Netflix"   "Disney"   
##  [537,] "Google" "Apple"     "Meta"      "Netflix"   "HP"       
##  [538,] "Google" "Apple"     "Meta"      "Netflix"   "Lenovo"   
##  [539,] "Google" "Apple"     "Meta"      "Netflix"   "Microsoft"
##  [540,] "Google" "Apple"     "Meta"      "Netflix"   "Steam"    
##  [541,] "Google" "Apple"     "Meta"      "Steam"     "Amazon"   
##  [542,] "Google" "Apple"     "Meta"      "Steam"     "Disney"   
##  [543,] "Google" "Apple"     "Meta"      "Steam"     "HP"       
##  [544,] "Google" "Apple"     "Meta"      "Steam"     "Lenovo"   
##  [545,] "Google" "Apple"     "Meta"      "Steam"     "Microsoft"
##  [546,] "Google" "Apple"     "Meta"      "Steam"     "Netflix"  
##  [547,] "Google" "Apple"     "Microsoft" "Amazon"    "Disney"   
##  [548,] "Google" "Apple"     "Microsoft" "Amazon"    "HP"       
##  [549,] "Google" "Apple"     "Microsoft" "Amazon"    "Lenovo"   
##  [550,] "Google" "Apple"     "Microsoft" "Amazon"    "Meta"     
##  [551,] "Google" "Apple"     "Microsoft" "Amazon"    "Netflix"  
##  [552,] "Google" "Apple"     "Microsoft" "Amazon"    "Steam"    
##  [553,] "Google" "Apple"     "Microsoft" "Disney"    "Amazon"   
##  [554,] "Google" "Apple"     "Microsoft" "Disney"    "HP"       
##  [555,] "Google" "Apple"     "Microsoft" "Disney"    "Lenovo"   
##  [556,] "Google" "Apple"     "Microsoft" "Disney"    "Meta"     
##  [557,] "Google" "Apple"     "Microsoft" "Disney"    "Netflix"  
##  [558,] "Google" "Apple"     "Microsoft" "Disney"    "Steam"    
##  [559,] "Google" "Apple"     "Microsoft" "HP"        "Amazon"   
##  [560,] "Google" "Apple"     "Microsoft" "HP"        "Disney"   
##  [561,] "Google" "Apple"     "Microsoft" "HP"        "Lenovo"   
##  [562,] "Google" "Apple"     "Microsoft" "HP"        "Meta"     
##  [563,] "Google" "Apple"     "Microsoft" "HP"        "Netflix"  
##  [564,] "Google" "Apple"     "Microsoft" "HP"        "Steam"    
##  [565,] "Google" "Apple"     "Microsoft" "Lenovo"    "Amazon"   
##  [566,] "Google" "Apple"     "Microsoft" "Lenovo"    "Disney"   
##  [567,] "Google" "Apple"     "Microsoft" "Lenovo"    "HP"       
##  [568,] "Google" "Apple"     "Microsoft" "Lenovo"    "Meta"     
##  [569,] "Google" "Apple"     "Microsoft" "Lenovo"    "Netflix"  
##  [570,] "Google" "Apple"     "Microsoft" "Lenovo"    "Steam"    
##  [571,] "Google" "Apple"     "Microsoft" "Meta"      "Amazon"   
##  [572,] "Google" "Apple"     "Microsoft" "Meta"      "Disney"   
##  [573,] "Google" "Apple"     "Microsoft" "Meta"      "HP"       
##  [574,] "Google" "Apple"     "Microsoft" "Meta"      "Lenovo"   
##  [575,] "Google" "Apple"     "Microsoft" "Meta"      "Netflix"  
##  [576,] "Google" "Apple"     "Microsoft" "Meta"      "Steam"    
##  [577,] "Google" "Apple"     "Microsoft" "Netflix"   "Amazon"   
##  [578,] "Google" "Apple"     "Microsoft" "Netflix"   "Disney"   
##  [579,] "Google" "Apple"     "Microsoft" "Netflix"   "HP"       
##  [580,] "Google" "Apple"     "Microsoft" "Netflix"   "Lenovo"   
##  [581,] "Google" "Apple"     "Microsoft" "Netflix"   "Meta"     
##  [582,] "Google" "Apple"     "Microsoft" "Netflix"   "Steam"    
##  [583,] "Google" "Apple"     "Microsoft" "Steam"     "Amazon"   
##  [584,] "Google" "Apple"     "Microsoft" "Steam"     "Disney"   
##  [585,] "Google" "Apple"     "Microsoft" "Steam"     "HP"       
##  [586,] "Google" "Apple"     "Microsoft" "Steam"     "Lenovo"   
##  [587,] "Google" "Apple"     "Microsoft" "Steam"     "Meta"     
##  [588,] "Google" "Apple"     "Microsoft" "Steam"     "Netflix"  
##  [589,] "Google" "Apple"     "Netflix"   "Amazon"    "Disney"   
##  [590,] "Google" "Apple"     "Netflix"   "Amazon"    "HP"       
##  [591,] "Google" "Apple"     "Netflix"   "Amazon"    "Lenovo"   
##  [592,] "Google" "Apple"     "Netflix"   "Amazon"    "Meta"     
##  [593,] "Google" "Apple"     "Netflix"   "Amazon"    "Microsoft"
##  [594,] "Google" "Apple"     "Netflix"   "Amazon"    "Steam"    
##  [595,] "Google" "Apple"     "Netflix"   "Disney"    "Amazon"   
##  [596,] "Google" "Apple"     "Netflix"   "Disney"    "HP"       
##  [597,] "Google" "Apple"     "Netflix"   "Disney"    "Lenovo"   
##  [598,] "Google" "Apple"     "Netflix"   "Disney"    "Meta"     
##  [599,] "Google" "Apple"     "Netflix"   "Disney"    "Microsoft"
##  [600,] "Google" "Apple"     "Netflix"   "Disney"    "Steam"    
##  [601,] "Google" "Apple"     "Netflix"   "HP"        "Amazon"   
##  [602,] "Google" "Apple"     "Netflix"   "HP"        "Disney"   
##  [603,] "Google" "Apple"     "Netflix"   "HP"        "Lenovo"   
##  [604,] "Google" "Apple"     "Netflix"   "HP"        "Meta"     
##  [605,] "Google" "Apple"     "Netflix"   "HP"        "Microsoft"
##  [606,] "Google" "Apple"     "Netflix"   "HP"        "Steam"    
##  [607,] "Google" "Apple"     "Netflix"   "Lenovo"    "Amazon"   
##  [608,] "Google" "Apple"     "Netflix"   "Lenovo"    "Disney"   
##  [609,] "Google" "Apple"     "Netflix"   "Lenovo"    "HP"       
##  [610,] "Google" "Apple"     "Netflix"   "Lenovo"    "Meta"     
##  [611,] "Google" "Apple"     "Netflix"   "Lenovo"    "Microsoft"
##  [612,] "Google" "Apple"     "Netflix"   "Lenovo"    "Steam"    
##  [613,] "Google" "Apple"     "Netflix"   "Meta"      "Amazon"   
##  [614,] "Google" "Apple"     "Netflix"   "Meta"      "Disney"   
##  [615,] "Google" "Apple"     "Netflix"   "Meta"      "HP"       
##  [616,] "Google" "Apple"     "Netflix"   "Meta"      "Lenovo"   
##  [617,] "Google" "Apple"     "Netflix"   "Meta"      "Microsoft"
##  [618,] "Google" "Apple"     "Netflix"   "Meta"      "Steam"    
##  [619,] "Google" "Apple"     "Netflix"   "Microsoft" "Amazon"   
##  [620,] "Google" "Apple"     "Netflix"   "Microsoft" "Disney"   
##  [621,] "Google" "Apple"     "Netflix"   "Microsoft" "HP"       
##  [622,] "Google" "Apple"     "Netflix"   "Microsoft" "Lenovo"   
##  [623,] "Google" "Apple"     "Netflix"   "Microsoft" "Meta"     
##  [624,] "Google" "Apple"     "Netflix"   "Microsoft" "Steam"    
##  [625,] "Google" "Apple"     "Netflix"   "Steam"     "Amazon"   
##  [626,] "Google" "Apple"     "Netflix"   "Steam"     "Disney"   
##  [627,] "Google" "Apple"     "Netflix"   "Steam"     "HP"       
##  [628,] "Google" "Apple"     "Netflix"   "Steam"     "Lenovo"   
##  [629,] "Google" "Apple"     "Netflix"   "Steam"     "Meta"     
##  [630,] "Google" "Apple"     "Netflix"   "Steam"     "Microsoft"
##  [631,] "Google" "Apple"     "Steam"     "Amazon"    "Disney"   
##  [632,] "Google" "Apple"     "Steam"     "Amazon"    "HP"       
##  [633,] "Google" "Apple"     "Steam"     "Amazon"    "Lenovo"   
##  [634,] "Google" "Apple"     "Steam"     "Amazon"    "Meta"     
##  [635,] "Google" "Apple"     "Steam"     "Amazon"    "Microsoft"
##  [636,] "Google" "Apple"     "Steam"     "Amazon"    "Netflix"  
##  [637,] "Google" "Apple"     "Steam"     "Disney"    "Amazon"   
##  [638,] "Google" "Apple"     "Steam"     "Disney"    "HP"       
##  [639,] "Google" "Apple"     "Steam"     "Disney"    "Lenovo"   
##  [640,] "Google" "Apple"     "Steam"     "Disney"    "Meta"     
##  [641,] "Google" "Apple"     "Steam"     "Disney"    "Microsoft"
##  [642,] "Google" "Apple"     "Steam"     "Disney"    "Netflix"  
##  [643,] "Google" "Apple"     "Steam"     "HP"        "Amazon"   
##  [644,] "Google" "Apple"     "Steam"     "HP"        "Disney"   
##  [645,] "Google" "Apple"     "Steam"     "HP"        "Lenovo"   
##  [646,] "Google" "Apple"     "Steam"     "HP"        "Meta"     
##  [647,] "Google" "Apple"     "Steam"     "HP"        "Microsoft"
##  [648,] "Google" "Apple"     "Steam"     "HP"        "Netflix"  
##  [649,] "Google" "Apple"     "Steam"     "Lenovo"    "Amazon"   
##  [650,] "Google" "Apple"     "Steam"     "Lenovo"    "Disney"   
##  [651,] "Google" "Apple"     "Steam"     "Lenovo"    "HP"       
##  [652,] "Google" "Apple"     "Steam"     "Lenovo"    "Meta"     
##  [653,] "Google" "Apple"     "Steam"     "Lenovo"    "Microsoft"
##  [654,] "Google" "Apple"     "Steam"     "Lenovo"    "Netflix"  
##  [655,] "Google" "Apple"     "Steam"     "Meta"      "Amazon"   
##  [656,] "Google" "Apple"     "Steam"     "Meta"      "Disney"   
##  [657,] "Google" "Apple"     "Steam"     "Meta"      "HP"       
##  [658,] "Google" "Apple"     "Steam"     "Meta"      "Lenovo"   
##  [659,] "Google" "Apple"     "Steam"     "Meta"      "Microsoft"
##  [660,] "Google" "Apple"     "Steam"     "Meta"      "Netflix"  
##  [661,] "Google" "Apple"     "Steam"     "Microsoft" "Amazon"   
##  [662,] "Google" "Apple"     "Steam"     "Microsoft" "Disney"   
##  [663,] "Google" "Apple"     "Steam"     "Microsoft" "HP"       
##  [664,] "Google" "Apple"     "Steam"     "Microsoft" "Lenovo"   
##  [665,] "Google" "Apple"     "Steam"     "Microsoft" "Meta"     
##  [666,] "Google" "Apple"     "Steam"     "Microsoft" "Netflix"  
##  [667,] "Google" "Apple"     "Steam"     "Netflix"   "Amazon"   
##  [668,] "Google" "Apple"     "Steam"     "Netflix"   "Disney"   
##  [669,] "Google" "Apple"     "Steam"     "Netflix"   "HP"       
##  [670,] "Google" "Apple"     "Steam"     "Netflix"   "Lenovo"   
##  [671,] "Google" "Apple"     "Steam"     "Netflix"   "Meta"     
##  [672,] "Google" "Apple"     "Steam"     "Netflix"   "Microsoft"
##  [673,] "Google" "Disney"    "Amazon"    "Apple"     "HP"       
##  [674,] "Google" "Disney"    "Amazon"    "Apple"     "Lenovo"   
##  [675,] "Google" "Disney"    "Amazon"    "Apple"     "Meta"     
##  [676,] "Google" "Disney"    "Amazon"    "Apple"     "Microsoft"
##  [677,] "Google" "Disney"    "Amazon"    "Apple"     "Netflix"  
##  [678,] "Google" "Disney"    "Amazon"    "Apple"     "Steam"    
##  [679,] "Google" "Disney"    "Amazon"    "HP"        "Apple"    
##  [680,] "Google" "Disney"    "Amazon"    "HP"        "Lenovo"   
##  [681,] "Google" "Disney"    "Amazon"    "HP"        "Meta"     
##  [682,] "Google" "Disney"    "Amazon"    "HP"        "Microsoft"
##  [683,] "Google" "Disney"    "Amazon"    "HP"        "Netflix"  
##  [684,] "Google" "Disney"    "Amazon"    "HP"        "Steam"    
##  [685,] "Google" "Disney"    "Amazon"    "Lenovo"    "Apple"    
##  [686,] "Google" "Disney"    "Amazon"    "Lenovo"    "HP"       
##  [687,] "Google" "Disney"    "Amazon"    "Lenovo"    "Meta"     
##  [688,] "Google" "Disney"    "Amazon"    "Lenovo"    "Microsoft"
##  [689,] "Google" "Disney"    "Amazon"    "Lenovo"    "Netflix"  
##  [690,] "Google" "Disney"    "Amazon"    "Lenovo"    "Steam"    
##  [691,] "Google" "Disney"    "Amazon"    "Meta"      "Apple"    
##  [692,] "Google" "Disney"    "Amazon"    "Meta"      "HP"       
##  [693,] "Google" "Disney"    "Amazon"    "Meta"      "Lenovo"   
##  [694,] "Google" "Disney"    "Amazon"    "Meta"      "Microsoft"
##  [695,] "Google" "Disney"    "Amazon"    "Meta"      "Netflix"  
##  [696,] "Google" "Disney"    "Amazon"    "Meta"      "Steam"    
##  [697,] "Google" "Disney"    "Amazon"    "Microsoft" "Apple"    
##  [698,] "Google" "Disney"    "Amazon"    "Microsoft" "HP"       
##  [699,] "Google" "Disney"    "Amazon"    "Microsoft" "Lenovo"   
##  [700,] "Google" "Disney"    "Amazon"    "Microsoft" "Meta"     
##  [701,] "Google" "Disney"    "Amazon"    "Microsoft" "Netflix"  
##  [702,] "Google" "Disney"    "Amazon"    "Microsoft" "Steam"    
##  [703,] "Google" "Disney"    "Amazon"    "Netflix"   "Apple"    
##  [704,] "Google" "Disney"    "Amazon"    "Netflix"   "HP"       
##  [705,] "Google" "Disney"    "Amazon"    "Netflix"   "Lenovo"   
##  [706,] "Google" "Disney"    "Amazon"    "Netflix"   "Meta"     
##  [707,] "Google" "Disney"    "Amazon"    "Netflix"   "Microsoft"
##  [708,] "Google" "Disney"    "Amazon"    "Netflix"   "Steam"    
##  [709,] "Google" "Disney"    "Amazon"    "Steam"     "Apple"    
##  [710,] "Google" "Disney"    "Amazon"    "Steam"     "HP"       
##  [711,] "Google" "Disney"    "Amazon"    "Steam"     "Lenovo"   
##  [712,] "Google" "Disney"    "Amazon"    "Steam"     "Meta"     
##  [713,] "Google" "Disney"    "Amazon"    "Steam"     "Microsoft"
##  [714,] "Google" "Disney"    "Amazon"    "Steam"     "Netflix"  
##  [715,] "Google" "Disney"    "Apple"     "Amazon"    "HP"       
##  [716,] "Google" "Disney"    "Apple"     "Amazon"    "Lenovo"   
##  [717,] "Google" "Disney"    "Apple"     "Amazon"    "Meta"     
##  [718,] "Google" "Disney"    "Apple"     "Amazon"    "Microsoft"
##  [719,] "Google" "Disney"    "Apple"     "Amazon"    "Netflix"  
##  [720,] "Google" "Disney"    "Apple"     "Amazon"    "Steam"    
##  [721,] "Google" "Disney"    "Apple"     "HP"        "Amazon"   
##  [722,] "Google" "Disney"    "Apple"     "HP"        "Lenovo"   
##  [723,] "Google" "Disney"    "Apple"     "HP"        "Meta"     
##  [724,] "Google" "Disney"    "Apple"     "HP"        "Microsoft"
##  [725,] "Google" "Disney"    "Apple"     "HP"        "Netflix"  
##  [726,] "Google" "Disney"    "Apple"     "HP"        "Steam"    
##  [727,] "Google" "Disney"    "Apple"     "Lenovo"    "Amazon"   
##  [728,] "Google" "Disney"    "Apple"     "Lenovo"    "HP"       
##  [729,] "Google" "Disney"    "Apple"     "Lenovo"    "Meta"     
##  [730,] "Google" "Disney"    "Apple"     "Lenovo"    "Microsoft"
##  [731,] "Google" "Disney"    "Apple"     "Lenovo"    "Netflix"  
##  [732,] "Google" "Disney"    "Apple"     "Lenovo"    "Steam"    
##  [733,] "Google" "Disney"    "Apple"     "Meta"      "Amazon"   
##  [734,] "Google" "Disney"    "Apple"     "Meta"      "HP"       
##  [735,] "Google" "Disney"    "Apple"     "Meta"      "Lenovo"   
##  [736,] "Google" "Disney"    "Apple"     "Meta"      "Microsoft"
##  [737,] "Google" "Disney"    "Apple"     "Meta"      "Netflix"  
##  [738,] "Google" "Disney"    "Apple"     "Meta"      "Steam"    
##  [739,] "Google" "Disney"    "Apple"     "Microsoft" "Amazon"   
##  [740,] "Google" "Disney"    "Apple"     "Microsoft" "HP"       
##  [741,] "Google" "Disney"    "Apple"     "Microsoft" "Lenovo"   
##  [742,] "Google" "Disney"    "Apple"     "Microsoft" "Meta"     
##  [743,] "Google" "Disney"    "Apple"     "Microsoft" "Netflix"  
##  [744,] "Google" "Disney"    "Apple"     "Microsoft" "Steam"    
##  [745,] "Google" "Disney"    "Apple"     "Netflix"   "Amazon"   
##  [746,] "Google" "Disney"    "Apple"     "Netflix"   "HP"       
##  [747,] "Google" "Disney"    "Apple"     "Netflix"   "Lenovo"   
##  [748,] "Google" "Disney"    "Apple"     "Netflix"   "Meta"     
##  [749,] "Google" "Disney"    "Apple"     "Netflix"   "Microsoft"
##  [750,] "Google" "Disney"    "Apple"     "Netflix"   "Steam"    
##  [751,] "Google" "Disney"    "Apple"     "Steam"     "Amazon"   
##  [752,] "Google" "Disney"    "Apple"     "Steam"     "HP"       
##  [753,] "Google" "Disney"    "Apple"     "Steam"     "Lenovo"   
##  [754,] "Google" "Disney"    "Apple"     "Steam"     "Meta"     
##  [755,] "Google" "Disney"    "Apple"     "Steam"     "Microsoft"
##  [756,] "Google" "Disney"    "Apple"     "Steam"     "Netflix"  
##  [757,] "Google" "Disney"    "HP"        "Amazon"    "Apple"    
##  [758,] "Google" "Disney"    "HP"        "Amazon"    "Lenovo"   
##  [759,] "Google" "Disney"    "HP"        "Amazon"    "Meta"     
##  [760,] "Google" "Disney"    "HP"        "Amazon"    "Microsoft"
##  [761,] "Google" "Disney"    "HP"        "Amazon"    "Netflix"  
##  [762,] "Google" "Disney"    "HP"        "Amazon"    "Steam"    
##  [763,] "Google" "Disney"    "HP"        "Apple"     "Amazon"   
##  [764,] "Google" "Disney"    "HP"        "Apple"     "Lenovo"   
##  [765,] "Google" "Disney"    "HP"        "Apple"     "Meta"     
##  [766,] "Google" "Disney"    "HP"        "Apple"     "Microsoft"
##  [767,] "Google" "Disney"    "HP"        "Apple"     "Netflix"  
##  [768,] "Google" "Disney"    "HP"        "Apple"     "Steam"    
##  [769,] "Google" "Disney"    "HP"        "Lenovo"    "Amazon"   
##  [770,] "Google" "Disney"    "HP"        "Lenovo"    "Apple"    
##  [771,] "Google" "Disney"    "HP"        "Lenovo"    "Meta"     
##  [772,] "Google" "Disney"    "HP"        "Lenovo"    "Microsoft"
##  [773,] "Google" "Disney"    "HP"        "Lenovo"    "Netflix"  
##  [774,] "Google" "Disney"    "HP"        "Lenovo"    "Steam"    
##  [775,] "Google" "Disney"    "HP"        "Meta"      "Amazon"   
##  [776,] "Google" "Disney"    "HP"        "Meta"      "Apple"    
##  [777,] "Google" "Disney"    "HP"        "Meta"      "Lenovo"   
##  [778,] "Google" "Disney"    "HP"        "Meta"      "Microsoft"
##  [779,] "Google" "Disney"    "HP"        "Meta"      "Netflix"  
##  [780,] "Google" "Disney"    "HP"        "Meta"      "Steam"    
##  [781,] "Google" "Disney"    "HP"        "Microsoft" "Amazon"   
##  [782,] "Google" "Disney"    "HP"        "Microsoft" "Apple"    
##  [783,] "Google" "Disney"    "HP"        "Microsoft" "Lenovo"   
##  [784,] "Google" "Disney"    "HP"        "Microsoft" "Meta"     
##  [785,] "Google" "Disney"    "HP"        "Microsoft" "Netflix"  
##  [786,] "Google" "Disney"    "HP"        "Microsoft" "Steam"    
##  [787,] "Google" "Disney"    "HP"        "Netflix"   "Amazon"   
##  [788,] "Google" "Disney"    "HP"        "Netflix"   "Apple"    
##  [789,] "Google" "Disney"    "HP"        "Netflix"   "Lenovo"   
##  [790,] "Google" "Disney"    "HP"        "Netflix"   "Meta"     
##  [791,] "Google" "Disney"    "HP"        "Netflix"   "Microsoft"
##  [792,] "Google" "Disney"    "HP"        "Netflix"   "Steam"    
##  [793,] "Google" "Disney"    "HP"        "Steam"     "Amazon"   
##  [794,] "Google" "Disney"    "HP"        "Steam"     "Apple"    
##  [795,] "Google" "Disney"    "HP"        "Steam"     "Lenovo"   
##  [796,] "Google" "Disney"    "HP"        "Steam"     "Meta"     
##  [797,] "Google" "Disney"    "HP"        "Steam"     "Microsoft"
##  [798,] "Google" "Disney"    "HP"        "Steam"     "Netflix"  
##  [799,] "Google" "Disney"    "Lenovo"    "Amazon"    "Apple"    
##  [800,] "Google" "Disney"    "Lenovo"    "Amazon"    "HP"       
##  [801,] "Google" "Disney"    "Lenovo"    "Amazon"    "Meta"     
##  [802,] "Google" "Disney"    "Lenovo"    "Amazon"    "Microsoft"
##  [803,] "Google" "Disney"    "Lenovo"    "Amazon"    "Netflix"  
##  [804,] "Google" "Disney"    "Lenovo"    "Amazon"    "Steam"    
##  [805,] "Google" "Disney"    "Lenovo"    "Apple"     "Amazon"   
##  [806,] "Google" "Disney"    "Lenovo"    "Apple"     "HP"       
##  [807,] "Google" "Disney"    "Lenovo"    "Apple"     "Meta"     
##  [808,] "Google" "Disney"    "Lenovo"    "Apple"     "Microsoft"
##  [809,] "Google" "Disney"    "Lenovo"    "Apple"     "Netflix"  
##  [810,] "Google" "Disney"    "Lenovo"    "Apple"     "Steam"    
##  [811,] "Google" "Disney"    "Lenovo"    "HP"        "Amazon"   
##  [812,] "Google" "Disney"    "Lenovo"    "HP"        "Apple"    
##  [813,] "Google" "Disney"    "Lenovo"    "HP"        "Meta"     
##  [814,] "Google" "Disney"    "Lenovo"    "HP"        "Microsoft"
##  [815,] "Google" "Disney"    "Lenovo"    "HP"        "Netflix"  
##  [816,] "Google" "Disney"    "Lenovo"    "HP"        "Steam"    
##  [817,] "Google" "Disney"    "Lenovo"    "Meta"      "Amazon"   
##  [818,] "Google" "Disney"    "Lenovo"    "Meta"      "Apple"    
##  [819,] "Google" "Disney"    "Lenovo"    "Meta"      "HP"       
##  [820,] "Google" "Disney"    "Lenovo"    "Meta"      "Microsoft"
##  [821,] "Google" "Disney"    "Lenovo"    "Meta"      "Netflix"  
##  [822,] "Google" "Disney"    "Lenovo"    "Meta"      "Steam"    
##  [823,] "Google" "Disney"    "Lenovo"    "Microsoft" "Amazon"   
##  [824,] "Google" "Disney"    "Lenovo"    "Microsoft" "Apple"    
##  [825,] "Google" "Disney"    "Lenovo"    "Microsoft" "HP"       
##  [826,] "Google" "Disney"    "Lenovo"    "Microsoft" "Meta"     
##  [827,] "Google" "Disney"    "Lenovo"    "Microsoft" "Netflix"  
##  [828,] "Google" "Disney"    "Lenovo"    "Microsoft" "Steam"    
##  [829,] "Google" "Disney"    "Lenovo"    "Netflix"   "Amazon"   
##  [830,] "Google" "Disney"    "Lenovo"    "Netflix"   "Apple"    
##  [831,] "Google" "Disney"    "Lenovo"    "Netflix"   "HP"       
##  [832,] "Google" "Disney"    "Lenovo"    "Netflix"   "Meta"     
##  [833,] "Google" "Disney"    "Lenovo"    "Netflix"   "Microsoft"
##  [834,] "Google" "Disney"    "Lenovo"    "Netflix"   "Steam"    
##  [835,] "Google" "Disney"    "Lenovo"    "Steam"     "Amazon"   
##  [836,] "Google" "Disney"    "Lenovo"    "Steam"     "Apple"    
##  [837,] "Google" "Disney"    "Lenovo"    "Steam"     "HP"       
##  [838,] "Google" "Disney"    "Lenovo"    "Steam"     "Meta"     
##  [839,] "Google" "Disney"    "Lenovo"    "Steam"     "Microsoft"
##  [840,] "Google" "Disney"    "Lenovo"    "Steam"     "Netflix"  
##  [841,] "Google" "Disney"    "Meta"      "Amazon"    "Apple"    
##  [842,] "Google" "Disney"    "Meta"      "Amazon"    "HP"       
##  [843,] "Google" "Disney"    "Meta"      "Amazon"    "Lenovo"   
##  [844,] "Google" "Disney"    "Meta"      "Amazon"    "Microsoft"
##  [845,] "Google" "Disney"    "Meta"      "Amazon"    "Netflix"  
##  [846,] "Google" "Disney"    "Meta"      "Amazon"    "Steam"    
##  [847,] "Google" "Disney"    "Meta"      "Apple"     "Amazon"   
##  [848,] "Google" "Disney"    "Meta"      "Apple"     "HP"       
##  [849,] "Google" "Disney"    "Meta"      "Apple"     "Lenovo"   
##  [850,] "Google" "Disney"    "Meta"      "Apple"     "Microsoft"
##  [851,] "Google" "Disney"    "Meta"      "Apple"     "Netflix"  
##  [852,] "Google" "Disney"    "Meta"      "Apple"     "Steam"    
##  [853,] "Google" "Disney"    "Meta"      "HP"        "Amazon"   
##  [854,] "Google" "Disney"    "Meta"      "HP"        "Apple"    
##  [855,] "Google" "Disney"    "Meta"      "HP"        "Lenovo"   
##  [856,] "Google" "Disney"    "Meta"      "HP"        "Microsoft"
##  [857,] "Google" "Disney"    "Meta"      "HP"        "Netflix"  
##  [858,] "Google" "Disney"    "Meta"      "HP"        "Steam"    
##  [859,] "Google" "Disney"    "Meta"      "Lenovo"    "Amazon"   
##  [860,] "Google" "Disney"    "Meta"      "Lenovo"    "Apple"    
##  [861,] "Google" "Disney"    "Meta"      "Lenovo"    "HP"       
##  [862,] "Google" "Disney"    "Meta"      "Lenovo"    "Microsoft"
##  [863,] "Google" "Disney"    "Meta"      "Lenovo"    "Netflix"  
##  [864,] "Google" "Disney"    "Meta"      "Lenovo"    "Steam"    
##  [865,] "Google" "Disney"    "Meta"      "Microsoft" "Amazon"   
##  [866,] "Google" "Disney"    "Meta"      "Microsoft" "Apple"    
##  [867,] "Google" "Disney"    "Meta"      "Microsoft" "HP"       
##  [868,] "Google" "Disney"    "Meta"      "Microsoft" "Lenovo"   
##  [869,] "Google" "Disney"    "Meta"      "Microsoft" "Netflix"  
##  [870,] "Google" "Disney"    "Meta"      "Microsoft" "Steam"    
##  [871,] "Google" "Disney"    "Meta"      "Netflix"   "Amazon"   
##  [872,] "Google" "Disney"    "Meta"      "Netflix"   "Apple"    
##  [873,] "Google" "Disney"    "Meta"      "Netflix"   "HP"       
##  [874,] "Google" "Disney"    "Meta"      "Netflix"   "Lenovo"   
##  [875,] "Google" "Disney"    "Meta"      "Netflix"   "Microsoft"
##  [876,] "Google" "Disney"    "Meta"      "Netflix"   "Steam"    
##  [877,] "Google" "Disney"    "Meta"      "Steam"     "Amazon"   
##  [878,] "Google" "Disney"    "Meta"      "Steam"     "Apple"    
##  [879,] "Google" "Disney"    "Meta"      "Steam"     "HP"       
##  [880,] "Google" "Disney"    "Meta"      "Steam"     "Lenovo"   
##  [881,] "Google" "Disney"    "Meta"      "Steam"     "Microsoft"
##  [882,] "Google" "Disney"    "Meta"      "Steam"     "Netflix"  
##  [883,] "Google" "Disney"    "Microsoft" "Amazon"    "Apple"    
##  [884,] "Google" "Disney"    "Microsoft" "Amazon"    "HP"       
##  [885,] "Google" "Disney"    "Microsoft" "Amazon"    "Lenovo"   
##  [886,] "Google" "Disney"    "Microsoft" "Amazon"    "Meta"     
##  [887,] "Google" "Disney"    "Microsoft" "Amazon"    "Netflix"  
##  [888,] "Google" "Disney"    "Microsoft" "Amazon"    "Steam"    
##  [889,] "Google" "Disney"    "Microsoft" "Apple"     "Amazon"   
##  [890,] "Google" "Disney"    "Microsoft" "Apple"     "HP"       
##  [891,] "Google" "Disney"    "Microsoft" "Apple"     "Lenovo"   
##  [892,] "Google" "Disney"    "Microsoft" "Apple"     "Meta"     
##  [893,] "Google" "Disney"    "Microsoft" "Apple"     "Netflix"  
##  [894,] "Google" "Disney"    "Microsoft" "Apple"     "Steam"    
##  [895,] "Google" "Disney"    "Microsoft" "HP"        "Amazon"   
##  [896,] "Google" "Disney"    "Microsoft" "HP"        "Apple"    
##  [897,] "Google" "Disney"    "Microsoft" "HP"        "Lenovo"   
##  [898,] "Google" "Disney"    "Microsoft" "HP"        "Meta"     
##  [899,] "Google" "Disney"    "Microsoft" "HP"        "Netflix"  
##  [900,] "Google" "Disney"    "Microsoft" "HP"        "Steam"    
##  [901,] "Google" "Disney"    "Microsoft" "Lenovo"    "Amazon"   
##  [902,] "Google" "Disney"    "Microsoft" "Lenovo"    "Apple"    
##  [903,] "Google" "Disney"    "Microsoft" "Lenovo"    "HP"       
##  [904,] "Google" "Disney"    "Microsoft" "Lenovo"    "Meta"     
##  [905,] "Google" "Disney"    "Microsoft" "Lenovo"    "Netflix"  
##  [906,] "Google" "Disney"    "Microsoft" "Lenovo"    "Steam"    
##  [907,] "Google" "Disney"    "Microsoft" "Meta"      "Amazon"   
##  [908,] "Google" "Disney"    "Microsoft" "Meta"      "Apple"    
##  [909,] "Google" "Disney"    "Microsoft" "Meta"      "HP"       
##  [910,] "Google" "Disney"    "Microsoft" "Meta"      "Lenovo"   
##  [911,] "Google" "Disney"    "Microsoft" "Meta"      "Netflix"  
##  [912,] "Google" "Disney"    "Microsoft" "Meta"      "Steam"    
##  [913,] "Google" "Disney"    "Microsoft" "Netflix"   "Amazon"   
##  [914,] "Google" "Disney"    "Microsoft" "Netflix"   "Apple"    
##  [915,] "Google" "Disney"    "Microsoft" "Netflix"   "HP"       
##  [916,] "Google" "Disney"    "Microsoft" "Netflix"   "Lenovo"   
##  [917,] "Google" "Disney"    "Microsoft" "Netflix"   "Meta"     
##  [918,] "Google" "Disney"    "Microsoft" "Netflix"   "Steam"    
##  [919,] "Google" "Disney"    "Microsoft" "Steam"     "Amazon"   
##  [920,] "Google" "Disney"    "Microsoft" "Steam"     "Apple"    
##  [921,] "Google" "Disney"    "Microsoft" "Steam"     "HP"       
##  [922,] "Google" "Disney"    "Microsoft" "Steam"     "Lenovo"   
##  [923,] "Google" "Disney"    "Microsoft" "Steam"     "Meta"     
##  [924,] "Google" "Disney"    "Microsoft" "Steam"     "Netflix"  
##  [925,] "Google" "Disney"    "Netflix"   "Amazon"    "Apple"    
##  [926,] "Google" "Disney"    "Netflix"   "Amazon"    "HP"       
##  [927,] "Google" "Disney"    "Netflix"   "Amazon"    "Lenovo"   
##  [928,] "Google" "Disney"    "Netflix"   "Amazon"    "Meta"     
##  [929,] "Google" "Disney"    "Netflix"   "Amazon"    "Microsoft"
##  [930,] "Google" "Disney"    "Netflix"   "Amazon"    "Steam"    
##  [931,] "Google" "Disney"    "Netflix"   "Apple"     "Amazon"   
##  [932,] "Google" "Disney"    "Netflix"   "Apple"     "HP"       
##  [933,] "Google" "Disney"    "Netflix"   "Apple"     "Lenovo"   
##  [934,] "Google" "Disney"    "Netflix"   "Apple"     "Meta"     
##  [935,] "Google" "Disney"    "Netflix"   "Apple"     "Microsoft"
##  [936,] "Google" "Disney"    "Netflix"   "Apple"     "Steam"    
##  [937,] "Google" "Disney"    "Netflix"   "HP"        "Amazon"   
##  [938,] "Google" "Disney"    "Netflix"   "HP"        "Apple"    
##  [939,] "Google" "Disney"    "Netflix"   "HP"        "Lenovo"   
##  [940,] "Google" "Disney"    "Netflix"   "HP"        "Meta"     
##  [941,] "Google" "Disney"    "Netflix"   "HP"        "Microsoft"
##  [942,] "Google" "Disney"    "Netflix"   "HP"        "Steam"    
##  [943,] "Google" "Disney"    "Netflix"   "Lenovo"    "Amazon"   
##  [944,] "Google" "Disney"    "Netflix"   "Lenovo"    "Apple"    
##  [945,] "Google" "Disney"    "Netflix"   "Lenovo"    "HP"       
##  [946,] "Google" "Disney"    "Netflix"   "Lenovo"    "Meta"     
##  [947,] "Google" "Disney"    "Netflix"   "Lenovo"    "Microsoft"
##  [948,] "Google" "Disney"    "Netflix"   "Lenovo"    "Steam"    
##  [949,] "Google" "Disney"    "Netflix"   "Meta"      "Amazon"   
##  [950,] "Google" "Disney"    "Netflix"   "Meta"      "Apple"    
##  [951,] "Google" "Disney"    "Netflix"   "Meta"      "HP"       
##  [952,] "Google" "Disney"    "Netflix"   "Meta"      "Lenovo"   
##  [953,] "Google" "Disney"    "Netflix"   "Meta"      "Microsoft"
##  [954,] "Google" "Disney"    "Netflix"   "Meta"      "Steam"    
##  [955,] "Google" "Disney"    "Netflix"   "Microsoft" "Amazon"   
##  [956,] "Google" "Disney"    "Netflix"   "Microsoft" "Apple"    
##  [957,] "Google" "Disney"    "Netflix"   "Microsoft" "HP"       
##  [958,] "Google" "Disney"    "Netflix"   "Microsoft" "Lenovo"   
##  [959,] "Google" "Disney"    "Netflix"   "Microsoft" "Meta"     
##  [960,] "Google" "Disney"    "Netflix"   "Microsoft" "Steam"    
##  [961,] "Google" "Disney"    "Netflix"   "Steam"     "Amazon"   
##  [962,] "Google" "Disney"    "Netflix"   "Steam"     "Apple"    
##  [963,] "Google" "Disney"    "Netflix"   "Steam"     "HP"       
##  [964,] "Google" "Disney"    "Netflix"   "Steam"     "Lenovo"   
##  [965,] "Google" "Disney"    "Netflix"   "Steam"     "Meta"     
##  [966,] "Google" "Disney"    "Netflix"   "Steam"     "Microsoft"
##  [967,] "Google" "Disney"    "Steam"     "Amazon"    "Apple"    
##  [968,] "Google" "Disney"    "Steam"     "Amazon"    "HP"       
##  [969,] "Google" "Disney"    "Steam"     "Amazon"    "Lenovo"   
##  [970,] "Google" "Disney"    "Steam"     "Amazon"    "Meta"     
##  [971,] "Google" "Disney"    "Steam"     "Amazon"    "Microsoft"
##  [972,] "Google" "Disney"    "Steam"     "Amazon"    "Netflix"  
##  [973,] "Google" "Disney"    "Steam"     "Apple"     "Amazon"   
##  [974,] "Google" "Disney"    "Steam"     "Apple"     "HP"       
##  [975,] "Google" "Disney"    "Steam"     "Apple"     "Lenovo"   
##  [976,] "Google" "Disney"    "Steam"     "Apple"     "Meta"     
##  [977,] "Google" "Disney"    "Steam"     "Apple"     "Microsoft"
##  [978,] "Google" "Disney"    "Steam"     "Apple"     "Netflix"  
##  [979,] "Google" "Disney"    "Steam"     "HP"        "Amazon"   
##  [980,] "Google" "Disney"    "Steam"     "HP"        "Apple"    
##  [981,] "Google" "Disney"    "Steam"     "HP"        "Lenovo"   
##  [982,] "Google" "Disney"    "Steam"     "HP"        "Meta"     
##  [983,] "Google" "Disney"    "Steam"     "HP"        "Microsoft"
##  [984,] "Google" "Disney"    "Steam"     "HP"        "Netflix"  
##  [985,] "Google" "Disney"    "Steam"     "Lenovo"    "Amazon"   
##  [986,] "Google" "Disney"    "Steam"     "Lenovo"    "Apple"    
##  [987,] "Google" "Disney"    "Steam"     "Lenovo"    "HP"       
##  [988,] "Google" "Disney"    "Steam"     "Lenovo"    "Meta"     
##  [989,] "Google" "Disney"    "Steam"     "Lenovo"    "Microsoft"
##  [990,] "Google" "Disney"    "Steam"     "Lenovo"    "Netflix"  
##  [991,] "Google" "Disney"    "Steam"     "Meta"      "Amazon"   
##  [992,] "Google" "Disney"    "Steam"     "Meta"      "Apple"    
##  [993,] "Google" "Disney"    "Steam"     "Meta"      "HP"       
##  [994,] "Google" "Disney"    "Steam"     "Meta"      "Lenovo"   
##  [995,] "Google" "Disney"    "Steam"     "Meta"      "Microsoft"
##  [996,] "Google" "Disney"    "Steam"     "Meta"      "Netflix"  
##  [997,] "Google" "Disney"    "Steam"     "Microsoft" "Amazon"   
##  [998,] "Google" "Disney"    "Steam"     "Microsoft" "Apple"    
##  [999,] "Google" "Disney"    "Steam"     "Microsoft" "HP"       
## [1000,] "Google" "Disney"    "Steam"     "Microsoft" "Lenovo"   
## [1001,] "Google" "Disney"    "Steam"     "Microsoft" "Meta"     
## [1002,] "Google" "Disney"    "Steam"     "Microsoft" "Netflix"  
## [1003,] "Google" "Disney"    "Steam"     "Netflix"   "Amazon"   
## [1004,] "Google" "Disney"    "Steam"     "Netflix"   "Apple"    
## [1005,] "Google" "Disney"    "Steam"     "Netflix"   "HP"       
## [1006,] "Google" "Disney"    "Steam"     "Netflix"   "Lenovo"   
## [1007,] "Google" "Disney"    "Steam"     "Netflix"   "Meta"     
## [1008,] "Google" "Disney"    "Steam"     "Netflix"   "Microsoft"
## [1009,] "Google" "HP"        "Amazon"    "Apple"     "Disney"   
## [1010,] "Google" "HP"        "Amazon"    "Apple"     "Lenovo"   
## [1011,] "Google" "HP"        "Amazon"    "Apple"     "Meta"     
## [1012,] "Google" "HP"        "Amazon"    "Apple"     "Microsoft"
## [1013,] "Google" "HP"        "Amazon"    "Apple"     "Netflix"  
## [1014,] "Google" "HP"        "Amazon"    "Apple"     "Steam"    
## [1015,] "Google" "HP"        "Amazon"    "Disney"    "Apple"    
## [1016,] "Google" "HP"        "Amazon"    "Disney"    "Lenovo"   
## [1017,] "Google" "HP"        "Amazon"    "Disney"    "Meta"     
## [1018,] "Google" "HP"        "Amazon"    "Disney"    "Microsoft"
## [1019,] "Google" "HP"        "Amazon"    "Disney"    "Netflix"  
## [1020,] "Google" "HP"        "Amazon"    "Disney"    "Steam"    
## [1021,] "Google" "HP"        "Amazon"    "Lenovo"    "Apple"    
## [1022,] "Google" "HP"        "Amazon"    "Lenovo"    "Disney"   
## [1023,] "Google" "HP"        "Amazon"    "Lenovo"    "Meta"     
## [1024,] "Google" "HP"        "Amazon"    "Lenovo"    "Microsoft"
## [1025,] "Google" "HP"        "Amazon"    "Lenovo"    "Netflix"  
## [1026,] "Google" "HP"        "Amazon"    "Lenovo"    "Steam"    
## [1027,] "Google" "HP"        "Amazon"    "Meta"      "Apple"    
## [1028,] "Google" "HP"        "Amazon"    "Meta"      "Disney"   
## [1029,] "Google" "HP"        "Amazon"    "Meta"      "Lenovo"   
## [1030,] "Google" "HP"        "Amazon"    "Meta"      "Microsoft"
## [1031,] "Google" "HP"        "Amazon"    "Meta"      "Netflix"  
## [1032,] "Google" "HP"        "Amazon"    "Meta"      "Steam"    
## [1033,] "Google" "HP"        "Amazon"    "Microsoft" "Apple"    
## [1034,] "Google" "HP"        "Amazon"    "Microsoft" "Disney"   
## [1035,] "Google" "HP"        "Amazon"    "Microsoft" "Lenovo"   
## [1036,] "Google" "HP"        "Amazon"    "Microsoft" "Meta"     
## [1037,] "Google" "HP"        "Amazon"    "Microsoft" "Netflix"  
## [1038,] "Google" "HP"        "Amazon"    "Microsoft" "Steam"    
## [1039,] "Google" "HP"        "Amazon"    "Netflix"   "Apple"    
## [1040,] "Google" "HP"        "Amazon"    "Netflix"   "Disney"   
## [1041,] "Google" "HP"        "Amazon"    "Netflix"   "Lenovo"   
## [1042,] "Google" "HP"        "Amazon"    "Netflix"   "Meta"     
## [1043,] "Google" "HP"        "Amazon"    "Netflix"   "Microsoft"
## [1044,] "Google" "HP"        "Amazon"    "Netflix"   "Steam"    
## [1045,] "Google" "HP"        "Amazon"    "Steam"     "Apple"    
## [1046,] "Google" "HP"        "Amazon"    "Steam"     "Disney"   
## [1047,] "Google" "HP"        "Amazon"    "Steam"     "Lenovo"   
## [1048,] "Google" "HP"        "Amazon"    "Steam"     "Meta"     
## [1049,] "Google" "HP"        "Amazon"    "Steam"     "Microsoft"
## [1050,] "Google" "HP"        "Amazon"    "Steam"     "Netflix"  
## [1051,] "Google" "HP"        "Apple"     "Amazon"    "Disney"   
## [1052,] "Google" "HP"        "Apple"     "Amazon"    "Lenovo"   
## [1053,] "Google" "HP"        "Apple"     "Amazon"    "Meta"     
## [1054,] "Google" "HP"        "Apple"     "Amazon"    "Microsoft"
## [1055,] "Google" "HP"        "Apple"     "Amazon"    "Netflix"  
## [1056,] "Google" "HP"        "Apple"     "Amazon"    "Steam"    
## [1057,] "Google" "HP"        "Apple"     "Disney"    "Amazon"   
## [1058,] "Google" "HP"        "Apple"     "Disney"    "Lenovo"   
## [1059,] "Google" "HP"        "Apple"     "Disney"    "Meta"     
## [1060,] "Google" "HP"        "Apple"     "Disney"    "Microsoft"
## [1061,] "Google" "HP"        "Apple"     "Disney"    "Netflix"  
## [1062,] "Google" "HP"        "Apple"     "Disney"    "Steam"    
## [1063,] "Google" "HP"        "Apple"     "Lenovo"    "Amazon"   
## [1064,] "Google" "HP"        "Apple"     "Lenovo"    "Disney"   
## [1065,] "Google" "HP"        "Apple"     "Lenovo"    "Meta"     
## [1066,] "Google" "HP"        "Apple"     "Lenovo"    "Microsoft"
## [1067,] "Google" "HP"        "Apple"     "Lenovo"    "Netflix"  
## [1068,] "Google" "HP"        "Apple"     "Lenovo"    "Steam"    
## [1069,] "Google" "HP"        "Apple"     "Meta"      "Amazon"   
## [1070,] "Google" "HP"        "Apple"     "Meta"      "Disney"   
## [1071,] "Google" "HP"        "Apple"     "Meta"      "Lenovo"   
## [1072,] "Google" "HP"        "Apple"     "Meta"      "Microsoft"
## [1073,] "Google" "HP"        "Apple"     "Meta"      "Netflix"  
## [1074,] "Google" "HP"        "Apple"     "Meta"      "Steam"    
## [1075,] "Google" "HP"        "Apple"     "Microsoft" "Amazon"   
## [1076,] "Google" "HP"        "Apple"     "Microsoft" "Disney"   
## [1077,] "Google" "HP"        "Apple"     "Microsoft" "Lenovo"   
## [1078,] "Google" "HP"        "Apple"     "Microsoft" "Meta"     
## [1079,] "Google" "HP"        "Apple"     "Microsoft" "Netflix"  
## [1080,] "Google" "HP"        "Apple"     "Microsoft" "Steam"    
## [1081,] "Google" "HP"        "Apple"     "Netflix"   "Amazon"   
## [1082,] "Google" "HP"        "Apple"     "Netflix"   "Disney"   
## [1083,] "Google" "HP"        "Apple"     "Netflix"   "Lenovo"   
## [1084,] "Google" "HP"        "Apple"     "Netflix"   "Meta"     
## [1085,] "Google" "HP"        "Apple"     "Netflix"   "Microsoft"
## [1086,] "Google" "HP"        "Apple"     "Netflix"   "Steam"    
## [1087,] "Google" "HP"        "Apple"     "Steam"     "Amazon"   
## [1088,] "Google" "HP"        "Apple"     "Steam"     "Disney"   
## [1089,] "Google" "HP"        "Apple"     "Steam"     "Lenovo"   
## [1090,] "Google" "HP"        "Apple"     "Steam"     "Meta"     
## [1091,] "Google" "HP"        "Apple"     "Steam"     "Microsoft"
## [1092,] "Google" "HP"        "Apple"     "Steam"     "Netflix"  
## [1093,] "Google" "HP"        "Disney"    "Amazon"    "Apple"    
## [1094,] "Google" "HP"        "Disney"    "Amazon"    "Lenovo"   
## [1095,] "Google" "HP"        "Disney"    "Amazon"    "Meta"     
## [1096,] "Google" "HP"        "Disney"    "Amazon"    "Microsoft"
## [1097,] "Google" "HP"        "Disney"    "Amazon"    "Netflix"  
## [1098,] "Google" "HP"        "Disney"    "Amazon"    "Steam"    
## [1099,] "Google" "HP"        "Disney"    "Apple"     "Amazon"   
## [1100,] "Google" "HP"        "Disney"    "Apple"     "Lenovo"   
## [1101,] "Google" "HP"        "Disney"    "Apple"     "Meta"     
## [1102,] "Google" "HP"        "Disney"    "Apple"     "Microsoft"
## [1103,] "Google" "HP"        "Disney"    "Apple"     "Netflix"  
## [1104,] "Google" "HP"        "Disney"    "Apple"     "Steam"    
## [1105,] "Google" "HP"        "Disney"    "Lenovo"    "Amazon"   
## [1106,] "Google" "HP"        "Disney"    "Lenovo"    "Apple"    
## [1107,] "Google" "HP"        "Disney"    "Lenovo"    "Meta"     
## [1108,] "Google" "HP"        "Disney"    "Lenovo"    "Microsoft"
## [1109,] "Google" "HP"        "Disney"    "Lenovo"    "Netflix"  
## [1110,] "Google" "HP"        "Disney"    "Lenovo"    "Steam"    
## [1111,] "Google" "HP"        "Disney"    "Meta"      "Amazon"   
## [1112,] "Google" "HP"        "Disney"    "Meta"      "Apple"    
## [1113,] "Google" "HP"        "Disney"    "Meta"      "Lenovo"   
## [1114,] "Google" "HP"        "Disney"    "Meta"      "Microsoft"
## [1115,] "Google" "HP"        "Disney"    "Meta"      "Netflix"  
## [1116,] "Google" "HP"        "Disney"    "Meta"      "Steam"    
## [1117,] "Google" "HP"        "Disney"    "Microsoft" "Amazon"   
## [1118,] "Google" "HP"        "Disney"    "Microsoft" "Apple"    
## [1119,] "Google" "HP"        "Disney"    "Microsoft" "Lenovo"   
## [1120,] "Google" "HP"        "Disney"    "Microsoft" "Meta"     
## [1121,] "Google" "HP"        "Disney"    "Microsoft" "Netflix"  
## [1122,] "Google" "HP"        "Disney"    "Microsoft" "Steam"    
## [1123,] "Google" "HP"        "Disney"    "Netflix"   "Amazon"   
## [1124,] "Google" "HP"        "Disney"    "Netflix"   "Apple"    
## [1125,] "Google" "HP"        "Disney"    "Netflix"   "Lenovo"   
## [1126,] "Google" "HP"        "Disney"    "Netflix"   "Meta"     
## [1127,] "Google" "HP"        "Disney"    "Netflix"   "Microsoft"
## [1128,] "Google" "HP"        "Disney"    "Netflix"   "Steam"    
## [1129,] "Google" "HP"        "Disney"    "Steam"     "Amazon"   
## [1130,] "Google" "HP"        "Disney"    "Steam"     "Apple"    
## [1131,] "Google" "HP"        "Disney"    "Steam"     "Lenovo"   
## [1132,] "Google" "HP"        "Disney"    "Steam"     "Meta"     
## [1133,] "Google" "HP"        "Disney"    "Steam"     "Microsoft"
## [1134,] "Google" "HP"        "Disney"    "Steam"     "Netflix"  
## [1135,] "Google" "HP"        "Lenovo"    "Amazon"    "Apple"    
## [1136,] "Google" "HP"        "Lenovo"    "Amazon"    "Disney"   
## [1137,] "Google" "HP"        "Lenovo"    "Amazon"    "Meta"     
## [1138,] "Google" "HP"        "Lenovo"    "Amazon"    "Microsoft"
## [1139,] "Google" "HP"        "Lenovo"    "Amazon"    "Netflix"  
## [1140,] "Google" "HP"        "Lenovo"    "Amazon"    "Steam"    
## [1141,] "Google" "HP"        "Lenovo"    "Apple"     "Amazon"   
## [1142,] "Google" "HP"        "Lenovo"    "Apple"     "Disney"   
## [1143,] "Google" "HP"        "Lenovo"    "Apple"     "Meta"     
## [1144,] "Google" "HP"        "Lenovo"    "Apple"     "Microsoft"
## [1145,] "Google" "HP"        "Lenovo"    "Apple"     "Netflix"  
## [1146,] "Google" "HP"        "Lenovo"    "Apple"     "Steam"    
## [1147,] "Google" "HP"        "Lenovo"    "Disney"    "Amazon"   
## [1148,] "Google" "HP"        "Lenovo"    "Disney"    "Apple"    
## [1149,] "Google" "HP"        "Lenovo"    "Disney"    "Meta"     
## [1150,] "Google" "HP"        "Lenovo"    "Disney"    "Microsoft"
## [1151,] "Google" "HP"        "Lenovo"    "Disney"    "Netflix"  
## [1152,] "Google" "HP"        "Lenovo"    "Disney"    "Steam"    
## [1153,] "Google" "HP"        "Lenovo"    "Meta"      "Amazon"   
## [1154,] "Google" "HP"        "Lenovo"    "Meta"      "Apple"    
## [1155,] "Google" "HP"        "Lenovo"    "Meta"      "Disney"   
## [1156,] "Google" "HP"        "Lenovo"    "Meta"      "Microsoft"
## [1157,] "Google" "HP"        "Lenovo"    "Meta"      "Netflix"  
## [1158,] "Google" "HP"        "Lenovo"    "Meta"      "Steam"    
## [1159,] "Google" "HP"        "Lenovo"    "Microsoft" "Amazon"   
## [1160,] "Google" "HP"        "Lenovo"    "Microsoft" "Apple"    
## [1161,] "Google" "HP"        "Lenovo"    "Microsoft" "Disney"   
## [1162,] "Google" "HP"        "Lenovo"    "Microsoft" "Meta"     
## [1163,] "Google" "HP"        "Lenovo"    "Microsoft" "Netflix"  
## [1164,] "Google" "HP"        "Lenovo"    "Microsoft" "Steam"    
## [1165,] "Google" "HP"        "Lenovo"    "Netflix"   "Amazon"   
## [1166,] "Google" "HP"        "Lenovo"    "Netflix"   "Apple"    
## [1167,] "Google" "HP"        "Lenovo"    "Netflix"   "Disney"   
## [1168,] "Google" "HP"        "Lenovo"    "Netflix"   "Meta"     
## [1169,] "Google" "HP"        "Lenovo"    "Netflix"   "Microsoft"
## [1170,] "Google" "HP"        "Lenovo"    "Netflix"   "Steam"    
## [1171,] "Google" "HP"        "Lenovo"    "Steam"     "Amazon"   
## [1172,] "Google" "HP"        "Lenovo"    "Steam"     "Apple"    
## [1173,] "Google" "HP"        "Lenovo"    "Steam"     "Disney"   
## [1174,] "Google" "HP"        "Lenovo"    "Steam"     "Meta"     
## [1175,] "Google" "HP"        "Lenovo"    "Steam"     "Microsoft"
## [1176,] "Google" "HP"        "Lenovo"    "Steam"     "Netflix"  
## [1177,] "Google" "HP"        "Meta"      "Amazon"    "Apple"    
## [1178,] "Google" "HP"        "Meta"      "Amazon"    "Disney"   
## [1179,] "Google" "HP"        "Meta"      "Amazon"    "Lenovo"   
## [1180,] "Google" "HP"        "Meta"      "Amazon"    "Microsoft"
## [1181,] "Google" "HP"        "Meta"      "Amazon"    "Netflix"  
## [1182,] "Google" "HP"        "Meta"      "Amazon"    "Steam"    
## [1183,] "Google" "HP"        "Meta"      "Apple"     "Amazon"   
## [1184,] "Google" "HP"        "Meta"      "Apple"     "Disney"   
## [1185,] "Google" "HP"        "Meta"      "Apple"     "Lenovo"   
## [1186,] "Google" "HP"        "Meta"      "Apple"     "Microsoft"
## [1187,] "Google" "HP"        "Meta"      "Apple"     "Netflix"  
## [1188,] "Google" "HP"        "Meta"      "Apple"     "Steam"    
## [1189,] "Google" "HP"        "Meta"      "Disney"    "Amazon"   
## [1190,] "Google" "HP"        "Meta"      "Disney"    "Apple"    
## [1191,] "Google" "HP"        "Meta"      "Disney"    "Lenovo"   
## [1192,] "Google" "HP"        "Meta"      "Disney"    "Microsoft"
## [1193,] "Google" "HP"        "Meta"      "Disney"    "Netflix"  
## [1194,] "Google" "HP"        "Meta"      "Disney"    "Steam"    
## [1195,] "Google" "HP"        "Meta"      "Lenovo"    "Amazon"   
## [1196,] "Google" "HP"        "Meta"      "Lenovo"    "Apple"    
## [1197,] "Google" "HP"        "Meta"      "Lenovo"    "Disney"   
## [1198,] "Google" "HP"        "Meta"      "Lenovo"    "Microsoft"
## [1199,] "Google" "HP"        "Meta"      "Lenovo"    "Netflix"  
## [1200,] "Google" "HP"        "Meta"      "Lenovo"    "Steam"    
## [1201,] "Google" "HP"        "Meta"      "Microsoft" "Amazon"   
## [1202,] "Google" "HP"        "Meta"      "Microsoft" "Apple"    
## [1203,] "Google" "HP"        "Meta"      "Microsoft" "Disney"   
## [1204,] "Google" "HP"        "Meta"      "Microsoft" "Lenovo"   
## [1205,] "Google" "HP"        "Meta"      "Microsoft" "Netflix"  
## [1206,] "Google" "HP"        "Meta"      "Microsoft" "Steam"    
## [1207,] "Google" "HP"        "Meta"      "Netflix"   "Amazon"   
## [1208,] "Google" "HP"        "Meta"      "Netflix"   "Apple"    
## [1209,] "Google" "HP"        "Meta"      "Netflix"   "Disney"   
## [1210,] "Google" "HP"        "Meta"      "Netflix"   "Lenovo"   
## [1211,] "Google" "HP"        "Meta"      "Netflix"   "Microsoft"
## [1212,] "Google" "HP"        "Meta"      "Netflix"   "Steam"    
## [1213,] "Google" "HP"        "Meta"      "Steam"     "Amazon"   
## [1214,] "Google" "HP"        "Meta"      "Steam"     "Apple"    
## [1215,] "Google" "HP"        "Meta"      "Steam"     "Disney"   
## [1216,] "Google" "HP"        "Meta"      "Steam"     "Lenovo"   
## [1217,] "Google" "HP"        "Meta"      "Steam"     "Microsoft"
## [1218,] "Google" "HP"        "Meta"      "Steam"     "Netflix"  
## [1219,] "Google" "HP"        "Microsoft" "Amazon"    "Apple"    
## [1220,] "Google" "HP"        "Microsoft" "Amazon"    "Disney"   
## [1221,] "Google" "HP"        "Microsoft" "Amazon"    "Lenovo"   
## [1222,] "Google" "HP"        "Microsoft" "Amazon"    "Meta"     
## [1223,] "Google" "HP"        "Microsoft" "Amazon"    "Netflix"  
## [1224,] "Google" "HP"        "Microsoft" "Amazon"    "Steam"    
## [1225,] "Google" "HP"        "Microsoft" "Apple"     "Amazon"   
## [1226,] "Google" "HP"        "Microsoft" "Apple"     "Disney"   
## [1227,] "Google" "HP"        "Microsoft" "Apple"     "Lenovo"   
## [1228,] "Google" "HP"        "Microsoft" "Apple"     "Meta"     
## [1229,] "Google" "HP"        "Microsoft" "Apple"     "Netflix"  
## [1230,] "Google" "HP"        "Microsoft" "Apple"     "Steam"    
## [1231,] "Google" "HP"        "Microsoft" "Disney"    "Amazon"   
## [1232,] "Google" "HP"        "Microsoft" "Disney"    "Apple"    
## [1233,] "Google" "HP"        "Microsoft" "Disney"    "Lenovo"   
## [1234,] "Google" "HP"        "Microsoft" "Disney"    "Meta"     
## [1235,] "Google" "HP"        "Microsoft" "Disney"    "Netflix"  
## [1236,] "Google" "HP"        "Microsoft" "Disney"    "Steam"    
## [1237,] "Google" "HP"        "Microsoft" "Lenovo"    "Amazon"   
## [1238,] "Google" "HP"        "Microsoft" "Lenovo"    "Apple"    
## [1239,] "Google" "HP"        "Microsoft" "Lenovo"    "Disney"   
## [1240,] "Google" "HP"        "Microsoft" "Lenovo"    "Meta"     
## [1241,] "Google" "HP"        "Microsoft" "Lenovo"    "Netflix"  
## [1242,] "Google" "HP"        "Microsoft" "Lenovo"    "Steam"    
## [1243,] "Google" "HP"        "Microsoft" "Meta"      "Amazon"   
## [1244,] "Google" "HP"        "Microsoft" "Meta"      "Apple"    
## [1245,] "Google" "HP"        "Microsoft" "Meta"      "Disney"   
## [1246,] "Google" "HP"        "Microsoft" "Meta"      "Lenovo"   
## [1247,] "Google" "HP"        "Microsoft" "Meta"      "Netflix"  
## [1248,] "Google" "HP"        "Microsoft" "Meta"      "Steam"    
## [1249,] "Google" "HP"        "Microsoft" "Netflix"   "Amazon"   
## [1250,] "Google" "HP"        "Microsoft" "Netflix"   "Apple"    
## [1251,] "Google" "HP"        "Microsoft" "Netflix"   "Disney"   
## [1252,] "Google" "HP"        "Microsoft" "Netflix"   "Lenovo"   
## [1253,] "Google" "HP"        "Microsoft" "Netflix"   "Meta"     
## [1254,] "Google" "HP"        "Microsoft" "Netflix"   "Steam"    
## [1255,] "Google" "HP"        "Microsoft" "Steam"     "Amazon"   
## [1256,] "Google" "HP"        "Microsoft" "Steam"     "Apple"    
## [1257,] "Google" "HP"        "Microsoft" "Steam"     "Disney"   
## [1258,] "Google" "HP"        "Microsoft" "Steam"     "Lenovo"   
## [1259,] "Google" "HP"        "Microsoft" "Steam"     "Meta"     
## [1260,] "Google" "HP"        "Microsoft" "Steam"     "Netflix"  
## [1261,] "Google" "HP"        "Netflix"   "Amazon"    "Apple"    
## [1262,] "Google" "HP"        "Netflix"   "Amazon"    "Disney"   
## [1263,] "Google" "HP"        "Netflix"   "Amazon"    "Lenovo"   
## [1264,] "Google" "HP"        "Netflix"   "Amazon"    "Meta"     
## [1265,] "Google" "HP"        "Netflix"   "Amazon"    "Microsoft"
## [1266,] "Google" "HP"        "Netflix"   "Amazon"    "Steam"    
## [1267,] "Google" "HP"        "Netflix"   "Apple"     "Amazon"   
## [1268,] "Google" "HP"        "Netflix"   "Apple"     "Disney"   
## [1269,] "Google" "HP"        "Netflix"   "Apple"     "Lenovo"   
## [1270,] "Google" "HP"        "Netflix"   "Apple"     "Meta"     
## [1271,] "Google" "HP"        "Netflix"   "Apple"     "Microsoft"
## [1272,] "Google" "HP"        "Netflix"   "Apple"     "Steam"    
## [1273,] "Google" "HP"        "Netflix"   "Disney"    "Amazon"   
## [1274,] "Google" "HP"        "Netflix"   "Disney"    "Apple"    
## [1275,] "Google" "HP"        "Netflix"   "Disney"    "Lenovo"   
## [1276,] "Google" "HP"        "Netflix"   "Disney"    "Meta"     
## [1277,] "Google" "HP"        "Netflix"   "Disney"    "Microsoft"
## [1278,] "Google" "HP"        "Netflix"   "Disney"    "Steam"    
## [1279,] "Google" "HP"        "Netflix"   "Lenovo"    "Amazon"   
## [1280,] "Google" "HP"        "Netflix"   "Lenovo"    "Apple"    
## [1281,] "Google" "HP"        "Netflix"   "Lenovo"    "Disney"   
## [1282,] "Google" "HP"        "Netflix"   "Lenovo"    "Meta"     
## [1283,] "Google" "HP"        "Netflix"   "Lenovo"    "Microsoft"
## [1284,] "Google" "HP"        "Netflix"   "Lenovo"    "Steam"    
## [1285,] "Google" "HP"        "Netflix"   "Meta"      "Amazon"   
## [1286,] "Google" "HP"        "Netflix"   "Meta"      "Apple"    
## [1287,] "Google" "HP"        "Netflix"   "Meta"      "Disney"   
## [1288,] "Google" "HP"        "Netflix"   "Meta"      "Lenovo"   
## [1289,] "Google" "HP"        "Netflix"   "Meta"      "Microsoft"
## [1290,] "Google" "HP"        "Netflix"   "Meta"      "Steam"    
## [1291,] "Google" "HP"        "Netflix"   "Microsoft" "Amazon"   
## [1292,] "Google" "HP"        "Netflix"   "Microsoft" "Apple"    
## [1293,] "Google" "HP"        "Netflix"   "Microsoft" "Disney"   
## [1294,] "Google" "HP"        "Netflix"   "Microsoft" "Lenovo"   
## [1295,] "Google" "HP"        "Netflix"   "Microsoft" "Meta"     
## [1296,] "Google" "HP"        "Netflix"   "Microsoft" "Steam"    
## [1297,] "Google" "HP"        "Netflix"   "Steam"     "Amazon"   
## [1298,] "Google" "HP"        "Netflix"   "Steam"     "Apple"    
## [1299,] "Google" "HP"        "Netflix"   "Steam"     "Disney"   
## [1300,] "Google" "HP"        "Netflix"   "Steam"     "Lenovo"   
## [1301,] "Google" "HP"        "Netflix"   "Steam"     "Meta"     
## [1302,] "Google" "HP"        "Netflix"   "Steam"     "Microsoft"
## [1303,] "Google" "HP"        "Steam"     "Amazon"    "Apple"    
## [1304,] "Google" "HP"        "Steam"     "Amazon"    "Disney"   
## [1305,] "Google" "HP"        "Steam"     "Amazon"    "Lenovo"   
## [1306,] "Google" "HP"        "Steam"     "Amazon"    "Meta"     
## [1307,] "Google" "HP"        "Steam"     "Amazon"    "Microsoft"
## [1308,] "Google" "HP"        "Steam"     "Amazon"    "Netflix"  
## [1309,] "Google" "HP"        "Steam"     "Apple"     "Amazon"   
## [1310,] "Google" "HP"        "Steam"     "Apple"     "Disney"   
## [1311,] "Google" "HP"        "Steam"     "Apple"     "Lenovo"   
## [1312,] "Google" "HP"        "Steam"     "Apple"     "Meta"     
## [1313,] "Google" "HP"        "Steam"     "Apple"     "Microsoft"
## [1314,] "Google" "HP"        "Steam"     "Apple"     "Netflix"  
## [1315,] "Google" "HP"        "Steam"     "Disney"    "Amazon"   
## [1316,] "Google" "HP"        "Steam"     "Disney"    "Apple"    
## [1317,] "Google" "HP"        "Steam"     "Disney"    "Lenovo"   
## [1318,] "Google" "HP"        "Steam"     "Disney"    "Meta"     
## [1319,] "Google" "HP"        "Steam"     "Disney"    "Microsoft"
## [1320,] "Google" "HP"        "Steam"     "Disney"    "Netflix"  
## [1321,] "Google" "HP"        "Steam"     "Lenovo"    "Amazon"   
## [1322,] "Google" "HP"        "Steam"     "Lenovo"    "Apple"    
## [1323,] "Google" "HP"        "Steam"     "Lenovo"    "Disney"   
## [1324,] "Google" "HP"        "Steam"     "Lenovo"    "Meta"     
## [1325,] "Google" "HP"        "Steam"     "Lenovo"    "Microsoft"
## [1326,] "Google" "HP"        "Steam"     "Lenovo"    "Netflix"  
## [1327,] "Google" "HP"        "Steam"     "Meta"      "Amazon"   
## [1328,] "Google" "HP"        "Steam"     "Meta"      "Apple"    
## [1329,] "Google" "HP"        "Steam"     "Meta"      "Disney"   
## [1330,] "Google" "HP"        "Steam"     "Meta"      "Lenovo"   
## [1331,] "Google" "HP"        "Steam"     "Meta"      "Microsoft"
## [1332,] "Google" "HP"        "Steam"     "Meta"      "Netflix"  
## [1333,] "Google" "HP"        "Steam"     "Microsoft" "Amazon"   
## [1334,] "Google" "HP"        "Steam"     "Microsoft" "Apple"    
## [1335,] "Google" "HP"        "Steam"     "Microsoft" "Disney"   
## [1336,] "Google" "HP"        "Steam"     "Microsoft" "Lenovo"   
## [1337,] "Google" "HP"        "Steam"     "Microsoft" "Meta"     
## [1338,] "Google" "HP"        "Steam"     "Microsoft" "Netflix"  
## [1339,] "Google" "HP"        "Steam"     "Netflix"   "Amazon"   
## [1340,] "Google" "HP"        "Steam"     "Netflix"   "Apple"    
## [1341,] "Google" "HP"        "Steam"     "Netflix"   "Disney"   
## [1342,] "Google" "HP"        "Steam"     "Netflix"   "Lenovo"   
## [1343,] "Google" "HP"        "Steam"     "Netflix"   "Meta"     
## [1344,] "Google" "HP"        "Steam"     "Netflix"   "Microsoft"
## [1345,] "Google" "Lenovo"    "Amazon"    "Apple"     "Disney"   
## [1346,] "Google" "Lenovo"    "Amazon"    "Apple"     "HP"       
## [1347,] "Google" "Lenovo"    "Amazon"    "Apple"     "Meta"     
## [1348,] "Google" "Lenovo"    "Amazon"    "Apple"     "Microsoft"
## [1349,] "Google" "Lenovo"    "Amazon"    "Apple"     "Netflix"  
## [1350,] "Google" "Lenovo"    "Amazon"    "Apple"     "Steam"    
## [1351,] "Google" "Lenovo"    "Amazon"    "Disney"    "Apple"    
## [1352,] "Google" "Lenovo"    "Amazon"    "Disney"    "HP"       
## [1353,] "Google" "Lenovo"    "Amazon"    "Disney"    "Meta"     
## [1354,] "Google" "Lenovo"    "Amazon"    "Disney"    "Microsoft"
## [1355,] "Google" "Lenovo"    "Amazon"    "Disney"    "Netflix"  
## [1356,] "Google" "Lenovo"    "Amazon"    "Disney"    "Steam"    
## [1357,] "Google" "Lenovo"    "Amazon"    "HP"        "Apple"    
## [1358,] "Google" "Lenovo"    "Amazon"    "HP"        "Disney"   
## [1359,] "Google" "Lenovo"    "Amazon"    "HP"        "Meta"     
## [1360,] "Google" "Lenovo"    "Amazon"    "HP"        "Microsoft"
## [1361,] "Google" "Lenovo"    "Amazon"    "HP"        "Netflix"  
## [1362,] "Google" "Lenovo"    "Amazon"    "HP"        "Steam"    
## [1363,] "Google" "Lenovo"    "Amazon"    "Meta"      "Apple"    
## [1364,] "Google" "Lenovo"    "Amazon"    "Meta"      "Disney"   
## [1365,] "Google" "Lenovo"    "Amazon"    "Meta"      "HP"       
## [1366,] "Google" "Lenovo"    "Amazon"    "Meta"      "Microsoft"
## [1367,] "Google" "Lenovo"    "Amazon"    "Meta"      "Netflix"  
## [1368,] "Google" "Lenovo"    "Amazon"    "Meta"      "Steam"    
## [1369,] "Google" "Lenovo"    "Amazon"    "Microsoft" "Apple"    
## [1370,] "Google" "Lenovo"    "Amazon"    "Microsoft" "Disney"   
## [1371,] "Google" "Lenovo"    "Amazon"    "Microsoft" "HP"       
## [1372,] "Google" "Lenovo"    "Amazon"    "Microsoft" "Meta"     
## [1373,] "Google" "Lenovo"    "Amazon"    "Microsoft" "Netflix"  
## [1374,] "Google" "Lenovo"    "Amazon"    "Microsoft" "Steam"    
## [1375,] "Google" "Lenovo"    "Amazon"    "Netflix"   "Apple"    
## [1376,] "Google" "Lenovo"    "Amazon"    "Netflix"   "Disney"   
## [1377,] "Google" "Lenovo"    "Amazon"    "Netflix"   "HP"       
## [1378,] "Google" "Lenovo"    "Amazon"    "Netflix"   "Meta"     
## [1379,] "Google" "Lenovo"    "Amazon"    "Netflix"   "Microsoft"
## [1380,] "Google" "Lenovo"    "Amazon"    "Netflix"   "Steam"    
## [1381,] "Google" "Lenovo"    "Amazon"    "Steam"     "Apple"    
## [1382,] "Google" "Lenovo"    "Amazon"    "Steam"     "Disney"   
## [1383,] "Google" "Lenovo"    "Amazon"    "Steam"     "HP"       
## [1384,] "Google" "Lenovo"    "Amazon"    "Steam"     "Meta"     
## [1385,] "Google" "Lenovo"    "Amazon"    "Steam"     "Microsoft"
## [1386,] "Google" "Lenovo"    "Amazon"    "Steam"     "Netflix"  
## [1387,] "Google" "Lenovo"    "Apple"     "Amazon"    "Disney"   
## [1388,] "Google" "Lenovo"    "Apple"     "Amazon"    "HP"       
## [1389,] "Google" "Lenovo"    "Apple"     "Amazon"    "Meta"     
## [1390,] "Google" "Lenovo"    "Apple"     "Amazon"    "Microsoft"
## [1391,] "Google" "Lenovo"    "Apple"     "Amazon"    "Netflix"  
## [1392,] "Google" "Lenovo"    "Apple"     "Amazon"    "Steam"    
## [1393,] "Google" "Lenovo"    "Apple"     "Disney"    "Amazon"   
## [1394,] "Google" "Lenovo"    "Apple"     "Disney"    "HP"       
## [1395,] "Google" "Lenovo"    "Apple"     "Disney"    "Meta"     
## [1396,] "Google" "Lenovo"    "Apple"     "Disney"    "Microsoft"
## [1397,] "Google" "Lenovo"    "Apple"     "Disney"    "Netflix"  
## [1398,] "Google" "Lenovo"    "Apple"     "Disney"    "Steam"    
## [1399,] "Google" "Lenovo"    "Apple"     "HP"        "Amazon"   
## [1400,] "Google" "Lenovo"    "Apple"     "HP"        "Disney"   
## [1401,] "Google" "Lenovo"    "Apple"     "HP"        "Meta"     
## [1402,] "Google" "Lenovo"    "Apple"     "HP"        "Microsoft"
## [1403,] "Google" "Lenovo"    "Apple"     "HP"        "Netflix"  
## [1404,] "Google" "Lenovo"    "Apple"     "HP"        "Steam"    
## [1405,] "Google" "Lenovo"    "Apple"     "Meta"      "Amazon"   
## [1406,] "Google" "Lenovo"    "Apple"     "Meta"      "Disney"   
## [1407,] "Google" "Lenovo"    "Apple"     "Meta"      "HP"       
## [1408,] "Google" "Lenovo"    "Apple"     "Meta"      "Microsoft"
## [1409,] "Google" "Lenovo"    "Apple"     "Meta"      "Netflix"  
## [1410,] "Google" "Lenovo"    "Apple"     "Meta"      "Steam"    
## [1411,] "Google" "Lenovo"    "Apple"     "Microsoft" "Amazon"   
## [1412,] "Google" "Lenovo"    "Apple"     "Microsoft" "Disney"   
## [1413,] "Google" "Lenovo"    "Apple"     "Microsoft" "HP"       
## [1414,] "Google" "Lenovo"    "Apple"     "Microsoft" "Meta"     
## [1415,] "Google" "Lenovo"    "Apple"     "Microsoft" "Netflix"  
## [1416,] "Google" "Lenovo"    "Apple"     "Microsoft" "Steam"    
## [1417,] "Google" "Lenovo"    "Apple"     "Netflix"   "Amazon"   
## [1418,] "Google" "Lenovo"    "Apple"     "Netflix"   "Disney"   
## [1419,] "Google" "Lenovo"    "Apple"     "Netflix"   "HP"       
## [1420,] "Google" "Lenovo"    "Apple"     "Netflix"   "Meta"     
## [1421,] "Google" "Lenovo"    "Apple"     "Netflix"   "Microsoft"
## [1422,] "Google" "Lenovo"    "Apple"     "Netflix"   "Steam"    
## [1423,] "Google" "Lenovo"    "Apple"     "Steam"     "Amazon"   
## [1424,] "Google" "Lenovo"    "Apple"     "Steam"     "Disney"   
## [1425,] "Google" "Lenovo"    "Apple"     "Steam"     "HP"       
## [1426,] "Google" "Lenovo"    "Apple"     "Steam"     "Meta"     
## [1427,] "Google" "Lenovo"    "Apple"     "Steam"     "Microsoft"
## [1428,] "Google" "Lenovo"    "Apple"     "Steam"     "Netflix"  
## [1429,] "Google" "Lenovo"    "Disney"    "Amazon"    "Apple"    
## [1430,] "Google" "Lenovo"    "Disney"    "Amazon"    "HP"       
## [1431,] "Google" "Lenovo"    "Disney"    "Amazon"    "Meta"     
## [1432,] "Google" "Lenovo"    "Disney"    "Amazon"    "Microsoft"
## [1433,] "Google" "Lenovo"    "Disney"    "Amazon"    "Netflix"  
## [1434,] "Google" "Lenovo"    "Disney"    "Amazon"    "Steam"    
## [1435,] "Google" "Lenovo"    "Disney"    "Apple"     "Amazon"   
## [1436,] "Google" "Lenovo"    "Disney"    "Apple"     "HP"       
## [1437,] "Google" "Lenovo"    "Disney"    "Apple"     "Meta"     
## [1438,] "Google" "Lenovo"    "Disney"    "Apple"     "Microsoft"
## [1439,] "Google" "Lenovo"    "Disney"    "Apple"     "Netflix"  
## [1440,] "Google" "Lenovo"    "Disney"    "Apple"     "Steam"    
## [1441,] "Google" "Lenovo"    "Disney"    "HP"        "Amazon"   
## [1442,] "Google" "Lenovo"    "Disney"    "HP"        "Apple"    
## [1443,] "Google" "Lenovo"    "Disney"    "HP"        "Meta"     
## [1444,] "Google" "Lenovo"    "Disney"    "HP"        "Microsoft"
## [1445,] "Google" "Lenovo"    "Disney"    "HP"        "Netflix"  
## [1446,] "Google" "Lenovo"    "Disney"    "HP"        "Steam"    
## [1447,] "Google" "Lenovo"    "Disney"    "Meta"      "Amazon"   
## [1448,] "Google" "Lenovo"    "Disney"    "Meta"      "Apple"    
## [1449,] "Google" "Lenovo"    "Disney"    "Meta"      "HP"       
## [1450,] "Google" "Lenovo"    "Disney"    "Meta"      "Microsoft"
## [1451,] "Google" "Lenovo"    "Disney"    "Meta"      "Netflix"  
## [1452,] "Google" "Lenovo"    "Disney"    "Meta"      "Steam"    
## [1453,] "Google" "Lenovo"    "Disney"    "Microsoft" "Amazon"   
## [1454,] "Google" "Lenovo"    "Disney"    "Microsoft" "Apple"    
## [1455,] "Google" "Lenovo"    "Disney"    "Microsoft" "HP"       
## [1456,] "Google" "Lenovo"    "Disney"    "Microsoft" "Meta"     
## [1457,] "Google" "Lenovo"    "Disney"    "Microsoft" "Netflix"  
## [1458,] "Google" "Lenovo"    "Disney"    "Microsoft" "Steam"    
## [1459,] "Google" "Lenovo"    "Disney"    "Netflix"   "Amazon"   
## [1460,] "Google" "Lenovo"    "Disney"    "Netflix"   "Apple"    
## [1461,] "Google" "Lenovo"    "Disney"    "Netflix"   "HP"       
## [1462,] "Google" "Lenovo"    "Disney"    "Netflix"   "Meta"     
## [1463,] "Google" "Lenovo"    "Disney"    "Netflix"   "Microsoft"
## [1464,] "Google" "Lenovo"    "Disney"    "Netflix"   "Steam"    
## [1465,] "Google" "Lenovo"    "Disney"    "Steam"     "Amazon"   
## [1466,] "Google" "Lenovo"    "Disney"    "Steam"     "Apple"    
## [1467,] "Google" "Lenovo"    "Disney"    "Steam"     "HP"       
## [1468,] "Google" "Lenovo"    "Disney"    "Steam"     "Meta"     
## [1469,] "Google" "Lenovo"    "Disney"    "Steam"     "Microsoft"
## [1470,] "Google" "Lenovo"    "Disney"    "Steam"     "Netflix"  
## [1471,] "Google" "Lenovo"    "HP"        "Amazon"    "Apple"    
## [1472,] "Google" "Lenovo"    "HP"        "Amazon"    "Disney"   
## [1473,] "Google" "Lenovo"    "HP"        "Amazon"    "Meta"     
## [1474,] "Google" "Lenovo"    "HP"        "Amazon"    "Microsoft"
## [1475,] "Google" "Lenovo"    "HP"        "Amazon"    "Netflix"  
## [1476,] "Google" "Lenovo"    "HP"        "Amazon"    "Steam"    
## [1477,] "Google" "Lenovo"    "HP"        "Apple"     "Amazon"   
## [1478,] "Google" "Lenovo"    "HP"        "Apple"     "Disney"   
## [1479,] "Google" "Lenovo"    "HP"        "Apple"     "Meta"     
## [1480,] "Google" "Lenovo"    "HP"        "Apple"     "Microsoft"
## [1481,] "Google" "Lenovo"    "HP"        "Apple"     "Netflix"  
## [1482,] "Google" "Lenovo"    "HP"        "Apple"     "Steam"    
## [1483,] "Google" "Lenovo"    "HP"        "Disney"    "Amazon"   
## [1484,] "Google" "Lenovo"    "HP"        "Disney"    "Apple"    
## [1485,] "Google" "Lenovo"    "HP"        "Disney"    "Meta"     
## [1486,] "Google" "Lenovo"    "HP"        "Disney"    "Microsoft"
## [1487,] "Google" "Lenovo"    "HP"        "Disney"    "Netflix"  
## [1488,] "Google" "Lenovo"    "HP"        "Disney"    "Steam"    
## [1489,] "Google" "Lenovo"    "HP"        "Meta"      "Amazon"   
## [1490,] "Google" "Lenovo"    "HP"        "Meta"      "Apple"    
## [1491,] "Google" "Lenovo"    "HP"        "Meta"      "Disney"   
## [1492,] "Google" "Lenovo"    "HP"        "Meta"      "Microsoft"
## [1493,] "Google" "Lenovo"    "HP"        "Meta"      "Netflix"  
## [1494,] "Google" "Lenovo"    "HP"        "Meta"      "Steam"    
## [1495,] "Google" "Lenovo"    "HP"        "Microsoft" "Amazon"   
## [1496,] "Google" "Lenovo"    "HP"        "Microsoft" "Apple"    
## [1497,] "Google" "Lenovo"    "HP"        "Microsoft" "Disney"   
## [1498,] "Google" "Lenovo"    "HP"        "Microsoft" "Meta"     
## [1499,] "Google" "Lenovo"    "HP"        "Microsoft" "Netflix"  
## [1500,] "Google" "Lenovo"    "HP"        "Microsoft" "Steam"    
## [1501,] "Google" "Lenovo"    "HP"        "Netflix"   "Amazon"   
## [1502,] "Google" "Lenovo"    "HP"        "Netflix"   "Apple"    
## [1503,] "Google" "Lenovo"    "HP"        "Netflix"   "Disney"   
## [1504,] "Google" "Lenovo"    "HP"        "Netflix"   "Meta"     
## [1505,] "Google" "Lenovo"    "HP"        "Netflix"   "Microsoft"
## [1506,] "Google" "Lenovo"    "HP"        "Netflix"   "Steam"    
## [1507,] "Google" "Lenovo"    "HP"        "Steam"     "Amazon"   
## [1508,] "Google" "Lenovo"    "HP"        "Steam"     "Apple"    
## [1509,] "Google" "Lenovo"    "HP"        "Steam"     "Disney"   
## [1510,] "Google" "Lenovo"    "HP"        "Steam"     "Meta"     
## [1511,] "Google" "Lenovo"    "HP"        "Steam"     "Microsoft"
## [1512,] "Google" "Lenovo"    "HP"        "Steam"     "Netflix"  
## [1513,] "Google" "Lenovo"    "Meta"      "Amazon"    "Apple"    
## [1514,] "Google" "Lenovo"    "Meta"      "Amazon"    "Disney"   
## [1515,] "Google" "Lenovo"    "Meta"      "Amazon"    "HP"       
## [1516,] "Google" "Lenovo"    "Meta"      "Amazon"    "Microsoft"
## [1517,] "Google" "Lenovo"    "Meta"      "Amazon"    "Netflix"  
## [1518,] "Google" "Lenovo"    "Meta"      "Amazon"    "Steam"    
## [1519,] "Google" "Lenovo"    "Meta"      "Apple"     "Amazon"   
## [1520,] "Google" "Lenovo"    "Meta"      "Apple"     "Disney"   
## [1521,] "Google" "Lenovo"    "Meta"      "Apple"     "HP"       
## [1522,] "Google" "Lenovo"    "Meta"      "Apple"     "Microsoft"
## [1523,] "Google" "Lenovo"    "Meta"      "Apple"     "Netflix"  
## [1524,] "Google" "Lenovo"    "Meta"      "Apple"     "Steam"    
## [1525,] "Google" "Lenovo"    "Meta"      "Disney"    "Amazon"   
## [1526,] "Google" "Lenovo"    "Meta"      "Disney"    "Apple"    
## [1527,] "Google" "Lenovo"    "Meta"      "Disney"    "HP"       
## [1528,] "Google" "Lenovo"    "Meta"      "Disney"    "Microsoft"
## [1529,] "Google" "Lenovo"    "Meta"      "Disney"    "Netflix"  
## [1530,] "Google" "Lenovo"    "Meta"      "Disney"    "Steam"    
## [1531,] "Google" "Lenovo"    "Meta"      "HP"        "Amazon"   
## [1532,] "Google" "Lenovo"    "Meta"      "HP"        "Apple"    
## [1533,] "Google" "Lenovo"    "Meta"      "HP"        "Disney"   
## [1534,] "Google" "Lenovo"    "Meta"      "HP"        "Microsoft"
## [1535,] "Google" "Lenovo"    "Meta"      "HP"        "Netflix"  
## [1536,] "Google" "Lenovo"    "Meta"      "HP"        "Steam"    
## [1537,] "Google" "Lenovo"    "Meta"      "Microsoft" "Amazon"   
## [1538,] "Google" "Lenovo"    "Meta"      "Microsoft" "Apple"    
## [1539,] "Google" "Lenovo"    "Meta"      "Microsoft" "Disney"   
## [1540,] "Google" "Lenovo"    "Meta"      "Microsoft" "HP"       
## [1541,] "Google" "Lenovo"    "Meta"      "Microsoft" "Netflix"  
## [1542,] "Google" "Lenovo"    "Meta"      "Microsoft" "Steam"    
## [1543,] "Google" "Lenovo"    "Meta"      "Netflix"   "Amazon"   
## [1544,] "Google" "Lenovo"    "Meta"      "Netflix"   "Apple"    
## [1545,] "Google" "Lenovo"    "Meta"      "Netflix"   "Disney"   
## [1546,] "Google" "Lenovo"    "Meta"      "Netflix"   "HP"       
## [1547,] "Google" "Lenovo"    "Meta"      "Netflix"   "Microsoft"
## [1548,] "Google" "Lenovo"    "Meta"      "Netflix"   "Steam"    
## [1549,] "Google" "Lenovo"    "Meta"      "Steam"     "Amazon"   
## [1550,] "Google" "Lenovo"    "Meta"      "Steam"     "Apple"    
## [1551,] "Google" "Lenovo"    "Meta"      "Steam"     "Disney"   
## [1552,] "Google" "Lenovo"    "Meta"      "Steam"     "HP"       
## [1553,] "Google" "Lenovo"    "Meta"      "Steam"     "Microsoft"
## [1554,] "Google" "Lenovo"    "Meta"      "Steam"     "Netflix"  
## [1555,] "Google" "Lenovo"    "Microsoft" "Amazon"    "Apple"    
## [1556,] "Google" "Lenovo"    "Microsoft" "Amazon"    "Disney"   
## [1557,] "Google" "Lenovo"    "Microsoft" "Amazon"    "HP"       
## [1558,] "Google" "Lenovo"    "Microsoft" "Amazon"    "Meta"     
## [1559,] "Google" "Lenovo"    "Microsoft" "Amazon"    "Netflix"  
## [1560,] "Google" "Lenovo"    "Microsoft" "Amazon"    "Steam"    
## [1561,] "Google" "Lenovo"    "Microsoft" "Apple"     "Amazon"   
## [1562,] "Google" "Lenovo"    "Microsoft" "Apple"     "Disney"   
## [1563,] "Google" "Lenovo"    "Microsoft" "Apple"     "HP"       
## [1564,] "Google" "Lenovo"    "Microsoft" "Apple"     "Meta"     
## [1565,] "Google" "Lenovo"    "Microsoft" "Apple"     "Netflix"  
## [1566,] "Google" "Lenovo"    "Microsoft" "Apple"     "Steam"    
## [1567,] "Google" "Lenovo"    "Microsoft" "Disney"    "Amazon"   
## [1568,] "Google" "Lenovo"    "Microsoft" "Disney"    "Apple"    
## [1569,] "Google" "Lenovo"    "Microsoft" "Disney"    "HP"       
## [1570,] "Google" "Lenovo"    "Microsoft" "Disney"    "Meta"     
## [1571,] "Google" "Lenovo"    "Microsoft" "Disney"    "Netflix"  
## [1572,] "Google" "Lenovo"    "Microsoft" "Disney"    "Steam"    
## [1573,] "Google" "Lenovo"    "Microsoft" "HP"        "Amazon"   
## [1574,] "Google" "Lenovo"    "Microsoft" "HP"        "Apple"    
## [1575,] "Google" "Lenovo"    "Microsoft" "HP"        "Disney"   
## [1576,] "Google" "Lenovo"    "Microsoft" "HP"        "Meta"     
## [1577,] "Google" "Lenovo"    "Microsoft" "HP"        "Netflix"  
## [1578,] "Google" "Lenovo"    "Microsoft" "HP"        "Steam"    
## [1579,] "Google" "Lenovo"    "Microsoft" "Meta"      "Amazon"   
## [1580,] "Google" "Lenovo"    "Microsoft" "Meta"      "Apple"    
## [1581,] "Google" "Lenovo"    "Microsoft" "Meta"      "Disney"   
## [1582,] "Google" "Lenovo"    "Microsoft" "Meta"      "HP"       
## [1583,] "Google" "Lenovo"    "Microsoft" "Meta"      "Netflix"  
## [1584,] "Google" "Lenovo"    "Microsoft" "Meta"      "Steam"    
## [1585,] "Google" "Lenovo"    "Microsoft" "Netflix"   "Amazon"   
## [1586,] "Google" "Lenovo"    "Microsoft" "Netflix"   "Apple"    
## [1587,] "Google" "Lenovo"    "Microsoft" "Netflix"   "Disney"   
## [1588,] "Google" "Lenovo"    "Microsoft" "Netflix"   "HP"       
## [1589,] "Google" "Lenovo"    "Microsoft" "Netflix"   "Meta"     
## [1590,] "Google" "Lenovo"    "Microsoft" "Netflix"   "Steam"    
## [1591,] "Google" "Lenovo"    "Microsoft" "Steam"     "Amazon"   
## [1592,] "Google" "Lenovo"    "Microsoft" "Steam"     "Apple"    
## [1593,] "Google" "Lenovo"    "Microsoft" "Steam"     "Disney"   
## [1594,] "Google" "Lenovo"    "Microsoft" "Steam"     "HP"       
## [1595,] "Google" "Lenovo"    "Microsoft" "Steam"     "Meta"     
## [1596,] "Google" "Lenovo"    "Microsoft" "Steam"     "Netflix"  
## [1597,] "Google" "Lenovo"    "Netflix"   "Amazon"    "Apple"    
## [1598,] "Google" "Lenovo"    "Netflix"   "Amazon"    "Disney"   
## [1599,] "Google" "Lenovo"    "Netflix"   "Amazon"    "HP"       
## [1600,] "Google" "Lenovo"    "Netflix"   "Amazon"    "Meta"     
## [1601,] "Google" "Lenovo"    "Netflix"   "Amazon"    "Microsoft"
## [1602,] "Google" "Lenovo"    "Netflix"   "Amazon"    "Steam"    
## [1603,] "Google" "Lenovo"    "Netflix"   "Apple"     "Amazon"   
## [1604,] "Google" "Lenovo"    "Netflix"   "Apple"     "Disney"   
## [1605,] "Google" "Lenovo"    "Netflix"   "Apple"     "HP"       
## [1606,] "Google" "Lenovo"    "Netflix"   "Apple"     "Meta"     
## [1607,] "Google" "Lenovo"    "Netflix"   "Apple"     "Microsoft"
## [1608,] "Google" "Lenovo"    "Netflix"   "Apple"     "Steam"    
## [1609,] "Google" "Lenovo"    "Netflix"   "Disney"    "Amazon"   
## [1610,] "Google" "Lenovo"    "Netflix"   "Disney"    "Apple"    
## [1611,] "Google" "Lenovo"    "Netflix"   "Disney"    "HP"       
## [1612,] "Google" "Lenovo"    "Netflix"   "Disney"    "Meta"     
## [1613,] "Google" "Lenovo"    "Netflix"   "Disney"    "Microsoft"
## [1614,] "Google" "Lenovo"    "Netflix"   "Disney"    "Steam"    
## [1615,] "Google" "Lenovo"    "Netflix"   "HP"        "Amazon"   
## [1616,] "Google" "Lenovo"    "Netflix"   "HP"        "Apple"    
## [1617,] "Google" "Lenovo"    "Netflix"   "HP"        "Disney"   
## [1618,] "Google" "Lenovo"    "Netflix"   "HP"        "Meta"     
## [1619,] "Google" "Lenovo"    "Netflix"   "HP"        "Microsoft"
## [1620,] "Google" "Lenovo"    "Netflix"   "HP"        "Steam"    
## [1621,] "Google" "Lenovo"    "Netflix"   "Meta"      "Amazon"   
## [1622,] "Google" "Lenovo"    "Netflix"   "Meta"      "Apple"    
## [1623,] "Google" "Lenovo"    "Netflix"   "Meta"      "Disney"   
## [1624,] "Google" "Lenovo"    "Netflix"   "Meta"      "HP"       
## [1625,] "Google" "Lenovo"    "Netflix"   "Meta"      "Microsoft"
## [1626,] "Google" "Lenovo"    "Netflix"   "Meta"      "Steam"    
## [1627,] "Google" "Lenovo"    "Netflix"   "Microsoft" "Amazon"   
## [1628,] "Google" "Lenovo"    "Netflix"   "Microsoft" "Apple"    
## [1629,] "Google" "Lenovo"    "Netflix"   "Microsoft" "Disney"   
## [1630,] "Google" "Lenovo"    "Netflix"   "Microsoft" "HP"       
## [1631,] "Google" "Lenovo"    "Netflix"   "Microsoft" "Meta"     
## [1632,] "Google" "Lenovo"    "Netflix"   "Microsoft" "Steam"    
## [1633,] "Google" "Lenovo"    "Netflix"   "Steam"     "Amazon"   
## [1634,] "Google" "Lenovo"    "Netflix"   "Steam"     "Apple"    
## [1635,] "Google" "Lenovo"    "Netflix"   "Steam"     "Disney"   
## [1636,] "Google" "Lenovo"    "Netflix"   "Steam"     "HP"       
## [1637,] "Google" "Lenovo"    "Netflix"   "Steam"     "Meta"     
## [1638,] "Google" "Lenovo"    "Netflix"   "Steam"     "Microsoft"
## [1639,] "Google" "Lenovo"    "Steam"     "Amazon"    "Apple"    
## [1640,] "Google" "Lenovo"    "Steam"     "Amazon"    "Disney"   
## [1641,] "Google" "Lenovo"    "Steam"     "Amazon"    "HP"       
## [1642,] "Google" "Lenovo"    "Steam"     "Amazon"    "Meta"     
## [1643,] "Google" "Lenovo"    "Steam"     "Amazon"    "Microsoft"
## [1644,] "Google" "Lenovo"    "Steam"     "Amazon"    "Netflix"  
## [1645,] "Google" "Lenovo"    "Steam"     "Apple"     "Amazon"   
## [1646,] "Google" "Lenovo"    "Steam"     "Apple"     "Disney"   
## [1647,] "Google" "Lenovo"    "Steam"     "Apple"     "HP"       
## [1648,] "Google" "Lenovo"    "Steam"     "Apple"     "Meta"     
## [1649,] "Google" "Lenovo"    "Steam"     "Apple"     "Microsoft"
## [1650,] "Google" "Lenovo"    "Steam"     "Apple"     "Netflix"  
## [1651,] "Google" "Lenovo"    "Steam"     "Disney"    "Amazon"   
## [1652,] "Google" "Lenovo"    "Steam"     "Disney"    "Apple"    
## [1653,] "Google" "Lenovo"    "Steam"     "Disney"    "HP"       
## [1654,] "Google" "Lenovo"    "Steam"     "Disney"    "Meta"     
## [1655,] "Google" "Lenovo"    "Steam"     "Disney"    "Microsoft"
## [1656,] "Google" "Lenovo"    "Steam"     "Disney"    "Netflix"  
## [1657,] "Google" "Lenovo"    "Steam"     "HP"        "Amazon"   
## [1658,] "Google" "Lenovo"    "Steam"     "HP"        "Apple"    
## [1659,] "Google" "Lenovo"    "Steam"     "HP"        "Disney"   
## [1660,] "Google" "Lenovo"    "Steam"     "HP"        "Meta"     
## [1661,] "Google" "Lenovo"    "Steam"     "HP"        "Microsoft"
## [1662,] "Google" "Lenovo"    "Steam"     "HP"        "Netflix"  
## [1663,] "Google" "Lenovo"    "Steam"     "Meta"      "Amazon"   
## [1664,] "Google" "Lenovo"    "Steam"     "Meta"      "Apple"    
## [1665,] "Google" "Lenovo"    "Steam"     "Meta"      "Disney"   
## [1666,] "Google" "Lenovo"    "Steam"     "Meta"      "HP"       
## [1667,] "Google" "Lenovo"    "Steam"     "Meta"      "Microsoft"
## [1668,] "Google" "Lenovo"    "Steam"     "Meta"      "Netflix"  
## [1669,] "Google" "Lenovo"    "Steam"     "Microsoft" "Amazon"   
## [1670,] "Google" "Lenovo"    "Steam"     "Microsoft" "Apple"    
## [1671,] "Google" "Lenovo"    "Steam"     "Microsoft" "Disney"   
## [1672,] "Google" "Lenovo"    "Steam"     "Microsoft" "HP"       
## [1673,] "Google" "Lenovo"    "Steam"     "Microsoft" "Meta"     
## [1674,] "Google" "Lenovo"    "Steam"     "Microsoft" "Netflix"  
## [1675,] "Google" "Lenovo"    "Steam"     "Netflix"   "Amazon"   
## [1676,] "Google" "Lenovo"    "Steam"     "Netflix"   "Apple"    
## [1677,] "Google" "Lenovo"    "Steam"     "Netflix"   "Disney"   
## [1678,] "Google" "Lenovo"    "Steam"     "Netflix"   "HP"       
## [1679,] "Google" "Lenovo"    "Steam"     "Netflix"   "Meta"     
## [1680,] "Google" "Lenovo"    "Steam"     "Netflix"   "Microsoft"
## [1681,] "Google" "Meta"      "Amazon"    "Apple"     "Disney"   
## [1682,] "Google" "Meta"      "Amazon"    "Apple"     "HP"       
## [1683,] "Google" "Meta"      "Amazon"    "Apple"     "Lenovo"   
## [1684,] "Google" "Meta"      "Amazon"    "Apple"     "Microsoft"
## [1685,] "Google" "Meta"      "Amazon"    "Apple"     "Netflix"  
## [1686,] "Google" "Meta"      "Amazon"    "Apple"     "Steam"    
## [1687,] "Google" "Meta"      "Amazon"    "Disney"    "Apple"    
## [1688,] "Google" "Meta"      "Amazon"    "Disney"    "HP"       
## [1689,] "Google" "Meta"      "Amazon"    "Disney"    "Lenovo"   
## [1690,] "Google" "Meta"      "Amazon"    "Disney"    "Microsoft"
## [1691,] "Google" "Meta"      "Amazon"    "Disney"    "Netflix"  
## [1692,] "Google" "Meta"      "Amazon"    "Disney"    "Steam"    
## [1693,] "Google" "Meta"      "Amazon"    "HP"        "Apple"    
## [1694,] "Google" "Meta"      "Amazon"    "HP"        "Disney"   
## [1695,] "Google" "Meta"      "Amazon"    "HP"        "Lenovo"   
## [1696,] "Google" "Meta"      "Amazon"    "HP"        "Microsoft"
## [1697,] "Google" "Meta"      "Amazon"    "HP"        "Netflix"  
## [1698,] "Google" "Meta"      "Amazon"    "HP"        "Steam"    
## [1699,] "Google" "Meta"      "Amazon"    "Lenovo"    "Apple"    
## [1700,] "Google" "Meta"      "Amazon"    "Lenovo"    "Disney"   
## [1701,] "Google" "Meta"      "Amazon"    "Lenovo"    "HP"       
## [1702,] "Google" "Meta"      "Amazon"    "Lenovo"    "Microsoft"
## [1703,] "Google" "Meta"      "Amazon"    "Lenovo"    "Netflix"  
## [1704,] "Google" "Meta"      "Amazon"    "Lenovo"    "Steam"    
## [1705,] "Google" "Meta"      "Amazon"    "Microsoft" "Apple"    
## [1706,] "Google" "Meta"      "Amazon"    "Microsoft" "Disney"   
## [1707,] "Google" "Meta"      "Amazon"    "Microsoft" "HP"       
## [1708,] "Google" "Meta"      "Amazon"    "Microsoft" "Lenovo"   
## [1709,] "Google" "Meta"      "Amazon"    "Microsoft" "Netflix"  
## [1710,] "Google" "Meta"      "Amazon"    "Microsoft" "Steam"    
## [1711,] "Google" "Meta"      "Amazon"    "Netflix"   "Apple"    
## [1712,] "Google" "Meta"      "Amazon"    "Netflix"   "Disney"   
## [1713,] "Google" "Meta"      "Amazon"    "Netflix"   "HP"       
## [1714,] "Google" "Meta"      "Amazon"    "Netflix"   "Lenovo"   
## [1715,] "Google" "Meta"      "Amazon"    "Netflix"   "Microsoft"
## [1716,] "Google" "Meta"      "Amazon"    "Netflix"   "Steam"    
## [1717,] "Google" "Meta"      "Amazon"    "Steam"     "Apple"    
## [1718,] "Google" "Meta"      "Amazon"    "Steam"     "Disney"   
## [1719,] "Google" "Meta"      "Amazon"    "Steam"     "HP"       
## [1720,] "Google" "Meta"      "Amazon"    "Steam"     "Lenovo"   
## [1721,] "Google" "Meta"      "Amazon"    "Steam"     "Microsoft"
## [1722,] "Google" "Meta"      "Amazon"    "Steam"     "Netflix"  
## [1723,] "Google" "Meta"      "Apple"     "Amazon"    "Disney"   
## [1724,] "Google" "Meta"      "Apple"     "Amazon"    "HP"       
## [1725,] "Google" "Meta"      "Apple"     "Amazon"    "Lenovo"   
## [1726,] "Google" "Meta"      "Apple"     "Amazon"    "Microsoft"
## [1727,] "Google" "Meta"      "Apple"     "Amazon"    "Netflix"  
## [1728,] "Google" "Meta"      "Apple"     "Amazon"    "Steam"    
## [1729,] "Google" "Meta"      "Apple"     "Disney"    "Amazon"   
## [1730,] "Google" "Meta"      "Apple"     "Disney"    "HP"       
## [1731,] "Google" "Meta"      "Apple"     "Disney"    "Lenovo"   
## [1732,] "Google" "Meta"      "Apple"     "Disney"    "Microsoft"
## [1733,] "Google" "Meta"      "Apple"     "Disney"    "Netflix"  
## [1734,] "Google" "Meta"      "Apple"     "Disney"    "Steam"    
## [1735,] "Google" "Meta"      "Apple"     "HP"        "Amazon"   
## [1736,] "Google" "Meta"      "Apple"     "HP"        "Disney"   
## [1737,] "Google" "Meta"      "Apple"     "HP"        "Lenovo"   
## [1738,] "Google" "Meta"      "Apple"     "HP"        "Microsoft"
## [1739,] "Google" "Meta"      "Apple"     "HP"        "Netflix"  
## [1740,] "Google" "Meta"      "Apple"     "HP"        "Steam"    
## [1741,] "Google" "Meta"      "Apple"     "Lenovo"    "Amazon"   
## [1742,] "Google" "Meta"      "Apple"     "Lenovo"    "Disney"   
## [1743,] "Google" "Meta"      "Apple"     "Lenovo"    "HP"       
## [1744,] "Google" "Meta"      "Apple"     "Lenovo"    "Microsoft"
## [1745,] "Google" "Meta"      "Apple"     "Lenovo"    "Netflix"  
## [1746,] "Google" "Meta"      "Apple"     "Lenovo"    "Steam"    
## [1747,] "Google" "Meta"      "Apple"     "Microsoft" "Amazon"   
## [1748,] "Google" "Meta"      "Apple"     "Microsoft" "Disney"   
## [1749,] "Google" "Meta"      "Apple"     "Microsoft" "HP"       
## [1750,] "Google" "Meta"      "Apple"     "Microsoft" "Lenovo"   
## [1751,] "Google" "Meta"      "Apple"     "Microsoft" "Netflix"  
## [1752,] "Google" "Meta"      "Apple"     "Microsoft" "Steam"    
## [1753,] "Google" "Meta"      "Apple"     "Netflix"   "Amazon"   
## [1754,] "Google" "Meta"      "Apple"     "Netflix"   "Disney"   
## [1755,] "Google" "Meta"      "Apple"     "Netflix"   "HP"       
## [1756,] "Google" "Meta"      "Apple"     "Netflix"   "Lenovo"   
## [1757,] "Google" "Meta"      "Apple"     "Netflix"   "Microsoft"
## [1758,] "Google" "Meta"      "Apple"     "Netflix"   "Steam"    
## [1759,] "Google" "Meta"      "Apple"     "Steam"     "Amazon"   
## [1760,] "Google" "Meta"      "Apple"     "Steam"     "Disney"   
## [1761,] "Google" "Meta"      "Apple"     "Steam"     "HP"       
## [1762,] "Google" "Meta"      "Apple"     "Steam"     "Lenovo"   
## [1763,] "Google" "Meta"      "Apple"     "Steam"     "Microsoft"
## [1764,] "Google" "Meta"      "Apple"     "Steam"     "Netflix"  
## [1765,] "Google" "Meta"      "Disney"    "Amazon"    "Apple"    
## [1766,] "Google" "Meta"      "Disney"    "Amazon"    "HP"       
## [1767,] "Google" "Meta"      "Disney"    "Amazon"    "Lenovo"   
## [1768,] "Google" "Meta"      "Disney"    "Amazon"    "Microsoft"
## [1769,] "Google" "Meta"      "Disney"    "Amazon"    "Netflix"  
## [1770,] "Google" "Meta"      "Disney"    "Amazon"    "Steam"    
## [1771,] "Google" "Meta"      "Disney"    "Apple"     "Amazon"   
## [1772,] "Google" "Meta"      "Disney"    "Apple"     "HP"       
## [1773,] "Google" "Meta"      "Disney"    "Apple"     "Lenovo"   
## [1774,] "Google" "Meta"      "Disney"    "Apple"     "Microsoft"
## [1775,] "Google" "Meta"      "Disney"    "Apple"     "Netflix"  
## [1776,] "Google" "Meta"      "Disney"    "Apple"     "Steam"    
## [1777,] "Google" "Meta"      "Disney"    "HP"        "Amazon"   
## [1778,] "Google" "Meta"      "Disney"    "HP"        "Apple"    
## [1779,] "Google" "Meta"      "Disney"    "HP"        "Lenovo"   
## [1780,] "Google" "Meta"      "Disney"    "HP"        "Microsoft"
## [1781,] "Google" "Meta"      "Disney"    "HP"        "Netflix"  
## [1782,] "Google" "Meta"      "Disney"    "HP"        "Steam"    
## [1783,] "Google" "Meta"      "Disney"    "Lenovo"    "Amazon"   
## [1784,] "Google" "Meta"      "Disney"    "Lenovo"    "Apple"    
## [1785,] "Google" "Meta"      "Disney"    "Lenovo"    "HP"       
## [1786,] "Google" "Meta"      "Disney"    "Lenovo"    "Microsoft"
## [1787,] "Google" "Meta"      "Disney"    "Lenovo"    "Netflix"  
## [1788,] "Google" "Meta"      "Disney"    "Lenovo"    "Steam"    
## [1789,] "Google" "Meta"      "Disney"    "Microsoft" "Amazon"   
## [1790,] "Google" "Meta"      "Disney"    "Microsoft" "Apple"    
## [1791,] "Google" "Meta"      "Disney"    "Microsoft" "HP"       
## [1792,] "Google" "Meta"      "Disney"    "Microsoft" "Lenovo"   
## [1793,] "Google" "Meta"      "Disney"    "Microsoft" "Netflix"  
## [1794,] "Google" "Meta"      "Disney"    "Microsoft" "Steam"    
## [1795,] "Google" "Meta"      "Disney"    "Netflix"   "Amazon"   
## [1796,] "Google" "Meta"      "Disney"    "Netflix"   "Apple"    
## [1797,] "Google" "Meta"      "Disney"    "Netflix"   "HP"       
## [1798,] "Google" "Meta"      "Disney"    "Netflix"   "Lenovo"   
## [1799,] "Google" "Meta"      "Disney"    "Netflix"   "Microsoft"
## [1800,] "Google" "Meta"      "Disney"    "Netflix"   "Steam"    
## [1801,] "Google" "Meta"      "Disney"    "Steam"     "Amazon"   
## [1802,] "Google" "Meta"      "Disney"    "Steam"     "Apple"    
## [1803,] "Google" "Meta"      "Disney"    "Steam"     "HP"       
## [1804,] "Google" "Meta"      "Disney"    "Steam"     "Lenovo"   
## [1805,] "Google" "Meta"      "Disney"    "Steam"     "Microsoft"
## [1806,] "Google" "Meta"      "Disney"    "Steam"     "Netflix"  
## [1807,] "Google" "Meta"      "HP"        "Amazon"    "Apple"    
## [1808,] "Google" "Meta"      "HP"        "Amazon"    "Disney"   
## [1809,] "Google" "Meta"      "HP"        "Amazon"    "Lenovo"   
## [1810,] "Google" "Meta"      "HP"        "Amazon"    "Microsoft"
## [1811,] "Google" "Meta"      "HP"        "Amazon"    "Netflix"  
## [1812,] "Google" "Meta"      "HP"        "Amazon"    "Steam"    
## [1813,] "Google" "Meta"      "HP"        "Apple"     "Amazon"   
## [1814,] "Google" "Meta"      "HP"        "Apple"     "Disney"   
## [1815,] "Google" "Meta"      "HP"        "Apple"     "Lenovo"   
## [1816,] "Google" "Meta"      "HP"        "Apple"     "Microsoft"
## [1817,] "Google" "Meta"      "HP"        "Apple"     "Netflix"  
## [1818,] "Google" "Meta"      "HP"        "Apple"     "Steam"    
## [1819,] "Google" "Meta"      "HP"        "Disney"    "Amazon"   
## [1820,] "Google" "Meta"      "HP"        "Disney"    "Apple"    
## [1821,] "Google" "Meta"      "HP"        "Disney"    "Lenovo"   
## [1822,] "Google" "Meta"      "HP"        "Disney"    "Microsoft"
## [1823,] "Google" "Meta"      "HP"        "Disney"    "Netflix"  
## [1824,] "Google" "Meta"      "HP"        "Disney"    "Steam"    
## [1825,] "Google" "Meta"      "HP"        "Lenovo"    "Amazon"   
## [1826,] "Google" "Meta"      "HP"        "Lenovo"    "Apple"    
## [1827,] "Google" "Meta"      "HP"        "Lenovo"    "Disney"   
## [1828,] "Google" "Meta"      "HP"        "Lenovo"    "Microsoft"
## [1829,] "Google" "Meta"      "HP"        "Lenovo"    "Netflix"  
## [1830,] "Google" "Meta"      "HP"        "Lenovo"    "Steam"    
## [1831,] "Google" "Meta"      "HP"        "Microsoft" "Amazon"   
## [1832,] "Google" "Meta"      "HP"        "Microsoft" "Apple"    
## [1833,] "Google" "Meta"      "HP"        "Microsoft" "Disney"   
## [1834,] "Google" "Meta"      "HP"        "Microsoft" "Lenovo"   
## [1835,] "Google" "Meta"      "HP"        "Microsoft" "Netflix"  
## [1836,] "Google" "Meta"      "HP"        "Microsoft" "Steam"    
## [1837,] "Google" "Meta"      "HP"        "Netflix"   "Amazon"   
## [1838,] "Google" "Meta"      "HP"        "Netflix"   "Apple"    
## [1839,] "Google" "Meta"      "HP"        "Netflix"   "Disney"   
## [1840,] "Google" "Meta"      "HP"        "Netflix"   "Lenovo"   
## [1841,] "Google" "Meta"      "HP"        "Netflix"   "Microsoft"
## [1842,] "Google" "Meta"      "HP"        "Netflix"   "Steam"    
## [1843,] "Google" "Meta"      "HP"        "Steam"     "Amazon"   
## [1844,] "Google" "Meta"      "HP"        "Steam"     "Apple"    
## [1845,] "Google" "Meta"      "HP"        "Steam"     "Disney"   
## [1846,] "Google" "Meta"      "HP"        "Steam"     "Lenovo"   
## [1847,] "Google" "Meta"      "HP"        "Steam"     "Microsoft"
## [1848,] "Google" "Meta"      "HP"        "Steam"     "Netflix"  
## [1849,] "Google" "Meta"      "Lenovo"    "Amazon"    "Apple"    
## [1850,] "Google" "Meta"      "Lenovo"    "Amazon"    "Disney"   
## [1851,] "Google" "Meta"      "Lenovo"    "Amazon"    "HP"       
## [1852,] "Google" "Meta"      "Lenovo"    "Amazon"    "Microsoft"
## [1853,] "Google" "Meta"      "Lenovo"    "Amazon"    "Netflix"  
## [1854,] "Google" "Meta"      "Lenovo"    "Amazon"    "Steam"    
## [1855,] "Google" "Meta"      "Lenovo"    "Apple"     "Amazon"   
## [1856,] "Google" "Meta"      "Lenovo"    "Apple"     "Disney"   
## [1857,] "Google" "Meta"      "Lenovo"    "Apple"     "HP"       
## [1858,] "Google" "Meta"      "Lenovo"    "Apple"     "Microsoft"
## [1859,] "Google" "Meta"      "Lenovo"    "Apple"     "Netflix"  
## [1860,] "Google" "Meta"      "Lenovo"    "Apple"     "Steam"    
## [1861,] "Google" "Meta"      "Lenovo"    "Disney"    "Amazon"   
## [1862,] "Google" "Meta"      "Lenovo"    "Disney"    "Apple"    
## [1863,] "Google" "Meta"      "Lenovo"    "Disney"    "HP"       
## [1864,] "Google" "Meta"      "Lenovo"    "Disney"    "Microsoft"
## [1865,] "Google" "Meta"      "Lenovo"    "Disney"    "Netflix"  
## [1866,] "Google" "Meta"      "Lenovo"    "Disney"    "Steam"    
## [1867,] "Google" "Meta"      "Lenovo"    "HP"        "Amazon"   
## [1868,] "Google" "Meta"      "Lenovo"    "HP"        "Apple"    
## [1869,] "Google" "Meta"      "Lenovo"    "HP"        "Disney"   
## [1870,] "Google" "Meta"      "Lenovo"    "HP"        "Microsoft"
## [1871,] "Google" "Meta"      "Lenovo"    "HP"        "Netflix"  
## [1872,] "Google" "Meta"      "Lenovo"    "HP"        "Steam"    
## [1873,] "Google" "Meta"      "Lenovo"    "Microsoft" "Amazon"   
## [1874,] "Google" "Meta"      "Lenovo"    "Microsoft" "Apple"    
## [1875,] "Google" "Meta"      "Lenovo"    "Microsoft" "Disney"   
## [1876,] "Google" "Meta"      "Lenovo"    "Microsoft" "HP"       
## [1877,] "Google" "Meta"      "Lenovo"    "Microsoft" "Netflix"  
## [1878,] "Google" "Meta"      "Lenovo"    "Microsoft" "Steam"    
## [1879,] "Google" "Meta"      "Lenovo"    "Netflix"   "Amazon"   
## [1880,] "Google" "Meta"      "Lenovo"    "Netflix"   "Apple"    
## [1881,] "Google" "Meta"      "Lenovo"    "Netflix"   "Disney"   
## [1882,] "Google" "Meta"      "Lenovo"    "Netflix"   "HP"       
## [1883,] "Google" "Meta"      "Lenovo"    "Netflix"   "Microsoft"
## [1884,] "Google" "Meta"      "Lenovo"    "Netflix"   "Steam"    
## [1885,] "Google" "Meta"      "Lenovo"    "Steam"     "Amazon"   
## [1886,] "Google" "Meta"      "Lenovo"    "Steam"     "Apple"    
## [1887,] "Google" "Meta"      "Lenovo"    "Steam"     "Disney"   
## [1888,] "Google" "Meta"      "Lenovo"    "Steam"     "HP"       
## [1889,] "Google" "Meta"      "Lenovo"    "Steam"     "Microsoft"
## [1890,] "Google" "Meta"      "Lenovo"    "Steam"     "Netflix"  
## [1891,] "Google" "Meta"      "Microsoft" "Amazon"    "Apple"    
## [1892,] "Google" "Meta"      "Microsoft" "Amazon"    "Disney"   
## [1893,] "Google" "Meta"      "Microsoft" "Amazon"    "HP"       
## [1894,] "Google" "Meta"      "Microsoft" "Amazon"    "Lenovo"   
## [1895,] "Google" "Meta"      "Microsoft" "Amazon"    "Netflix"  
## [1896,] "Google" "Meta"      "Microsoft" "Amazon"    "Steam"    
## [1897,] "Google" "Meta"      "Microsoft" "Apple"     "Amazon"   
## [1898,] "Google" "Meta"      "Microsoft" "Apple"     "Disney"   
## [1899,] "Google" "Meta"      "Microsoft" "Apple"     "HP"       
## [1900,] "Google" "Meta"      "Microsoft" "Apple"     "Lenovo"   
## [1901,] "Google" "Meta"      "Microsoft" "Apple"     "Netflix"  
## [1902,] "Google" "Meta"      "Microsoft" "Apple"     "Steam"    
## [1903,] "Google" "Meta"      "Microsoft" "Disney"    "Amazon"   
## [1904,] "Google" "Meta"      "Microsoft" "Disney"    "Apple"    
## [1905,] "Google" "Meta"      "Microsoft" "Disney"    "HP"       
## [1906,] "Google" "Meta"      "Microsoft" "Disney"    "Lenovo"   
## [1907,] "Google" "Meta"      "Microsoft" "Disney"    "Netflix"  
## [1908,] "Google" "Meta"      "Microsoft" "Disney"    "Steam"    
## [1909,] "Google" "Meta"      "Microsoft" "HP"        "Amazon"   
## [1910,] "Google" "Meta"      "Microsoft" "HP"        "Apple"    
## [1911,] "Google" "Meta"      "Microsoft" "HP"        "Disney"   
## [1912,] "Google" "Meta"      "Microsoft" "HP"        "Lenovo"   
## [1913,] "Google" "Meta"      "Microsoft" "HP"        "Netflix"  
## [1914,] "Google" "Meta"      "Microsoft" "HP"        "Steam"    
## [1915,] "Google" "Meta"      "Microsoft" "Lenovo"    "Amazon"   
## [1916,] "Google" "Meta"      "Microsoft" "Lenovo"    "Apple"    
## [1917,] "Google" "Meta"      "Microsoft" "Lenovo"    "Disney"   
## [1918,] "Google" "Meta"      "Microsoft" "Lenovo"    "HP"       
## [1919,] "Google" "Meta"      "Microsoft" "Lenovo"    "Netflix"  
## [1920,] "Google" "Meta"      "Microsoft" "Lenovo"    "Steam"    
## [1921,] "Google" "Meta"      "Microsoft" "Netflix"   "Amazon"   
## [1922,] "Google" "Meta"      "Microsoft" "Netflix"   "Apple"    
## [1923,] "Google" "Meta"      "Microsoft" "Netflix"   "Disney"   
## [1924,] "Google" "Meta"      "Microsoft" "Netflix"   "HP"       
## [1925,] "Google" "Meta"      "Microsoft" "Netflix"   "Lenovo"   
## [1926,] "Google" "Meta"      "Microsoft" "Netflix"   "Steam"    
## [1927,] "Google" "Meta"      "Microsoft" "Steam"     "Amazon"   
## [1928,] "Google" "Meta"      "Microsoft" "Steam"     "Apple"    
## [1929,] "Google" "Meta"      "Microsoft" "Steam"     "Disney"   
## [1930,] "Google" "Meta"      "Microsoft" "Steam"     "HP"       
## [1931,] "Google" "Meta"      "Microsoft" "Steam"     "Lenovo"   
## [1932,] "Google" "Meta"      "Microsoft" "Steam"     "Netflix"  
## [1933,] "Google" "Meta"      "Netflix"   "Amazon"    "Apple"    
## [1934,] "Google" "Meta"      "Netflix"   "Amazon"    "Disney"   
## [1935,] "Google" "Meta"      "Netflix"   "Amazon"    "HP"       
## [1936,] "Google" "Meta"      "Netflix"   "Amazon"    "Lenovo"   
## [1937,] "Google" "Meta"      "Netflix"   "Amazon"    "Microsoft"
## [1938,] "Google" "Meta"      "Netflix"   "Amazon"    "Steam"    
## [1939,] "Google" "Meta"      "Netflix"   "Apple"     "Amazon"   
## [1940,] "Google" "Meta"      "Netflix"   "Apple"     "Disney"   
## [1941,] "Google" "Meta"      "Netflix"   "Apple"     "HP"       
## [1942,] "Google" "Meta"      "Netflix"   "Apple"     "Lenovo"   
## [1943,] "Google" "Meta"      "Netflix"   "Apple"     "Microsoft"
## [1944,] "Google" "Meta"      "Netflix"   "Apple"     "Steam"    
## [1945,] "Google" "Meta"      "Netflix"   "Disney"    "Amazon"   
## [1946,] "Google" "Meta"      "Netflix"   "Disney"    "Apple"    
## [1947,] "Google" "Meta"      "Netflix"   "Disney"    "HP"       
## [1948,] "Google" "Meta"      "Netflix"   "Disney"    "Lenovo"   
## [1949,] "Google" "Meta"      "Netflix"   "Disney"    "Microsoft"
## [1950,] "Google" "Meta"      "Netflix"   "Disney"    "Steam"    
## [1951,] "Google" "Meta"      "Netflix"   "HP"        "Amazon"   
## [1952,] "Google" "Meta"      "Netflix"   "HP"        "Apple"    
## [1953,] "Google" "Meta"      "Netflix"   "HP"        "Disney"   
## [1954,] "Google" "Meta"      "Netflix"   "HP"        "Lenovo"   
## [1955,] "Google" "Meta"      "Netflix"   "HP"        "Microsoft"
## [1956,] "Google" "Meta"      "Netflix"   "HP"        "Steam"    
## [1957,] "Google" "Meta"      "Netflix"   "Lenovo"    "Amazon"   
## [1958,] "Google" "Meta"      "Netflix"   "Lenovo"    "Apple"    
## [1959,] "Google" "Meta"      "Netflix"   "Lenovo"    "Disney"   
## [1960,] "Google" "Meta"      "Netflix"   "Lenovo"    "HP"       
## [1961,] "Google" "Meta"      "Netflix"   "Lenovo"    "Microsoft"
## [1962,] "Google" "Meta"      "Netflix"   "Lenovo"    "Steam"    
## [1963,] "Google" "Meta"      "Netflix"   "Microsoft" "Amazon"   
## [1964,] "Google" "Meta"      "Netflix"   "Microsoft" "Apple"    
## [1965,] "Google" "Meta"      "Netflix"   "Microsoft" "Disney"   
## [1966,] "Google" "Meta"      "Netflix"   "Microsoft" "HP"       
## [1967,] "Google" "Meta"      "Netflix"   "Microsoft" "Lenovo"   
## [1968,] "Google" "Meta"      "Netflix"   "Microsoft" "Steam"    
## [1969,] "Google" "Meta"      "Netflix"   "Steam"     "Amazon"   
## [1970,] "Google" "Meta"      "Netflix"   "Steam"     "Apple"    
## [1971,] "Google" "Meta"      "Netflix"   "Steam"     "Disney"   
## [1972,] "Google" "Meta"      "Netflix"   "Steam"     "HP"       
## [1973,] "Google" "Meta"      "Netflix"   "Steam"     "Lenovo"   
## [1974,] "Google" "Meta"      "Netflix"   "Steam"     "Microsoft"
## [1975,] "Google" "Meta"      "Steam"     "Amazon"    "Apple"    
## [1976,] "Google" "Meta"      "Steam"     "Amazon"    "Disney"   
## [1977,] "Google" "Meta"      "Steam"     "Amazon"    "HP"       
## [1978,] "Google" "Meta"      "Steam"     "Amazon"    "Lenovo"   
## [1979,] "Google" "Meta"      "Steam"     "Amazon"    "Microsoft"
## [1980,] "Google" "Meta"      "Steam"     "Amazon"    "Netflix"  
## [1981,] "Google" "Meta"      "Steam"     "Apple"     "Amazon"   
## [1982,] "Google" "Meta"      "Steam"     "Apple"     "Disney"   
## [1983,] "Google" "Meta"      "Steam"     "Apple"     "HP"       
## [1984,] "Google" "Meta"      "Steam"     "Apple"     "Lenovo"   
## [1985,] "Google" "Meta"      "Steam"     "Apple"     "Microsoft"
## [1986,] "Google" "Meta"      "Steam"     "Apple"     "Netflix"  
## [1987,] "Google" "Meta"      "Steam"     "Disney"    "Amazon"   
## [1988,] "Google" "Meta"      "Steam"     "Disney"    "Apple"    
## [1989,] "Google" "Meta"      "Steam"     "Disney"    "HP"       
## [1990,] "Google" "Meta"      "Steam"     "Disney"    "Lenovo"   
## [1991,] "Google" "Meta"      "Steam"     "Disney"    "Microsoft"
## [1992,] "Google" "Meta"      "Steam"     "Disney"    "Netflix"  
## [1993,] "Google" "Meta"      "Steam"     "HP"        "Amazon"   
## [1994,] "Google" "Meta"      "Steam"     "HP"        "Apple"    
## [1995,] "Google" "Meta"      "Steam"     "HP"        "Disney"   
## [1996,] "Google" "Meta"      "Steam"     "HP"        "Lenovo"   
## [1997,] "Google" "Meta"      "Steam"     "HP"        "Microsoft"
## [1998,] "Google" "Meta"      "Steam"     "HP"        "Netflix"  
## [1999,] "Google" "Meta"      "Steam"     "Lenovo"    "Amazon"   
## [2000,] "Google" "Meta"      "Steam"     "Lenovo"    "Apple"    
## [2001,] "Google" "Meta"      "Steam"     "Lenovo"    "Disney"   
## [2002,] "Google" "Meta"      "Steam"     "Lenovo"    "HP"       
## [2003,] "Google" "Meta"      "Steam"     "Lenovo"    "Microsoft"
## [2004,] "Google" "Meta"      "Steam"     "Lenovo"    "Netflix"  
## [2005,] "Google" "Meta"      "Steam"     "Microsoft" "Amazon"   
## [2006,] "Google" "Meta"      "Steam"     "Microsoft" "Apple"    
## [2007,] "Google" "Meta"      "Steam"     "Microsoft" "Disney"   
## [2008,] "Google" "Meta"      "Steam"     "Microsoft" "HP"       
## [2009,] "Google" "Meta"      "Steam"     "Microsoft" "Lenovo"   
## [2010,] "Google" "Meta"      "Steam"     "Microsoft" "Netflix"  
## [2011,] "Google" "Meta"      "Steam"     "Netflix"   "Amazon"   
## [2012,] "Google" "Meta"      "Steam"     "Netflix"   "Apple"    
## [2013,] "Google" "Meta"      "Steam"     "Netflix"   "Disney"   
## [2014,] "Google" "Meta"      "Steam"     "Netflix"   "HP"       
## [2015,] "Google" "Meta"      "Steam"     "Netflix"   "Lenovo"   
## [2016,] "Google" "Meta"      "Steam"     "Netflix"   "Microsoft"
## [2017,] "Google" "Microsoft" "Amazon"    "Apple"     "Disney"   
## [2018,] "Google" "Microsoft" "Amazon"    "Apple"     "HP"       
## [2019,] "Google" "Microsoft" "Amazon"    "Apple"     "Lenovo"   
## [2020,] "Google" "Microsoft" "Amazon"    "Apple"     "Meta"     
## [2021,] "Google" "Microsoft" "Amazon"    "Apple"     "Netflix"  
## [2022,] "Google" "Microsoft" "Amazon"    "Apple"     "Steam"    
## [2023,] "Google" "Microsoft" "Amazon"    "Disney"    "Apple"    
## [2024,] "Google" "Microsoft" "Amazon"    "Disney"    "HP"       
## [2025,] "Google" "Microsoft" "Amazon"    "Disney"    "Lenovo"   
## [2026,] "Google" "Microsoft" "Amazon"    "Disney"    "Meta"     
## [2027,] "Google" "Microsoft" "Amazon"    "Disney"    "Netflix"  
## [2028,] "Google" "Microsoft" "Amazon"    "Disney"    "Steam"    
## [2029,] "Google" "Microsoft" "Amazon"    "HP"        "Apple"    
## [2030,] "Google" "Microsoft" "Amazon"    "HP"        "Disney"   
## [2031,] "Google" "Microsoft" "Amazon"    "HP"        "Lenovo"   
## [2032,] "Google" "Microsoft" "Amazon"    "HP"        "Meta"     
## [2033,] "Google" "Microsoft" "Amazon"    "HP"        "Netflix"  
## [2034,] "Google" "Microsoft" "Amazon"    "HP"        "Steam"    
## [2035,] "Google" "Microsoft" "Amazon"    "Lenovo"    "Apple"    
## [2036,] "Google" "Microsoft" "Amazon"    "Lenovo"    "Disney"   
## [2037,] "Google" "Microsoft" "Amazon"    "Lenovo"    "HP"       
## [2038,] "Google" "Microsoft" "Amazon"    "Lenovo"    "Meta"     
## [2039,] "Google" "Microsoft" "Amazon"    "Lenovo"    "Netflix"  
## [2040,] "Google" "Microsoft" "Amazon"    "Lenovo"    "Steam"    
## [2041,] "Google" "Microsoft" "Amazon"    "Meta"      "Apple"    
## [2042,] "Google" "Microsoft" "Amazon"    "Meta"      "Disney"   
## [2043,] "Google" "Microsoft" "Amazon"    "Meta"      "HP"       
## [2044,] "Google" "Microsoft" "Amazon"    "Meta"      "Lenovo"   
## [2045,] "Google" "Microsoft" "Amazon"    "Meta"      "Netflix"  
## [2046,] "Google" "Microsoft" "Amazon"    "Meta"      "Steam"    
## [2047,] "Google" "Microsoft" "Amazon"    "Netflix"   "Apple"    
## [2048,] "Google" "Microsoft" "Amazon"    "Netflix"   "Disney"   
## [2049,] "Google" "Microsoft" "Amazon"    "Netflix"   "HP"       
## [2050,] "Google" "Microsoft" "Amazon"    "Netflix"   "Lenovo"   
## [2051,] "Google" "Microsoft" "Amazon"    "Netflix"   "Meta"     
## [2052,] "Google" "Microsoft" "Amazon"    "Netflix"   "Steam"    
## [2053,] "Google" "Microsoft" "Amazon"    "Steam"     "Apple"    
## [2054,] "Google" "Microsoft" "Amazon"    "Steam"     "Disney"   
## [2055,] "Google" "Microsoft" "Amazon"    "Steam"     "HP"       
## [2056,] "Google" "Microsoft" "Amazon"    "Steam"     "Lenovo"   
## [2057,] "Google" "Microsoft" "Amazon"    "Steam"     "Meta"     
## [2058,] "Google" "Microsoft" "Amazon"    "Steam"     "Netflix"  
## [2059,] "Google" "Microsoft" "Apple"     "Amazon"    "Disney"   
## [2060,] "Google" "Microsoft" "Apple"     "Amazon"    "HP"       
## [2061,] "Google" "Microsoft" "Apple"     "Amazon"    "Lenovo"   
## [2062,] "Google" "Microsoft" "Apple"     "Amazon"    "Meta"     
## [2063,] "Google" "Microsoft" "Apple"     "Amazon"    "Netflix"  
## [2064,] "Google" "Microsoft" "Apple"     "Amazon"    "Steam"    
## [2065,] "Google" "Microsoft" "Apple"     "Disney"    "Amazon"   
## [2066,] "Google" "Microsoft" "Apple"     "Disney"    "HP"       
## [2067,] "Google" "Microsoft" "Apple"     "Disney"    "Lenovo"   
## [2068,] "Google" "Microsoft" "Apple"     "Disney"    "Meta"     
## [2069,] "Google" "Microsoft" "Apple"     "Disney"    "Netflix"  
## [2070,] "Google" "Microsoft" "Apple"     "Disney"    "Steam"    
## [2071,] "Google" "Microsoft" "Apple"     "HP"        "Amazon"   
## [2072,] "Google" "Microsoft" "Apple"     "HP"        "Disney"   
## [2073,] "Google" "Microsoft" "Apple"     "HP"        "Lenovo"   
## [2074,] "Google" "Microsoft" "Apple"     "HP"        "Meta"     
## [2075,] "Google" "Microsoft" "Apple"     "HP"        "Netflix"  
## [2076,] "Google" "Microsoft" "Apple"     "HP"        "Steam"    
## [2077,] "Google" "Microsoft" "Apple"     "Lenovo"    "Amazon"   
## [2078,] "Google" "Microsoft" "Apple"     "Lenovo"    "Disney"   
## [2079,] "Google" "Microsoft" "Apple"     "Lenovo"    "HP"       
## [2080,] "Google" "Microsoft" "Apple"     "Lenovo"    "Meta"     
## [2081,] "Google" "Microsoft" "Apple"     "Lenovo"    "Netflix"  
## [2082,] "Google" "Microsoft" "Apple"     "Lenovo"    "Steam"    
## [2083,] "Google" "Microsoft" "Apple"     "Meta"      "Amazon"   
## [2084,] "Google" "Microsoft" "Apple"     "Meta"      "Disney"   
## [2085,] "Google" "Microsoft" "Apple"     "Meta"      "HP"       
## [2086,] "Google" "Microsoft" "Apple"     "Meta"      "Lenovo"   
## [2087,] "Google" "Microsoft" "Apple"     "Meta"      "Netflix"  
## [2088,] "Google" "Microsoft" "Apple"     "Meta"      "Steam"    
## [2089,] "Google" "Microsoft" "Apple"     "Netflix"   "Amazon"   
## [2090,] "Google" "Microsoft" "Apple"     "Netflix"   "Disney"   
## [2091,] "Google" "Microsoft" "Apple"     "Netflix"   "HP"       
## [2092,] "Google" "Microsoft" "Apple"     "Netflix"   "Lenovo"   
## [2093,] "Google" "Microsoft" "Apple"     "Netflix"   "Meta"     
## [2094,] "Google" "Microsoft" "Apple"     "Netflix"   "Steam"    
## [2095,] "Google" "Microsoft" "Apple"     "Steam"     "Amazon"   
## [2096,] "Google" "Microsoft" "Apple"     "Steam"     "Disney"   
## [2097,] "Google" "Microsoft" "Apple"     "Steam"     "HP"       
## [2098,] "Google" "Microsoft" "Apple"     "Steam"     "Lenovo"   
## [2099,] "Google" "Microsoft" "Apple"     "Steam"     "Meta"     
## [2100,] "Google" "Microsoft" "Apple"     "Steam"     "Netflix"  
## [2101,] "Google" "Microsoft" "Disney"    "Amazon"    "Apple"    
## [2102,] "Google" "Microsoft" "Disney"    "Amazon"    "HP"       
## [2103,] "Google" "Microsoft" "Disney"    "Amazon"    "Lenovo"   
## [2104,] "Google" "Microsoft" "Disney"    "Amazon"    "Meta"     
## [2105,] "Google" "Microsoft" "Disney"    "Amazon"    "Netflix"  
## [2106,] "Google" "Microsoft" "Disney"    "Amazon"    "Steam"    
## [2107,] "Google" "Microsoft" "Disney"    "Apple"     "Amazon"   
## [2108,] "Google" "Microsoft" "Disney"    "Apple"     "HP"       
## [2109,] "Google" "Microsoft" "Disney"    "Apple"     "Lenovo"   
## [2110,] "Google" "Microsoft" "Disney"    "Apple"     "Meta"     
## [2111,] "Google" "Microsoft" "Disney"    "Apple"     "Netflix"  
## [2112,] "Google" "Microsoft" "Disney"    "Apple"     "Steam"    
## [2113,] "Google" "Microsoft" "Disney"    "HP"        "Amazon"   
## [2114,] "Google" "Microsoft" "Disney"    "HP"        "Apple"    
## [2115,] "Google" "Microsoft" "Disney"    "HP"        "Lenovo"   
## [2116,] "Google" "Microsoft" "Disney"    "HP"        "Meta"     
## [2117,] "Google" "Microsoft" "Disney"    "HP"        "Netflix"  
## [2118,] "Google" "Microsoft" "Disney"    "HP"        "Steam"    
## [2119,] "Google" "Microsoft" "Disney"    "Lenovo"    "Amazon"   
## [2120,] "Google" "Microsoft" "Disney"    "Lenovo"    "Apple"    
## [2121,] "Google" "Microsoft" "Disney"    "Lenovo"    "HP"       
## [2122,] "Google" "Microsoft" "Disney"    "Lenovo"    "Meta"     
## [2123,] "Google" "Microsoft" "Disney"    "Lenovo"    "Netflix"  
## [2124,] "Google" "Microsoft" "Disney"    "Lenovo"    "Steam"    
## [2125,] "Google" "Microsoft" "Disney"    "Meta"      "Amazon"   
## [2126,] "Google" "Microsoft" "Disney"    "Meta"      "Apple"    
## [2127,] "Google" "Microsoft" "Disney"    "Meta"      "HP"       
## [2128,] "Google" "Microsoft" "Disney"    "Meta"      "Lenovo"   
## [2129,] "Google" "Microsoft" "Disney"    "Meta"      "Netflix"  
## [2130,] "Google" "Microsoft" "Disney"    "Meta"      "Steam"    
## [2131,] "Google" "Microsoft" "Disney"    "Netflix"   "Amazon"   
## [2132,] "Google" "Microsoft" "Disney"    "Netflix"   "Apple"    
## [2133,] "Google" "Microsoft" "Disney"    "Netflix"   "HP"       
## [2134,] "Google" "Microsoft" "Disney"    "Netflix"   "Lenovo"   
## [2135,] "Google" "Microsoft" "Disney"    "Netflix"   "Meta"     
## [2136,] "Google" "Microsoft" "Disney"    "Netflix"   "Steam"    
## [2137,] "Google" "Microsoft" "Disney"    "Steam"     "Amazon"   
## [2138,] "Google" "Microsoft" "Disney"    "Steam"     "Apple"    
## [2139,] "Google" "Microsoft" "Disney"    "Steam"     "HP"       
## [2140,] "Google" "Microsoft" "Disney"    "Steam"     "Lenovo"   
## [2141,] "Google" "Microsoft" "Disney"    "Steam"     "Meta"     
## [2142,] "Google" "Microsoft" "Disney"    "Steam"     "Netflix"  
## [2143,] "Google" "Microsoft" "HP"        "Amazon"    "Apple"    
## [2144,] "Google" "Microsoft" "HP"        "Amazon"    "Disney"   
## [2145,] "Google" "Microsoft" "HP"        "Amazon"    "Lenovo"   
## [2146,] "Google" "Microsoft" "HP"        "Amazon"    "Meta"     
## [2147,] "Google" "Microsoft" "HP"        "Amazon"    "Netflix"  
## [2148,] "Google" "Microsoft" "HP"        "Amazon"    "Steam"    
## [2149,] "Google" "Microsoft" "HP"        "Apple"     "Amazon"   
## [2150,] "Google" "Microsoft" "HP"        "Apple"     "Disney"   
## [2151,] "Google" "Microsoft" "HP"        "Apple"     "Lenovo"   
## [2152,] "Google" "Microsoft" "HP"        "Apple"     "Meta"     
## [2153,] "Google" "Microsoft" "HP"        "Apple"     "Netflix"  
## [2154,] "Google" "Microsoft" "HP"        "Apple"     "Steam"    
## [2155,] "Google" "Microsoft" "HP"        "Disney"    "Amazon"   
## [2156,] "Google" "Microsoft" "HP"        "Disney"    "Apple"    
## [2157,] "Google" "Microsoft" "HP"        "Disney"    "Lenovo"   
## [2158,] "Google" "Microsoft" "HP"        "Disney"    "Meta"     
## [2159,] "Google" "Microsoft" "HP"        "Disney"    "Netflix"  
## [2160,] "Google" "Microsoft" "HP"        "Disney"    "Steam"    
## [2161,] "Google" "Microsoft" "HP"        "Lenovo"    "Amazon"   
## [2162,] "Google" "Microsoft" "HP"        "Lenovo"    "Apple"    
## [2163,] "Google" "Microsoft" "HP"        "Lenovo"    "Disney"   
## [2164,] "Google" "Microsoft" "HP"        "Lenovo"    "Meta"     
## [2165,] "Google" "Microsoft" "HP"        "Lenovo"    "Netflix"  
## [2166,] "Google" "Microsoft" "HP"        "Lenovo"    "Steam"    
## [2167,] "Google" "Microsoft" "HP"        "Meta"      "Amazon"   
## [2168,] "Google" "Microsoft" "HP"        "Meta"      "Apple"    
## [2169,] "Google" "Microsoft" "HP"        "Meta"      "Disney"   
## [2170,] "Google" "Microsoft" "HP"        "Meta"      "Lenovo"   
## [2171,] "Google" "Microsoft" "HP"        "Meta"      "Netflix"  
## [2172,] "Google" "Microsoft" "HP"        "Meta"      "Steam"    
## [2173,] "Google" "Microsoft" "HP"        "Netflix"   "Amazon"   
## [2174,] "Google" "Microsoft" "HP"        "Netflix"   "Apple"    
## [2175,] "Google" "Microsoft" "HP"        "Netflix"   "Disney"   
## [2176,] "Google" "Microsoft" "HP"        "Netflix"   "Lenovo"   
## [2177,] "Google" "Microsoft" "HP"        "Netflix"   "Meta"     
## [2178,] "Google" "Microsoft" "HP"        "Netflix"   "Steam"    
## [2179,] "Google" "Microsoft" "HP"        "Steam"     "Amazon"   
## [2180,] "Google" "Microsoft" "HP"        "Steam"     "Apple"    
## [2181,] "Google" "Microsoft" "HP"        "Steam"     "Disney"   
## [2182,] "Google" "Microsoft" "HP"        "Steam"     "Lenovo"   
## [2183,] "Google" "Microsoft" "HP"        "Steam"     "Meta"     
## [2184,] "Google" "Microsoft" "HP"        "Steam"     "Netflix"  
## [2185,] "Google" "Microsoft" "Lenovo"    "Amazon"    "Apple"    
## [2186,] "Google" "Microsoft" "Lenovo"    "Amazon"    "Disney"   
## [2187,] "Google" "Microsoft" "Lenovo"    "Amazon"    "HP"       
## [2188,] "Google" "Microsoft" "Lenovo"    "Amazon"    "Meta"     
## [2189,] "Google" "Microsoft" "Lenovo"    "Amazon"    "Netflix"  
## [2190,] "Google" "Microsoft" "Lenovo"    "Amazon"    "Steam"    
## [2191,] "Google" "Microsoft" "Lenovo"    "Apple"     "Amazon"   
## [2192,] "Google" "Microsoft" "Lenovo"    "Apple"     "Disney"   
## [2193,] "Google" "Microsoft" "Lenovo"    "Apple"     "HP"       
## [2194,] "Google" "Microsoft" "Lenovo"    "Apple"     "Meta"     
## [2195,] "Google" "Microsoft" "Lenovo"    "Apple"     "Netflix"  
## [2196,] "Google" "Microsoft" "Lenovo"    "Apple"     "Steam"    
## [2197,] "Google" "Microsoft" "Lenovo"    "Disney"    "Amazon"   
## [2198,] "Google" "Microsoft" "Lenovo"    "Disney"    "Apple"    
## [2199,] "Google" "Microsoft" "Lenovo"    "Disney"    "HP"       
## [2200,] "Google" "Microsoft" "Lenovo"    "Disney"    "Meta"     
## [2201,] "Google" "Microsoft" "Lenovo"    "Disney"    "Netflix"  
## [2202,] "Google" "Microsoft" "Lenovo"    "Disney"    "Steam"    
## [2203,] "Google" "Microsoft" "Lenovo"    "HP"        "Amazon"   
## [2204,] "Google" "Microsoft" "Lenovo"    "HP"        "Apple"    
## [2205,] "Google" "Microsoft" "Lenovo"    "HP"        "Disney"   
## [2206,] "Google" "Microsoft" "Lenovo"    "HP"        "Meta"     
## [2207,] "Google" "Microsoft" "Lenovo"    "HP"        "Netflix"  
## [2208,] "Google" "Microsoft" "Lenovo"    "HP"        "Steam"    
## [2209,] "Google" "Microsoft" "Lenovo"    "Meta"      "Amazon"   
## [2210,] "Google" "Microsoft" "Lenovo"    "Meta"      "Apple"    
## [2211,] "Google" "Microsoft" "Lenovo"    "Meta"      "Disney"   
## [2212,] "Google" "Microsoft" "Lenovo"    "Meta"      "HP"       
## [2213,] "Google" "Microsoft" "Lenovo"    "Meta"      "Netflix"  
## [2214,] "Google" "Microsoft" "Lenovo"    "Meta"      "Steam"    
## [2215,] "Google" "Microsoft" "Lenovo"    "Netflix"   "Amazon"   
## [2216,] "Google" "Microsoft" "Lenovo"    "Netflix"   "Apple"    
## [2217,] "Google" "Microsoft" "Lenovo"    "Netflix"   "Disney"   
## [2218,] "Google" "Microsoft" "Lenovo"    "Netflix"   "HP"       
## [2219,] "Google" "Microsoft" "Lenovo"    "Netflix"   "Meta"     
## [2220,] "Google" "Microsoft" "Lenovo"    "Netflix"   "Steam"    
## [2221,] "Google" "Microsoft" "Lenovo"    "Steam"     "Amazon"   
## [2222,] "Google" "Microsoft" "Lenovo"    "Steam"     "Apple"    
## [2223,] "Google" "Microsoft" "Lenovo"    "Steam"     "Disney"   
## [2224,] "Google" "Microsoft" "Lenovo"    "Steam"     "HP"       
## [2225,] "Google" "Microsoft" "Lenovo"    "Steam"     "Meta"     
## [2226,] "Google" "Microsoft" "Lenovo"    "Steam"     "Netflix"  
## [2227,] "Google" "Microsoft" "Meta"      "Amazon"    "Apple"    
## [2228,] "Google" "Microsoft" "Meta"      "Amazon"    "Disney"   
## [2229,] "Google" "Microsoft" "Meta"      "Amazon"    "HP"       
## [2230,] "Google" "Microsoft" "Meta"      "Amazon"    "Lenovo"   
## [2231,] "Google" "Microsoft" "Meta"      "Amazon"    "Netflix"  
## [2232,] "Google" "Microsoft" "Meta"      "Amazon"    "Steam"    
## [2233,] "Google" "Microsoft" "Meta"      "Apple"     "Amazon"   
## [2234,] "Google" "Microsoft" "Meta"      "Apple"     "Disney"   
## [2235,] "Google" "Microsoft" "Meta"      "Apple"     "HP"       
## [2236,] "Google" "Microsoft" "Meta"      "Apple"     "Lenovo"   
## [2237,] "Google" "Microsoft" "Meta"      "Apple"     "Netflix"  
## [2238,] "Google" "Microsoft" "Meta"      "Apple"     "Steam"    
## [2239,] "Google" "Microsoft" "Meta"      "Disney"    "Amazon"   
## [2240,] "Google" "Microsoft" "Meta"      "Disney"    "Apple"    
## [2241,] "Google" "Microsoft" "Meta"      "Disney"    "HP"       
## [2242,] "Google" "Microsoft" "Meta"      "Disney"    "Lenovo"   
## [2243,] "Google" "Microsoft" "Meta"      "Disney"    "Netflix"  
## [2244,] "Google" "Microsoft" "Meta"      "Disney"    "Steam"    
## [2245,] "Google" "Microsoft" "Meta"      "HP"        "Amazon"   
## [2246,] "Google" "Microsoft" "Meta"      "HP"        "Apple"    
## [2247,] "Google" "Microsoft" "Meta"      "HP"        "Disney"   
## [2248,] "Google" "Microsoft" "Meta"      "HP"        "Lenovo"   
## [2249,] "Google" "Microsoft" "Meta"      "HP"        "Netflix"  
## [2250,] "Google" "Microsoft" "Meta"      "HP"        "Steam"    
## [2251,] "Google" "Microsoft" "Meta"      "Lenovo"    "Amazon"   
## [2252,] "Google" "Microsoft" "Meta"      "Lenovo"    "Apple"    
## [2253,] "Google" "Microsoft" "Meta"      "Lenovo"    "Disney"   
## [2254,] "Google" "Microsoft" "Meta"      "Lenovo"    "HP"       
## [2255,] "Google" "Microsoft" "Meta"      "Lenovo"    "Netflix"  
## [2256,] "Google" "Microsoft" "Meta"      "Lenovo"    "Steam"    
## [2257,] "Google" "Microsoft" "Meta"      "Netflix"   "Amazon"   
## [2258,] "Google" "Microsoft" "Meta"      "Netflix"   "Apple"    
## [2259,] "Google" "Microsoft" "Meta"      "Netflix"   "Disney"   
## [2260,] "Google" "Microsoft" "Meta"      "Netflix"   "HP"       
## [2261,] "Google" "Microsoft" "Meta"      "Netflix"   "Lenovo"   
## [2262,] "Google" "Microsoft" "Meta"      "Netflix"   "Steam"    
## [2263,] "Google" "Microsoft" "Meta"      "Steam"     "Amazon"   
## [2264,] "Google" "Microsoft" "Meta"      "Steam"     "Apple"    
## [2265,] "Google" "Microsoft" "Meta"      "Steam"     "Disney"   
## [2266,] "Google" "Microsoft" "Meta"      "Steam"     "HP"       
## [2267,] "Google" "Microsoft" "Meta"      "Steam"     "Lenovo"   
## [2268,] "Google" "Microsoft" "Meta"      "Steam"     "Netflix"  
## [2269,] "Google" "Microsoft" "Netflix"   "Amazon"    "Apple"    
## [2270,] "Google" "Microsoft" "Netflix"   "Amazon"    "Disney"   
## [2271,] "Google" "Microsoft" "Netflix"   "Amazon"    "HP"       
## [2272,] "Google" "Microsoft" "Netflix"   "Amazon"    "Lenovo"   
## [2273,] "Google" "Microsoft" "Netflix"   "Amazon"    "Meta"     
## [2274,] "Google" "Microsoft" "Netflix"   "Amazon"    "Steam"    
## [2275,] "Google" "Microsoft" "Netflix"   "Apple"     "Amazon"   
## [2276,] "Google" "Microsoft" "Netflix"   "Apple"     "Disney"   
## [2277,] "Google" "Microsoft" "Netflix"   "Apple"     "HP"       
## [2278,] "Google" "Microsoft" "Netflix"   "Apple"     "Lenovo"   
## [2279,] "Google" "Microsoft" "Netflix"   "Apple"     "Meta"     
## [2280,] "Google" "Microsoft" "Netflix"   "Apple"     "Steam"    
## [2281,] "Google" "Microsoft" "Netflix"   "Disney"    "Amazon"   
## [2282,] "Google" "Microsoft" "Netflix"   "Disney"    "Apple"    
## [2283,] "Google" "Microsoft" "Netflix"   "Disney"    "HP"       
## [2284,] "Google" "Microsoft" "Netflix"   "Disney"    "Lenovo"   
## [2285,] "Google" "Microsoft" "Netflix"   "Disney"    "Meta"     
## [2286,] "Google" "Microsoft" "Netflix"   "Disney"    "Steam"    
## [2287,] "Google" "Microsoft" "Netflix"   "HP"        "Amazon"   
## [2288,] "Google" "Microsoft" "Netflix"   "HP"        "Apple"    
## [2289,] "Google" "Microsoft" "Netflix"   "HP"        "Disney"   
## [2290,] "Google" "Microsoft" "Netflix"   "HP"        "Lenovo"   
## [2291,] "Google" "Microsoft" "Netflix"   "HP"        "Meta"     
## [2292,] "Google" "Microsoft" "Netflix"   "HP"        "Steam"    
## [2293,] "Google" "Microsoft" "Netflix"   "Lenovo"    "Amazon"   
## [2294,] "Google" "Microsoft" "Netflix"   "Lenovo"    "Apple"    
## [2295,] "Google" "Microsoft" "Netflix"   "Lenovo"    "Disney"   
## [2296,] "Google" "Microsoft" "Netflix"   "Lenovo"    "HP"       
## [2297,] "Google" "Microsoft" "Netflix"   "Lenovo"    "Meta"     
## [2298,] "Google" "Microsoft" "Netflix"   "Lenovo"    "Steam"    
## [2299,] "Google" "Microsoft" "Netflix"   "Meta"      "Amazon"   
## [2300,] "Google" "Microsoft" "Netflix"   "Meta"      "Apple"    
## [2301,] "Google" "Microsoft" "Netflix"   "Meta"      "Disney"   
## [2302,] "Google" "Microsoft" "Netflix"   "Meta"      "HP"       
## [2303,] "Google" "Microsoft" "Netflix"   "Meta"      "Lenovo"   
## [2304,] "Google" "Microsoft" "Netflix"   "Meta"      "Steam"    
## [2305,] "Google" "Microsoft" "Netflix"   "Steam"     "Amazon"   
## [2306,] "Google" "Microsoft" "Netflix"   "Steam"     "Apple"    
## [2307,] "Google" "Microsoft" "Netflix"   "Steam"     "Disney"   
## [2308,] "Google" "Microsoft" "Netflix"   "Steam"     "HP"       
## [2309,] "Google" "Microsoft" "Netflix"   "Steam"     "Lenovo"   
## [2310,] "Google" "Microsoft" "Netflix"   "Steam"     "Meta"     
## [2311,] "Google" "Microsoft" "Steam"     "Amazon"    "Apple"    
## [2312,] "Google" "Microsoft" "Steam"     "Amazon"    "Disney"   
## [2313,] "Google" "Microsoft" "Steam"     "Amazon"    "HP"       
## [2314,] "Google" "Microsoft" "Steam"     "Amazon"    "Lenovo"   
## [2315,] "Google" "Microsoft" "Steam"     "Amazon"    "Meta"     
## [2316,] "Google" "Microsoft" "Steam"     "Amazon"    "Netflix"  
## [2317,] "Google" "Microsoft" "Steam"     "Apple"     "Amazon"   
## [2318,] "Google" "Microsoft" "Steam"     "Apple"     "Disney"   
## [2319,] "Google" "Microsoft" "Steam"     "Apple"     "HP"       
## [2320,] "Google" "Microsoft" "Steam"     "Apple"     "Lenovo"   
## [2321,] "Google" "Microsoft" "Steam"     "Apple"     "Meta"     
## [2322,] "Google" "Microsoft" "Steam"     "Apple"     "Netflix"  
## [2323,] "Google" "Microsoft" "Steam"     "Disney"    "Amazon"   
## [2324,] "Google" "Microsoft" "Steam"     "Disney"    "Apple"    
## [2325,] "Google" "Microsoft" "Steam"     "Disney"    "HP"       
## [2326,] "Google" "Microsoft" "Steam"     "Disney"    "Lenovo"   
## [2327,] "Google" "Microsoft" "Steam"     "Disney"    "Meta"     
## [2328,] "Google" "Microsoft" "Steam"     "Disney"    "Netflix"  
## [2329,] "Google" "Microsoft" "Steam"     "HP"        "Amazon"   
## [2330,] "Google" "Microsoft" "Steam"     "HP"        "Apple"    
## [2331,] "Google" "Microsoft" "Steam"     "HP"        "Disney"   
## [2332,] "Google" "Microsoft" "Steam"     "HP"        "Lenovo"   
## [2333,] "Google" "Microsoft" "Steam"     "HP"        "Meta"     
## [2334,] "Google" "Microsoft" "Steam"     "HP"        "Netflix"  
## [2335,] "Google" "Microsoft" "Steam"     "Lenovo"    "Amazon"   
## [2336,] "Google" "Microsoft" "Steam"     "Lenovo"    "Apple"    
## [2337,] "Google" "Microsoft" "Steam"     "Lenovo"    "Disney"   
## [2338,] "Google" "Microsoft" "Steam"     "Lenovo"    "HP"       
## [2339,] "Google" "Microsoft" "Steam"     "Lenovo"    "Meta"     
## [2340,] "Google" "Microsoft" "Steam"     "Lenovo"    "Netflix"  
## [2341,] "Google" "Microsoft" "Steam"     "Meta"      "Amazon"   
## [2342,] "Google" "Microsoft" "Steam"     "Meta"      "Apple"    
## [2343,] "Google" "Microsoft" "Steam"     "Meta"      "Disney"   
## [2344,] "Google" "Microsoft" "Steam"     "Meta"      "HP"       
## [2345,] "Google" "Microsoft" "Steam"     "Meta"      "Lenovo"   
## [2346,] "Google" "Microsoft" "Steam"     "Meta"      "Netflix"  
## [2347,] "Google" "Microsoft" "Steam"     "Netflix"   "Amazon"   
## [2348,] "Google" "Microsoft" "Steam"     "Netflix"   "Apple"    
## [2349,] "Google" "Microsoft" "Steam"     "Netflix"   "Disney"   
## [2350,] "Google" "Microsoft" "Steam"     "Netflix"   "HP"       
## [2351,] "Google" "Microsoft" "Steam"     "Netflix"   "Lenovo"   
## [2352,] "Google" "Microsoft" "Steam"     "Netflix"   "Meta"     
## [2353,] "Google" "Netflix"   "Amazon"    "Apple"     "Disney"   
## [2354,] "Google" "Netflix"   "Amazon"    "Apple"     "HP"       
## [2355,] "Google" "Netflix"   "Amazon"    "Apple"     "Lenovo"   
## [2356,] "Google" "Netflix"   "Amazon"    "Apple"     "Meta"     
## [2357,] "Google" "Netflix"   "Amazon"    "Apple"     "Microsoft"
## [2358,] "Google" "Netflix"   "Amazon"    "Apple"     "Steam"    
## [2359,] "Google" "Netflix"   "Amazon"    "Disney"    "Apple"    
## [2360,] "Google" "Netflix"   "Amazon"    "Disney"    "HP"       
## [2361,] "Google" "Netflix"   "Amazon"    "Disney"    "Lenovo"   
## [2362,] "Google" "Netflix"   "Amazon"    "Disney"    "Meta"     
## [2363,] "Google" "Netflix"   "Amazon"    "Disney"    "Microsoft"
## [2364,] "Google" "Netflix"   "Amazon"    "Disney"    "Steam"    
## [2365,] "Google" "Netflix"   "Amazon"    "HP"        "Apple"    
## [2366,] "Google" "Netflix"   "Amazon"    "HP"        "Disney"   
## [2367,] "Google" "Netflix"   "Amazon"    "HP"        "Lenovo"   
## [2368,] "Google" "Netflix"   "Amazon"    "HP"        "Meta"     
## [2369,] "Google" "Netflix"   "Amazon"    "HP"        "Microsoft"
## [2370,] "Google" "Netflix"   "Amazon"    "HP"        "Steam"    
## [2371,] "Google" "Netflix"   "Amazon"    "Lenovo"    "Apple"    
## [2372,] "Google" "Netflix"   "Amazon"    "Lenovo"    "Disney"   
## [2373,] "Google" "Netflix"   "Amazon"    "Lenovo"    "HP"       
## [2374,] "Google" "Netflix"   "Amazon"    "Lenovo"    "Meta"     
## [2375,] "Google" "Netflix"   "Amazon"    "Lenovo"    "Microsoft"
## [2376,] "Google" "Netflix"   "Amazon"    "Lenovo"    "Steam"    
## [2377,] "Google" "Netflix"   "Amazon"    "Meta"      "Apple"    
## [2378,] "Google" "Netflix"   "Amazon"    "Meta"      "Disney"   
## [2379,] "Google" "Netflix"   "Amazon"    "Meta"      "HP"       
## [2380,] "Google" "Netflix"   "Amazon"    "Meta"      "Lenovo"   
## [2381,] "Google" "Netflix"   "Amazon"    "Meta"      "Microsoft"
## [2382,] "Google" "Netflix"   "Amazon"    "Meta"      "Steam"    
## [2383,] "Google" "Netflix"   "Amazon"    "Microsoft" "Apple"    
## [2384,] "Google" "Netflix"   "Amazon"    "Microsoft" "Disney"   
## [2385,] "Google" "Netflix"   "Amazon"    "Microsoft" "HP"       
## [2386,] "Google" "Netflix"   "Amazon"    "Microsoft" "Lenovo"   
## [2387,] "Google" "Netflix"   "Amazon"    "Microsoft" "Meta"     
## [2388,] "Google" "Netflix"   "Amazon"    "Microsoft" "Steam"    
## [2389,] "Google" "Netflix"   "Amazon"    "Steam"     "Apple"    
## [2390,] "Google" "Netflix"   "Amazon"    "Steam"     "Disney"   
## [2391,] "Google" "Netflix"   "Amazon"    "Steam"     "HP"       
## [2392,] "Google" "Netflix"   "Amazon"    "Steam"     "Lenovo"   
## [2393,] "Google" "Netflix"   "Amazon"    "Steam"     "Meta"     
## [2394,] "Google" "Netflix"   "Amazon"    "Steam"     "Microsoft"
## [2395,] "Google" "Netflix"   "Apple"     "Amazon"    "Disney"   
## [2396,] "Google" "Netflix"   "Apple"     "Amazon"    "HP"       
## [2397,] "Google" "Netflix"   "Apple"     "Amazon"    "Lenovo"   
## [2398,] "Google" "Netflix"   "Apple"     "Amazon"    "Meta"     
## [2399,] "Google" "Netflix"   "Apple"     "Amazon"    "Microsoft"
## [2400,] "Google" "Netflix"   "Apple"     "Amazon"    "Steam"    
## [2401,] "Google" "Netflix"   "Apple"     "Disney"    "Amazon"   
## [2402,] "Google" "Netflix"   "Apple"     "Disney"    "HP"       
## [2403,] "Google" "Netflix"   "Apple"     "Disney"    "Lenovo"   
## [2404,] "Google" "Netflix"   "Apple"     "Disney"    "Meta"     
## [2405,] "Google" "Netflix"   "Apple"     "Disney"    "Microsoft"
## [2406,] "Google" "Netflix"   "Apple"     "Disney"    "Steam"    
## [2407,] "Google" "Netflix"   "Apple"     "HP"        "Amazon"   
## [2408,] "Google" "Netflix"   "Apple"     "HP"        "Disney"   
## [2409,] "Google" "Netflix"   "Apple"     "HP"        "Lenovo"   
## [2410,] "Google" "Netflix"   "Apple"     "HP"        "Meta"     
## [2411,] "Google" "Netflix"   "Apple"     "HP"        "Microsoft"
## [2412,] "Google" "Netflix"   "Apple"     "HP"        "Steam"    
## [2413,] "Google" "Netflix"   "Apple"     "Lenovo"    "Amazon"   
## [2414,] "Google" "Netflix"   "Apple"     "Lenovo"    "Disney"   
## [2415,] "Google" "Netflix"   "Apple"     "Lenovo"    "HP"       
## [2416,] "Google" "Netflix"   "Apple"     "Lenovo"    "Meta"     
## [2417,] "Google" "Netflix"   "Apple"     "Lenovo"    "Microsoft"
## [2418,] "Google" "Netflix"   "Apple"     "Lenovo"    "Steam"    
## [2419,] "Google" "Netflix"   "Apple"     "Meta"      "Amazon"   
## [2420,] "Google" "Netflix"   "Apple"     "Meta"      "Disney"   
## [2421,] "Google" "Netflix"   "Apple"     "Meta"      "HP"       
## [2422,] "Google" "Netflix"   "Apple"     "Meta"      "Lenovo"   
## [2423,] "Google" "Netflix"   "Apple"     "Meta"      "Microsoft"
## [2424,] "Google" "Netflix"   "Apple"     "Meta"      "Steam"    
## [2425,] "Google" "Netflix"   "Apple"     "Microsoft" "Amazon"   
## [2426,] "Google" "Netflix"   "Apple"     "Microsoft" "Disney"   
## [2427,] "Google" "Netflix"   "Apple"     "Microsoft" "HP"       
## [2428,] "Google" "Netflix"   "Apple"     "Microsoft" "Lenovo"   
## [2429,] "Google" "Netflix"   "Apple"     "Microsoft" "Meta"     
## [2430,] "Google" "Netflix"   "Apple"     "Microsoft" "Steam"    
## [2431,] "Google" "Netflix"   "Apple"     "Steam"     "Amazon"   
## [2432,] "Google" "Netflix"   "Apple"     "Steam"     "Disney"   
## [2433,] "Google" "Netflix"   "Apple"     "Steam"     "HP"       
## [2434,] "Google" "Netflix"   "Apple"     "Steam"     "Lenovo"   
## [2435,] "Google" "Netflix"   "Apple"     "Steam"     "Meta"     
## [2436,] "Google" "Netflix"   "Apple"     "Steam"     "Microsoft"
## [2437,] "Google" "Netflix"   "Disney"    "Amazon"    "Apple"    
## [2438,] "Google" "Netflix"   "Disney"    "Amazon"    "HP"       
## [2439,] "Google" "Netflix"   "Disney"    "Amazon"    "Lenovo"   
## [2440,] "Google" "Netflix"   "Disney"    "Amazon"    "Meta"     
## [2441,] "Google" "Netflix"   "Disney"    "Amazon"    "Microsoft"
## [2442,] "Google" "Netflix"   "Disney"    "Amazon"    "Steam"    
## [2443,] "Google" "Netflix"   "Disney"    "Apple"     "Amazon"   
## [2444,] "Google" "Netflix"   "Disney"    "Apple"     "HP"       
## [2445,] "Google" "Netflix"   "Disney"    "Apple"     "Lenovo"   
## [2446,] "Google" "Netflix"   "Disney"    "Apple"     "Meta"     
## [2447,] "Google" "Netflix"   "Disney"    "Apple"     "Microsoft"
## [2448,] "Google" "Netflix"   "Disney"    "Apple"     "Steam"    
## [2449,] "Google" "Netflix"   "Disney"    "HP"        "Amazon"   
## [2450,] "Google" "Netflix"   "Disney"    "HP"        "Apple"    
## [2451,] "Google" "Netflix"   "Disney"    "HP"        "Lenovo"   
## [2452,] "Google" "Netflix"   "Disney"    "HP"        "Meta"     
## [2453,] "Google" "Netflix"   "Disney"    "HP"        "Microsoft"
## [2454,] "Google" "Netflix"   "Disney"    "HP"        "Steam"    
## [2455,] "Google" "Netflix"   "Disney"    "Lenovo"    "Amazon"   
## [2456,] "Google" "Netflix"   "Disney"    "Lenovo"    "Apple"    
## [2457,] "Google" "Netflix"   "Disney"    "Lenovo"    "HP"       
## [2458,] "Google" "Netflix"   "Disney"    "Lenovo"    "Meta"     
## [2459,] "Google" "Netflix"   "Disney"    "Lenovo"    "Microsoft"
## [2460,] "Google" "Netflix"   "Disney"    "Lenovo"    "Steam"    
## [2461,] "Google" "Netflix"   "Disney"    "Meta"      "Amazon"   
## [2462,] "Google" "Netflix"   "Disney"    "Meta"      "Apple"    
## [2463,] "Google" "Netflix"   "Disney"    "Meta"      "HP"       
## [2464,] "Google" "Netflix"   "Disney"    "Meta"      "Lenovo"   
## [2465,] "Google" "Netflix"   "Disney"    "Meta"      "Microsoft"
## [2466,] "Google" "Netflix"   "Disney"    "Meta"      "Steam"    
## [2467,] "Google" "Netflix"   "Disney"    "Microsoft" "Amazon"   
## [2468,] "Google" "Netflix"   "Disney"    "Microsoft" "Apple"    
## [2469,] "Google" "Netflix"   "Disney"    "Microsoft" "HP"       
## [2470,] "Google" "Netflix"   "Disney"    "Microsoft" "Lenovo"   
## [2471,] "Google" "Netflix"   "Disney"    "Microsoft" "Meta"     
## [2472,] "Google" "Netflix"   "Disney"    "Microsoft" "Steam"    
## [2473,] "Google" "Netflix"   "Disney"    "Steam"     "Amazon"   
## [2474,] "Google" "Netflix"   "Disney"    "Steam"     "Apple"    
## [2475,] "Google" "Netflix"   "Disney"    "Steam"     "HP"       
## [2476,] "Google" "Netflix"   "Disney"    "Steam"     "Lenovo"   
## [2477,] "Google" "Netflix"   "Disney"    "Steam"     "Meta"     
## [2478,] "Google" "Netflix"   "Disney"    "Steam"     "Microsoft"
## [2479,] "Google" "Netflix"   "HP"        "Amazon"    "Apple"    
## [2480,] "Google" "Netflix"   "HP"        "Amazon"    "Disney"   
## [2481,] "Google" "Netflix"   "HP"        "Amazon"    "Lenovo"   
## [2482,] "Google" "Netflix"   "HP"        "Amazon"    "Meta"     
## [2483,] "Google" "Netflix"   "HP"        "Amazon"    "Microsoft"
## [2484,] "Google" "Netflix"   "HP"        "Amazon"    "Steam"    
## [2485,] "Google" "Netflix"   "HP"        "Apple"     "Amazon"   
## [2486,] "Google" "Netflix"   "HP"        "Apple"     "Disney"   
## [2487,] "Google" "Netflix"   "HP"        "Apple"     "Lenovo"   
## [2488,] "Google" "Netflix"   "HP"        "Apple"     "Meta"     
## [2489,] "Google" "Netflix"   "HP"        "Apple"     "Microsoft"
## [2490,] "Google" "Netflix"   "HP"        "Apple"     "Steam"    
## [2491,] "Google" "Netflix"   "HP"        "Disney"    "Amazon"   
## [2492,] "Google" "Netflix"   "HP"        "Disney"    "Apple"    
## [2493,] "Google" "Netflix"   "HP"        "Disney"    "Lenovo"   
## [2494,] "Google" "Netflix"   "HP"        "Disney"    "Meta"     
## [2495,] "Google" "Netflix"   "HP"        "Disney"    "Microsoft"
## [2496,] "Google" "Netflix"   "HP"        "Disney"    "Steam"    
## [2497,] "Google" "Netflix"   "HP"        "Lenovo"    "Amazon"   
## [2498,] "Google" "Netflix"   "HP"        "Lenovo"    "Apple"    
## [2499,] "Google" "Netflix"   "HP"        "Lenovo"    "Disney"   
## [2500,] "Google" "Netflix"   "HP"        "Lenovo"    "Meta"     
## [2501,] "Google" "Netflix"   "HP"        "Lenovo"    "Microsoft"
## [2502,] "Google" "Netflix"   "HP"        "Lenovo"    "Steam"    
## [2503,] "Google" "Netflix"   "HP"        "Meta"      "Amazon"   
## [2504,] "Google" "Netflix"   "HP"        "Meta"      "Apple"    
## [2505,] "Google" "Netflix"   "HP"        "Meta"      "Disney"   
## [2506,] "Google" "Netflix"   "HP"        "Meta"      "Lenovo"   
## [2507,] "Google" "Netflix"   "HP"        "Meta"      "Microsoft"
## [2508,] "Google" "Netflix"   "HP"        "Meta"      "Steam"    
## [2509,] "Google" "Netflix"   "HP"        "Microsoft" "Amazon"   
## [2510,] "Google" "Netflix"   "HP"        "Microsoft" "Apple"    
## [2511,] "Google" "Netflix"   "HP"        "Microsoft" "Disney"   
## [2512,] "Google" "Netflix"   "HP"        "Microsoft" "Lenovo"   
## [2513,] "Google" "Netflix"   "HP"        "Microsoft" "Meta"     
## [2514,] "Google" "Netflix"   "HP"        "Microsoft" "Steam"    
## [2515,] "Google" "Netflix"   "HP"        "Steam"     "Amazon"   
## [2516,] "Google" "Netflix"   "HP"        "Steam"     "Apple"    
## [2517,] "Google" "Netflix"   "HP"        "Steam"     "Disney"   
## [2518,] "Google" "Netflix"   "HP"        "Steam"     "Lenovo"   
## [2519,] "Google" "Netflix"   "HP"        "Steam"     "Meta"     
## [2520,] "Google" "Netflix"   "HP"        "Steam"     "Microsoft"
## [2521,] "Google" "Netflix"   "Lenovo"    "Amazon"    "Apple"    
## [2522,] "Google" "Netflix"   "Lenovo"    "Amazon"    "Disney"   
## [2523,] "Google" "Netflix"   "Lenovo"    "Amazon"    "HP"       
## [2524,] "Google" "Netflix"   "Lenovo"    "Amazon"    "Meta"     
## [2525,] "Google" "Netflix"   "Lenovo"    "Amazon"    "Microsoft"
## [2526,] "Google" "Netflix"   "Lenovo"    "Amazon"    "Steam"    
## [2527,] "Google" "Netflix"   "Lenovo"    "Apple"     "Amazon"   
## [2528,] "Google" "Netflix"   "Lenovo"    "Apple"     "Disney"   
## [2529,] "Google" "Netflix"   "Lenovo"    "Apple"     "HP"       
## [2530,] "Google" "Netflix"   "Lenovo"    "Apple"     "Meta"     
## [2531,] "Google" "Netflix"   "Lenovo"    "Apple"     "Microsoft"
## [2532,] "Google" "Netflix"   "Lenovo"    "Apple"     "Steam"    
## [2533,] "Google" "Netflix"   "Lenovo"    "Disney"    "Amazon"   
## [2534,] "Google" "Netflix"   "Lenovo"    "Disney"    "Apple"    
## [2535,] "Google" "Netflix"   "Lenovo"    "Disney"    "HP"       
## [2536,] "Google" "Netflix"   "Lenovo"    "Disney"    "Meta"     
## [2537,] "Google" "Netflix"   "Lenovo"    "Disney"    "Microsoft"
## [2538,] "Google" "Netflix"   "Lenovo"    "Disney"    "Steam"    
## [2539,] "Google" "Netflix"   "Lenovo"    "HP"        "Amazon"   
## [2540,] "Google" "Netflix"   "Lenovo"    "HP"        "Apple"    
## [2541,] "Google" "Netflix"   "Lenovo"    "HP"        "Disney"   
## [2542,] "Google" "Netflix"   "Lenovo"    "HP"        "Meta"     
## [2543,] "Google" "Netflix"   "Lenovo"    "HP"        "Microsoft"
## [2544,] "Google" "Netflix"   "Lenovo"    "HP"        "Steam"    
## [2545,] "Google" "Netflix"   "Lenovo"    "Meta"      "Amazon"   
## [2546,] "Google" "Netflix"   "Lenovo"    "Meta"      "Apple"    
## [2547,] "Google" "Netflix"   "Lenovo"    "Meta"      "Disney"   
## [2548,] "Google" "Netflix"   "Lenovo"    "Meta"      "HP"       
## [2549,] "Google" "Netflix"   "Lenovo"    "Meta"      "Microsoft"
## [2550,] "Google" "Netflix"   "Lenovo"    "Meta"      "Steam"    
## [2551,] "Google" "Netflix"   "Lenovo"    "Microsoft" "Amazon"   
## [2552,] "Google" "Netflix"   "Lenovo"    "Microsoft" "Apple"    
## [2553,] "Google" "Netflix"   "Lenovo"    "Microsoft" "Disney"   
## [2554,] "Google" "Netflix"   "Lenovo"    "Microsoft" "HP"       
## [2555,] "Google" "Netflix"   "Lenovo"    "Microsoft" "Meta"     
## [2556,] "Google" "Netflix"   "Lenovo"    "Microsoft" "Steam"    
## [2557,] "Google" "Netflix"   "Lenovo"    "Steam"     "Amazon"   
## [2558,] "Google" "Netflix"   "Lenovo"    "Steam"     "Apple"    
## [2559,] "Google" "Netflix"   "Lenovo"    "Steam"     "Disney"   
## [2560,] "Google" "Netflix"   "Lenovo"    "Steam"     "HP"       
## [2561,] "Google" "Netflix"   "Lenovo"    "Steam"     "Meta"     
## [2562,] "Google" "Netflix"   "Lenovo"    "Steam"     "Microsoft"
## [2563,] "Google" "Netflix"   "Meta"      "Amazon"    "Apple"    
## [2564,] "Google" "Netflix"   "Meta"      "Amazon"    "Disney"   
## [2565,] "Google" "Netflix"   "Meta"      "Amazon"    "HP"       
## [2566,] "Google" "Netflix"   "Meta"      "Amazon"    "Lenovo"   
## [2567,] "Google" "Netflix"   "Meta"      "Amazon"    "Microsoft"
## [2568,] "Google" "Netflix"   "Meta"      "Amazon"    "Steam"    
## [2569,] "Google" "Netflix"   "Meta"      "Apple"     "Amazon"   
## [2570,] "Google" "Netflix"   "Meta"      "Apple"     "Disney"   
## [2571,] "Google" "Netflix"   "Meta"      "Apple"     "HP"       
## [2572,] "Google" "Netflix"   "Meta"      "Apple"     "Lenovo"   
## [2573,] "Google" "Netflix"   "Meta"      "Apple"     "Microsoft"
## [2574,] "Google" "Netflix"   "Meta"      "Apple"     "Steam"    
## [2575,] "Google" "Netflix"   "Meta"      "Disney"    "Amazon"   
## [2576,] "Google" "Netflix"   "Meta"      "Disney"    "Apple"    
## [2577,] "Google" "Netflix"   "Meta"      "Disney"    "HP"       
## [2578,] "Google" "Netflix"   "Meta"      "Disney"    "Lenovo"   
## [2579,] "Google" "Netflix"   "Meta"      "Disney"    "Microsoft"
## [2580,] "Google" "Netflix"   "Meta"      "Disney"    "Steam"    
## [2581,] "Google" "Netflix"   "Meta"      "HP"        "Amazon"   
## [2582,] "Google" "Netflix"   "Meta"      "HP"        "Apple"    
## [2583,] "Google" "Netflix"   "Meta"      "HP"        "Disney"   
## [2584,] "Google" "Netflix"   "Meta"      "HP"        "Lenovo"   
## [2585,] "Google" "Netflix"   "Meta"      "HP"        "Microsoft"
## [2586,] "Google" "Netflix"   "Meta"      "HP"        "Steam"    
## [2587,] "Google" "Netflix"   "Meta"      "Lenovo"    "Amazon"   
## [2588,] "Google" "Netflix"   "Meta"      "Lenovo"    "Apple"    
## [2589,] "Google" "Netflix"   "Meta"      "Lenovo"    "Disney"   
## [2590,] "Google" "Netflix"   "Meta"      "Lenovo"    "HP"       
## [2591,] "Google" "Netflix"   "Meta"      "Lenovo"    "Microsoft"
## [2592,] "Google" "Netflix"   "Meta"      "Lenovo"    "Steam"    
## [2593,] "Google" "Netflix"   "Meta"      "Microsoft" "Amazon"   
## [2594,] "Google" "Netflix"   "Meta"      "Microsoft" "Apple"    
## [2595,] "Google" "Netflix"   "Meta"      "Microsoft" "Disney"   
## [2596,] "Google" "Netflix"   "Meta"      "Microsoft" "HP"       
## [2597,] "Google" "Netflix"   "Meta"      "Microsoft" "Lenovo"   
## [2598,] "Google" "Netflix"   "Meta"      "Microsoft" "Steam"    
## [2599,] "Google" "Netflix"   "Meta"      "Steam"     "Amazon"   
## [2600,] "Google" "Netflix"   "Meta"      "Steam"     "Apple"    
## [2601,] "Google" "Netflix"   "Meta"      "Steam"     "Disney"   
## [2602,] "Google" "Netflix"   "Meta"      "Steam"     "HP"       
## [2603,] "Google" "Netflix"   "Meta"      "Steam"     "Lenovo"   
## [2604,] "Google" "Netflix"   "Meta"      "Steam"     "Microsoft"
## [2605,] "Google" "Netflix"   "Microsoft" "Amazon"    "Apple"    
## [2606,] "Google" "Netflix"   "Microsoft" "Amazon"    "Disney"   
## [2607,] "Google" "Netflix"   "Microsoft" "Amazon"    "HP"       
## [2608,] "Google" "Netflix"   "Microsoft" "Amazon"    "Lenovo"   
## [2609,] "Google" "Netflix"   "Microsoft" "Amazon"    "Meta"     
## [2610,] "Google" "Netflix"   "Microsoft" "Amazon"    "Steam"    
## [2611,] "Google" "Netflix"   "Microsoft" "Apple"     "Amazon"   
## [2612,] "Google" "Netflix"   "Microsoft" "Apple"     "Disney"   
## [2613,] "Google" "Netflix"   "Microsoft" "Apple"     "HP"       
## [2614,] "Google" "Netflix"   "Microsoft" "Apple"     "Lenovo"   
## [2615,] "Google" "Netflix"   "Microsoft" "Apple"     "Meta"     
## [2616,] "Google" "Netflix"   "Microsoft" "Apple"     "Steam"    
## [2617,] "Google" "Netflix"   "Microsoft" "Disney"    "Amazon"   
## [2618,] "Google" "Netflix"   "Microsoft" "Disney"    "Apple"    
## [2619,] "Google" "Netflix"   "Microsoft" "Disney"    "HP"       
## [2620,] "Google" "Netflix"   "Microsoft" "Disney"    "Lenovo"   
## [2621,] "Google" "Netflix"   "Microsoft" "Disney"    "Meta"     
## [2622,] "Google" "Netflix"   "Microsoft" "Disney"    "Steam"    
## [2623,] "Google" "Netflix"   "Microsoft" "HP"        "Amazon"   
## [2624,] "Google" "Netflix"   "Microsoft" "HP"        "Apple"    
## [2625,] "Google" "Netflix"   "Microsoft" "HP"        "Disney"   
## [2626,] "Google" "Netflix"   "Microsoft" "HP"        "Lenovo"   
## [2627,] "Google" "Netflix"   "Microsoft" "HP"        "Meta"     
## [2628,] "Google" "Netflix"   "Microsoft" "HP"        "Steam"    
## [2629,] "Google" "Netflix"   "Microsoft" "Lenovo"    "Amazon"   
## [2630,] "Google" "Netflix"   "Microsoft" "Lenovo"    "Apple"    
## [2631,] "Google" "Netflix"   "Microsoft" "Lenovo"    "Disney"   
## [2632,] "Google" "Netflix"   "Microsoft" "Lenovo"    "HP"       
## [2633,] "Google" "Netflix"   "Microsoft" "Lenovo"    "Meta"     
## [2634,] "Google" "Netflix"   "Microsoft" "Lenovo"    "Steam"    
## [2635,] "Google" "Netflix"   "Microsoft" "Meta"      "Amazon"   
## [2636,] "Google" "Netflix"   "Microsoft" "Meta"      "Apple"    
## [2637,] "Google" "Netflix"   "Microsoft" "Meta"      "Disney"   
## [2638,] "Google" "Netflix"   "Microsoft" "Meta"      "HP"       
## [2639,] "Google" "Netflix"   "Microsoft" "Meta"      "Lenovo"   
## [2640,] "Google" "Netflix"   "Microsoft" "Meta"      "Steam"    
## [2641,] "Google" "Netflix"   "Microsoft" "Steam"     "Amazon"   
## [2642,] "Google" "Netflix"   "Microsoft" "Steam"     "Apple"    
## [2643,] "Google" "Netflix"   "Microsoft" "Steam"     "Disney"   
## [2644,] "Google" "Netflix"   "Microsoft" "Steam"     "HP"       
## [2645,] "Google" "Netflix"   "Microsoft" "Steam"     "Lenovo"   
## [2646,] "Google" "Netflix"   "Microsoft" "Steam"     "Meta"     
## [2647,] "Google" "Netflix"   "Steam"     "Amazon"    "Apple"    
## [2648,] "Google" "Netflix"   "Steam"     "Amazon"    "Disney"   
## [2649,] "Google" "Netflix"   "Steam"     "Amazon"    "HP"       
## [2650,] "Google" "Netflix"   "Steam"     "Amazon"    "Lenovo"   
## [2651,] "Google" "Netflix"   "Steam"     "Amazon"    "Meta"     
## [2652,] "Google" "Netflix"   "Steam"     "Amazon"    "Microsoft"
## [2653,] "Google" "Netflix"   "Steam"     "Apple"     "Amazon"   
## [2654,] "Google" "Netflix"   "Steam"     "Apple"     "Disney"   
## [2655,] "Google" "Netflix"   "Steam"     "Apple"     "HP"       
## [2656,] "Google" "Netflix"   "Steam"     "Apple"     "Lenovo"   
## [2657,] "Google" "Netflix"   "Steam"     "Apple"     "Meta"     
## [2658,] "Google" "Netflix"   "Steam"     "Apple"     "Microsoft"
## [2659,] "Google" "Netflix"   "Steam"     "Disney"    "Amazon"   
## [2660,] "Google" "Netflix"   "Steam"     "Disney"    "Apple"    
## [2661,] "Google" "Netflix"   "Steam"     "Disney"    "HP"       
## [2662,] "Google" "Netflix"   "Steam"     "Disney"    "Lenovo"   
## [2663,] "Google" "Netflix"   "Steam"     "Disney"    "Meta"     
## [2664,] "Google" "Netflix"   "Steam"     "Disney"    "Microsoft"
## [2665,] "Google" "Netflix"   "Steam"     "HP"        "Amazon"   
## [2666,] "Google" "Netflix"   "Steam"     "HP"        "Apple"    
## [2667,] "Google" "Netflix"   "Steam"     "HP"        "Disney"   
## [2668,] "Google" "Netflix"   "Steam"     "HP"        "Lenovo"   
## [2669,] "Google" "Netflix"   "Steam"     "HP"        "Meta"     
## [2670,] "Google" "Netflix"   "Steam"     "HP"        "Microsoft"
## [2671,] "Google" "Netflix"   "Steam"     "Lenovo"    "Amazon"   
## [2672,] "Google" "Netflix"   "Steam"     "Lenovo"    "Apple"    
## [2673,] "Google" "Netflix"   "Steam"     "Lenovo"    "Disney"   
## [2674,] "Google" "Netflix"   "Steam"     "Lenovo"    "HP"       
## [2675,] "Google" "Netflix"   "Steam"     "Lenovo"    "Meta"     
## [2676,] "Google" "Netflix"   "Steam"     "Lenovo"    "Microsoft"
## [2677,] "Google" "Netflix"   "Steam"     "Meta"      "Amazon"   
## [2678,] "Google" "Netflix"   "Steam"     "Meta"      "Apple"    
## [2679,] "Google" "Netflix"   "Steam"     "Meta"      "Disney"   
## [2680,] "Google" "Netflix"   "Steam"     "Meta"      "HP"       
## [2681,] "Google" "Netflix"   "Steam"     "Meta"      "Lenovo"   
## [2682,] "Google" "Netflix"   "Steam"     "Meta"      "Microsoft"
## [2683,] "Google" "Netflix"   "Steam"     "Microsoft" "Amazon"   
## [2684,] "Google" "Netflix"   "Steam"     "Microsoft" "Apple"    
## [2685,] "Google" "Netflix"   "Steam"     "Microsoft" "Disney"   
## [2686,] "Google" "Netflix"   "Steam"     "Microsoft" "HP"       
## [2687,] "Google" "Netflix"   "Steam"     "Microsoft" "Lenovo"   
## [2688,] "Google" "Netflix"   "Steam"     "Microsoft" "Meta"     
## [2689,] "Google" "Steam"     "Amazon"    "Apple"     "Disney"   
## [2690,] "Google" "Steam"     "Amazon"    "Apple"     "HP"       
## [2691,] "Google" "Steam"     "Amazon"    "Apple"     "Lenovo"   
## [2692,] "Google" "Steam"     "Amazon"    "Apple"     "Meta"     
## [2693,] "Google" "Steam"     "Amazon"    "Apple"     "Microsoft"
## [2694,] "Google" "Steam"     "Amazon"    "Apple"     "Netflix"  
## [2695,] "Google" "Steam"     "Amazon"    "Disney"    "Apple"    
## [2696,] "Google" "Steam"     "Amazon"    "Disney"    "HP"       
## [2697,] "Google" "Steam"     "Amazon"    "Disney"    "Lenovo"   
## [2698,] "Google" "Steam"     "Amazon"    "Disney"    "Meta"     
## [2699,] "Google" "Steam"     "Amazon"    "Disney"    "Microsoft"
## [2700,] "Google" "Steam"     "Amazon"    "Disney"    "Netflix"  
## [2701,] "Google" "Steam"     "Amazon"    "HP"        "Apple"    
## [2702,] "Google" "Steam"     "Amazon"    "HP"        "Disney"   
## [2703,] "Google" "Steam"     "Amazon"    "HP"        "Lenovo"   
## [2704,] "Google" "Steam"     "Amazon"    "HP"        "Meta"     
## [2705,] "Google" "Steam"     "Amazon"    "HP"        "Microsoft"
## [2706,] "Google" "Steam"     "Amazon"    "HP"        "Netflix"  
## [2707,] "Google" "Steam"     "Amazon"    "Lenovo"    "Apple"    
## [2708,] "Google" "Steam"     "Amazon"    "Lenovo"    "Disney"   
## [2709,] "Google" "Steam"     "Amazon"    "Lenovo"    "HP"       
## [2710,] "Google" "Steam"     "Amazon"    "Lenovo"    "Meta"     
## [2711,] "Google" "Steam"     "Amazon"    "Lenovo"    "Microsoft"
## [2712,] "Google" "Steam"     "Amazon"    "Lenovo"    "Netflix"  
## [2713,] "Google" "Steam"     "Amazon"    "Meta"      "Apple"    
## [2714,] "Google" "Steam"     "Amazon"    "Meta"      "Disney"   
## [2715,] "Google" "Steam"     "Amazon"    "Meta"      "HP"       
## [2716,] "Google" "Steam"     "Amazon"    "Meta"      "Lenovo"   
## [2717,] "Google" "Steam"     "Amazon"    "Meta"      "Microsoft"
## [2718,] "Google" "Steam"     "Amazon"    "Meta"      "Netflix"  
## [2719,] "Google" "Steam"     "Amazon"    "Microsoft" "Apple"    
## [2720,] "Google" "Steam"     "Amazon"    "Microsoft" "Disney"   
## [2721,] "Google" "Steam"     "Amazon"    "Microsoft" "HP"       
## [2722,] "Google" "Steam"     "Amazon"    "Microsoft" "Lenovo"   
## [2723,] "Google" "Steam"     "Amazon"    "Microsoft" "Meta"     
## [2724,] "Google" "Steam"     "Amazon"    "Microsoft" "Netflix"  
## [2725,] "Google" "Steam"     "Amazon"    "Netflix"   "Apple"    
## [2726,] "Google" "Steam"     "Amazon"    "Netflix"   "Disney"   
## [2727,] "Google" "Steam"     "Amazon"    "Netflix"   "HP"       
## [2728,] "Google" "Steam"     "Amazon"    "Netflix"   "Lenovo"   
## [2729,] "Google" "Steam"     "Amazon"    "Netflix"   "Meta"     
## [2730,] "Google" "Steam"     "Amazon"    "Netflix"   "Microsoft"
## [2731,] "Google" "Steam"     "Apple"     "Amazon"    "Disney"   
## [2732,] "Google" "Steam"     "Apple"     "Amazon"    "HP"       
## [2733,] "Google" "Steam"     "Apple"     "Amazon"    "Lenovo"   
## [2734,] "Google" "Steam"     "Apple"     "Amazon"    "Meta"     
## [2735,] "Google" "Steam"     "Apple"     "Amazon"    "Microsoft"
## [2736,] "Google" "Steam"     "Apple"     "Amazon"    "Netflix"  
## [2737,] "Google" "Steam"     "Apple"     "Disney"    "Amazon"   
## [2738,] "Google" "Steam"     "Apple"     "Disney"    "HP"       
## [2739,] "Google" "Steam"     "Apple"     "Disney"    "Lenovo"   
## [2740,] "Google" "Steam"     "Apple"     "Disney"    "Meta"     
## [2741,] "Google" "Steam"     "Apple"     "Disney"    "Microsoft"
## [2742,] "Google" "Steam"     "Apple"     "Disney"    "Netflix"  
## [2743,] "Google" "Steam"     "Apple"     "HP"        "Amazon"   
## [2744,] "Google" "Steam"     "Apple"     "HP"        "Disney"   
## [2745,] "Google" "Steam"     "Apple"     "HP"        "Lenovo"   
## [2746,] "Google" "Steam"     "Apple"     "HP"        "Meta"     
## [2747,] "Google" "Steam"     "Apple"     "HP"        "Microsoft"
## [2748,] "Google" "Steam"     "Apple"     "HP"        "Netflix"  
## [2749,] "Google" "Steam"     "Apple"     "Lenovo"    "Amazon"   
## [2750,] "Google" "Steam"     "Apple"     "Lenovo"    "Disney"   
## [2751,] "Google" "Steam"     "Apple"     "Lenovo"    "HP"       
## [2752,] "Google" "Steam"     "Apple"     "Lenovo"    "Meta"     
## [2753,] "Google" "Steam"     "Apple"     "Lenovo"    "Microsoft"
## [2754,] "Google" "Steam"     "Apple"     "Lenovo"    "Netflix"  
## [2755,] "Google" "Steam"     "Apple"     "Meta"      "Amazon"   
## [2756,] "Google" "Steam"     "Apple"     "Meta"      "Disney"   
## [2757,] "Google" "Steam"     "Apple"     "Meta"      "HP"       
## [2758,] "Google" "Steam"     "Apple"     "Meta"      "Lenovo"   
## [2759,] "Google" "Steam"     "Apple"     "Meta"      "Microsoft"
## [2760,] "Google" "Steam"     "Apple"     "Meta"      "Netflix"  
## [2761,] "Google" "Steam"     "Apple"     "Microsoft" "Amazon"   
## [2762,] "Google" "Steam"     "Apple"     "Microsoft" "Disney"   
## [2763,] "Google" "Steam"     "Apple"     "Microsoft" "HP"       
## [2764,] "Google" "Steam"     "Apple"     "Microsoft" "Lenovo"   
## [2765,] "Google" "Steam"     "Apple"     "Microsoft" "Meta"     
## [2766,] "Google" "Steam"     "Apple"     "Microsoft" "Netflix"  
## [2767,] "Google" "Steam"     "Apple"     "Netflix"   "Amazon"   
## [2768,] "Google" "Steam"     "Apple"     "Netflix"   "Disney"   
## [2769,] "Google" "Steam"     "Apple"     "Netflix"   "HP"       
## [2770,] "Google" "Steam"     "Apple"     "Netflix"   "Lenovo"   
## [2771,] "Google" "Steam"     "Apple"     "Netflix"   "Meta"     
## [2772,] "Google" "Steam"     "Apple"     "Netflix"   "Microsoft"
## [2773,] "Google" "Steam"     "Disney"    "Amazon"    "Apple"    
## [2774,] "Google" "Steam"     "Disney"    "Amazon"    "HP"       
## [2775,] "Google" "Steam"     "Disney"    "Amazon"    "Lenovo"   
## [2776,] "Google" "Steam"     "Disney"    "Amazon"    "Meta"     
## [2777,] "Google" "Steam"     "Disney"    "Amazon"    "Microsoft"
## [2778,] "Google" "Steam"     "Disney"    "Amazon"    "Netflix"  
## [2779,] "Google" "Steam"     "Disney"    "Apple"     "Amazon"   
## [2780,] "Google" "Steam"     "Disney"    "Apple"     "HP"       
## [2781,] "Google" "Steam"     "Disney"    "Apple"     "Lenovo"   
## [2782,] "Google" "Steam"     "Disney"    "Apple"     "Meta"     
## [2783,] "Google" "Steam"     "Disney"    "Apple"     "Microsoft"
## [2784,] "Google" "Steam"     "Disney"    "Apple"     "Netflix"  
## [2785,] "Google" "Steam"     "Disney"    "HP"        "Amazon"   
## [2786,] "Google" "Steam"     "Disney"    "HP"        "Apple"    
## [2787,] "Google" "Steam"     "Disney"    "HP"        "Lenovo"   
## [2788,] "Google" "Steam"     "Disney"    "HP"        "Meta"     
## [2789,] "Google" "Steam"     "Disney"    "HP"        "Microsoft"
## [2790,] "Google" "Steam"     "Disney"    "HP"        "Netflix"  
## [2791,] "Google" "Steam"     "Disney"    "Lenovo"    "Amazon"   
## [2792,] "Google" "Steam"     "Disney"    "Lenovo"    "Apple"    
## [2793,] "Google" "Steam"     "Disney"    "Lenovo"    "HP"       
## [2794,] "Google" "Steam"     "Disney"    "Lenovo"    "Meta"     
## [2795,] "Google" "Steam"     "Disney"    "Lenovo"    "Microsoft"
## [2796,] "Google" "Steam"     "Disney"    "Lenovo"    "Netflix"  
## [2797,] "Google" "Steam"     "Disney"    "Meta"      "Amazon"   
## [2798,] "Google" "Steam"     "Disney"    "Meta"      "Apple"    
## [2799,] "Google" "Steam"     "Disney"    "Meta"      "HP"       
## [2800,] "Google" "Steam"     "Disney"    "Meta"      "Lenovo"   
## [2801,] "Google" "Steam"     "Disney"    "Meta"      "Microsoft"
## [2802,] "Google" "Steam"     "Disney"    "Meta"      "Netflix"  
## [2803,] "Google" "Steam"     "Disney"    "Microsoft" "Amazon"   
## [2804,] "Google" "Steam"     "Disney"    "Microsoft" "Apple"    
## [2805,] "Google" "Steam"     "Disney"    "Microsoft" "HP"       
## [2806,] "Google" "Steam"     "Disney"    "Microsoft" "Lenovo"   
## [2807,] "Google" "Steam"     "Disney"    "Microsoft" "Meta"     
## [2808,] "Google" "Steam"     "Disney"    "Microsoft" "Netflix"  
## [2809,] "Google" "Steam"     "Disney"    "Netflix"   "Amazon"   
## [2810,] "Google" "Steam"     "Disney"    "Netflix"   "Apple"    
## [2811,] "Google" "Steam"     "Disney"    "Netflix"   "HP"       
## [2812,] "Google" "Steam"     "Disney"    "Netflix"   "Lenovo"   
## [2813,] "Google" "Steam"     "Disney"    "Netflix"   "Meta"     
## [2814,] "Google" "Steam"     "Disney"    "Netflix"   "Microsoft"
## [2815,] "Google" "Steam"     "HP"        "Amazon"    "Apple"    
## [2816,] "Google" "Steam"     "HP"        "Amazon"    "Disney"   
## [2817,] "Google" "Steam"     "HP"        "Amazon"    "Lenovo"   
## [2818,] "Google" "Steam"     "HP"        "Amazon"    "Meta"     
## [2819,] "Google" "Steam"     "HP"        "Amazon"    "Microsoft"
## [2820,] "Google" "Steam"     "HP"        "Amazon"    "Netflix"  
## [2821,] "Google" "Steam"     "HP"        "Apple"     "Amazon"   
## [2822,] "Google" "Steam"     "HP"        "Apple"     "Disney"   
## [2823,] "Google" "Steam"     "HP"        "Apple"     "Lenovo"   
## [2824,] "Google" "Steam"     "HP"        "Apple"     "Meta"     
## [2825,] "Google" "Steam"     "HP"        "Apple"     "Microsoft"
## [2826,] "Google" "Steam"     "HP"        "Apple"     "Netflix"  
## [2827,] "Google" "Steam"     "HP"        "Disney"    "Amazon"   
## [2828,] "Google" "Steam"     "HP"        "Disney"    "Apple"    
## [2829,] "Google" "Steam"     "HP"        "Disney"    "Lenovo"   
## [2830,] "Google" "Steam"     "HP"        "Disney"    "Meta"     
## [2831,] "Google" "Steam"     "HP"        "Disney"    "Microsoft"
## [2832,] "Google" "Steam"     "HP"        "Disney"    "Netflix"  
## [2833,] "Google" "Steam"     "HP"        "Lenovo"    "Amazon"   
## [2834,] "Google" "Steam"     "HP"        "Lenovo"    "Apple"    
## [2835,] "Google" "Steam"     "HP"        "Lenovo"    "Disney"   
## [2836,] "Google" "Steam"     "HP"        "Lenovo"    "Meta"     
## [2837,] "Google" "Steam"     "HP"        "Lenovo"    "Microsoft"
## [2838,] "Google" "Steam"     "HP"        "Lenovo"    "Netflix"  
## [2839,] "Google" "Steam"     "HP"        "Meta"      "Amazon"   
## [2840,] "Google" "Steam"     "HP"        "Meta"      "Apple"    
## [2841,] "Google" "Steam"     "HP"        "Meta"      "Disney"   
## [2842,] "Google" "Steam"     "HP"        "Meta"      "Lenovo"   
## [2843,] "Google" "Steam"     "HP"        "Meta"      "Microsoft"
## [2844,] "Google" "Steam"     "HP"        "Meta"      "Netflix"  
## [2845,] "Google" "Steam"     "HP"        "Microsoft" "Amazon"   
## [2846,] "Google" "Steam"     "HP"        "Microsoft" "Apple"    
## [2847,] "Google" "Steam"     "HP"        "Microsoft" "Disney"   
## [2848,] "Google" "Steam"     "HP"        "Microsoft" "Lenovo"   
## [2849,] "Google" "Steam"     "HP"        "Microsoft" "Meta"     
## [2850,] "Google" "Steam"     "HP"        "Microsoft" "Netflix"  
## [2851,] "Google" "Steam"     "HP"        "Netflix"   "Amazon"   
## [2852,] "Google" "Steam"     "HP"        "Netflix"   "Apple"    
## [2853,] "Google" "Steam"     "HP"        "Netflix"   "Disney"   
## [2854,] "Google" "Steam"     "HP"        "Netflix"   "Lenovo"   
## [2855,] "Google" "Steam"     "HP"        "Netflix"   "Meta"     
## [2856,] "Google" "Steam"     "HP"        "Netflix"   "Microsoft"
## [2857,] "Google" "Steam"     "Lenovo"    "Amazon"    "Apple"    
## [2858,] "Google" "Steam"     "Lenovo"    "Amazon"    "Disney"   
## [2859,] "Google" "Steam"     "Lenovo"    "Amazon"    "HP"       
## [2860,] "Google" "Steam"     "Lenovo"    "Amazon"    "Meta"     
## [2861,] "Google" "Steam"     "Lenovo"    "Amazon"    "Microsoft"
## [2862,] "Google" "Steam"     "Lenovo"    "Amazon"    "Netflix"  
## [2863,] "Google" "Steam"     "Lenovo"    "Apple"     "Amazon"   
## [2864,] "Google" "Steam"     "Lenovo"    "Apple"     "Disney"   
## [2865,] "Google" "Steam"     "Lenovo"    "Apple"     "HP"       
## [2866,] "Google" "Steam"     "Lenovo"    "Apple"     "Meta"     
## [2867,] "Google" "Steam"     "Lenovo"    "Apple"     "Microsoft"
## [2868,] "Google" "Steam"     "Lenovo"    "Apple"     "Netflix"  
## [2869,] "Google" "Steam"     "Lenovo"    "Disney"    "Amazon"   
## [2870,] "Google" "Steam"     "Lenovo"    "Disney"    "Apple"    
## [2871,] "Google" "Steam"     "Lenovo"    "Disney"    "HP"       
## [2872,] "Google" "Steam"     "Lenovo"    "Disney"    "Meta"     
## [2873,] "Google" "Steam"     "Lenovo"    "Disney"    "Microsoft"
## [2874,] "Google" "Steam"     "Lenovo"    "Disney"    "Netflix"  
## [2875,] "Google" "Steam"     "Lenovo"    "HP"        "Amazon"   
## [2876,] "Google" "Steam"     "Lenovo"    "HP"        "Apple"    
## [2877,] "Google" "Steam"     "Lenovo"    "HP"        "Disney"   
## [2878,] "Google" "Steam"     "Lenovo"    "HP"        "Meta"     
## [2879,] "Google" "Steam"     "Lenovo"    "HP"        "Microsoft"
## [2880,] "Google" "Steam"     "Lenovo"    "HP"        "Netflix"  
## [2881,] "Google" "Steam"     "Lenovo"    "Meta"      "Amazon"   
## [2882,] "Google" "Steam"     "Lenovo"    "Meta"      "Apple"    
## [2883,] "Google" "Steam"     "Lenovo"    "Meta"      "Disney"   
## [2884,] "Google" "Steam"     "Lenovo"    "Meta"      "HP"       
## [2885,] "Google" "Steam"     "Lenovo"    "Meta"      "Microsoft"
## [2886,] "Google" "Steam"     "Lenovo"    "Meta"      "Netflix"  
## [2887,] "Google" "Steam"     "Lenovo"    "Microsoft" "Amazon"   
## [2888,] "Google" "Steam"     "Lenovo"    "Microsoft" "Apple"    
## [2889,] "Google" "Steam"     "Lenovo"    "Microsoft" "Disney"   
## [2890,] "Google" "Steam"     "Lenovo"    "Microsoft" "HP"       
## [2891,] "Google" "Steam"     "Lenovo"    "Microsoft" "Meta"     
## [2892,] "Google" "Steam"     "Lenovo"    "Microsoft" "Netflix"  
## [2893,] "Google" "Steam"     "Lenovo"    "Netflix"   "Amazon"   
## [2894,] "Google" "Steam"     "Lenovo"    "Netflix"   "Apple"    
## [2895,] "Google" "Steam"     "Lenovo"    "Netflix"   "Disney"   
## [2896,] "Google" "Steam"     "Lenovo"    "Netflix"   "HP"       
## [2897,] "Google" "Steam"     "Lenovo"    "Netflix"   "Meta"     
## [2898,] "Google" "Steam"     "Lenovo"    "Netflix"   "Microsoft"
## [2899,] "Google" "Steam"     "Meta"      "Amazon"    "Apple"    
## [2900,] "Google" "Steam"     "Meta"      "Amazon"    "Disney"   
## [2901,] "Google" "Steam"     "Meta"      "Amazon"    "HP"       
## [2902,] "Google" "Steam"     "Meta"      "Amazon"    "Lenovo"   
## [2903,] "Google" "Steam"     "Meta"      "Amazon"    "Microsoft"
## [2904,] "Google" "Steam"     "Meta"      "Amazon"    "Netflix"  
## [2905,] "Google" "Steam"     "Meta"      "Apple"     "Amazon"   
## [2906,] "Google" "Steam"     "Meta"      "Apple"     "Disney"   
## [2907,] "Google" "Steam"     "Meta"      "Apple"     "HP"       
## [2908,] "Google" "Steam"     "Meta"      "Apple"     "Lenovo"   
## [2909,] "Google" "Steam"     "Meta"      "Apple"     "Microsoft"
## [2910,] "Google" "Steam"     "Meta"      "Apple"     "Netflix"  
## [2911,] "Google" "Steam"     "Meta"      "Disney"    "Amazon"   
## [2912,] "Google" "Steam"     "Meta"      "Disney"    "Apple"    
## [2913,] "Google" "Steam"     "Meta"      "Disney"    "HP"       
## [2914,] "Google" "Steam"     "Meta"      "Disney"    "Lenovo"   
## [2915,] "Google" "Steam"     "Meta"      "Disney"    "Microsoft"
## [2916,] "Google" "Steam"     "Meta"      "Disney"    "Netflix"  
## [2917,] "Google" "Steam"     "Meta"      "HP"        "Amazon"   
## [2918,] "Google" "Steam"     "Meta"      "HP"        "Apple"    
## [2919,] "Google" "Steam"     "Meta"      "HP"        "Disney"   
## [2920,] "Google" "Steam"     "Meta"      "HP"        "Lenovo"   
## [2921,] "Google" "Steam"     "Meta"      "HP"        "Microsoft"
## [2922,] "Google" "Steam"     "Meta"      "HP"        "Netflix"  
## [2923,] "Google" "Steam"     "Meta"      "Lenovo"    "Amazon"   
## [2924,] "Google" "Steam"     "Meta"      "Lenovo"    "Apple"    
## [2925,] "Google" "Steam"     "Meta"      "Lenovo"    "Disney"   
## [2926,] "Google" "Steam"     "Meta"      "Lenovo"    "HP"       
## [2927,] "Google" "Steam"     "Meta"      "Lenovo"    "Microsoft"
## [2928,] "Google" "Steam"     "Meta"      "Lenovo"    "Netflix"  
## [2929,] "Google" "Steam"     "Meta"      "Microsoft" "Amazon"   
## [2930,] "Google" "Steam"     "Meta"      "Microsoft" "Apple"    
## [2931,] "Google" "Steam"     "Meta"      "Microsoft" "Disney"   
## [2932,] "Google" "Steam"     "Meta"      "Microsoft" "HP"       
## [2933,] "Google" "Steam"     "Meta"      "Microsoft" "Lenovo"   
## [2934,] "Google" "Steam"     "Meta"      "Microsoft" "Netflix"  
## [2935,] "Google" "Steam"     "Meta"      "Netflix"   "Amazon"   
## [2936,] "Google" "Steam"     "Meta"      "Netflix"   "Apple"    
## [2937,] "Google" "Steam"     "Meta"      "Netflix"   "Disney"   
## [2938,] "Google" "Steam"     "Meta"      "Netflix"   "HP"       
## [2939,] "Google" "Steam"     "Meta"      "Netflix"   "Lenovo"   
## [2940,] "Google" "Steam"     "Meta"      "Netflix"   "Microsoft"
## [2941,] "Google" "Steam"     "Microsoft" "Amazon"    "Apple"    
## [2942,] "Google" "Steam"     "Microsoft" "Amazon"    "Disney"   
## [2943,] "Google" "Steam"     "Microsoft" "Amazon"    "HP"       
## [2944,] "Google" "Steam"     "Microsoft" "Amazon"    "Lenovo"   
## [2945,] "Google" "Steam"     "Microsoft" "Amazon"    "Meta"     
## [2946,] "Google" "Steam"     "Microsoft" "Amazon"    "Netflix"  
## [2947,] "Google" "Steam"     "Microsoft" "Apple"     "Amazon"   
## [2948,] "Google" "Steam"     "Microsoft" "Apple"     "Disney"   
## [2949,] "Google" "Steam"     "Microsoft" "Apple"     "HP"       
## [2950,] "Google" "Steam"     "Microsoft" "Apple"     "Lenovo"   
## [2951,] "Google" "Steam"     "Microsoft" "Apple"     "Meta"     
## [2952,] "Google" "Steam"     "Microsoft" "Apple"     "Netflix"  
## [2953,] "Google" "Steam"     "Microsoft" "Disney"    "Amazon"   
## [2954,] "Google" "Steam"     "Microsoft" "Disney"    "Apple"    
## [2955,] "Google" "Steam"     "Microsoft" "Disney"    "HP"       
## [2956,] "Google" "Steam"     "Microsoft" "Disney"    "Lenovo"   
## [2957,] "Google" "Steam"     "Microsoft" "Disney"    "Meta"     
## [2958,] "Google" "Steam"     "Microsoft" "Disney"    "Netflix"  
## [2959,] "Google" "Steam"     "Microsoft" "HP"        "Amazon"   
## [2960,] "Google" "Steam"     "Microsoft" "HP"        "Apple"    
## [2961,] "Google" "Steam"     "Microsoft" "HP"        "Disney"   
## [2962,] "Google" "Steam"     "Microsoft" "HP"        "Lenovo"   
## [2963,] "Google" "Steam"     "Microsoft" "HP"        "Meta"     
## [2964,] "Google" "Steam"     "Microsoft" "HP"        "Netflix"  
## [2965,] "Google" "Steam"     "Microsoft" "Lenovo"    "Amazon"   
## [2966,] "Google" "Steam"     "Microsoft" "Lenovo"    "Apple"    
## [2967,] "Google" "Steam"     "Microsoft" "Lenovo"    "Disney"   
## [2968,] "Google" "Steam"     "Microsoft" "Lenovo"    "HP"       
## [2969,] "Google" "Steam"     "Microsoft" "Lenovo"    "Meta"     
## [2970,] "Google" "Steam"     "Microsoft" "Lenovo"    "Netflix"  
## [2971,] "Google" "Steam"     "Microsoft" "Meta"      "Amazon"   
## [2972,] "Google" "Steam"     "Microsoft" "Meta"      "Apple"    
## [2973,] "Google" "Steam"     "Microsoft" "Meta"      "Disney"   
## [2974,] "Google" "Steam"     "Microsoft" "Meta"      "HP"       
## [2975,] "Google" "Steam"     "Microsoft" "Meta"      "Lenovo"   
## [2976,] "Google" "Steam"     "Microsoft" "Meta"      "Netflix"  
## [2977,] "Google" "Steam"     "Microsoft" "Netflix"   "Amazon"   
## [2978,] "Google" "Steam"     "Microsoft" "Netflix"   "Apple"    
## [2979,] "Google" "Steam"     "Microsoft" "Netflix"   "Disney"   
## [2980,] "Google" "Steam"     "Microsoft" "Netflix"   "HP"       
## [2981,] "Google" "Steam"     "Microsoft" "Netflix"   "Lenovo"   
## [2982,] "Google" "Steam"     "Microsoft" "Netflix"   "Meta"     
## [2983,] "Google" "Steam"     "Netflix"   "Amazon"    "Apple"    
## [2984,] "Google" "Steam"     "Netflix"   "Amazon"    "Disney"   
## [2985,] "Google" "Steam"     "Netflix"   "Amazon"    "HP"       
## [2986,] "Google" "Steam"     "Netflix"   "Amazon"    "Lenovo"   
## [2987,] "Google" "Steam"     "Netflix"   "Amazon"    "Meta"     
## [2988,] "Google" "Steam"     "Netflix"   "Amazon"    "Microsoft"
## [2989,] "Google" "Steam"     "Netflix"   "Apple"     "Amazon"   
## [2990,] "Google" "Steam"     "Netflix"   "Apple"     "Disney"   
## [2991,] "Google" "Steam"     "Netflix"   "Apple"     "HP"       
## [2992,] "Google" "Steam"     "Netflix"   "Apple"     "Lenovo"   
## [2993,] "Google" "Steam"     "Netflix"   "Apple"     "Meta"     
## [2994,] "Google" "Steam"     "Netflix"   "Apple"     "Microsoft"
## [2995,] "Google" "Steam"     "Netflix"   "Disney"    "Amazon"   
## [2996,] "Google" "Steam"     "Netflix"   "Disney"    "Apple"    
## [2997,] "Google" "Steam"     "Netflix"   "Disney"    "HP"       
## [2998,] "Google" "Steam"     "Netflix"   "Disney"    "Lenovo"   
## [2999,] "Google" "Steam"     "Netflix"   "Disney"    "Meta"     
## [3000,] "Google" "Steam"     "Netflix"   "Disney"    "Microsoft"
## [3001,] "Google" "Steam"     "Netflix"   "HP"        "Amazon"   
## [3002,] "Google" "Steam"     "Netflix"   "HP"        "Apple"    
## [3003,] "Google" "Steam"     "Netflix"   "HP"        "Disney"   
## [3004,] "Google" "Steam"     "Netflix"   "HP"        "Lenovo"   
## [3005,] "Google" "Steam"     "Netflix"   "HP"        "Meta"     
## [3006,] "Google" "Steam"     "Netflix"   "HP"        "Microsoft"
## [3007,] "Google" "Steam"     "Netflix"   "Lenovo"    "Amazon"   
## [3008,] "Google" "Steam"     "Netflix"   "Lenovo"    "Apple"    
## [3009,] "Google" "Steam"     "Netflix"   "Lenovo"    "Disney"   
## [3010,] "Google" "Steam"     "Netflix"   "Lenovo"    "HP"       
## [3011,] "Google" "Steam"     "Netflix"   "Lenovo"    "Meta"     
## [3012,] "Google" "Steam"     "Netflix"   "Lenovo"    "Microsoft"
## [3013,] "Google" "Steam"     "Netflix"   "Meta"      "Amazon"   
## [3014,] "Google" "Steam"     "Netflix"   "Meta"      "Apple"    
## [3015,] "Google" "Steam"     "Netflix"   "Meta"      "Disney"   
## [3016,] "Google" "Steam"     "Netflix"   "Meta"      "HP"       
## [3017,] "Google" "Steam"     "Netflix"   "Meta"      "Lenovo"   
## [3018,] "Google" "Steam"     "Netflix"   "Meta"      "Microsoft"
## [3019,] "Google" "Steam"     "Netflix"   "Microsoft" "Amazon"   
## [3020,] "Google" "Steam"     "Netflix"   "Microsoft" "Apple"    
## [3021,] "Google" "Steam"     "Netflix"   "Microsoft" "Disney"   
## [3022,] "Google" "Steam"     "Netflix"   "Microsoft" "HP"       
## [3023,] "Google" "Steam"     "Netflix"   "Microsoft" "Lenovo"   
## [3024,] "Google" "Steam"     "Netflix"   "Microsoft" "Meta"
frecuencia <- nrow(filtro)
paste("Existen ", frecuencia, " ocasiones en que se encuentran Oscar en la primer columna  , de un total de ", nrow(Pern.Empresas), " representan ", round(frecuencia / nrow(Pern.Empresas) * 100, 2), "%")
## [1] "Existen  3024  ocasiones en que se encuentran Oscar en la primer columna  , de un total de  30240  representan  10 %"

¿En cuántas ocasiones aparece de manera contigua y en este orden los equipos de Guadalajara y Mazatlán en cualquier columna uno y dos, dos y tres, tres y cuatro o cuatro y cinco?

filtro <- subset(Pern.Empresas, (Pern.Empresas[,1] == "Amazon" & Pern.Empresas[,2] == "Netflix") 
                 | (Pern.Empresas[,2] == "Amazon" & Pern.Empresas[,3] == "Netflix") 
                 | 
                   (Pern.Empresas[,3] == "Amazon" & Pern.Empresas[,4] == "Netflix") 
                 | (Pern.Empresas[,4] == "Amazon" & Pern.Empresas[,5] == "Netflix"))
filtro
##         [,1]        [,2]        [,3]        [,4]        [,5]       
##    [1,] "Amazon"    "Netflix"   "Apple"     "Disney"    "Google"   
##    [2,] "Amazon"    "Netflix"   "Apple"     "Disney"    "HP"       
##    [3,] "Amazon"    "Netflix"   "Apple"     "Disney"    "Lenovo"   
##    [4,] "Amazon"    "Netflix"   "Apple"     "Disney"    "Meta"     
##    [5,] "Amazon"    "Netflix"   "Apple"     "Disney"    "Microsoft"
##    [6,] "Amazon"    "Netflix"   "Apple"     "Disney"    "Steam"    
##    [7,] "Amazon"    "Netflix"   "Apple"     "Google"    "Disney"   
##    [8,] "Amazon"    "Netflix"   "Apple"     "Google"    "HP"       
##    [9,] "Amazon"    "Netflix"   "Apple"     "Google"    "Lenovo"   
##   [10,] "Amazon"    "Netflix"   "Apple"     "Google"    "Meta"     
##   [11,] "Amazon"    "Netflix"   "Apple"     "Google"    "Microsoft"
##   [12,] "Amazon"    "Netflix"   "Apple"     "Google"    "Steam"    
##   [13,] "Amazon"    "Netflix"   "Apple"     "HP"        "Disney"   
##   [14,] "Amazon"    "Netflix"   "Apple"     "HP"        "Google"   
##   [15,] "Amazon"    "Netflix"   "Apple"     "HP"        "Lenovo"   
##   [16,] "Amazon"    "Netflix"   "Apple"     "HP"        "Meta"     
##   [17,] "Amazon"    "Netflix"   "Apple"     "HP"        "Microsoft"
##   [18,] "Amazon"    "Netflix"   "Apple"     "HP"        "Steam"    
##   [19,] "Amazon"    "Netflix"   "Apple"     "Lenovo"    "Disney"   
##   [20,] "Amazon"    "Netflix"   "Apple"     "Lenovo"    "Google"   
##   [21,] "Amazon"    "Netflix"   "Apple"     "Lenovo"    "HP"       
##   [22,] "Amazon"    "Netflix"   "Apple"     "Lenovo"    "Meta"     
##   [23,] "Amazon"    "Netflix"   "Apple"     "Lenovo"    "Microsoft"
##   [24,] "Amazon"    "Netflix"   "Apple"     "Lenovo"    "Steam"    
##   [25,] "Amazon"    "Netflix"   "Apple"     "Meta"      "Disney"   
##   [26,] "Amazon"    "Netflix"   "Apple"     "Meta"      "Google"   
##   [27,] "Amazon"    "Netflix"   "Apple"     "Meta"      "HP"       
##   [28,] "Amazon"    "Netflix"   "Apple"     "Meta"      "Lenovo"   
##   [29,] "Amazon"    "Netflix"   "Apple"     "Meta"      "Microsoft"
##   [30,] "Amazon"    "Netflix"   "Apple"     "Meta"      "Steam"    
##   [31,] "Amazon"    "Netflix"   "Apple"     "Microsoft" "Disney"   
##   [32,] "Amazon"    "Netflix"   "Apple"     "Microsoft" "Google"   
##   [33,] "Amazon"    "Netflix"   "Apple"     "Microsoft" "HP"       
##   [34,] "Amazon"    "Netflix"   "Apple"     "Microsoft" "Lenovo"   
##   [35,] "Amazon"    "Netflix"   "Apple"     "Microsoft" "Meta"     
##   [36,] "Amazon"    "Netflix"   "Apple"     "Microsoft" "Steam"    
##   [37,] "Amazon"    "Netflix"   "Apple"     "Steam"     "Disney"   
##   [38,] "Amazon"    "Netflix"   "Apple"     "Steam"     "Google"   
##   [39,] "Amazon"    "Netflix"   "Apple"     "Steam"     "HP"       
##   [40,] "Amazon"    "Netflix"   "Apple"     "Steam"     "Lenovo"   
##   [41,] "Amazon"    "Netflix"   "Apple"     "Steam"     "Meta"     
##   [42,] "Amazon"    "Netflix"   "Apple"     "Steam"     "Microsoft"
##   [43,] "Amazon"    "Netflix"   "Disney"    "Apple"     "Google"   
##   [44,] "Amazon"    "Netflix"   "Disney"    "Apple"     "HP"       
##   [45,] "Amazon"    "Netflix"   "Disney"    "Apple"     "Lenovo"   
##   [46,] "Amazon"    "Netflix"   "Disney"    "Apple"     "Meta"     
##   [47,] "Amazon"    "Netflix"   "Disney"    "Apple"     "Microsoft"
##   [48,] "Amazon"    "Netflix"   "Disney"    "Apple"     "Steam"    
##   [49,] "Amazon"    "Netflix"   "Disney"    "Google"    "Apple"    
##   [50,] "Amazon"    "Netflix"   "Disney"    "Google"    "HP"       
##   [51,] "Amazon"    "Netflix"   "Disney"    "Google"    "Lenovo"   
##   [52,] "Amazon"    "Netflix"   "Disney"    "Google"    "Meta"     
##   [53,] "Amazon"    "Netflix"   "Disney"    "Google"    "Microsoft"
##   [54,] "Amazon"    "Netflix"   "Disney"    "Google"    "Steam"    
##   [55,] "Amazon"    "Netflix"   "Disney"    "HP"        "Apple"    
##   [56,] "Amazon"    "Netflix"   "Disney"    "HP"        "Google"   
##   [57,] "Amazon"    "Netflix"   "Disney"    "HP"        "Lenovo"   
##   [58,] "Amazon"    "Netflix"   "Disney"    "HP"        "Meta"     
##   [59,] "Amazon"    "Netflix"   "Disney"    "HP"        "Microsoft"
##   [60,] "Amazon"    "Netflix"   "Disney"    "HP"        "Steam"    
##   [61,] "Amazon"    "Netflix"   "Disney"    "Lenovo"    "Apple"    
##   [62,] "Amazon"    "Netflix"   "Disney"    "Lenovo"    "Google"   
##   [63,] "Amazon"    "Netflix"   "Disney"    "Lenovo"    "HP"       
##   [64,] "Amazon"    "Netflix"   "Disney"    "Lenovo"    "Meta"     
##   [65,] "Amazon"    "Netflix"   "Disney"    "Lenovo"    "Microsoft"
##   [66,] "Amazon"    "Netflix"   "Disney"    "Lenovo"    "Steam"    
##   [67,] "Amazon"    "Netflix"   "Disney"    "Meta"      "Apple"    
##   [68,] "Amazon"    "Netflix"   "Disney"    "Meta"      "Google"   
##   [69,] "Amazon"    "Netflix"   "Disney"    "Meta"      "HP"       
##   [70,] "Amazon"    "Netflix"   "Disney"    "Meta"      "Lenovo"   
##   [71,] "Amazon"    "Netflix"   "Disney"    "Meta"      "Microsoft"
##   [72,] "Amazon"    "Netflix"   "Disney"    "Meta"      "Steam"    
##   [73,] "Amazon"    "Netflix"   "Disney"    "Microsoft" "Apple"    
##   [74,] "Amazon"    "Netflix"   "Disney"    "Microsoft" "Google"   
##   [75,] "Amazon"    "Netflix"   "Disney"    "Microsoft" "HP"       
##   [76,] "Amazon"    "Netflix"   "Disney"    "Microsoft" "Lenovo"   
##   [77,] "Amazon"    "Netflix"   "Disney"    "Microsoft" "Meta"     
##   [78,] "Amazon"    "Netflix"   "Disney"    "Microsoft" "Steam"    
##   [79,] "Amazon"    "Netflix"   "Disney"    "Steam"     "Apple"    
##   [80,] "Amazon"    "Netflix"   "Disney"    "Steam"     "Google"   
##   [81,] "Amazon"    "Netflix"   "Disney"    "Steam"     "HP"       
##   [82,] "Amazon"    "Netflix"   "Disney"    "Steam"     "Lenovo"   
##   [83,] "Amazon"    "Netflix"   "Disney"    "Steam"     "Meta"     
##   [84,] "Amazon"    "Netflix"   "Disney"    "Steam"     "Microsoft"
##   [85,] "Amazon"    "Netflix"   "Google"    "Apple"     "Disney"   
##   [86,] "Amazon"    "Netflix"   "Google"    "Apple"     "HP"       
##   [87,] "Amazon"    "Netflix"   "Google"    "Apple"     "Lenovo"   
##   [88,] "Amazon"    "Netflix"   "Google"    "Apple"     "Meta"     
##   [89,] "Amazon"    "Netflix"   "Google"    "Apple"     "Microsoft"
##   [90,] "Amazon"    "Netflix"   "Google"    "Apple"     "Steam"    
##   [91,] "Amazon"    "Netflix"   "Google"    "Disney"    "Apple"    
##   [92,] "Amazon"    "Netflix"   "Google"    "Disney"    "HP"       
##   [93,] "Amazon"    "Netflix"   "Google"    "Disney"    "Lenovo"   
##   [94,] "Amazon"    "Netflix"   "Google"    "Disney"    "Meta"     
##   [95,] "Amazon"    "Netflix"   "Google"    "Disney"    "Microsoft"
##   [96,] "Amazon"    "Netflix"   "Google"    "Disney"    "Steam"    
##   [97,] "Amazon"    "Netflix"   "Google"    "HP"        "Apple"    
##   [98,] "Amazon"    "Netflix"   "Google"    "HP"        "Disney"   
##   [99,] "Amazon"    "Netflix"   "Google"    "HP"        "Lenovo"   
##  [100,] "Amazon"    "Netflix"   "Google"    "HP"        "Meta"     
##  [101,] "Amazon"    "Netflix"   "Google"    "HP"        "Microsoft"
##  [102,] "Amazon"    "Netflix"   "Google"    "HP"        "Steam"    
##  [103,] "Amazon"    "Netflix"   "Google"    "Lenovo"    "Apple"    
##  [104,] "Amazon"    "Netflix"   "Google"    "Lenovo"    "Disney"   
##  [105,] "Amazon"    "Netflix"   "Google"    "Lenovo"    "HP"       
##  [106,] "Amazon"    "Netflix"   "Google"    "Lenovo"    "Meta"     
##  [107,] "Amazon"    "Netflix"   "Google"    "Lenovo"    "Microsoft"
##  [108,] "Amazon"    "Netflix"   "Google"    "Lenovo"    "Steam"    
##  [109,] "Amazon"    "Netflix"   "Google"    "Meta"      "Apple"    
##  [110,] "Amazon"    "Netflix"   "Google"    "Meta"      "Disney"   
##  [111,] "Amazon"    "Netflix"   "Google"    "Meta"      "HP"       
##  [112,] "Amazon"    "Netflix"   "Google"    "Meta"      "Lenovo"   
##  [113,] "Amazon"    "Netflix"   "Google"    "Meta"      "Microsoft"
##  [114,] "Amazon"    "Netflix"   "Google"    "Meta"      "Steam"    
##  [115,] "Amazon"    "Netflix"   "Google"    "Microsoft" "Apple"    
##  [116,] "Amazon"    "Netflix"   "Google"    "Microsoft" "Disney"   
##  [117,] "Amazon"    "Netflix"   "Google"    "Microsoft" "HP"       
##  [118,] "Amazon"    "Netflix"   "Google"    "Microsoft" "Lenovo"   
##  [119,] "Amazon"    "Netflix"   "Google"    "Microsoft" "Meta"     
##  [120,] "Amazon"    "Netflix"   "Google"    "Microsoft" "Steam"    
##  [121,] "Amazon"    "Netflix"   "Google"    "Steam"     "Apple"    
##  [122,] "Amazon"    "Netflix"   "Google"    "Steam"     "Disney"   
##  [123,] "Amazon"    "Netflix"   "Google"    "Steam"     "HP"       
##  [124,] "Amazon"    "Netflix"   "Google"    "Steam"     "Lenovo"   
##  [125,] "Amazon"    "Netflix"   "Google"    "Steam"     "Meta"     
##  [126,] "Amazon"    "Netflix"   "Google"    "Steam"     "Microsoft"
##  [127,] "Amazon"    "Netflix"   "HP"        "Apple"     "Disney"   
##  [128,] "Amazon"    "Netflix"   "HP"        "Apple"     "Google"   
##  [129,] "Amazon"    "Netflix"   "HP"        "Apple"     "Lenovo"   
##  [130,] "Amazon"    "Netflix"   "HP"        "Apple"     "Meta"     
##  [131,] "Amazon"    "Netflix"   "HP"        "Apple"     "Microsoft"
##  [132,] "Amazon"    "Netflix"   "HP"        "Apple"     "Steam"    
##  [133,] "Amazon"    "Netflix"   "HP"        "Disney"    "Apple"    
##  [134,] "Amazon"    "Netflix"   "HP"        "Disney"    "Google"   
##  [135,] "Amazon"    "Netflix"   "HP"        "Disney"    "Lenovo"   
##  [136,] "Amazon"    "Netflix"   "HP"        "Disney"    "Meta"     
##  [137,] "Amazon"    "Netflix"   "HP"        "Disney"    "Microsoft"
##  [138,] "Amazon"    "Netflix"   "HP"        "Disney"    "Steam"    
##  [139,] "Amazon"    "Netflix"   "HP"        "Google"    "Apple"    
##  [140,] "Amazon"    "Netflix"   "HP"        "Google"    "Disney"   
##  [141,] "Amazon"    "Netflix"   "HP"        "Google"    "Lenovo"   
##  [142,] "Amazon"    "Netflix"   "HP"        "Google"    "Meta"     
##  [143,] "Amazon"    "Netflix"   "HP"        "Google"    "Microsoft"
##  [144,] "Amazon"    "Netflix"   "HP"        "Google"    "Steam"    
##  [145,] "Amazon"    "Netflix"   "HP"        "Lenovo"    "Apple"    
##  [146,] "Amazon"    "Netflix"   "HP"        "Lenovo"    "Disney"   
##  [147,] "Amazon"    "Netflix"   "HP"        "Lenovo"    "Google"   
##  [148,] "Amazon"    "Netflix"   "HP"        "Lenovo"    "Meta"     
##  [149,] "Amazon"    "Netflix"   "HP"        "Lenovo"    "Microsoft"
##  [150,] "Amazon"    "Netflix"   "HP"        "Lenovo"    "Steam"    
##  [151,] "Amazon"    "Netflix"   "HP"        "Meta"      "Apple"    
##  [152,] "Amazon"    "Netflix"   "HP"        "Meta"      "Disney"   
##  [153,] "Amazon"    "Netflix"   "HP"        "Meta"      "Google"   
##  [154,] "Amazon"    "Netflix"   "HP"        "Meta"      "Lenovo"   
##  [155,] "Amazon"    "Netflix"   "HP"        "Meta"      "Microsoft"
##  [156,] "Amazon"    "Netflix"   "HP"        "Meta"      "Steam"    
##  [157,] "Amazon"    "Netflix"   "HP"        "Microsoft" "Apple"    
##  [158,] "Amazon"    "Netflix"   "HP"        "Microsoft" "Disney"   
##  [159,] "Amazon"    "Netflix"   "HP"        "Microsoft" "Google"   
##  [160,] "Amazon"    "Netflix"   "HP"        "Microsoft" "Lenovo"   
##  [161,] "Amazon"    "Netflix"   "HP"        "Microsoft" "Meta"     
##  [162,] "Amazon"    "Netflix"   "HP"        "Microsoft" "Steam"    
##  [163,] "Amazon"    "Netflix"   "HP"        "Steam"     "Apple"    
##  [164,] "Amazon"    "Netflix"   "HP"        "Steam"     "Disney"   
##  [165,] "Amazon"    "Netflix"   "HP"        "Steam"     "Google"   
##  [166,] "Amazon"    "Netflix"   "HP"        "Steam"     "Lenovo"   
##  [167,] "Amazon"    "Netflix"   "HP"        "Steam"     "Meta"     
##  [168,] "Amazon"    "Netflix"   "HP"        "Steam"     "Microsoft"
##  [169,] "Amazon"    "Netflix"   "Lenovo"    "Apple"     "Disney"   
##  [170,] "Amazon"    "Netflix"   "Lenovo"    "Apple"     "Google"   
##  [171,] "Amazon"    "Netflix"   "Lenovo"    "Apple"     "HP"       
##  [172,] "Amazon"    "Netflix"   "Lenovo"    "Apple"     "Meta"     
##  [173,] "Amazon"    "Netflix"   "Lenovo"    "Apple"     "Microsoft"
##  [174,] "Amazon"    "Netflix"   "Lenovo"    "Apple"     "Steam"    
##  [175,] "Amazon"    "Netflix"   "Lenovo"    "Disney"    "Apple"    
##  [176,] "Amazon"    "Netflix"   "Lenovo"    "Disney"    "Google"   
##  [177,] "Amazon"    "Netflix"   "Lenovo"    "Disney"    "HP"       
##  [178,] "Amazon"    "Netflix"   "Lenovo"    "Disney"    "Meta"     
##  [179,] "Amazon"    "Netflix"   "Lenovo"    "Disney"    "Microsoft"
##  [180,] "Amazon"    "Netflix"   "Lenovo"    "Disney"    "Steam"    
##  [181,] "Amazon"    "Netflix"   "Lenovo"    "Google"    "Apple"    
##  [182,] "Amazon"    "Netflix"   "Lenovo"    "Google"    "Disney"   
##  [183,] "Amazon"    "Netflix"   "Lenovo"    "Google"    "HP"       
##  [184,] "Amazon"    "Netflix"   "Lenovo"    "Google"    "Meta"     
##  [185,] "Amazon"    "Netflix"   "Lenovo"    "Google"    "Microsoft"
##  [186,] "Amazon"    "Netflix"   "Lenovo"    "Google"    "Steam"    
##  [187,] "Amazon"    "Netflix"   "Lenovo"    "HP"        "Apple"    
##  [188,] "Amazon"    "Netflix"   "Lenovo"    "HP"        "Disney"   
##  [189,] "Amazon"    "Netflix"   "Lenovo"    "HP"        "Google"   
##  [190,] "Amazon"    "Netflix"   "Lenovo"    "HP"        "Meta"     
##  [191,] "Amazon"    "Netflix"   "Lenovo"    "HP"        "Microsoft"
##  [192,] "Amazon"    "Netflix"   "Lenovo"    "HP"        "Steam"    
##  [193,] "Amazon"    "Netflix"   "Lenovo"    "Meta"      "Apple"    
##  [194,] "Amazon"    "Netflix"   "Lenovo"    "Meta"      "Disney"   
##  [195,] "Amazon"    "Netflix"   "Lenovo"    "Meta"      "Google"   
##  [196,] "Amazon"    "Netflix"   "Lenovo"    "Meta"      "HP"       
##  [197,] "Amazon"    "Netflix"   "Lenovo"    "Meta"      "Microsoft"
##  [198,] "Amazon"    "Netflix"   "Lenovo"    "Meta"      "Steam"    
##  [199,] "Amazon"    "Netflix"   "Lenovo"    "Microsoft" "Apple"    
##  [200,] "Amazon"    "Netflix"   "Lenovo"    "Microsoft" "Disney"   
##  [201,] "Amazon"    "Netflix"   "Lenovo"    "Microsoft" "Google"   
##  [202,] "Amazon"    "Netflix"   "Lenovo"    "Microsoft" "HP"       
##  [203,] "Amazon"    "Netflix"   "Lenovo"    "Microsoft" "Meta"     
##  [204,] "Amazon"    "Netflix"   "Lenovo"    "Microsoft" "Steam"    
##  [205,] "Amazon"    "Netflix"   "Lenovo"    "Steam"     "Apple"    
##  [206,] "Amazon"    "Netflix"   "Lenovo"    "Steam"     "Disney"   
##  [207,] "Amazon"    "Netflix"   "Lenovo"    "Steam"     "Google"   
##  [208,] "Amazon"    "Netflix"   "Lenovo"    "Steam"     "HP"       
##  [209,] "Amazon"    "Netflix"   "Lenovo"    "Steam"     "Meta"     
##  [210,] "Amazon"    "Netflix"   "Lenovo"    "Steam"     "Microsoft"
##  [211,] "Amazon"    "Netflix"   "Meta"      "Apple"     "Disney"   
##  [212,] "Amazon"    "Netflix"   "Meta"      "Apple"     "Google"   
##  [213,] "Amazon"    "Netflix"   "Meta"      "Apple"     "HP"       
##  [214,] "Amazon"    "Netflix"   "Meta"      "Apple"     "Lenovo"   
##  [215,] "Amazon"    "Netflix"   "Meta"      "Apple"     "Microsoft"
##  [216,] "Amazon"    "Netflix"   "Meta"      "Apple"     "Steam"    
##  [217,] "Amazon"    "Netflix"   "Meta"      "Disney"    "Apple"    
##  [218,] "Amazon"    "Netflix"   "Meta"      "Disney"    "Google"   
##  [219,] "Amazon"    "Netflix"   "Meta"      "Disney"    "HP"       
##  [220,] "Amazon"    "Netflix"   "Meta"      "Disney"    "Lenovo"   
##  [221,] "Amazon"    "Netflix"   "Meta"      "Disney"    "Microsoft"
##  [222,] "Amazon"    "Netflix"   "Meta"      "Disney"    "Steam"    
##  [223,] "Amazon"    "Netflix"   "Meta"      "Google"    "Apple"    
##  [224,] "Amazon"    "Netflix"   "Meta"      "Google"    "Disney"   
##  [225,] "Amazon"    "Netflix"   "Meta"      "Google"    "HP"       
##  [226,] "Amazon"    "Netflix"   "Meta"      "Google"    "Lenovo"   
##  [227,] "Amazon"    "Netflix"   "Meta"      "Google"    "Microsoft"
##  [228,] "Amazon"    "Netflix"   "Meta"      "Google"    "Steam"    
##  [229,] "Amazon"    "Netflix"   "Meta"      "HP"        "Apple"    
##  [230,] "Amazon"    "Netflix"   "Meta"      "HP"        "Disney"   
##  [231,] "Amazon"    "Netflix"   "Meta"      "HP"        "Google"   
##  [232,] "Amazon"    "Netflix"   "Meta"      "HP"        "Lenovo"   
##  [233,] "Amazon"    "Netflix"   "Meta"      "HP"        "Microsoft"
##  [234,] "Amazon"    "Netflix"   "Meta"      "HP"        "Steam"    
##  [235,] "Amazon"    "Netflix"   "Meta"      "Lenovo"    "Apple"    
##  [236,] "Amazon"    "Netflix"   "Meta"      "Lenovo"    "Disney"   
##  [237,] "Amazon"    "Netflix"   "Meta"      "Lenovo"    "Google"   
##  [238,] "Amazon"    "Netflix"   "Meta"      "Lenovo"    "HP"       
##  [239,] "Amazon"    "Netflix"   "Meta"      "Lenovo"    "Microsoft"
##  [240,] "Amazon"    "Netflix"   "Meta"      "Lenovo"    "Steam"    
##  [241,] "Amazon"    "Netflix"   "Meta"      "Microsoft" "Apple"    
##  [242,] "Amazon"    "Netflix"   "Meta"      "Microsoft" "Disney"   
##  [243,] "Amazon"    "Netflix"   "Meta"      "Microsoft" "Google"   
##  [244,] "Amazon"    "Netflix"   "Meta"      "Microsoft" "HP"       
##  [245,] "Amazon"    "Netflix"   "Meta"      "Microsoft" "Lenovo"   
##  [246,] "Amazon"    "Netflix"   "Meta"      "Microsoft" "Steam"    
##  [247,] "Amazon"    "Netflix"   "Meta"      "Steam"     "Apple"    
##  [248,] "Amazon"    "Netflix"   "Meta"      "Steam"     "Disney"   
##  [249,] "Amazon"    "Netflix"   "Meta"      "Steam"     "Google"   
##  [250,] "Amazon"    "Netflix"   "Meta"      "Steam"     "HP"       
##  [251,] "Amazon"    "Netflix"   "Meta"      "Steam"     "Lenovo"   
##  [252,] "Amazon"    "Netflix"   "Meta"      "Steam"     "Microsoft"
##  [253,] "Amazon"    "Netflix"   "Microsoft" "Apple"     "Disney"   
##  [254,] "Amazon"    "Netflix"   "Microsoft" "Apple"     "Google"   
##  [255,] "Amazon"    "Netflix"   "Microsoft" "Apple"     "HP"       
##  [256,] "Amazon"    "Netflix"   "Microsoft" "Apple"     "Lenovo"   
##  [257,] "Amazon"    "Netflix"   "Microsoft" "Apple"     "Meta"     
##  [258,] "Amazon"    "Netflix"   "Microsoft" "Apple"     "Steam"    
##  [259,] "Amazon"    "Netflix"   "Microsoft" "Disney"    "Apple"    
##  [260,] "Amazon"    "Netflix"   "Microsoft" "Disney"    "Google"   
##  [261,] "Amazon"    "Netflix"   "Microsoft" "Disney"    "HP"       
##  [262,] "Amazon"    "Netflix"   "Microsoft" "Disney"    "Lenovo"   
##  [263,] "Amazon"    "Netflix"   "Microsoft" "Disney"    "Meta"     
##  [264,] "Amazon"    "Netflix"   "Microsoft" "Disney"    "Steam"    
##  [265,] "Amazon"    "Netflix"   "Microsoft" "Google"    "Apple"    
##  [266,] "Amazon"    "Netflix"   "Microsoft" "Google"    "Disney"   
##  [267,] "Amazon"    "Netflix"   "Microsoft" "Google"    "HP"       
##  [268,] "Amazon"    "Netflix"   "Microsoft" "Google"    "Lenovo"   
##  [269,] "Amazon"    "Netflix"   "Microsoft" "Google"    "Meta"     
##  [270,] "Amazon"    "Netflix"   "Microsoft" "Google"    "Steam"    
##  [271,] "Amazon"    "Netflix"   "Microsoft" "HP"        "Apple"    
##  [272,] "Amazon"    "Netflix"   "Microsoft" "HP"        "Disney"   
##  [273,] "Amazon"    "Netflix"   "Microsoft" "HP"        "Google"   
##  [274,] "Amazon"    "Netflix"   "Microsoft" "HP"        "Lenovo"   
##  [275,] "Amazon"    "Netflix"   "Microsoft" "HP"        "Meta"     
##  [276,] "Amazon"    "Netflix"   "Microsoft" "HP"        "Steam"    
##  [277,] "Amazon"    "Netflix"   "Microsoft" "Lenovo"    "Apple"    
##  [278,] "Amazon"    "Netflix"   "Microsoft" "Lenovo"    "Disney"   
##  [279,] "Amazon"    "Netflix"   "Microsoft" "Lenovo"    "Google"   
##  [280,] "Amazon"    "Netflix"   "Microsoft" "Lenovo"    "HP"       
##  [281,] "Amazon"    "Netflix"   "Microsoft" "Lenovo"    "Meta"     
##  [282,] "Amazon"    "Netflix"   "Microsoft" "Lenovo"    "Steam"    
##  [283,] "Amazon"    "Netflix"   "Microsoft" "Meta"      "Apple"    
##  [284,] "Amazon"    "Netflix"   "Microsoft" "Meta"      "Disney"   
##  [285,] "Amazon"    "Netflix"   "Microsoft" "Meta"      "Google"   
##  [286,] "Amazon"    "Netflix"   "Microsoft" "Meta"      "HP"       
##  [287,] "Amazon"    "Netflix"   "Microsoft" "Meta"      "Lenovo"   
##  [288,] "Amazon"    "Netflix"   "Microsoft" "Meta"      "Steam"    
##  [289,] "Amazon"    "Netflix"   "Microsoft" "Steam"     "Apple"    
##  [290,] "Amazon"    "Netflix"   "Microsoft" "Steam"     "Disney"   
##  [291,] "Amazon"    "Netflix"   "Microsoft" "Steam"     "Google"   
##  [292,] "Amazon"    "Netflix"   "Microsoft" "Steam"     "HP"       
##  [293,] "Amazon"    "Netflix"   "Microsoft" "Steam"     "Lenovo"   
##  [294,] "Amazon"    "Netflix"   "Microsoft" "Steam"     "Meta"     
##  [295,] "Amazon"    "Netflix"   "Steam"     "Apple"     "Disney"   
##  [296,] "Amazon"    "Netflix"   "Steam"     "Apple"     "Google"   
##  [297,] "Amazon"    "Netflix"   "Steam"     "Apple"     "HP"       
##  [298,] "Amazon"    "Netflix"   "Steam"     "Apple"     "Lenovo"   
##  [299,] "Amazon"    "Netflix"   "Steam"     "Apple"     "Meta"     
##  [300,] "Amazon"    "Netflix"   "Steam"     "Apple"     "Microsoft"
##  [301,] "Amazon"    "Netflix"   "Steam"     "Disney"    "Apple"    
##  [302,] "Amazon"    "Netflix"   "Steam"     "Disney"    "Google"   
##  [303,] "Amazon"    "Netflix"   "Steam"     "Disney"    "HP"       
##  [304,] "Amazon"    "Netflix"   "Steam"     "Disney"    "Lenovo"   
##  [305,] "Amazon"    "Netflix"   "Steam"     "Disney"    "Meta"     
##  [306,] "Amazon"    "Netflix"   "Steam"     "Disney"    "Microsoft"
##  [307,] "Amazon"    "Netflix"   "Steam"     "Google"    "Apple"    
##  [308,] "Amazon"    "Netflix"   "Steam"     "Google"    "Disney"   
##  [309,] "Amazon"    "Netflix"   "Steam"     "Google"    "HP"       
##  [310,] "Amazon"    "Netflix"   "Steam"     "Google"    "Lenovo"   
##  [311,] "Amazon"    "Netflix"   "Steam"     "Google"    "Meta"     
##  [312,] "Amazon"    "Netflix"   "Steam"     "Google"    "Microsoft"
##  [313,] "Amazon"    "Netflix"   "Steam"     "HP"        "Apple"    
##  [314,] "Amazon"    "Netflix"   "Steam"     "HP"        "Disney"   
##  [315,] "Amazon"    "Netflix"   "Steam"     "HP"        "Google"   
##  [316,] "Amazon"    "Netflix"   "Steam"     "HP"        "Lenovo"   
##  [317,] "Amazon"    "Netflix"   "Steam"     "HP"        "Meta"     
##  [318,] "Amazon"    "Netflix"   "Steam"     "HP"        "Microsoft"
##  [319,] "Amazon"    "Netflix"   "Steam"     "Lenovo"    "Apple"    
##  [320,] "Amazon"    "Netflix"   "Steam"     "Lenovo"    "Disney"   
##  [321,] "Amazon"    "Netflix"   "Steam"     "Lenovo"    "Google"   
##  [322,] "Amazon"    "Netflix"   "Steam"     "Lenovo"    "HP"       
##  [323,] "Amazon"    "Netflix"   "Steam"     "Lenovo"    "Meta"     
##  [324,] "Amazon"    "Netflix"   "Steam"     "Lenovo"    "Microsoft"
##  [325,] "Amazon"    "Netflix"   "Steam"     "Meta"      "Apple"    
##  [326,] "Amazon"    "Netflix"   "Steam"     "Meta"      "Disney"   
##  [327,] "Amazon"    "Netflix"   "Steam"     "Meta"      "Google"   
##  [328,] "Amazon"    "Netflix"   "Steam"     "Meta"      "HP"       
##  [329,] "Amazon"    "Netflix"   "Steam"     "Meta"      "Lenovo"   
##  [330,] "Amazon"    "Netflix"   "Steam"     "Meta"      "Microsoft"
##  [331,] "Amazon"    "Netflix"   "Steam"     "Microsoft" "Apple"    
##  [332,] "Amazon"    "Netflix"   "Steam"     "Microsoft" "Disney"   
##  [333,] "Amazon"    "Netflix"   "Steam"     "Microsoft" "Google"   
##  [334,] "Amazon"    "Netflix"   "Steam"     "Microsoft" "HP"       
##  [335,] "Amazon"    "Netflix"   "Steam"     "Microsoft" "Lenovo"   
##  [336,] "Amazon"    "Netflix"   "Steam"     "Microsoft" "Meta"     
##  [337,] "Apple"     "Amazon"    "Netflix"   "Disney"    "Google"   
##  [338,] "Apple"     "Amazon"    "Netflix"   "Disney"    "HP"       
##  [339,] "Apple"     "Amazon"    "Netflix"   "Disney"    "Lenovo"   
##  [340,] "Apple"     "Amazon"    "Netflix"   "Disney"    "Meta"     
##  [341,] "Apple"     "Amazon"    "Netflix"   "Disney"    "Microsoft"
##  [342,] "Apple"     "Amazon"    "Netflix"   "Disney"    "Steam"    
##  [343,] "Apple"     "Amazon"    "Netflix"   "Google"    "Disney"   
##  [344,] "Apple"     "Amazon"    "Netflix"   "Google"    "HP"       
##  [345,] "Apple"     "Amazon"    "Netflix"   "Google"    "Lenovo"   
##  [346,] "Apple"     "Amazon"    "Netflix"   "Google"    "Meta"     
##  [347,] "Apple"     "Amazon"    "Netflix"   "Google"    "Microsoft"
##  [348,] "Apple"     "Amazon"    "Netflix"   "Google"    "Steam"    
##  [349,] "Apple"     "Amazon"    "Netflix"   "HP"        "Disney"   
##  [350,] "Apple"     "Amazon"    "Netflix"   "HP"        "Google"   
##  [351,] "Apple"     "Amazon"    "Netflix"   "HP"        "Lenovo"   
##  [352,] "Apple"     "Amazon"    "Netflix"   "HP"        "Meta"     
##  [353,] "Apple"     "Amazon"    "Netflix"   "HP"        "Microsoft"
##  [354,] "Apple"     "Amazon"    "Netflix"   "HP"        "Steam"    
##  [355,] "Apple"     "Amazon"    "Netflix"   "Lenovo"    "Disney"   
##  [356,] "Apple"     "Amazon"    "Netflix"   "Lenovo"    "Google"   
##  [357,] "Apple"     "Amazon"    "Netflix"   "Lenovo"    "HP"       
##  [358,] "Apple"     "Amazon"    "Netflix"   "Lenovo"    "Meta"     
##  [359,] "Apple"     "Amazon"    "Netflix"   "Lenovo"    "Microsoft"
##  [360,] "Apple"     "Amazon"    "Netflix"   "Lenovo"    "Steam"    
##  [361,] "Apple"     "Amazon"    "Netflix"   "Meta"      "Disney"   
##  [362,] "Apple"     "Amazon"    "Netflix"   "Meta"      "Google"   
##  [363,] "Apple"     "Amazon"    "Netflix"   "Meta"      "HP"       
##  [364,] "Apple"     "Amazon"    "Netflix"   "Meta"      "Lenovo"   
##  [365,] "Apple"     "Amazon"    "Netflix"   "Meta"      "Microsoft"
##  [366,] "Apple"     "Amazon"    "Netflix"   "Meta"      "Steam"    
##  [367,] "Apple"     "Amazon"    "Netflix"   "Microsoft" "Disney"   
##  [368,] "Apple"     "Amazon"    "Netflix"   "Microsoft" "Google"   
##  [369,] "Apple"     "Amazon"    "Netflix"   "Microsoft" "HP"       
##  [370,] "Apple"     "Amazon"    "Netflix"   "Microsoft" "Lenovo"   
##  [371,] "Apple"     "Amazon"    "Netflix"   "Microsoft" "Meta"     
##  [372,] "Apple"     "Amazon"    "Netflix"   "Microsoft" "Steam"    
##  [373,] "Apple"     "Amazon"    "Netflix"   "Steam"     "Disney"   
##  [374,] "Apple"     "Amazon"    "Netflix"   "Steam"     "Google"   
##  [375,] "Apple"     "Amazon"    "Netflix"   "Steam"     "HP"       
##  [376,] "Apple"     "Amazon"    "Netflix"   "Steam"     "Lenovo"   
##  [377,] "Apple"     "Amazon"    "Netflix"   "Steam"     "Meta"     
##  [378,] "Apple"     "Amazon"    "Netflix"   "Steam"     "Microsoft"
##  [379,] "Apple"     "Disney"    "Amazon"    "Netflix"   "Google"   
##  [380,] "Apple"     "Disney"    "Amazon"    "Netflix"   "HP"       
##  [381,] "Apple"     "Disney"    "Amazon"    "Netflix"   "Lenovo"   
##  [382,] "Apple"     "Disney"    "Amazon"    "Netflix"   "Meta"     
##  [383,] "Apple"     "Disney"    "Amazon"    "Netflix"   "Microsoft"
##  [384,] "Apple"     "Disney"    "Amazon"    "Netflix"   "Steam"    
##  [385,] "Apple"     "Disney"    "Google"    "Amazon"    "Netflix"  
##  [386,] "Apple"     "Disney"    "HP"        "Amazon"    "Netflix"  
##  [387,] "Apple"     "Disney"    "Lenovo"    "Amazon"    "Netflix"  
##  [388,] "Apple"     "Disney"    "Meta"      "Amazon"    "Netflix"  
##  [389,] "Apple"     "Disney"    "Microsoft" "Amazon"    "Netflix"  
##  [390,] "Apple"     "Disney"    "Steam"     "Amazon"    "Netflix"  
##  [391,] "Apple"     "Google"    "Amazon"    "Netflix"   "Disney"   
##  [392,] "Apple"     "Google"    "Amazon"    "Netflix"   "HP"       
##  [393,] "Apple"     "Google"    "Amazon"    "Netflix"   "Lenovo"   
##  [394,] "Apple"     "Google"    "Amazon"    "Netflix"   "Meta"     
##  [395,] "Apple"     "Google"    "Amazon"    "Netflix"   "Microsoft"
##  [396,] "Apple"     "Google"    "Amazon"    "Netflix"   "Steam"    
##  [397,] "Apple"     "Google"    "Disney"    "Amazon"    "Netflix"  
##  [398,] "Apple"     "Google"    "HP"        "Amazon"    "Netflix"  
##  [399,] "Apple"     "Google"    "Lenovo"    "Amazon"    "Netflix"  
##  [400,] "Apple"     "Google"    "Meta"      "Amazon"    "Netflix"  
##  [401,] "Apple"     "Google"    "Microsoft" "Amazon"    "Netflix"  
##  [402,] "Apple"     "Google"    "Steam"     "Amazon"    "Netflix"  
##  [403,] "Apple"     "HP"        "Amazon"    "Netflix"   "Disney"   
##  [404,] "Apple"     "HP"        "Amazon"    "Netflix"   "Google"   
##  [405,] "Apple"     "HP"        "Amazon"    "Netflix"   "Lenovo"   
##  [406,] "Apple"     "HP"        "Amazon"    "Netflix"   "Meta"     
##  [407,] "Apple"     "HP"        "Amazon"    "Netflix"   "Microsoft"
##  [408,] "Apple"     "HP"        "Amazon"    "Netflix"   "Steam"    
##  [409,] "Apple"     "HP"        "Disney"    "Amazon"    "Netflix"  
##  [410,] "Apple"     "HP"        "Google"    "Amazon"    "Netflix"  
##  [411,] "Apple"     "HP"        "Lenovo"    "Amazon"    "Netflix"  
##  [412,] "Apple"     "HP"        "Meta"      "Amazon"    "Netflix"  
##  [413,] "Apple"     "HP"        "Microsoft" "Amazon"    "Netflix"  
##  [414,] "Apple"     "HP"        "Steam"     "Amazon"    "Netflix"  
##  [415,] "Apple"     "Lenovo"    "Amazon"    "Netflix"   "Disney"   
##  [416,] "Apple"     "Lenovo"    "Amazon"    "Netflix"   "Google"   
##  [417,] "Apple"     "Lenovo"    "Amazon"    "Netflix"   "HP"       
##  [418,] "Apple"     "Lenovo"    "Amazon"    "Netflix"   "Meta"     
##  [419,] "Apple"     "Lenovo"    "Amazon"    "Netflix"   "Microsoft"
##  [420,] "Apple"     "Lenovo"    "Amazon"    "Netflix"   "Steam"    
##  [421,] "Apple"     "Lenovo"    "Disney"    "Amazon"    "Netflix"  
##  [422,] "Apple"     "Lenovo"    "Google"    "Amazon"    "Netflix"  
##  [423,] "Apple"     "Lenovo"    "HP"        "Amazon"    "Netflix"  
##  [424,] "Apple"     "Lenovo"    "Meta"      "Amazon"    "Netflix"  
##  [425,] "Apple"     "Lenovo"    "Microsoft" "Amazon"    "Netflix"  
##  [426,] "Apple"     "Lenovo"    "Steam"     "Amazon"    "Netflix"  
##  [427,] "Apple"     "Meta"      "Amazon"    "Netflix"   "Disney"   
##  [428,] "Apple"     "Meta"      "Amazon"    "Netflix"   "Google"   
##  [429,] "Apple"     "Meta"      "Amazon"    "Netflix"   "HP"       
##  [430,] "Apple"     "Meta"      "Amazon"    "Netflix"   "Lenovo"   
##  [431,] "Apple"     "Meta"      "Amazon"    "Netflix"   "Microsoft"
##  [432,] "Apple"     "Meta"      "Amazon"    "Netflix"   "Steam"    
##  [433,] "Apple"     "Meta"      "Disney"    "Amazon"    "Netflix"  
##  [434,] "Apple"     "Meta"      "Google"    "Amazon"    "Netflix"  
##  [435,] "Apple"     "Meta"      "HP"        "Amazon"    "Netflix"  
##  [436,] "Apple"     "Meta"      "Lenovo"    "Amazon"    "Netflix"  
##  [437,] "Apple"     "Meta"      "Microsoft" "Amazon"    "Netflix"  
##  [438,] "Apple"     "Meta"      "Steam"     "Amazon"    "Netflix"  
##  [439,] "Apple"     "Microsoft" "Amazon"    "Netflix"   "Disney"   
##  [440,] "Apple"     "Microsoft" "Amazon"    "Netflix"   "Google"   
##  [441,] "Apple"     "Microsoft" "Amazon"    "Netflix"   "HP"       
##  [442,] "Apple"     "Microsoft" "Amazon"    "Netflix"   "Lenovo"   
##  [443,] "Apple"     "Microsoft" "Amazon"    "Netflix"   "Meta"     
##  [444,] "Apple"     "Microsoft" "Amazon"    "Netflix"   "Steam"    
##  [445,] "Apple"     "Microsoft" "Disney"    "Amazon"    "Netflix"  
##  [446,] "Apple"     "Microsoft" "Google"    "Amazon"    "Netflix"  
##  [447,] "Apple"     "Microsoft" "HP"        "Amazon"    "Netflix"  
##  [448,] "Apple"     "Microsoft" "Lenovo"    "Amazon"    "Netflix"  
##  [449,] "Apple"     "Microsoft" "Meta"      "Amazon"    "Netflix"  
##  [450,] "Apple"     "Microsoft" "Steam"     "Amazon"    "Netflix"  
##  [451,] "Apple"     "Steam"     "Amazon"    "Netflix"   "Disney"   
##  [452,] "Apple"     "Steam"     "Amazon"    "Netflix"   "Google"   
##  [453,] "Apple"     "Steam"     "Amazon"    "Netflix"   "HP"       
##  [454,] "Apple"     "Steam"     "Amazon"    "Netflix"   "Lenovo"   
##  [455,] "Apple"     "Steam"     "Amazon"    "Netflix"   "Meta"     
##  [456,] "Apple"     "Steam"     "Amazon"    "Netflix"   "Microsoft"
##  [457,] "Apple"     "Steam"     "Disney"    "Amazon"    "Netflix"  
##  [458,] "Apple"     "Steam"     "Google"    "Amazon"    "Netflix"  
##  [459,] "Apple"     "Steam"     "HP"        "Amazon"    "Netflix"  
##  [460,] "Apple"     "Steam"     "Lenovo"    "Amazon"    "Netflix"  
##  [461,] "Apple"     "Steam"     "Meta"      "Amazon"    "Netflix"  
##  [462,] "Apple"     "Steam"     "Microsoft" "Amazon"    "Netflix"  
##  [463,] "Disney"    "Amazon"    "Netflix"   "Apple"     "Google"   
##  [464,] "Disney"    "Amazon"    "Netflix"   "Apple"     "HP"       
##  [465,] "Disney"    "Amazon"    "Netflix"   "Apple"     "Lenovo"   
##  [466,] "Disney"    "Amazon"    "Netflix"   "Apple"     "Meta"     
##  [467,] "Disney"    "Amazon"    "Netflix"   "Apple"     "Microsoft"
##  [468,] "Disney"    "Amazon"    "Netflix"   "Apple"     "Steam"    
##  [469,] "Disney"    "Amazon"    "Netflix"   "Google"    "Apple"    
##  [470,] "Disney"    "Amazon"    "Netflix"   "Google"    "HP"       
##  [471,] "Disney"    "Amazon"    "Netflix"   "Google"    "Lenovo"   
##  [472,] "Disney"    "Amazon"    "Netflix"   "Google"    "Meta"     
##  [473,] "Disney"    "Amazon"    "Netflix"   "Google"    "Microsoft"
##  [474,] "Disney"    "Amazon"    "Netflix"   "Google"    "Steam"    
##  [475,] "Disney"    "Amazon"    "Netflix"   "HP"        "Apple"    
##  [476,] "Disney"    "Amazon"    "Netflix"   "HP"        "Google"   
##  [477,] "Disney"    "Amazon"    "Netflix"   "HP"        "Lenovo"   
##  [478,] "Disney"    "Amazon"    "Netflix"   "HP"        "Meta"     
##  [479,] "Disney"    "Amazon"    "Netflix"   "HP"        "Microsoft"
##  [480,] "Disney"    "Amazon"    "Netflix"   "HP"        "Steam"    
##  [481,] "Disney"    "Amazon"    "Netflix"   "Lenovo"    "Apple"    
##  [482,] "Disney"    "Amazon"    "Netflix"   "Lenovo"    "Google"   
##  [483,] "Disney"    "Amazon"    "Netflix"   "Lenovo"    "HP"       
##  [484,] "Disney"    "Amazon"    "Netflix"   "Lenovo"    "Meta"     
##  [485,] "Disney"    "Amazon"    "Netflix"   "Lenovo"    "Microsoft"
##  [486,] "Disney"    "Amazon"    "Netflix"   "Lenovo"    "Steam"    
##  [487,] "Disney"    "Amazon"    "Netflix"   "Meta"      "Apple"    
##  [488,] "Disney"    "Amazon"    "Netflix"   "Meta"      "Google"   
##  [489,] "Disney"    "Amazon"    "Netflix"   "Meta"      "HP"       
##  [490,] "Disney"    "Amazon"    "Netflix"   "Meta"      "Lenovo"   
##  [491,] "Disney"    "Amazon"    "Netflix"   "Meta"      "Microsoft"
##  [492,] "Disney"    "Amazon"    "Netflix"   "Meta"      "Steam"    
##  [493,] "Disney"    "Amazon"    "Netflix"   "Microsoft" "Apple"    
##  [494,] "Disney"    "Amazon"    "Netflix"   "Microsoft" "Google"   
##  [495,] "Disney"    "Amazon"    "Netflix"   "Microsoft" "HP"       
##  [496,] "Disney"    "Amazon"    "Netflix"   "Microsoft" "Lenovo"   
##  [497,] "Disney"    "Amazon"    "Netflix"   "Microsoft" "Meta"     
##  [498,] "Disney"    "Amazon"    "Netflix"   "Microsoft" "Steam"    
##  [499,] "Disney"    "Amazon"    "Netflix"   "Steam"     "Apple"    
##  [500,] "Disney"    "Amazon"    "Netflix"   "Steam"     "Google"   
##  [501,] "Disney"    "Amazon"    "Netflix"   "Steam"     "HP"       
##  [502,] "Disney"    "Amazon"    "Netflix"   "Steam"     "Lenovo"   
##  [503,] "Disney"    "Amazon"    "Netflix"   "Steam"     "Meta"     
##  [504,] "Disney"    "Amazon"    "Netflix"   "Steam"     "Microsoft"
##  [505,] "Disney"    "Apple"     "Amazon"    "Netflix"   "Google"   
##  [506,] "Disney"    "Apple"     "Amazon"    "Netflix"   "HP"       
##  [507,] "Disney"    "Apple"     "Amazon"    "Netflix"   "Lenovo"   
##  [508,] "Disney"    "Apple"     "Amazon"    "Netflix"   "Meta"     
##  [509,] "Disney"    "Apple"     "Amazon"    "Netflix"   "Microsoft"
##  [510,] "Disney"    "Apple"     "Amazon"    "Netflix"   "Steam"    
##  [511,] "Disney"    "Apple"     "Google"    "Amazon"    "Netflix"  
##  [512,] "Disney"    "Apple"     "HP"        "Amazon"    "Netflix"  
##  [513,] "Disney"    "Apple"     "Lenovo"    "Amazon"    "Netflix"  
##  [514,] "Disney"    "Apple"     "Meta"      "Amazon"    "Netflix"  
##  [515,] "Disney"    "Apple"     "Microsoft" "Amazon"    "Netflix"  
##  [516,] "Disney"    "Apple"     "Steam"     "Amazon"    "Netflix"  
##  [517,] "Disney"    "Google"    "Amazon"    "Netflix"   "Apple"    
##  [518,] "Disney"    "Google"    "Amazon"    "Netflix"   "HP"       
##  [519,] "Disney"    "Google"    "Amazon"    "Netflix"   "Lenovo"   
##  [520,] "Disney"    "Google"    "Amazon"    "Netflix"   "Meta"     
##  [521,] "Disney"    "Google"    "Amazon"    "Netflix"   "Microsoft"
##  [522,] "Disney"    "Google"    "Amazon"    "Netflix"   "Steam"    
##  [523,] "Disney"    "Google"    "Apple"     "Amazon"    "Netflix"  
##  [524,] "Disney"    "Google"    "HP"        "Amazon"    "Netflix"  
##  [525,] "Disney"    "Google"    "Lenovo"    "Amazon"    "Netflix"  
##  [526,] "Disney"    "Google"    "Meta"      "Amazon"    "Netflix"  
##  [527,] "Disney"    "Google"    "Microsoft" "Amazon"    "Netflix"  
##  [528,] "Disney"    "Google"    "Steam"     "Amazon"    "Netflix"  
##  [529,] "Disney"    "HP"        "Amazon"    "Netflix"   "Apple"    
##  [530,] "Disney"    "HP"        "Amazon"    "Netflix"   "Google"   
##  [531,] "Disney"    "HP"        "Amazon"    "Netflix"   "Lenovo"   
##  [532,] "Disney"    "HP"        "Amazon"    "Netflix"   "Meta"     
##  [533,] "Disney"    "HP"        "Amazon"    "Netflix"   "Microsoft"
##  [534,] "Disney"    "HP"        "Amazon"    "Netflix"   "Steam"    
##  [535,] "Disney"    "HP"        "Apple"     "Amazon"    "Netflix"  
##  [536,] "Disney"    "HP"        "Google"    "Amazon"    "Netflix"  
##  [537,] "Disney"    "HP"        "Lenovo"    "Amazon"    "Netflix"  
##  [538,] "Disney"    "HP"        "Meta"      "Amazon"    "Netflix"  
##  [539,] "Disney"    "HP"        "Microsoft" "Amazon"    "Netflix"  
##  [540,] "Disney"    "HP"        "Steam"     "Amazon"    "Netflix"  
##  [541,] "Disney"    "Lenovo"    "Amazon"    "Netflix"   "Apple"    
##  [542,] "Disney"    "Lenovo"    "Amazon"    "Netflix"   "Google"   
##  [543,] "Disney"    "Lenovo"    "Amazon"    "Netflix"   "HP"       
##  [544,] "Disney"    "Lenovo"    "Amazon"    "Netflix"   "Meta"     
##  [545,] "Disney"    "Lenovo"    "Amazon"    "Netflix"   "Microsoft"
##  [546,] "Disney"    "Lenovo"    "Amazon"    "Netflix"   "Steam"    
##  [547,] "Disney"    "Lenovo"    "Apple"     "Amazon"    "Netflix"  
##  [548,] "Disney"    "Lenovo"    "Google"    "Amazon"    "Netflix"  
##  [549,] "Disney"    "Lenovo"    "HP"        "Amazon"    "Netflix"  
##  [550,] "Disney"    "Lenovo"    "Meta"      "Amazon"    "Netflix"  
##  [551,] "Disney"    "Lenovo"    "Microsoft" "Amazon"    "Netflix"  
##  [552,] "Disney"    "Lenovo"    "Steam"     "Amazon"    "Netflix"  
##  [553,] "Disney"    "Meta"      "Amazon"    "Netflix"   "Apple"    
##  [554,] "Disney"    "Meta"      "Amazon"    "Netflix"   "Google"   
##  [555,] "Disney"    "Meta"      "Amazon"    "Netflix"   "HP"       
##  [556,] "Disney"    "Meta"      "Amazon"    "Netflix"   "Lenovo"   
##  [557,] "Disney"    "Meta"      "Amazon"    "Netflix"   "Microsoft"
##  [558,] "Disney"    "Meta"      "Amazon"    "Netflix"   "Steam"    
##  [559,] "Disney"    "Meta"      "Apple"     "Amazon"    "Netflix"  
##  [560,] "Disney"    "Meta"      "Google"    "Amazon"    "Netflix"  
##  [561,] "Disney"    "Meta"      "HP"        "Amazon"    "Netflix"  
##  [562,] "Disney"    "Meta"      "Lenovo"    "Amazon"    "Netflix"  
##  [563,] "Disney"    "Meta"      "Microsoft" "Amazon"    "Netflix"  
##  [564,] "Disney"    "Meta"      "Steam"     "Amazon"    "Netflix"  
##  [565,] "Disney"    "Microsoft" "Amazon"    "Netflix"   "Apple"    
##  [566,] "Disney"    "Microsoft" "Amazon"    "Netflix"   "Google"   
##  [567,] "Disney"    "Microsoft" "Amazon"    "Netflix"   "HP"       
##  [568,] "Disney"    "Microsoft" "Amazon"    "Netflix"   "Lenovo"   
##  [569,] "Disney"    "Microsoft" "Amazon"    "Netflix"   "Meta"     
##  [570,] "Disney"    "Microsoft" "Amazon"    "Netflix"   "Steam"    
##  [571,] "Disney"    "Microsoft" "Apple"     "Amazon"    "Netflix"  
##  [572,] "Disney"    "Microsoft" "Google"    "Amazon"    "Netflix"  
##  [573,] "Disney"    "Microsoft" "HP"        "Amazon"    "Netflix"  
##  [574,] "Disney"    "Microsoft" "Lenovo"    "Amazon"    "Netflix"  
##  [575,] "Disney"    "Microsoft" "Meta"      "Amazon"    "Netflix"  
##  [576,] "Disney"    "Microsoft" "Steam"     "Amazon"    "Netflix"  
##  [577,] "Disney"    "Steam"     "Amazon"    "Netflix"   "Apple"    
##  [578,] "Disney"    "Steam"     "Amazon"    "Netflix"   "Google"   
##  [579,] "Disney"    "Steam"     "Amazon"    "Netflix"   "HP"       
##  [580,] "Disney"    "Steam"     "Amazon"    "Netflix"   "Lenovo"   
##  [581,] "Disney"    "Steam"     "Amazon"    "Netflix"   "Meta"     
##  [582,] "Disney"    "Steam"     "Amazon"    "Netflix"   "Microsoft"
##  [583,] "Disney"    "Steam"     "Apple"     "Amazon"    "Netflix"  
##  [584,] "Disney"    "Steam"     "Google"    "Amazon"    "Netflix"  
##  [585,] "Disney"    "Steam"     "HP"        "Amazon"    "Netflix"  
##  [586,] "Disney"    "Steam"     "Lenovo"    "Amazon"    "Netflix"  
##  [587,] "Disney"    "Steam"     "Meta"      "Amazon"    "Netflix"  
##  [588,] "Disney"    "Steam"     "Microsoft" "Amazon"    "Netflix"  
##  [589,] "Google"    "Amazon"    "Netflix"   "Apple"     "Disney"   
##  [590,] "Google"    "Amazon"    "Netflix"   "Apple"     "HP"       
##  [591,] "Google"    "Amazon"    "Netflix"   "Apple"     "Lenovo"   
##  [592,] "Google"    "Amazon"    "Netflix"   "Apple"     "Meta"     
##  [593,] "Google"    "Amazon"    "Netflix"   "Apple"     "Microsoft"
##  [594,] "Google"    "Amazon"    "Netflix"   "Apple"     "Steam"    
##  [595,] "Google"    "Amazon"    "Netflix"   "Disney"    "Apple"    
##  [596,] "Google"    "Amazon"    "Netflix"   "Disney"    "HP"       
##  [597,] "Google"    "Amazon"    "Netflix"   "Disney"    "Lenovo"   
##  [598,] "Google"    "Amazon"    "Netflix"   "Disney"    "Meta"     
##  [599,] "Google"    "Amazon"    "Netflix"   "Disney"    "Microsoft"
##  [600,] "Google"    "Amazon"    "Netflix"   "Disney"    "Steam"    
##  [601,] "Google"    "Amazon"    "Netflix"   "HP"        "Apple"    
##  [602,] "Google"    "Amazon"    "Netflix"   "HP"        "Disney"   
##  [603,] "Google"    "Amazon"    "Netflix"   "HP"        "Lenovo"   
##  [604,] "Google"    "Amazon"    "Netflix"   "HP"        "Meta"     
##  [605,] "Google"    "Amazon"    "Netflix"   "HP"        "Microsoft"
##  [606,] "Google"    "Amazon"    "Netflix"   "HP"        "Steam"    
##  [607,] "Google"    "Amazon"    "Netflix"   "Lenovo"    "Apple"    
##  [608,] "Google"    "Amazon"    "Netflix"   "Lenovo"    "Disney"   
##  [609,] "Google"    "Amazon"    "Netflix"   "Lenovo"    "HP"       
##  [610,] "Google"    "Amazon"    "Netflix"   "Lenovo"    "Meta"     
##  [611,] "Google"    "Amazon"    "Netflix"   "Lenovo"    "Microsoft"
##  [612,] "Google"    "Amazon"    "Netflix"   "Lenovo"    "Steam"    
##  [613,] "Google"    "Amazon"    "Netflix"   "Meta"      "Apple"    
##  [614,] "Google"    "Amazon"    "Netflix"   "Meta"      "Disney"   
##  [615,] "Google"    "Amazon"    "Netflix"   "Meta"      "HP"       
##  [616,] "Google"    "Amazon"    "Netflix"   "Meta"      "Lenovo"   
##  [617,] "Google"    "Amazon"    "Netflix"   "Meta"      "Microsoft"
##  [618,] "Google"    "Amazon"    "Netflix"   "Meta"      "Steam"    
##  [619,] "Google"    "Amazon"    "Netflix"   "Microsoft" "Apple"    
##  [620,] "Google"    "Amazon"    "Netflix"   "Microsoft" "Disney"   
##  [621,] "Google"    "Amazon"    "Netflix"   "Microsoft" "HP"       
##  [622,] "Google"    "Amazon"    "Netflix"   "Microsoft" "Lenovo"   
##  [623,] "Google"    "Amazon"    "Netflix"   "Microsoft" "Meta"     
##  [624,] "Google"    "Amazon"    "Netflix"   "Microsoft" "Steam"    
##  [625,] "Google"    "Amazon"    "Netflix"   "Steam"     "Apple"    
##  [626,] "Google"    "Amazon"    "Netflix"   "Steam"     "Disney"   
##  [627,] "Google"    "Amazon"    "Netflix"   "Steam"     "HP"       
##  [628,] "Google"    "Amazon"    "Netflix"   "Steam"     "Lenovo"   
##  [629,] "Google"    "Amazon"    "Netflix"   "Steam"     "Meta"     
##  [630,] "Google"    "Amazon"    "Netflix"   "Steam"     "Microsoft"
##  [631,] "Google"    "Apple"     "Amazon"    "Netflix"   "Disney"   
##  [632,] "Google"    "Apple"     "Amazon"    "Netflix"   "HP"       
##  [633,] "Google"    "Apple"     "Amazon"    "Netflix"   "Lenovo"   
##  [634,] "Google"    "Apple"     "Amazon"    "Netflix"   "Meta"     
##  [635,] "Google"    "Apple"     "Amazon"    "Netflix"   "Microsoft"
##  [636,] "Google"    "Apple"     "Amazon"    "Netflix"   "Steam"    
##  [637,] "Google"    "Apple"     "Disney"    "Amazon"    "Netflix"  
##  [638,] "Google"    "Apple"     "HP"        "Amazon"    "Netflix"  
##  [639,] "Google"    "Apple"     "Lenovo"    "Amazon"    "Netflix"  
##  [640,] "Google"    "Apple"     "Meta"      "Amazon"    "Netflix"  
##  [641,] "Google"    "Apple"     "Microsoft" "Amazon"    "Netflix"  
##  [642,] "Google"    "Apple"     "Steam"     "Amazon"    "Netflix"  
##  [643,] "Google"    "Disney"    "Amazon"    "Netflix"   "Apple"    
##  [644,] "Google"    "Disney"    "Amazon"    "Netflix"   "HP"       
##  [645,] "Google"    "Disney"    "Amazon"    "Netflix"   "Lenovo"   
##  [646,] "Google"    "Disney"    "Amazon"    "Netflix"   "Meta"     
##  [647,] "Google"    "Disney"    "Amazon"    "Netflix"   "Microsoft"
##  [648,] "Google"    "Disney"    "Amazon"    "Netflix"   "Steam"    
##  [649,] "Google"    "Disney"    "Apple"     "Amazon"    "Netflix"  
##  [650,] "Google"    "Disney"    "HP"        "Amazon"    "Netflix"  
##  [651,] "Google"    "Disney"    "Lenovo"    "Amazon"    "Netflix"  
##  [652,] "Google"    "Disney"    "Meta"      "Amazon"    "Netflix"  
##  [653,] "Google"    "Disney"    "Microsoft" "Amazon"    "Netflix"  
##  [654,] "Google"    "Disney"    "Steam"     "Amazon"    "Netflix"  
##  [655,] "Google"    "HP"        "Amazon"    "Netflix"   "Apple"    
##  [656,] "Google"    "HP"        "Amazon"    "Netflix"   "Disney"   
##  [657,] "Google"    "HP"        "Amazon"    "Netflix"   "Lenovo"   
##  [658,] "Google"    "HP"        "Amazon"    "Netflix"   "Meta"     
##  [659,] "Google"    "HP"        "Amazon"    "Netflix"   "Microsoft"
##  [660,] "Google"    "HP"        "Amazon"    "Netflix"   "Steam"    
##  [661,] "Google"    "HP"        "Apple"     "Amazon"    "Netflix"  
##  [662,] "Google"    "HP"        "Disney"    "Amazon"    "Netflix"  
##  [663,] "Google"    "HP"        "Lenovo"    "Amazon"    "Netflix"  
##  [664,] "Google"    "HP"        "Meta"      "Amazon"    "Netflix"  
##  [665,] "Google"    "HP"        "Microsoft" "Amazon"    "Netflix"  
##  [666,] "Google"    "HP"        "Steam"     "Amazon"    "Netflix"  
##  [667,] "Google"    "Lenovo"    "Amazon"    "Netflix"   "Apple"    
##  [668,] "Google"    "Lenovo"    "Amazon"    "Netflix"   "Disney"   
##  [669,] "Google"    "Lenovo"    "Amazon"    "Netflix"   "HP"       
##  [670,] "Google"    "Lenovo"    "Amazon"    "Netflix"   "Meta"     
##  [671,] "Google"    "Lenovo"    "Amazon"    "Netflix"   "Microsoft"
##  [672,] "Google"    "Lenovo"    "Amazon"    "Netflix"   "Steam"    
##  [673,] "Google"    "Lenovo"    "Apple"     "Amazon"    "Netflix"  
##  [674,] "Google"    "Lenovo"    "Disney"    "Amazon"    "Netflix"  
##  [675,] "Google"    "Lenovo"    "HP"        "Amazon"    "Netflix"  
##  [676,] "Google"    "Lenovo"    "Meta"      "Amazon"    "Netflix"  
##  [677,] "Google"    "Lenovo"    "Microsoft" "Amazon"    "Netflix"  
##  [678,] "Google"    "Lenovo"    "Steam"     "Amazon"    "Netflix"  
##  [679,] "Google"    "Meta"      "Amazon"    "Netflix"   "Apple"    
##  [680,] "Google"    "Meta"      "Amazon"    "Netflix"   "Disney"   
##  [681,] "Google"    "Meta"      "Amazon"    "Netflix"   "HP"       
##  [682,] "Google"    "Meta"      "Amazon"    "Netflix"   "Lenovo"   
##  [683,] "Google"    "Meta"      "Amazon"    "Netflix"   "Microsoft"
##  [684,] "Google"    "Meta"      "Amazon"    "Netflix"   "Steam"    
##  [685,] "Google"    "Meta"      "Apple"     "Amazon"    "Netflix"  
##  [686,] "Google"    "Meta"      "Disney"    "Amazon"    "Netflix"  
##  [687,] "Google"    "Meta"      "HP"        "Amazon"    "Netflix"  
##  [688,] "Google"    "Meta"      "Lenovo"    "Amazon"    "Netflix"  
##  [689,] "Google"    "Meta"      "Microsoft" "Amazon"    "Netflix"  
##  [690,] "Google"    "Meta"      "Steam"     "Amazon"    "Netflix"  
##  [691,] "Google"    "Microsoft" "Amazon"    "Netflix"   "Apple"    
##  [692,] "Google"    "Microsoft" "Amazon"    "Netflix"   "Disney"   
##  [693,] "Google"    "Microsoft" "Amazon"    "Netflix"   "HP"       
##  [694,] "Google"    "Microsoft" "Amazon"    "Netflix"   "Lenovo"   
##  [695,] "Google"    "Microsoft" "Amazon"    "Netflix"   "Meta"     
##  [696,] "Google"    "Microsoft" "Amazon"    "Netflix"   "Steam"    
##  [697,] "Google"    "Microsoft" "Apple"     "Amazon"    "Netflix"  
##  [698,] "Google"    "Microsoft" "Disney"    "Amazon"    "Netflix"  
##  [699,] "Google"    "Microsoft" "HP"        "Amazon"    "Netflix"  
##  [700,] "Google"    "Microsoft" "Lenovo"    "Amazon"    "Netflix"  
##  [701,] "Google"    "Microsoft" "Meta"      "Amazon"    "Netflix"  
##  [702,] "Google"    "Microsoft" "Steam"     "Amazon"    "Netflix"  
##  [703,] "Google"    "Steam"     "Amazon"    "Netflix"   "Apple"    
##  [704,] "Google"    "Steam"     "Amazon"    "Netflix"   "Disney"   
##  [705,] "Google"    "Steam"     "Amazon"    "Netflix"   "HP"       
##  [706,] "Google"    "Steam"     "Amazon"    "Netflix"   "Lenovo"   
##  [707,] "Google"    "Steam"     "Amazon"    "Netflix"   "Meta"     
##  [708,] "Google"    "Steam"     "Amazon"    "Netflix"   "Microsoft"
##  [709,] "Google"    "Steam"     "Apple"     "Amazon"    "Netflix"  
##  [710,] "Google"    "Steam"     "Disney"    "Amazon"    "Netflix"  
##  [711,] "Google"    "Steam"     "HP"        "Amazon"    "Netflix"  
##  [712,] "Google"    "Steam"     "Lenovo"    "Amazon"    "Netflix"  
##  [713,] "Google"    "Steam"     "Meta"      "Amazon"    "Netflix"  
##  [714,] "Google"    "Steam"     "Microsoft" "Amazon"    "Netflix"  
##  [715,] "HP"        "Amazon"    "Netflix"   "Apple"     "Disney"   
##  [716,] "HP"        "Amazon"    "Netflix"   "Apple"     "Google"   
##  [717,] "HP"        "Amazon"    "Netflix"   "Apple"     "Lenovo"   
##  [718,] "HP"        "Amazon"    "Netflix"   "Apple"     "Meta"     
##  [719,] "HP"        "Amazon"    "Netflix"   "Apple"     "Microsoft"
##  [720,] "HP"        "Amazon"    "Netflix"   "Apple"     "Steam"    
##  [721,] "HP"        "Amazon"    "Netflix"   "Disney"    "Apple"    
##  [722,] "HP"        "Amazon"    "Netflix"   "Disney"    "Google"   
##  [723,] "HP"        "Amazon"    "Netflix"   "Disney"    "Lenovo"   
##  [724,] "HP"        "Amazon"    "Netflix"   "Disney"    "Meta"     
##  [725,] "HP"        "Amazon"    "Netflix"   "Disney"    "Microsoft"
##  [726,] "HP"        "Amazon"    "Netflix"   "Disney"    "Steam"    
##  [727,] "HP"        "Amazon"    "Netflix"   "Google"    "Apple"    
##  [728,] "HP"        "Amazon"    "Netflix"   "Google"    "Disney"   
##  [729,] "HP"        "Amazon"    "Netflix"   "Google"    "Lenovo"   
##  [730,] "HP"        "Amazon"    "Netflix"   "Google"    "Meta"     
##  [731,] "HP"        "Amazon"    "Netflix"   "Google"    "Microsoft"
##  [732,] "HP"        "Amazon"    "Netflix"   "Google"    "Steam"    
##  [733,] "HP"        "Amazon"    "Netflix"   "Lenovo"    "Apple"    
##  [734,] "HP"        "Amazon"    "Netflix"   "Lenovo"    "Disney"   
##  [735,] "HP"        "Amazon"    "Netflix"   "Lenovo"    "Google"   
##  [736,] "HP"        "Amazon"    "Netflix"   "Lenovo"    "Meta"     
##  [737,] "HP"        "Amazon"    "Netflix"   "Lenovo"    "Microsoft"
##  [738,] "HP"        "Amazon"    "Netflix"   "Lenovo"    "Steam"    
##  [739,] "HP"        "Amazon"    "Netflix"   "Meta"      "Apple"    
##  [740,] "HP"        "Amazon"    "Netflix"   "Meta"      "Disney"   
##  [741,] "HP"        "Amazon"    "Netflix"   "Meta"      "Google"   
##  [742,] "HP"        "Amazon"    "Netflix"   "Meta"      "Lenovo"   
##  [743,] "HP"        "Amazon"    "Netflix"   "Meta"      "Microsoft"
##  [744,] "HP"        "Amazon"    "Netflix"   "Meta"      "Steam"    
##  [745,] "HP"        "Amazon"    "Netflix"   "Microsoft" "Apple"    
##  [746,] "HP"        "Amazon"    "Netflix"   "Microsoft" "Disney"   
##  [747,] "HP"        "Amazon"    "Netflix"   "Microsoft" "Google"   
##  [748,] "HP"        "Amazon"    "Netflix"   "Microsoft" "Lenovo"   
##  [749,] "HP"        "Amazon"    "Netflix"   "Microsoft" "Meta"     
##  [750,] "HP"        "Amazon"    "Netflix"   "Microsoft" "Steam"    
##  [751,] "HP"        "Amazon"    "Netflix"   "Steam"     "Apple"    
##  [752,] "HP"        "Amazon"    "Netflix"   "Steam"     "Disney"   
##  [753,] "HP"        "Amazon"    "Netflix"   "Steam"     "Google"   
##  [754,] "HP"        "Amazon"    "Netflix"   "Steam"     "Lenovo"   
##  [755,] "HP"        "Amazon"    "Netflix"   "Steam"     "Meta"     
##  [756,] "HP"        "Amazon"    "Netflix"   "Steam"     "Microsoft"
##  [757,] "HP"        "Apple"     "Amazon"    "Netflix"   "Disney"   
##  [758,] "HP"        "Apple"     "Amazon"    "Netflix"   "Google"   
##  [759,] "HP"        "Apple"     "Amazon"    "Netflix"   "Lenovo"   
##  [760,] "HP"        "Apple"     "Amazon"    "Netflix"   "Meta"     
##  [761,] "HP"        "Apple"     "Amazon"    "Netflix"   "Microsoft"
##  [762,] "HP"        "Apple"     "Amazon"    "Netflix"   "Steam"    
##  [763,] "HP"        "Apple"     "Disney"    "Amazon"    "Netflix"  
##  [764,] "HP"        "Apple"     "Google"    "Amazon"    "Netflix"  
##  [765,] "HP"        "Apple"     "Lenovo"    "Amazon"    "Netflix"  
##  [766,] "HP"        "Apple"     "Meta"      "Amazon"    "Netflix"  
##  [767,] "HP"        "Apple"     "Microsoft" "Amazon"    "Netflix"  
##  [768,] "HP"        "Apple"     "Steam"     "Amazon"    "Netflix"  
##  [769,] "HP"        "Disney"    "Amazon"    "Netflix"   "Apple"    
##  [770,] "HP"        "Disney"    "Amazon"    "Netflix"   "Google"   
##  [771,] "HP"        "Disney"    "Amazon"    "Netflix"   "Lenovo"   
##  [772,] "HP"        "Disney"    "Amazon"    "Netflix"   "Meta"     
##  [773,] "HP"        "Disney"    "Amazon"    "Netflix"   "Microsoft"
##  [774,] "HP"        "Disney"    "Amazon"    "Netflix"   "Steam"    
##  [775,] "HP"        "Disney"    "Apple"     "Amazon"    "Netflix"  
##  [776,] "HP"        "Disney"    "Google"    "Amazon"    "Netflix"  
##  [777,] "HP"        "Disney"    "Lenovo"    "Amazon"    "Netflix"  
##  [778,] "HP"        "Disney"    "Meta"      "Amazon"    "Netflix"  
##  [779,] "HP"        "Disney"    "Microsoft" "Amazon"    "Netflix"  
##  [780,] "HP"        "Disney"    "Steam"     "Amazon"    "Netflix"  
##  [781,] "HP"        "Google"    "Amazon"    "Netflix"   "Apple"    
##  [782,] "HP"        "Google"    "Amazon"    "Netflix"   "Disney"   
##  [783,] "HP"        "Google"    "Amazon"    "Netflix"   "Lenovo"   
##  [784,] "HP"        "Google"    "Amazon"    "Netflix"   "Meta"     
##  [785,] "HP"        "Google"    "Amazon"    "Netflix"   "Microsoft"
##  [786,] "HP"        "Google"    "Amazon"    "Netflix"   "Steam"    
##  [787,] "HP"        "Google"    "Apple"     "Amazon"    "Netflix"  
##  [788,] "HP"        "Google"    "Disney"    "Amazon"    "Netflix"  
##  [789,] "HP"        "Google"    "Lenovo"    "Amazon"    "Netflix"  
##  [790,] "HP"        "Google"    "Meta"      "Amazon"    "Netflix"  
##  [791,] "HP"        "Google"    "Microsoft" "Amazon"    "Netflix"  
##  [792,] "HP"        "Google"    "Steam"     "Amazon"    "Netflix"  
##  [793,] "HP"        "Lenovo"    "Amazon"    "Netflix"   "Apple"    
##  [794,] "HP"        "Lenovo"    "Amazon"    "Netflix"   "Disney"   
##  [795,] "HP"        "Lenovo"    "Amazon"    "Netflix"   "Google"   
##  [796,] "HP"        "Lenovo"    "Amazon"    "Netflix"   "Meta"     
##  [797,] "HP"        "Lenovo"    "Amazon"    "Netflix"   "Microsoft"
##  [798,] "HP"        "Lenovo"    "Amazon"    "Netflix"   "Steam"    
##  [799,] "HP"        "Lenovo"    "Apple"     "Amazon"    "Netflix"  
##  [800,] "HP"        "Lenovo"    "Disney"    "Amazon"    "Netflix"  
##  [801,] "HP"        "Lenovo"    "Google"    "Amazon"    "Netflix"  
##  [802,] "HP"        "Lenovo"    "Meta"      "Amazon"    "Netflix"  
##  [803,] "HP"        "Lenovo"    "Microsoft" "Amazon"    "Netflix"  
##  [804,] "HP"        "Lenovo"    "Steam"     "Amazon"    "Netflix"  
##  [805,] "HP"        "Meta"      "Amazon"    "Netflix"   "Apple"    
##  [806,] "HP"        "Meta"      "Amazon"    "Netflix"   "Disney"   
##  [807,] "HP"        "Meta"      "Amazon"    "Netflix"   "Google"   
##  [808,] "HP"        "Meta"      "Amazon"    "Netflix"   "Lenovo"   
##  [809,] "HP"        "Meta"      "Amazon"    "Netflix"   "Microsoft"
##  [810,] "HP"        "Meta"      "Amazon"    "Netflix"   "Steam"    
##  [811,] "HP"        "Meta"      "Apple"     "Amazon"    "Netflix"  
##  [812,] "HP"        "Meta"      "Disney"    "Amazon"    "Netflix"  
##  [813,] "HP"        "Meta"      "Google"    "Amazon"    "Netflix"  
##  [814,] "HP"        "Meta"      "Lenovo"    "Amazon"    "Netflix"  
##  [815,] "HP"        "Meta"      "Microsoft" "Amazon"    "Netflix"  
##  [816,] "HP"        "Meta"      "Steam"     "Amazon"    "Netflix"  
##  [817,] "HP"        "Microsoft" "Amazon"    "Netflix"   "Apple"    
##  [818,] "HP"        "Microsoft" "Amazon"    "Netflix"   "Disney"   
##  [819,] "HP"        "Microsoft" "Amazon"    "Netflix"   "Google"   
##  [820,] "HP"        "Microsoft" "Amazon"    "Netflix"   "Lenovo"   
##  [821,] "HP"        "Microsoft" "Amazon"    "Netflix"   "Meta"     
##  [822,] "HP"        "Microsoft" "Amazon"    "Netflix"   "Steam"    
##  [823,] "HP"        "Microsoft" "Apple"     "Amazon"    "Netflix"  
##  [824,] "HP"        "Microsoft" "Disney"    "Amazon"    "Netflix"  
##  [825,] "HP"        "Microsoft" "Google"    "Amazon"    "Netflix"  
##  [826,] "HP"        "Microsoft" "Lenovo"    "Amazon"    "Netflix"  
##  [827,] "HP"        "Microsoft" "Meta"      "Amazon"    "Netflix"  
##  [828,] "HP"        "Microsoft" "Steam"     "Amazon"    "Netflix"  
##  [829,] "HP"        "Steam"     "Amazon"    "Netflix"   "Apple"    
##  [830,] "HP"        "Steam"     "Amazon"    "Netflix"   "Disney"   
##  [831,] "HP"        "Steam"     "Amazon"    "Netflix"   "Google"   
##  [832,] "HP"        "Steam"     "Amazon"    "Netflix"   "Lenovo"   
##  [833,] "HP"        "Steam"     "Amazon"    "Netflix"   "Meta"     
##  [834,] "HP"        "Steam"     "Amazon"    "Netflix"   "Microsoft"
##  [835,] "HP"        "Steam"     "Apple"     "Amazon"    "Netflix"  
##  [836,] "HP"        "Steam"     "Disney"    "Amazon"    "Netflix"  
##  [837,] "HP"        "Steam"     "Google"    "Amazon"    "Netflix"  
##  [838,] "HP"        "Steam"     "Lenovo"    "Amazon"    "Netflix"  
##  [839,] "HP"        "Steam"     "Meta"      "Amazon"    "Netflix"  
##  [840,] "HP"        "Steam"     "Microsoft" "Amazon"    "Netflix"  
##  [841,] "Lenovo"    "Amazon"    "Netflix"   "Apple"     "Disney"   
##  [842,] "Lenovo"    "Amazon"    "Netflix"   "Apple"     "Google"   
##  [843,] "Lenovo"    "Amazon"    "Netflix"   "Apple"     "HP"       
##  [844,] "Lenovo"    "Amazon"    "Netflix"   "Apple"     "Meta"     
##  [845,] "Lenovo"    "Amazon"    "Netflix"   "Apple"     "Microsoft"
##  [846,] "Lenovo"    "Amazon"    "Netflix"   "Apple"     "Steam"    
##  [847,] "Lenovo"    "Amazon"    "Netflix"   "Disney"    "Apple"    
##  [848,] "Lenovo"    "Amazon"    "Netflix"   "Disney"    "Google"   
##  [849,] "Lenovo"    "Amazon"    "Netflix"   "Disney"    "HP"       
##  [850,] "Lenovo"    "Amazon"    "Netflix"   "Disney"    "Meta"     
##  [851,] "Lenovo"    "Amazon"    "Netflix"   "Disney"    "Microsoft"
##  [852,] "Lenovo"    "Amazon"    "Netflix"   "Disney"    "Steam"    
##  [853,] "Lenovo"    "Amazon"    "Netflix"   "Google"    "Apple"    
##  [854,] "Lenovo"    "Amazon"    "Netflix"   "Google"    "Disney"   
##  [855,] "Lenovo"    "Amazon"    "Netflix"   "Google"    "HP"       
##  [856,] "Lenovo"    "Amazon"    "Netflix"   "Google"    "Meta"     
##  [857,] "Lenovo"    "Amazon"    "Netflix"   "Google"    "Microsoft"
##  [858,] "Lenovo"    "Amazon"    "Netflix"   "Google"    "Steam"    
##  [859,] "Lenovo"    "Amazon"    "Netflix"   "HP"        "Apple"    
##  [860,] "Lenovo"    "Amazon"    "Netflix"   "HP"        "Disney"   
##  [861,] "Lenovo"    "Amazon"    "Netflix"   "HP"        "Google"   
##  [862,] "Lenovo"    "Amazon"    "Netflix"   "HP"        "Meta"     
##  [863,] "Lenovo"    "Amazon"    "Netflix"   "HP"        "Microsoft"
##  [864,] "Lenovo"    "Amazon"    "Netflix"   "HP"        "Steam"    
##  [865,] "Lenovo"    "Amazon"    "Netflix"   "Meta"      "Apple"    
##  [866,] "Lenovo"    "Amazon"    "Netflix"   "Meta"      "Disney"   
##  [867,] "Lenovo"    "Amazon"    "Netflix"   "Meta"      "Google"   
##  [868,] "Lenovo"    "Amazon"    "Netflix"   "Meta"      "HP"       
##  [869,] "Lenovo"    "Amazon"    "Netflix"   "Meta"      "Microsoft"
##  [870,] "Lenovo"    "Amazon"    "Netflix"   "Meta"      "Steam"    
##  [871,] "Lenovo"    "Amazon"    "Netflix"   "Microsoft" "Apple"    
##  [872,] "Lenovo"    "Amazon"    "Netflix"   "Microsoft" "Disney"   
##  [873,] "Lenovo"    "Amazon"    "Netflix"   "Microsoft" "Google"   
##  [874,] "Lenovo"    "Amazon"    "Netflix"   "Microsoft" "HP"       
##  [875,] "Lenovo"    "Amazon"    "Netflix"   "Microsoft" "Meta"     
##  [876,] "Lenovo"    "Amazon"    "Netflix"   "Microsoft" "Steam"    
##  [877,] "Lenovo"    "Amazon"    "Netflix"   "Steam"     "Apple"    
##  [878,] "Lenovo"    "Amazon"    "Netflix"   "Steam"     "Disney"   
##  [879,] "Lenovo"    "Amazon"    "Netflix"   "Steam"     "Google"   
##  [880,] "Lenovo"    "Amazon"    "Netflix"   "Steam"     "HP"       
##  [881,] "Lenovo"    "Amazon"    "Netflix"   "Steam"     "Meta"     
##  [882,] "Lenovo"    "Amazon"    "Netflix"   "Steam"     "Microsoft"
##  [883,] "Lenovo"    "Apple"     "Amazon"    "Netflix"   "Disney"   
##  [884,] "Lenovo"    "Apple"     "Amazon"    "Netflix"   "Google"   
##  [885,] "Lenovo"    "Apple"     "Amazon"    "Netflix"   "HP"       
##  [886,] "Lenovo"    "Apple"     "Amazon"    "Netflix"   "Meta"     
##  [887,] "Lenovo"    "Apple"     "Amazon"    "Netflix"   "Microsoft"
##  [888,] "Lenovo"    "Apple"     "Amazon"    "Netflix"   "Steam"    
##  [889,] "Lenovo"    "Apple"     "Disney"    "Amazon"    "Netflix"  
##  [890,] "Lenovo"    "Apple"     "Google"    "Amazon"    "Netflix"  
##  [891,] "Lenovo"    "Apple"     "HP"        "Amazon"    "Netflix"  
##  [892,] "Lenovo"    "Apple"     "Meta"      "Amazon"    "Netflix"  
##  [893,] "Lenovo"    "Apple"     "Microsoft" "Amazon"    "Netflix"  
##  [894,] "Lenovo"    "Apple"     "Steam"     "Amazon"    "Netflix"  
##  [895,] "Lenovo"    "Disney"    "Amazon"    "Netflix"   "Apple"    
##  [896,] "Lenovo"    "Disney"    "Amazon"    "Netflix"   "Google"   
##  [897,] "Lenovo"    "Disney"    "Amazon"    "Netflix"   "HP"       
##  [898,] "Lenovo"    "Disney"    "Amazon"    "Netflix"   "Meta"     
##  [899,] "Lenovo"    "Disney"    "Amazon"    "Netflix"   "Microsoft"
##  [900,] "Lenovo"    "Disney"    "Amazon"    "Netflix"   "Steam"    
##  [901,] "Lenovo"    "Disney"    "Apple"     "Amazon"    "Netflix"  
##  [902,] "Lenovo"    "Disney"    "Google"    "Amazon"    "Netflix"  
##  [903,] "Lenovo"    "Disney"    "HP"        "Amazon"    "Netflix"  
##  [904,] "Lenovo"    "Disney"    "Meta"      "Amazon"    "Netflix"  
##  [905,] "Lenovo"    "Disney"    "Microsoft" "Amazon"    "Netflix"  
##  [906,] "Lenovo"    "Disney"    "Steam"     "Amazon"    "Netflix"  
##  [907,] "Lenovo"    "Google"    "Amazon"    "Netflix"   "Apple"    
##  [908,] "Lenovo"    "Google"    "Amazon"    "Netflix"   "Disney"   
##  [909,] "Lenovo"    "Google"    "Amazon"    "Netflix"   "HP"       
##  [910,] "Lenovo"    "Google"    "Amazon"    "Netflix"   "Meta"     
##  [911,] "Lenovo"    "Google"    "Amazon"    "Netflix"   "Microsoft"
##  [912,] "Lenovo"    "Google"    "Amazon"    "Netflix"   "Steam"    
##  [913,] "Lenovo"    "Google"    "Apple"     "Amazon"    "Netflix"  
##  [914,] "Lenovo"    "Google"    "Disney"    "Amazon"    "Netflix"  
##  [915,] "Lenovo"    "Google"    "HP"        "Amazon"    "Netflix"  
##  [916,] "Lenovo"    "Google"    "Meta"      "Amazon"    "Netflix"  
##  [917,] "Lenovo"    "Google"    "Microsoft" "Amazon"    "Netflix"  
##  [918,] "Lenovo"    "Google"    "Steam"     "Amazon"    "Netflix"  
##  [919,] "Lenovo"    "HP"        "Amazon"    "Netflix"   "Apple"    
##  [920,] "Lenovo"    "HP"        "Amazon"    "Netflix"   "Disney"   
##  [921,] "Lenovo"    "HP"        "Amazon"    "Netflix"   "Google"   
##  [922,] "Lenovo"    "HP"        "Amazon"    "Netflix"   "Meta"     
##  [923,] "Lenovo"    "HP"        "Amazon"    "Netflix"   "Microsoft"
##  [924,] "Lenovo"    "HP"        "Amazon"    "Netflix"   "Steam"    
##  [925,] "Lenovo"    "HP"        "Apple"     "Amazon"    "Netflix"  
##  [926,] "Lenovo"    "HP"        "Disney"    "Amazon"    "Netflix"  
##  [927,] "Lenovo"    "HP"        "Google"    "Amazon"    "Netflix"  
##  [928,] "Lenovo"    "HP"        "Meta"      "Amazon"    "Netflix"  
##  [929,] "Lenovo"    "HP"        "Microsoft" "Amazon"    "Netflix"  
##  [930,] "Lenovo"    "HP"        "Steam"     "Amazon"    "Netflix"  
##  [931,] "Lenovo"    "Meta"      "Amazon"    "Netflix"   "Apple"    
##  [932,] "Lenovo"    "Meta"      "Amazon"    "Netflix"   "Disney"   
##  [933,] "Lenovo"    "Meta"      "Amazon"    "Netflix"   "Google"   
##  [934,] "Lenovo"    "Meta"      "Amazon"    "Netflix"   "HP"       
##  [935,] "Lenovo"    "Meta"      "Amazon"    "Netflix"   "Microsoft"
##  [936,] "Lenovo"    "Meta"      "Amazon"    "Netflix"   "Steam"    
##  [937,] "Lenovo"    "Meta"      "Apple"     "Amazon"    "Netflix"  
##  [938,] "Lenovo"    "Meta"      "Disney"    "Amazon"    "Netflix"  
##  [939,] "Lenovo"    "Meta"      "Google"    "Amazon"    "Netflix"  
##  [940,] "Lenovo"    "Meta"      "HP"        "Amazon"    "Netflix"  
##  [941,] "Lenovo"    "Meta"      "Microsoft" "Amazon"    "Netflix"  
##  [942,] "Lenovo"    "Meta"      "Steam"     "Amazon"    "Netflix"  
##  [943,] "Lenovo"    "Microsoft" "Amazon"    "Netflix"   "Apple"    
##  [944,] "Lenovo"    "Microsoft" "Amazon"    "Netflix"   "Disney"   
##  [945,] "Lenovo"    "Microsoft" "Amazon"    "Netflix"   "Google"   
##  [946,] "Lenovo"    "Microsoft" "Amazon"    "Netflix"   "HP"       
##  [947,] "Lenovo"    "Microsoft" "Amazon"    "Netflix"   "Meta"     
##  [948,] "Lenovo"    "Microsoft" "Amazon"    "Netflix"   "Steam"    
##  [949,] "Lenovo"    "Microsoft" "Apple"     "Amazon"    "Netflix"  
##  [950,] "Lenovo"    "Microsoft" "Disney"    "Amazon"    "Netflix"  
##  [951,] "Lenovo"    "Microsoft" "Google"    "Amazon"    "Netflix"  
##  [952,] "Lenovo"    "Microsoft" "HP"        "Amazon"    "Netflix"  
##  [953,] "Lenovo"    "Microsoft" "Meta"      "Amazon"    "Netflix"  
##  [954,] "Lenovo"    "Microsoft" "Steam"     "Amazon"    "Netflix"  
##  [955,] "Lenovo"    "Steam"     "Amazon"    "Netflix"   "Apple"    
##  [956,] "Lenovo"    "Steam"     "Amazon"    "Netflix"   "Disney"   
##  [957,] "Lenovo"    "Steam"     "Amazon"    "Netflix"   "Google"   
##  [958,] "Lenovo"    "Steam"     "Amazon"    "Netflix"   "HP"       
##  [959,] "Lenovo"    "Steam"     "Amazon"    "Netflix"   "Meta"     
##  [960,] "Lenovo"    "Steam"     "Amazon"    "Netflix"   "Microsoft"
##  [961,] "Lenovo"    "Steam"     "Apple"     "Amazon"    "Netflix"  
##  [962,] "Lenovo"    "Steam"     "Disney"    "Amazon"    "Netflix"  
##  [963,] "Lenovo"    "Steam"     "Google"    "Amazon"    "Netflix"  
##  [964,] "Lenovo"    "Steam"     "HP"        "Amazon"    "Netflix"  
##  [965,] "Lenovo"    "Steam"     "Meta"      "Amazon"    "Netflix"  
##  [966,] "Lenovo"    "Steam"     "Microsoft" "Amazon"    "Netflix"  
##  [967,] "Meta"      "Amazon"    "Netflix"   "Apple"     "Disney"   
##  [968,] "Meta"      "Amazon"    "Netflix"   "Apple"     "Google"   
##  [969,] "Meta"      "Amazon"    "Netflix"   "Apple"     "HP"       
##  [970,] "Meta"      "Amazon"    "Netflix"   "Apple"     "Lenovo"   
##  [971,] "Meta"      "Amazon"    "Netflix"   "Apple"     "Microsoft"
##  [972,] "Meta"      "Amazon"    "Netflix"   "Apple"     "Steam"    
##  [973,] "Meta"      "Amazon"    "Netflix"   "Disney"    "Apple"    
##  [974,] "Meta"      "Amazon"    "Netflix"   "Disney"    "Google"   
##  [975,] "Meta"      "Amazon"    "Netflix"   "Disney"    "HP"       
##  [976,] "Meta"      "Amazon"    "Netflix"   "Disney"    "Lenovo"   
##  [977,] "Meta"      "Amazon"    "Netflix"   "Disney"    "Microsoft"
##  [978,] "Meta"      "Amazon"    "Netflix"   "Disney"    "Steam"    
##  [979,] "Meta"      "Amazon"    "Netflix"   "Google"    "Apple"    
##  [980,] "Meta"      "Amazon"    "Netflix"   "Google"    "Disney"   
##  [981,] "Meta"      "Amazon"    "Netflix"   "Google"    "HP"       
##  [982,] "Meta"      "Amazon"    "Netflix"   "Google"    "Lenovo"   
##  [983,] "Meta"      "Amazon"    "Netflix"   "Google"    "Microsoft"
##  [984,] "Meta"      "Amazon"    "Netflix"   "Google"    "Steam"    
##  [985,] "Meta"      "Amazon"    "Netflix"   "HP"        "Apple"    
##  [986,] "Meta"      "Amazon"    "Netflix"   "HP"        "Disney"   
##  [987,] "Meta"      "Amazon"    "Netflix"   "HP"        "Google"   
##  [988,] "Meta"      "Amazon"    "Netflix"   "HP"        "Lenovo"   
##  [989,] "Meta"      "Amazon"    "Netflix"   "HP"        "Microsoft"
##  [990,] "Meta"      "Amazon"    "Netflix"   "HP"        "Steam"    
##  [991,] "Meta"      "Amazon"    "Netflix"   "Lenovo"    "Apple"    
##  [992,] "Meta"      "Amazon"    "Netflix"   "Lenovo"    "Disney"   
##  [993,] "Meta"      "Amazon"    "Netflix"   "Lenovo"    "Google"   
##  [994,] "Meta"      "Amazon"    "Netflix"   "Lenovo"    "HP"       
##  [995,] "Meta"      "Amazon"    "Netflix"   "Lenovo"    "Microsoft"
##  [996,] "Meta"      "Amazon"    "Netflix"   "Lenovo"    "Steam"    
##  [997,] "Meta"      "Amazon"    "Netflix"   "Microsoft" "Apple"    
##  [998,] "Meta"      "Amazon"    "Netflix"   "Microsoft" "Disney"   
##  [999,] "Meta"      "Amazon"    "Netflix"   "Microsoft" "Google"   
## [1000,] "Meta"      "Amazon"    "Netflix"   "Microsoft" "HP"       
## [1001,] "Meta"      "Amazon"    "Netflix"   "Microsoft" "Lenovo"   
## [1002,] "Meta"      "Amazon"    "Netflix"   "Microsoft" "Steam"    
## [1003,] "Meta"      "Amazon"    "Netflix"   "Steam"     "Apple"    
## [1004,] "Meta"      "Amazon"    "Netflix"   "Steam"     "Disney"   
## [1005,] "Meta"      "Amazon"    "Netflix"   "Steam"     "Google"   
## [1006,] "Meta"      "Amazon"    "Netflix"   "Steam"     "HP"       
## [1007,] "Meta"      "Amazon"    "Netflix"   "Steam"     "Lenovo"   
## [1008,] "Meta"      "Amazon"    "Netflix"   "Steam"     "Microsoft"
## [1009,] "Meta"      "Apple"     "Amazon"    "Netflix"   "Disney"   
## [1010,] "Meta"      "Apple"     "Amazon"    "Netflix"   "Google"   
## [1011,] "Meta"      "Apple"     "Amazon"    "Netflix"   "HP"       
## [1012,] "Meta"      "Apple"     "Amazon"    "Netflix"   "Lenovo"   
## [1013,] "Meta"      "Apple"     "Amazon"    "Netflix"   "Microsoft"
## [1014,] "Meta"      "Apple"     "Amazon"    "Netflix"   "Steam"    
## [1015,] "Meta"      "Apple"     "Disney"    "Amazon"    "Netflix"  
## [1016,] "Meta"      "Apple"     "Google"    "Amazon"    "Netflix"  
## [1017,] "Meta"      "Apple"     "HP"        "Amazon"    "Netflix"  
## [1018,] "Meta"      "Apple"     "Lenovo"    "Amazon"    "Netflix"  
## [1019,] "Meta"      "Apple"     "Microsoft" "Amazon"    "Netflix"  
## [1020,] "Meta"      "Apple"     "Steam"     "Amazon"    "Netflix"  
## [1021,] "Meta"      "Disney"    "Amazon"    "Netflix"   "Apple"    
## [1022,] "Meta"      "Disney"    "Amazon"    "Netflix"   "Google"   
## [1023,] "Meta"      "Disney"    "Amazon"    "Netflix"   "HP"       
## [1024,] "Meta"      "Disney"    "Amazon"    "Netflix"   "Lenovo"   
## [1025,] "Meta"      "Disney"    "Amazon"    "Netflix"   "Microsoft"
## [1026,] "Meta"      "Disney"    "Amazon"    "Netflix"   "Steam"    
## [1027,] "Meta"      "Disney"    "Apple"     "Amazon"    "Netflix"  
## [1028,] "Meta"      "Disney"    "Google"    "Amazon"    "Netflix"  
## [1029,] "Meta"      "Disney"    "HP"        "Amazon"    "Netflix"  
## [1030,] "Meta"      "Disney"    "Lenovo"    "Amazon"    "Netflix"  
## [1031,] "Meta"      "Disney"    "Microsoft" "Amazon"    "Netflix"  
## [1032,] "Meta"      "Disney"    "Steam"     "Amazon"    "Netflix"  
## [1033,] "Meta"      "Google"    "Amazon"    "Netflix"   "Apple"    
## [1034,] "Meta"      "Google"    "Amazon"    "Netflix"   "Disney"   
## [1035,] "Meta"      "Google"    "Amazon"    "Netflix"   "HP"       
## [1036,] "Meta"      "Google"    "Amazon"    "Netflix"   "Lenovo"   
## [1037,] "Meta"      "Google"    "Amazon"    "Netflix"   "Microsoft"
## [1038,] "Meta"      "Google"    "Amazon"    "Netflix"   "Steam"    
## [1039,] "Meta"      "Google"    "Apple"     "Amazon"    "Netflix"  
## [1040,] "Meta"      "Google"    "Disney"    "Amazon"    "Netflix"  
## [1041,] "Meta"      "Google"    "HP"        "Amazon"    "Netflix"  
## [1042,] "Meta"      "Google"    "Lenovo"    "Amazon"    "Netflix"  
## [1043,] "Meta"      "Google"    "Microsoft" "Amazon"    "Netflix"  
## [1044,] "Meta"      "Google"    "Steam"     "Amazon"    "Netflix"  
## [1045,] "Meta"      "HP"        "Amazon"    "Netflix"   "Apple"    
## [1046,] "Meta"      "HP"        "Amazon"    "Netflix"   "Disney"   
## [1047,] "Meta"      "HP"        "Amazon"    "Netflix"   "Google"   
## [1048,] "Meta"      "HP"        "Amazon"    "Netflix"   "Lenovo"   
## [1049,] "Meta"      "HP"        "Amazon"    "Netflix"   "Microsoft"
## [1050,] "Meta"      "HP"        "Amazon"    "Netflix"   "Steam"    
## [1051,] "Meta"      "HP"        "Apple"     "Amazon"    "Netflix"  
## [1052,] "Meta"      "HP"        "Disney"    "Amazon"    "Netflix"  
## [1053,] "Meta"      "HP"        "Google"    "Amazon"    "Netflix"  
## [1054,] "Meta"      "HP"        "Lenovo"    "Amazon"    "Netflix"  
## [1055,] "Meta"      "HP"        "Microsoft" "Amazon"    "Netflix"  
## [1056,] "Meta"      "HP"        "Steam"     "Amazon"    "Netflix"  
## [1057,] "Meta"      "Lenovo"    "Amazon"    "Netflix"   "Apple"    
## [1058,] "Meta"      "Lenovo"    "Amazon"    "Netflix"   "Disney"   
## [1059,] "Meta"      "Lenovo"    "Amazon"    "Netflix"   "Google"   
## [1060,] "Meta"      "Lenovo"    "Amazon"    "Netflix"   "HP"       
## [1061,] "Meta"      "Lenovo"    "Amazon"    "Netflix"   "Microsoft"
## [1062,] "Meta"      "Lenovo"    "Amazon"    "Netflix"   "Steam"    
## [1063,] "Meta"      "Lenovo"    "Apple"     "Amazon"    "Netflix"  
## [1064,] "Meta"      "Lenovo"    "Disney"    "Amazon"    "Netflix"  
## [1065,] "Meta"      "Lenovo"    "Google"    "Amazon"    "Netflix"  
## [1066,] "Meta"      "Lenovo"    "HP"        "Amazon"    "Netflix"  
## [1067,] "Meta"      "Lenovo"    "Microsoft" "Amazon"    "Netflix"  
## [1068,] "Meta"      "Lenovo"    "Steam"     "Amazon"    "Netflix"  
## [1069,] "Meta"      "Microsoft" "Amazon"    "Netflix"   "Apple"    
## [1070,] "Meta"      "Microsoft" "Amazon"    "Netflix"   "Disney"   
## [1071,] "Meta"      "Microsoft" "Amazon"    "Netflix"   "Google"   
## [1072,] "Meta"      "Microsoft" "Amazon"    "Netflix"   "HP"       
## [1073,] "Meta"      "Microsoft" "Amazon"    "Netflix"   "Lenovo"   
## [1074,] "Meta"      "Microsoft" "Amazon"    "Netflix"   "Steam"    
## [1075,] "Meta"      "Microsoft" "Apple"     "Amazon"    "Netflix"  
## [1076,] "Meta"      "Microsoft" "Disney"    "Amazon"    "Netflix"  
## [1077,] "Meta"      "Microsoft" "Google"    "Amazon"    "Netflix"  
## [1078,] "Meta"      "Microsoft" "HP"        "Amazon"    "Netflix"  
## [1079,] "Meta"      "Microsoft" "Lenovo"    "Amazon"    "Netflix"  
## [1080,] "Meta"      "Microsoft" "Steam"     "Amazon"    "Netflix"  
## [1081,] "Meta"      "Steam"     "Amazon"    "Netflix"   "Apple"    
## [1082,] "Meta"      "Steam"     "Amazon"    "Netflix"   "Disney"   
## [1083,] "Meta"      "Steam"     "Amazon"    "Netflix"   "Google"   
## [1084,] "Meta"      "Steam"     "Amazon"    "Netflix"   "HP"       
## [1085,] "Meta"      "Steam"     "Amazon"    "Netflix"   "Lenovo"   
## [1086,] "Meta"      "Steam"     "Amazon"    "Netflix"   "Microsoft"
## [1087,] "Meta"      "Steam"     "Apple"     "Amazon"    "Netflix"  
## [1088,] "Meta"      "Steam"     "Disney"    "Amazon"    "Netflix"  
## [1089,] "Meta"      "Steam"     "Google"    "Amazon"    "Netflix"  
## [1090,] "Meta"      "Steam"     "HP"        "Amazon"    "Netflix"  
## [1091,] "Meta"      "Steam"     "Lenovo"    "Amazon"    "Netflix"  
## [1092,] "Meta"      "Steam"     "Microsoft" "Amazon"    "Netflix"  
## [1093,] "Microsoft" "Amazon"    "Netflix"   "Apple"     "Disney"   
## [1094,] "Microsoft" "Amazon"    "Netflix"   "Apple"     "Google"   
## [1095,] "Microsoft" "Amazon"    "Netflix"   "Apple"     "HP"       
## [1096,] "Microsoft" "Amazon"    "Netflix"   "Apple"     "Lenovo"   
## [1097,] "Microsoft" "Amazon"    "Netflix"   "Apple"     "Meta"     
## [1098,] "Microsoft" "Amazon"    "Netflix"   "Apple"     "Steam"    
## [1099,] "Microsoft" "Amazon"    "Netflix"   "Disney"    "Apple"    
## [1100,] "Microsoft" "Amazon"    "Netflix"   "Disney"    "Google"   
## [1101,] "Microsoft" "Amazon"    "Netflix"   "Disney"    "HP"       
## [1102,] "Microsoft" "Amazon"    "Netflix"   "Disney"    "Lenovo"   
## [1103,] "Microsoft" "Amazon"    "Netflix"   "Disney"    "Meta"     
## [1104,] "Microsoft" "Amazon"    "Netflix"   "Disney"    "Steam"    
## [1105,] "Microsoft" "Amazon"    "Netflix"   "Google"    "Apple"    
## [1106,] "Microsoft" "Amazon"    "Netflix"   "Google"    "Disney"   
## [1107,] "Microsoft" "Amazon"    "Netflix"   "Google"    "HP"       
## [1108,] "Microsoft" "Amazon"    "Netflix"   "Google"    "Lenovo"   
## [1109,] "Microsoft" "Amazon"    "Netflix"   "Google"    "Meta"     
## [1110,] "Microsoft" "Amazon"    "Netflix"   "Google"    "Steam"    
## [1111,] "Microsoft" "Amazon"    "Netflix"   "HP"        "Apple"    
## [1112,] "Microsoft" "Amazon"    "Netflix"   "HP"        "Disney"   
## [1113,] "Microsoft" "Amazon"    "Netflix"   "HP"        "Google"   
## [1114,] "Microsoft" "Amazon"    "Netflix"   "HP"        "Lenovo"   
## [1115,] "Microsoft" "Amazon"    "Netflix"   "HP"        "Meta"     
## [1116,] "Microsoft" "Amazon"    "Netflix"   "HP"        "Steam"    
## [1117,] "Microsoft" "Amazon"    "Netflix"   "Lenovo"    "Apple"    
## [1118,] "Microsoft" "Amazon"    "Netflix"   "Lenovo"    "Disney"   
## [1119,] "Microsoft" "Amazon"    "Netflix"   "Lenovo"    "Google"   
## [1120,] "Microsoft" "Amazon"    "Netflix"   "Lenovo"    "HP"       
## [1121,] "Microsoft" "Amazon"    "Netflix"   "Lenovo"    "Meta"     
## [1122,] "Microsoft" "Amazon"    "Netflix"   "Lenovo"    "Steam"    
## [1123,] "Microsoft" "Amazon"    "Netflix"   "Meta"      "Apple"    
## [1124,] "Microsoft" "Amazon"    "Netflix"   "Meta"      "Disney"   
## [1125,] "Microsoft" "Amazon"    "Netflix"   "Meta"      "Google"   
## [1126,] "Microsoft" "Amazon"    "Netflix"   "Meta"      "HP"       
## [1127,] "Microsoft" "Amazon"    "Netflix"   "Meta"      "Lenovo"   
## [1128,] "Microsoft" "Amazon"    "Netflix"   "Meta"      "Steam"    
## [1129,] "Microsoft" "Amazon"    "Netflix"   "Steam"     "Apple"    
## [1130,] "Microsoft" "Amazon"    "Netflix"   "Steam"     "Disney"   
## [1131,] "Microsoft" "Amazon"    "Netflix"   "Steam"     "Google"   
## [1132,] "Microsoft" "Amazon"    "Netflix"   "Steam"     "HP"       
## [1133,] "Microsoft" "Amazon"    "Netflix"   "Steam"     "Lenovo"   
## [1134,] "Microsoft" "Amazon"    "Netflix"   "Steam"     "Meta"     
## [1135,] "Microsoft" "Apple"     "Amazon"    "Netflix"   "Disney"   
## [1136,] "Microsoft" "Apple"     "Amazon"    "Netflix"   "Google"   
## [1137,] "Microsoft" "Apple"     "Amazon"    "Netflix"   "HP"       
## [1138,] "Microsoft" "Apple"     "Amazon"    "Netflix"   "Lenovo"   
## [1139,] "Microsoft" "Apple"     "Amazon"    "Netflix"   "Meta"     
## [1140,] "Microsoft" "Apple"     "Amazon"    "Netflix"   "Steam"    
## [1141,] "Microsoft" "Apple"     "Disney"    "Amazon"    "Netflix"  
## [1142,] "Microsoft" "Apple"     "Google"    "Amazon"    "Netflix"  
## [1143,] "Microsoft" "Apple"     "HP"        "Amazon"    "Netflix"  
## [1144,] "Microsoft" "Apple"     "Lenovo"    "Amazon"    "Netflix"  
## [1145,] "Microsoft" "Apple"     "Meta"      "Amazon"    "Netflix"  
## [1146,] "Microsoft" "Apple"     "Steam"     "Amazon"    "Netflix"  
## [1147,] "Microsoft" "Disney"    "Amazon"    "Netflix"   "Apple"    
## [1148,] "Microsoft" "Disney"    "Amazon"    "Netflix"   "Google"   
## [1149,] "Microsoft" "Disney"    "Amazon"    "Netflix"   "HP"       
## [1150,] "Microsoft" "Disney"    "Amazon"    "Netflix"   "Lenovo"   
## [1151,] "Microsoft" "Disney"    "Amazon"    "Netflix"   "Meta"     
## [1152,] "Microsoft" "Disney"    "Amazon"    "Netflix"   "Steam"    
## [1153,] "Microsoft" "Disney"    "Apple"     "Amazon"    "Netflix"  
## [1154,] "Microsoft" "Disney"    "Google"    "Amazon"    "Netflix"  
## [1155,] "Microsoft" "Disney"    "HP"        "Amazon"    "Netflix"  
## [1156,] "Microsoft" "Disney"    "Lenovo"    "Amazon"    "Netflix"  
## [1157,] "Microsoft" "Disney"    "Meta"      "Amazon"    "Netflix"  
## [1158,] "Microsoft" "Disney"    "Steam"     "Amazon"    "Netflix"  
## [1159,] "Microsoft" "Google"    "Amazon"    "Netflix"   "Apple"    
## [1160,] "Microsoft" "Google"    "Amazon"    "Netflix"   "Disney"   
## [1161,] "Microsoft" "Google"    "Amazon"    "Netflix"   "HP"       
## [1162,] "Microsoft" "Google"    "Amazon"    "Netflix"   "Lenovo"   
## [1163,] "Microsoft" "Google"    "Amazon"    "Netflix"   "Meta"     
## [1164,] "Microsoft" "Google"    "Amazon"    "Netflix"   "Steam"    
## [1165,] "Microsoft" "Google"    "Apple"     "Amazon"    "Netflix"  
## [1166,] "Microsoft" "Google"    "Disney"    "Amazon"    "Netflix"  
## [1167,] "Microsoft" "Google"    "HP"        "Amazon"    "Netflix"  
## [1168,] "Microsoft" "Google"    "Lenovo"    "Amazon"    "Netflix"  
## [1169,] "Microsoft" "Google"    "Meta"      "Amazon"    "Netflix"  
## [1170,] "Microsoft" "Google"    "Steam"     "Amazon"    "Netflix"  
## [1171,] "Microsoft" "HP"        "Amazon"    "Netflix"   "Apple"    
## [1172,] "Microsoft" "HP"        "Amazon"    "Netflix"   "Disney"   
## [1173,] "Microsoft" "HP"        "Amazon"    "Netflix"   "Google"   
## [1174,] "Microsoft" "HP"        "Amazon"    "Netflix"   "Lenovo"   
## [1175,] "Microsoft" "HP"        "Amazon"    "Netflix"   "Meta"     
## [1176,] "Microsoft" "HP"        "Amazon"    "Netflix"   "Steam"    
## [1177,] "Microsoft" "HP"        "Apple"     "Amazon"    "Netflix"  
## [1178,] "Microsoft" "HP"        "Disney"    "Amazon"    "Netflix"  
## [1179,] "Microsoft" "HP"        "Google"    "Amazon"    "Netflix"  
## [1180,] "Microsoft" "HP"        "Lenovo"    "Amazon"    "Netflix"  
## [1181,] "Microsoft" "HP"        "Meta"      "Amazon"    "Netflix"  
## [1182,] "Microsoft" "HP"        "Steam"     "Amazon"    "Netflix"  
## [1183,] "Microsoft" "Lenovo"    "Amazon"    "Netflix"   "Apple"    
## [1184,] "Microsoft" "Lenovo"    "Amazon"    "Netflix"   "Disney"   
## [1185,] "Microsoft" "Lenovo"    "Amazon"    "Netflix"   "Google"   
## [1186,] "Microsoft" "Lenovo"    "Amazon"    "Netflix"   "HP"       
## [1187,] "Microsoft" "Lenovo"    "Amazon"    "Netflix"   "Meta"     
## [1188,] "Microsoft" "Lenovo"    "Amazon"    "Netflix"   "Steam"    
## [1189,] "Microsoft" "Lenovo"    "Apple"     "Amazon"    "Netflix"  
## [1190,] "Microsoft" "Lenovo"    "Disney"    "Amazon"    "Netflix"  
## [1191,] "Microsoft" "Lenovo"    "Google"    "Amazon"    "Netflix"  
## [1192,] "Microsoft" "Lenovo"    "HP"        "Amazon"    "Netflix"  
## [1193,] "Microsoft" "Lenovo"    "Meta"      "Amazon"    "Netflix"  
## [1194,] "Microsoft" "Lenovo"    "Steam"     "Amazon"    "Netflix"  
## [1195,] "Microsoft" "Meta"      "Amazon"    "Netflix"   "Apple"    
## [1196,] "Microsoft" "Meta"      "Amazon"    "Netflix"   "Disney"   
## [1197,] "Microsoft" "Meta"      "Amazon"    "Netflix"   "Google"   
## [1198,] "Microsoft" "Meta"      "Amazon"    "Netflix"   "HP"       
## [1199,] "Microsoft" "Meta"      "Amazon"    "Netflix"   "Lenovo"   
## [1200,] "Microsoft" "Meta"      "Amazon"    "Netflix"   "Steam"    
## [1201,] "Microsoft" "Meta"      "Apple"     "Amazon"    "Netflix"  
## [1202,] "Microsoft" "Meta"      "Disney"    "Amazon"    "Netflix"  
## [1203,] "Microsoft" "Meta"      "Google"    "Amazon"    "Netflix"  
## [1204,] "Microsoft" "Meta"      "HP"        "Amazon"    "Netflix"  
## [1205,] "Microsoft" "Meta"      "Lenovo"    "Amazon"    "Netflix"  
## [1206,] "Microsoft" "Meta"      "Steam"     "Amazon"    "Netflix"  
## [1207,] "Microsoft" "Steam"     "Amazon"    "Netflix"   "Apple"    
## [1208,] "Microsoft" "Steam"     "Amazon"    "Netflix"   "Disney"   
## [1209,] "Microsoft" "Steam"     "Amazon"    "Netflix"   "Google"   
## [1210,] "Microsoft" "Steam"     "Amazon"    "Netflix"   "HP"       
## [1211,] "Microsoft" "Steam"     "Amazon"    "Netflix"   "Lenovo"   
## [1212,] "Microsoft" "Steam"     "Amazon"    "Netflix"   "Meta"     
## [1213,] "Microsoft" "Steam"     "Apple"     "Amazon"    "Netflix"  
## [1214,] "Microsoft" "Steam"     "Disney"    "Amazon"    "Netflix"  
## [1215,] "Microsoft" "Steam"     "Google"    "Amazon"    "Netflix"  
## [1216,] "Microsoft" "Steam"     "HP"        "Amazon"    "Netflix"  
## [1217,] "Microsoft" "Steam"     "Lenovo"    "Amazon"    "Netflix"  
## [1218,] "Microsoft" "Steam"     "Meta"      "Amazon"    "Netflix"  
## [1219,] "Steam"     "Amazon"    "Netflix"   "Apple"     "Disney"   
## [1220,] "Steam"     "Amazon"    "Netflix"   "Apple"     "Google"   
## [1221,] "Steam"     "Amazon"    "Netflix"   "Apple"     "HP"       
## [1222,] "Steam"     "Amazon"    "Netflix"   "Apple"     "Lenovo"   
## [1223,] "Steam"     "Amazon"    "Netflix"   "Apple"     "Meta"     
## [1224,] "Steam"     "Amazon"    "Netflix"   "Apple"     "Microsoft"
## [1225,] "Steam"     "Amazon"    "Netflix"   "Disney"    "Apple"    
## [1226,] "Steam"     "Amazon"    "Netflix"   "Disney"    "Google"   
## [1227,] "Steam"     "Amazon"    "Netflix"   "Disney"    "HP"       
## [1228,] "Steam"     "Amazon"    "Netflix"   "Disney"    "Lenovo"   
## [1229,] "Steam"     "Amazon"    "Netflix"   "Disney"    "Meta"     
## [1230,] "Steam"     "Amazon"    "Netflix"   "Disney"    "Microsoft"
## [1231,] "Steam"     "Amazon"    "Netflix"   "Google"    "Apple"    
## [1232,] "Steam"     "Amazon"    "Netflix"   "Google"    "Disney"   
## [1233,] "Steam"     "Amazon"    "Netflix"   "Google"    "HP"       
## [1234,] "Steam"     "Amazon"    "Netflix"   "Google"    "Lenovo"   
## [1235,] "Steam"     "Amazon"    "Netflix"   "Google"    "Meta"     
## [1236,] "Steam"     "Amazon"    "Netflix"   "Google"    "Microsoft"
## [1237,] "Steam"     "Amazon"    "Netflix"   "HP"        "Apple"    
## [1238,] "Steam"     "Amazon"    "Netflix"   "HP"        "Disney"   
## [1239,] "Steam"     "Amazon"    "Netflix"   "HP"        "Google"   
## [1240,] "Steam"     "Amazon"    "Netflix"   "HP"        "Lenovo"   
## [1241,] "Steam"     "Amazon"    "Netflix"   "HP"        "Meta"     
## [1242,] "Steam"     "Amazon"    "Netflix"   "HP"        "Microsoft"
## [1243,] "Steam"     "Amazon"    "Netflix"   "Lenovo"    "Apple"    
## [1244,] "Steam"     "Amazon"    "Netflix"   "Lenovo"    "Disney"   
## [1245,] "Steam"     "Amazon"    "Netflix"   "Lenovo"    "Google"   
## [1246,] "Steam"     "Amazon"    "Netflix"   "Lenovo"    "HP"       
## [1247,] "Steam"     "Amazon"    "Netflix"   "Lenovo"    "Meta"     
## [1248,] "Steam"     "Amazon"    "Netflix"   "Lenovo"    "Microsoft"
## [1249,] "Steam"     "Amazon"    "Netflix"   "Meta"      "Apple"    
## [1250,] "Steam"     "Amazon"    "Netflix"   "Meta"      "Disney"   
## [1251,] "Steam"     "Amazon"    "Netflix"   "Meta"      "Google"   
## [1252,] "Steam"     "Amazon"    "Netflix"   "Meta"      "HP"       
## [1253,] "Steam"     "Amazon"    "Netflix"   "Meta"      "Lenovo"   
## [1254,] "Steam"     "Amazon"    "Netflix"   "Meta"      "Microsoft"
## [1255,] "Steam"     "Amazon"    "Netflix"   "Microsoft" "Apple"    
## [1256,] "Steam"     "Amazon"    "Netflix"   "Microsoft" "Disney"   
## [1257,] "Steam"     "Amazon"    "Netflix"   "Microsoft" "Google"   
## [1258,] "Steam"     "Amazon"    "Netflix"   "Microsoft" "HP"       
## [1259,] "Steam"     "Amazon"    "Netflix"   "Microsoft" "Lenovo"   
## [1260,] "Steam"     "Amazon"    "Netflix"   "Microsoft" "Meta"     
## [1261,] "Steam"     "Apple"     "Amazon"    "Netflix"   "Disney"   
## [1262,] "Steam"     "Apple"     "Amazon"    "Netflix"   "Google"   
## [1263,] "Steam"     "Apple"     "Amazon"    "Netflix"   "HP"       
## [1264,] "Steam"     "Apple"     "Amazon"    "Netflix"   "Lenovo"   
## [1265,] "Steam"     "Apple"     "Amazon"    "Netflix"   "Meta"     
## [1266,] "Steam"     "Apple"     "Amazon"    "Netflix"   "Microsoft"
## [1267,] "Steam"     "Apple"     "Disney"    "Amazon"    "Netflix"  
## [1268,] "Steam"     "Apple"     "Google"    "Amazon"    "Netflix"  
## [1269,] "Steam"     "Apple"     "HP"        "Amazon"    "Netflix"  
## [1270,] "Steam"     "Apple"     "Lenovo"    "Amazon"    "Netflix"  
## [1271,] "Steam"     "Apple"     "Meta"      "Amazon"    "Netflix"  
## [1272,] "Steam"     "Apple"     "Microsoft" "Amazon"    "Netflix"  
## [1273,] "Steam"     "Disney"    "Amazon"    "Netflix"   "Apple"    
## [1274,] "Steam"     "Disney"    "Amazon"    "Netflix"   "Google"   
## [1275,] "Steam"     "Disney"    "Amazon"    "Netflix"   "HP"       
## [1276,] "Steam"     "Disney"    "Amazon"    "Netflix"   "Lenovo"   
## [1277,] "Steam"     "Disney"    "Amazon"    "Netflix"   "Meta"     
## [1278,] "Steam"     "Disney"    "Amazon"    "Netflix"   "Microsoft"
## [1279,] "Steam"     "Disney"    "Apple"     "Amazon"    "Netflix"  
## [1280,] "Steam"     "Disney"    "Google"    "Amazon"    "Netflix"  
## [1281,] "Steam"     "Disney"    "HP"        "Amazon"    "Netflix"  
## [1282,] "Steam"     "Disney"    "Lenovo"    "Amazon"    "Netflix"  
## [1283,] "Steam"     "Disney"    "Meta"      "Amazon"    "Netflix"  
## [1284,] "Steam"     "Disney"    "Microsoft" "Amazon"    "Netflix"  
## [1285,] "Steam"     "Google"    "Amazon"    "Netflix"   "Apple"    
## [1286,] "Steam"     "Google"    "Amazon"    "Netflix"   "Disney"   
## [1287,] "Steam"     "Google"    "Amazon"    "Netflix"   "HP"       
## [1288,] "Steam"     "Google"    "Amazon"    "Netflix"   "Lenovo"   
## [1289,] "Steam"     "Google"    "Amazon"    "Netflix"   "Meta"     
## [1290,] "Steam"     "Google"    "Amazon"    "Netflix"   "Microsoft"
## [1291,] "Steam"     "Google"    "Apple"     "Amazon"    "Netflix"  
## [1292,] "Steam"     "Google"    "Disney"    "Amazon"    "Netflix"  
## [1293,] "Steam"     "Google"    "HP"        "Amazon"    "Netflix"  
## [1294,] "Steam"     "Google"    "Lenovo"    "Amazon"    "Netflix"  
## [1295,] "Steam"     "Google"    "Meta"      "Amazon"    "Netflix"  
## [1296,] "Steam"     "Google"    "Microsoft" "Amazon"    "Netflix"  
## [1297,] "Steam"     "HP"        "Amazon"    "Netflix"   "Apple"    
## [1298,] "Steam"     "HP"        "Amazon"    "Netflix"   "Disney"   
## [1299,] "Steam"     "HP"        "Amazon"    "Netflix"   "Google"   
## [1300,] "Steam"     "HP"        "Amazon"    "Netflix"   "Lenovo"   
## [1301,] "Steam"     "HP"        "Amazon"    "Netflix"   "Meta"     
## [1302,] "Steam"     "HP"        "Amazon"    "Netflix"   "Microsoft"
## [1303,] "Steam"     "HP"        "Apple"     "Amazon"    "Netflix"  
## [1304,] "Steam"     "HP"        "Disney"    "Amazon"    "Netflix"  
## [1305,] "Steam"     "HP"        "Google"    "Amazon"    "Netflix"  
## [1306,] "Steam"     "HP"        "Lenovo"    "Amazon"    "Netflix"  
## [1307,] "Steam"     "HP"        "Meta"      "Amazon"    "Netflix"  
## [1308,] "Steam"     "HP"        "Microsoft" "Amazon"    "Netflix"  
## [1309,] "Steam"     "Lenovo"    "Amazon"    "Netflix"   "Apple"    
## [1310,] "Steam"     "Lenovo"    "Amazon"    "Netflix"   "Disney"   
## [1311,] "Steam"     "Lenovo"    "Amazon"    "Netflix"   "Google"   
## [1312,] "Steam"     "Lenovo"    "Amazon"    "Netflix"   "HP"       
## [1313,] "Steam"     "Lenovo"    "Amazon"    "Netflix"   "Meta"     
## [1314,] "Steam"     "Lenovo"    "Amazon"    "Netflix"   "Microsoft"
## [1315,] "Steam"     "Lenovo"    "Apple"     "Amazon"    "Netflix"  
## [1316,] "Steam"     "Lenovo"    "Disney"    "Amazon"    "Netflix"  
## [1317,] "Steam"     "Lenovo"    "Google"    "Amazon"    "Netflix"  
## [1318,] "Steam"     "Lenovo"    "HP"        "Amazon"    "Netflix"  
## [1319,] "Steam"     "Lenovo"    "Meta"      "Amazon"    "Netflix"  
## [1320,] "Steam"     "Lenovo"    "Microsoft" "Amazon"    "Netflix"  
## [1321,] "Steam"     "Meta"      "Amazon"    "Netflix"   "Apple"    
## [1322,] "Steam"     "Meta"      "Amazon"    "Netflix"   "Disney"   
## [1323,] "Steam"     "Meta"      "Amazon"    "Netflix"   "Google"   
## [1324,] "Steam"     "Meta"      "Amazon"    "Netflix"   "HP"       
## [1325,] "Steam"     "Meta"      "Amazon"    "Netflix"   "Lenovo"   
## [1326,] "Steam"     "Meta"      "Amazon"    "Netflix"   "Microsoft"
## [1327,] "Steam"     "Meta"      "Apple"     "Amazon"    "Netflix"  
## [1328,] "Steam"     "Meta"      "Disney"    "Amazon"    "Netflix"  
## [1329,] "Steam"     "Meta"      "Google"    "Amazon"    "Netflix"  
## [1330,] "Steam"     "Meta"      "HP"        "Amazon"    "Netflix"  
## [1331,] "Steam"     "Meta"      "Lenovo"    "Amazon"    "Netflix"  
## [1332,] "Steam"     "Meta"      "Microsoft" "Amazon"    "Netflix"  
## [1333,] "Steam"     "Microsoft" "Amazon"    "Netflix"   "Apple"    
## [1334,] "Steam"     "Microsoft" "Amazon"    "Netflix"   "Disney"   
## [1335,] "Steam"     "Microsoft" "Amazon"    "Netflix"   "Google"   
## [1336,] "Steam"     "Microsoft" "Amazon"    "Netflix"   "HP"       
## [1337,] "Steam"     "Microsoft" "Amazon"    "Netflix"   "Lenovo"   
## [1338,] "Steam"     "Microsoft" "Amazon"    "Netflix"   "Meta"     
## [1339,] "Steam"     "Microsoft" "Apple"     "Amazon"    "Netflix"  
## [1340,] "Steam"     "Microsoft" "Disney"    "Amazon"    "Netflix"  
## [1341,] "Steam"     "Microsoft" "Google"    "Amazon"    "Netflix"  
## [1342,] "Steam"     "Microsoft" "HP"        "Amazon"    "Netflix"  
## [1343,] "Steam"     "Microsoft" "Lenovo"    "Amazon"    "Netflix"  
## [1344,] "Steam"     "Microsoft" "Meta"      "Amazon"    "Netflix"
frecuencia <- nrow(filtro)
paste("Existen ", frecuencia, " aparece de manera contigua y en este orden los equipos de Amazon y Netflix en cualquier columna , de un total de ", nrow(Pern.Empresas), " representan ", round(frecuencia / nrow(Pern.Empresas) * 100, 2), "%")
## [1] "Existen  1344  aparece de manera contigua y en este orden los equipos de Amazon y Netflix en cualquier columna , de un total de  30240  representan  4.44 %"

Bibliografía

Anderson, David R., Dennis J. Sweeney, and Thomas A. Williams. 2008. Estadística Para Administración y Economía. 10th ed. Australia Brasil Corea España Estados Unidos Japón México Reino Unido Singapur: Cengage Learning,. Mendenhall, William, Robert J. Beaver, and Barbara M. Beaver. 2010. Introducción a La Probabilidad y Estadística. 13th ed. Cengage Learning Editores, S.A. de C.V.,. Walpole, Ronald E., Raymond H. Myers, and Sharon L. Myers. 2012. Probabilidad y Estadística Para Ingeniería y Ciencias. Novena Edición. México: Pearson.