thejagstudio commited on
Commit
0bd6e09
1 Parent(s): 3d41d7f

Upload 185 files

Browse files
This view is limited to 50 files because it contains too many changes.   See raw diff
Files changed (50) hide show
  1. .gitattributes +1 -0
  2. Dockerfile +7 -0
  3. README.md +1 -10
  4. amazon/__init__.py +0 -0
  5. amazon/__pycache__/__init__.cpython-311.pyc +0 -0
  6. amazon/__pycache__/admin.cpython-311.pyc +0 -0
  7. amazon/__pycache__/apps.cpython-311.pyc +0 -0
  8. amazon/__pycache__/models.cpython-311.pyc +0 -0
  9. amazon/__pycache__/urls.cpython-311.pyc +0 -0
  10. amazon/__pycache__/views.cpython-311.pyc +0 -0
  11. amazon/admin.py +3 -0
  12. amazon/apps.py +6 -0
  13. amazon/migrations/__init__.py +0 -0
  14. amazon/migrations/__pycache__/__init__.cpython-311.pyc +0 -0
  15. amazon/models.py +3 -0
  16. amazon/tests.py +3 -0
  17. amazon/urls.py +9 -0
  18. amazon/views.py +187 -0
  19. amazonDetails.html +0 -0
  20. data/action-camera.json +2908 -0
  21. data/air-fryer.json +1 -0
  22. data/all-in-one-computer.json +1 -0
  23. data/all-in-one-printer.json +1 -0
  24. data/art-design-faculty.json +1 -0
  25. data/bike-light.json +1 -0
  26. data/bluetooth-headset.json +1648 -0
  27. data/business-faculty.json +1 -0
  28. data/calendar-app.json +674 -0
  29. data/camcorder.json +1 -0
  30. data/camera-lens.json +0 -0
  31. data/camera.json +0 -0
  32. data/car.json +0 -0
  33. data/city.json +0 -0
  34. data/coffee-machine-commercial.json +1 -0
  35. data/coffee-machine-super-automatic.json +1 -0
  36. data/coffee-machine.json +1 -0
  37. data/country.json +0 -0
  38. data/cpu.json +0 -0
  39. data/dating-app.json +1 -0
  40. data/dishwasher.json +1 -0
  41. data/dj-controller.json +1 -0
  42. data/dj-software.json +1 -0
  43. data/drawing-tablet.json +1594 -0
  44. data/drill.json +1 -0
  45. data/drone.json +1 -0
  46. data/electric-bike.json +1 -0
  47. data/electric-scooter.json +1 -0
  48. data/enterprise-cpu.json +0 -0
  49. data/ereader.json +1 -0
  50. data/faculty.json +1 -0
.gitattributes CHANGED
@@ -32,3 +32,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
32
  *.zip filter=lfs diff=lfs merge=lfs -text
33
  *.zst filter=lfs diff=lfs merge=lfs -text
34
  *tfevents* filter=lfs diff=lfs merge=lfs -text
 
 
32
  *.zip filter=lfs diff=lfs merge=lfs -text
33
  *.zst filter=lfs diff=lfs merge=lfs -text
34
  *tfevents* filter=lfs diff=lfs merge=lfs -text
35
+ db.sqlite3 filter=lfs diff=lfs merge=lfs -text
Dockerfile ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ FROM python:3
2
+ WORKDIR /usr/src/app
3
+ COPY requirements.txt ./
4
+ RUN pip install -r requirements.txt
5
+ COPY . .
6
+ EXPOSE 7860
7
+ CMD ["python","./manage.py","runserver","0.0.0.0:7860"]
README.md CHANGED
@@ -1,10 +1 @@
1
- ---
2
- title: Procom
3
- emoji: 💻
4
- colorFrom: blue
5
- colorTo: yellow
6
- sdk: docker
7
- pinned: false
8
- ---
9
-
10
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
1
+ # procomBackend
 
 
 
 
 
 
 
 
 
amazon/__init__.py ADDED
File without changes
amazon/__pycache__/__init__.cpython-311.pyc ADDED
Binary file (186 Bytes). View file
 
amazon/__pycache__/admin.cpython-311.pyc ADDED
Binary file (241 Bytes). View file
 
amazon/__pycache__/apps.cpython-311.pyc ADDED
Binary file (557 Bytes). View file
 
amazon/__pycache__/models.cpython-311.pyc ADDED
Binary file (238 Bytes). View file
 
amazon/__pycache__/urls.cpython-311.pyc ADDED
Binary file (605 Bytes). View file
 
amazon/__pycache__/views.cpython-311.pyc ADDED
Binary file (10.5 kB). View file
 
amazon/admin.py ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ from django.contrib import admin
2
+
3
+ # Register your models here.
amazon/apps.py ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ from django.apps import AppConfig
2
+
3
+
4
+ class AmazonConfig(AppConfig):
5
+ default_auto_field = "django.db.models.BigAutoField"
6
+ name = "amazon"
amazon/migrations/__init__.py ADDED
File without changes
amazon/migrations/__pycache__/__init__.cpython-311.pyc ADDED
Binary file (197 Bytes). View file
 
amazon/models.py ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ from django.db import models
2
+
3
+ # Create your models here.
amazon/tests.py ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ from django.test import TestCase
2
+
3
+ # Create your tests here.
amazon/urls.py ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ from django.urls import path
2
+ from . import views
3
+ from django.conf import settings
4
+
5
+ urlpatterns = [
6
+ path('search/', views.searchQuery),
7
+ path('fetchData/', views.getProductsList),
8
+ path('fetchProduct/', views.getProductDetail)
9
+ ]
amazon/views.py ADDED
@@ -0,0 +1,187 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from django.shortcuts import render
2
+ from rest_framework.response import Response
3
+ from rest_framework.decorators import api_view
4
+ import http.client
5
+ import json
6
+ import requests
7
+ from bs4 import BeautifulSoup
8
+ # Create your views here.
9
+
10
+
11
+ def sessionIdGenrator():
12
+ conn = http.client.HTTPSConnection("www.amazon.in")
13
+ payload = ''
14
+ headers = {}
15
+ conn.request("GET", "/", payload, headers)
16
+ res = conn.getresponse()
17
+ data = res.read()
18
+ response = data.decode("utf-8")
19
+ ue_sid = response.split("ue_sid =")[1].split(',')[0].split("'")[1]
20
+ ue_mid = response.split("ue_mid =")[1].split(',')[0].split("'")[1]
21
+ return ue_sid, ue_mid
22
+
23
+
24
+ def searchAPI(ue_sid, ue_mid, query):
25
+ conn = http.client.HTTPSConnection("completion.amazon.in")
26
+ payload = ''
27
+ headers = {}
28
+ conn.request("GET", "/api/2017/suggestions?prefix="+query.replace(" ", "+") +
29
+ "&alias=aps&session-id="+ue_sid+"&mid="+ue_mid, payload, headers)
30
+ res = conn.getresponse()
31
+ data = res.read()
32
+ response = data.decode("utf-8")
33
+ return json.loads(response)
34
+
35
+
36
+ def getAllProduct(query, page):
37
+ conn = http.client.HTTPSConnection("www.amazon.in")
38
+ payload = ''
39
+ headers = {}
40
+ conn.request("POST", "/s/query?k="+query +
41
+ "&page="+str(page), payload, headers)
42
+ res = conn.getresponse()
43
+ data = res.read()
44
+ response = data.decode("utf-8")
45
+ tempData = response.split("&&&")[3:-1]
46
+ data = []
47
+ for i in tempData:
48
+ try:
49
+ tempProduct = {}
50
+ tempHtml = json.loads(i)[2]["html"]
51
+ soup = BeautifulSoup(tempHtml, features="html5lib")
52
+ try:
53
+ stars = soup.find_all("span", {"class", "a-icon-alt"})[0].text
54
+ tempProduct["stars"] = stars
55
+ except:
56
+ pass
57
+ try:
58
+ imgs = soup.find_all("img", {"class", "s-image"})[0]['srcset']
59
+ tempProduct["imgs"] = imgs
60
+ except:
61
+ pass
62
+ try:
63
+ title = soup.find_all(
64
+ "img", {"class", "s-image"})[0]['alt'].replace("Sponsored Ad - ", "")
65
+ tempProduct["title"] = title
66
+ except:
67
+ pass
68
+ try:
69
+ link = soup.find_all("a")[0]["href"]
70
+ tempProduct["link"] = link
71
+ except:
72
+ pass
73
+ try:
74
+ symbol = soup.find_all(
75
+ "span", {"class", "a-price-symbol"})[0].text
76
+ tempProduct["symbol"] = symbol
77
+ except:
78
+ pass
79
+ try:
80
+ price = soup.find_all(
81
+ "span", {"class", "a-price-whole"})[0].text
82
+ tempProduct["price"] = price
83
+ except:
84
+ pass
85
+ try:
86
+ fullPrice = soup.find_all(
87
+ "span", {"class", "a-offscreen"})[1].text
88
+ tempProduct["fullPrice"] = fullPrice
89
+ except:
90
+ pass
91
+ try:
92
+ offer = soup.find_all(
93
+ "span", {"class", "a-truncate-full"})[0].text
94
+ tempProduct["offer"] = offer
95
+ except:
96
+ pass
97
+ try:
98
+ dataAsin = json.loads(i)[2]["asin"]
99
+ tempProduct["asin"] = dataAsin
100
+ except:
101
+ pass
102
+ if(tempProduct != {} and "title" in tempProduct.keys() and "asin" in tempProduct.keys()):
103
+ data.append(tempProduct)
104
+ except:
105
+ pass
106
+ return data
107
+
108
+
109
+ @api_view(['GET'])
110
+ def getProductsList(request):
111
+ query = (request.GET.get('query')).replace(" ", "+")
112
+ try:
113
+ page = (request.GET.get('page'))
114
+ except:
115
+ page = 1
116
+ data = getAllProduct(query, page)
117
+ return Response({"data": data})
118
+
119
+
120
+ @api_view(['GET'])
121
+ def getProductDetail(request):
122
+ productId = request.GET.get('id')
123
+ conn = http.client.HTTPSConnection("www.amazon.in")
124
+ payload = ''
125
+ headers = {}
126
+ conn.request("GET", "/dp/"+productId+"/", payload, headers)
127
+ res = conn.getresponse()
128
+ data = res.read()
129
+ response = data.decode("utf-8")
130
+ data = {}
131
+ soup = BeautifulSoup(response, features="html5lib")
132
+ #title = response.split('id="productTitle"')[1].split(">")[1].split("</span")[0].strip()
133
+ title = soup.find_all(
134
+ "span", {"class", "a-size-large product-title-word-break"})[0].text.strip()
135
+ data['title'] = title
136
+ symbol = soup.find_all("span", {"class", "a-price-symbol"})[0].text
137
+ data["symbol"] = symbol
138
+ savingsPercentage = soup.find_all(
139
+ "span", {"class", "savingsPercentage"})[0].text
140
+ data["savingPercentage"] = savingsPercentage
141
+ imgs = soup.find_all(
142
+ "img", {"class", "a-dynamic-image"})
143
+ imgArr = []
144
+ for i in imgs:
145
+ imgArr.append("https://m.media-amazon.com/images/I/" +
146
+ i["src"].split("/I/")[1].split(".")[0]+".jpg")
147
+ data["images"] = imgArr
148
+ scripts = soup.find_all("script")
149
+ tempData = {}
150
+ for i in scripts:
151
+ try:
152
+ temp = str(i).split("<script")[1].split(
153
+ ">")[1].split("</script")[0]
154
+ for key, item in json.loads(temp).items():
155
+ if item != None or item != "nulll" or item != True or item != False:
156
+ tempData[key] = item
157
+ except:
158
+ pass
159
+ data["currencyCode"] = tempData["currencyCode"]
160
+ data["productPrice"] = tempData["productPrice"]
161
+ data["brand"] = tempData["brand"]
162
+ data["category"] = tempData["buyBackCategory"]
163
+ return Response({"data": data})
164
+
165
+
166
+ @api_view(['GET'])
167
+ def searchQuery(request):
168
+ query = request.GET.get('query')
169
+ if not ('ue_sid' in request.session and 'ue_mid' in request.session):
170
+ ue_sid, ue_mid = sessionIdGenrator()
171
+ request.session['ue_sid'] = ue_sid
172
+ request.session['ue_mid'] = ue_mid
173
+ else:
174
+ ue_sid = request.session['ue_sid']
175
+ ue_mid = request.session['ue_mid']
176
+ try:
177
+ tempData = searchAPI(ue_sid, ue_mid, query)
178
+ except:
179
+ ue_sid, ue_mid = sessionIdGenrator()
180
+ request.session['ue_sid'] = ue_sid
181
+ request.session['ue_mid'] = ue_mid
182
+ tempData = searchAPI(ue_sid, ue_mid, query)
183
+ values = []
184
+ for i in tempData["suggestions"]:
185
+ values.append(i["value"])
186
+ data = {"data": values}
187
+ return Response(data)
amazonDetails.html ADDED
The diff for this file is too large to render. See raw diff
 
data/action-camera.json ADDED
@@ -0,0 +1,2908 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "data": [
3
+ {
4
+ "name": "Activeon CX",
5
+ "score": 35,
6
+ "image": "/images/WEBP/action-camera/activeon-cx.front.medium2x.1576684641045.webp",
7
+ "propGroups": [
8
+ "Design",
9
+ "Features",
10
+ "Battery",
11
+ "Audio",
12
+ "Optics",
13
+ "Videography",
14
+ "Miscellaneous"
15
+ ],
16
+ "propScore": [
17
+ 0.4327989648702407,
18
+ 0.3789473684210526,
19
+ 1,
20
+ 0,
21
+ 0.3663495969586547,
22
+ 0.1575058707693003
23
+ ]
24
+ },
25
+ {
26
+ "name": "Akaso Brave 7 LE",
27
+ "score": 38,
28
+ "image": "/images/WEBP/action-camera/akaso-brave-7-le.front.medium2x.1608219649340.webp",
29
+ "propGroups": [
30
+ "Design",
31
+ "Features",
32
+ "Battery",
33
+ "Audio",
34
+ "Optics",
35
+ "Videography"
36
+ ],
37
+ "propScore": [
38
+ 0.6086039781512486,
39
+ 0.6,
40
+ 0.7974537037037037,
41
+ 0,
42
+ 0.030341340075853342,
43
+ 0.36573284189189037
44
+ ]
45
+ },
46
+ {
47
+ "name": "Akaso Brave 7",
48
+ "score": 62,
49
+ "image": "/images/WEBP/action-camera/akaso-brave-7.front.medium2x.1608207678139.webp",
50
+ "propGroups": [
51
+ "Design",
52
+ "Features",
53
+ "Battery",
54
+ "Audio",
55
+ "Optics",
56
+ "Videography"
57
+ ],
58
+ "propScore": [
59
+ 1,
60
+ 0.5,
61
+ 0.7974537037037037,
62
+ 0.3125,
63
+ 0.14833544037083857,
64
+ 0.3681038153997398
65
+ ]
66
+ },
67
+ {
68
+ "name": "Akaso Brave 4",
69
+ "score": 35,
70
+ "image": "/images/WEBP/action-camera/akaso-brave-4.front.medium2x.1607965701286.webp",
71
+ "propGroups": [
72
+ "Design",
73
+ "Features",
74
+ "Battery",
75
+ "Audio",
76
+ "Optics",
77
+ "Videography"
78
+ ],
79
+ "propScore": [
80
+ 0.486638131505163,
81
+ 0.28421052631578947,
82
+ 0.7858796296296297,
83
+ 0,
84
+ 0.14833544037083857,
85
+ 0.36017544101258103
86
+ ]
87
+ },
88
+ {
89
+ "name": "Akaso EK7000",
90
+ "score": 26,
91
+ "image": "/images/WEBP/action-camera/akaso-ek7000.front.medium2x.1607959151479.webp",
92
+ "propGroups": [
93
+ "Design",
94
+ "Features",
95
+ "Battery",
96
+ "Audio",
97
+ "Optics",
98
+ "Videography"
99
+ ],
100
+ "propScore": [
101
+ 0.3827661244024861,
102
+ 0.47368421052631576,
103
+ 0.7858796296296297,
104
+ 0,
105
+ 0.016856300042140747,
106
+ 0.26363505387917335
107
+ ]
108
+ },
109
+ {
110
+ "name": "Akaso V50 Pro",
111
+ "score": 47,
112
+ "image": "/images/WEBP/action-camera/akaso-v50-pro.front.medium2x.1608231211770.webp",
113
+ "propGroups": [
114
+ "Design",
115
+ "Features",
116
+ "Battery",
117
+ "Audio",
118
+ "Optics",
119
+ "Videography"
120
+ ],
121
+ "propScore": [
122
+ 0.40132775452317887,
123
+ 0.6,
124
+ 0.7878086419753086,
125
+ 0.3125,
126
+ 0.2663295406658238,
127
+ 0.4855504890209603
128
+ ]
129
+ },
130
+ {
131
+ "name": "Akaso V50 Elite",
132
+ "score": 39,
133
+ "image": "/images/WEBP/action-camera/akaso-v50-elite.front.medium2x.1608237447530.webp",
134
+ "propGroups": [
135
+ "Design",
136
+ "Features",
137
+ "Battery",
138
+ "Audio",
139
+ "Optics",
140
+ "Videography"
141
+ ],
142
+ "propScore": [
143
+ 0.5901501554782264,
144
+ 0.3,
145
+ 0.7858796296296297,
146
+ 0,
147
+ 0.030341340075853342,
148
+ 0.5157368289468667
149
+ ]
150
+ },
151
+ {
152
+ "name": "Akaso EK7000 Pro",
153
+ "score": 26,
154
+ "image": "/images/WEBP/action-camera/akaso-ek7000-pro.front.medium2x.1607950718680.webp",
155
+ "propGroups": [
156
+ "Design",
157
+ "Features",
158
+ "Battery",
159
+ "Audio",
160
+ "Optics",
161
+ "Videography"
162
+ ],
163
+ "propScore": [
164
+ 0.4019633497364026,
165
+ 0.47368421052631576,
166
+ 0.7858796296296297,
167
+ 0,
168
+ 0.02359882005899705,
169
+ 0.26363505387917335
170
+ ]
171
+ },
172
+ {
173
+ "name": "Casio Exilim EX-FR10",
174
+ "score": 31,
175
+ "image": "/images/WEBP/action-camera/casio-exilim-ex-fr10.front.medium2x.1576684641045.webp",
176
+ "propGroups": [
177
+ "Design",
178
+ "Features",
179
+ "Battery",
180
+ "Audio",
181
+ "Optics",
182
+ "Videography"
183
+ ],
184
+ "propScore": [
185
+ 0.5836976086590727,
186
+ 0.1894736842105263,
187
+ 0.6666666666666666,
188
+ 0,
189
+ 0.40933226065969425,
190
+ 0.04545791615319691
191
+ ]
192
+ },
193
+ {
194
+ "name": "Apexcam M80 Air",
195
+ "score": 29,
196
+ "image": "/images/WEBP/action-camera/apexcam-m80-air.front.medium2x.1656668807805.webp",
197
+ "propGroups": [
198
+ "Design",
199
+ "Features",
200
+ "Battery",
201
+ "Audio",
202
+ "Optics",
203
+ "Videography"
204
+ ],
205
+ "propScore": [
206
+ 0.5640202034319579,
207
+ 0.09999999999999999,
208
+ 0.7858796296296297,
209
+ 0,
210
+ 0.14833544037083857,
211
+ 0.31322010161404457
212
+ ]
213
+ },
214
+ {
215
+ "name": "Cooau Cool Series SPC06",
216
+ "score": 29,
217
+ "image": "/images/WEBP/action-camera/cooau-cool-series-spc06.front.medium2x.1658255013379.webp",
218
+ "propGroups": [
219
+ "Design",
220
+ "Features",
221
+ "Battery",
222
+ "Audio",
223
+ "Optics",
224
+ "Videography"
225
+ ],
226
+ "propScore": [
227
+ 0.4489258964715127,
228
+ 0.19999999999999998,
229
+ 0.7916666666666667,
230
+ 0.41666666666666663,
231
+ 0.2663295406658238,
232
+ 0.31322010161404457
233
+ ]
234
+ },
235
+ {
236
+ "name": "Crosstour CT7000",
237
+ "score": 27,
238
+ "image": "/images/WEBP/action-camera/crosstour-ct7000.front.medium2x.1605730076800.webp",
239
+ "propGroups": [
240
+ "Design",
241
+ "Features",
242
+ "Battery",
243
+ "Audio",
244
+ "Optics",
245
+ "Videography",
246
+ "Miscellaneous"
247
+ ],
248
+ "propScore": [
249
+ 0.5769749586384444,
250
+ 0.1894736842105263,
251
+ 0.7087037037037037,
252
+ 0,
253
+ 0.0202275600505689,
254
+ 0.07451846680593752
255
+ ]
256
+ },
257
+ {
258
+ "name": "Crosstour CT9000",
259
+ "score": 36,
260
+ "image": "/images/WEBP/action-camera/crosstour-ct9000.front.medium2x.1605729570923.webp",
261
+ "propGroups": [
262
+ "Design",
263
+ "Features",
264
+ "Battery",
265
+ "Audio",
266
+ "Optics",
267
+ "Videography",
268
+ "Miscellaneous"
269
+ ],
270
+ "propScore": [
271
+ 0.5635211516427822,
272
+ 0.28421052631578947,
273
+ 0.7087037037037037,
274
+ 0,
275
+ 0.030341340075853342,
276
+ 0.3681038153997398
277
+ ]
278
+ },
279
+ {
280
+ "name": "Crosstour CT9500",
281
+ "score": 44,
282
+ "image": "/images/WEBP/action-camera/crosstour-ct9500.front.medium2x.1605727469738.webp",
283
+ "propGroups": [
284
+ "Design",
285
+ "Features",
286
+ "Battery",
287
+ "Audio",
288
+ "Optics",
289
+ "Videography"
290
+ ],
291
+ "propScore": [
292
+ 0.5746509016905385,
293
+ 0.39999999999999997,
294
+ 0.7974537037037037,
295
+ 0,
296
+ 0.14833544037083857,
297
+ 0.4461446622964435
298
+ ]
299
+ },
300
+ {
301
+ "name": "Crosstour CT8500",
302
+ "score": 36,
303
+ "image": "/images/WEBP/action-camera/crosstour-ct8500.front.medium2x.1605730979383.webp",
304
+ "propGroups": [
305
+ "Design",
306
+ "Features",
307
+ "Battery",
308
+ "Audio",
309
+ "Optics",
310
+ "Videography"
311
+ ],
312
+ "propScore": [
313
+ 0.5020259080713206,
314
+ 0.1894736842105263,
315
+ 0.8287037037037038,
316
+ 0.41666666666666663,
317
+ 0.14211711679184647,
318
+ 0.3681038153997398
319
+ ]
320
+ },
321
+ {
322
+ "name": "Crosstour CT9700",
323
+ "score": 41,
324
+ "image": "/images/WEBP/action-camera/crosstour-ct9700.front.medium2x.1605726617682.webp",
325
+ "propGroups": [
326
+ "Design",
327
+ "Features",
328
+ "Battery",
329
+ "Audio",
330
+ "Optics",
331
+ "Videography"
332
+ ],
333
+ "propScore": [
334
+ 0.6133387907327714,
335
+ 0.3,
336
+ 0.7974537037037037,
337
+ 0,
338
+ 0.2522449437338327,
339
+ 0.3945317300236027
340
+ ]
341
+ },
342
+ {
343
+ "name": "Crosstour CT9900",
344
+ "score": 63,
345
+ "image": "/images/WEBP/action-camera/crosstour-ct9900.front.medium2x.1605715870121.webp",
346
+ "propGroups": [
347
+ "Design",
348
+ "Features",
349
+ "Battery",
350
+ "Audio",
351
+ "Optics",
352
+ "Videography"
353
+ ],
354
+ "propScore": [
355
+ 0.6892592130323281,
356
+ 0.5,
357
+ 0.7179629629629629,
358
+ 0.41666666666666663,
359
+ 0.2485742379547689,
360
+ 0.4636760512053426
361
+ ]
362
+ },
363
+ {
364
+ "name": "DJI Action 2",
365
+ "score": 71,
366
+ "image": "/images/WEBP/action-camera/dji-action-2.front.medium2x.1635447907070.webp",
367
+ "propGroups": [
368
+ "Design",
369
+ "Features",
370
+ "Battery",
371
+ "Audio",
372
+ "Optics",
373
+ "Videography"
374
+ ],
375
+ "propScore": [
376
+ 0.6873854567563515,
377
+ 0.38999999999999996,
378
+ 0.4497435694080948,
379
+ 0.3125,
380
+ 0.7731295253419146,
381
+ 0.9720375581467742
382
+ ]
383
+ },
384
+ {
385
+ "name": "DJI Osmo Action 3",
386
+ "score": null,
387
+ "image": "/images/WEBP/action-camera/dji-osmo-action-3.front.medium2x.1663203625880.webp",
388
+ "propGroups": [
389
+ "Design",
390
+ "Features",
391
+ "Battery",
392
+ "Audio",
393
+ "Optics",
394
+ "Videography",
395
+ "Miscellaneous"
396
+ ],
397
+ "propScore": [
398
+ 0.8532776212964689,
399
+ 0.84,
400
+ 0.7511400586882385,
401
+ 0.7499999999999999,
402
+ 0.8298806032157867,
403
+ 0.955178905127738
404
+ ]
405
+ },
406
+ {
407
+ "name": "DJI Osmo Action",
408
+ "score": 81,
409
+ "image": "/images/WEBP/action-camera/dji-osmo-action.front.medium2x.1603947601966.webp",
410
+ "propGroups": [
411
+ "Design",
412
+ "Features",
413
+ "Battery",
414
+ "Audio",
415
+ "Optics",
416
+ "Videography",
417
+ "Miscellaneous"
418
+ ],
419
+ "propScore": [
420
+ 0.6063439171842738,
421
+ 0.7679999999999999,
422
+ 0.698872278178726,
423
+ 0.0625,
424
+ 0.8783337087691068,
425
+ 0.9383439655293244
426
+ ]
427
+ },
428
+ {
429
+ "name": "Dragon Touch Vision 3",
430
+ "score": 45,
431
+ "image": "/images/WEBP/action-camera/dragon-touch-vision-3.front.medium2x.1656279441730.webp",
432
+ "propGroups": [
433
+ "Design",
434
+ "Features",
435
+ "Battery",
436
+ "Audio",
437
+ "Optics",
438
+ "Videography",
439
+ "Miscellaneous"
440
+ ],
441
+ "propScore": [
442
+ 0.5848513867562884,
443
+ 0.5,
444
+ 0.67881077008486,
445
+ 0,
446
+ 0.1415929203539823,
447
+ 0.31322010161404457
448
+ ]
449
+ },
450
+ {
451
+ "name": "Dragon Touch Vision 3 Pro",
452
+ "score": 49,
453
+ "image": "/images/WEBP/action-camera/dragon-touch-vision-3-pro.front.medium2x.1622297082612.webp",
454
+ "propGroups": [
455
+ "Design",
456
+ "Features",
457
+ "Battery",
458
+ "Audio",
459
+ "Optics",
460
+ "Videography"
461
+ ],
462
+ "propScore": [
463
+ 0.5739661470534222,
464
+ 0.39999999999999997,
465
+ 0.7430505987786502,
466
+ 0,
467
+ 0.38121170864533693,
468
+ 0.41108188447864535
469
+ ]
470
+ },
471
+ {
472
+ "name": "DJI Osmo Pocket 2",
473
+ "score": 71,
474
+ "image": "/images/WEBP/action-camera/dji-osmo-pocket-2.front.medium2x.1603337399302.webp",
475
+ "propGroups": [
476
+ "Design",
477
+ "Features",
478
+ "Battery",
479
+ "Audio",
480
+ "Optics",
481
+ "Videography",
482
+ "Miscellaneous"
483
+ ],
484
+ "propScore": [
485
+ 0.4465767412498606,
486
+ 0.7,
487
+ 0.27912808641975306,
488
+ 0.5,
489
+ 1,
490
+ 0.8943831544423305
491
+ ]
492
+ },
493
+ {
494
+ "name": "DJI Osmo Pocket",
495
+ "score": 58,
496
+ "image": "/images/WEBP/action-camera/dji-osmo-pocket.front.medium2x.1603948795267.webp",
497
+ "propGroups": [
498
+ "Design",
499
+ "Features",
500
+ "Battery",
501
+ "Audio",
502
+ "Optics",
503
+ "Videography",
504
+ "Miscellaneous"
505
+ ],
506
+ "propScore": [
507
+ 0.5160564541775384,
508
+ 0.7,
509
+ 0.54279631171738,
510
+ 0,
511
+ 0.4127933494234379,
512
+ 0.7412517035362822
513
+ ]
514
+ },
515
+ {
516
+ "name": "Drift Ghost-S",
517
+ "score": 55,
518
+ "image": "/images/WEBP/action-camera/drift-ghost-s.front.medium2x.1576684641045.webp",
519
+ "propGroups": [
520
+ "Design",
521
+ "Features",
522
+ "Battery",
523
+ "Audio",
524
+ "Optics",
525
+ "Videography"
526
+ ],
527
+ "propScore": [
528
+ 0.5278320334333844,
529
+ 0.5684210526315789,
530
+ 0.8109567901234568,
531
+ 0.3125,
532
+ 0.3708386009270965,
533
+ 0.3786267001273082
534
+ ]
535
+ },
536
+ {
537
+ "name": "Drift Ghost XL",
538
+ "score": 33,
539
+ "image": "/images/WEBP/action-camera/drift-ghost-xl.front.medium2x.1607458192435.webp",
540
+ "propGroups": [
541
+ "Design",
542
+ "Features",
543
+ "Battery",
544
+ "Audio",
545
+ "Optics",
546
+ "Videography",
547
+ "Miscellaneous"
548
+ ],
549
+ "propScore": [
550
+ 0.4396844205422708,
551
+ 0.3789473684210526,
552
+ 0.6111111111111112,
553
+ 0.41666666666666663,
554
+ 0.3708386009270965,
555
+ 0.1522162247327614
556
+ ]
557
+ },
558
+ {
559
+ "name": "Drift Ghost X",
560
+ "score": 33,
561
+ "image": "/images/WEBP/action-camera/drift-ghost-x.front.medium2x.1608055977183.webp",
562
+ "propGroups": [
563
+ "Design",
564
+ "Features",
565
+ "Battery",
566
+ "Audio",
567
+ "Optics",
568
+ "Videography"
569
+ ],
570
+ "propScore": [
571
+ 0.5196862370981243,
572
+ 0.47368421052631576,
573
+ 0.5532407407407407,
574
+ 0.3125,
575
+ 0.13485040033712598,
576
+ 0.25336983190036905
577
+ ]
578
+ },
579
+ {
580
+ "name": "Drift Ghost 4K",
581
+ "score": 35,
582
+ "image": "/images/WEBP/action-camera/drift-ghost-4k.front.medium2x.1608052657001.webp",
583
+ "propGroups": [
584
+ "Design",
585
+ "Features",
586
+ "Battery",
587
+ "Audio",
588
+ "Optics",
589
+ "Videography",
590
+ "Miscellaneous"
591
+ ],
592
+ "propScore": [
593
+ 0.5173213655611932,
594
+ 0.3789473684210526,
595
+ 0.5532407407407407,
596
+ 0.6875,
597
+ 0.13485040033712598,
598
+ 0.48991275090999237
599
+ ]
600
+ },
601
+ {
602
+ "name": "Drift Stealth 2 Action Cam",
603
+ "score": 46,
604
+ "image": "/images/WEBP/action-camera/drift-stealth-2-action-cam.front.medium2x.1576684641045.webp",
605
+ "propGroups": [
606
+ "Design",
607
+ "Features",
608
+ "Battery",
609
+ "Audio",
610
+ "Optics",
611
+ "Videography",
612
+ "Miscellaneous"
613
+ ],
614
+ "propScore": [
615
+ 0.6505313311644341,
616
+ 0.3789473684210526,
617
+ 0.30324074074074076,
618
+ 0.8333333333333333,
619
+ 0.3708386009270965,
620
+ 0.15123498842687289
621
+ ]
622
+ },
623
+ {
624
+ "name": "Garmin Virb Ultra 30",
625
+ "score": 68,
626
+ "image": "/images/WEBP/action-camera/garmin-virb-ultra-30.front.medium2x.1576684641045.webp",
627
+ "propGroups": [
628
+ "Design",
629
+ "Features",
630
+ "Battery",
631
+ "Audio",
632
+ "Optics",
633
+ "Videography",
634
+ "Miscellaneous"
635
+ ],
636
+ "propScore": [
637
+ 0.6721648503464228,
638
+ 0.44999999999999996,
639
+ 0.7063968858222962,
640
+ 0.3125,
641
+ 0.8056970888829295,
642
+ 0.41973074639044955
643
+ ]
644
+ },
645
+ {
646
+ "name": "Fimi Palm 2",
647
+ "score": 58,
648
+ "image": "/images/WEBP/action-camera/fimi-palm-2.front.medium2x.1613604902327.webp",
649
+ "propGroups": [
650
+ "Design",
651
+ "Features",
652
+ "Battery",
653
+ "Audio",
654
+ "Optics",
655
+ "Videography",
656
+ "Miscellaneous"
657
+ ],
658
+ "propScore": [
659
+ 0.5012465479370781,
660
+ 0.3789473684210526,
661
+ 0.4765432098765432,
662
+ 0.41666666666666663,
663
+ 0.8530436158535198,
664
+ 0.523090189554165
665
+ ]
666
+ },
667
+ {
668
+ "name": "Drift HD Ghost",
669
+ "score": 47,
670
+ "image": "/images/WEBP/action-camera/drift-hd-ghost.front.medium2x.1576684641045.webp",
671
+ "propGroups": [
672
+ "Design",
673
+ "Features",
674
+ "Battery",
675
+ "Audio",
676
+ "Optics",
677
+ "Videography"
678
+ ],
679
+ "propScore": [
680
+ 0.5023930577378062,
681
+ 0.5,
682
+ 0.5609567901234568,
683
+ 0.625,
684
+ 0.45467059980334307,
685
+ 0.25485877938196033
686
+ ]
687
+ },
688
+ {
689
+ "name": "Garmin Virb X",
690
+ "score": 58,
691
+ "image": "/images/WEBP/action-camera/garmin-virb-x.front.medium2x.1576684641045.webp",
692
+ "propGroups": [
693
+ "Design",
694
+ "Features",
695
+ "Battery",
696
+ "Audio",
697
+ "Optics",
698
+ "Videography"
699
+ ],
700
+ "propScore": [
701
+ 0.6271217259681555,
702
+ 0.44999999999999996,
703
+ 0.783179012345679,
704
+ 0.3125,
705
+ 0.25351875263379686,
706
+ 0.2456990428470273
707
+ ]
708
+ },
709
+ {
710
+ "name": "GoPro HD Hero2",
711
+ "score": 49,
712
+ "image": "/images/WEBP/action-camera/gopro-hd-hero2.front.medium2x.1576684641045.webp",
713
+ "propGroups": [
714
+ "Design",
715
+ "Features",
716
+ "Battery",
717
+ "Audio",
718
+ "Optics",
719
+ "Videography"
720
+ ],
721
+ "propScore": [
722
+ 0.6121488730259234,
723
+ 0.09473684210526315,
724
+ 0.7878086419753086,
725
+ 0.41666666666666663,
726
+ 0.32388956324586826,
727
+ 0.270242032535139
728
+ ]
729
+ },
730
+ {
731
+ "name": "Garmin Virb XE",
732
+ "score": 59,
733
+ "image": "/images/WEBP/action-camera/garmin-virb-xe.front.medium2x.1576684641045.webp",
734
+ "propGroups": [
735
+ "Design",
736
+ "Features",
737
+ "Battery",
738
+ "Audio",
739
+ "Optics",
740
+ "Videography",
741
+ "Miscellaneous"
742
+ ],
743
+ "propScore": [
744
+ 0.6271217259681555,
745
+ 0.44999999999999996,
746
+ 0.783179012345679,
747
+ 0.3125,
748
+ 0.25351875263379686,
749
+ 0.2743028335826367
750
+ ]
751
+ },
752
+ {
753
+ "name": "GoPro Fusion",
754
+ "score": 92,
755
+ "image": "/images/WEBP/action-camera/gopro-fusion.front.medium2x.1576684641045.webp",
756
+ "propGroups": [
757
+ "Design",
758
+ "Features",
759
+ "Battery",
760
+ "Audio",
761
+ "Optics",
762
+ "Videography",
763
+ "Miscellaneous"
764
+ ],
765
+ "propScore": [
766
+ 0.5372224086315964,
767
+ 0.8099999999999999,
768
+ 0.8464506172839505,
769
+ 0.43749999999999994,
770
+ 0.8150426703263766,
771
+ 0.6851894775648225
772
+ ]
773
+ },
774
+ {
775
+ "name": "GoPro Hero (2018)",
776
+ "score": 58,
777
+ "image": "/images/WEBP/action-camera/gopro-hero-2018.front.medium2x.1576684641045.webp",
778
+ "propGroups": [
779
+ "Design",
780
+ "Features",
781
+ "Battery",
782
+ "Audio",
783
+ "Optics",
784
+ "Videography",
785
+ "Miscellaneous"
786
+ ],
787
+ "propScore": [
788
+ 0.6497512746731754,
789
+ 0.5318181818181819,
790
+ 0.7924382716049383,
791
+ 0.41666666666666663,
792
+ 0.6002506615909023,
793
+ 0.32168387777499996
794
+ ]
795
+ },
796
+ {
797
+ "name": "GoPro Hero",
798
+ "score": 30,
799
+ "image": "/images/WEBP/action-camera/gopro-hero.front.medium2x.1576684641045.webp",
800
+ "propGroups": [
801
+ "Design",
802
+ "Features",
803
+ "Battery",
804
+ "Audio",
805
+ "Optics",
806
+ "Videography"
807
+ ],
808
+ "propScore": [
809
+ 0.4878021941502693,
810
+ 0.09473684210526315,
811
+ 0.5408950617283951,
812
+ 0,
813
+ 0.6922319594666422,
814
+ 0.2639834211408975
815
+ ]
816
+ },
817
+ {
818
+ "name": "GoPro Hero Plus LCD",
819
+ "score": 40,
820
+ "image": "/images/WEBP/action-camera/gopro-hero-plus-lcd.front.medium2x.1576684641045.webp",
821
+ "propGroups": [
822
+ "Design",
823
+ "Features",
824
+ "Battery",
825
+ "Audio",
826
+ "Optics",
827
+ "Videography"
828
+ ],
829
+ "propScore": [
830
+ 0.6156055713357941,
831
+ 0.3789473684210526,
832
+ 0.5401234567901234,
833
+ 0,
834
+ 0.2897649056941092,
835
+ 0.19093983810117054
836
+ ]
837
+ },
838
+ {
839
+ "name": "GoPro Hero Plus",
840
+ "score": 40,
841
+ "image": "/images/WEBP/action-camera/gopro-hero-plus.front.medium2x.1576684641045.webp",
842
+ "propGroups": [
843
+ "Design",
844
+ "Features",
845
+ "Battery",
846
+ "Audio",
847
+ "Optics",
848
+ "Videography"
849
+ ],
850
+ "propScore": [
851
+ 0.5462445784747421,
852
+ 0.3789473684210526,
853
+ 0.5401234567901234,
854
+ 0,
855
+ 0.2897649056941092,
856
+ 0.19093983810117054
857
+ ]
858
+ },
859
+ {
860
+ "name": "GoPro Hero11 Black Mini",
861
+ "score": 97,
862
+ "image": "/images/WEBP/action-camera/gopro-hero11-black-mini.front.medium2x.1663200982427.webp",
863
+ "propGroups": [
864
+ "Design",
865
+ "Features",
866
+ "Battery",
867
+ "Audio",
868
+ "Optics",
869
+ "Videography",
870
+ "Miscellaneous"
871
+ ],
872
+ "propScore": [
873
+ 0.7889457704893655,
874
+ 0.7118181818181818,
875
+ 0.8032407407407407,
876
+ 0,
877
+ 0.9030576321740639,
878
+ 0.9544318339117454
879
+ ]
880
+ },
881
+ {
882
+ "name": "GoPro Hero3+ Black",
883
+ "score": 47,
884
+ "image": "/images/WEBP/action-camera/gopro-hero3-black.front.medium2x.1576684641045.webp",
885
+ "propGroups": [
886
+ "Design",
887
+ "Features",
888
+ "Battery",
889
+ "Audio",
890
+ "Optics",
891
+ "Videography"
892
+ ],
893
+ "propScore": [
894
+ 0.5010403400989664,
895
+ 0.5,
896
+ 0.7908950617283951,
897
+ 0.3125,
898
+ 0.40681505318673455,
899
+ 0.3697152075225815
900
+ ]
901
+ },
902
+ {
903
+ "name": "GoPro Hero11 Black",
904
+ "score": 100,
905
+ "image": "/images/WEBP/action-camera/gopro-hero11-black.front.medium2x.1663199976874.webp",
906
+ "propGroups": [
907
+ "Design",
908
+ "Features",
909
+ "Battery",
910
+ "Audio",
911
+ "Optics",
912
+ "Videography",
913
+ "Miscellaneous"
914
+ ],
915
+ "propScore": [
916
+ 0.8524455948350367,
917
+ 0.8018181818181819,
918
+ 0.8117283950617284,
919
+ 0,
920
+ 0.9060730369593802,
921
+ 0.9544318339117454
922
+ ]
923
+ },
924
+ {
925
+ "name": "GoPro Hero10 Black",
926
+ "score": 95,
927
+ "image": "/images/WEBP/action-camera/gopro-hero10-black.front.medium2x.1634903719178.webp",
928
+ "propGroups": [
929
+ "Design",
930
+ "Features",
931
+ "Battery",
932
+ "Audio",
933
+ "Optics",
934
+ "Videography",
935
+ "Miscellaneous"
936
+ ],
937
+ "propScore": [
938
+ 0.8839609358982773,
939
+ 0.8526315789473683,
940
+ 0.8117283950617284,
941
+ 0.37499999999999994,
942
+ 0.743362831858407,
943
+ 0.9810839836460519
944
+ ]
945
+ },
946
+ {
947
+ "name": "GoPro Hero3+ Silver",
948
+ "score": 42,
949
+ "image": "/images/WEBP/action-camera/gopro-hero3-silver.front.medium2x.1576684641045.webp",
950
+ "propGroups": [
951
+ "Design",
952
+ "Features",
953
+ "Battery",
954
+ "Audio",
955
+ "Optics",
956
+ "Videography"
957
+ ],
958
+ "propScore": [
959
+ 0.5010403400989664,
960
+ 0.39999999999999997,
961
+ 0.5408950617283951,
962
+ 0.3125,
963
+ 0.1827835880933226,
964
+ 0.37546817028767615
965
+ ]
966
+ },
967
+ {
968
+ "name": "GoPro Hero4 Session",
969
+ "score": 32,
970
+ "image": "/images/WEBP/action-camera/gopro-hero4-session.front.medium2x.1576684641045.webp",
971
+ "propGroups": [
972
+ "Design",
973
+ "Features",
974
+ "Battery",
975
+ "Audio",
976
+ "Optics",
977
+ "Videography"
978
+ ],
979
+ "propScore": [
980
+ 0.5003765555718607,
981
+ 0.36,
982
+ 0.535108024691358,
983
+ 0.0625,
984
+ 0.23657817109144536,
985
+ 0.37546817028767615
986
+ ]
987
+ },
988
+ {
989
+ "name": "GoPro Hero4 Black",
990
+ "score": 38,
991
+ "image": "/images/WEBP/action-camera/gopro-hero4-black.front.medium2x.1576684641045.webp",
992
+ "propGroups": [
993
+ "Design",
994
+ "Features",
995
+ "Battery",
996
+ "Audio",
997
+ "Optics",
998
+ "Videography"
999
+ ],
1000
+ "propScore": [
1001
+ 0.37119186414862904,
1002
+ 0.44999999999999996,
1003
+ 0.7901234567901234,
1004
+ 0,
1005
+ 0.5113076532282106,
1006
+ 0.4640948660688821
1007
+ ]
1008
+ },
1009
+ {
1010
+ "name": "GoPro Hero3 White",
1011
+ "score": 38,
1012
+ "image": "/images/WEBP/action-camera/gopro-hero3-white.front.medium2x.1576684641045.webp",
1013
+ "propGroups": [
1014
+ "Design",
1015
+ "Features",
1016
+ "Battery",
1017
+ "Audio",
1018
+ "Optics",
1019
+ "Videography"
1020
+ ],
1021
+ "propScore": [
1022
+ 0.4689252632839636,
1023
+ 0.47368421052631576,
1024
+ 0.5358796296296297,
1025
+ 0.3125,
1026
+ 0.1749173147403236,
1027
+ 0.24313712419932573
1028
+ ]
1029
+ },
1030
+ {
1031
+ "name": "GoPro Hero6 Black",
1032
+ "score": 70,
1033
+ "image": "/images/WEBP/action-camera/gopro-hero6-black.front.medium2x.1576684641045.webp",
1034
+ "propGroups": [
1035
+ "Design",
1036
+ "Features",
1037
+ "Battery",
1038
+ "Audio",
1039
+ "Optics",
1040
+ "Videography"
1041
+ ],
1042
+ "propScore": [
1043
+ 0.6689165488687876,
1044
+ 0.72,
1045
+ 0.7924382716049383,
1046
+ 0.43749999999999994,
1047
+ 0.9491583232110793,
1048
+ 0.6232058067403484
1049
+ ]
1050
+ },
1051
+ {
1052
+ "name": "GoPro Hero5 Session",
1053
+ "score": 57,
1054
+ "image": "/images/WEBP/action-camera/gopro-hero5-session.front.medium2x.1576684641045.webp",
1055
+ "propGroups": [
1056
+ "Design",
1057
+ "Features",
1058
+ "Battery",
1059
+ "Audio",
1060
+ "Optics",
1061
+ "Videography"
1062
+ ],
1063
+ "propScore": [
1064
+ 0.5666779647829101,
1065
+ 0.6299999999999999,
1066
+ 0.5424382716049383,
1067
+ 0.43749999999999994,
1068
+ 0.8424509517182883,
1069
+ 0.4843233917329964
1070
+ ]
1071
+ },
1072
+ {
1073
+ "name": "GoPro Hero5 Black",
1074
+ "score": 66,
1075
+ "image": "/images/WEBP/action-camera/gopro-hero5-black.front.medium2x.1576684641045.webp",
1076
+ "propGroups": [
1077
+ "Design",
1078
+ "Features",
1079
+ "Battery",
1080
+ "Audio",
1081
+ "Optics",
1082
+ "Videography",
1083
+ "Miscellaneous"
1084
+ ],
1085
+ "propScore": [
1086
+ 0.5834999146117363,
1087
+ 0.72,
1088
+ 0.7924382716049383,
1089
+ 0.43749999999999994,
1090
+ 0.8416911340541693,
1091
+ 0.574657345146474
1092
+ ]
1093
+ },
1094
+ {
1095
+ "name": "GoPro Hero4 Silver",
1096
+ "score": 33,
1097
+ "image": "/images/WEBP/action-camera/gopro-hero4-silver.front.medium2x.1576684641045.webp",
1098
+ "propGroups": [
1099
+ "Design",
1100
+ "Features",
1101
+ "Battery",
1102
+ "Audio",
1103
+ "Optics",
1104
+ "Videography"
1105
+ ],
1106
+ "propScore": [
1107
+ 0.45904912177262813,
1108
+ 0.47368421052631576,
1109
+ 0.7901234567901234,
1110
+ 0,
1111
+ 0.6214354801701968,
1112
+ 0.3005759183123998
1113
+ ]
1114
+ },
1115
+ {
1116
+ "name": "GoPro Hero8 Black",
1117
+ "score": 91,
1118
+ "image": "/images/WEBP/action-camera/gopro-hero8-black.front.medium2x.1582222904797.webp",
1119
+ "propGroups": [
1120
+ "Design",
1121
+ "Features",
1122
+ "Battery",
1123
+ "Audio",
1124
+ "Optics",
1125
+ "Videography",
1126
+ "Miscellaneous"
1127
+ ],
1128
+ "propScore": [
1129
+ 0.702687508514887,
1130
+ 1,
1131
+ 0.7924382716049383,
1132
+ 0.7499999999999999,
1133
+ 0.8428150021070374,
1134
+ 0.8082616044074319
1135
+ ]
1136
+ },
1137
+ {
1138
+ "name": "GoPro Hero7 White",
1139
+ "score": 64,
1140
+ "image": "/images/WEBP/action-camera/gopro-hero7-white.front.medium2x.1576684641045.webp",
1141
+ "propGroups": [
1142
+ "Design",
1143
+ "Features",
1144
+ "Battery",
1145
+ "Audio",
1146
+ "Optics",
1147
+ "Videography",
1148
+ "Miscellaneous"
1149
+ ],
1150
+ "propScore": [
1151
+ 0.6456101457362522,
1152
+ 0.6631578947368421,
1153
+ 0.5424382716049383,
1154
+ 0.0625,
1155
+ 0.7474188790560471,
1156
+ 0.5656165307756895
1157
+ ]
1158
+ },
1159
+ {
1160
+ "name": "GoPro Hero7 Silver",
1161
+ "score": 68,
1162
+ "image": "/images/WEBP/action-camera/gopro-hero7-silver.front.medium2x.1576684641045.webp",
1163
+ "propGroups": [
1164
+ "Design",
1165
+ "Features",
1166
+ "Battery",
1167
+ "Audio",
1168
+ "Optics",
1169
+ "Videography",
1170
+ "Miscellaneous"
1171
+ ],
1172
+ "propScore": [
1173
+ 0.6452865184473852,
1174
+ 0.6631578947368421,
1175
+ 0.5424382716049383,
1176
+ 0.0625,
1177
+ 0.7474188790560471,
1178
+ 0.5684761283269277
1179
+ ]
1180
+ },
1181
+ {
1182
+ "name": "GoPro Hero7 Black",
1183
+ "score": 87,
1184
+ "image": "/images/WEBP/action-camera/gopro-hero7-black.front.medium2x.1576684641045.webp",
1185
+ "propGroups": [
1186
+ "Design",
1187
+ "Features",
1188
+ "Battery",
1189
+ "Audio",
1190
+ "Optics",
1191
+ "Videography",
1192
+ "Miscellaneous"
1193
+ ],
1194
+ "propScore": [
1195
+ 0.6990895552215334,
1196
+ 0.8526315789473683,
1197
+ 0.7924382716049383,
1198
+ 0.7499999999999999,
1199
+ 0.7503687315634217,
1200
+ 0.8289978789934296
1201
+ ]
1202
+ },
1203
+ {
1204
+ "name": "GoPro Hero9 Black",
1205
+ "score": 90,
1206
+ "image": "/images/WEBP/action-camera/gopro-hero9-black.front.medium2x.1604346869566.webp",
1207
+ "propGroups": [
1208
+ "Design",
1209
+ "Features",
1210
+ "Battery",
1211
+ "Audio",
1212
+ "Optics",
1213
+ "Videography"
1214
+ ],
1215
+ "propScore": [
1216
+ 0.8810288612038397,
1217
+ 0.8526315789473683,
1218
+ 0.8117283950617284,
1219
+ 0.37499999999999994,
1220
+ 0.7703374189579291,
1221
+ 0.9194020762851778
1222
+ ]
1223
+ },
1224
+ {
1225
+ "name": "GoXtreme Black Hawk 4K",
1226
+ "score": 50,
1227
+ "image": "/images/WEBP/action-camera/goxtreme-black-hawk-4k.front.medium2x.1624459343844.webp",
1228
+ "propGroups": [
1229
+ "Design",
1230
+ "Features",
1231
+ "Battery",
1232
+ "Audio",
1233
+ "Optics",
1234
+ "Videography",
1235
+ "Miscellaneous"
1236
+ ],
1237
+ "propScore": [
1238
+ 0.6092774228130298,
1239
+ 0.47368421052631576,
1240
+ 0.7858796296296297,
1241
+ 0,
1242
+ 0.1355246523388116,
1243
+ 0.6261346253189163
1244
+ ]
1245
+ },
1246
+ {
1247
+ "name": "GoXtreme Black Hawk Plus 4K",
1248
+ "score": 36,
1249
+ "image": "/images/WEBP/action-camera/goxtreme-black-hawk-plus-4k.front.medium2x.1623095664050.webp",
1250
+ "propGroups": [
1251
+ "Design",
1252
+ "Features",
1253
+ "Battery",
1254
+ "Audio",
1255
+ "Optics",
1256
+ "Videography",
1257
+ "Miscellaneous"
1258
+ ],
1259
+ "propScore": [
1260
+ 0.580931085192823,
1261
+ 0.36,
1262
+ 0.7858796296296297,
1263
+ 0,
1264
+ 0.12143538696285754,
1265
+ 0.39748046535672976
1266
+ ]
1267
+ },
1268
+ {
1269
+ "name": "GoPro Max",
1270
+ "score": 87,
1271
+ "image": "/images/WEBP/action-camera/gopro-max.front.medium2x.1604343573135.webp",
1272
+ "propGroups": [
1273
+ "Design",
1274
+ "Features",
1275
+ "Battery",
1276
+ "Audio",
1277
+ "Optics",
1278
+ "Videography"
1279
+ ],
1280
+ "propScore": [
1281
+ 0.7105742695341504,
1282
+ 0.8999999999999999,
1283
+ 0.8070987654320987,
1284
+ 0.625,
1285
+ 0.6336783766872262,
1286
+ 0.7860511629680793
1287
+ ]
1288
+ },
1289
+ {
1290
+ "name": "GoXtreme Phantom 4K",
1291
+ "score": 53,
1292
+ "image": "/images/WEBP/action-camera/goxtreme-phantom-4k.front.medium2x.1624467355556.webp",
1293
+ "propGroups": [
1294
+ "Design",
1295
+ "Features",
1296
+ "Battery",
1297
+ "Audio",
1298
+ "Optics",
1299
+ "Videography",
1300
+ "Miscellaneous"
1301
+ ],
1302
+ "propScore": [
1303
+ 0.480541572413763,
1304
+ 0.7492822966507177,
1305
+ 0.7908950617283951,
1306
+ 0.625,
1307
+ 0.2528445006321112,
1308
+ 0.6835100799298587
1309
+ ]
1310
+ },
1311
+ {
1312
+ "name": "GoXtreme Manta",
1313
+ "score": 43,
1314
+ "image": "/images/WEBP/action-camera/goxtreme-manta.front.medium2x.1623757488923.webp",
1315
+ "propGroups": [
1316
+ "Design",
1317
+ "Features",
1318
+ "Battery",
1319
+ "Audio",
1320
+ "Optics",
1321
+ "Videography"
1322
+ ],
1323
+ "propScore": [
1324
+ 0.6657009863299875,
1325
+ 0.5,
1326
+ 0.6803539799614032,
1327
+ 0,
1328
+ 0.016856300042140747,
1329
+ 0.31322010161404457
1330
+ ]
1331
+ },
1332
+ {
1333
+ "name": "GoXtreme Impulse",
1334
+ "score": 36,
1335
+ "image": "/images/WEBP/action-camera/goxtreme-impulse.front.medium2x.1623756266841.webp",
1336
+ "propGroups": [
1337
+ "Design",
1338
+ "Features",
1339
+ "Battery",
1340
+ "Audio",
1341
+ "Optics",
1342
+ "Videography",
1343
+ "Miscellaneous"
1344
+ ],
1345
+ "propScore": [
1346
+ 0.6730980250662486,
1347
+ 0.3789473684210526,
1348
+ 0.67881077008486,
1349
+ 0,
1350
+ 0.016856300042140747,
1351
+ 0.21535831874944386
1352
+ ]
1353
+ },
1354
+ {
1355
+ "name": "GoXtreme Enduro",
1356
+ "score": 28,
1357
+ "image": "/images/WEBP/action-camera/goxtreme-enduro.front.medium2x.1623715259201.webp",
1358
+ "propGroups": [
1359
+ "Design",
1360
+ "Features",
1361
+ "Battery",
1362
+ "Audio",
1363
+ "Optics",
1364
+ "Videography",
1365
+ "Miscellaneous"
1366
+ ],
1367
+ "propScore": [
1368
+ 0.5379478515395211,
1369
+ 0.1894736842105263,
1370
+ 0.7858796296296297,
1371
+ 0,
1372
+ 0.0033712600084281493,
1373
+ 0.31322010161404457
1374
+ ]
1375
+ },
1376
+ {
1377
+ "name": "GoXtreme Pioneer",
1378
+ "score": 39,
1379
+ "image": "/images/WEBP/action-camera/goxtreme-pioneer.front.medium2x.1623714471988.webp",
1380
+ "propGroups": [
1381
+ "Design",
1382
+ "Features",
1383
+ "Battery",
1384
+ "Audio",
1385
+ "Optics",
1386
+ "Videography"
1387
+ ],
1388
+ "propScore": [
1389
+ 0.5733926993793623,
1390
+ 0.3789473684210526,
1391
+ 0.7800925925925926,
1392
+ 0,
1393
+ 0.13485040033712598,
1394
+ 0.2678921018174422
1395
+ ]
1396
+ },
1397
+ {
1398
+ "name": "GoXtreme Vision Plus",
1399
+ "score": 37,
1400
+ "image": "/images/WEBP/action-camera/goxtreme-vision-plus.front.medium2x.1623759114814.webp",
1401
+ "propGroups": [
1402
+ "Design",
1403
+ "Features",
1404
+ "Battery",
1405
+ "Audio",
1406
+ "Optics",
1407
+ "Videography"
1408
+ ],
1409
+ "propScore": [
1410
+ 0.5363317775991432,
1411
+ 0.3789473684210526,
1412
+ 0.47881077008486006,
1413
+ 0,
1414
+ 0.01011378002528445,
1415
+ 0.41108188447864535
1416
+ ]
1417
+ },
1418
+ {
1419
+ "name": "GoXtreme Rebel",
1420
+ "score": 33,
1421
+ "image": "/images/WEBP/action-camera/goxtreme-rebel.front.medium2x.1623713333347.webp",
1422
+ "propGroups": [
1423
+ "Design",
1424
+ "Features",
1425
+ "Battery",
1426
+ "Audio",
1427
+ "Optics",
1428
+ "Videography",
1429
+ "Miscellaneous"
1430
+ ],
1431
+ "propScore": [
1432
+ 0.7000737774351232,
1433
+ 0.09473684210526315,
1434
+ 0.7800925925925926,
1435
+ 0,
1436
+ 0.02359882005899705,
1437
+ 0.16211502769173403
1438
+ ]
1439
+ },
1440
+ {
1441
+ "name": "GoXtreme Reef",
1442
+ "score": 35,
1443
+ "image": "/images/WEBP/action-camera/goxtreme-reef.front.medium2x.1623711605947.webp",
1444
+ "propGroups": [
1445
+ "Design",
1446
+ "Features",
1447
+ "Battery",
1448
+ "Audio",
1449
+ "Optics",
1450
+ "Videography",
1451
+ "Miscellaneous"
1452
+ ],
1453
+ "propScore": [
1454
+ 0.6071555640467791,
1455
+ 0.09473684210526315,
1456
+ 0.5165895061728395,
1457
+ 0,
1458
+ 0.2461019806152549,
1459
+ 0.16211502769173403
1460
+ ]
1461
+ },
1462
+ {
1463
+ "name": "GoXtreme Vision",
1464
+ "score": 30,
1465
+ "image": "/images/WEBP/action-camera/goxtreme-vision.front.medium2x.1623716860686.webp",
1466
+ "propGroups": [
1467
+ "Design",
1468
+ "Features",
1469
+ "Battery",
1470
+ "Audio",
1471
+ "Optics",
1472
+ "Videography",
1473
+ "Miscellaneous"
1474
+ ],
1475
+ "propScore": [
1476
+ 0.591805098928905,
1477
+ 0.28421052631578947,
1478
+ 0.7858796296296297,
1479
+ 0,
1480
+ 0.0033712600084281493,
1481
+ 0.3058596995802229
1482
+ ]
1483
+ },
1484
+ {
1485
+ "name": "Insta360 Go 2",
1486
+ "score": 42,
1487
+ "image": "/images/WEBP/action-camera/insta360-go-2.front.medium2x.1615345737509.webp",
1488
+ "propGroups": [
1489
+ "Design",
1490
+ "Features",
1491
+ "Battery",
1492
+ "Audio",
1493
+ "Optics",
1494
+ "Videography",
1495
+ "Miscellaneous"
1496
+ ],
1497
+ "propScore": [
1498
+ 0.41959686485827197,
1499
+ 0.5684210526315789,
1500
+ 0.5034722222222222,
1501
+ 0,
1502
+ 0.5572642728250111,
1503
+ 0.4338272787239061
1504
+ ]
1505
+ },
1506
+ {
1507
+ "name": "Graava Action Camera",
1508
+ "score": 27,
1509
+ "image": "/images/WEBP/action-camera/graava-action-camera.front.medium2x.1576684641045.webp",
1510
+ "propGroups": [
1511
+ "Design",
1512
+ "Features",
1513
+ "Battery",
1514
+ "Audio",
1515
+ "Optics",
1516
+ "Videography"
1517
+ ],
1518
+ "propScore": [
1519
+ 0.539968191352155,
1520
+ 0.5,
1521
+ 0.5493827160493827,
1522
+ 0,
1523
+ 0.11209439528023597,
1524
+ 0.06083150416753182
1525
+ ]
1526
+ },
1527
+ {
1528
+ "name": "HTC Re",
1529
+ "score": 51,
1530
+ "image": "/images/WEBP/action-camera/htc-re.front.medium2x.1576684641045.webp",
1531
+ "propGroups": [
1532
+ "Design",
1533
+ "Features",
1534
+ "Battery",
1535
+ "Audio",
1536
+ "Optics",
1537
+ "Videography",
1538
+ "Miscellaneous"
1539
+ ],
1540
+ "propScore": [
1541
+ 0.49097921620013,
1542
+ 0.31578947368421056,
1543
+ 0.5270061728395061,
1544
+ 0,
1545
+ 0.5124670221724995,
1546
+ 0.26202985495209563
1547
+ ]
1548
+ },
1549
+ {
1550
+ "name": "Insta360 One RS 1\" 360 Edition",
1551
+ "score": 93,
1552
+ "image": "/images/WEBP/action-camera/insta360-one-rs-1-360-edition.front.medium2x.1657917420217.webp",
1553
+ "propGroups": [
1554
+ "Design",
1555
+ "Features",
1556
+ "Battery",
1557
+ "Audio",
1558
+ "Optics",
1559
+ "Videography"
1560
+ ],
1561
+ "propScore": [
1562
+ 0.6628116746927007,
1563
+ 0.7499999999999999,
1564
+ 0.6555472942607132,
1565
+ 0,
1566
+ 0.5519799767587377,
1567
+ 0.9120169836985309
1568
+ ]
1569
+ },
1570
+ {
1571
+ "name": "Insta360 One R 4K Edition",
1572
+ "score": 79,
1573
+ "image": "/images/WEBP/action-camera/insta360-one-r-4k-edition.front.medium2x.1603943744107.webp",
1574
+ "propGroups": [
1575
+ "Design",
1576
+ "Features",
1577
+ "Battery",
1578
+ "Audio",
1579
+ "Optics",
1580
+ "Videography",
1581
+ "Miscellaneous"
1582
+ ],
1583
+ "propScore": [
1584
+ 0.7124617157543419,
1585
+ 0.7578947368421052,
1586
+ 0.6919031600003525,
1587
+ 0,
1588
+ 0.83696938147745,
1589
+ 0.9150108831833983
1590
+ ]
1591
+ },
1592
+ {
1593
+ "name": "Insta360 Go",
1594
+ "score": 34,
1595
+ "image": "/images/WEBP/action-camera/insta360-go.front.medium2x.1603945526362.webp",
1596
+ "propGroups": [
1597
+ "Design",
1598
+ "Features",
1599
+ "Battery",
1600
+ "Audio",
1601
+ "Optics",
1602
+ "Videography",
1603
+ "Miscellaneous"
1604
+ ],
1605
+ "propScore": [
1606
+ 0.47611054033658146,
1607
+ 0.3789473684210526,
1608
+ 0.5020576131687243,
1609
+ 0,
1610
+ 0.09983016000715113,
1611
+ 0.34362783717632
1612
+ ]
1613
+ },
1614
+ {
1615
+ "name": "Insta360 One R 1-Inch Edition",
1616
+ "score": 63,
1617
+ "image": "/images/WEBP/action-camera/insta360-one-r-1-inch-edition.front.medium2x.1603929175333.webp",
1618
+ "propGroups": [
1619
+ "Design",
1620
+ "Features",
1621
+ "Battery",
1622
+ "Audio",
1623
+ "Optics",
1624
+ "Videography"
1625
+ ],
1626
+ "propScore": [
1627
+ 0.5852498696028031,
1628
+ 0.7,
1629
+ 0.7912808641975309,
1630
+ 0,
1631
+ 0.604451595602038,
1632
+ 0.8747388406761276
1633
+ ]
1634
+ },
1635
+ {
1636
+ "name": "Insta360 One RS (360 Lens)",
1637
+ "score": 71,
1638
+ "image": "/images/WEBP/action-camera/insta360-one-rs-360-lens.front.medium2x.1651507477060.webp",
1639
+ "propGroups": [
1640
+ "Design",
1641
+ "Features",
1642
+ "Battery",
1643
+ "Audio",
1644
+ "Optics",
1645
+ "Videography",
1646
+ "Miscellaneous"
1647
+ ],
1648
+ "propScore": [
1649
+ 0.6511799778306027,
1650
+ 0.6285714285714286,
1651
+ 0.5378622302411857,
1652
+ 0.41666666666666663,
1653
+ 0.8251068729985959,
1654
+ 0.47899390230983385
1655
+ ]
1656
+ },
1657
+ {
1658
+ "name": "Insta360 One RS (1\" Wide Angle Lens)",
1659
+ "score": 66,
1660
+ "image": "/images/WEBP/action-camera/insta360-one-rs-1-wide-angle-lens.front.medium2x.1651524825942.webp",
1661
+ "propGroups": [
1662
+ "Design",
1663
+ "Features",
1664
+ "Battery",
1665
+ "Audio",
1666
+ "Optics",
1667
+ "Videography",
1668
+ "Miscellaneous"
1669
+ ],
1670
+ "propScore": [
1671
+ 0.6304805777289847,
1672
+ 0.6285714285714286,
1673
+ 0.5389328940527489,
1674
+ 0.41666666666666663,
1675
+ 0.772104175539886,
1676
+ 0.5548891165341051
1677
+ ]
1678
+ },
1679
+ {
1680
+ "name": "Insta360 One RS (4K Boost Lens)",
1681
+ "score": 70,
1682
+ "image": "/images/WEBP/action-camera/insta360-one-rs-4k-boost-lens.front.medium2x.1651504924238.webp",
1683
+ "propGroups": [
1684
+ "Design",
1685
+ "Features",
1686
+ "Battery",
1687
+ "Audio",
1688
+ "Optics",
1689
+ "Videography",
1690
+ "Miscellaneous"
1691
+ ],
1692
+ "propScore": [
1693
+ 0.6621169473806796,
1694
+ 0.6285714285714286,
1695
+ 0.5335795749949331,
1696
+ 0.41666666666666663,
1697
+ 0.8195857586799804,
1698
+ 0.5545562236601304
1699
+ ]
1700
+ },
1701
+ {
1702
+ "name": "Insta360 One X2",
1703
+ "score": 83,
1704
+ "image": "/images/WEBP/action-camera/insta360-one-x2.front.medium2x.1603921817350.webp",
1705
+ "propGroups": [
1706
+ "Design",
1707
+ "Features",
1708
+ "Battery",
1709
+ "Audio",
1710
+ "Optics",
1711
+ "Videography",
1712
+ "Miscellaneous"
1713
+ ],
1714
+ "propScore": [
1715
+ 0.6483756581623493,
1716
+ 0.858,
1717
+ 0.7078595756117764,
1718
+ 0.5,
1719
+ 0.8201126307320996,
1720
+ 0.8093613739507014
1721
+ ]
1722
+ },
1723
+ {
1724
+ "name": "Insta360 X3",
1725
+ "score": 95,
1726
+ "image": "/images/WEBP/action-camera/insta360-x3.front.medium2x.1663017448690.webp",
1727
+ "propGroups": [
1728
+ "Design",
1729
+ "Features",
1730
+ "Battery",
1731
+ "Audio",
1732
+ "Optics",
1733
+ "Videography",
1734
+ "Miscellaneous"
1735
+ ],
1736
+ "propScore": [
1737
+ 0.5675398231921217,
1738
+ 0.9473684210526315,
1739
+ 0.17961244613635763,
1740
+ 0.5,
1741
+ 0.6557611513363726,
1742
+ 1
1743
+ ]
1744
+ },
1745
+ {
1746
+ "name": "iON Air Pro 3",
1747
+ "score": 41,
1748
+ "image": "/images/WEBP/action-camera/ion-air-pro-3.front.medium2x.1576684641045.webp",
1749
+ "propGroups": [
1750
+ "Design",
1751
+ "Features",
1752
+ "Battery",
1753
+ "Audio",
1754
+ "Optics",
1755
+ "Videography"
1756
+ ],
1757
+ "propScore": [
1758
+ 0.5309077478196266,
1759
+ 0.19999999999999998,
1760
+ 0.5416666666666667,
1761
+ 0.3125,
1762
+ 0.07580227049253598,
1763
+ 0.30646216381133184
1764
+ ]
1765
+ },
1766
+ {
1767
+ "name": "iON Air Pro 2 HD",
1768
+ "score": 41,
1769
+ "image": "/images/WEBP/action-camera/ion-air-pro-2-hd.front.medium2x.1576684641045.webp",
1770
+ "propGroups": [
1771
+ "Design",
1772
+ "Features",
1773
+ "Battery",
1774
+ "Audio",
1775
+ "Optics",
1776
+ "Videography"
1777
+ ],
1778
+ "propScore": [
1779
+ 0.47490711482898895,
1780
+ 0.3789473684210526,
1781
+ 0.3333333333333333,
1782
+ 0.625,
1783
+ 0.2562157606405394,
1784
+ 0.21544386226593387
1785
+ ]
1786
+ },
1787
+ {
1788
+ "name": "iON Air Pro WiFi",
1789
+ "score": 29,
1790
+ "image": "/images/WEBP/action-camera/ion-air-pro-wifi.left.medium2x.1576684641045.webp",
1791
+ "propGroups": [
1792
+ "Design",
1793
+ "Features",
1794
+ "Battery",
1795
+ "Audio",
1796
+ "Optics",
1797
+ "Videography"
1798
+ ],
1799
+ "propScore": [
1800
+ 0.37616663081272744,
1801
+ 0.1894736842105263,
1802
+ 0.5378086419753086,
1803
+ 0,
1804
+ 0.24062011210286008,
1805
+ 0.25485877938196033
1806
+ ]
1807
+ },
1808
+ {
1809
+ "name": "Moza Moin",
1810
+ "score": 68,
1811
+ "image": "/images/WEBP/action-camera/moza-moin.front.medium2x.1618334035496.webp",
1812
+ "propGroups": [
1813
+ "Design",
1814
+ "Features",
1815
+ "Battery",
1816
+ "Audio",
1817
+ "Optics",
1818
+ "Videography",
1819
+ "Miscellaneous"
1820
+ ],
1821
+ "propScore": [
1822
+ 0.5435914989083831,
1823
+ 0.5599999999999999,
1824
+ 0.5292706488310819,
1825
+ 0.37499999999999994,
1826
+ 0.9484958907134854,
1827
+ 0.7965213715777296
1828
+ ]
1829
+ },
1830
+ {
1831
+ "name": "Mofily YoCam",
1832
+ "score": 47,
1833
+ "image": "/images/WEBP/action-camera/mofily-yocam.front.medium2x.1576684641045.webp",
1834
+ "propGroups": [
1835
+ "Design",
1836
+ "Features",
1837
+ "Battery",
1838
+ "Audio",
1839
+ "Optics",
1840
+ "Videography"
1841
+ ],
1842
+ "propScore": [
1843
+ 0.6521750568382326,
1844
+ 0.39999999999999997,
1845
+ 0.5223765432098766,
1846
+ 0,
1847
+ 0.439939215160454,
1848
+ 0.26169281607762307
1849
+ ]
1850
+ },
1851
+ {
1852
+ "name": "Panasonic HM-TA20",
1853
+ "score": 32,
1854
+ "image": "/images/WEBP/action-camera/panasonic-hm-ta20.front.medium2x.1576684641045.webp",
1855
+ "propGroups": [
1856
+ "Design",
1857
+ "Features",
1858
+ "Battery",
1859
+ "Audio",
1860
+ "Optics",
1861
+ "Videography",
1862
+ "Miscellaneous"
1863
+ ],
1864
+ "propScore": [
1865
+ 0.4689051222769948,
1866
+ 0.09473684210526315,
1867
+ 0.6666666666666666,
1868
+ 1,
1869
+ 0.22292888261564672,
1870
+ 0.1522162247327614
1871
+ ]
1872
+ },
1873
+ {
1874
+ "name": "JVC GC-XA2 Adixxion",
1875
+ "score": 44,
1876
+ "image": "/images/WEBP/action-camera/jvc-gc-xa2-adixxion.front.medium2x.1576684641045.webp",
1877
+ "propGroups": [
1878
+ "Design",
1879
+ "Features",
1880
+ "Battery",
1881
+ "Audio",
1882
+ "Optics",
1883
+ "Videography"
1884
+ ],
1885
+ "propScore": [
1886
+ 0.547062929029814,
1887
+ 0.19999999999999998,
1888
+ 0.6666666666666666,
1889
+ 0,
1890
+ 0.5087154733172432,
1891
+ 0.28488855344222713
1892
+ ]
1893
+ },
1894
+ {
1895
+ "name": "Ricoh Theta M15",
1896
+ "score": 25,
1897
+ "image": "/images/WEBP/action-camera/ricoh-theta-m15.front.medium2x.1617098305436.webp",
1898
+ "propGroups": [
1899
+ "Design",
1900
+ "Features",
1901
+ "Battery",
1902
+ "Audio",
1903
+ "Optics",
1904
+ "Videography",
1905
+ "Miscellaneous"
1906
+ ],
1907
+ "propScore": [
1908
+ 0.29550634723402325,
1909
+ 0.36,
1910
+ 0.5358672376873661,
1911
+ 0,
1912
+ 0.7658879349630433,
1913
+ 0.23735169407461998
1914
+ ]
1915
+ },
1916
+ {
1917
+ "name": "Polaroid Cube",
1918
+ "score": 27,
1919
+ "image": "/images/WEBP/action-camera/polaroid-cube.front.medium2x.1576684641045.webp",
1920
+ "propGroups": [
1921
+ "Design",
1922
+ "Features",
1923
+ "Battery",
1924
+ "Audio",
1925
+ "Optics",
1926
+ "Videography"
1927
+ ],
1928
+ "propScore": [
1929
+ 0.569374205025601,
1930
+ 0,
1931
+ 0.3333333333333333,
1932
+ 0,
1933
+ 0.12473662031184155,
1934
+ 0.05877845977177096
1935
+ ]
1936
+ },
1937
+ {
1938
+ "name": "Polaroid XS100 Extreme Edition",
1939
+ "score": 62,
1940
+ "image": "/images/WEBP/action-camera/polaroid-xs100-extreme-edition.front.medium2x.1576684641045.webp",
1941
+ "propGroups": [
1942
+ "Design",
1943
+ "Features",
1944
+ "Battery",
1945
+ "Audio",
1946
+ "Optics",
1947
+ "Videography",
1948
+ "Miscellaneous"
1949
+ ],
1950
+ "propScore": [
1951
+ 0.5698166822216332,
1952
+ 0.28421052631578947,
1953
+ 0.7916666666666667,
1954
+ 0.3125,
1955
+ 0.5053007955662823,
1956
+ 0.270242032535139
1957
+ ]
1958
+ },
1959
+ {
1960
+ "name": "Panasonic HX-A1",
1961
+ "score": 25,
1962
+ "image": "/images/WEBP/action-camera/panasonic-hx-a1.front.medium2x.1576684641045.webp",
1963
+ "propGroups": [
1964
+ "Design",
1965
+ "Features",
1966
+ "Battery",
1967
+ "Audio",
1968
+ "Optics",
1969
+ "Videography",
1970
+ "Miscellaneous"
1971
+ ],
1972
+ "propScore": [
1973
+ 0.4743735060891832,
1974
+ 0.09,
1975
+ 0.6666666666666666,
1976
+ 0,
1977
+ 0.06110807186913382,
1978
+ 0.16553676835133546
1979
+ ]
1980
+ },
1981
+ {
1982
+ "name": "Ricoh Theta Z1",
1983
+ "score": 42,
1984
+ "image": "/images/WEBP/action-camera/ricoh-theta-z1.front.medium2x.1617093779281.webp",
1985
+ "propGroups": [
1986
+ "Design",
1987
+ "Features",
1988
+ "Battery",
1989
+ "Audio",
1990
+ "Optics",
1991
+ "Videography",
1992
+ "Miscellaneous"
1993
+ ],
1994
+ "propScore": [
1995
+ 0.35624692695430465,
1996
+ 0.7236363636363636,
1997
+ 0.5358672376873661,
1998
+ 0.5,
1999
+ 0.8248921569736659,
2000
+ 0.29538653823855376
2001
+ ]
2002
+ },
2003
+ {
2004
+ "name": "Ricoh WG-M2",
2005
+ "score": 48,
2006
+ "image": "/images/WEBP/action-camera/ricoh-wg-m2.front.medium2x.1576684641045.webp",
2007
+ "propGroups": [
2008
+ "Design",
2009
+ "Features",
2010
+ "Battery",
2011
+ "Audio",
2012
+ "Optics",
2013
+ "Videography",
2014
+ "Miscellaneous"
2015
+ ],
2016
+ "propScore": [
2017
+ 0.4599868702577577,
2018
+ 0.44999999999999996,
2019
+ 0.7993827160493827,
2020
+ 0.0625,
2021
+ 0.5807695044160333,
2022
+ 0.25995689706487995
2023
+ ]
2024
+ },
2025
+ {
2026
+ "name": "Ricoh Theta SC",
2027
+ "score": 40,
2028
+ "image": "/images/WEBP/action-camera/ricoh-theta-sc.front.medium2x.1617095817206.webp",
2029
+ "propGroups": [
2030
+ "Design",
2031
+ "Features",
2032
+ "Battery",
2033
+ "Audio",
2034
+ "Optics",
2035
+ "Videography",
2036
+ "Miscellaneous"
2037
+ ],
2038
+ "propScore": [
2039
+ 0.29774411960533526,
2040
+ 0.57,
2041
+ 0.6666666666666666,
2042
+ 0,
2043
+ 0.9414140995455371,
2044
+ 0.3352154631956303
2045
+ ]
2046
+ },
2047
+ {
2048
+ "name": "Ricoh Theta SC2",
2049
+ "score": 34,
2050
+ "image": "/images/WEBP/action-camera/ricoh-theta-sc2.front.medium2x.1617096783683.webp",
2051
+ "propGroups": [
2052
+ "Design",
2053
+ "Features",
2054
+ "Battery",
2055
+ "Audio",
2056
+ "Optics",
2057
+ "Videography",
2058
+ "Miscellaneous"
2059
+ ],
2060
+ "propScore": [
2061
+ 0.31772648615232646,
2062
+ 0.36,
2063
+ 0.5455032119914347,
2064
+ 0,
2065
+ 0.9244082119126366,
2066
+ 0.17215246070471615
2067
+ ]
2068
+ },
2069
+ {
2070
+ "name": "Rollei Bullet 4S",
2071
+ "score": 55,
2072
+ "image": "/images/WEBP/action-camera/rollei-bullet-4s.front.medium2x.1576684641045.webp",
2073
+ "propGroups": [
2074
+ "Design",
2075
+ "Features",
2076
+ "Battery",
2077
+ "Audio",
2078
+ "Optics",
2079
+ "Videography",
2080
+ "Miscellaneous"
2081
+ ],
2082
+ "propScore": [
2083
+ 0.6658720879038642,
2084
+ 0.3789473684210526,
2085
+ 1,
2086
+ 0.3125,
2087
+ 0.179637078752123,
2088
+ 0.17409112000033902
2089
+ ]
2090
+ },
2091
+ {
2092
+ "name": "Rollei Racy Full HD",
2093
+ "score": 39,
2094
+ "image": "/images/WEBP/action-camera/rollei-racy-full-hd.front.medium2x.1576684641045.webp",
2095
+ "propGroups": [
2096
+ "Design",
2097
+ "Features",
2098
+ "Battery",
2099
+ "Audio",
2100
+ "Optics",
2101
+ "Videography"
2102
+ ],
2103
+ "propScore": [
2104
+ 0.5878186416686911,
2105
+ 0.09473684210526315,
2106
+ 0.7789351851851851,
2107
+ 0,
2108
+ 0.17091266648788772,
2109
+ 0.2494541838785899
2110
+ ]
2111
+ },
2112
+ {
2113
+ "name": "Rollei Actioncam 5S WiFi Motorbike",
2114
+ "score": 61,
2115
+ "image": "/images/WEBP/action-camera/rollei-actioncam-5s-wifi-motorbike.front.medium2x.1576684641045.webp",
2116
+ "propGroups": [
2117
+ "Design",
2118
+ "Features",
2119
+ "Battery",
2120
+ "Audio",
2121
+ "Optics",
2122
+ "Videography"
2123
+ ],
2124
+ "propScore": [
2125
+ 0.5868864458261969,
2126
+ 0.5,
2127
+ 0.7839506172839505,
2128
+ 0.41666666666666663,
2129
+ 0.299204433717708,
2130
+ 0.346771997715254
2131
+ ]
2132
+ },
2133
+ {
2134
+ "name": "Rollei Youngstar",
2135
+ "score": 28,
2136
+ "image": "/images/WEBP/action-camera/rollei-youngstar.front.medium2x.1576684641045.webp",
2137
+ "propGroups": [
2138
+ "Design",
2139
+ "Features",
2140
+ "Battery",
2141
+ "Audio",
2142
+ "Optics",
2143
+ "Videography"
2144
+ ],
2145
+ "propScore": [
2146
+ 0.605385082806979,
2147
+ 0,
2148
+ 0.5123456790123457,
2149
+ 0,
2150
+ 0.2900509519978546,
2151
+ 0.14607813433563144
2152
+ ]
2153
+ },
2154
+ {
2155
+ "name": "Shimano CM-1000",
2156
+ "score": 44,
2157
+ "image": "/images/WEBP/action-camera/shimano-cm-1000.front.medium2x.1576684641045.webp",
2158
+ "propGroups": [
2159
+ "Design",
2160
+ "Features",
2161
+ "Battery",
2162
+ "Audio",
2163
+ "Optics",
2164
+ "Videography",
2165
+ "Miscellaneous"
2166
+ ],
2167
+ "propScore": [
2168
+ 0.5698240281424033,
2169
+ 0.36,
2170
+ 0.5320216049382716,
2171
+ 0.41666666666666663,
2172
+ 0.5127379994636632,
2173
+ 0.04545791615319691
2174
+ ]
2175
+ },
2176
+ {
2177
+ "name": "Sjcam A10",
2178
+ "score": 38,
2179
+ "image": "/images/WEBP/action-camera/sjcam-a10.front.medium2x.1607549786058.webp",
2180
+ "propGroups": [
2181
+ "Design",
2182
+ "Features",
2183
+ "Battery",
2184
+ "Audio",
2185
+ "Optics",
2186
+ "Videography",
2187
+ "Miscellaneous"
2188
+ ],
2189
+ "propScore": [
2190
+ 0.5198093359136217,
2191
+ 0.47368421052631576,
2192
+ 0.847608024691358,
2193
+ 0.37499999999999994,
2194
+ 0.20094752838115668,
2195
+ 0.25997681055633476
2196
+ ]
2197
+ },
2198
+ {
2199
+ "name": "Sjcam C100",
2200
+ "score": 10,
2201
+ "image": "/images/WEBP/action-camera/sjcam-c100.front.medium2x.1607884228098.webp",
2202
+ "propGroups": [
2203
+ "Design",
2204
+ "Features",
2205
+ "Battery",
2206
+ "Audio",
2207
+ "Optics",
2208
+ "Videography"
2209
+ ],
2210
+ "propScore": [
2211
+ 0.44954649518417444,
2212
+ 0.28421052631578947,
2213
+ 0.6666666666666666,
2214
+ 0,
2215
+ 0.2528445006321112,
2216
+ 0.04545791615319691
2217
+ ]
2218
+ },
2219
+ {
2220
+ "name": "Sjcam A20",
2221
+ "score": 37,
2222
+ "image": "/images/WEBP/action-camera/sjcam-a20.front.medium2x.1607599480911.webp",
2223
+ "propGroups": [
2224
+ "Design",
2225
+ "Features",
2226
+ "Battery",
2227
+ "Audio",
2228
+ "Optics",
2229
+ "Videography"
2230
+ ],
2231
+ "propScore": [
2232
+ 0.5600770540616453,
2233
+ 0.47368421052631576,
2234
+ 0.847608024691358,
2235
+ 0.37499999999999994,
2236
+ 0.09711272012156967,
2237
+ 0.4261194282832821
2238
+ ]
2239
+ },
2240
+ {
2241
+ "name": "Sjcam FunCam",
2242
+ "score": 10,
2243
+ "image": "/images/WEBP/action-camera/sjcam-funcam.front.medium2x.1607723419457.webp",
2244
+ "propGroups": [
2245
+ "Design",
2246
+ "Features",
2247
+ "Battery",
2248
+ "Audio",
2249
+ "Optics",
2250
+ "Videography",
2251
+ "Miscellaneous"
2252
+ ],
2253
+ "propScore": [
2254
+ 0.32564692625835423,
2255
+ 0,
2256
+ 0.5262345679012346,
2257
+ 0,
2258
+ 0.12305099030762746,
2259
+ 0.13658783597679572
2260
+ ]
2261
+ },
2262
+ {
2263
+ "name": "Sjcam SJ10X Pro Action",
2264
+ "score": 34,
2265
+ "image": "/images/WEBP/action-camera/sjcam-sj10x-pro-action.front.medium2x.1607614686640.webp",
2266
+ "propGroups": [
2267
+ "Design",
2268
+ "Features",
2269
+ "Battery",
2270
+ "Audio",
2271
+ "Optics",
2272
+ "Videography"
2273
+ ],
2274
+ "propScore": [
2275
+ 0.48422865451996444,
2276
+ 0.28421052631578947,
2277
+ 0.7955246913580247,
2278
+ 0.3125,
2279
+ 0.016856300042140747,
2280
+ 0.5558990067417826
2281
+ ]
2282
+ },
2283
+ {
2284
+ "name": "Sjcam SJ10 Pro Action",
2285
+ "score": 52,
2286
+ "image": "/images/WEBP/action-camera/sjcam-sj10-pro-action.front.medium2x.1607610166891.webp",
2287
+ "propGroups": [
2288
+ "Design",
2289
+ "Features",
2290
+ "Battery",
2291
+ "Audio",
2292
+ "Optics",
2293
+ "Videography"
2294
+ ],
2295
+ "propScore": [
2296
+ 0.6890920879788834,
2297
+ 0.6299999999999999,
2298
+ 0.7955246913580247,
2299
+ 0.6875,
2300
+ 0.016856300042140747,
2301
+ 0.5615378340699434
2302
+ ]
2303
+ },
2304
+ {
2305
+ "name": "Sjcam M20",
2306
+ "score": 38,
2307
+ "image": "/images/WEBP/action-camera/sjcam-m20.front.medium2x.1607605818438.webp",
2308
+ "propGroups": [
2309
+ "Design",
2310
+ "Features",
2311
+ "Battery",
2312
+ "Audio",
2313
+ "Optics",
2314
+ "Videography"
2315
+ ],
2316
+ "propScore": [
2317
+ 0.4807082233895456,
2318
+ 0.5,
2319
+ 0.7800925925925926,
2320
+ 0,
2321
+ 0.3775811209439528,
2322
+ 0.5949179205986669
2323
+ ]
2324
+ },
2325
+ {
2326
+ "name": "Sjcam SJ5000X Elite",
2327
+ "score": 43,
2328
+ "image": "/images/WEBP/action-camera/sjcam-sj5000x-elite.front.medium2x.1607618260276.webp",
2329
+ "propGroups": [
2330
+ "Design",
2331
+ "Features",
2332
+ "Battery",
2333
+ "Audio",
2334
+ "Optics",
2335
+ "Videography"
2336
+ ],
2337
+ "propScore": [
2338
+ 0.5613461088379221,
2339
+ 0.3789473684210526,
2340
+ 0.7800925925925926,
2341
+ 0,
2342
+ 0.25351875263379686,
2343
+ 0.5962866168625075
2344
+ ]
2345
+ },
2346
+ {
2347
+ "name": "Sjcam SJ8 Air",
2348
+ "score": 31,
2349
+ "image": "/images/WEBP/action-camera/sjcam-sj8-air.front.medium2x.1608562860887.webp",
2350
+ "propGroups": [
2351
+ "Design",
2352
+ "Features",
2353
+ "Battery",
2354
+ "Audio",
2355
+ "Optics",
2356
+ "Videography"
2357
+ ],
2358
+ "propScore": [
2359
+ 0.5647548784035304,
2360
+ 0.3,
2361
+ 0.7916666666666667,
2362
+ 0.0625,
2363
+ 0.08933798158576917,
2364
+ 0.48186818372503415
2365
+ ]
2366
+ },
2367
+ {
2368
+ "name": "Sjcam SJ6 Legend",
2369
+ "score": 42,
2370
+ "image": "/images/WEBP/action-camera/sjcam-sj6-legend.front.medium2x.1607620793810.webp",
2371
+ "propGroups": [
2372
+ "Design",
2373
+ "Features",
2374
+ "Battery",
2375
+ "Audio",
2376
+ "Optics",
2377
+ "Videography"
2378
+ ],
2379
+ "propScore": [
2380
+ 0.7259048657385848,
2381
+ 0.28421052631578947,
2382
+ 0.7858796296296297,
2383
+ 0.3125,
2384
+ 0.02359882005899705,
2385
+ 0.5949179205986669
2386
+ ]
2387
+ },
2388
+ {
2389
+ "name": "Sjcam SJ4000",
2390
+ "score": 42,
2391
+ "image": "/images/WEBP/action-camera/sjcam-sj4000.front.medium2x.1576684641045.webp",
2392
+ "propGroups": [
2393
+ "Design",
2394
+ "Features",
2395
+ "Battery",
2396
+ "Audio",
2397
+ "Optics",
2398
+ "Videography",
2399
+ "Miscellaneous"
2400
+ ],
2401
+ "propScore": [
2402
+ 0.49606482064529245,
2403
+ 0.3789473684210526,
2404
+ 0.7800925925925926,
2405
+ 0,
2406
+ 0.4061857513184946,
2407
+ 0.16452482596848272
2408
+ ]
2409
+ },
2410
+ {
2411
+ "name": "Sjcam SJ8 Plus",
2412
+ "score": 30,
2413
+ "image": "/images/WEBP/action-camera/sjcam-sj8-plus.front.medium2x.1608564618714.webp",
2414
+ "propGroups": [
2415
+ "Design",
2416
+ "Features",
2417
+ "Battery",
2418
+ "Audio",
2419
+ "Optics",
2420
+ "Videography"
2421
+ ],
2422
+ "propScore": [
2423
+ 0.6539248078684536,
2424
+ 0.28421052631578947,
2425
+ 0.7916666666666667,
2426
+ 0.0625,
2427
+ 0.07580227049253598,
2428
+ 0.41261800815978733
2429
+ ]
2430
+ },
2431
+ {
2432
+ "name": "Soloshot3 Optic25",
2433
+ "score": 58,
2434
+ "image": "/images/WEBP/action-camera/soloshot3-optic25.front.medium2x.1607687963603.webp",
2435
+ "propGroups": [
2436
+ "Design",
2437
+ "Features",
2438
+ "Battery",
2439
+ "Audio",
2440
+ "Optics",
2441
+ "Videography"
2442
+ ],
2443
+ "propScore": [
2444
+ 0.4250495526517939,
2445
+ 0.47368421052631576,
2446
+ 0.6666666666666666,
2447
+ 0.625,
2448
+ 0.4888327012220816,
2449
+ 0.47249115047145485
2450
+ ]
2451
+ },
2452
+ {
2453
+ "name": "Soloshot3 Optic65",
2454
+ "score": 66,
2455
+ "image": "/images/WEBP/action-camera/soloshot3-optic65.front.medium2x.1607690271973.webp",
2456
+ "propGroups": [
2457
+ "Design",
2458
+ "Features",
2459
+ "Battery",
2460
+ "Audio",
2461
+ "Optics",
2462
+ "Videography"
2463
+ ],
2464
+ "propScore": [
2465
+ 0.5426016820179426,
2466
+ 0.47368421052631576,
2467
+ 0.75,
2468
+ 0.625,
2469
+ 0.6068268015170669,
2470
+ 0.5792494590510193
2471
+ ]
2472
+ },
2473
+ {
2474
+ "name": "Sjcam SJ8 Pro",
2475
+ "score": 30,
2476
+ "image": "/images/WEBP/action-camera/sjcam-sj8-pro.front.medium2x.1608566402343.webp",
2477
+ "propGroups": [
2478
+ "Design",
2479
+ "Features",
2480
+ "Battery",
2481
+ "Audio",
2482
+ "Optics",
2483
+ "Videography"
2484
+ ],
2485
+ "propScore": [
2486
+ 0.6397580704680441,
2487
+ 0.28421052631578947,
2488
+ 0.7916666666666667,
2489
+ 0.0625,
2490
+ 0.07580227049253598,
2491
+ 0.5098137409708615
2492
+ ]
2493
+ },
2494
+ {
2495
+ "name": "Sony Action Cam HDR-AS100V",
2496
+ "score": 44,
2497
+ "image": "/images/WEBP/action-camera/sony-action-cam-hdr-as100v.front.medium2x.1576684641045.webp",
2498
+ "propGroups": [
2499
+ "Design",
2500
+ "Features",
2501
+ "Battery",
2502
+ "Audio",
2503
+ "Optics",
2504
+ "Videography"
2505
+ ],
2506
+ "propScore": [
2507
+ 0.4284291840702018,
2508
+ 0.47368421052631576,
2509
+ 0.7932098765432098,
2510
+ 0.9375,
2511
+ 0.2553729456384324,
2512
+ 0.4033223398675895
2513
+ ]
2514
+ },
2515
+ {
2516
+ "name": "Sony Action Cam FDR-X1000V",
2517
+ "score": 55,
2518
+ "image": "/images/WEBP/action-camera/sony-action-cam-fdr-x1000v.front.medium2x.1576684641045.webp",
2519
+ "propGroups": [
2520
+ "Design",
2521
+ "Features",
2522
+ "Battery",
2523
+ "Audio",
2524
+ "Optics",
2525
+ "Videography",
2526
+ "Miscellaneous"
2527
+ ],
2528
+ "propScore": [
2529
+ 0.42027437452747185,
2530
+ 0.44999999999999996,
2531
+ 1,
2532
+ 0.3125,
2533
+ 0.6865155587461812,
2534
+ 0.5068697209117818
2535
+ ]
2536
+ },
2537
+ {
2538
+ "name": "Sony Action Cam FDR-X3000",
2539
+ "score": 66,
2540
+ "image": "/images/WEBP/action-camera/sony-action-cam-fdr-x3000.front.medium2x.1576684641045.webp",
2541
+ "propGroups": [
2542
+ "Design",
2543
+ "Features",
2544
+ "Battery",
2545
+ "Audio",
2546
+ "Optics",
2547
+ "Videography",
2548
+ "Miscellaneous"
2549
+ ],
2550
+ "propScore": [
2551
+ 0.5026188099286196,
2552
+ 0.5399999999999999,
2553
+ 0.7932098765432098,
2554
+ 1,
2555
+ 0.7142122413528513,
2556
+ 0.5570485412905252
2557
+ ]
2558
+ },
2559
+ {
2560
+ "name": "Sony Action Cam HDR-AS10",
2561
+ "score": 42,
2562
+ "image": "/images/WEBP/action-camera/sony-action-cam-hdr-as10.front.medium2x.1576684641045.webp",
2563
+ "propGroups": [
2564
+ "Design",
2565
+ "Features",
2566
+ "Battery",
2567
+ "Audio",
2568
+ "Optics",
2569
+ "Videography",
2570
+ "Miscellaneous"
2571
+ ],
2572
+ "propScore": [
2573
+ 0.5103349811155105,
2574
+ 0.09473684210526315,
2575
+ 0.7932098765432098,
2576
+ 0.3125,
2577
+ 0.36566371930344876,
2578
+ 0.14332758126695183
2579
+ ]
2580
+ },
2581
+ {
2582
+ "name": "Sony Action Cam HDR-AS20",
2583
+ "score": 46,
2584
+ "image": "/images/WEBP/action-camera/sony-action-cam-hdr-as20.front.medium2x.1576684641045.webp",
2585
+ "propGroups": [
2586
+ "Design",
2587
+ "Features",
2588
+ "Battery",
2589
+ "Audio",
2590
+ "Optics",
2591
+ "Videography",
2592
+ "Miscellaneous"
2593
+ ],
2594
+ "propScore": [
2595
+ 0.4814836133655884,
2596
+ 0.1894736842105263,
2597
+ 1,
2598
+ 0.3125,
2599
+ 0.2959005989094484,
2600
+ 0.38588947166498855
2601
+ ]
2602
+ },
2603
+ {
2604
+ "name": "Sony Action Cam Mini",
2605
+ "score": 49,
2606
+ "image": "/images/WEBP/action-camera/sony-action-cam-mini.front.medium2x.1576684641045.webp",
2607
+ "propGroups": [
2608
+ "Design",
2609
+ "Features",
2610
+ "Battery",
2611
+ "Audio",
2612
+ "Optics",
2613
+ "Videography",
2614
+ "Miscellaneous"
2615
+ ],
2616
+ "propScore": [
2617
+ 0.4903733166666929,
2618
+ 0.3789473684210526,
2619
+ 1,
2620
+ 0,
2621
+ 0.5508292614194273,
2622
+ 0.22265443304063423
2623
+ ]
2624
+ },
2625
+ {
2626
+ "name": "Sony Action Cam HDR-AS200V",
2627
+ "score": 54,
2628
+ "image": "/images/WEBP/action-camera/sony-action-cam-hdr-as200v.front.medium2x.1576684641045.webp",
2629
+ "propGroups": [
2630
+ "Design",
2631
+ "Features",
2632
+ "Battery",
2633
+ "Audio",
2634
+ "Optics",
2635
+ "Videography",
2636
+ "Miscellaneous"
2637
+ ],
2638
+ "propScore": [
2639
+ 0.43568668579807796,
2640
+ 0.44999999999999996,
2641
+ 1,
2642
+ 0.625,
2643
+ 0.6865155587461812,
2644
+ 0.46671458787704756
2645
+ ]
2646
+ },
2647
+ {
2648
+ "name": "Sony Action Cam HDR-AS15 with Wi-Fi",
2649
+ "score": 43,
2650
+ "image": "/images/WEBP/action-camera/sony-action-cam-hdr-as15-with-wi-fi.front.medium2x.1576684641045.webp",
2651
+ "propGroups": [
2652
+ "Design",
2653
+ "Features",
2654
+ "Battery",
2655
+ "Audio",
2656
+ "Optics",
2657
+ "Videography",
2658
+ "Miscellaneous"
2659
+ ],
2660
+ "propScore": [
2661
+ 0.5103349811155105,
2662
+ 0.1894736842105263,
2663
+ 0.7932098765432098,
2664
+ 0.625,
2665
+ 0.36566371930344876,
2666
+ 0.14332758126695183
2667
+ ]
2668
+ },
2669
+ {
2670
+ "name": "TomTom Bandit",
2671
+ "score": 61,
2672
+ "image": "/images/WEBP/action-camera/tomtom-bandit.front.medium2x.1576684641045.webp",
2673
+ "propGroups": [
2674
+ "Design",
2675
+ "Features",
2676
+ "Battery",
2677
+ "Audio",
2678
+ "Optics",
2679
+ "Videography"
2680
+ ],
2681
+ "propScore": [
2682
+ 0.5382641206469825,
2683
+ 0.3518181818181818,
2684
+ 0.8186728395061729,
2685
+ 0.3125,
2686
+ 0.32237418432108694,
2687
+ 0.40774568733553407
2688
+ ]
2689
+ },
2690
+ {
2691
+ "name": "Sony RX0 II",
2692
+ "score": 69,
2693
+ "image": "/images/WEBP/action-camera/sony-rx0-ii.front.medium2x.1576684641045.webp",
2694
+ "propGroups": [
2695
+ "Design",
2696
+ "Features",
2697
+ "Battery",
2698
+ "Audio",
2699
+ "Optics",
2700
+ "Videography",
2701
+ "Miscellaneous"
2702
+ ],
2703
+ "propScore": [
2704
+ 0.6517261446286979,
2705
+ 0.43714285714285706,
2706
+ 1,
2707
+ 0.8333333333333333,
2708
+ 0.7689727655768356,
2709
+ 0.6064051877684602
2710
+ ]
2711
+ },
2712
+ {
2713
+ "name": "Swann Bolt HD",
2714
+ "score": 19,
2715
+ "image": "/images/WEBP/action-camera/swann-bolt-hd.front.medium2x.1576684641045.webp",
2716
+ "propGroups": [
2717
+ "Design",
2718
+ "Features",
2719
+ "Battery",
2720
+ "Audio",
2721
+ "Optics",
2722
+ "Videography"
2723
+ ],
2724
+ "propScore": [
2725
+ 0.4188008790674678,
2726
+ 0.09999999999999999,
2727
+ 0.018518518518518517,
2728
+ 0,
2729
+ 0.016856300042140747,
2730
+ 0.06254237449733253
2731
+ ]
2732
+ },
2733
+ {
2734
+ "name": "Sony RX0",
2735
+ "score": 47,
2736
+ "image": "/images/WEBP/action-camera/sony-rx0.front.medium2x.1576684641045.webp",
2737
+ "propGroups": [
2738
+ "Design",
2739
+ "Features",
2740
+ "Battery",
2741
+ "Audio",
2742
+ "Optics",
2743
+ "Videography",
2744
+ "Miscellaneous"
2745
+ ],
2746
+ "propScore": [
2747
+ 0.5867149484466236,
2748
+ 0.2657142857142857,
2749
+ 0.7723765432098766,
2750
+ 0.6875,
2751
+ 0.8869668658718208,
2752
+ 0.41299584001954004
2753
+ ]
2754
+ },
2755
+ {
2756
+ "name": "Veho Muvi Atom",
2757
+ "score": 27,
2758
+ "image": "/images/WEBP/action-camera/veho-muvi-atom.front.medium2x.1576684641045.webp",
2759
+ "propGroups": [
2760
+ "Design",
2761
+ "Features",
2762
+ "Battery",
2763
+ "Audio",
2764
+ "Optics",
2765
+ "Videography",
2766
+ "Miscellaneous"
2767
+ ],
2768
+ "propScore": [
2769
+ 0.5571407308100765,
2770
+ 0,
2771
+ 0.5,
2772
+ 0,
2773
+ 0.06436041834271923,
2774
+ 0.11770787869028905
2775
+ ]
2776
+ },
2777
+ {
2778
+ "name": "Veho Muvi Micro Camcorder",
2779
+ "score": 11,
2780
+ "image": "/images/WEBP/action-camera/veho-muvi-micro-camcorder.front.medium2x.1576684641045.webp",
2781
+ "propGroups": [
2782
+ "Design",
2783
+ "Features",
2784
+ "Battery",
2785
+ "Audio",
2786
+ "Optics",
2787
+ "Videography",
2788
+ "Miscellaneous"
2789
+ ],
2790
+ "propScore": [
2791
+ 0.3440533126047553,
2792
+ 0,
2793
+ 0.5054012345679013,
2794
+ 0,
2795
+ 0.1595602038079914,
2796
+ 0.13048237715280103
2797
+ ]
2798
+ },
2799
+ {
2800
+ "name": "Veho Muvi K2",
2801
+ "score": 29,
2802
+ "image": "/images/WEBP/action-camera/veho-muvi-k2.front.medium2x.1576684641045.webp",
2803
+ "propGroups": [
2804
+ "Design",
2805
+ "Features",
2806
+ "Battery",
2807
+ "Audio",
2808
+ "Optics",
2809
+ "Videography"
2810
+ ],
2811
+ "propScore": [
2812
+ 0.5441831498707876,
2813
+ 0.28421052631578947,
2814
+ 0.8032407407407407,
2815
+ 0,
2816
+ 0.08710109949048,
2817
+ 0.227554758444178
2818
+ ]
2819
+ },
2820
+ {
2821
+ "name": "Toshiba Camileo X-SPORTS",
2822
+ "score": 57,
2823
+ "image": "/images/WEBP/action-camera/toshiba-camileo-x-sports.front.medium2x.1576684641045.webp",
2824
+ "propGroups": [
2825
+ "Design",
2826
+ "Features",
2827
+ "Battery",
2828
+ "Audio",
2829
+ "Optics",
2830
+ "Videography",
2831
+ "Miscellaneous"
2832
+ ],
2833
+ "propScore": [
2834
+ 0.6154073538495393,
2835
+ 0.47368421052631576,
2836
+ 0.3333333333333333,
2837
+ 0,
2838
+ 0.5033250101804674,
2839
+ 0.3022202117877377
2840
+ ]
2841
+ },
2842
+ {
2843
+ "name": "Xiaomi Yi 4K Plus",
2844
+ "score": 55,
2845
+ "image": "/images/WEBP/action-camera/xiaomi-yi-4k-plus.front.medium2x.1576684641045.webp",
2846
+ "propGroups": [
2847
+ "Design",
2848
+ "Features",
2849
+ "Battery",
2850
+ "Audio",
2851
+ "Optics",
2852
+ "Videography",
2853
+ "Miscellaneous"
2854
+ ],
2855
+ "propScore": [
2856
+ 0.5368663905535423,
2857
+ 0.6,
2858
+ 0.7993827160493827,
2859
+ 0.37499999999999994,
2860
+ 0.41247877000089384,
2861
+ 0.4263592081792776
2862
+ ]
2863
+ },
2864
+ {
2865
+ "name": "Xiaomi Yi",
2866
+ "score": 42,
2867
+ "image": "/images/WEBP/action-camera/xiaomi-yi.front.medium2x.1576684641045.webp",
2868
+ "propGroups": [
2869
+ "Design",
2870
+ "Features",
2871
+ "Battery",
2872
+ "Audio",
2873
+ "Optics",
2874
+ "Videography"
2875
+ ],
2876
+ "propScore": [
2877
+ 0.45997447733862123,
2878
+ 0.5,
2879
+ 0.7843364197530864,
2880
+ 0.37499999999999994,
2881
+ 0.30235094305890764,
2882
+ 0.28439722657828437
2883
+ ]
2884
+ },
2885
+ {
2886
+ "name": "Xiaomi Yi 4K",
2887
+ "score": 55,
2888
+ "image": "/images/WEBP/action-camera/xiaomi-yi-4k.front.medium2x.1576684641045.webp",
2889
+ "propGroups": [
2890
+ "Design",
2891
+ "Features",
2892
+ "Battery",
2893
+ "Audio",
2894
+ "Optics",
2895
+ "Videography",
2896
+ "Miscellaneous"
2897
+ ],
2898
+ "propScore": [
2899
+ 0.7303394064688704,
2900
+ 0.1714285714285714,
2901
+ 0.5493827160493827,
2902
+ 0.37499999999999994,
2903
+ 0.8466970590864394,
2904
+ 0.3955687032393348
2905
+ ]
2906
+ }
2907
+ ]
2908
+ }
data/air-fryer.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"data": [{"name": "Breville Joule Oven Air Fryer Pro", "score": 95, "image": "/images/WEBP/air-fryer/breville-joule-oven-air-fryer-pro.front.medium2x.1667333412733.webp", "propGroups": ["General info", "Features", "Design"], "propScore": [1, 1, 0.37983947499438075]}, {"name": "Cosori Dual Blaze", "score": 86, "image": "/images/WEBP/air-fryer/cosori-dual-blaze.front.medium2x.1667419446707.webp", "propGroups": ["General info", "Features", "Design"], "propScore": [0.5908936197079051, 0.7714285714285714, 0.6009400090174574]}, {"name": "Breville Smart Oven Air Fryer", "score": 64, "image": "/images/WEBP/air-fryer/breville-smart-oven-air-fryer.front.medium2x.1667333121064.webp", "propGroups": ["General info", "Features", "Design"], "propScore": [0.8017254451267716, 0.5714285714285714, 0.2314876575440456]}, {"name": "Breville Smart Oven Air Fryer Pro", "score": 69, "image": "/images/WEBP/air-fryer/breville-smart-oven-air-fryer-pro.front.medium2x.1667333276853.webp", "propGroups": ["General info", "Features", "Design"], "propScore": [0.923115843313011, 0.5714285714285714, 0.4958053154018572]}, {"name": "Cosori Pro 3.7-Quart Air Fryer", "score": 60, "image": "/images/WEBP/air-fryer/cosori-pro-3-7-quart-air-fryer.front.medium2x.1667336231884.webp", "propGroups": ["General info", "Features", "Design"], "propScore": [0.6110603752261521, 0.3214285714285714, 0.6526835358926996]}, {"name": "Cosori Premium", "score": 50, "image": "/images/WEBP/air-fryer/cosori-premium.front.medium2x.1667341303325.webp", "propGroups": ["General info", "Features", "Design"], "propScore": [0.5498919729662375, 0.2571428571428572, 0.5834333725429521]}, {"name": "Cosori Original", "score": 37, "image": "/images/WEBP/air-fryer/cosori-original.front.medium2x.1667419598329.webp", "propGroups": ["General info", "Features", "Design"], "propScore": [0.3966316217540946, 0, 0.608565359807106]}, {"name": "Cosori Lite", "score": 78, "image": "/images/WEBP/air-fryer/cosori-lite.front.medium2x.1667418579322.webp", "propGroups": ["General info", "Features", "Design"], "propScore": [0.5189384583307346, 0.7071428571428572, 0.6342000271692754]}, {"name": "Cosori Pro 5.8-Quart Air Fryer", "score": 59, "image": "/images/WEBP/air-fryer/cosori-pro-5-8-quart-air-fryer.front.medium2x.1667336064968.webp", "propGroups": ["General info", "Features", "Design"], "propScore": [0.6062322484521755, 0.3214285714285714, 0.6148476009004593]}, {"name": "Cosori Pro II Smart Air Fryer", "score": 80, "image": "/images/WEBP/air-fryer/cosori-pro-ii-smart-air-fryer.front.medium2x.1667335546516.webp", "propGroups": ["General info", "Features", "Design"], "propScore": [0.5636955124476765, 0.7071428571428572, 0.6114060443674314]}, {"name": "Cosori Pro 5.8-Quart Smart Air Fryer", "score": 88, "image": "/images/WEBP/air-fryer/cosori-pro-5-8-quart-smart-air-fryer.front.medium2x.1667335908657.webp", "propGroups": ["General info", "Features", "Design"], "propScore": [0.7423595082972053, 0.7071428571428572, 0.6125806697584928]}, {"name": "Cosori Pro II Air Fryer", "score": 52, "image": "/images/WEBP/air-fryer/cosori-pro-ii-air-fryer.front.medium2x.1667334870263.webp", "propGroups": ["General info", "Features", "Design"], "propScore": [0.43398396399478895, 0.3214285714285714, 0.6114060443674314]}, {"name": "Cosori Pro LE Air Fryer", "score": 60, "image": "/images/WEBP/air-fryer/cosori-pro-le-air-fryer.front.medium2x.1667334713049.webp", "propGroups": ["General info", "Features", "Design"], "propScore": [0.5500951691970383, 0.3214285714285714, 0.6882100422374028]}, {"name": "Cosori Smart Air Fryer oven", "score": 79, "image": "/images/WEBP/air-fryer/cosori-smart-air-fryer-oven.front.medium2x.1667419729055.webp", "propGroups": ["General info", "Features", "Design"], "propScore": [0.8424448511053823, 0.7071428571428572, 0.5583275806810852]}, {"name": "Cosori Smart Air Fryer Toaster Oven", "score": 100, "image": "/images/WEBP/air-fryer/cosori-smart-air-fryer-toaster-oven.front.medium2x.1667334469275.webp", "propGroups": ["General info", "Features", "Design"], "propScore": [0.961301146305772, 0.9642857142857143, 0.21758602963630932]}, {"name": "Crux 3.7 Qt Air Fryer Touchscreen", "score": 34, "image": "/images/WEBP/air-fryer/crux-3-7-qt-air-fryer-touchscreen.front.medium2x.1667029710922.webp", "propGroups": ["General info", "Features", "Design"], "propScore": [0.5264990778618339, 0.14285714285714285, 0]}, {"name": "Crux 6.0 Qt Air Fryer Digital", "score": 41, "image": "/images/WEBP/air-fryer/crux-6-0-qt-air-fryer-digital.front.medium2x.1667025095753.webp", "propGroups": ["General info", "Features", "Design"], "propScore": [0.4746691661824663, 0.2857142857142857, 1]}, {"name": "Crux 5.3 Qt Digital Air Convection Fryer", "score": 29, "image": "/images/WEBP/air-fryer/crux-5-3-qt-digital-air-convection-fryer.front.medium2x.1667029066840.webp", "propGroups": ["General info", "Features", "Design"], "propScore": [0.4812503765105814, 0.14285714285714285, 1]}, {"name": "Crux 6.0 Qt Air Fryer Touchscreen", "score": 29, "image": "/images/WEBP/air-fryer/crux-6-0-qt-air-fryer-touchscreen.front.medium2x.1667023746330.webp", "propGroups": ["General info", "Features", "Design"], "propScore": [0.45394025433133944, 0.2857142857142857, 1]}, {"name": "Crux 6 Slice Digital Air Frying Toaster Oven", "score": 53, "image": "/images/WEBP/air-fryer/crux-6-slice-digital-air-frying-toaster-oven.front.medium2x.1667026546628.webp", "propGroups": ["General info", "Features", "Design"], "propScore": [0.7347572298122159, 0.2857142857142857, 0]}, {"name": "Cuisinart Compact AirFryer Toaster Oven", "score": 74, "image": "/images/WEBP/air-fryer/cuisinart-compact-airfryer-toaster-oven.front.medium2x.1667468779129.webp", "propGroups": ["General info", "Features", "Design"], "propScore": [0.7807199225437814, 0.42857142857142855, 0.3582320749142015]}, {"name": "Crux Artisan Series 4.6 Qt Air Fryer", "score": 46, "image": "/images/WEBP/air-fryer/crux-artisan-series-4-6-qt-air-fryer.front.medium2x.1667021128573.webp", "propGroups": ["General info", "Features", "Design"], "propScore": [0.4941235270560693, 0.2857142857142857, 0.6029179447164914]}, {"name": "Cuisinart AirFryer Toaster Oven", "score": 60, "image": "/images/WEBP/air-fryer/cuisinart-airfryer-toaster-oven.front.medium2x.1667428280775.webp", "propGroups": ["General info", "Features", "Design"], "propScore": [0.6298520998296183, 0.42857142857142855, 0.3500366291308512]}, {"name": "Cuisinart AirFryer Toaster Oven with Grill", "score": 62, "image": "/images/WEBP/air-fryer/cuisinart-airfryer-toaster-oven-with-grill.front.medium2x.1667332881098.webp", "propGroups": ["General info", "Features", "Design"], "propScore": [0.8079435740443605, 0.2857142857142857, 0.3100850322988135]}, {"name": "Cuisinart Large AirFryer Toaster Oven", "score": 67, "image": "/images/WEBP/air-fryer/cuisinart-large-airfryer-toaster-oven.front.medium2x.1667468015552.webp", "propGroups": ["General info", "Features", "Design"], "propScore": [0.9171995056432395, 0.5142857142857143, 0.5377331270171581]}, {"name": "Dash Deluxe Air Fryer 3 Qt", "score": 36, "image": "/images/WEBP/air-fryer/dash-deluxe-air-fryer-3-qt.front.medium2x.1667084880785.webp", "propGroups": ["General info", "Features", "Design"], "propScore": [0.31938596423686144, 0, 0.45594285827930986]}, {"name": "Cuisinart Digital AirFryer Toaster Oven", "score": 83, "image": "/images/WEBP/air-fryer/cuisinart-digital-airfryer-toaster-oven.front.medium2x.1667427601569.webp", "propGroups": ["General info", "Features", "Design"], "propScore": [0.9658304912372111, 0.5714285714285714, 0.49465390217798505]}, {"name": "Dash Compact", "score": 36, "image": "/images/WEBP/air-fryer/dash-compact.front.medium2x.1666191207311.webp", "propGroups": ["General info", "Features", "Design"], "propScore": [0.15302030293756463, 0, 0.7588617454935684]}, {"name": "Dash Tasti-Crisp", "score": 34, "image": "/images/WEBP/air-fryer/dash-tasti-crisp.front.medium2x.1667425105824.webp", "propGroups": ["General info", "Features", "Design"], "propScore": [0.19916375817632326, 0, 0.5438707723618753]}, {"name": "Dash Deluxe Air Fryer 6 Qt", "score": 38, "image": "/images/WEBP/air-fryer/dash-deluxe-air-fryer-6-qt.front.medium2x.1667083242381.webp", "propGroups": ["General info", "Features", "Design"], "propScore": [0.3404050236640143, 0.1285714285714286, 0.5594065376339628]}, {"name": "Dash Family Air Fryer", "score": 23, "image": "/images/WEBP/air-fryer/dash-family-air-fryer.front.medium2x.1667420002212.webp", "propGroups": ["General info", "Features", "Design"], "propScore": [0.21688210185598508, 0.1285714285714286, 0.33897767529327466]}, {"name": "Dash Digital Tasti-Crisp", "score": 41, "image": "/images/WEBP/air-fryer/dash-digital-tasti-crisp.front.medium2x.1667333938117.webp", "propGroups": ["General info", "Features", "Design"], "propScore": [0.24320791429712324, 0.2571428571428572, 0.538213759043655]}, {"name": "GoWise USA 3.7 Quart Air Fryer with 8 Cook Presets", "score": 52, "image": "/images/WEBP/air-fryer/gowise-usa-3-7-quart-air-fryer-with-8-cook-presets.front.medium2x.1667497020636.webp", "propGroups": ["General info", "Features", "Design"], "propScore": [0.3234762509407662, 0.2857142857142857, 0.7561825328987478]}, {"name": "GoWise USA 2.75 Quart Air Fryer", "score": 41, "image": "/images/WEBP/air-fryer/gowise-usa-2-75-quart-air-fryer.front.medium2x.1667499023606.webp", "propGroups": ["General info", "Features", "Design"], "propScore": [0.19209075878243767, 0.1285714285714286, 0.802239690009918]}, {"name": "GoWise USA 1.7- Quart Mini Air Fryer", "score": 40, "image": "/images/WEBP/air-fryer/gowise-usa-1-7-quart-mini-air-fryer.front.medium2x.1667563821548.webp", "propGroups": ["General info", "Features", "Design"], "propScore": [0.34401881194954836, 0.1285714285714286, 0.4643490330096761]}, {"name": "GoWise USA 3.7 Quart 7-In-1 Touchscreen Air Fryer", "score": 44, "image": "/images/WEBP/air-fryer/gowise-usa-3-7-quart-7-in-1-touchscreen-air-fryer.front.medium2x.1667901422577.webp", "propGroups": ["General info", "Features", "Design"], "propScore": [0.2966127560027193, 0.14285714285714285, 0.5312597191266526]}, {"name": "GoWise USA 5.8 Quart Digital Air Fryer with Duo Display", "score": 41, "image": "/images/WEBP/air-fryer/gowise-usa-5-8-quart-digital-air-fryer-with-duo-display.front.medium2x.1667557738185.webp", "propGroups": ["General info", "Features", "Design"], "propScore": [0.3977824150652721, 0.19285714285714284, 0.6259904600797611]}, {"name": "GoWise USA 5.8 Quart 8-In-1 Digital Air Fryer", "score": 43, "image": "/images/WEBP/air-fryer/gowise-usa-5-8-quart-8-in-1-digital-air-fryer.front.medium2x.1667472777529.webp", "propGroups": ["General info", "Features", "Design"], "propScore": [0.33783771456868433, 0.19285714285714284, 0.4655919485985184]}, {"name": "GoWise USA 4 Quart Air Fryer with Viewing Window", "score": 60, "image": "/images/WEBP/air-fryer/gowise-usa-4-quart-air-fryer-with-viewing-window.front.medium2x.1667561914369.webp", "propGroups": ["General info", "Features", "Design"], "propScore": [0.5404548979494459, 0.42857142857142855, 0.41671339565622595]}, {"name": "GoWise USA 5.5 Quart Air Fryer with 180 Viewing Window", "score": 63, "image": "/images/WEBP/air-fryer/gowise-usa-5-5-quart-air-fryer-with-180-viewing-window.front.medium2x.1667568026184.webp", "propGroups": ["General info", "Features", "Design"], "propScore": [0.459588904558034, 0.5785714285714286, 0.4433194671471573]}, {"name": "GoWise USA 5 Quart Electric Programmable Air Fryer", "score": 36, "image": "/images/WEBP/air-fryer/gowise-usa-5-quart-electric-programmable-air-fryer.front.medium2x.1667565127949.webp", "propGroups": ["General info", "Features", "Design"], "propScore": [0.2680749541354833, 0.14285714285714285, 0.4201309510744129]}, {"name": "GoWise USA 5 Quart Air Fryer with 8 Cook Presets", "score": 44, "image": "/images/WEBP/air-fryer/gowise-usa-5-quart-air-fryer-with-8-cook-presets.front.medium2x.1667558348223.webp", "propGroups": ["General info", "Features", "Design"], "propScore": [0.37852971156872717, 0.14285714285714285, 0.5070160302361653]}, {"name": "GoWise USA 7 Quart 8-In-1 Digital Air Fryer", "score": 42, "image": "/images/WEBP/air-fryer/gowise-usa-7-quart-8-in-1-digital-air-fryer.front.medium2x.1667499731889.webp", "propGroups": ["General info", "Features", "Design"], "propScore": [0.4095165796109305, 0.19285714285714284, 0.35867123361670766]}, {"name": "GoWise USA 5 Quart Digital Touchscreen Air Fryer", "score": 38, "image": "/images/WEBP/air-fryer/gowise-usa-5-quart-digital-touchscreen-air-fryer.front.medium2x.1667500283091.webp", "propGroups": ["General info", "Features", "Design"], "propScore": [0.36440934624922855, 0.19285714285714284, 0.32479366241346197]}, {"name": "GoWise USA 7 Quart Digital Touchscreen Air Fryer", "score": 41, "image": "/images/WEBP/air-fryer/gowise-usa-7-quart-digital-touchscreen-air-fryer.front.medium2x.1667490708687.webp", "propGroups": ["General info", "Features", "Design"], "propScore": [0.4126615557715286, 0.14285714285714285, 0.3932784795110279]}, {"name": "GoWise USA 7 Quart Air Fryer & Dehydrator Max Steel XL", "score": 42, "image": "/images/WEBP/air-fryer/gowise-usa-7-quart-air-fryer-dehydrator-max-steel-xl.front.medium2x.1667496395838.webp", "propGroups": ["General info", "Features", "Design"], "propScore": [0.4185060550002811, 0.3214285714285714, 0.3033667734870483]}, {"name": "GoWise USA 7 Quart Steam Air Fryer", "score": 33, "image": "/images/WEBP/air-fryer/gowise-usa-7-quart-steam-air-fryer.front.medium2x.1667497588682.webp", "propGroups": ["General info", "Features", "Design"], "propScore": [0.4324506596223794, 0.14285714285714285, 0.28929494351127466]}, {"name": "GoWise USA 7 Quart Air Fryer & Dehydrator Max XL", "score": 44, "image": "/images/WEBP/air-fryer/gowise-usa-7-quart-air-fryer-dehydrator-max-xl.front.medium2x.1667498217141.webp", "propGroups": ["General info", "Features", "Design"], "propScore": [0.4549478751182423, 0.3214285714285714, 0.3519256002512121]}, {"name": "Instant Indoor Grill and Air Fryer", "score": 68, "image": "/images/WEBP/air-fryer/instant-indoor-grill-and-air-fryer.front.medium2x.1667093374756.webp", "propGroups": ["General info", "Features", "Design"], "propScore": [0.8161428141364355, 0.5714285714285714, 0.6785051826626004]}, {"name": "Ninja Air Fryer AF100UK", "score": 56, "image": "/images/WEBP/air-fryer/ninja-air-fryer-af100uk.front.medium2x.1666888243831.webp", "propGroups": ["General info", "Features", "Design"], "propScore": [0.31492478194224455, 0.2571428571428572, 0.9410597903088693]}, {"name": "Instant Vortex 10-quart Air Fryer", "score": 76, "image": "/images/WEBP/air-fryer/instant-vortex-10-quart-air-fryer.front.medium2x.1667094434680.webp", "propGroups": ["General info", "Features", "Design"], "propScore": [0.6308883839822828, 0.7142857142857143, 0.5492302948104119]}, {"name": "Instant Essentials 4-quart Air Fryer", "score": 34, "image": "/images/WEBP/air-fryer/instant-essentials-4-quart-air-fryer.front.medium2x.1667092385884.webp", "propGroups": ["General info", "Features", "Design"], "propScore": [0.2475770205433575, 0, 0.6645194858100258]}, {"name": "Ninja Foodi 6-in-1 10-qt. XL", "score": 66, "image": "/images/WEBP/air-fryer/ninja-foodi-6-in-1-10-qt-xl.front.medium2x.1667703972963.webp", "propGroups": ["General info", "Features", "Design"], "propScore": [0.9678614490163892, 0.2857142857142857, 0.6397232754533718]}, {"name": "Ninja Air Fryer Max XL", "score": 48, "image": "/images/WEBP/air-fryer/ninja-air-fryer-max-xl.front.medium2x.1667708256360.webp", "propGroups": ["General info", "Features", "Design"], "propScore": [0.5602364184113646, 0.14285714285714285, 0.5861988779131968]}, {"name": "Ninja Foodi 6-in-1 8-qt.", "score": 63, "image": "/images/WEBP/air-fryer/ninja-foodi-6-in-1-8-qt.front.medium2x.1667705306223.webp", "propGroups": ["General info", "Features", "Design"], "propScore": [0.761545002297204, 0.2857142857142857, 0.5487794625517128]}, {"name": "Ninja Air Fryer Max AF160UK", "score": 42, "image": "/images/WEBP/air-fryer/ninja-air-fryer-max-af160uk.front.medium2x.1665575510969.webp", "propGroups": ["General info", "Features", "Design"], "propScore": [0.37095058182781465, 0.1285714285714286, 0.6378635120849011]}, {"name": "Ninja Foodi Max Dual Zone AF451UK", "score": 72, "image": "/images/WEBP/air-fryer/ninja-foodi-max-dual-zone-af451uk.front.medium2x.1666357767054.webp", "propGroups": ["General info", "Features", "Design"], "propScore": [0.886127646111329, 0.6428571428571428, 0.5590910140650733]}, {"name": "Ninja Foodi MAX Dual Zone AF400UK", "score": 66, "image": "/images/WEBP/air-fryer/ninja-foodi-max-dual-zone-af400uk.front.medium2x.1666893613493.webp", "propGroups": ["General info", "Features", "Design"], "propScore": [0.92893979368264, 0.5142857142857143, 0.5596577468505649]}, {"name": "Ninja Foodi 6-qt.", "score": 66, "image": "/images/WEBP/air-fryer/ninja-foodi-6-qt.front.medium2x.1667707446162.webp", "propGroups": ["General info", "Features", "Design"], "propScore": [0.499788243068116, 0.42857142857142855, 0.5616329621266632]}, {"name": "Ninja Foodi Dual Zone AF300UK", "score": 64, "image": "/images/WEBP/air-fryer/ninja-foodi-dual-zone-af300uk.front.medium2x.1666891792244.webp", "propGroups": ["General info", "Features", "Design"], "propScore": [0.645791173596652, 0.5142857142857143, 0.5922615086049495]}, {"name": "Ninja Speedi Rapid Cooker & Air Fryer", "score": 41, "image": "/images/WEBP/air-fryer/ninja-speedi-rapid-cooker-air-fryer.front.medium2x.1667699574275.webp", "propGroups": ["General info", "Features", "Design"], "propScore": [0.5392626839706957, 0.1285714285714286, 0.5634941249272323]}, {"name": "Philips Airfryer 5000 Series Connected", "score": 66, "image": "/images/WEBP/air-fryer/philips-airfryer-5000-series-connected.front.medium2x.1667676060730.webp", "propGroups": ["General info", "Features", "Design"], "propScore": [0.6460212348165547, 0.42857142857142855, 0.646611512043393]}, {"name": "Philips Daily Collection Airfryer", "score": 32, "image": "/images/WEBP/air-fryer/philips-daily-collection-airfryer.front.medium2x.1667588757093.webp", "propGroups": ["General info", "Features", "Design"], "propScore": [0.37043883733678984, 0, 0.5853567852821653]}, {"name": "Philips Avance Collection Airfryer XL", "score": 31, "image": "/images/WEBP/air-fryer/philips-avance-collection-airfryer-xl.front.medium2x.1667682023120.webp", "propGroups": ["General info", "Features", "Design"], "propScore": [0.3510358949594315, 0.1285714285714286, 0.5530868693780919]}, {"name": "Philips Essential Airfryer Compact", "score": 40, "image": "/images/WEBP/air-fryer/philips-essential-airfryer-compact.front.medium2x.1667679176027.webp", "propGroups": ["General info", "Features", "Design"], "propScore": [0.3989228480002429, 0, 0.6471782448288846]}, {"name": "Philips Essential Airfryer XL (HD9260/90)", "score": 41, "image": "/images/WEBP/air-fryer/philips-essential-airfryer-xl-hd9260-90.front.medium2x.1667687580490.webp", "propGroups": ["General info", "Features", "Design"], "propScore": [0.43632276280972093, 0.3214285714285714, 0.48050383256931556]}, {"name": "Philips Essential Airfryer XL (HD9260/91R1)", "score": 31, "image": "/images/WEBP/air-fryer/philips-essential-airfryer-xl-hd9260-91r1.front.medium2x.1667590231207.webp", "propGroups": ["General info", "Features", "Design"], "propScore": [0.4147138441462283, 0.1285714285714286, 0.46532382036369635]}, {"name": "Philips Essential Airfryer XL Connected", "score": 57, "image": "/images/WEBP/air-fryer/philips-essential-airfryer-xl-connected.front.medium2x.1667677517748.webp", "propGroups": ["General info", "Features", "Design"], "propScore": [0.47601638657499235, 0.42857142857142855, 0.5783361822096946]}, {"name": "Philips Premium Airfryer XXL (HD9650/99R1)", "score": 37, "image": "/images/WEBP/air-fryer/philips-premium-airfryer-xxl-hd9650-99r1.front.medium2x.1667698126816.webp", "propGroups": ["General info", "Features", "Design"], "propScore": [0.49306732252947005, 0.14285714285714285, 0.5255979823516416]}, {"name": "Philips Essential Airfryer XL (HD9270/91R1)", "score": 43, "image": "/images/WEBP/air-fryer/philips-essential-airfryer-xl-hd9270-91r1.front.medium2x.1667586806910.webp", "propGroups": ["General info", "Features", "Design"], "propScore": [0.424720711612948, 0.19285714285714284, 0.5783361822096946]}, {"name": "Philips Philips 3000 Series Airfryer Compact", "score": 44, "image": "/images/WEBP/air-fryer/philips-philips-3000-series-airfryer-compact.front.medium2x.1667683013829.webp", "propGroups": ["General info", "Features", "Design"], "propScore": [0.531646903825596, 0.14285714285714285, 0.646611512043393]}, {"name": "Philips Essential Airfryer XL (HD9270/91)", "score": 38, "image": "/images/WEBP/air-fryer/philips-essential-airfryer-xl-hd9270-91.front.medium2x.1667684367695.webp", "propGroups": ["General info", "Features", "Design"], "propScore": [0.46808753452832774, 0.14285714285714285, 0.5783361822096946]}, {"name": "Ultrean 4.5 Quart Air Fryer", "score": 36, "image": "/images/WEBP/air-fryer/ultrean-4-5-quart-air-fryer.front.medium2x.1667147001670.webp", "propGroups": ["General info", "Features", "Design"], "propScore": [0.4599841283094187, 0, 0.6122699391877572]}, {"name": "Ultrean 4.2 Quart Air Fryer", "score": 38, "image": "/images/WEBP/air-fryer/ultrean-4-2-quart-air-fryer.front.medium2x.1667143738348.webp", "propGroups": ["General info", "Features", "Design"], "propScore": [0.25212032966893605, 0.1285714285714286, 0.642256332243678]}, {"name": "Philips Viva Collection Airfryer", "score": 36, "image": "/images/WEBP/air-fryer/philips-viva-collection-airfryer.front.medium2x.1667694228022.webp", "propGroups": ["General info", "Features", "Design"], "propScore": [0.229504241842709, 0.0642857142857143, 0.5853567852821653]}, {"name": "Ultrean 12.5 Quart Air Fryer Oven", "score": 61, "image": "/images/WEBP/air-fryer/ultrean-12-5-quart-air-fryer-oven.front.medium2x.1667148975209.webp", "propGroups": ["General info", "Features", "Design"], "propScore": [0.5557131672300363, 0.42857142857142855, 0.5132498602015415]}, {"name": "Ultrean 6 Quart Stainless Steel Air Fryer", "score": 36, "image": "/images/WEBP/air-fryer/ultrean-6-quart-stainless-steel-air-fryer.front.medium2x.1667150600284.webp", "propGroups": ["General info", "Features", "Design"], "propScore": [0.3745157407482262, 0.2571428571428572, 0.519634141036534]}, {"name": "Ultrean 8 Quart Air Fryer", "score": 39, "image": "/images/WEBP/air-fryer/ultrean-8-quart-air-fryer.front.medium2x.1667144646409.webp", "propGroups": ["General info", "Features", "Design"], "propScore": [0.33748125978106264, 0.2571428571428572, 0.5121699645982234]}, {"name": "Ultrean 6 Quart Air Fryer", "score": 35, "image": "/images/WEBP/air-fryer/ultrean-6-quart-air-fryer.front.medium2x.1667144213760.webp", "propGroups": ["General info", "Features", "Design"], "propScore": [0.30780223798819256, 0.1285714285714286, 0.5550695970608241]}, {"name": "Ultrean 8.5 Quart Air Fryer", "score": 33, "image": "/images/WEBP/air-fryer/ultrean-8-5-quart-air-fryer.front.medium2x.1667148179117.webp", "propGroups": ["General info", "Features", "Design"], "propScore": [0.3646189673282376, 0.1285714285714286, 0.4517094008056324]}, {"name": "Ultrean 9 Quart Air Fryer", "score": 34, "image": "/images/WEBP/air-fryer/ultrean-9-quart-air-fryer.front.medium2x.1667151125122.webp", "propGroups": ["General info", "Features", "Design"], "propScore": [0.35123160929920966, 0.14285714285714285, 0.34051891930623335]}, {"name": "Ultrean XL Air Fryer", "score": 36, "image": "/images/WEBP/air-fryer/ultrean-xl-air-fryer.front.medium2x.1667901113358.webp", "propGroups": ["General info", "Features", "Design"], "propScore": [0.3611207699782371, 0.1285714285714286, 0.5238442032650585]}]}
data/all-in-one-computer.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"data": [{"name": "Acer Aspire C27-1655 27\" Intel Core i7-1165G7 / 16GB RAM / 1TB HDD + 512GB SSD", "score": 74, "image": "/images/WEBP/all-in-one-computer/acer-aspire-c27-1655-27-intel-core-i7-1165g7-16gb-ram-1tb-hdd-512gb-ssd.front.medium2x.1639646545932.webp", "propGroups": ["Performance", "Display", "Connectivity", "Features", "Design", "General info", "Miscellaneous"], "propScore": [0.5804416858143031, 0.4479187005786581, 0.852959121415497, 0.4, 0.7314873028975784, 0.6846631205398689]}, {"name": "Acer Aspire C27-962 27\" Intel Core i5-1035G1 / 12GB RAM / 512GB SSD", "score": 51, "image": "/images/WEBP/all-in-one-computer/acer-aspire-c27-962-27-intel-core-i5-1035g1-12gb-ram-512gb-ssd.front.medium2x.1639646724394.webp", "propGroups": ["Performance", "Display", "Connectivity", "Features", "Design", "General info", "Miscellaneous"], "propScore": [0.43010201762322864, 0.38696306468553543, 0.7248322147651006, 0.3333333333333333, 0.7314873028975784, 0.622967768827386]}, {"name": "Acer Aspire C24-1651 23.8\" Intel Core i3-1115G4 / 8GB RAM / 512GB SSD", "score": 65, "image": "/images/WEBP/all-in-one-computer/acer-aspire-c24-1651-23-8-intel-core-i3-1115g4-8gb-ram-512gb-ssd.front.medium2x.1639584661686.webp", "propGroups": ["Performance", "Display", "Connectivity", "Features", "Design", "General info", "Miscellaneous"], "propScore": [0.4496175405964807, 0.42142952014329427, 0.9122354155911202, 0.4, 0.7647245535773979, 0.6634870672749956]}, {"name": "Acer Aspire C27-1655 27\" Intel Core i5-1135G7 / 12GB RAM / 512GB SSD", "score": 69, "image": "/images/WEBP/all-in-one-computer/acer-aspire-c27-1655-27-intel-core-i5-1135g7-12gb-ram-512gb-ssd.front.medium2x.1639645912044.webp", "propGroups": ["Performance", "Display", "Connectivity", "Features", "Design", "General info", "Miscellaneous"], "propScore": [0.5459992991679794, 0.4479187005786581, 0.852959121415497, 0.3333333333333333, 0.7314873028975784, 0.7172064971463226]}, {"name": "Apple iMac 27\" Intel Core i5 / 8GB RAM / 512GB SSD", "score": 45, "image": "/images/WEBP/all-in-one-computer/apple-imac-27-intel-core-i5-8gb-ram-512gb-ssd.front.medium2x.1639145206358.webp", "propGroups": ["Performance", "Display", "Connectivity", "Features", "Design", "General info"], "propScore": [0.7054869934770417, 0.8671943969025712, 0.8419768151311774, 0.4, 0.431675289795277, 0.8959167847166817]}, {"name": "Apple iMac 27\" Intel Core i7 / 16GB RAM / 512GB SSD", "score": 72, "image": "/images/WEBP/all-in-one-computer/apple-imac-27-intel-core-i7-16gb-ram-512gb-ssd.front.medium2x.1639146931511.webp", "propGroups": ["Performance", "Display", "Connectivity", "Features", "Design", "General info", "Miscellaneous"], "propScore": [1, 0.8671943969025712, 0.9261744966442952, 0.4, 0.431675289795277, 0.770166140447505]}, {"name": "Apple iMac 27\" Intel Core i9 / 64GB RAM / 1TB SSD", "score": 42, "image": "/images/WEBP/all-in-one-computer/apple-imac-27-intel-core-i9-64gb-ram-1tb-ssd.front.medium2x.1639145026038.webp", "propGroups": ["Performance", "Display", "Connectivity", "Features", "Design", "General info"], "propScore": [0.679124932687433, 0.8671943969025712, 0.7973154362416106, 0.6, 0.4260559644371049, 0.7545689422298312]}, {"name": "Apple iMac 24\" Apple M1 / 16GB RAM / 2TB SSD", "score": 79, "image": "/images/WEBP/all-in-one-computer/apple-imac-24-apple-m1-16gb-ram-2tb-ssd.front.medium2x.1639149326307.webp", "propGroups": ["Performance", "Display", "Connectivity", "Features", "Design", "General info", "Miscellaneous"], "propScore": [0.970789577410964, 0.6901263382201457, 0.8236729713239779, 0.4, 0.5580603698339608, 0.8026266651793416]}, {"name": "Apple iMac Pro 27\" Intel Xeon W-3503 / 32GB RAM / 1TB SSD", "score": 46, "image": "/images/WEBP/all-in-one-computer/apple-imac-pro-27-intel-xeon-w-3503-32gb-ram-1tb-ssd.front.medium2x.1639142726343.webp", "propGroups": ["Performance", "Display", "Connectivity", "Features", "Design", "General info", "Miscellaneous"], "propScore": [0.3344904944330599, 0.9184552637824724, 0.8346552776082977, 0.4, 0.4229091422365286, 0.6790895788604877]}, {"name": "Asus Vivo AIO 24 V241 23.8\" Intel Pentium Gold 7505 / 8GB RAM / 128GB SSD + 1TB HDD", "score": 54, "image": "/images/WEBP/all-in-one-computer/asus-vivo-aio-24-v241-23-8-intel-pentium-gold-7505-8gb-ram-128gb-ssd-1tb-hdd.front.medium2x.1662561516257.webp", "propGroups": ["Performance", "Display", "Connectivity", "Features", "Design", "General info", "Miscellaneous"], "propScore": [0.41739993287184884, 0.2995182483570489, 0.538255033557047, 0.2, 0.6976521427521195, 0.4239438360039116]}, {"name": "Asus AIO V241 23.8\" AMD Ryzen 3 3250U / 8GB RAM / 512GB SSD", "score": 49, "image": "/images/WEBP/all-in-one-computer/asus-aio-v241-23-8-amd-ryzen-3-3250u-8gb-ram-512gb-ssd.front.medium2x.1640001941904.webp", "propGroups": ["Performance", "Display", "Connectivity", "Features", "Design", "General info", "Miscellaneous"], "propScore": [0.4173267552714375, 0.342156836681265, 0.7986577181208053, 0.16666666666666666, 0.6884987224413379, 0.622967768827386]}, {"name": "Asus AIO M241 23.8\" AMD Ryzen 3 3250U / 4GB RAM / 1TB HDD", "score": 50, "image": "/images/WEBP/all-in-one-computer/asus-aio-m241-23-8-amd-ryzen-3-3250u-4gb-ram-1tb-hdd.front.medium2x.1639134507529.webp", "propGroups": ["Performance", "Display", "Connectivity", "Features", "Design", "General info", "Miscellaneous"], "propScore": [0.41079446829479815, 0.4742273811163642, 0.7399328859060401, 0.2, 0.5768191014946896, 0.6719744640427745]}, {"name": "Asus Vivo AIO V222 21.5\" Intel Core i3-10110U / 4GB RAM / 1TB HDD", "score": 45, "image": "/images/WEBP/all-in-one-computer/asus-vivo-aio-v222-21-5-intel-core-i3-10110u-4gb-ram-1tb-hdd.front.medium2x.1641818404244.webp", "propGroups": ["Performance", "Display", "Connectivity", "Features", "Design", "General info", "Miscellaneous"], "propScore": [0.35099841257014647, 0.3176686851437992, 0.7567114093959729, 0.4, 0.5582891289707093, 0.5084055426931514]}, {"name": "Asus Vivo AIO V222 21.5\" Intel Pentium Gold 6405U / 4GB RAM / 1TB HDD", "score": 39, "image": "/images/WEBP/all-in-one-computer/asus-vivo-aio-v222-21-5-intel-pentium-gold-6405u-4gb-ram-1tb-hdd.front.medium2x.1641818904382.webp", "propGroups": ["Performance", "Display", "Connectivity", "Features", "Design", "General info", "Miscellaneous"], "propScore": [0.31712273879068764, 0.3176686851437992, 0.7567114093959729, 0.4, 0.5582891289707093, 0.5084015647529936]}, {"name": "Asus Vivo AIO V222 21.5\" Intel Core i5-10210U / 4GB RAM / 1TB HDD", "score": 51, "image": "/images/WEBP/all-in-one-computer/asus-vivo-aio-v222-21-5-intel-core-i5-10210u-4gb-ram-1tb-hdd.front.medium2x.1641817736708.webp", "propGroups": ["Performance", "Display", "Connectivity", "Features", "Design", "General info", "Miscellaneous"], "propScore": [0.42519058671653276, 0.3176686851437992, 0.7483221476510066, 0.4, 0.5582891289707093, 0.5084055426931514]}, {"name": "Asus Vivo AIO V241 23.8\" AMD Ryzen 3 3250U / 8GB RAM / 256GB SSD", "score": 49, "image": "/images/WEBP/all-in-one-computer/asus-vivo-aio-v241-23-8-amd-ryzen-3-3250u-8gb-ram-256gb-ssd.front.medium2x.1640012654862.webp", "propGroups": ["Performance", "Display", "Connectivity", "Features", "Design", "General info", "Miscellaneous"], "propScore": [0.4173267552714375, 0.32447810238680297, 0.639261744966443, 0.4, 0.6884987224413379, 0.6722565371274057]}, {"name": "Asus Vivo AIO V241 23.8\" Intel Core i5-10210U / 8GB RAM / 1TB HDD + 512GB SSD", "score": 55, "image": "/images/WEBP/all-in-one-computer/asus-vivo-aio-v241-23-8-intel-core-i5-10210u-8gb-ram-1tb-hdd-512gb-ssd.front.medium2x.1639757080334.webp", "propGroups": ["Performance", "Display", "Connectivity", "Features", "Design", "General info", "Miscellaneous"], "propScore": [0.43172287369317197, 0.37679271590659813, 0.6790726052471018, 0.2, 0.5768191014946896, 0.8690920067034444]}, {"name": "Asus Zen AIO 24 M5401WUA-DS503T 23.8\" AMD Ryzen 5 5500U / 8GB RAM / 512GB SSD", "score": 59, "image": "/images/WEBP/all-in-one-computer/asus-zen-aio-24-m5401wua-ds503t-23-8-amd-ryzen-5-5500u-8gb-ram-512gb-ssd.front.medium2x.1640009801851.webp", "propGroups": ["Performance", "Display", "Connectivity", "Features", "Design", "General info", "Miscellaneous"], "propScore": [0.6815089101598775, 0.46308227428621185, 0.7465152297367063, 0.2, 0.7306947684342902, 0.6611639502228255]}, {"name": "Asus Vivo AIO V241 23.8\" Intel Core i5-1135G7 / 8GB RAM / 1TB HDD + 512GB SSD", "score": 68, "image": "/images/WEBP/all-in-one-computer/asus-vivo-aio-v241-23-8-intel-core-i5-1135g7-8gb-ram-1tb-hdd-512gb-ssd.front.medium2x.1639757300170.webp", "propGroups": ["Performance", "Display", "Connectivity", "Features", "Design", "General info", "Miscellaneous"], "propScore": [0.5787189622719388, 0.4377483517997208, 0.7167785234899329, 0.16666666666666666, 0.5768191014946896, 0.7481535169529826]}, {"name": "Asus Zen AIO 22 A5200 21.5\" Intel Core i3-10110U / 8GB RAM / 256GB SSD", "score": 47, "image": "/images/WEBP/all-in-one-computer/asus-zen-aio-22-a5200-21-5-intel-core-i3-10110u-8gb-ram-256gb-ssd.front.medium2x.1640012483036.webp", "propGroups": ["Performance", "Display", "Connectivity", "Features", "Design", "General info", "Miscellaneous"], "propScore": [0.3575306995467857, 0.3176686851437992, 0.7929788332472896, 0.4, 0.7767293059804466, 0.5783559337218842]}, {"name": "Dell Inspiron 24 5000 All-in-One 23.8\" Intel Core i3-1115G4 / 8GB RAM / 256GB SSD", "score": 69, "image": "/images/WEBP/all-in-one-computer/dell-inspiron-24-5000-all-in-one-23-8-intel-core-i3-1115g4-8gb-ram-256gb-ssd.front.medium2x.1638983572262.webp", "propGroups": ["Performance", "Display", "Connectivity", "Features", "Design", "General info", "Miscellaneous"], "propScore": [0.4496175405964807, 0.5596596235859662, 0.9432111512648425, 0.6, 0.7721845342355099, 0.6957647420095375]}, {"name": "Asus Zen AIO 24 M5401WUA-DS704T 23.8\" AMD Ryzen 7 5700U / 16GB RAM / 512GB SSD", "score": 64, "image": "/images/WEBP/all-in-one-computer/asus-zen-aio-24-m5401wua-ds704t-23-8-amd-ryzen-7-5700u-16gb-ram-512gb-ssd.front.medium2x.1640010582421.webp", "propGroups": ["Performance", "Display", "Connectivity", "Features", "Design", "General info", "Miscellaneous"], "propScore": [0.7610987198420271, 0.42142952014329427, 0.9137842023748062, 0.4, 0.7306947684342902, 0.6611639502228255]}, {"name": "Asus Zen AIO Pro 24 Z240 23.8\" Intel Core i7-7700T / 12GB RAM / 128GB SSD", "score": 57, "image": "/images/WEBP/all-in-one-computer/asus-zen-aio-pro-24-z240-23-8-intel-core-i7-7700t-12gb-ram-128gb-ssd.front.medium2x.1639133312745.webp", "propGroups": ["Performance", "Display", "Connectivity", "Features", "Design", "General info", "Miscellaneous"], "propScore": [0.5228875007187216, 0.7137122305832148, 0.8843572534847701, 0.3333333333333333, 0.5215688891449419, 0.5568017991236806]}, {"name": "Asus Zen AIO Pro 24 Z240 23.8\" Intel Core i7-7700T / 12GB RAM / 512GB SSD + 1TB HDD", "score": 57, "image": "/images/WEBP/all-in-one-computer/asus-zen-aio-pro-24-z240-23-8-intel-core-i7-7700t-12gb-ram-512gb-ssd-1tb-hdd.front.medium2x.1639134042953.webp", "propGroups": ["Performance", "Display", "Connectivity", "Features", "Design", "General info", "Miscellaneous"], "propScore": [0.42918547620983827, 0.5918009587969694, 0.8766133195663395, 0.20833333333333334, 0.7156941029683538, 0.686959272329091]}, {"name": "Dell Inspiron 24 5000 All-in-One 23.8\" Intel Core i7-1165G7 / 16GB RAM / 256GB SSD + 1TB HDD", "score": 77, "image": "/images/WEBP/all-in-one-computer/dell-inspiron-24-5000-all-in-one-23-8-intel-core-i7-1165g7-16gb-ram-256gb-ssd-1tb-hdd.front.medium2x.1638984434610.webp", "propGroups": ["Performance", "Display", "Connectivity", "Features", "Design", "General info", "Miscellaneous"], "propScore": [0.5677157460175938, 0.5596596235859662, 0.8670302013422817, 0.4, 0.7721845342355099, 0.6818723689975621]}, {"name": "Dell Inspiron 24 5000 All-in-One 23.8\" Intel Core i7-1165G7 / 16GB RAM / 512GB SSD", "score": 79, "image": "/images/WEBP/all-in-one-computer/dell-inspiron-24-5000-all-in-one-23-8-intel-core-i7-1165g7-16gb-ram-512gb-ssd.front.medium2x.1639129876701.webp", "propGroups": ["Performance", "Display", "Connectivity", "Features", "Design", "General info", "Miscellaneous"], "propScore": [0.6623350370205261, 0.5596596235859662, 0.9741868869385646, 0.4, 0.7721845342355099, 0.701653223178124]}, {"name": "Dell Inspiron 24 5400 23.8\" Intel Core i5-10210U / 16GB RAM / 512GB SSD", "score": 56, "image": "/images/WEBP/all-in-one-computer/dell-inspiron-24-5400-23-8-intel-core-i5-10210u-16gb-ram-512gb-ssd.front.medium2x.1638981877705.webp", "propGroups": ["Performance", "Display", "Connectivity", "Features", "Design", "General info", "Miscellaneous"], "propScore": [0.44478744764645056, 0.49870398769284346, 0.8890036138358285, 0.2, 0.5780593204120981, 0.7442748629991444]}, {"name": "Dell Inspiron 24 5000 All-in-One 23.8\" Intel Core i5-1135G7 / 12GB RAM / 256GB SSD + 1TB HDD", "score": 74, "image": "/images/WEBP/all-in-one-computer/dell-inspiron-24-5000-all-in-one-23-8-intel-core-i5-1135g7-12gb-ram-256gb-ssd-1tb-hdd.front.medium2x.1639129734552.webp", "propGroups": ["Performance", "Display", "Connectivity", "Features", "Design", "General info", "Miscellaneous"], "propScore": [0.5459992991679794, 0.6815708953722116, 0.9741868869385646, 0.4, 0.7721845342355099, 0.6448536578888386]}, {"name": "Dell Inspiron 24 5400 23.8\" Intel Core i5-1135G7 / 8GB RAM / 256GB SSD", "score": 69, "image": "/images/WEBP/all-in-one-computer/dell-inspiron-24-5400-23-8-intel-core-i5-1135g7-8gb-ram-256gb-ssd.front.medium2x.1638981978689.webp", "propGroups": ["Performance", "Display", "Connectivity", "Features", "Design", "General info", "Miscellaneous"], "propScore": [0.5394670121913402, 0.5596596235859662, 0.8890036138358285, 0.2, 0.5780593204120981, 0.7383863818305579]}, {"name": "Dell Inspiron 27 7790 27\" Intel Core i5-10210U / 8GB RAM / 256GB SSD", "score": 63, "image": "/images/WEBP/all-in-one-computer/dell-inspiron-27-7790-27-intel-core-i5-10210u-8gb-ram-256gb-ssd.front.medium2x.1641289474581.webp", "propGroups": ["Performance", "Display", "Connectivity", "Features", "Design", "General info", "Miscellaneous"], "propScore": [0.43172287369317197, 0.7041108876951885, 0.9354672173464119, 0.375, 0.6956514928816895, 0.7132571663341123]}, {"name": "Dell Inspiron 24 5400 AIO 23.8\" Intel Core i3-1115G4 / 8GB RAM / 1TB HDD", "score": 67, "image": "/images/WEBP/all-in-one-computer/dell-inspiron-24-5400-aio-23-8-intel-core-i3-1115g4-8gb-ram-1tb-hdd.front.medium2x.1639584165927.webp", "propGroups": ["Performance", "Display", "Connectivity", "Features", "Design", "General info", "Miscellaneous"], "propScore": [0.4496175405964807, 0.5596596235859662, 0.9741868869385646, 0.4, 0.7721845342355099, 0.5108201523689514]}, {"name": "Dell Inspiron 27 7700 27\" AIO Intel Core i7-1165G7 / 12GB RAM / 1TB HDD + 256GB SSD", "score": 75, "image": "/images/WEBP/all-in-one-computer/dell-inspiron-27-7700-27-aio-intel-core-i7-1165g7-12gb-ram-1tb-hdd-256gb-ssd.front.medium2x.1639582631602.webp", "propGroups": ["Performance", "Display", "Connectivity", "Features", "Design", "General info", "Miscellaneous"], "propScore": [0.5739093988376638, 0.5698299723649035, 0.9586990191017036, 0.4, 0.6972249039819778, 0.5807227265680172]}, {"name": "Dell XPS 27-7760 All in One 27\" Intel Core i5-6400 / 8GB RAM / 1TB HDD", "score": 49, "image": "/images/WEBP/all-in-one-computer/dell-xps-27-7760-all-in-one-27-intel-core-i5-6400-8gb-ram-1tb-hdd.front.medium2x.1639131806149.webp", "propGroups": ["Performance", "Display", "Connectivity", "Features", "Design", "General info", "Miscellaneous"], "propScore": [0.42219940861795324, 0.7760388452444565, 0.9244966442953018, 0.4, 0.3895615277694054, 0.40532110729867976]}, {"name": "Dell OptiPlex 7460 All-in-One 23.8\" Intel Core i5-8500 / 8GB RAM / 500GB HDD", "score": 63, "image": "/images/WEBP/all-in-one-computer/dell-optiplex-7460-all-in-one-23-8-intel-core-i5-8500-8gb-ram-500gb-hdd.front.medium2x.1639131017599.webp", "propGroups": ["Performance", "Display", "Connectivity", "Features", "Design", "General info", "Miscellaneous"], "propScore": [0.5743345478574974, 0.33103599185034327, 0.9339184305627257, 0.2, 0.6023165500723388, 0.4266188849522663]}, {"name": "Dell XPS 27-7760 All in One 27\" Intel Core i7-6700 / 16GB RAM / 2TB HDD", "score": 55, "image": "/images/WEBP/all-in-one-computer/dell-xps-27-7760-all-in-one-27-intel-core-i7-6700-16gb-ram-2tb-hdd.front.medium2x.1640088037228.webp", "propGroups": ["Performance", "Display", "Connectivity", "Features", "Design", "General info", "Miscellaneous"], "propScore": [0.5162269789586184, 0.897950117030702, 0.7802013422818792, 0.4, 0.3929331229843087, 0.4257672224673827]}, {"name": "Dell Inspiron 5400 AIO 23.8\" Intel Core i5-1135G7 / 8GB RAM / 512GB SSD", "score": 71, "image": "/images/WEBP/all-in-one-computer/dell-inspiron-5400-aio-23-8-intel-core-i5-1135g7-8gb-ram-512gb-ssd.front.medium2x.1639581820410.webp", "propGroups": ["Performance", "Display", "Connectivity", "Features", "Design", "General info", "Miscellaneous"], "propScore": [0.5394670121913402, 0.5433407919295397, 0.9664429530201342, 0.4, 0.7715094984418458, 0.6241571729345758]}, {"name": "HP 21 All-in-One (b1001na) 21\" AMD 3020e / 8GB RAM / 256GB SSD", "score": 43, "image": "/images/WEBP/all-in-one-computer/hp-21-all-in-one-b1001na-21-amd-3020e-8gb-ram-256gb-ssd.front.medium2x.1641394668550.webp", "propGroups": ["Performance", "Display", "Connectivity", "Features", "Design", "General info", "Miscellaneous"], "propScore": [0.2559060521179538, 0.16812129672184542, 0.6442953020134228, 0.4, 0.6376040992009638, 0.7108385787181544]}, {"name": "HP 22 All-in-One (df0003w) 21.5\" Intel Celeron G5900T / 4GB RAM / 256GB SSD", "score": 43, "image": "/images/WEBP/all-in-one-computer/hp-22-all-in-one-df0003w-21-5-intel-celeron-g5900t-4gb-ram-256gb-ssd.front.medium2x.1639414588014.webp", "propGroups": ["Performance", "Display", "Connectivity", "Features", "Design", "General info", "Miscellaneous"], "propScore": [0.36651250623206594, 0.2166473463183015, 0.674496644295302, 0.4, 0.7791717520745546, 0.6738715808314828]}, {"name": "Gateway GWAP42424 All-in-One 23.8\" Intel Pentium Silver J5040 2.0GHz / 4GB RAM / 128GB SSD", "score": 42, "image": "/images/WEBP/all-in-one-computer/gateway-gwap42424-all-in-one-23-8-intel-pentium-silver-j5040-2-0ghz-4gb-ram-128gb-ssd.front.medium2x.1658841313159.webp", "propGroups": ["Performance", "Display", "Connectivity", "Features", "Design", "General info", "Miscellaneous"], "propScore": [0.33982146107183847, 0.12637228573415416, 0.6791946308724832, 0.20833333333333334, 0.6239927288856185, 0.6313875618281626]}, {"name": "Dell XPS 27-7760 All in One 27\" Intel Core i7-7700 / 32GB RAM / 2 TB HDD", "score": 58, "image": "/images/WEBP/all-in-one-computer/dell-xps-27-7760-all-in-one-27-intel-core-i7-7700-32gb-ram-2-tb-hdd.front.medium2x.1639131670043.webp", "propGroups": ["Performance", "Display", "Connectivity", "Features", "Design", "General info", "Miscellaneous"], "propScore": [0.6001464200305924, 0.7760388452444565, 0.8533815178110479, 0.375, 0.3929331229843087, 0.4250273255980272]}, {"name": "HP 22 All-in-One (df0005np) 21.5\" Intel Celeron J4025 / 8GB RAM / 256GB SSD", "score": 41, "image": "/images/WEBP/all-in-one-computer/hp-22-all-in-one-df0005np-21-5-intel-celeron-j4025-8gb-ram-256gb-ssd.front.medium2x.1644324819782.webp", "propGroups": ["Performance", "Display", "Connectivity", "Features", "Design", "General info", "Miscellaneous"], "propScore": [0.2575422572722463, 0.3176686851437992, 0.7667785234899329, 0.4, 0.8058410702244392, 0.6340046645697566]}, {"name": "HP 22 All-in-One (df0022) 21.5\" AMD Athlon Gold 3150U / 4GB RAM / 256GB SSD", "score": 43, "image": "/images/WEBP/all-in-one-computer/hp-22-all-in-one-df0022-21-5-amd-athlon-gold-3150u-4gb-ram-256gb-ssd.front.medium2x.1640094264469.webp", "propGroups": ["Performance", "Display", "Connectivity", "Features", "Design", "General info", "Miscellaneous"], "propScore": [0.3376560522452724, 0.3176686851437992, 0.674496644295302, 0.4, 0.8058747861765883, 0.6722764268281948]}, {"name": "HP 22 All-in-One (df0128t) 21.5\" Intel Core i3-10110U / 8GB RAM / 1TB HDD + 128GB SSD", "score": 58, "image": "/images/WEBP/all-in-one-computer/hp-22-all-in-one-df0128t-21-5-intel-core-i3-10110u-8gb-ram-1tb-hdd-128gb-ssd.front.medium2x.1639568917829.webp", "propGroups": ["Performance", "Display", "Connectivity", "Features", "Design", "General info", "Miscellaneous"], "propScore": [0.3575306995467857, 0.3176686851437992, 0.8338926174496644, 1, 1, 0.730493764686207]}, {"name": "HP 22 All-in-One (df0120m) 21.5\" AMD Athlon Gold 3150U / 8GB RAM / 1TB HDD + 128GB SSD", "score": 42, "image": "/images/WEBP/all-in-one-computer/hp-22-all-in-one-df0120m-21-5-amd-athlon-gold-3150u-8gb-ram-1tb-hdd-128gb-ssd.front.medium2x.1640019202794.webp", "propGroups": ["Performance", "Display", "Connectivity", "Features", "Design", "General info", "Miscellaneous"], "propScore": [0.34418833922191167, 0.2166473463183015, 0.6076876143990237, 0.4, 0.8058747861765883, 0.5674527159955274]}, {"name": "HP 22 All-in-One (df0222) 21.5\" AMD Athlon Gold 3150U / 4GB RAM / 256GB SSD", "score": 48, "image": "/images/WEBP/all-in-one-computer/hp-22-all-in-one-df0222-21-5-amd-athlon-gold-3150u-4gb-ram-256gb-ssd.front.medium2x.1639571563402.webp", "propGroups": ["Performance", "Display", "Connectivity", "Features", "Design", "General info", "Miscellaneous"], "propScore": [0.3376560522452724, 0.4308720089453128, 0.7583892617449663, 0.4, 0.8058747861765883, 0.8767385730002633]}, {"name": "HP 24 All-in-One (cb0146z) 23.8\" AMD Ryzen 5 5500U / 16GB RAM / 1TB HDD + 512GB SSD", "score": 60, "image": "/images/WEBP/all-in-one-computer/hp-24-all-in-one-cb0146z-23-8-amd-ryzen-5-5500u-16gb-ram-1tb-hdd-512gb-ssd.front.medium2x.1639496910278.webp", "propGroups": ["Performance", "Display", "Connectivity", "Features", "Design", "General info", "Miscellaneous"], "propScore": [0.7555886251976738, 0.34987895048469825, 0.733221476510067, 0.4, 0.7609235100230045, 0.6825436740237795]}, {"name": "HP 22 All-in-One (df10266t) 21.5\" Intel Core i3-1115G4 / 8GB RAM / 1TB HDD + 128GB SSD", "score": 64, "image": "/images/WEBP/all-in-one-computer/hp-22-all-in-one-df10266t-21-5-intel-core-i3-1115g4-8gb-ram-1tb-hdd-128gb-ssd.front.medium2x.1639569427342.webp", "propGroups": ["Performance", "Display", "Connectivity", "Features", "Design", "General info", "Miscellaneous"], "propScore": [0.4627096963385417, 0.374270347044556, 0.8338926174496644, 0.4, 0.8058747861765883, 0.7665852179441414]}, {"name": "HP 24 All-in-One (cb0090) 23.8\" AMD Ryzen 7 5700U / 16GB RAM / 256GB SSD + 1TB HDD", "score": 60, "image": "/images/WEBP/all-in-one-computer/hp-24-all-in-one-cb0090-23-8-amd-ryzen-7-5700u-16gb-ram-256gb-ssd-1tb-hdd.front.medium2x.1640095162524.webp", "propGroups": ["Performance", "Display", "Connectivity", "Features", "Design", "General info", "Miscellaneous"], "propScore": [0.7610987198420271, 0.4377483517997208, 0.6577181208053691, 0.4, 0.7658869224957466, 0.6656091849779009]}, {"name": "HP 24 All-in-One (dd0010) 23.8\" AMD Athlon Silver 3050U / 8GB RAM / 256GB SSD", "score": 49, "image": "/images/WEBP/all-in-one-computer/hp-24-all-in-one-dd0010-23-8-amd-athlon-silver-3050u-8gb-ram-256gb-ssd.front.medium2x.1640094625031.webp", "propGroups": ["Performance", "Display", "Connectivity", "Features", "Design", "General info", "Miscellaneous"], "propScore": [0.36777678470657493, 0.31583708001347544, 0.7751677852348994, 0.4, 0.7658869224957466, 0.6706613831241177]}, {"name": "HP 24 All-in-One (df0040) 23.8\" AMD Athlon Gold 3150U / 8GB RAM / 512GB SSD", "score": 47, "image": "/images/WEBP/all-in-one-computer/hp-24-all-in-one-df0040-23-8-amd-athlon-gold-3150u-8gb-ram-512gb-ssd.front.medium2x.1641223498600.webp", "propGroups": ["Performance", "Display", "Connectivity", "Features", "Design", "General info", "Miscellaneous"], "propScore": [0.34418833922191167, 0.46308227428621185, 0.7175106772422208, 0.4, 0.7658869224957466, 0.6755296181127857]}, {"name": "HP 24 All-in-One (df0021) 23.8\" AMD Athlon Silver 3050U / 4GB RAM / 1TB HDD", "score": 46, "image": "/images/WEBP/all-in-one-computer/hp-24-all-in-one-df0021-23-8-amd-athlon-silver-3050u-4gb-ram-1tb-hdd.front.medium2x.1639740220477.webp", "propGroups": ["Performance", "Display", "Connectivity", "Features", "Design", "General info", "Miscellaneous"], "propScore": [0.23691398810903283, 0.19392580822723002, 0.7667785234899329, 0.4, 0.7658869224957466, 0.5254549000650073]}, {"name": "HP 24 All-in-One (df0130m) 23.8\" AMD Ryzen 3 3250U / 8GB RAM / 1TB HDD + 256GB SSD", "score": 47, "image": "/images/WEBP/all-in-one-computer/hp-24-all-in-one-df0130m-23-8-amd-ryzen-3-3250u-8gb-ram-1tb-hdd-256gb-ssd.front.medium2x.1639494564490.webp", "propGroups": ["Performance", "Display", "Connectivity", "Features", "Design", "General info", "Miscellaneous"], "propScore": [0.4173267552714375, 0.31583708001347544, 0.7667785234899329, 0.4, 0.7658756838450302, 0.6265891721757757]}, {"name": "HP 24 All-in-One (df1036xt) 23.8\" Intel Core i5-1135G7 / 8GB RAM / 1TB HDD + 256GB SSD", "score": 67, "image": "/images/WEBP/all-in-one-computer/hp-24-all-in-one-df1036xt-23-8-intel-core-i5-1135g7-8gb-ram-1tb-hdd-256gb-ssd.front.medium2x.1639498367102.webp", "propGroups": ["Performance", "Display", "Connectivity", "Features", "Design", "General info", "Miscellaneous"], "propScore": [0.5525591679334011, 0.4064806123854551, 0.8338926174496644, 0.4, 0.7609235100230045, 0.6294389685048418]}, {"name": "HP 24 All-in-One (df1270) 23.8\" Intel Core i5-1135G7 / 8GB RAM / 512GB SSD", "score": 67, "image": "/images/WEBP/all-in-one-computer/hp-24-all-in-one-df1270-23-8-intel-core-i5-1135g7-8gb-ram-512gb-ssd.front.medium2x.1640094102387.webp", "propGroups": ["Performance", "Display", "Connectivity", "Features", "Design", "General info", "Miscellaneous"], "propScore": [0.5525591679334011, 0.5196839361869686, 0.7416107382550334, 0.4, 0.7658756838450302, 0.7148873580343104]}, {"name": "HP 24 All-in-One (df0138xt) 23.8\" Intel Core i5-10210U / 8GB RAM / 1TB HDD + 256GB SSD", "score": 54, "image": "/images/WEBP/all-in-one-computer/hp-24-all-in-one-df0138xt-23-8-intel-core-i5-10210u-8gb-ram-1tb-hdd-256gb-ssd.front.medium2x.1639493864873.webp", "propGroups": ["Performance", "Display", "Connectivity", "Features", "Design", "General info", "Miscellaneous"], "propScore": [0.43172287369317197, 0.34987895048469825, 0.8338926174496644, 0.4, 0.7658756838450302, 0.5933475152469077]}, {"name": "HP 24 All-in-One (df1250) 23.8\" Intel Core i3-1115G4 / 8GB RAM / 512GB SSD", "score": 63, "image": "/images/WEBP/all-in-one-computer/hp-24-all-in-one-df1250-23-8-intel-core-i3-1115g4-8gb-ram-512gb-ssd.front.medium2x.1639740154084.webp", "propGroups": ["Performance", "Display", "Connectivity", "Features", "Design", "General info", "Miscellaneous"], "propScore": [0.4627096963385417, 0.4064806123854551, 0.8338926174496644, 0.4, 0.7658869224957466, 0.6782147277193179]}, {"name": "HP 24 All-in-One (dp0140z) 23.8\" AMD Ryzen 5 3500U / 16GB RAM / 1TB HDD + 256GB SSD", "score": 55, "image": "/images/WEBP/all-in-one-computer/hp-24-all-in-one-dp0140z-23-8-amd-ryzen-5-3500u-16gb-ram-1tb-hdd-256gb-ssd.front.medium2x.1639500630264.webp", "propGroups": ["Performance", "Display", "Connectivity", "Features", "Design", "General info", "Miscellaneous"], "propScore": [0.46750629346819295, 0.5196839361869686, 0.8456375838926175, 0.4, 0.7658756838450302, 0.629868586041887]}, {"name": "HP 24 All-in-One (dp0158qe) 23.8\" Intel Core i7-10510U / 16GB RAM / 1TB HDD + 256GB SSD", "score": 56, "image": "/images/WEBP/all-in-one-computer/hp-24-all-in-one-dp0158qe-23-8-intel-core-i7-10510u-16gb-ram-1tb-hdd-256gb-ssd.front.medium2x.1639495446529.webp", "propGroups": ["Performance", "Display", "Connectivity", "Features", "Design", "General info", "Miscellaneous"], "propScore": [0.46475324414921865, 0.46308227428621185, 0.8540268456375838, 0.4, 0.7658756838450302, 0.5933475152469077]}, {"name": "HP 24 All-in-One (dp1056qe) 23.8\" Intel Core i7-1165G7 / 16GB RAM / 1TB HDD + 256GB SSD", "score": 71, "image": "/images/WEBP/all-in-one-computer/hp-24-all-in-one-dp1056qe-23-8-intel-core-i7-1165g7-16gb-ram-1tb-hdd-256gb-ssd.front.medium2x.1639493095239.webp", "propGroups": ["Performance", "Display", "Connectivity", "Features", "Design", "General info", "Miscellaneous"], "propScore": [0.5703692603782123, 0.5196839361869686, 0.8309945088468578, 0.4, 0.7658756838450302, 0.6294389685048418]}, {"name": "HP 24 All-in-One (k0080) 23.8\" Intel Core i7-10700T / 16GB RAM / 1TB HDD + 512GB SSD", "score": 70, "image": "/images/WEBP/all-in-one-computer/hp-24-all-in-one-k0080-23-8-intel-core-i7-10700t-16gb-ram-1tb-hdd-512gb-ssd.front.medium2x.1641819418232.webp", "propGroups": ["Performance", "Display", "Connectivity", "Features", "Design", "General info", "Miscellaneous"], "propScore": [0.6978536409818082, 0.4479290734623872, 1, 0.6666666666666666, 0.7412106873063182, 0.4530742917796671]}, {"name": "HP 27 All-in-One (d0072) 27\" Intel Core i7-10700T / 16GB RAM / 1TB HDD + 512GB SSD", "score": 67, "image": "/images/WEBP/all-in-one-computer/hp-27-all-in-one-d0072-27-intel-core-i7-10700t-16gb-ram-1tb-hdd-512gb-ssd.front.medium2x.1641821208647.webp", "propGroups": ["Performance", "Display", "Connectivity", "Features", "Design", "General info", "Miscellaneous"], "propScore": [0.6978536409818082, 0.4484593212136884, 1, 0.6, 0.6506324575900473, 0.4527449183345991]}, {"name": "HP 27 All-in-One (cb0156m) 27\" AMD Ryzen 5 5500U / 8GB RAM / 1TB HDD + 256GB SSD", "score": 58, "image": "/images/WEBP/all-in-one-computer/hp-27-all-in-one-cb0156m-27-amd-ryzen-5-5500u-8gb-ram-1tb-hdd-256gb-ssd.front.medium2x.1639575651146.webp", "propGroups": ["Performance", "Display", "Connectivity", "Features", "Design", "General info", "Miscellaneous"], "propScore": [0.6553736329669242, 0.375494749179642, 0.733221476510067, 0.4, 0.6904598274464746, 0.6624121144730567]}, {"name": "HP 27 All-in-One (dp0170z) 27\" AMD Ryzen 5 3500U / 16GB RAM / 1TB HDD + 512GB SSD", "score": 58, "image": "/images/WEBP/all-in-one-computer/hp-27-all-in-one-dp0170z-27-amd-ryzen-5-3500u-16gb-ram-1tb-hdd-512gb-ssd.front.medium2x.1639574761135.webp", "propGroups": ["Performance", "Display", "Connectivity", "Features", "Design", "General info", "Miscellaneous"], "propScore": [0.5197965444346756, 0.5291278314816961, 0.8540268456375838, 0.6, 0.697483829919215, 0.6109192703060699]}, {"name": "HP 27 All-in-One (cb0176z) 27\" AMD Ryzen 7 5700U / 16GB RAM / 1TB HDD + 1TB SSD", "score": 61, "image": "/images/WEBP/all-in-one-computer/hp-27-all-in-one-cb0176z-27-amd-ryzen-7-5700u-16gb-ram-1tb-hdd-1tb-ssd.front.medium2x.1639572583603.webp", "propGroups": ["Performance", "Display", "Connectivity", "Features", "Design", "General info", "Miscellaneous"], "propScore": [0.7610987198420271, 0.34342332476187637, 0.733221476510067, 0.4, 0.6904598274464746, 0.7209194594173448]}, {"name": "HP 27 All-in-One (dp0180) 27\" Intel Core i7-1065G7 / 16GB RAM / 512GB SSD", "score": 56, "image": "/images/WEBP/all-in-one-computer/hp-27-all-in-one-dp0180-27-intel-core-i7-1065g7-16gb-ram-512gb-ssd.front.medium2x.1641822370695.webp", "propGroups": ["Performance", "Display", "Connectivity", "Features", "Design", "General info", "Miscellaneous"], "propScore": [0.4778095066852259, 0.475794507013529, 0.6845637583892616, 0.6, 0.5040786064923327, 0.6225739527517612]}, {"name": "HP Chromebase All-in-One 22 (aa0022) 21.5\" Intel Pentium Gold 6405U / 4GB RAM / 128GB SSD", "score": 42, "image": "/images/WEBP/all-in-one-computer/hp-chromebase-all-in-one-22-aa0022-21-5-intel-pentium-gold-6405u-4gb-ram-128gb-ssd.front.medium2x.1639740387888.webp", "propGroups": ["Performance", "Display", "Connectivity", "Features", "Design", "General info", "Miscellaneous"], "propScore": [0.3106011780652415, 0.3552237985905701, 0.6263982102908277, 0.4, 0.9409187157023985, 0.70977685057827]}, {"name": "HP 27 All-in-One (dp1086qe) 27\" Intel Core i7-1165G7 / 16GB RAM / 512GB SSD + 1TB HDD", "score": 73, "image": "/images/WEBP/all-in-one-computer/hp-27-all-in-one-dp1086qe-27-intel-core-i7-1165g7-16gb-ram-512gb-ssd-1tb-hdd.front.medium2x.1639479203162.webp", "propGroups": ["Performance", "Display", "Connectivity", "Features", "Design", "General info", "Miscellaneous"], "propScore": [0.5935338415563641, 0.5475493697381104, 0.8456375838926175, 0.4, 0.697483829919215, 0.6832740238367563]}, {"name": "HP 27 All-in-One (dp0188qe) 27\" Intel Core i7-10510U / 16GB RAM / 1TB HDD + 512GB SSD", "score": 58, "image": "/images/WEBP/all-in-one-computer/hp-27-all-in-one-dp0188qe-27-intel-core-i7-10510u-16gb-ram-1tb-hdd-512gb-ssd.front.medium2x.1639575167267.webp", "propGroups": ["Performance", "Display", "Connectivity", "Features", "Design", "General info", "Miscellaneous"], "propScore": [0.46475324414921865, 0.4725261695809393, 0.8540268456375838, 0.6, 0.697483829919215, 0.6134790747976304]}, {"name": "HP Envy 32 All-in-One 31.5\" (a1050) Intel Core i5-10400 / 16GB RAM / 1TB HDD", "score": 73, "image": "/images/WEBP/all-in-one-computer/hp-envy-32-all-in-one-31-5-a1050-intel-core-i5-10400-16gb-ram-1tb-hdd.front.medium2x.1639579329930.webp", "propGroups": ["Performance", "Display", "Connectivity", "Features", "Design", "General info", "Miscellaneous"], "propScore": [0.6482046030846659, 0.8247076597612112, 0.9232981783317352, 0.5, 0.3241538806377292, 0.46822294903432055]}, {"name": "HP Envy 32 All-in-One (a0014) 31.5\" Intel Core i7-9700 / 16GB RAM / 512GB SSD", "score": 66, "image": "/images/WEBP/all-in-one-computer/hp-envy-32-all-in-one-a0014-31-5-intel-core-i7-9700-16gb-ram-512gb-ssd.front.medium2x.1641816459380.webp", "propGroups": ["Performance", "Display", "Connectivity", "Features", "Design", "General info", "Miscellaneous"], "propScore": [0.6320788259868109, 0.303412123421976, 0.7348993288590603, 0.5, 0.7117854657444707, 0.6213049898414149]}, {"name": "HP Chromebase All-in-One 22 (aa0050t) 21.5\" Intel Pentium Gold 6405U / 8GB RAM / 128GB SSD", "score": 42, "image": "/images/WEBP/all-in-one-computer/hp-chromebase-all-in-one-22-aa0050t-21-5-intel-pentium-gold-6405u-8gb-ram-128gb-ssd.front.medium2x.1641298910687.webp", "propGroups": ["Performance", "Display", "Connectivity", "Features", "Design", "General info", "Miscellaneous"], "propScore": [0.3236550257673269, 0.23331252680432468, 0.6644295302013422, 0.2, 0.9409187157023985, 0.6485117177347862]}, {"name": "HP Chromebase All-in-One 22 (aa0130xt) 21.5\" Intel Core i3-10110U / 16GB RAM / 256GB SSD", "score": 47, "image": "/images/WEBP/all-in-one-computer/hp-chromebase-all-in-one-22-aa0130xt-21-5-intel-core-i3-10110u-16gb-ram-256gb-ssd.front.medium2x.1639740440575.webp", "propGroups": ["Performance", "Display", "Connectivity", "Features", "Design", "General info", "Miscellaneous"], "propScore": [0.34446612559350714, 0.2166473463183015, 0.5788590604026845, 0.5, 0.9409187157023985, 0.6276447020219039]}, {"name": "HP Envy 32 All-in-One (a0055) 31.5\" Intel Core i7-9700 / 16GB RAM / 1TB HDD + 512GB SSD", "score": 76, "image": "/images/WEBP/all-in-one-computer/hp-envy-32-all-in-one-a0055-31-5-intel-core-i7-9700-16gb-ram-1tb-hdd-512gb-ssd.front.medium2x.1639579160660.webp", "propGroups": ["Performance", "Display", "Connectivity", "Features", "Design", "General info", "Miscellaneous"], "propScore": [0.751526359273929, 0.7161163921240713, 0.9664429530201342, 0.5, 0.6287723872441808, 0.7101955294428713]}, {"name": "HP Envy 32 All-in-One (a1055) 31.5\" Intel Core i7-10700 / 16GB RAM / 1TB HDD + 512GB SSD", "score": 78, "image": "/images/WEBP/all-in-one-computer/hp-envy-32-all-in-one-a1055-31-5-intel-core-i7-10700-16gb-ram-1tb-hdd-512gb-ssd.front.medium2x.1639578245629.webp", "propGroups": ["Performance", "Display", "Connectivity", "Features", "Design", "General info", "Miscellaneous"], "propScore": [0.8563685464632098, 0.7267254527502626, 0.904602109300096, 0.5, 0.5187572353818883, 0.5988100226716335]}, {"name": "HP Envy 32 All-in-One (a0035) 31.5\" Intel Core i5-9400 / 16GB RAM / 1TB HDD + 256GB SSD", "score": 67, "image": "/images/WEBP/all-in-one-computer/hp-envy-32-all-in-one-a0035-31-5-intel-core-i5-9400-16gb-ram-1tb-hdd-256gb-ssd.front.medium2x.1639577699762.webp", "propGroups": ["Performance", "Display", "Connectivity", "Features", "Design", "General info", "Miscellaneous"], "propScore": [0.5268809028278681, 0.7161163921240713, 0.9354672173464119, 0.5, 0.5187572353818883, 0.7609007414586088]}, {"name": "HP Envy 32 All-in-One (a1035) 31.5\" Intel Core i5-10400 / 16GB RAM / 1TB HDD + 256GB SSD", "score": 69, "image": "/images/WEBP/all-in-one-computer/hp-envy-32-all-in-one-a1035-31-5-intel-core-i5-10400-16gb-ram-1tb-hdd-256gb-ssd.front.medium2x.1639576707825.webp", "propGroups": ["Performance", "Display", "Connectivity", "Features", "Design", "General info", "Miscellaneous"], "propScore": [0.5854658288229216, 0.7161163921240713, 0.8905524006195147, 0.5, 0.5187572353818883, 0.6277491395257976]}, {"name": "Lenovo IdeaCentre AIO 3 24\" AMD Ryzen 3 4300U 2.7GHz / 8GB RAM / 256GB SSD", "score": 51, "image": "/images/WEBP/all-in-one-computer/lenovo-ideacentre-aio-3-24-amd-ryzen-3-4300u-2-7ghz-8gb-ram-256gb-ssd.front.medium2x.1639224296858.webp", "propGroups": ["Performance", "Display", "Connectivity", "Features", "Design", "General info", "Miscellaneous"], "propScore": [0.527371316209709, 0.31583708001347544, 0.8338926174496644, 0.4, 0.702999781045024, 0.6940507470440346]}, {"name": "HP Envy Curved 34-b135se All in One 34\" Intel Core i7-8700T / 16GB RAM / 256GB SSD + 2TB HDD", "score": 65, "image": "/images/WEBP/all-in-one-computer/hp-envy-curved-34-b135se-all-in-one-34-intel-core-i7-8700t-16gb-ram-256gb-ssd-2tb-hdd.front.medium2x.1639477853665.webp", "propGroups": ["Performance", "Display", "Connectivity", "Features", "Design", "General info", "Miscellaneous"], "propScore": [0.5489585789343262, 0.734508503915839, 0.8020134228187918, 0.4, 0.7418450996484882, 0.6725924092007114]}, {"name": "Lenovo IdeaCentre AIO 3 24\" AMD Ryzen 5 5500U / 16GB RAM / 512GB SSD", "score": 59, "image": "/images/WEBP/all-in-one-computer/lenovo-ideacentre-aio-3-24-amd-ryzen-5-5500u-16gb-ram-512gb-ssd.front.medium2x.1640098026774.webp", "propGroups": ["Performance", "Display", "Connectivity", "Features", "Design", "General info", "Miscellaneous"], "propScore": [0.6684382069202027, 0.25488144412035274, 0.7416107382550334, 0.4, 0.746028588515484, 0.7469107455962235]}, {"name": "Lenovo IdeaCentre AIO 3 24\" AMD Ryzen 5 4500U / 16GB RAM / 512GB SSD", "score": 59, "image": "/images/WEBP/all-in-one-computer/lenovo-ideacentre-aio-3-24-amd-ryzen-5-4500u-16gb-ram-512gb-ssd.front.medium2x.1641287313836.webp", "propGroups": ["Performance", "Display", "Connectivity", "Features", "Design", "General info", "Miscellaneous"], "propScore": [0.5927320202714993, 0.5196839361869686, 0.8338926174496644, 0.4, 0.7012088494587038, 0.699939228212621]}, {"name": "Lenovo IdeaCentre AIO 3i 22\" Intel Core i3-10100T / 8GB RAM / 1TB HDD + 128GB SSD", "score": 53, "image": "/images/WEBP/all-in-one-computer/lenovo-ideacentre-aio-3i-22-intel-core-i3-10100t-8gb-ram-1tb-hdd-128gb-ssd.front.medium2x.1639406914436.webp", "propGroups": ["Performance", "Display", "Connectivity", "Features", "Design", "General info", "Miscellaneous"], "propScore": [0.44830865076139936, 0.44305399392132866, 0.8338926174496644, 0.4, 0.5782873499460818, 0.5686126833455493]}, {"name": "Lenovo IdeaCentre AIO 3i 22\" Intel Core i5-10400T / 8GB RAM / 256GB SSD", "score": 60, "image": "/images/WEBP/all-in-one-computer/lenovo-ideacentre-aio-3i-22-intel-core-i5-10400t-8gb-ram-256gb-ssd.front.medium2x.1639406532027.webp", "propGroups": ["Performance", "Display", "Connectivity", "Features", "Design", "General info", "Miscellaneous"], "propScore": [0.552888154149904, 0.44305399392132866, 0.8338926174496644, 0.4, 0.7724125637694937, 0.6165799606984287]}, {"name": "Lenovo IdeaCentre AIO 3i 21.5\" Intel Core i3-1115G4 / 16GB RAM / 256GB SSD + 1TB HDD", "score": 62, "image": "/images/WEBP/all-in-one-computer/lenovo-ideacentre-aio-3i-21-5-intel-core-i3-1115g4-16gb-ram-256gb-ssd-1tb-hdd.front.medium2x.1641823804457.webp", "propGroups": ["Performance", "Display", "Connectivity", "Features", "Design", "General info", "Miscellaneous"], "propScore": [0.4888419088882968, 0.403060373740291, 0.6325503355704698, 0.4, 0.7898087909372463, 0.6177570363734812]}, {"name": "Lenovo IdeaCentre AIO 3i 22\" Intel Core i5-1035G4 / 8GB RAM / 256GB SSD", "score": 53, "image": "/images/WEBP/all-in-one-computer/lenovo-ideacentre-aio-3i-22-intel-core-i5-1035g4-8gb-ram-256gb-ssd.front.medium2x.1639406998875.webp", "propGroups": ["Performance", "Display", "Connectivity", "Features", "Design", "General info", "Miscellaneous"], "propScore": [0.4411227612789448, 0.44305399392132866, 0.8338926174496644, 0.4, 0.5782873499460818, 0.5782763749187277]}, {"name": "Lenovo IdeaCentre AIO 3i 24\" Intel Core i5-10400T / 16GB RAM / 256GB SSD + 1TB HDD", "score": 59, "image": "/images/WEBP/all-in-one-computer/lenovo-ideacentre-aio-3i-24-intel-core-i5-10400t-16gb-ram-256gb-ssd-1tb-hdd.front.medium2x.1639152166674.webp", "propGroups": ["Performance", "Display", "Connectivity", "Features", "Design", "General info", "Miscellaneous"], "propScore": [0.5659527281031825, 0.3786682739340788, 0.8422818791946309, 0.4, 0.7291706124409678, 0.6151207707007651]}, {"name": "Lenovo IdeaCentre AIO 3i 22\" Intel Pentium Gold G6400T / 4GB RAM / 1TB HDD", "score": 51, "image": "/images/WEBP/all-in-one-computer/lenovo-ideacentre-aio-3i-22-intel-pentium-gold-g6400t-4gb-ram-1tb-hdd.front.medium2x.1639404405715.webp", "propGroups": ["Performance", "Display", "Connectivity", "Features", "Design", "General info", "Miscellaneous"], "propScore": [0.40195419400588717, 0.44305399392132866, 0.8338926174496644, 0.4, 0.7724125637694937, 0.46822294903432055]}, {"name": "Lenovo IdeaCentre AIO 5i 24\" Intel Core i5-10400T / 12GB RAM / 256GB SSD", "score": 63, "image": "/images/WEBP/all-in-one-computer/lenovo-ideacentre-aio-5i-24-intel-core-i5-10400t-12gb-ram-256gb-ssd.front.medium2x.1639395355913.webp", "propGroups": ["Performance", "Display", "Connectivity", "Features", "Design", "General info", "Miscellaneous"], "propScore": [0.5594204411265432, 0.46308227428621185, 0.8372483221476509, 0.4, 0.9771098551167583, 0.6165799606984287]}, {"name": "Lenovo IdeaCentre AIO 3i 24\" Intel Core i3-10100T / 8GB RAM / 256GB SSD", "score": 55, "image": "/images/WEBP/all-in-one-computer/lenovo-ideacentre-aio-3i-24-intel-core-i3-10100t-8gb-ram-256gb-ssd.front.medium2x.1639223048203.webp", "propGroups": ["Performance", "Display", "Connectivity", "Features", "Design", "General info", "Miscellaneous"], "propScore": [0.5135978094526136, 0.46308227428621185, 0.8338926174496644, 0.4, 0.5350453986175561, 0.6165799606984287]}, {"name": "Lenovo ThinkCentre M70a All-in-One 21.5\" Intel Core i7-10700 / 16GB RAM / 512GB SSD", "score": 76, "image": "/images/WEBP/all-in-one-computer/lenovo-thinkcentre-m70a-all-in-one-21-5-intel-core-i7-10700-16gb-ram-512gb-ssd.front.medium2x.1640017342937.webp", "propGroups": ["Performance", "Display", "Connectivity", "Features", "Design", "General info", "Miscellaneous"], "propScore": [0.7900634542879548, 0.44305399392132866, 0.9479865771812079, 0.6, 0.7839888327277654, 0.6218141661816167]}, {"name": "Lenovo ThinkCentre M70a All-in-One 21.5\" intel Core i5-10500 / 8GB RAM / 256GB SSD", "score": 67, "image": "/images/WEBP/all-in-one-computer/lenovo-thinkcentre-m70a-all-in-one-21-5-intel-core-i5-10500-8gb-ram-256gb-ssd.front.medium2x.1640017806259.webp", "propGroups": ["Performance", "Display", "Connectivity", "Features", "Design", "General info", "Miscellaneous"], "propScore": [0.6607188183033655, 0.44305399392132866, 0.9479865771812079, 0.6, 0.7839888327277654, 0.6165799606984287]}, {"name": "Lenovo IdeaCentre AIO 5i 24\" Intel Core i7-10700T / 16GB RAM / 512GB SSD", "score": 66, "image": "/images/WEBP/all-in-one-computer/lenovo-ideacentre-aio-5i-24-intel-core-i7-10700t-16gb-ram-512gb-ssd.front.medium2x.1639397771906.webp", "propGroups": ["Performance", "Display", "Connectivity", "Features", "Design", "General info", "Miscellaneous"], "propScore": [0.6978536409818082, 0.46308227428621185, 0.9043624161073823, 0.4, 0.7829846412933464, 0.6218141661816167]}, {"name": "Lenovo ThinkCentre M70a All-in-One 21.5\" Intel Core i3-10100 / 4GB RAM / 500GB HDD", "score": 58, "image": "/images/WEBP/all-in-one-computer/lenovo-thinkcentre-m70a-all-in-one-21-5-intel-core-i3-10100-4gb-ram-500gb-hdd.front.medium2x.1640018138631.webp", "propGroups": ["Performance", "Display", "Connectivity", "Features", "Design", "General info", "Miscellaneous"], "propScore": [0.5570543130887791, 0.329850670119815, 0.787065283709579, 0.2, 0.5898636189043537, 0.5152498778812152]}, {"name": "Lenovo ThinkCentre M90a All-in-One 23.8\" Intel Core i3-10100 / 4GB RAM / 500GB HDD", "score": 59, "image": "/images/WEBP/all-in-one-computer/lenovo-thinkcentre-m90a-all-in-one-23-8-intel-core-i3-10100-4gb-ram-500gb-hdd.front.medium2x.1640018300962.webp", "propGroups": ["Performance", "Display", "Connectivity", "Features", "Design", "General info", "Miscellaneous"], "propScore": [0.5570543130887791, 0.34987895048469825, 0.8968883465527759, 0.6, 0.7442765344748552, 0.45868011921695717]}, {"name": "Lenovo ThinkCentre M90a All-in-One 23.8\" Intel Core i7-10700 / 16GB RAM / 512GB SSD", "score": 74, "image": "/images/WEBP/all-in-one-computer/lenovo-thinkcentre-m90a-all-in-one-23-8-intel-core-i7-10700-16gb-ram-512gb-ssd.front.medium2x.1640018875100.webp", "propGroups": ["Performance", "Display", "Connectivity", "Features", "Design", "General info", "Miscellaneous"], "propScore": [0.7900634542879548, 0.34987895048469825, 0.9983221476510066, 0.6, 0.5502637071586068, 0.6224943939486047]}, {"name": "Lenovo Yoga 7 AIO 27\" AMD Ryzen 7 5800H / 16GB RAM / 1TB SSD", "score": 46, "image": "/images/WEBP/all-in-one-computer/lenovo-yoga-7-aio-27-amd-ryzen-7-5800h-16gb-ram-1tb-ssd.front.medium2x.1651856361582.webp", "propGroups": ["Performance", "Display", "Connectivity", "Features", "Design", "General info"], "propScore": [0.6269156711654875, 0.6757260271211286, 0.8378936499741868, 0.2, 0.6401766202204809, 0.6578274676906559]}, {"name": "Lenovo ThinkCentre M90a All-in-One 23.8\" Intel Pentium Gold G6400 / 4GB RAM / 128GB HDD", "score": 55, "image": "/images/WEBP/all-in-one-computer/lenovo-thinkcentre-m90a-all-in-one-23-8-intel-pentium-gold-g6400-4gb-ram-128gb-hdd.front.medium2x.1640018739711.webp", "propGroups": ["Performance", "Display", "Connectivity", "Features", "Design", "General info", "Miscellaneous"], "propScore": [0.4315035303677148, 0.38222275728513067, 0.8968883465527759, 0.6, 0.7442765344748552, 0.6146430857238229]}, {"name": "Lenovo Yoga A940 AIO 27\" Intel Core i7-9700K / 16GB RAM / 512GB SSD", "score": 73, "image": "/images/WEBP/all-in-one-computer/lenovo-yoga-a940-aio-27-intel-core-i7-9700k-16gb-ram-512gb-ssd.front.medium2x.1640088586412.webp", "propGroups": ["Performance", "Display", "Connectivity", "Features", "Design", "General info", "Miscellaneous"], "propScore": [0.6735335064653122, 0.7133038127414812, 0.8020134228187918, 0.5, 0.4004013843372132, 0.8266900181300989]}, {"name": "Lenovo Yoga A940 AIO 27\" Intel Core i9-9900K / 64GB RAM / 8TB SSD", "score": 82, "image": "/images/WEBP/all-in-one-computer/lenovo-yoga-a940-aio-27-intel-core-i9-9900k-64gb-ram-8tb-ssd.front.medium2x.1640090147361.webp", "propGroups": ["Performance", "Display", "Connectivity", "Features", "Design", "General info", "Miscellaneous"], "propScore": [0.816628891157615, 0.7133038127414812, 0.785234899328859, 0.6, 0.3992775192655787, 0.8162216071637229]}, {"name": "Lenovo Yoga A940 AIO 27\" Intel Core i7-8700K / 32GB RAM / 8TB SSD", "score": 68, "image": "/images/WEBP/all-in-one-computer/lenovo-yoga-a940-aio-27-intel-core-i7-8700k-32gb-ram-8tb-ssd.front.medium2x.1640089148036.webp", "propGroups": ["Performance", "Display", "Connectivity", "Features", "Design", "General info", "Miscellaneous"], "propScore": [0.6752500727219763, 0.7133038127414812, 0.785234899328859, 0.6, 0.3992775192655787, 0.7354694219598671]}, {"name": "Lenovo Yoga A940 AIO 27\" Intel Core i7-9700K / 32GB RAM / 2TB SSD + 2TB HDD", "score": 76, "image": "/images/WEBP/all-in-one-computer/lenovo-yoga-a940-aio-27-intel-core-i7-9700k-32gb-ram-2tb-ssd-2tb-hdd.front.medium2x.1640090561029.webp", "propGroups": ["Performance", "Display", "Connectivity", "Features", "Design", "General info", "Miscellaneous"], "propScore": [0.6959299189566469, 0.7133038127414812, 0.785234899328859, 0.6, 0.3992775192655787, 0.9186144829656767]}, {"name": "Microsoft Surface Studio 2 Plus 28\" Intel Core i7-11370H / 32GB RAM / 1TB SSD", "score": 100, "image": "/images/WEBP/all-in-one-computer/microsoft-surface-studio-2-plus-28-intel-core-i7-11370h-32gb-ram-1tb-ssd.front.medium2x.1666964189348.webp", "propGroups": ["Performance", "Display", "Connectivity", "Features", "Design", "General info", "Miscellaneous"], "propScore": [0.7871597993710772, 1, 0.6268456375838926, 0.6, 0.4693253411183332, 1]}, {"name": "Microsoft Surface Studio 2 28\" Intel Core i7-7820HQ / 16GB RAM / 1TB SSD", "score": 61, "image": "/images/WEBP/all-in-one-computer/microsoft-surface-studio-2-28-intel-core-i7-7820hq-16gb-ram-1tb-ssd.front.medium2x.1653474554715.webp", "propGroups": ["Performance", "Display", "Connectivity", "Features", "Design", "General info", "Miscellaneous"], "propScore": [0.4925442855912255, 0.8838997663194673, 0.7888956680902989, 0.5, 0.2752001272949214, 0.7726003441305421]}, {"name": "MSI Modern AM241P AIO 23.8\" Intel Core i5-1135G7 / 16GB RAM / 256GB SSD", "score": 70, "image": "/images/WEBP/all-in-one-computer/msi-modern-am241p-aio-23-8-intel-core-i5-1135g7-16gb-ram-256gb-ssd.front.medium2x.1639137228480.webp", "propGroups": ["Performance", "Display", "Connectivity", "Features", "Design", "General info", "Miscellaneous"], "propScore": [0.5656237418866797, 0.4377483517997208, 0.8781621063500259, 0.4, 0.7000226270776101, 0.7387801979061827]}, {"name": "Microsoft Surface Studio 2 28\" Intel Core i7-7820HQ / 32GB RAM / 2TB SSD", "score": 64, "image": "/images/WEBP/all-in-one-computer/microsoft-surface-studio-2-28-intel-core-i7-7820hq-32gb-ram-2tb-ssd.front.medium2x.1653472681139.webp", "propGroups": ["Performance", "Display", "Connectivity", "Features", "Design", "General info", "Miscellaneous"], "propScore": [0.5448025814043397, 0.8838997663194673, 0.7888956680902989, 0.5, 0.6634505549417451, 0.7930464592992451]}, {"name": "MSI Modern AM241P AIO 23.8\" Intel Core i7-1165G7 / 16GB RAM / 512GB SSD", "score": 75, "image": "/images/WEBP/all-in-one-computer/msi-modern-am241p-aio-23-8-intel-core-i7-1165g7-16gb-ram-512gb-ssd.front.medium2x.1639138256805.webp", "propGroups": ["Performance", "Display", "Connectivity", "Features", "Design", "General info", "Miscellaneous"], "propScore": [0.5935338415563641, 0.4377483517997208, 0.9323696437790397, 0.4, 0.7000226270776101, 0.7446686790747691]}, {"name": "MSI Modern AM242TP AIO 23.8\" Intel Core i5-1135G7 / 8GB RAM / 256GB SSD", "score": 71, "image": "/images/WEBP/all-in-one-computer/msi-modern-am242tp-aio-23-8-intel-core-i5-1135g7-8gb-ram-256gb-ssd.front.medium2x.1639139676452.webp", "propGroups": ["Performance", "Display", "Connectivity", "Features", "Design", "General info", "Miscellaneous"], "propScore": [0.5525591679334011, 0.5596596235859662, 0.8204697986577181, 0.4, 0.7000226270776101, 0.7401227527094487]}, {"name": "MSI Pro AP241 11M AIO 23.8\" Intel Core i3-10105 / 8GB RAM / 500GB SSD", "score": 58, "image": "/images/WEBP/all-in-one-computer/msi-pro-ap241-11m-aio-23-8-intel-core-i3-10105-8gb-ram-500gb-ssd.front.medium2x.1639136462028.webp", "propGroups": ["Performance", "Display", "Connectivity", "Features", "Design", "General info", "Miscellaneous"], "propScore": [0.5835189357052301, 0.37679271590659813, 0.7888956680902989, 0.4, 0.7707012399514953, 0.743506570349836]}, {"name": "MSI Modern AM242TP AIO 23.8\" Intel Core i7-1165G7 / 16GB RAM / 512GB SSD", "score": 76, "image": "/images/WEBP/all-in-one-computer/msi-modern-am242tp-aio-23-8-intel-core-i7-1165g7-16gb-ram-512gb-ssd.front.medium2x.1639139128594.webp", "propGroups": ["Performance", "Display", "Connectivity", "Features", "Design", "General info", "Miscellaneous"], "propScore": [0.5935338415563641, 0.5596596235859662, 0.909137842023748, 0.4, 0.7000226270776101, 0.7460112338780351]}, {"name": "MSI Pro AP241 11M AIO 23.8\" Intel Core i7-11700 / 16GB RAM / 500GB SSD", "score": 70, "image": "/images/WEBP/all-in-one-computer/msi-pro-ap241-11m-aio-23-8-intel-core-i7-11700-16gb-ram-500gb-ssd.front.medium2x.1640100426581.webp", "propGroups": ["Performance", "Display", "Connectivity", "Features", "Design", "General info", "Miscellaneous"], "propScore": [0.7278398149609681, 0.3604738842501716, 0.8322147651006709, 0.4, 0.7707012399514953, 0.7457352113232576]}, {"name": "MSI Pro AP241 11M AIO 23.8\" Intel Pentium Gold G6405 / 4GB RAM / 120GB SSD", "score": 54, "image": "/images/WEBP/all-in-one-computer/msi-pro-ap241-11m-aio-23-8-intel-pentium-gold-g6405-4gb-ram-120gb-ssd.front.medium2x.1640101401352.webp", "propGroups": ["Performance", "Display", "Connectivity", "Features", "Design", "General info", "Miscellaneous"], "propScore": [0.4635626701260816, 0.3604738842501716, 0.6996644295302012, 0.4, 0.7707012399514953, 0.7361128861011591]}, {"name": "MSI Pro AP241 11M AIO 23.8\" Intel Core i5-11400 / 8GB RAM / 250GB SSD", "score": 71, "image": "/images/WEBP/all-in-one-computer/msi-pro-ap241-11m-aio-23-8-intel-core-i5-11400-8gb-ram-250gb-ssd.front.medium2x.1640099066011.webp", "propGroups": ["Performance", "Display", "Connectivity", "Features", "Design", "General info", "Miscellaneous"], "propScore": [0.6864030597973666, 0.3604738842501716, 0.6996644295302012, 0.6, 0.7707012399514953, 0.73998474143206]}]}
data/all-in-one-printer.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"data": [{"name": "Brother MFC-9130CW", "score": 51, "image": "/images/WEBP/all-in-one-printer/brother-mfc-9130cw.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features", "Miscellaneous"], "propScore": [0.7516451821811427, 0.4298503968078523, 0.3078718434071308, 0.15476190476190474, 0.4517532696856879, 0.5611385544948922]}, {"name": "Brother MFC-9560CDW", "score": 65, "image": "/images/WEBP/all-in-one-printer/brother-mfc-9560cdw.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features"], "propScore": [0.8076993283418644, 0.6755990656060082, 0.5490196078431373, 0.1688311688311688, 0.4109241239570447, 0.4672893429621891]}, {"name": "Brother DCP-J140W", "score": 50, "image": "/images/WEBP/all-in-one-printer/brother-dcp-j140w.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features"], "propScore": [0.6833558812469412, 0.38580410364257756, 0.28860294117647056, 0.15476190476190474, 0.6579899645459334, 0.4491310931763389]}, {"name": "Brother MFC-9340CDW", "score": 59, "image": "/images/WEBP/all-in-one-printer/brother-mfc-9340cdw.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features", "Miscellaneous"], "propScore": [0.7507210788425513, 0.5554773949751456, 0.42453851007379745, 0.15476190476190474, 0.4517532696856879, 0.5773635306219025]}, {"name": "Brother MFC-J430w", "score": 50, "image": "/images/WEBP/all-in-one-printer/brother-mfc-j430w.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features"], "propScore": [0.8714208929271633, 0.4253086390192752, 0.22037184340713067, 0.15476190476190474, 0.6539590867569097, 0.36935862748803544]}, {"name": "Brother MFC-J1170DW All-in-One", "score": 65, "image": "/images/WEBP/all-in-one-printer/brother-mfc-j1170dw-all-in-one.front.medium2x.1644833035217.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features"], "propScore": [0.8138431027830676, 0.6378846882227343, 0.10787031546489564, 0.7351190476190477, 0.9907998472930021, 0.27657610362987345]}, {"name": "Brother MFC-J1205W All-in-One", "score": 51, "image": "/images/WEBP/all-in-one-printer/brother-mfc-j1205w-all-in-one.front.medium2x.1644844736267.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features"], "propScore": [0.6950120987140638, 0.43141903433750717, 0.10787031546489564, 0.5029761904761905, 0.9944379830049344, 0.2736496409305877]}, {"name": "Brother MFC-J1010DW All-in-One", "score": 92, "image": "/images/WEBP/all-in-one-printer/brother-mfc-j1010dw-all-in-one.front.medium2x.1644851998893.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features"], "propScore": [0.8116879486458143, 0.6320424338959992, 0.25163398692810457, 0.7351190476190477, 0.9924095349144624, 1]}, {"name": "Brother MFC-J4510DW", "score": 68, "image": "/images/WEBP/all-in-one-printer/brother-mfc-j4510dw.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features", "Miscellaneous"], "propScore": [0.884331852572516, 0.5543392762878534, 0.4098039215686275, 0.2532467532467533, 0.653540326287898, 0.558693487332651]}, {"name": "Brother MFC-J4410DW", "score": 63, "image": "/images/WEBP/all-in-one-printer/brother-mfc-j4410dw.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features"], "propScore": [0.8108708979762563, 0.4938472986055165, 0.2338009589055265, 0.2708333333333333, 0.6545218732058408, 0.6985446262359224]}, {"name": "Brother MFC-J4535DW All-in-One", "score": 59, "image": "/images/WEBP/all-in-one-printer/brother-mfc-j4535dw-all-in-one.front.medium2x.1645457780602.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features"], "propScore": [0.8466631569706685, 0.5766423114917285, 0.12193627450980393, 0.851190476190476, 1, 0.37261054327561477]}, {"name": "Brother MFC-J4340DW All-in-One", "score": 80, "image": "/images/WEBP/all-in-one-printer/brother-mfc-j4340dw-all-in-one.front.medium2x.1644940916386.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features"], "propScore": [0.8523494863062675, 0.7679883832481732, 0.45526960784313736, 0.7351190476190477, 0.6574665139596688, 0.36909277780893834]}, {"name": "Brother MFC-J625DW", "score": 59, "image": "/images/WEBP/all-in-one-printer/brother-mfc-j625dw.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features"], "propScore": [0.6731381708142017, 0.4688356307081725, 0.20869983879319678, 0.2708333333333333, 0.6510931177284144, 0.5242840181296781]}, {"name": "Brother MFC-J4710DW", "score": 69, "image": "/images/WEBP/all-in-one-printer/brother-mfc-j4710dw.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features"], "propScore": [0.9181618260350007, 0.5000454022170759, 0.36341810838159744, 0.2708333333333333, 0.654103112736829, 0.5957320675298581]}, {"name": "Brother MFC-J805DW All-in-One", "score": 57, "image": "/images/WEBP/all-in-one-printer/brother-mfc-j805dw-all-in-one.front.medium2x.1644834987828.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features"], "propScore": [0.8057496466943379, 0.543050794263296, 0.25163398692810457, 0.5064935064935066, 1, 0.26913671330548894]}, {"name": "Brother MFC-J6920DW", "score": 61, "image": "/images/WEBP/all-in-one-printer/brother-mfc-j6920dw.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features"], "propScore": [0.6471388353715773, 0.5512674266540162, 0.6641025641025641, 0.2708333333333333, 0.49340452261306533, 0.4216167967677247]}, {"name": "Brother MFC-L3750CDW All-in-One", "score": 87, "image": "/images/WEBP/all-in-one-printer/brother-mfc-l3750cdw-all-in-one.front.medium2x.1644932699750.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features"], "propScore": [0.7677974191129465, 0.685289085591225, 0.2862908175915666, 0.7351190476190477, 0.7648021221143013, 0.817926404960098]}, {"name": "Brother MFC-J835DW", "score": 59, "image": "/images/WEBP/all-in-one-printer/brother-mfc-j835dw.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features"], "propScore": [0.8038158276345706, 0.39283475389213945, 0.2338009589055265, 0.2708333333333333, 0.6510931177284144, 0.7103351337793429]}, {"name": "Brother MFC-J825DW", "score": 63, "image": "/images/WEBP/all-in-one-printer/brother-mfc-j825dw.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features"], "propScore": [0.8365546884833446, 0.4688356307081725, 0.2338009589055265, 0.2708333333333333, 0.6510931177284144, 0.7103351337793429]}, {"name": "Brother MFC-L2710DW All-in-One", "score": 65, "image": "/images/WEBP/all-in-one-printer/brother-mfc-l2710dw-all-in-one.front.medium2x.1644846448653.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features"], "propScore": [0.7671690182322495, 0.6919731690323189, 0.02821350762527233, 0.619047619047619, 0.8287333802897487, 0.35164700892378065]}, {"name": "Brother MFC-L3770CDW All-in-One", "score": 86, "image": "/images/WEBP/all-in-one-printer/brother-mfc-l3770cdw-all-in-one.front.medium2x.1644839820745.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features"], "propScore": [0.6928257651898734, 0.7127706737891532, 0.4003777541575464, 0.7351190476190477, 0.5588735787299276, 0.7587075814691221]}, {"name": "Canon Color imageCLASS MF8080Cw", "score": 51, "image": "/images/WEBP/all-in-one-printer/canon-color-imageclass-mf8080cw.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features"], "propScore": [0.7367678528181496, 0.445543517104738, 0.1860581179169346, 0.15476190476190474, 0.45084570871633395, 0.5743029524993906]}, {"name": "Canon Color imageClass MF8380Cdw", "score": 63, "image": "/images/WEBP/all-in-one-printer/canon-color-imageclass-mf8380cdw.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features"], "propScore": [0.7238387898479985, 0.6095629938853799, 0.3027247845836013, 0.15476190476190474, 0.3723268876774923, 0.5816685802375605]}, {"name": "Canon Color imageClass MF8280Cw", "score": 53, "image": "/images/WEBP/all-in-one-printer/canon-color-imageclass-mf8280cw.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features"], "propScore": [0.7374136765458418, 0.49032587210657147, 0.1860581179169346, 0.15476190476190474, 0.43514095802925107, 0.5816685802375605]}, {"name": "Canon Color imageClass MF9280cdn", "score": 57, "image": "/images/WEBP/all-in-one-printer/canon-color-imageclass-mf9280cdn.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features"], "propScore": [0.7002909858952426, 0.585280526609226, 0.1860581179169346, 0.1688311688311688, 0.0942211055276382, 0.5139065993408227]}, {"name": "Canon Color imageClass MF9220Cdn", "score": 55, "image": "/images/WEBP/all-in-one-printer/canon-color-imageclass-mf9220cdn.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features"], "propScore": [0.7002909858952426, 0.5022645935365394, 0.1860581179169346, 0.211038961038961, 0.0942211055276382, 0.491809716126313]}, {"name": "Canon Color imageClass MF8580Cdw", "score": 63, "image": "/images/WEBP/all-in-one-printer/canon-color-imageclass-mf8580cdw.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features"], "propScore": [0.7306179976309817, 0.6095629938853799, 0.3027247845836013, 0.15476190476190474, 0.3723268876774923, 0.5963998357139002]}, {"name": "Canon imageClass MF269dw All-in-One", "score": 61, "image": "/images/WEBP/all-in-one-printer/canon-imageclass-mf269dw-all-in-one.front.medium2x.1643896035098.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features"], "propScore": [0.8503969354774502, 0.5462143080515135, 0.12370657560256552, 0.7351190476190477, 0.9295042152261109, 0.11326598572666167]}, {"name": "Canon imageClass MF451dw All-in-One", "score": 62, "image": "/images/WEBP/all-in-one-printer/canon-imageclass-mf451dw-all-in-one.front.medium2x.1651053631220.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features"], "propScore": [0.6728764943364781, 0.7355510766964979, 0, 0.6331168831168831, 1, 0.27469451310714377]}, {"name": "Canon imageClass MF452dw All-in-One", "score": 67, "image": "/images/WEBP/all-in-one-printer/canon-imageclass-mf452dw-all-in-one.front.medium2x.1651055093087.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features"], "propScore": [0.6728764943364781, 0.7117162799120732, 0.19444444444444445, 0.619047619047619, 0.9711425206124853, 0.30686511558441815]}, {"name": "Canon imageClass MF3010 All-in-One", "score": 41, "image": "/images/WEBP/all-in-one-printer/canon-imageclass-mf3010-all-in-one.front.medium2x.1651057653145.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features", "Miscellaneous"], "propScore": [0.6803123784948258, 0.2980083240418634, 9.978332763142899e-05, 0.0422077922077922, 0.9028081120166992, 0.13841755673322512]}, {"name": "Canon imageClass MF3010VP All-in-One", "score": 41, "image": "/images/WEBP/all-in-one-printer/canon-imageclass-mf3010vp-all-in-one.front.medium2x.1651062265795.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features", "Miscellaneous"], "propScore": [0.6803123784948258, 0.2980083240418634, 9.978332763142899e-05, 0.0422077922077922, 0.9028081120166992, 0.13841755673322512]}, {"name": "Canon imageClass MF453dw All-in-One", "score": 69, "image": "/images/WEBP/all-in-one-printer/canon-imageclass-mf453dw-all-in-one.front.medium2x.1651056780314.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features"], "propScore": [0.7937584420857973, 0.7117162799120732, 0.19444444444444445, 0.619047619047619, 1, 0.27469451310714377]}, {"name": "Canon Pixma G3260 All-in-One", "score": 55, "image": "/images/WEBP/all-in-one-printer/canon-pixma-g3260-all-in-one.front.medium2x.1645021395411.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features"], "propScore": [0.7937317969427888, 0.6268799371701125, 0.16083175205566097, 0.7597402597402597, 1, 0.3020019419634003]}, {"name": "Canon Maxify GX5020 All-in-One", "score": 58, "image": "/images/WEBP/all-in-one-printer/canon-maxify-gx5020-all-in-one.front.medium2x.1651060753845.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features"], "propScore": [0.939445877464041, 0.5917827186079593, 0, 0.5064935064935066, 1, 0.1747158670653646]}, {"name": "Canon Maxify GX7020 All-in-One", "score": 65, "image": "/images/WEBP/all-in-one-printer/canon-maxify-gx7020-all-in-one.front.medium2x.1643905767424.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features"], "propScore": [0.9708244301297632, 0.40122748542194664, 0.22265795206971678, 0.7351190476190477, 0.9954851307972922, 0.36897451117139834]}, {"name": "Canon Pixma G4210 All-in-One", "score": 61, "image": "/images/WEBP/all-in-one-printer/canon-pixma-g4210-all-in-one.front.medium2x.1645009910357.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features"], "propScore": [0.8387760482699692, 0.30396469603668497, 0.511764705882353, 0.37987012987012986, 1, 0.5126773351311378]}, {"name": "Canon Pixma MG3150", "score": 60, "image": "/images/WEBP/all-in-one-printer/canon-pixma-mg3150.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features"], "propScore": [0.8180201276293129, 0.3473405101510335, 0.3033301711338277, 0.15476190476190474, 0.6590500598792944, 0.4733299667310985]}, {"name": "Canon Pixma G6020 All-in-One", "score": 69, "image": "/images/WEBP/all-in-one-printer/canon-pixma-g6020-all-in-one.front.medium2x.1645023801846.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features"], "propScore": [0.8884681181862218, 0.573645148956877, 0.33926312460468067, 0.8863636363636364, 1, 0.3020019419634003]}, {"name": "Canon Pixma G7020 All-in-One", "score": 77, "image": "/images/WEBP/all-in-one-printer/canon-pixma-g7020-all-in-one.front.medium2x.1645002953794.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features"], "propScore": [0.8255936053496883, 0.5716071954514118, 0.33926312460468067, 0.8863636363636364, 0.9953933882210424, 0.3926751211730847]}, {"name": "Canon Pixma MG3620 All-in-One", "score": 61, "image": "/images/WEBP/all-in-one-printer/canon-pixma-mg3620-all-in-one.front.medium2x.1645027156208.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features"], "propScore": [0.7437587045049792, 0.6231492417376387, 0.5490196078431373, 0.37987012987012986, 1, 0.3020019419634003]}, {"name": "Canon Pixma MG4120", "score": 43, "image": "/images/WEBP/all-in-one-printer/canon-pixma-mg4120.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features"], "propScore": [0.9267360493284451, 0.46968138556227723, 0.35466516404714477, 0.1392857142857143, 0, 0.14342060095249834]}, {"name": "Canon Pixma MG4220", "score": 50, "image": "/images/WEBP/all-in-one-printer/canon-pixma-mg4220.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features"], "propScore": [0.7521914289868722, 0.28225787991556084, 0.2676475507574021, 0.2708333333333333, 0, 0.2823593081252311]}, {"name": "Canon Pixma MG5350", "score": 78, "image": "/images/WEBP/all-in-one-printer/canon-pixma-mg5350.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features"], "propScore": [0.8026954122908339, 0.6845653186476985, 0.44307598039215695, 0.2708333333333333, 0.6584349900266941, 0.4563907552427668]}, {"name": "Canon Pixma MG5420", "score": 50, "image": "/images/WEBP/all-in-one-printer/canon-pixma-mg5420.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features"], "propScore": [0.8932130334418696, 0.215473791816719, 0.23180882546029416, 0.29545454545454547, 0, 0.3020019419634003]}, {"name": "Canon Pixma MX372", "score": 36, "image": "/images/WEBP/all-in-one-printer/canon-pixma-mx372.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features"], "propScore": [0.8579023911427178, 0.3983308266999701, 0.22037184340713067, 0.0422077922077922, 0, 0.3849072827620068]}, {"name": "Canon Pixma MG8220", "score": 56, "image": "/images/WEBP/all-in-one-printer/canon-pixma-mg8220.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features"], "propScore": [0.7257397894762336, 0.7048101031585708, 0.2520000447055676, 0.2708333333333333, 0, 0.5644059259867575]}, {"name": "Canon Pixma MG7120", "score": 38, "image": "/images/WEBP/all-in-one-printer/canon-pixma-mg7120.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features"], "propScore": [0.8910854244798364, 0.583642424455894, 0.20581378696035152, 0.12662337662337664, 0, 0]}, {"name": "Canon Pixma MX434", "score": 63, "image": "/images/WEBP/all-in-one-printer/canon-pixma-mx434.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features"], "propScore": [0.8631434559160033, 0.4951621868818956, 0.3063986455216341, 0.15476190476190474, 0.6616282235677801, 0.6403333070963676]}, {"name": "Canon Pixma MX452", "score": 47, "image": "/images/WEBP/all-in-one-printer/canon-pixma-mx452.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features"], "propScore": [0.8576741010849424, 0.40131994976173796, 0.22037184340713067, 0.15476190476190474, 0, 0.6404473875002686]}, {"name": "Canon Pixma MX432", "score": 47, "image": "/images/WEBP/all-in-one-printer/canon-pixma-mx432.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features"], "propScore": [0.8578112771462076, 0.40131994976173796, 0.22037184340713067, 0.15476190476190474, 0, 0.6404473875002686]}, {"name": "Canon Pixma MX392", "score": 37, "image": "/images/WEBP/all-in-one-printer/canon-pixma-mx392.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features"], "propScore": [0.9434415111934367, 0.3983308266999701, 0.22037184340713067, 0.0422077922077922, 0, 0.3849072827620068]}, {"name": "Canon Pixma MX870", "score": 85, "image": "/images/WEBP/all-in-one-printer/canon-pixma-mx870.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features"], "propScore": [0.8375319991070507, 0.6544780711321169, 0.5113522355639936, 0.29545454545454547, 0.6574534431087514, 0.6394369075152221]}, {"name": "Canon Pixma MX512", "score": 57, "image": "/images/WEBP/all-in-one-printer/canon-pixma-mx512.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features"], "propScore": [0.8575364199571777, 0.5021250113500003, 0.22037184340713067, 0.2708333333333333, 0, 0.5994361695292045]}, {"name": "Canon Pixma MX457", "score": 25, "image": "/images/WEBP/all-in-one-printer/canon-pixma-mx457.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features"], "propScore": [1, 0.14932394798324505, 0.2627910382487351, 0.12662337662337664, 0, 0.17579550911626926]}, {"name": "Canon Pixma MX882", "score": 74, "image": "/images/WEBP/all-in-one-printer/canon-pixma-mx882.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features"], "propScore": [0.8719047822029652, 0.7064455323958779, 0.39468556889732687, 0.2708333333333333, 0, 0.607601852415661]}, {"name": "Canon Pixma TR4522 All-in-One", "score": 52, "image": "/images/WEBP/all-in-one-printer/canon-pixma-tr4522-all-in-one.front.medium2x.1645092290527.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features"], "propScore": [0.8669037962014443, 0.6157641357841636, 0.013725490196078431, 0.5064935064935066, 1, 0.3849072827620068]}, {"name": "Canon Pixma TR4520 All-in-One", "score": 66, "image": "/images/WEBP/all-in-one-printer/canon-pixma-tr4520-all-in-one.front.medium2x.1645004904398.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features"], "propScore": [0.8485359544911796, 0.6157641357841636, 0.30666508538899434, 0.6331168831168831, 0.9986258343148803, 0.3849072827620068]}, {"name": "Canon Pixma MX922", "score": 66, "image": "/images/WEBP/all-in-one-printer/canon-pixma-mx922.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features"], "propScore": [0.8451080208675342, 0.6625033496201662, 0.39468556889732687, 0.15476190476190474, 0, 0.607601852415661]}, {"name": "Canon Pixma MX892", "score": 71, "image": "/images/WEBP/all-in-one-printer/canon-pixma-mx892.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features"], "propScore": [0.8719047822029652, 0.6561008659787495, 0.39468556889732687, 0.2708333333333333, 0, 0.607601852415661]}, {"name": "Canon Pixma TR7520 All-in-One", "score": 96, "image": "/images/WEBP/all-in-one-printer/canon-pixma-tr7520-all-in-one.front.medium2x.1645006864673.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features"], "propScore": [0.7793772169829088, 0.6521605146576771, 0.875, 0.9285714285714285, 1, 0.7262454724727112]}, {"name": "Canon Pixma TR7020 All-in-One", "score": 73, "image": "/images/WEBP/all-in-one-printer/canon-pixma-tr7020-all-in-one.front.medium2x.1643980644369.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features"], "propScore": [0.8896007286890664, 0.6362012268290488, 0.33926312460468067, 0.5714285714285714, 1, 0.13841755673322512]}, {"name": "Canon Pixma TR8620 All-in-One", "score": 72, "image": "/images/WEBP/all-in-one-printer/canon-pixma-tr8620-all-in-one.front.medium2x.1643977861809.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features"], "propScore": [0.9373326488459186, 0.4953526410759353, 0.19342979127134724, 1, 1, 0.4947653372559816]}, {"name": "Canon Pixma TR4720 All-in-One", "score": 56, "image": "/images/WEBP/all-in-one-printer/canon-pixma-tr4720-all-in-one.front.medium2x.1645018608050.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features"], "propScore": [0.8687852131095772, 0.6157641357841636, 0.16083175205566097, 0.7597402597402597, 1, 0.3833101571073927]}, {"name": "Canon Pixma TS3320 All-in-One", "score": 43, "image": "/images/WEBP/all-in-one-printer/canon-pixma-ts3320-all-in-one.front.medium2x.1645090640124.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features"], "propScore": [0.7381944762082916, 0.4542956173729537, 0.16083175205566097, 0.5064935064935066, 1, 0.3020019419634003]}, {"name": "Canon Selphy CP910", "score": 35, "image": "/images/WEBP/all-in-one-printer/canon-selphy-cp910.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features"], "propScore": [0.7531797994147357, 0.1764088577794594, 0, 0.2708333333333333, 0, 0.4218191657374715]}, {"name": "Canon Selphy CP800", "score": 31, "image": "/images/WEBP/all-in-one-printer/canon-selphy-cp800.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features"], "propScore": [0.7426076990663331, 0.1764088577794594, 0, 0.2708333333333333, 0, 0.2823593081252311]}, {"name": "Canon Selphy CP900", "score": 28, "image": "/images/WEBP/all-in-one-printer/canon-selphy-cp900.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features"], "propScore": [0.7531546909712549, 0.1764088577794594, 0, 0.2708333333333333, 0, 0.14342060095249834]}, {"name": "Dell C2665dnf", "score": 58, "image": "/images/WEBP/all-in-one-printer/dell-c2665dnf.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features", "Miscellaneous"], "propScore": [0.6875771932304701, 0.6253028775031116, 0.1528938793690093, 0.1392857142857143, 0, 0.8451646741048383]}, {"name": "Dell B2375dfw", "score": 60, "image": "/images/WEBP/all-in-one-printer/dell-b2375dfw.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features"], "propScore": [0.6301208749386689, 0.6576017818934606, 0.3888888888888889, 0.038690476190476185, 0.3239104829210836, 0.6359463970190833]}, {"name": "Dell B2375dnf", "score": 47, "image": "/images/WEBP/all-in-one-printer/dell-b2375dnf.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features"], "propScore": [0.7794913155655615, 0.32094318222333457, 0.2723775646146758, 0.15476190476190474, 0.3239104829210836, 0.39894635232739123]}, {"name": "Epson Artisan 810", "score": 68, "image": "/images/WEBP/all-in-one-printer/epson-artisan-810.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features"], "propScore": [0.7197993863607481, 0.6252153095853737, 1, 0.15476190476190474, 0.6524934251153688, 0.4023022960691406]}, {"name": "Epson EcoTank ET-2750 All-in-One", "score": 58, "image": "/images/WEBP/all-in-one-printer/epson-ecotank-et-2750-all-in-one.front.medium2x.1645456249808.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features"], "propScore": [0.666208246948128, 0.6604616936186197, 0.2156862745098039, 0.7597402597402597, 0.9984296482412061, 0.15904244280912797]}, {"name": "Epson EcoTank ET-2720 All-in-One", "score": 49, "image": "/images/WEBP/all-in-one-printer/epson-ecotank-et-2720-all-in-one.front.medium2x.1645454708099.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features"], "propScore": [0.6856844513616971, 0.5031198202953447, 0.3823529411764707, 0.2532467532467533, 0.9984296482412061, 0.15904244280912797]}, {"name": "Epson EcoTank ET-3760 All-in-One", "score": 55, "image": "/images/WEBP/all-in-one-printer/epson-ecotank-et-3760-all-in-one.front.medium2x.1645460721215.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features"], "propScore": [0.9121811537327219, 0.3850518628180289, 0.2156862745098039, 0.5064935064935066, 0.9987437185929648, 0.28183815768572346]}, {"name": "Epson EcoTank ET-2800 All-in-One", "score": 55, "image": "/images/WEBP/all-in-one-printer/epson-ecotank-et-2800-all-in-one.front.medium2x.1645460413488.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features"], "propScore": [0.6930533265332972, 0.472147717096061, 0.2156862745098039, 0.5064935064935066, 0.9911137943348466, 0.2823450108296879]}, {"name": "Epson Expression Home XP-200", "score": 61, "image": "/images/WEBP/all-in-one-printer/epson-expression-home-xp-200.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features", "Miscellaneous"], "propScore": [0.8380008045178058, 0.41006214840784316, 0.19813409234661605, 0.2708333333333333, 0.49970553592461714, 0.6190071855307515]}, {"name": "Epson EcoTank ET-4760 All-in-One", "score": 68, "image": "/images/WEBP/all-in-one-printer/epson-ecotank-et-4760-all-in-one.front.medium2x.1644510539611.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features"], "propScore": [0.8622398606370107, 0.5338587192302265, 0.3823529411764707, 0.5029761904761905, 0.9975920039932683, 0.4729378866689727]}, {"name": "Epson EcoTank ET-5850 All-in-One", "score": 100, "image": "/images/WEBP/all-in-one-printer/epson-ecotank-et-5850-all-in-one.front.medium2x.1643891610381.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features"], "propScore": [0.9410285159905245, 0.7829068872702271, 0.4460784313725491, 0.7738095238095237, 0.9965189611189044, 0.6059869087264398]}, {"name": "Epson EcoTank ET-4850 All-in-One", "score": 74, "image": "/images/WEBP/all-in-one-printer/epson-ecotank-et-4850-all-in-one.front.medium2x.1643901160725.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features"], "propScore": [0.9279643417090114, 0.49574462254711094, 0.3823529411764707, 0.619047619047619, 0.9975920039932683, 0.4729378866689727]}, {"name": "Epson Expression Home XP-410", "score": 26, "image": "/images/WEBP/all-in-one-printer/epson-expression-home-xp-410.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features"], "propScore": [0.622386284118108, 0.2565346323465205, 0.1764020662028252, 0.15476190476190474, 0, 0.06291707124237506]}, {"name": "Epson Expression Premium XP-800", "score": 69, "image": "/images/WEBP/all-in-one-printer/epson-expression-premium-xp-800.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features", "Miscellaneous"], "propScore": [0.7861681970342158, 0.5416044303452348, 0.46851149061775255, 0.2708333333333333, 0.6645728643216081, 0.6078959257903784]}, {"name": "Epson Expression Home XP-400", "score": 57, "image": "/images/WEBP/all-in-one-printer/epson-expression-home-xp-400.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features"], "propScore": [0.5868356150105217, 0.34438373680094597, 0.3888888888888889, 0.2708333333333333, 0.49970553592461714, 0.7795576734330855]}, {"name": "Epson Expression Premium XP-600", "score": 66, "image": "/images/WEBP/all-in-one-printer/epson-expression-premium-xp-600.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features", "Miscellaneous"], "propScore": [0.6413253115999392, 0.36097947737693636, 0.37460308862648806, 0.3095238095238095, 0.6645728643216081, 0.5630880517446246]}, {"name": "Epson Stylus NX515", "score": 69, "image": "/images/WEBP/all-in-one-printer/epson-stylus-nx515.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features", "Miscellaneous"], "propScore": [0.6559422961996284, 0.6542194299650865, 0.3679870335230867, 0.29545454545454547, 0.6603324829881642, 0.5630880517446246]}, {"name": "Epson Stylus NX430", "score": 54, "image": "/images/WEBP/all-in-one-printer/epson-stylus-nx430.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features", "Miscellaneous"], "propScore": [0.6807004786844592, 0.25828439752088334, 0.3439674256799495, 0.2708333333333333, 0.5, 0.44648671024692116]}, {"name": "Epson Expression Premium XP-810", "score": 44, "image": "/images/WEBP/all-in-one-printer/epson-expression-premium-xp-810.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features"], "propScore": [0.5880994366390034, 0.6218624048504687, 0.35443218954248373, 0.11607142857142856, 0, 0.3864278350172183]}, {"name": "Epson Stylus NX330", "score": 52, "image": "/images/WEBP/all-in-one-printer/epson-stylus-nx330.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features"], "propScore": [0.8263197078778285, 0.37611734113419015, 0.10046296296296299, 0.2708333333333333, 0, 0.5536702269329005]}, {"name": "Epson WorkForce 520", "score": 58, "image": "/images/WEBP/all-in-one-printer/epson-workforce-520.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features", "Miscellaneous"], "propScore": [0.6026741210469526, 0.5043713485468241, 0.19813409234661605, 0.2708333333333333, 0.48881036513545345, 0.572673416190272]}, {"name": "Epson WorkForce 435", "score": 62, "image": "/images/WEBP/all-in-one-printer/epson-workforce-435.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features", "Miscellaneous"], "propScore": [0.8751333215506463, 0.4939584581308689, 0.25163398692810457, 0.2708333333333333, 0.6652010050251257, 0.5338423613385178]}, {"name": "Epson WorkForce 633", "score": 63, "image": "/images/WEBP/all-in-one-printer/epson-workforce-633.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features", "Miscellaneous"], "propScore": [0.8465451760504789, 0.5706036069619138, 0.0865621125675562, 0.2708333333333333, 0.6649916247906198, 0.6524859813955679]}, {"name": "Epson WorkForce 635", "score": 71, "image": "/images/WEBP/all-in-one-printer/epson-workforce-635.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features"], "propScore": [0.8128027776455061, 0.5232763842863094, 0.3679870335230867, 0.2708333333333333, 0.6649916247906198, 0.6134062716962213]}, {"name": "Epson WorkForce Pro WP-4530", "score": 75, "image": "/images/WEBP/all-in-one-printer/epson-workforce-pro-wp-4530.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features", "Miscellaneous"], "propScore": [0.7614005567153853, 0.5959252319899929, 0.4898007590132828, 0.2708333333333333, 0.6649916247906198, 0.6134062716962213]}, {"name": "Epson WorkForce 845", "score": 75, "image": "/images/WEBP/all-in-one-printer/epson-workforce-845.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features", "Miscellaneous"], "propScore": [0.820770262396234, 0.5191896926002987, 0.5138203668564201, 0.2708333333333333, 0.6647822445561139, 0.6175754752122824]}, {"name": "Epson Workforce 645", "score": 71, "image": "/images/WEBP/all-in-one-printer/epson-workforce-645.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features", "Miscellaneous"], "propScore": [0.7991804744544465, 0.5230493458593088, 0.3679870335230867, 0.2708333333333333, 0.5, 0.7241403170828015]}, {"name": "Epson WorkForce Pro WF-4830 All-in-One", "score": 78, "image": "/images/WEBP/all-in-one-printer/epson-workforce-pro-wf-4830-all-in-one.front.medium2x.1644505756958.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features"], "propScore": [0.8493356324678347, 0.6247747867983143, 0.25163398692810457, 0.7738095238095237, 0.997068676716918, 0.4908176937947432]}, {"name": "Epson WorkForce WF-2530", "score": 70, "image": "/images/WEBP/all-in-one-printer/epson-workforce-wf-2530.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features", "Miscellaneous"], "propScore": [0.7924360014406526, 0.503487714988938, 0.4219317356572259, 0.2708333333333333, 0.6662609770485722, 0.6524859813955679]}, {"name": "Epson WorkForce WF-2540", "score": 50, "image": "/images/WEBP/all-in-one-printer/epson-workforce-wf-2540.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features"], "propScore": [0.8709528897251919, 0.4008010272062295, 0.28366013071895424, 0.15476190476190474, 0.6647822445561139, 0.5026722263096413]}, {"name": "Epson WorkForce Pro WP-4540", "score": 45, "image": "/images/WEBP/all-in-one-printer/epson-workforce-pro-wp-4540.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features"], "propScore": [0.5488385252942528, 0.5246226983843192, 0.855327468230694, 0, 0, 0.2965551212244175]}, {"name": "Epson WorkForce WF-2520", "score": 46, "image": "/images/WEBP/all-in-one-printer/epson-workforce-wf-2520.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features", "Miscellaneous"], "propScore": [0.7305586961825986, 0.47593850549581374, 0.09068627450980395, 0, 0.6662609770485722, 0.6524859813955679]}, {"name": "Epson XP-950", "score": 48, "image": "/images/WEBP/all-in-one-printer/epson-xp-950.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features"], "propScore": [0.569693579687034, 0.4194215825497702, 0.7338709677419355, 0.15476190476190474, 0, 0.43119365011996047]}, {"name": "Epson WorkForce WF-3520", "score": 71, "image": "/images/WEBP/all-in-one-printer/epson-workforce-wf-3520.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features", "Miscellaneous"], "propScore": [0.8400474458822895, 0.5747191541898768, 0.4898007590132828, 0.2708333333333333, 0.5, 0.6134062716962213]}, {"name": "Epson WorkForce WF-M1560", "score": 45, "image": "/images/WEBP/all-in-one-printer/epson-workforce-wf-m1560.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features"], "propScore": [0.9033162018608576, 0.5347300833788764, 0.3439674256799495, 0.15476190476190474, 0, 0.4131245521196311]}, {"name": "Epson WorkForce WF-2830 All-in-One", "score": 75, "image": "/images/WEBP/all-in-one-printer/epson-workforce-wf-2830-all-in-one.front.medium2x.1645459090986.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features"], "propScore": [0.8603445028446164, 0.658359615141269, 0.3888888888888889, 0.5029761904761905, 0.9984296482412061, 0.6106440548302268]}, {"name": "HP DeskJet 2720e All-in-One", "score": 49, "image": "/images/WEBP/all-in-one-printer/hp-deskjet-2720e-all-in-one.front.medium2x.1645445116351.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features"], "propScore": [0.6522769531140601, 0.5789498520603218, 0.02821350762527233, 0.6331168831168831, 0.4932273262661955, 0.2734485030119736]}, {"name": "HP DeskJet 2710 All-in-One", "score": 42, "image": "/images/WEBP/all-in-one-printer/hp-deskjet-2710-all-in-one.front.medium2x.1645450664384.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features"], "propScore": [0.6303933422638249, 0.6364202803412475, 0.08294423399884443, 0.37987012987012986, 0.495583038869258, 0.27923011218031474]}, {"name": "HP DeskJet 2755e All-in-One", "score": 51, "image": "/images/WEBP/all-in-one-printer/hp-deskjet-2755e-all-in-one.front.medium2x.1644582518487.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features"], "propScore": [0.6497516029179184, 0.6204128727288828, 0.08691864040399164, 0.3869047619047619, 0.9973498233215548, 0.16353388703750313]}, {"name": "HP DeskJet 2710e All-in-One", "score": 52, "image": "/images/WEBP/all-in-one-printer/hp-deskjet-2710e-all-in-one.front.medium2x.1645441807354.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features"], "propScore": [0.6522769531140601, 0.7392064143753949, 0.08294423399884443, 0.46428571428571425, 0.4932273262661955, 0.15480488295492345]}, {"name": "HP DeskJet 3755 All-in-One", "score": 61, "image": "/images/WEBP/all-in-one-printer/hp-deskjet-3755-all-in-one.front.medium2x.1644593756445.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features"], "propScore": [0.6935217870457218, 0.6235622437795183, 0.36458333333333337, 0.3869047619047619, 0.9941107184923439, 0.15480488295492345]}, {"name": "HP Deskjet 3520", "score": 42, "image": "/images/WEBP/all-in-one-printer/hp-deskjet-3520.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features"], "propScore": [0.7343835464389036, 0.38090421114806017, 0.09120895901261557, 0.15476190476190474, 0.6605932045385939, 0.4530029129451004]}, {"name": "HP Deskjet 3055A", "score": 33, "image": "/images/WEBP/all-in-one-printer/hp-deskjet-3055a.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features"], "propScore": [0.6015316146619377, 0.004770559398280364, 0.057189542483660136, 0.15476190476190474, 0.6619421706096245, 0.4530029129451004]}, {"name": "HP Deskjet 3050A", "score": 43, "image": "/images/WEBP/all-in-one-printer/hp-deskjet-3050a.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features"], "propScore": [0.784608563540655, 0.18810367110090914, 0.08294423399884443, 0.15476190476190474, 0.6619421706096245, 0.4530029129451004]}, {"name": "HP DeskJet 4155e All-in-One", "score": 54, "image": "/images/WEBP/all-in-one-printer/hp-deskjet-4155e-all-in-one.front.medium2x.1644500022674.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features"], "propScore": [0.764951642758031, 0.5058858817355314, 0.06416885970813885, 0.4857142857142857, 0.9973498233215548, 0.1354985826584498]}, {"name": "HP DeskJet 4120e All-in-One", "score": 42, "image": "/images/WEBP/all-in-one-printer/hp-deskjet-4120e-all-in-one.front.medium2x.1645443451397.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features"], "propScore": [0.644352575922595, 0.5809707020007063, 0, 0.37987012987012986, 0.9932273262661955, 0.13821136966023115]}, {"name": "HP DeskJet 3760 All-in-One", "score": 59, "image": "/images/WEBP/all-in-one-printer/hp-deskjet-3760-all-in-one.front.medium2x.1645447107705.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features"], "propScore": [0.5561145553172747, 0.6403599069638871, 0.43241460710636487, 0.37987012987012986, 0.9941107184923439, 0.15480488295492345]}, {"name": "HP Deskjet 3762 All-in-One", "score": 50, "image": "/images/WEBP/all-in-one-printer/hp-deskjet-3762-all-in-one.front.medium2x.1645451697567.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features"], "propScore": [0.5433971103668469, 0.6403599069638871, 0.22265795206971678, 0.37987012987012986, 0.9941107184923439, 0.15480488295492345]}, {"name": "HP ENVY 5530", "score": 57, "image": "/images/WEBP/all-in-one-printer/hp-envy-5530.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features", "Miscellaneous"], "propScore": [0.6841407936976762, 0.41321806711729586, 0.19379848933776847, 0.2708333333333333, 0.6639877957711605, 0.5171406577989122]}, {"name": "HP DeskJet Plus 4152 All-in-One", "score": 52, "image": "/images/WEBP/all-in-one-printer/hp-deskjet-plus-4152-all-in-one.front.medium2x.1645198457711.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features"], "propScore": [0.7507322338526108, 0.7412225156071603, 0.1996109006655111, 0.3869047619047619, 0, 0.14833186758189734]}, {"name": "HP ENVY 120", "score": 41, "image": "/images/WEBP/all-in-one-printer/hp-envy-120.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features", "Miscellaneous"], "propScore": [0.6651901392052804, 0.40031641103350174, 0.22265795206971678, 0.15476190476190474, 0.6564196127871395, 0.2807922213279578]}, {"name": "HP ENVY 4500", "score": 48, "image": "/images/WEBP/all-in-one-printer/hp-envy-4500.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features", "Miscellaneous"], "propScore": [0.6841194967269474, 0.41321806711729586, 0.2344666084372601, 0.15476190476190474, 0.6646235619597792, 0.35943368258798014]}, {"name": "HP Envy Photo 7855 All-in-One", "score": 74, "image": "/images/WEBP/all-in-one-printer/hp-envy-photo-7855-all-in-one.front.medium2x.1645106856781.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features"], "propScore": [0.7777859954849922, 0.8502672912625748, 0, 0.7351190476190477, 0.9920796685626798, 0.45702547031100915]}, {"name": "HP Envy Photo 7858 All-in-One", "score": 63, "image": "/images/WEBP/all-in-one-printer/hp-envy-photo-7858-all-in-one.front.medium2x.1645199490420.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features"], "propScore": [0.7555128694559593, 0.5871398999938807, 0.06141577126169059, 0.7351190476190477, 0.6587463352293466, 0.20572618242121885]}, {"name": "HP Envy 6020 All-in-One", "score": 42, "image": "/images/WEBP/all-in-one-printer/hp-envy-6020-all-in-one.front.medium2x.1645448103008.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features"], "propScore": [0.7796267727119486, 0.4396898814434229, 0.08283428654131256, 0.4220779220779221, 0, 0.296194212310258]}, {"name": "HP Envy 6455e All-in-One", "score": 60, "image": "/images/WEBP/all-in-one-printer/hp-envy-6455e-all-in-one.front.medium2x.1644502056206.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features"], "propScore": [0.7745171960003863, 0.6008236212016194, 0.07291666666666667, 0.5214285714285714, 0.9955830388692579, 0.2686926057250544]}, {"name": "HP Envy Pro 6420 All-in-One", "score": 60, "image": "/images/WEBP/all-in-one-printer/hp-envy-pro-6420-all-in-one.front.medium2x.1645452641326.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features"], "propScore": [0.7697472655084259, 0.5886116718321739, 0.08283428654131256, 0.619047619047619, 0.48881036513545345, 0.2168515338978024]}, {"name": "HP Laser Jet Pro M521dw", "score": 72, "image": "/images/WEBP/all-in-one-printer/hp-laser-jet-pro-m521dw.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features", "Miscellaneous"], "propScore": [0.8115978789365847, 0.7880776371528105, 0.5496664575643943, 0.15476190476190474, 0.4738770412723216, 0.218356795493279]}, {"name": "HP Laser Jet Pro M521dn", "score": 54, "image": "/images/WEBP/all-in-one-printer/hp-laser-jet-pro-m521dn.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features", "Miscellaneous"], "propScore": [0.726497989843233, 0.6486061878636438, 0.21147704054596056, 0.15476190476190474, 0.4738770412723216, 0.2193250223880756]}, {"name": "HP Envy Pro 6452 All-in-One", "score": 44, "image": "/images/WEBP/all-in-one-printer/hp-envy-pro-6452-all-in-one.front.medium2x.1645097450349.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features"], "propScore": [0.6570130200487647, 0.5102146763268682, 0.06584967320261438, 0.42559523809523814, 1, 0.29861409966573393]}, {"name": "HP LaserJet Enterprise M4555h MFP", "score": 71, "image": "/images/WEBP/all-in-one-printer/hp-laserjet-enterprise-m4555h-mfp.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features", "Miscellaneous"], "propScore": [0.7145037227502623, 0.5803841990193248, 0.30395346435214965, 0.0844155844155844, 0.4253264753291388, 0.5568787874490071]}, {"name": "HP LaserJet Enterprise MFP M725dn", "score": 55, "image": "/images/WEBP/all-in-one-printer/hp-laserjet-enterprise-mfp-m725dn.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features", "Miscellaneous"], "propScore": [0.5430304283494847, 0.547399950020452, 0.2598234015596118, 0.038690476190476185, 0.40582525900014405, 0.4530029129451004]}, {"name": "HP LaserJet M3035xs MFP", "score": 60, "image": "/images/WEBP/all-in-one-printer/hp-laserjet-m3035xs-mfp.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features", "Miscellaneous"], "propScore": [0.8325696069447949, 0.5094128404114816, 0.17432383472251994, 0.0422077922077922, 0.49599193454512447, 0.5004845911798388]}, {"name": "HP LaserJet Enterprise 700 color MFP M775z", "score": 57, "image": "/images/WEBP/all-in-one-printer/hp-laserjet-enterprise-700-color-mfp-m775z.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features", "Miscellaneous"], "propScore": [0.6323598263399327, 0.7443709786585689, 0.1301937719299821, 0.12662337662337664, 0.2870603015075377, 0.37323013502510305]}, {"name": "HP LaserJet Pro M1132", "score": 46, "image": "/images/WEBP/all-in-one-printer/hp-laserjet-pro-m1132.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features", "Miscellaneous"], "propScore": [0.6235818294752712, 0.7245668074164027, 0.34928513071895434, 0.0422077922077922, 0.583934839095359, 0]}, {"name": "HP LaserJet Pro M1212nf", "score": 49, "image": "/images/WEBP/all-in-one-printer/hp-laserjet-pro-m1212nf.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features", "Miscellaneous"], "propScore": [0.8747887136104969, 0.3695399866832348, 0.18452271850354102, 0.0422077922077922, 0.580990198341531, 0.3857210292494991]}, {"name": "HP LaserJet Pro 400 M475dn", "score": 59, "image": "/images/WEBP/all-in-one-printer/hp-laserjet-pro-400-m475dn.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features", "Miscellaneous"], "propScore": [0.7459500393478642, 0.5512519735057376, 0.29061448081654123, 0.1688311688311688, 0.35646984924623115, 0.2396947632489513]}, {"name": "HP LaserJet Pro 100 M175nw", "score": 52, "image": "/images/WEBP/all-in-one-printer/hp-laserjet-pro-100-m175nw.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features", "Miscellaneous"], "propScore": [0.762417707213661, 0.4236565280476431, 0.1931584395165133, 0.15476190476190474, 0.46819787985865724, 0.3907625814424016]}, {"name": "HP LaserJet Pro M1217nfw", "score": 51, "image": "/images/WEBP/all-in-one-printer/hp-laserjet-pro-m1217nfw.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features", "Miscellaneous"], "propScore": [0.8747887136104969, 0.37033360368208623, 0.18452271850354102, 0.15476190476190474, 0.5818407901304717, 0.4083626636978315]}, {"name": "HP LaserJet Pro M1536dnf", "score": 52, "image": "/images/WEBP/all-in-one-printer/hp-laserjet-pro-m1536dnf.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features", "Miscellaneous"], "propScore": [0.7902553071671328, 0.46991618103743493, 0.1931584395165133, 0.0422077922077922, 0.48674911660777387, 0.31151086980638754]}, {"name": "HP LaserJet Pro MFP M29w All-in-One", "score": 61, "image": "/images/WEBP/all-in-one-printer/hp-laserjet-pro-mfp-m29w-all-in-one.front.medium2x.1645435000947.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features"], "propScore": [0.6108377469407108, 0.48429116828245217, 0.260975422986211, 0.5064935064935066, 0.9199509029245165, 0.25661842814600827]}, {"name": "HP LaserJet Pro M227fdw All-in-One", "score": 76, "image": "/images/WEBP/all-in-one-printer/hp-laserjet-pro-m227fdw-all-in-one.front.medium2x.1643983283157.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features"], "propScore": [0.83277280112726, 0.4722432030617748, 0.3888888888888889, 0.6577380952380953, 0.9006489554170538, 0.4075575374390387]}, {"name": "HP Officejet 6600", "score": 46, "image": "/images/WEBP/all-in-one-printer/hp-officejet-6600.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features", "Miscellaneous"], "propScore": [0.7845381457879915, 0.3665065826694199, 0.08294423399884443, 0.15476190476190474, 0.6526246268641992, 0.3837430809774275]}, {"name": "HP OfficeJet 4500 All-in-One", "score": 54, "image": "/images/WEBP/all-in-one-printer/hp-officejet-4500-all-in-one.front.medium2x.1645092979465.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features"], "propScore": [0.6797914783673183, 0.6674663019986457, 0.13137254901960788, 0.2532467532467533, 0.9902319804756013, 0.3505546707722146]}, {"name": "HP Officejet 4620", "score": 43, "image": "/images/WEBP/all-in-one-printer/hp-officejet-4620.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features", "Miscellaneous"], "propScore": [0.7965521797686507, 0.3612395784494407, 0.06141577126169059, 0.15476190476190474, 0.6567387635073679, 0.33821210470543267]}, {"name": "HP Officejet 6700 Premium", "score": 53, "image": "/images/WEBP/all-in-one-printer/hp-officejet-6700-premium.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features", "Miscellaneous"], "propScore": [0.7780156608239128, 0.5097681535414343, 0.09430875631954432, 0.19345238095238093, 0.6532527675677168, 0.3837430809774275]}, {"name": "HP Officejet Pro 276dw", "score": 72, "image": "/images/WEBP/all-in-one-printer/hp-officejet-pro-276dw.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features", "Miscellaneous"], "propScore": [0.8043464691093437, 0.4908383086186886, 0.45695478231042824, 0.3095238095238095, 0.647429577707935, 0.48618410570843684]}, {"name": "HP OfficeJet Pro 6978 All-in-One", "score": 79, "image": "/images/WEBP/all-in-one-printer/hp-officejet-pro-6978-all-in-one.front.medium2x.1644314747733.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features"], "propScore": [0.7708557346848487, 0.3391567012310832, 0.23251633986928105, 0.7351190476190477, 0.9940390507701444, 0.5837009962719091]}, {"name": "HP OfficeJet 9020e All-in-One", "score": 71, "image": "/images/WEBP/all-in-one-printer/hp-officejet-9020e-all-in-one.front.medium2x.1645101589470.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features"], "propScore": [0.7799879179384596, 0.7156471645829855, 0.19950095320797923, 0.619047619047619, 0.9844003093599131, 0.4644517681823018]}, {"name": "HP Officejet 7610 Wide Format", "score": 50, "image": "/images/WEBP/all-in-one-printer/hp-officejet-7610-wide-format.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features", "Miscellaneous"], "propScore": [0.7331536811245803, 0.3950977882896979, 0.20839633112013536, 0.15476190476190474, 0.6592242474642549, 0.35383961904401623]}, {"name": "HP Officejet Pro 8600", "score": 63, "image": "/images/WEBP/all-in-one-printer/hp-officejet-pro-8600.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features", "Miscellaneous"], "propScore": [0.8083891061877047, 0.5510412314852187, 0.18824482721979602, 0.3095238095238095, 0.6514661055572325, 0.6362588694989875]}, {"name": "HP Officejet Pro 8600 Plus", "score": 64, "image": "/images/WEBP/all-in-one-printer/hp-officejet-pro-8600-plus.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features", "Miscellaneous"], "propScore": [0.8048633668423583, 0.4371173062896914, 0.18829719026395655, 0.3376623376623376, 0.6486000872047714, 0.5388949386379756]}, {"name": "HP OfficeJet Pro 8035e All-in-One", "score": 91, "image": "/images/WEBP/all-in-one-printer/hp-officejet-pro-8035e-all-in-one.front.medium2x.1643992331014.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features"], "propScore": [0.6945974993468245, 0.6711011733643265, 0.3888888888888889, 0.8125, 0.9957075818827156, 0.5966173340696443]}, {"name": "HP OfficeJet Pro 8025e All-in-One", "score": 79, "image": "/images/WEBP/all-in-one-printer/hp-officejet-pro-8025e-all-in-one.front.medium2x.1643989119464.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features"], "propScore": [0.6945974993468245, 0.6711011733643265, 0.3888888888888889, 0.619047619047619, 0.9957075818827156, 0.6454068131913683]}, {"name": "HP Officejet Pro X476dn", "score": 67, "image": "/images/WEBP/all-in-one-printer/hp-officejet-pro-x476dn.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features", "Miscellaneous"], "propScore": [0.7711164243273972, 0.6976109925283405, 0.525, 0.0422077922077922, 0.47110552763819097, 0.4251184668567571]}, {"name": "HP OfficeJet Pro 9015 All-in-One", "score": 86, "image": "/images/WEBP/all-in-one-printer/hp-officejet-pro-9015-all-in-one.front.medium2x.1644497062085.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features"], "propScore": [0.6778290773930404, 0.6666865543364918, 0.3202458856661461, 0.619047619047619, 0.9934305410049857, 0.7081140371418826]}, {"name": "HP Photosmart 5510", "score": 42, "image": "/images/WEBP/all-in-one-printer/hp-photosmart-5510.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features"], "propScore": [0.7312735874284578, 0.3566618158793907, 0.08294423399884443, 0.15476190476190474, 0.656990019788775, 0.5584648109763706]}, {"name": "HP OfficeJet Pro 9015e All-in-One", "score": 75, "image": "/images/WEBP/all-in-one-printer/hp-officejet-pro-9015e-all-in-one.front.medium2x.1643987002803.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features"], "propScore": [0.6899698857299323, 0.547247651044336, 0.4171023965141613, 0.6577380952380953, 0.9934305410049857, 0.5575489932095633]}, {"name": "HP Smart Tank Plus 651 All-in-One", "score": 62, "image": "/images/WEBP/all-in-one-printer/hp-smart-tank-plus-651-all-in-one.front.medium2x.1644504160901.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features"], "propScore": [0.7360186997768992, 0.5115438576757678, 0.06584967320261438, 0.619047619047619, 0.9984982332155476, 0.4082617550145722]}, {"name": "HP Photosmart 6520", "score": 53, "image": "/images/WEBP/all-in-one-printer/hp-photosmart-6520.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features"], "propScore": [0.7452702280023479, 0.7022810403309714, 0.25163398692810457, 0.2708333333333333, 0.6555426326765353, 0.13522247670413984]}, {"name": "HP Photosmart Plus B209a All-in-One", "score": 58, "image": "/images/WEBP/all-in-one-printer/hp-photosmart-plus-b209a-all-in-one.front.medium2x.1645094201825.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features"], "propScore": [0.6104212857721019, 0.8021591966540889, 0.26535947712418306, 0.3869047619047619, 0.989321608040201, 0.15100097098170015]}, {"name": "HP Photosmart 7520 e", "score": 58, "image": "/images/WEBP/all-in-one-printer/hp-photosmart-7520-e.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features"], "propScore": [0.7142035147400935, 0.5404950554280347, 0.2502619298423694, 0.2708333333333333, 0.49246231155778897, 0.3896261050854906]}, {"name": "Konica Minolta Magicolor 4695MF", "score": 58, "image": "/images/WEBP/all-in-one-printer/konica-minolta-magicolor-4695mf.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features", "Miscellaneous"], "propScore": [0.7974449643953564, 0.7764107038567034, 0.3888888888888889, 0, 0, 0.5125976685307888]}, {"name": "Konica Minolta Magicolor 1690MF", "score": 39, "image": "/images/WEBP/all-in-one-printer/konica-minolta-magicolor-1690mf.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features"], "propScore": [0.7141141129412271, 0.5959669136685173, 0.19444444444444445, 0.15476190476190474, 0.5510887772194305, 0.14364584638717132]}, {"name": "Konica Minolta Magicolor 4690MF", "score": 34, "image": "/images/WEBP/all-in-one-printer/konica-minolta-magicolor-4690mf.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features", "Miscellaneous"], "propScore": [0.5927772217869833, 0.6557745828973608, 0, 0, 0.59885213266963, 0.25603527558754835]}, {"name": "Konica Minolta Magicolor 1600W", "score": 28, "image": "/images/WEBP/all-in-one-printer/konica-minolta-magicolor-1600w.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features"], "propScore": [0.4570464431213465, 0.44562618050794656, 0, 0.038690476190476185, 0.30177388710336134, 0.03352210586748537]}, {"name": "Lexmark OfficeEdge Pro5500", "score": 54, "image": "/images/WEBP/all-in-one-printer/lexmark-officeedge-pro5500.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features", "Miscellaneous"], "propScore": [0.8350914868695197, 0.6267298753307338, 0.19646168378139198, 0.19345238095238093, 0, 0.2868118908346899]}, {"name": "Lexmark Platinum Pro 905", "score": 59, "image": "/images/WEBP/all-in-one-printer/lexmark-platinum-pro-905.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features"], "propScore": [0.7633762114040593, 0.7028815012307489, 0, 0.2708333333333333, 0.4959170854271357, 0.380924956259007]}, {"name": "Konica Minolta Pagepro 1480MF", "score": 44, "image": "/images/WEBP/all-in-one-printer/konica-minolta-pagepro-1480mf.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features", "Miscellaneous"], "propScore": [0.6612920874162835, 0.6152987312846179, 0.2475186460883717, 0.038690476190476185, 0.5097311251980358, 0.0266187609102356]}, {"name": "Konica Minotta Magicolor 1680MF", "score": 35, "image": "/images/WEBP/all-in-one-printer/konica-minotta-magicolor-1680mf.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features"], "propScore": [0.6580415172998458, 0.6289802523009465, 0.1465354938271605, 0.038690476190476185, 0.5510887772194305, 0.03938226181700148]}, {"name": "Oki MB760", "score": 67, "image": "/images/WEBP/all-in-one-printer/oki-mb760.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features", "Miscellaneous"], "propScore": [0.7272983209265687, 0.4400768571333897, 0.4375, 0.0422077922077922, 0.4080497698543759, 0.615381701820327]}, {"name": "Lexmark X792dtpe", "score": 67, "image": "/images/WEBP/all-in-one-printer/lexmark-x792dtpe.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features", "Miscellaneous"], "propScore": [0.8215785631632213, 0.8311672029378359, 0.12975589265693033, 0.1392857142857143, 0, 0.63353825226876]}, {"name": "Lexmark X782E", "score": 58, "image": "/images/WEBP/all-in-one-printer/lexmark-x782e.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features", "Miscellaneous"], "propScore": [0.6334728082746162, 0.7658346877263811, 0.12975589265693033, 0.1392857142857143, 0, 0.6240598717620887]}, {"name": "Oki MC562w", "score": 50, "image": "/images/WEBP/all-in-one-printer/oki-mc562w.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features"], "propScore": [0.7364619297382922, 0.46680728211196526, 0.02821350762527233, 0.15476190476190474, 0.3844975762203242, 0.49722184194092117]}, {"name": "Oki MC770", "score": 70, "image": "/images/WEBP/all-in-one-printer/oki-mc770.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features", "Miscellaneous"], "propScore": [0.731889016008833, 0.4811499513293502, 0.3182851242950642, 0.15476190476190474, 0.3507377878793259, 0.5752742736268251]}, {"name": "Oki MC860", "score": 29, "image": "/images/WEBP/all-in-one-printer/oki-mc860.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features"], "propScore": [0.5306753496600901, 0.322912089582449, 0, 0.1688311688311688, 0, 0.27792528799754074]}, {"name": "Panasonic KX\u2212MB3150", "score": 36, "image": "/images/WEBP/all-in-one-printer/panasonic-kx-mb3150.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features", "Miscellaneous"], "propScore": [0.7299047916512209, 0.49494875889200524, 0, 0.1392857142857143, 0, 0.5111281292361319]}, {"name": "Panasonic KX\u2212MC6000", "score": 23, "image": "/images/WEBP/all-in-one-printer/panasonic-kx-mc6000.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features"], "propScore": [0.6570831588741104, 0.13747287330210778, 0, 0.1392857142857143, 0, 0.255907489561926]}, {"name": "Ricoh Aficio MP C2551", "score": 52, "image": "/images/WEBP/all-in-one-printer/ricoh-aficio-mp-c2551.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features", "Miscellaneous"], "propScore": [0.3451961086270728, 0.8280348497229871, 0.18722569213710763, 0.0844155844155844, 0.5, 0.48185910719452696]}, {"name": "Ricoh Aficio MP C300", "score": 59, "image": "/images/WEBP/all-in-one-printer/ricoh-aficio-mp-c300.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features", "Miscellaneous"], "propScore": [0.3439778284331064, 0.743300398094612, 0.19444444444444445, 0.211038961038961, 0.5, 0.6096291595636578]}, {"name": "Ricoh Aficio MP C2051", "score": 52, "image": "/images/WEBP/all-in-one-printer/ricoh-aficio-mp-c2051.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features", "Miscellaneous"], "propScore": [0.3451961086270728, 0.8280348497229871, 0.18722569213710763, 0.0844155844155844, 0.5, 0.48185910719452696]}, {"name": "Ricoh Aficio MP C3002", "score": 60, "image": "/images/WEBP/all-in-one-printer/ricoh-aficio-mp-c3002.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features", "Miscellaneous"], "propScore": [0.30462470890394966, 0.8813706030991223, 0.18722569213710763, 0.2532467532467533, 0.005025125628140704, 0.6096291595636578]}, {"name": "Ricoh Aficio MP C305", "score": 56, "image": "/images/WEBP/all-in-one-printer/ricoh-aficio-mp-c305.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features", "Miscellaneous"], "propScore": [0.3868544370656995, 0.7623999535024014, 0.19444444444444445, 0.1688311688311688, 0, 0.6539007146316329]}, {"name": "Ricoh Aficio MP C4502", "score": 62, "image": "/images/WEBP/all-in-one-printer/ricoh-aficio-mp-c4502.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features", "Miscellaneous"], "propScore": [0.2737643739219967, 0.9537620694170155, 0.19444444444444445, 0.211038961038961, 0.005025125628140704, 0.7155549646721177]}, {"name": "Ricoh Aficio MP C400", "score": 67, "image": "/images/WEBP/all-in-one-printer/ricoh-aficio-mp-c400.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features", "Miscellaneous"], "propScore": [0.3713969837516986, 0.7569574508506345, 0.19444444444444445, 0.3376623376623376, 0.5, 0.6847278396518752]}, {"name": "Ricoh Aficio MP C3502", "score": 67, "image": "/images/WEBP/all-in-one-printer/ricoh-aficio-mp-c3502.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features", "Miscellaneous"], "propScore": [0.30462470890394966, 0.8102387507491965, 0.19444444444444445, 0.37987012987012986, 0.005025125628140704, 0.6847278396518752]}, {"name": "Ricoh Aficio SP C240SF", "score": 44, "image": "/images/WEBP/all-in-one-printer/ricoh-aficio-sp-c240sf.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features", "Miscellaneous"], "propScore": [0.7244306220983537, 0.7561192433920868, 0.02821350762527233, 0.1688311688311688, 0.37690908409341567, 0.37074271248741214]}, {"name": "Ricoh Aficio SP C242SF", "score": 46, "image": "/images/WEBP/all-in-one-printer/ricoh-aficio-sp-c242sf.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features", "Miscellaneous"], "propScore": [0.710000270209087, 0.8065409700279167, 0.02821350762527233, 0.1688311688311688, 0.37690908409341567, 0.37074271248741214]}, {"name": "Ricoh Aficio MP C5502", "score": 70, "image": "/images/WEBP/all-in-one-printer/ricoh-aficio-mp-c5502.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features", "Miscellaneous"], "propScore": [0.28581230318249, 1, 0.19444444444444445, 0.3376623376623376, 0.005025125628140704, 0.7155549646721177]}, {"name": "Ricoh MP C3003", "score": 51, "image": "/images/WEBP/all-in-one-printer/ricoh-mp-c3003.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features", "Miscellaneous"], "propScore": [0.29704394911474274, 0.774061537496296, 0.18953320984836336, 0.12662337662337664, 0.005025125628140704, 0.6847278396518752]}, {"name": "Samsung CLX-3305", "score": 33, "image": "/images/WEBP/all-in-one-printer/samsung-clx-3305.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features", "Miscellaneous"], "propScore": [0.48409719887740205, 0.5588913162663819, 0, 0, 0.49022842915006914, 0.2959870626734428]}, {"name": "Samsung CLP-365", "score": 37, "image": "/images/WEBP/all-in-one-printer/samsung-clp-365.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features", "Miscellaneous"], "propScore": [0.4720348617993291, 0.3579189455998291, 0, 0.0422077922077922, 0.49022842915006914, 0.4190979516555692]}, {"name": "Ricoh MP C3503", "score": 59, "image": "/images/WEBP/all-in-one-printer/ricoh-mp-c3503.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features", "Miscellaneous"], "propScore": [0.33781751549938255, 0.6826334519594544, 0.19444444444444445, 0.2532467532467533, 0.005025125628140704, 0.6096291595636578]}, {"name": "Samsung CLX-3305FN", "score": 36, "image": "/images/WEBP/all-in-one-printer/samsung-clx-3305fn.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features", "Miscellaneous"], "propScore": [0.634301277436209, 0.5588913162663819, 0, 0, 0.49022842915006914, 0.3269713326724091]}, {"name": "Samsung CLX-6220FX", "score": 37, "image": "/images/WEBP/all-in-one-printer/samsung-clx-6220fx.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features", "Miscellaneous"], "propScore": [0.5753651923541562, 0.6678568164438979, 0, 0, 0, 0.41304599473530723]}, {"name": "Samsung CLX-4195FN", "score": 49, "image": "/images/WEBP/all-in-one-printer/samsung-clx-4195fn.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features", "Miscellaneous"], "propScore": [0.6066219442489521, 0.7199059206884908, 0.22265795206971678, 0, 0.491015146403395, 0.4180406576372347]}, {"name": "Samsung CLX-3305FW", "score": 38, "image": "/images/WEBP/all-in-one-printer/samsung-clx-3305fw.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features", "Miscellaneous"], "propScore": [0.5779015712407377, 0.41918017670855934, 0.036458333333333336, 0.19345238095238093, 0.49022842915006914, 0.27069675130166665]}, {"name": "Samsung CLX-4195FW", "score": 55, "image": "/images/WEBP/all-in-one-printer/samsung-clx-4195fw.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features", "Miscellaneous"], "propScore": [0.6743130171961764, 0.6093009328043589, 0.22265795206971678, 0.12662337662337664, 0.584458412991538, 0.5931260354395473]}, {"name": "Samsung CLX-6250FX", "score": 38, "image": "/images/WEBP/all-in-one-printer/samsung-clx-6250fx.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features"], "propScore": [0.5753651923541562, 0.7681005520704568, 0, 0, 0, 0.42333962309903084]}, {"name": "Samsung CLX-8385NX", "score": 51, "image": "/images/WEBP/all-in-one-printer/samsung-clx-8385nx.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features"], "propScore": [0.7419008765516625, 0.8605167010195092, 0.3888888888888889, 0, 0, 0.5620832202489058]}, {"name": "Samsung CLX-8385ND", "score": 46, "image": "/images/WEBP/all-in-one-printer/samsung-clx-8385nd.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features"], "propScore": [0.5534403988688916, 0.7122321327188389, 0.19444444444444445, 0, 0, 0.5010316946628061]}, {"name": "Samsung CLX-6260ND", "score": 53, "image": "/images/WEBP/all-in-one-printer/samsung-clx-6260nd.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features", "Miscellaneous"], "propScore": [0.6419595156558856, 0.7409763152850705, 0.22265795206971678, 0, 0.5431037204080867, 0.4405989737602988]}, {"name": "Samsung M2875FD", "score": 33, "image": "/images/WEBP/all-in-one-printer/samsung-m2875fd.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features", "Miscellaneous"], "propScore": [0.7172782453428925, 0.5496463675048691, 0.02821350762527233, 0, 0.48682754171327786, 0.26654837297799355]}, {"name": "Samsung CLX-9201NA", "score": 38, "image": "/images/WEBP/all-in-one-printer/samsung-clx-9201na.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features"], "propScore": [0.7131982294411324, 0.4524617607422968, 0, 0.0422077922077922, 0.47110552763819097, 0.14148467699112163]}, {"name": "Samsung CLX-9250ND", "score": 47, "image": "/images/WEBP/all-in-one-printer/samsung-clx-9250nd.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features"], "propScore": [0.7697181526499145, 0.6811824824795258, 0.3888888888888889, 0, 0, 0.5173869093258746]}, {"name": "Samsung CLX-9350ND", "score": 51, "image": "/images/WEBP/all-in-one-printer/samsung-clx-9350nd.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features"], "propScore": [0.7696009141150933, 0.7750538401013738, 0.3888888888888889, 0, 0, 0.5775776341402339]}, {"name": "Samsung ProXpress M3870", "score": 40, "image": "/images/WEBP/all-in-one-printer/samsung-proxpress-m3870.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features", "Miscellaneous"], "propScore": [0.8199359665375231, 0.5332922092044233, 0, 0, 0.28266331658291455, 0.208654914861449]}, {"name": "Samsung ProXpress M3370FD", "score": 40, "image": "/images/WEBP/all-in-one-printer/samsung-proxpress-m3370fd.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features", "Miscellaneous"], "propScore": [0.5797772735758251, 0.3758575230271519, 0.23333333333333336, 0.15476190476190474, 0.28266331658291455, 0.21409709918551273]}, {"name": "Samsung ProXpress M4070FR", "score": 42, "image": "/images/WEBP/all-in-one-printer/samsung-proxpress-m4070fr.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features", "Miscellaneous"], "propScore": [0.5644024122511592, 0.4077983299225501, 0.46380718954248373, 0.0422077922077922, 0.5025372247969332, 0.15584984031243254]}, {"name": "Samsung ML-1676P", "score": 21, "image": "/images/WEBP/all-in-one-printer/samsung-ml-1676p.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features", "Miscellaneous"], "propScore": [0.508371744010961, 0.213766656756875, 0, 0.0422077922077922, 0.417713567839196, 0.03350613261428258]}, {"name": "Samsung SCX-4021S", "score": 32, "image": "/images/WEBP/all-in-one-printer/samsung-scx-4021s.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features", "Miscellaneous"], "propScore": [0.6101466365364271, 0.4493295064636409, 0, 0.0422077922077922, 0.3611809045226131, 0.2802230814278219]}, {"name": "Samsung SCX-4521F", "score": 29, "image": "/images/WEBP/all-in-one-printer/samsung-scx-4521f.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features"], "propScore": [0.43563066956835406, 0.2956268464446918, 0.3633986928104576, 0.0422077922077922, 0, 0.2038904907886399]}, {"name": "Samsung SCX-3405", "score": 22, "image": "/images/WEBP/all-in-one-printer/samsung-scx-3405.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features", "Miscellaneous"], "propScore": [0.5316687307498522, 0.3201579136654323, 0, 0.0422077922077922, 0.5449336395365125, 0.03138420321241661]}, {"name": "Samsung SCX-3405F", "score": 32, "image": "/images/WEBP/all-in-one-printer/samsung-scx-3405f.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features", "Miscellaneous"], "propScore": [0.627787846191392, 0.48711837519956996, 0, 0.1392857142857143, 0.40515075376884424, 0]}, {"name": "Samsung SCX-4833FD", "score": 32, "image": "/images/WEBP/all-in-one-printer/samsung-scx-4833fd.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features", "Miscellaneous"], "propScore": [0.4848884379630725, 0.39875749687459827, 0.018809005083514886, 0.0422077922077922, 0.4554205065373984, 0.12483593569322986]}, {"name": "Samsung SCX-4833FR", "score": 35, "image": "/images/WEBP/all-in-one-printer/samsung-scx-4833fr.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features", "Miscellaneous"], "propScore": [0.5563077818011718, 0.5206028813476524, 0.05975285259130861, 0.0422077922077922, 0.4554205065373984, 0.14282980405413892]}, {"name": "Samsung SL-M2826ND", "score": 15, "image": "/images/WEBP/all-in-one-printer/samsung-sl-m2826nd.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features", "Miscellaneous"], "propScore": [0.42683877001906656, 0.2047579303032191, 0, 0.0422077922077922, 0, 0.03151198923803895]}, {"name": "Samsung SCX-5637FR", "score": 28, "image": "/images/WEBP/all-in-one-printer/samsung-scx-5637fr.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features"], "propScore": [0.6052814162958996, 0.3533390560411525, 0.02821350762527233, 0.0422077922077922, 0.44495149481210533, 0.20541965963546957]}, {"name": "Samsung SLC460FW", "score": 38, "image": "/images/WEBP/all-in-one-printer/samsung-slc460fw.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features", "Miscellaneous"], "propScore": [0.6981194326895357, 0.5588913162663819, 0, 0.12662337662337664, 0.49022842915006914, 0.39348874968238984]}, {"name": "Xerox WorkCentre 3210V/N", "score": 43, "image": "/images/WEBP/all-in-one-printer/xerox-workcentre-3210v-n.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features", "Miscellaneous"], "propScore": [0.678166998110715, 0.4008786017285441, 0.4239651416122005, 0.0422077922077922, 0.4567275916291311, 0.2712537707167286]}, {"name": "Xerox WorkCentre 6505DN", "score": 53, "image": "/images/WEBP/all-in-one-printer/xerox-workcentre-6505dn.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features", "Miscellaneous"], "propScore": [0.7375694291992727, 0.5960534888721077, 0.0635288098868837, 0.0422077922077922, 0.4521466283123509, 0.5200040409462816]}, {"name": "Xerox WorkCentre 6400S", "score": 58, "image": "/images/WEBP/all-in-one-printer/xerox-workcentre-6400s.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features", "Miscellaneous"], "propScore": [0.6046385517294748, 0.619237443324984, 0.1743494344329984, 0.0422077922077922, 0.1660131241208003, 0.611695316511215]}, {"name": "Xerox WorkCentre 7125T", "score": 65, "image": "/images/WEBP/all-in-one-printer/xerox-workcentre-7125t.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features"], "propScore": [0.7016332715188066, 0.5452619823154949, 0.3192304847133144, 0.1688311688311688, 0.3141043852951448, 0.6218906083963787]}, {"name": "Xerox WorkCentre 7120S", "score": 60, "image": "/images/WEBP/all-in-one-printer/xerox-workcentre-7120s.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features"], "propScore": [0.5612587591092144, 0.5253242928059638, 0.3192304847133144, 0.1688311688311688, 0.3141043852951448, 0.6218906083963787]}, {"name": "Xerox WorkCentre 7125S", "score": 61, "image": "/images/WEBP/all-in-one-printer/xerox-workcentre-7125s.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features"], "propScore": [0.5612587591092144, 0.5452619823154949, 0.3192304847133144, 0.1688311688311688, 0.3141043852951448, 0.6198164192345421]}, {"name": "Xerox WorkCentre 7120T", "score": 59, "image": "/images/WEBP/all-in-one-printer/xerox-workcentre-7120t.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Print quality", "Scan quality", "Connectivity", "Power", "Features"], "propScore": [0.5677222844740009, 0.5256554992846557, 0.3192304847133144, 0.15476190476190474, 0.3141043852951448, 0.6218906083963787]}]}
data/art-design-faculty.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"data": [{"name": "Boston College of Fine Arts", "score": 61, "image": "/images/WEBP/art-design-faculty/boston-college-of-fine-arts.warm_day.medium2x.1576684641045.webp", "propGroups": ["General info", "Admissions", "Facilities", "Honors", "Tuition & Aid", "Miscellaneous"], "propScore": [0.6965045781516648, 0.5497916699862753, 0.48597050443712747, 0.17717353688504067, 0.42190360904027846]}, {"name": "Boston College of Arts and Sciences", "score": 64, "image": "/images/WEBP/art-design-faculty/boston-college-of-arts-and-sciences.warm_day.medium2x.1576684641045.webp", "propGroups": ["General info", "Admissions", "Facilities", "Honors", "Tuition & Aid", "Miscellaneous"], "propScore": [0.7078322345924336, 0.5699567412150931, 0.48597050443712747, 0.2761660697758787, 0.527012449555605]}, {"name": "Case College of Arts and Sciences", "score": 47, "image": "/images/WEBP/art-design-faculty/case-college-of-arts-and-sciences.warm_day.medium2x.1576684641045.webp", "propGroups": ["General info", "Admissions", "Facilities", "Honors", "Tuition & Aid", "Miscellaneous"], "propScore": [0.5571526411537632, 0.4620288415242985, 0.5035467121519559, 0.047979636804651137, 0.43530257619950763]}, {"name": "Carnegie College of Fine Arts", "score": 60, "image": "/images/WEBP/art-design-faculty/carnegie-college-of-fine-arts.warm_day.medium2x.1576684641045.webp", "propGroups": ["General info", "Admissions", "Facilities", "Honors", "Tuition & Aid", "Miscellaneous"], "propScore": [0.7606126147888944, 0.4941156463544697, 0.43103355044451075, 0.20480536412739808, 0.4468545139635876]}, {"name": "College of Liberal Arts and Sciences", "score": 53, "image": "/images/WEBP/art-design-faculty/college-of-liberal-arts-and-sciences.warm_day.medium2x.1576684641045.webp", "propGroups": ["General info", "Admissions", "Facilities", "Honors", "Tuition & Aid", "Miscellaneous"], "propScore": [0.9003442824087898, 0.2777239569855816, 0.7582071461638886, 0.3116617725344737, 0.4896351043092767]}, {"name": "College of Arts and Science", "score": 81, "image": "/images/WEBP/art-design-faculty/college-of-arts-and-science.warm_day.medium2x.1576684641045.webp", "propGroups": ["General info", "Admissions", "Facilities", "Honors", "Tuition & Aid", "Miscellaneous"], "propScore": [0.897372159355168, 0.6414225605184642, 0.6347656582502277, 0.4896135055983407, 0.5620977002084631]}, {"name": "College of Architecture, Art, and Planning", "score": 74, "image": "/images/WEBP/art-design-faculty/college-of-architecture-art-and-planning.warm_day.medium2x.1576684641045.webp", "propGroups": ["General info", "Admissions", "Facilities", "Honors", "Tuition & Aid", "Miscellaneous"], "propScore": [0.8426212099800088, 0.49204568072529115, 0.6961929247965579, 0.41856367994379506, 0.7590185682538768]}, {"name": "Central Saint Martins", "score": 86, "image": "/images/WEBP/art-design-faculty/central-saint-martins.warm_day.medium2x.1576684641045.webp", "propGroups": ["General info", "Admissions", "Facilities", "Honors", "Tuition & Aid"], "propScore": [0.9825927270283936, 1, 0.48731955293341, 0.03500271735644211, 0.9569753054000095]}, {"name": "Fashion Institute of Technology", "score": 58, "image": "/images/WEBP/art-design-faculty/fashion-institute-of-technology.warm_day.medium2x.1576684641045.webp", "propGroups": ["General info", "Admissions", "Facilities", "Honors", "Tuition & Aid"], "propScore": [0.3635253540344102, 0.3639519901803393, 0.4717663317705769, 0.8135593220338984, 1]}, {"name": "Faculty of Arts and Sciences", "score": 96, "image": "/images/WEBP/art-design-faculty/faculty-of-arts-and-sciences.warm_day.medium2x.1576684641045.webp", "propGroups": ["General info", "Admissions", "Facilities", "Honors", "Tuition & Aid", "Miscellaneous"], "propScore": [0.9894942665586252, 0.6530980993231421, 0.9001759356625436, 1, 0.45091963920781974]}, {"name": "Graduate School of Arts and Sciences", "score": 78, "image": "/images/WEBP/art-design-faculty/graduate-school-of-arts-and-sciences.warm_day.medium2x.1576684641045.webp", "propGroups": ["General info", "Admissions", "Facilities", "Honors", "Tuition & Aid", "Miscellaneous"], "propScore": [0.713988068273186, 0.5578166164181123, 0.46629105198964876, 0.5726793618067573, 0.7178181344525975]}, {"name": "Cornell College of Arts and Sciences", "score": 78, "image": "/images/WEBP/art-design-faculty/cornell-college-of-arts-and-sciences.warm_day.medium2x.1576684641045.webp", "propGroups": ["General info", "Admissions", "Facilities", "Honors", "Tuition & Aid", "Miscellaneous"], "propScore": [0.799052138952303, 0.616799495237933, 0.6961929247965579, 0.43985249342176636, 0.6966494445858697]}, {"name": "Institute of Fine Arts", "score": 71, "image": "/images/WEBP/art-design-faculty/institute-of-fine-arts.warm_day.medium2x.1576684641045.webp", "propGroups": ["General info", "Admissions", "Facilities", "Honors", "Tuition & Aid", "Miscellaneous"], "propScore": [0.5070381215368437, 0.5956335205988585, 0.6347656582502277, 0.43050927742308154, 0.6471556121912312]}, {"name": "Herberger Institute", "score": 50, "image": "/images/WEBP/art-design-faculty/herberger-institute.warm_day.medium2x.1576684641045.webp", "propGroups": ["General info", "Admissions", "Facilities", "Honors", "Tuition & Aid", "Miscellaneous"], "propScore": [0.8663548536358976, 0.30165153796426647, 0.7582071461638886, 0.3116617725344737, 0.4896351043092767]}, {"name": "Harvard Graduate School of Arts and Sciences", "score": 100, "image": "/images/WEBP/art-design-faculty/harvard-graduate-school-of-arts-and-sciences.warm_day.medium2x.1576684641045.webp", "propGroups": ["General info", "Admissions", "Facilities", "Honors", "Tuition & Aid", "Miscellaneous"], "propScore": [1, 0.641568119147364, 0.9001759356625436, 1, 0.5272951410410913]}, {"name": "Graduate School of Design", "score": 87, "image": "/images/WEBP/art-design-faculty/graduate-school-of-design.warm_day.medium2x.1576684641045.webp", "propGroups": ["General info", "Admissions", "Facilities", "Honors", "Tuition & Aid", "Miscellaneous"], "propScore": [0.8177419248352138, 0.5185728672038235, 1, 0.9314719513445482, 0.509200771165767]}, {"name": "London College of Fashion", "score": 79, "image": "/images/WEBP/art-design-faculty/london-college-of-fashion.warm_day.medium2x.1576684641045.webp", "propGroups": ["General info", "Admissions", "Facilities", "Honors", "Tuition & Aid"], "propScore": [0.880718564694346, 0, 0.47934499642306566, 0.008012038803467845, 0.9569753054000095]}, {"name": "MIT School of Architecture and Planning", "score": 73, "image": "/images/WEBP/art-design-faculty/mit-school-of-architecture-and-planning.warm_day.medium2x.1576684641045.webp", "propGroups": ["General info", "Admissions", "Facilities", "Honors", "Tuition & Aid", "Miscellaneous"], "propScore": [0.7561086763196025, 0.5863226181400542, 0.48562457354695593, 0.4496584242550545, 0.5286110916506659]}, {"name": "Krieger School", "score": 58, "image": "/images/WEBP/art-design-faculty/krieger-school.warm_day.medium2x.1576684641045.webp", "propGroups": ["General info", "Admissions", "Facilities", "Honors", "Tuition & Aid", "Miscellaneous"], "propScore": [0.702526504346947, 0.4723310862170167, 0.6298626128969117, 0.14974758264887877, 0.3922433072801768]}, {"name": "MIT School of Humanities, Arts, and Social Sciences", "score": 73, "image": "/images/WEBP/art-design-faculty/mit-school-of-humanities-arts-and-social-sciences.warm_day.medium2x.1576684641045.webp", "propGroups": ["General info", "Admissions", "Facilities", "Honors", "Tuition & Aid", "Miscellaneous"], "propScore": [0.7858251000198145, 0.5819338179660264, 0.5371466712695142, 0.4965164323101152, 0.45470616050895113]}, {"name": "Savannah College of Art and Design", "score": 40, "image": "/images/WEBP/art-design-faculty/savannah-college-of-art-and-design.warm_day.medium2x.1576684641045.webp", "propGroups": ["General info", "Admissions", "Facilities", "Honors", "Tuition & Aid"], "propScore": [0.8422223937819564, 0.17569431336312413, 0.4636988795030237, 0, 0.7265516011431996]}, {"name": "Parsons School of Design", "score": 63, "image": "/images/WEBP/art-design-faculty/parsons-school-of-design.warm_day.medium2x.1576684641045.webp", "propGroups": ["General info", "Admissions", "Facilities", "Honors", "Tuition & Aid"], "propScore": [0.6253961187005772, 0.41679707233018326, 0.2400363720274335, 0.6101694915254239, 0.8784080090615947]}, {"name": "School of the Arts", "score": 62, "image": "/images/WEBP/art-design-faculty/school-of-the-arts.warm_day.medium2x.1576684641045.webp", "propGroups": ["General info", "Admissions", "Facilities", "Honors", "Tuition & Aid", "Miscellaneous"], "propScore": [0.8131914083851737, 0.612246051585038, 0.46629105198964876, 0.4559209276369209, 0.7915627731145575]}, {"name": "Royal College of Art", "score": 53, "image": "/images/WEBP/art-design-faculty/royal-college-of-art.warm_day.medium2x.1576684641045.webp", "propGroups": ["General info", "Admissions", "Facilities", "Honors", "Tuition & Aid"], "propScore": [0.9101583861015167, 0.01734468895402068, 0.29947219301236944, 0, 0.5820360648293059]}, {"name": "Yale School of Art", "score": 81, "image": "/images/WEBP/art-design-faculty/yale-school-of-art.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Admissions", "Facilities", "Honors", "Tuition & Aid", "Miscellaneous"], "propScore": [0.9759679016634641, 0.559120005967967, 0.7389371891535252, 0.6602205847319061, 0.6258995008795888]}, {"name": "Tisch School", "score": 65, "image": "/images/WEBP/art-design-faculty/tisch-school.warm_day.medium2x.1576684641045.webp", "propGroups": ["General info", "Admissions", "Facilities", "Honors", "Tuition & Aid", "Miscellaneous"], "propScore": [0.653080791041967, 0.5195543773898147, 0.6347656582502277, 0.3952018153152852, 0.5387855656716091]}, {"name": "Yale School of Architecture", "score": 75, "image": "/images/WEBP/art-design-faculty/yale-school-of-architecture.warm_day.medium2x.1576684641045.webp", "propGroups": ["General info", "Admissions", "Facilities", "Honors", "Tuition & Aid", "Miscellaneous"], "propScore": [0.8734393400654684, 0.6146738396231188, 0.7228365336152258, 0.4733317366173152, 0.5018341351590629]}]}
data/bike-light.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"data": [{"name": "Blaze Laserlight", "score": 42, "image": "/images/WEBP/bike-light/blaze-laserlight.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Light", "Battery"], "propScore": [0.7009610366185102, 0.07481926461938211, 0.6347699658704553]}, {"name": "CatEye Nano Shot Plus", "score": 61, "image": "/images/WEBP/bike-light/cateye-nano-shot-plus.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Light", "Battery"], "propScore": [0.8808499621281309, 0.1895220225744698, 0.6260821190809864]}, {"name": "CatEye Volt1200", "score": 63, "image": "/images/WEBP/bike-light/cateye-volt1200.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Light", "Battery"], "propScore": [0.8689892239524609, 0.22111625164512225, 0.8098564397846059]}, {"name": "CatEye Sumo 3", "score": 56, "image": "/images/WEBP/bike-light/cateye-sumo-3.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Light", "Battery"], "propScore": [0.6100522780512586, 0.2096045925203163, 0.5767366983767993]}, {"name": "Cygolite Centauri 1700 OSP", "score": 51, "image": "/images/WEBP/bike-light/cygolite-centauri-1700-osp.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Light", "Battery"], "propScore": [0.5744473342002602, 0.5611255535256154, 0.6057439449618056]}, {"name": "Cygolite Metro 500 USB", "score": 47, "image": "/images/WEBP/bike-light/cygolite-metro-500-usb.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Light", "Battery"], "propScore": [0.6223992197659298, 0.3901832249448517, 0.5732459504352841]}, {"name": "Cygolite Expilion 800 USB", "score": 55, "image": "/images/WEBP/bike-light/cygolite-expilion-800-usb.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Light", "Battery"], "propScore": [0.7434980494148246, 0.7266164595519606, 0.5043816196870975]}, {"name": "CatEye Volt300", "score": 74, "image": "/images/WEBP/bike-light/cateye-volt300.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Light", "Battery"], "propScore": [0.9090374679884174, 0.07923536874006254, 0.7429609069367672]}, {"name": "Cygolite TridenX 1300 OSP", "score": 55, "image": "/images/WEBP/bike-light/cygolite-tridenx-1300-osp.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Light", "Battery"], "propScore": [0.5996423927178154, 0.5344058234715316, 0.6329082706825633]}, {"name": "Cygolite MityCross 800 OSP", "score": 50, "image": "/images/WEBP/bike-light/cygolite-mitycross-800-osp.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Light", "Battery"], "propScore": [0.6012678803641093, 0.40779627750422204, 0.6062810457520443]}, {"name": "Cygolite Trion 1300", "score": 57, "image": "/images/WEBP/bike-light/cygolite-trion-1300.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Light", "Battery"], "propScore": [0.5980169050715215, 0.5311188404280346, 0.6329082706825633]}, {"name": "Cygolite TridenX 1300 Xtra OSP", "score": 61, "image": "/images/WEBP/bike-light/cygolite-tridenx-1300-xtra-osp.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Light", "Battery"], "propScore": [0.5801365409622887, 0.500714247275686, 0.8106864493234803]}, {"name": "DiNotte XML-3", "score": 78, "image": "/images/WEBP/bike-light/dinotte-xml-3.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Light", "Battery"], "propScore": [0.882739802470336, 0.4958500979813039, 0.6460865421363632]}, {"name": "Exposure Lights Diablo Mk5", "score": 62, "image": "/images/WEBP/bike-light/exposure-lights-diablo-mk5.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Light", "Battery"], "propScore": [0.8752579286182549, 0.7351184184239288, 0.6384830260640305]}, {"name": "Exposure Lights Axis", "score": 62, "image": "/images/WEBP/bike-light/exposure-lights-axis.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Light", "Battery"], "propScore": [0.8786096572773485, 0.5967457131859991, 0.7206161341447547]}, {"name": "DiNotte XML-1", "score": 75, "image": "/images/WEBP/bike-light/dinotte-xml-1.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Light", "Battery"], "propScore": [0.8688970327461875, 0.1551542563181681, 0.8441163193425735]}, {"name": "Exposure Lights Race Mk8", "score": 57, "image": "/images/WEBP/bike-light/exposure-lights-race-mk8.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Light", "Battery"], "propScore": [0.865511719631592, 0.24037874568779033, 0.7767070372242736]}, {"name": "Exposure Lights Equinox", "score": 64, "image": "/images/WEBP/bike-light/exposure-lights-equinox.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Light", "Battery"], "propScore": [0.8712143601758213, 0.5879445905097679, 0.61527299720354]}, {"name": "Exposure Lights Joystick Mk8", "score": 60, "image": "/images/WEBP/bike-light/exposure-lights-joystick-mk8.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Light", "Battery"], "propScore": [0.879620549387957, 0.551623943484308, 0.7206161341447547]}, {"name": "Exposure Lights MaXx-D Mk6", "score": 62, "image": "/images/WEBP/bike-light/exposure-lights-maxx-d-mk6.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Light", "Battery"], "propScore": [0.7335449601822697, 0.3327742922249447, 0.8888888433833112]}, {"name": "Exposure Lights Reflex Mk2", "score": 71, "image": "/images/WEBP/bike-light/exposure-lights-reflex-mk2.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Light", "Battery"], "propScore": [0.7321377714967383, 0.8429786401249058, 0.8656788145228206]}, {"name": "Exposure Lights Six Pack Mk4", "score": 64, "image": "/images/WEBP/bike-light/exposure-lights-six-pack-mk4.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Light", "Battery"], "propScore": [0.7240405592752207, 0.2830769132254097, 0.9449797464628301]}, {"name": "Exposure Lights Strada Mk5", "score": 60, "image": "/images/WEBP/bike-light/exposure-lights-strada-mk5.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Light", "Battery"], "propScore": [0.7455211770142613, 0.1692046061859327, 0.8908230124550188]}, {"name": "Exposure Lights Sirius Mk2", "score": 49, "image": "/images/WEBP/bike-light/exposure-lights-sirius-mk2.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Light", "Battery"], "propScore": [0.8821628926694537, 0.08670829246412932, 0.5791543783831442]}, {"name": "Light & Motion Seca 1500", "score": 68, "image": "/images/WEBP/bike-light/light-motion-seca-1500.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Light", "Battery"], "propScore": [0.7105006501950586, 0.6689014032431271, 0.5201809468991128]}, {"name": "Gemini Olympia LED Light System", "score": 54, "image": "/images/WEBP/bike-light/gemini-olympia-led-light-system.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Light", "Battery"], "propScore": [0.5707087126137842, 0.3532954174160028, 0.8299415608839742]}, {"name": "Exposure Lights Toro Mk5", "score": 59, "image": "/images/WEBP/bike-light/exposure-lights-toro-mk5.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Light", "Battery"], "propScore": [0.7419914507410074, 0.2945145830064131, 0.8327979403037925]}, {"name": "Gemini Duo LED Light System", "score": 46, "image": "/images/WEBP/bike-light/gemini-duo-led-light-system.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Light", "Battery"], "propScore": [0.6586837162259789, 0.2545179716850371, 0.5027472428241616]}, {"name": "Light & Motion Stella 500", "score": 54, "image": "/images/WEBP/bike-light/light-motion-stella-500.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Light", "Battery"], "propScore": [0.6025682704811444, 0.3490240957227777, 0.6177276440177355]}, {"name": "Light & Motion Solite 250EX", "score": 70, "image": "/images/WEBP/bike-light/light-motion-solite-250ex.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Light", "Battery"], "propScore": [0.6160598179453837, 0.4168442329661603, 1]}, {"name": "Light & Motion Seca 2000 Enduro", "score": 70, "image": "/images/WEBP/bike-light/light-motion-seca-2000-enduro.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Light", "Battery"], "propScore": [0.6857932379713914, 0.7930898579657002, 0.5356169092845829]}, {"name": "Light & Motion Seca 2000 Race", "score": 64, "image": "/images/WEBP/bike-light/light-motion-seca-2000-race.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Light", "Battery"], "propScore": [0.5095000722438954, 0.8188310439250871, 0.4641995148427545]}, {"name": "Light & Motion Urban 550", "score": 54, "image": "/images/WEBP/bike-light/light-motion-urban-550.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Light", "Battery"], "propScore": [0.8740247074122237, 0.1201041244736069, 0.5897855806690323]}, {"name": "Light & Motion Taz 1200", "score": 67, "image": "/images/WEBP/bike-light/light-motion-taz-1200.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Light", "Battery"], "propScore": [0.8571196358907672, 0.5472938644501469, 0.5616226871629537]}, {"name": "Lumicycle Apex", "score": 72, "image": "/images/WEBP/bike-light/lumicycle-apex.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Light", "Battery"], "propScore": [0.41991764195925446, 0.17994462415926785, 0.9361915305384579]}, {"name": "Light & Motion Urban 700", "score": 64, "image": "/images/WEBP/bike-light/light-motion-urban-700.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Light", "Battery"], "propScore": [1, 0.40692028430583693, 0.5939450177895962]}, {"name": "Lupine Betty R 7", "score": 84, "image": "/images/WEBP/bike-light/lupine-betty-r-7.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Light", "Battery"], "propScore": [0.6172520661157025, 1, 0.6868681446431352]}, {"name": "Lupine Betty R 10", "score": 85, "image": "/images/WEBP/bike-light/lupine-betty-r-10.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Light", "Battery"], "propScore": [0.6158972691807542, 0.8191406059129115, 0.650767586661462]}, {"name": "Lupine Betty R 14", "score": 89, "image": "/images/WEBP/bike-light/lupine-betty-r-14.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Light", "Battery"], "propScore": [0.6009971896527636, 0.9765597021710613, 0.8545349974966853]}, {"name": "Lumicycle Explorer", "score": 72, "image": "/images/WEBP/bike-light/lumicycle-explorer.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Light", "Battery"], "propScore": [0.6165474642392719, 0.6590172078552811, 0.6530159796523547]}, {"name": "Lupine Piko 7", "score": 100, "image": "/images/WEBP/bike-light/lupine-piko-7.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Light", "Battery"], "propScore": [0.8207148074070463, 0.7747943127639988, 0.9069660904504666]}, {"name": "Lupine Piko U4", "score": 86, "image": "/images/WEBP/bike-light/lupine-piko-u4.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Light", "Battery"], "propScore": [0.738815237536085, 0.8053961248989568, 0.6253732180240956]}, {"name": "Lupine Piko 4", "score": 86, "image": "/images/WEBP/bike-light/lupine-piko-4.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Light", "Battery"], "propScore": [0.8357193087574514, 0.8053961248989568, 0.6253732180240956]}, {"name": "Lupine Wilma 10", "score": 82, "image": "/images/WEBP/bike-light/lupine-wilma-10.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Light", "Battery"], "propScore": [0.7368295199303593, 0.7767153028485155, 0.8519056852210579]}, {"name": "NiteRider Pro 1200 Race", "score": 43, "image": "/images/WEBP/bike-light/niterider-pro-1200-race.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Light", "Battery"], "propScore": [0.624006646438376, 0.21881219704576887, 0.7025210801033261]}, {"name": "Moon X Power 1300", "score": 76, "image": "/images/WEBP/bike-light/moon-x-power-1300.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Light", "Battery"], "propScore": [0.8923382912931559, 0.6751619669649644, 0.5923546865966636]}, {"name": "Lupine Wilma 7", "score": 80, "image": "/images/WEBP/bike-light/lupine-wilma-7.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Light", "Battery"], "propScore": [0.7801164034367962, 0.6484407895760402, 0.7057330506705622]}, {"name": "Lupine Wilma 14", "score": 86, "image": "/images/WEBP/bike-light/lupine-wilma-14.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Light", "Battery"], "propScore": [0.7250077915936765, 0.7647794456718165, 0.9609623942109592]}, {"name": "Serfas TSL-750", "score": 45, "image": "/images/WEBP/bike-light/serfas-tsl-750.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Light", "Battery"], "propScore": [0.7280559167750325, 0.1528165344001429, 0.5619584912485941]}, {"name": "NiteRider Pro 3600 DIY", "score": 53, "image": "/images/WEBP/bike-light/niterider-pro-3600-diy.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Light", "Battery"], "propScore": [0.8398352839185089, 0.6641581403368197, 0.6163834828161086]}, {"name": "NiteRider Pro 1800 Race", "score": 52, "image": "/images/WEBP/bike-light/niterider-pro-1800-race.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Light", "Battery"], "propScore": [0.6875812743823146, 0.30829914906319916, 0.6775001226517522]}, {"name": "Serfas TSL-1500+", "score": 51, "image": "/images/WEBP/bike-light/serfas-tsl-1500.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Light", "Battery"], "propScore": [0.43628088426527956, 0.2692789968263754, 0.6947331215371669]}]}
data/bluetooth-headset.json ADDED
@@ -0,0 +1,1648 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "data": [
3
+ {
4
+ "name": "Anker Mono",
5
+ "score": 78,
6
+ "image": "/images/WEBP/headset-mobile-phone/anker-mono.front.medium2x.1610300569056.webp",
7
+ "propGroups": [
8
+ "Design",
9
+ "Sound quality",
10
+ "Microphone",
11
+ "Power",
12
+ "Connectivity",
13
+ "Features"
14
+ ],
15
+ "propScore": [
16
+ 0.3502444041152277,
17
+ 0.7443759630200308,
18
+ 0,
19
+ 0.7888888888888889,
20
+ 0.5114672285682599,
21
+ 0.56
22
+ ]
23
+ },
24
+ {
25
+ "name": "BlackBerry HS-500",
26
+ "score": 33,
27
+ "image": "/images/WEBP/headset-mobile-phone/blackberry-hs-500.front.medium2x.1576684641045.webp",
28
+ "propGroups": [
29
+ "Design",
30
+ "Sound quality",
31
+ "Microphone",
32
+ "Power",
33
+ "Connectivity",
34
+ "Features"
35
+ ],
36
+ "propScore": [
37
+ 0.23617511520737328,
38
+ 0.3333333333333333,
39
+ 0.47368421052631576,
40
+ 0.3333333333333333,
41
+ 0.30209604081179997,
42
+ 0.4666666666666666
43
+ ]
44
+ },
45
+ {
46
+ "name": "BlackBerry HS-700",
47
+ "score": 31,
48
+ "image": "/images/WEBP/headset-mobile-phone/blackberry-hs-700.front.medium2x.1576684641045.webp",
49
+ "propGroups": [
50
+ "Design",
51
+ "Sound quality",
52
+ "Microphone",
53
+ "Power",
54
+ "Connectivity",
55
+ "Features"
56
+ ],
57
+ "propScore": [
58
+ 0,
59
+ 0,
60
+ 0.47368421052631576,
61
+ 0.6666666666666666,
62
+ 0.3120660973716314,
63
+ 0.6222222222222221
64
+ ]
65
+ },
66
+ {
67
+ "name": "Audio-Technica ATH-CKM500i",
68
+ "score": 68,
69
+ "image": "/images/WEBP/headset-mobile-phone/audio-technica-ath-ckm500i.front.medium2x.1576684641045.webp",
70
+ "propGroups": [
71
+ "Design",
72
+ "Sound quality",
73
+ "Microphone",
74
+ "Power",
75
+ "Connectivity",
76
+ "Features"
77
+ ],
78
+ "propScore": [
79
+ 0.4973691116231439,
80
+ 0.46875,
81
+ 0,
82
+ 0,
83
+ 0.3845593244506408,
84
+ 0.31111111111111106
85
+ ]
86
+ },
87
+ {
88
+ "name": "BlueAnt Q2 Smart Bluetooth",
89
+ "score": 39,
90
+ "image": "/images/WEBP/headset-mobile-phone/blueant-q2-smart-bluetooth.front.medium2x.1576684641045.webp",
91
+ "propGroups": [
92
+ "Design",
93
+ "Sound quality",
94
+ "Microphone",
95
+ "Power",
96
+ "Connectivity",
97
+ "Features"
98
+ ],
99
+ "propScore": [
100
+ 0.24193548387096775,
101
+ 0,
102
+ 0,
103
+ 0.3333333333333333,
104
+ 0.3120660973716314,
105
+ 0.7200000000000001
106
+ ]
107
+ },
108
+ {
109
+ "name": "Bose MIE2i",
110
+ "score": 51,
111
+ "image": "/images/WEBP/headset-mobile-phone/bose-mie2i.front.medium2x.1576684641045.webp",
112
+ "propGroups": [
113
+ "Design",
114
+ "Sound quality",
115
+ "Microphone",
116
+ "Power",
117
+ "Connectivity",
118
+ "Features"
119
+ ],
120
+ "propScore": [
121
+ 0.4801587301587302,
122
+ 0,
123
+ 0,
124
+ 0,
125
+ 0.3845593244506408,
126
+ 0.6222222222222221
127
+ ]
128
+ },
129
+ {
130
+ "name": "BlueAnt Q3 Premium",
131
+ "score": 42,
132
+ "image": "/images/WEBP/headset-mobile-phone/blueant-q3-premium.front.medium2x.1576684641045.webp",
133
+ "propGroups": [
134
+ "Design",
135
+ "Sound quality",
136
+ "Microphone",
137
+ "Power",
138
+ "Connectivity",
139
+ "Features"
140
+ ],
141
+ "propScore": [
142
+ 0.24308755760368664,
143
+ 0,
144
+ 0.47368421052631576,
145
+ 0.3333333333333333,
146
+ 0.5014971720084285,
147
+ 0.44
148
+ ]
149
+ },
150
+ {
151
+ "name": "Bose Bluetooth Series 2",
152
+ "score": 46,
153
+ "image": "/images/WEBP/headset-mobile-phone/bose-bluetooth-series-2.front.medium2x.1576684641045.webp",
154
+ "propGroups": [
155
+ "Design",
156
+ "Sound quality",
157
+ "Microphone",
158
+ "Power",
159
+ "Connectivity",
160
+ "Features"
161
+ ],
162
+ "propScore": [
163
+ 0.23963133640552994,
164
+ 0,
165
+ 0.5263157894736843,
166
+ 0.6666666666666666,
167
+ 0.3117666629699457,
168
+ 0.7200000000000001
169
+ ]
170
+ },
171
+ {
172
+ "name": "Jabra EASYCALL",
173
+ "score": 36,
174
+ "image": "/images/WEBP/headset-mobile-phone/jabra-easycall.front.medium2x.1576684641045.webp",
175
+ "propGroups": [
176
+ "Design",
177
+ "Sound quality",
178
+ "Microphone",
179
+ "Power",
180
+ "Connectivity",
181
+ "Features"
182
+ ],
183
+ "propScore": [
184
+ 0.24377880184331796,
185
+ 0.1929824561403509,
186
+ 0.47368421052631576,
187
+ 0.6666666666666666,
188
+ 0.4017966064101142,
189
+ 0.6222222222222221
190
+ ]
191
+ },
192
+ {
193
+ "name": "Jabra BT2070",
194
+ "score": 30,
195
+ "image": "/images/WEBP/headset-mobile-phone/jabra-bt2070.front.medium2x.1576684641045.webp",
196
+ "propGroups": [
197
+ "Design",
198
+ "Sound quality",
199
+ "Microphone",
200
+ "Power",
201
+ "Connectivity",
202
+ "Features"
203
+ ],
204
+ "propScore": [
205
+ 0.24423963133640553,
206
+ 0,
207
+ 0.47368421052631576,
208
+ 0.3333333333333333,
209
+ 0.3364894088943107,
210
+ 0.4666666666666666
211
+ ]
212
+ },
213
+ {
214
+ "name": "Etymotic etyBLU2",
215
+ "score": 75,
216
+ "image": "/images/WEBP/headset-mobile-phone/etymotic-etyblu2.front.medium2x.1576684641045.webp",
217
+ "propGroups": [
218
+ "Design",
219
+ "Sound quality",
220
+ "Microphone",
221
+ "Power",
222
+ "Connectivity",
223
+ "Features"
224
+ ],
225
+ "propScore": [
226
+ 0,
227
+ 0.7491011813045713,
228
+ 0.47368421052631576,
229
+ 0.6666666666666666,
230
+ 0.3120660973716314,
231
+ 0.56
232
+ ]
233
+ },
234
+ {
235
+ "name": "Coumi BT-857S",
236
+ "score": 100,
237
+ "image": "/images/WEBP/headset-mobile-phone/coumi-bt-857s.front.medium2x.1621020127164.webp",
238
+ "propGroups": [
239
+ "Design",
240
+ "Sound quality",
241
+ "Microphone",
242
+ "Power",
243
+ "Connectivity",
244
+ "Features"
245
+ ],
246
+ "propScore": [
247
+ 0.46497676081515904,
248
+ 0.5443759630200308,
249
+ 0.5263157894736843,
250
+ 0.8888888888888888,
251
+ 0.6011977376067428,
252
+ 0.9333333333333332
253
+ ]
254
+ },
255
+ {
256
+ "name": "Jabra EXTREME2",
257
+ "score": 50,
258
+ "image": "/images/WEBP/headset-mobile-phone/jabra-extreme2.front.medium2x.1576684641045.webp",
259
+ "propGroups": [
260
+ "Design",
261
+ "Sound quality",
262
+ "Microphone",
263
+ "Power",
264
+ "Connectivity",
265
+ "Features"
266
+ ],
267
+ "propScore": [
268
+ 0.24193548387096775,
269
+ 0.3333333333333333,
270
+ 0.5263157894736843,
271
+ 0.6666666666666666,
272
+ 0.3988022623932571,
273
+ 0.7777777777777778
274
+ ]
275
+ },
276
+ {
277
+ "name": "Jabra Motion",
278
+ "score": 51,
279
+ "image": "/images/WEBP/headset-mobile-phone/jabra-motion.front.medium2x.1576684641045.webp",
280
+ "propGroups": [
281
+ "Design",
282
+ "Sound quality",
283
+ "Microphone",
284
+ "Power",
285
+ "Connectivity",
286
+ "Features"
287
+ ],
288
+ "propScore": [
289
+ 0.483294930875576,
290
+ 0,
291
+ 0.5263157894736843,
292
+ 0.6666666666666666,
293
+ 0.8973050903848285,
294
+ 0.9333333333333332
295
+ ]
296
+ },
297
+ {
298
+ "name": "Jabra Engage 75 Stereo/Mono",
299
+ "score": 83,
300
+ "image": "/images/WEBP/headset-mobile-phone/jabra-engage-75-stereo-mono.front.medium2x.1576684641045.webp",
301
+ "propGroups": [
302
+ "Design",
303
+ "Sound quality",
304
+ "Microphone",
305
+ "Power",
306
+ "Connectivity",
307
+ "Features",
308
+ "Miscellaneous"
309
+ ],
310
+ "propScore": [
311
+ 0.7663603161056366,
312
+ 0.4120441705187468,
313
+ 0.762289078767861,
314
+ 0.6555555555555556,
315
+ 0.647776422313408,
316
+ 0.45454545454545453
317
+ ]
318
+ },
319
+ {
320
+ "name": "Jabra EASYGO",
321
+ "score": 32,
322
+ "image": "/images/WEBP/headset-mobile-phone/jabra-easygo.front.medium2x.1576684641045.webp",
323
+ "propGroups": [
324
+ "Design",
325
+ "Sound quality",
326
+ "Microphone",
327
+ "Power",
328
+ "Connectivity",
329
+ "Features"
330
+ ],
331
+ "propScore": [
332
+ 0.24377880184331796,
333
+ 0,
334
+ 0.47368421052631576,
335
+ 0.6666666666666666,
336
+ 0.44865254519241426,
337
+ 0.44
338
+ ]
339
+ },
340
+ {
341
+ "name": "Jabra SPORT Corded",
342
+ "score": 28,
343
+ "image": "/images/WEBP/headset-mobile-phone/jabra-sport-corded.front.medium2x.1576684641045.webp",
344
+ "propGroups": [
345
+ "Design",
346
+ "Sound quality",
347
+ "Microphone",
348
+ "Power",
349
+ "Connectivity",
350
+ "Features"
351
+ ],
352
+ "propScore": [
353
+ 0.275,
354
+ 0,
355
+ 0.47368421052631576,
356
+ 0,
357
+ 0.3845593244506408,
358
+ 0.31111111111111106
359
+ ]
360
+ },
361
+ {
362
+ "name": "Jabra Stealth",
363
+ "score": 72,
364
+ "image": "/images/WEBP/headset-mobile-phone/jabra-stealth.front.medium2x.1576684641045.webp",
365
+ "propGroups": [
366
+ "Design",
367
+ "Sound quality",
368
+ "Microphone",
369
+ "Power",
370
+ "Connectivity",
371
+ "Features"
372
+ ],
373
+ "propScore": [
374
+ 0.22399193548387097,
375
+ 0.531578947368421,
376
+ 0.8149879775581084,
377
+ 0.688888888888889,
378
+ 0.8072529666186091,
379
+ 0.5272727272727272
380
+ ]
381
+ },
382
+ {
383
+ "name": "Jabra Stone",
384
+ "score": 29,
385
+ "image": "/images/WEBP/headset-mobile-phone/jabra-stone.front.medium2x.1576684641045.webp",
386
+ "propGroups": [
387
+ "Design",
388
+ "Sound quality",
389
+ "Microphone",
390
+ "Power",
391
+ "Connectivity",
392
+ "Features"
393
+ ],
394
+ "propScore": [
395
+ 0.2453917050691244,
396
+ 0,
397
+ 0.5263157894736843,
398
+ 0.6666666666666666,
399
+ 0.3120660973716314,
400
+ 0.31111111111111106
401
+ ]
402
+ },
403
+ {
404
+ "name": "Jabra SUPREME",
405
+ "score": 49,
406
+ "image": "/images/WEBP/headset-mobile-phone/jabra-supreme.front.medium2x.1576684641045.webp",
407
+ "propGroups": [
408
+ "Design",
409
+ "Sound quality",
410
+ "Microphone",
411
+ "Power",
412
+ "Connectivity",
413
+ "Features"
414
+ ],
415
+ "propScore": [
416
+ 0.23271889400921658,
417
+ 0.3700404858299595,
418
+ 0.5263157894736843,
419
+ 0.6666666666666666,
420
+ 0.4017966064101142,
421
+ 0.4666666666666666
422
+ ]
423
+ },
424
+ {
425
+ "name": "Jawbone Era",
426
+ "score": 38,
427
+ "image": "/images/WEBP/headset-mobile-phone/jawbone-era.front.medium2x.1576684641045.webp",
428
+ "propGroups": [
429
+ "Design",
430
+ "Sound quality",
431
+ "Microphone",
432
+ "Power",
433
+ "Connectivity",
434
+ "Features"
435
+ ],
436
+ "propScore": [
437
+ 0.24170506912442397,
438
+ 0,
439
+ 0.47368421052631576,
440
+ 0.3333333333333333,
441
+ 0.3120660973716314,
442
+ 0.5800000000000001
443
+ ]
444
+ },
445
+ {
446
+ "name": "Jabra Wave",
447
+ "score": 43,
448
+ "image": "/images/WEBP/headset-mobile-phone/jabra-wave.front.medium2x.1576684641045.webp",
449
+ "propGroups": [
450
+ "Design",
451
+ "Sound quality",
452
+ "Microphone",
453
+ "Power",
454
+ "Connectivity",
455
+ "Features"
456
+ ],
457
+ "propScore": [
458
+ 0.23847926267281105,
459
+ 0.25,
460
+ 0.6621960993855197,
461
+ 0.6666666666666666,
462
+ 0.4017966064101142,
463
+ 0.7199999999999999
464
+ ]
465
+ },
466
+ {
467
+ "name": "Jabra Talk",
468
+ "score": 45,
469
+ "image": "/images/WEBP/headset-mobile-phone/jabra-talk.front.medium2x.1576684641045.webp",
470
+ "propGroups": [
471
+ "Design",
472
+ "Sound quality",
473
+ "Microphone",
474
+ "Power",
475
+ "Connectivity",
476
+ "Features"
477
+ ],
478
+ "propScore": [
479
+ 0.24423963133640553,
480
+ 0.2894736842105263,
481
+ 0.65065455516965,
482
+ 0.3333333333333333,
483
+ 0.4017966064101142,
484
+ 0.7199999999999999
485
+ ]
486
+ },
487
+ {
488
+ "name": "Jabra Talk 30",
489
+ "score": 47,
490
+ "image": "/images/WEBP/headset-mobile-phone/jabra-talk-30.front.medium2x.1586942309628.webp",
491
+ "propGroups": [
492
+ "Design",
493
+ "Sound quality",
494
+ "Microphone",
495
+ "Power",
496
+ "Connectivity",
497
+ "Features",
498
+ "Miscellaneous"
499
+ ],
500
+ "propScore": [
501
+ 0.35437721909089553,
502
+ 0.2538184776699496,
503
+ 0.3976774471965677,
504
+ 0.5890577507598783,
505
+ 0.5081512698236663,
506
+ 0.3818181818181818
507
+ ]
508
+ },
509
+ {
510
+ "name": "Jawbone Icon HD",
511
+ "score": 29,
512
+ "image": "/images/WEBP/headset-mobile-phone/jawbone-icon-hd.front.medium2x.1576684641045.webp",
513
+ "propGroups": [
514
+ "Design",
515
+ "Sound quality",
516
+ "Microphone",
517
+ "Power",
518
+ "Connectivity",
519
+ "Features"
520
+ ],
521
+ "propScore": [
522
+ 0.24423963133640553,
523
+ 0.07461538461538461,
524
+ 0.47368421052631576,
525
+ 0.3333333333333333,
526
+ 0.3120660973716314,
527
+ 0.44
528
+ ]
529
+ },
530
+ {
531
+ "name": "LG HBM-260",
532
+ "score": 10,
533
+ "image": "/images/WEBP/headset-mobile-phone/lg-hbm-260.front.medium2x.1576684641045.webp",
534
+ "propGroups": [
535
+ "Design",
536
+ "Sound quality",
537
+ "Microphone",
538
+ "Power",
539
+ "Connectivity",
540
+ "Features"
541
+ ],
542
+ "propScore": [
543
+ 0,
544
+ 0,
545
+ 0,
546
+ 0,
547
+ 0.44865254519241426,
548
+ 0.44
549
+ ]
550
+ },
551
+ {
552
+ "name": "LG Tone Plus",
553
+ "score": 38,
554
+ "image": "/images/WEBP/headset-mobile-phone/lg-tone-plus.front.medium2x.1576684641045.webp",
555
+ "propGroups": [
556
+ "Design",
557
+ "Sound quality",
558
+ "Microphone",
559
+ "Power",
560
+ "Connectivity",
561
+ "Features"
562
+ ],
563
+ "propScore": [
564
+ 0.21658986175115208,
565
+ 0,
566
+ 0.47368421052631576,
567
+ 0.6666666666666666,
568
+ 0.44865254519241426,
569
+ 0.44
570
+ ]
571
+ },
572
+ {
573
+ "name": "Jawbone Icon",
574
+ "score": 40,
575
+ "image": "/images/WEBP/headset-mobile-phone/jawbone-icon.front.medium2x.1576684641045.webp",
576
+ "propGroups": [
577
+ "Design",
578
+ "Sound quality",
579
+ "Microphone",
580
+ "Power",
581
+ "Connectivity",
582
+ "Features"
583
+ ],
584
+ "propScore": [
585
+ 0.24400921658986177,
586
+ 0.3333333333333333,
587
+ 0.47368421052631576,
588
+ 0.3333333333333333,
589
+ 0.3120660973716314,
590
+ 0.44
591
+ ]
592
+ },
593
+ {
594
+ "name": "Motorola Elite Sliver",
595
+ "score": 49,
596
+ "image": "/images/WEBP/headset-mobile-phone/motorola-elite-sliver.front.medium2x.1576684641045.webp",
597
+ "propGroups": [
598
+ "Design",
599
+ "Sound quality",
600
+ "Microphone",
601
+ "Power",
602
+ "Connectivity",
603
+ "Features"
604
+ ],
605
+ "propScore": [
606
+ 0.24308755760368664,
607
+ 0,
608
+ 1,
609
+ 0.3333333333333333,
610
+ 0.7308417433736274,
611
+ 0.7200000000000001
612
+ ]
613
+ },
614
+ {
615
+ "name": "LG Tone",
616
+ "score": 30,
617
+ "image": "/images/WEBP/headset-mobile-phone/lg-tone.front.medium2x.1576684641045.webp",
618
+ "propGroups": [
619
+ "Design",
620
+ "Sound quality",
621
+ "Microphone",
622
+ "Power",
623
+ "Connectivity",
624
+ "Features"
625
+ ],
626
+ "propScore": [
627
+ 0.21658986175115208,
628
+ 0.3333333333333333,
629
+ 0,
630
+ 0.3333333333333333,
631
+ 0.3120660973716314,
632
+ 0.3
633
+ ]
634
+ },
635
+ {
636
+ "name": "Motorola Elite Flip",
637
+ "score": 46,
638
+ "image": "/images/WEBP/headset-mobile-phone/motorola-elite-flip.front.medium2x.1576684641045.webp",
639
+ "propGroups": [
640
+ "Design",
641
+ "Sound quality",
642
+ "Microphone",
643
+ "Power",
644
+ "Connectivity",
645
+ "Features"
646
+ ],
647
+ "propScore": [
648
+ 0.24193548387096775,
649
+ 0,
650
+ 0.5263157894736843,
651
+ 1,
652
+ 0.7308417433736274,
653
+ 0.86
654
+ ]
655
+ },
656
+ {
657
+ "name": "Motorola CommandOne",
658
+ "score": 34,
659
+ "image": "/images/WEBP/headset-mobile-phone/motorola-commandone.front.medium2x.1576684641045.webp",
660
+ "propGroups": [
661
+ "Design",
662
+ "Sound quality",
663
+ "Microphone",
664
+ "Power",
665
+ "Connectivity",
666
+ "Features"
667
+ ],
668
+ "propScore": [
669
+ 0.23963133640552994,
670
+ 0,
671
+ 0.5263157894736843,
672
+ 0.3333333333333333,
673
+ 0.3120660973716314,
674
+ 0.6222222222222221
675
+ ]
676
+ },
677
+ {
678
+ "name": "Motorola H17",
679
+ "score": 28,
680
+ "image": "/images/WEBP/headset-mobile-phone/motorola-h17.front.medium2x.1576684641045.webp",
681
+ "propGroups": [
682
+ "Design",
683
+ "Sound quality",
684
+ "Microphone",
685
+ "Power",
686
+ "Connectivity",
687
+ "Features"
688
+ ],
689
+ "propScore": [
690
+ 0.24308755760368664,
691
+ 0,
692
+ 0.05263157894736842,
693
+ 0.3333333333333333,
694
+ 0.3120660973716314,
695
+ 0.44
696
+ ]
697
+ },
698
+ {
699
+ "name": "Motorola H720",
700
+ "score": 16,
701
+ "image": "/images/WEBP/headset-mobile-phone/motorola-h720.front.medium2x.1576684641045.webp",
702
+ "propGroups": [
703
+ "Design",
704
+ "Sound quality",
705
+ "Microphone",
706
+ "Power",
707
+ "Connectivity",
708
+ "Features"
709
+ ],
710
+ "propScore": [
711
+ 0.23732718894009214,
712
+ 0,
713
+ 0,
714
+ 0.6666666666666666,
715
+ 0.3120660973716314,
716
+ 0.4666666666666666
717
+ ]
718
+ },
719
+ {
720
+ "name": "Motorola H19txt",
721
+ "score": 35,
722
+ "image": "/images/WEBP/headset-mobile-phone/motorola-h19txt.front.medium2x.1576684641045.webp",
723
+ "propGroups": [
724
+ "Design",
725
+ "Sound quality",
726
+ "Microphone",
727
+ "Power",
728
+ "Connectivity",
729
+ "Features"
730
+ ],
731
+ "propScore": [
732
+ 0.24308755760368664,
733
+ 0,
734
+ 0.5263157894736843,
735
+ 0.3333333333333333,
736
+ 0.7275146944660085,
737
+ 0.44
738
+ ]
739
+ },
740
+ {
741
+ "name": "Motorola H17txt",
742
+ "score": 37,
743
+ "image": "/images/WEBP/headset-mobile-phone/motorola-h17txt.front.medium2x.1576684641045.webp",
744
+ "propGroups": [
745
+ "Design",
746
+ "Sound quality",
747
+ "Microphone",
748
+ "Power",
749
+ "Connectivity",
750
+ "Features"
751
+ ],
752
+ "propScore": [
753
+ 0.24308755760368664,
754
+ 0,
755
+ 0.5263157894736843,
756
+ 0.3333333333333333,
757
+ 0.3120660973716314,
758
+ 0.7200000000000001
759
+ ]
760
+ },
761
+ {
762
+ "name": "Motorola HK105",
763
+ "score": 46,
764
+ "image": "/images/WEBP/headset-mobile-phone/motorola-hk105.front.medium2x.1579122125798.webp",
765
+ "propGroups": [
766
+ "Design",
767
+ "Sound quality",
768
+ "Microphone",
769
+ "Power",
770
+ "Connectivity",
771
+ "Features"
772
+ ],
773
+ "propScore": [
774
+ 0.3849749821099741,
775
+ 0,
776
+ 0,
777
+ 0.5333333333333333,
778
+ 0.6281468337584563,
779
+ 0.6222222222222221
780
+ ]
781
+ },
782
+ {
783
+ "name": "Motorola Oasis",
784
+ "score": 34,
785
+ "image": "/images/WEBP/headset-mobile-phone/motorola-oasis.front.medium2x.1576684641045.webp",
786
+ "propGroups": [
787
+ "Design",
788
+ "Sound quality",
789
+ "Microphone",
790
+ "Power",
791
+ "Connectivity",
792
+ "Features"
793
+ ],
794
+ "propScore": [
795
+ 0.23859447004608295,
796
+ 0,
797
+ 0.5263157894736843,
798
+ 0.6666666666666666,
799
+ 0.6012143728512809,
800
+ 0.7777777777777778
801
+ ]
802
+ },
803
+ {
804
+ "name": "Motorola HX550",
805
+ "score": 32,
806
+ "image": "/images/WEBP/headset-mobile-phone/motorola-hx550.front.medium2x.1576684641045.webp",
807
+ "propGroups": [
808
+ "Design",
809
+ "Sound quality",
810
+ "Microphone",
811
+ "Power",
812
+ "Connectivity",
813
+ "Features"
814
+ ],
815
+ "propScore": [
816
+ 0.4930875576036866,
817
+ 0,
818
+ 0.5263157894736843,
819
+ 0.3333333333333333,
820
+ 0.42841299767106567,
821
+ 0.58
822
+ ]
823
+ },
824
+ {
825
+ "name": "Motorola H730",
826
+ "score": 27,
827
+ "image": "/images/WEBP/headset-mobile-phone/motorola-h730.front.medium2x.1576684641045.webp",
828
+ "propGroups": [
829
+ "Design",
830
+ "Sound quality",
831
+ "Microphone",
832
+ "Power",
833
+ "Connectivity",
834
+ "Features"
835
+ ],
836
+ "propScore": [
837
+ 0.23744239631336403,
838
+ 0,
839
+ 0.5263157894736843,
840
+ 0.3333333333333333,
841
+ 0.3120660973716314,
842
+ 0.58
843
+ ]
844
+ },
845
+ {
846
+ "name": "Mpow EM10",
847
+ "score": 94,
848
+ "image": "/images/WEBP/headset-mobile-phone/mpow-em10.front.medium2x.1576684641045.webp",
849
+ "propGroups": [
850
+ "Design",
851
+ "Sound quality",
852
+ "Microphone",
853
+ "Power",
854
+ "Connectivity",
855
+ "Features"
856
+ ],
857
+ "propScore": [
858
+ 0.350125650315485,
859
+ 0.32674027990709525,
860
+ 0.5263157894736843,
861
+ 0.7066531577169876,
862
+ 0.5214372851280914,
863
+ 0.84
864
+ ]
865
+ },
866
+ {
867
+ "name": "Mpow EM6",
868
+ "score": 66,
869
+ "image": "/images/WEBP/headset-mobile-phone/mpow-em6.front.medium2x.1576684641045.webp",
870
+ "propGroups": [
871
+ "Design",
872
+ "Sound quality",
873
+ "Microphone",
874
+ "Power",
875
+ "Connectivity",
876
+ "Features"
877
+ ],
878
+ "propScore": [
879
+ 0.30998852731723203,
880
+ 0.4100039947497574,
881
+ 0,
882
+ 0.688888888888889,
883
+ 0.5114672285682599,
884
+ 0.4666666666666666
885
+ ]
886
+ },
887
+ {
888
+ "name": "Mpow EM8",
889
+ "score": 62,
890
+ "image": "/images/WEBP/headset-mobile-phone/mpow-em8.front.medium2x.1576684641045.webp",
891
+ "propGroups": [
892
+ "Design",
893
+ "Sound quality",
894
+ "Microphone",
895
+ "Power",
896
+ "Connectivity",
897
+ "Features"
898
+ ],
899
+ "propScore": [
900
+ 0.35923293253084965,
901
+ 0.3443759630200308,
902
+ 0.47368421052631576,
903
+ 0.5904761904761905,
904
+ 0.5114672285682599,
905
+ 0.56
906
+ ]
907
+ },
908
+ {
909
+ "name": "Mpow EM1",
910
+ "score": 71,
911
+ "image": "/images/WEBP/headset-mobile-phone/mpow-em1.front.medium2x.1576684641045.webp",
912
+ "propGroups": [
913
+ "Design",
914
+ "Sound quality",
915
+ "Microphone",
916
+ "Power",
917
+ "Connectivity",
918
+ "Features"
919
+ ],
920
+ "propScore": [
921
+ 0.3599448814205697,
922
+ 0.4100039947497574,
923
+ 0,
924
+ 0.688888888888889,
925
+ 0.5114672285682599,
926
+ 0.56
927
+ ]
928
+ },
929
+ {
930
+ "name": "Nokia BH-905i",
931
+ "score": 86,
932
+ "image": "/images/WEBP/headset-mobile-phone/nokia-bh-905i.front.medium2x.1576684641045.webp",
933
+ "propGroups": [
934
+ "Design",
935
+ "Sound quality",
936
+ "Microphone",
937
+ "Power",
938
+ "Connectivity",
939
+ "Features"
940
+ ],
941
+ "propScore": [
942
+ 0.7341781874039939,
943
+ 0.556674814926376,
944
+ 0.9473684210526315,
945
+ 0.6666666666666666,
946
+ 0.6111677941665742,
947
+ 0.58
948
+ ]
949
+ },
950
+ {
951
+ "name": "Nokia BH-221",
952
+ "score": 38,
953
+ "image": "/images/WEBP/headset-mobile-phone/nokia-bh-221.front.medium2x.1576684641045.webp",
954
+ "propGroups": [
955
+ "Design",
956
+ "Sound quality",
957
+ "Microphone",
958
+ "Power",
959
+ "Connectivity",
960
+ "Features"
961
+ ],
962
+ "propScore": [
963
+ 0.4631336405529954,
964
+ 0,
965
+ 0,
966
+ 0.6666666666666666,
967
+ 0.6111677941665742,
968
+ 0.3
969
+ ]
970
+ },
971
+ {
972
+ "name": "Nokia Clarity Solo Bud Plus",
973
+ "score": 99,
974
+ "image": "/images/WEBP/headset-mobile-phone/nokia-clarity-solo-bud-plus.front.medium2x.1629400981580.webp",
975
+ "propGroups": [
976
+ "Design",
977
+ "Sound quality",
978
+ "Microphone",
979
+ "Power",
980
+ "Connectivity",
981
+ "Features",
982
+ "Miscellaneous"
983
+ ],
984
+ "propScore": [
985
+ 1,
986
+ 0.6666666666666666,
987
+ 0.5263157894736843,
988
+ 0.5666666666666667,
989
+ 0.9002994344016856,
990
+ 0.7777777777777778
991
+ ]
992
+ },
993
+ {
994
+ "name": "Nokia BH-505",
995
+ "score": 64,
996
+ "image": "/images/WEBP/headset-mobile-phone/nokia-bh-505.front.medium2x.1576684641045.webp",
997
+ "propGroups": [
998
+ "Design",
999
+ "Sound quality",
1000
+ "Microphone",
1001
+ "Power",
1002
+ "Connectivity",
1003
+ "Features"
1004
+ ],
1005
+ "propScore": [
1006
+ 0.7119815668202765,
1007
+ 0.3333333333333333,
1008
+ 0,
1009
+ 0.6666666666666666,
1010
+ 0.3120660973716313,
1011
+ 0.58
1012
+ ]
1013
+ },
1014
+ {
1015
+ "name": "Nokia Reaction BH-907",
1016
+ "score": 34,
1017
+ "image": "/images/WEBP/headset-mobile-phone/nokia-reaction-bh-907.front.medium2x.1576684641045.webp",
1018
+ "propGroups": [
1019
+ "Design",
1020
+ "Sound quality",
1021
+ "Microphone",
1022
+ "Power",
1023
+ "Connectivity",
1024
+ "Features"
1025
+ ],
1026
+ "propScore": [
1027
+ 0.24308755760368664,
1028
+ 0,
1029
+ 0.10526315789473684,
1030
+ 0.6666666666666666,
1031
+ 0.700898303205057,
1032
+ 0.7199999999999999
1033
+ ]
1034
+ },
1035
+ {
1036
+ "name": "Nokia Solo Bud Plus",
1037
+ "score": 78,
1038
+ "image": "/images/WEBP/headset-mobile-phone/nokia-solo-bud-plus.front.medium2x.1627553926789.webp",
1039
+ "propGroups": [
1040
+ "Design",
1041
+ "Sound quality",
1042
+ "Microphone",
1043
+ "Power",
1044
+ "Connectivity",
1045
+ "Features",
1046
+ "Miscellaneous"
1047
+ ],
1048
+ "propScore": [
1049
+ 0.9096966205837173,
1050
+ 0.3333333333333333,
1051
+ 0,
1052
+ 0.626984126984127,
1053
+ 0.6011977376067428,
1054
+ 0.58
1055
+ ]
1056
+ },
1057
+ {
1058
+ "name": "Nokia J",
1059
+ "score": 69,
1060
+ "image": "/images/WEBP/headset-mobile-phone/nokia-j.front.medium2x.1576684641045.webp",
1061
+ "propGroups": [
1062
+ "Design",
1063
+ "Sound quality",
1064
+ "Microphone",
1065
+ "Power",
1066
+ "Connectivity",
1067
+ "Features"
1068
+ ],
1069
+ "propScore": [
1070
+ 0.24423963133640553,
1071
+ 0.6666666666666666,
1072
+ 0,
1073
+ 0.6666666666666666,
1074
+ 0.6111677941665742,
1075
+ 1
1076
+ ]
1077
+ },
1078
+ {
1079
+ "name": "Nokia Clarity Solo Bud",
1080
+ "score": 88,
1081
+ "image": "/images/WEBP/headset-mobile-phone/nokia-clarity-solo-bud.front.medium2x.1629461843421.webp",
1082
+ "propGroups": [
1083
+ "Design",
1084
+ "Sound quality",
1085
+ "Microphone",
1086
+ "Power",
1087
+ "Connectivity",
1088
+ "Features",
1089
+ "Miscellaneous"
1090
+ ],
1091
+ "propScore": [
1092
+ 1,
1093
+ 0.3333333333333333,
1094
+ 0.5263157894736843,
1095
+ 0.5666666666666667,
1096
+ 0.9002994344016856,
1097
+ 0.7777777777777778
1098
+ ]
1099
+ },
1100
+ {
1101
+ "name": "Plantronics BackBeat 903+",
1102
+ "score": 88,
1103
+ "image": "/images/WEBP/headset-mobile-phone/plantronics-backbeat-903.front.medium2x.1576684641045.webp",
1104
+ "propGroups": [
1105
+ "Design",
1106
+ "Sound quality",
1107
+ "Microphone",
1108
+ "Power",
1109
+ "Connectivity",
1110
+ "Features"
1111
+ ],
1112
+ "propScore": [
1113
+ 0.4642857142857143,
1114
+ 0.5127777552509934,
1115
+ 0.5263157894736843,
1116
+ 0.6666666666666666,
1117
+ 0.3117666629699457,
1118
+ 0.7200000000000001
1119
+ ]
1120
+ },
1121
+ {
1122
+ "name": "Plantronics Blacktop 500",
1123
+ "score": 25,
1124
+ "image": "/images/WEBP/headset-mobile-phone/plantronics-blacktop-500.front.medium2x.1576684641045.webp",
1125
+ "propGroups": [
1126
+ "Design",
1127
+ "Sound quality",
1128
+ "Microphone",
1129
+ "Power",
1130
+ "Connectivity",
1131
+ "Features"
1132
+ ],
1133
+ "propScore": [
1134
+ 0,
1135
+ 0,
1136
+ 0.47368421052631576,
1137
+ 0.6666666666666666,
1138
+ 0.4017966064101142,
1139
+ 0.6222222222222221
1140
+ ]
1141
+ },
1142
+ {
1143
+ "name": "Nokia Solo Bud",
1144
+ "score": 58,
1145
+ "image": "/images/WEBP/headset-mobile-phone/nokia-solo-bud.front.medium2x.1627513095778.webp",
1146
+ "propGroups": [
1147
+ "Design",
1148
+ "Sound quality",
1149
+ "Microphone",
1150
+ "Power",
1151
+ "Connectivity",
1152
+ "Features",
1153
+ "Miscellaneous"
1154
+ ],
1155
+ "propScore": [
1156
+ 0.25,
1157
+ 0.5833333333333334,
1158
+ 0,
1159
+ 0.5092592592592592,
1160
+ 0.6011977376067428,
1161
+ 0.6222222222222221
1162
+ ]
1163
+ },
1164
+ {
1165
+ "name": "Plantronics Discovery 975",
1166
+ "score": 52,
1167
+ "image": "/images/WEBP/headset-mobile-phone/plantronics-discovery-975.front.medium2x.1576684641045.webp",
1168
+ "propGroups": [
1169
+ "Design",
1170
+ "Sound quality",
1171
+ "Microphone",
1172
+ "Power",
1173
+ "Connectivity",
1174
+ "Features"
1175
+ ],
1176
+ "propScore": [
1177
+ 0.24423963133640553,
1178
+ 0.32574358974358975,
1179
+ 0.05263157894736842,
1180
+ 0.6666666666666666,
1181
+ 0.3117666629699457,
1182
+ 0.86
1183
+ ]
1184
+ },
1185
+ {
1186
+ "name": "Plantronics Marque 2 M165",
1187
+ "score": 71,
1188
+ "image": "/images/WEBP/headset-mobile-phone/plantronics-marque-2-m165.front.medium2x.1576684641045.webp",
1189
+ "propGroups": [
1190
+ "Design",
1191
+ "Sound quality",
1192
+ "Microphone",
1193
+ "Power",
1194
+ "Connectivity",
1195
+ "Features"
1196
+ ],
1197
+ "propScore": [
1198
+ 0.4953917050691244,
1199
+ 0.3333333333333333,
1200
+ 0.5263157894736843,
1201
+ 0.6666666666666666,
1202
+ 0.4017966064101142,
1203
+ 0.86
1204
+ ]
1205
+ },
1206
+ {
1207
+ "name": "Plantronics Voyager Legend UC",
1208
+ "score": 81,
1209
+ "image": "/images/WEBP/headset-mobile-phone/plantronics-voyager-legend-uc.front.medium2x.1576684641045.webp",
1210
+ "propGroups": [
1211
+ "Design",
1212
+ "Sound quality",
1213
+ "Microphone",
1214
+ "Power",
1215
+ "Connectivity",
1216
+ "Features"
1217
+ ],
1218
+ "propScore": [
1219
+ 0.4827188940092165,
1220
+ 0.3333333333333333,
1221
+ 0.5789473684210527,
1222
+ 0.6666666666666666,
1223
+ 0.4017966064101142,
1224
+ 1
1225
+ ]
1226
+ },
1227
+ {
1228
+ "name": "Plantronics M55",
1229
+ "score": 45,
1230
+ "image": "/images/WEBP/headset-mobile-phone/plantronics-m55.front.medium2x.1576684641045.webp",
1231
+ "propGroups": [
1232
+ "Design",
1233
+ "Sound quality",
1234
+ "Microphone",
1235
+ "Power",
1236
+ "Connectivity",
1237
+ "Features"
1238
+ ],
1239
+ "propScore": [
1240
+ 0.24423963133640553,
1241
+ 0,
1242
+ 0.47368421052631576,
1243
+ 0.6666666666666666,
1244
+ 0.4017966064101142,
1245
+ 0.7200000000000001
1246
+ ]
1247
+ },
1248
+ {
1249
+ "name": "Plantronics Marque M155",
1250
+ "score": 39,
1251
+ "image": "/images/WEBP/headset-mobile-phone/plantronics-marque-m155.front.medium2x.1576684641045.webp",
1252
+ "propGroups": [
1253
+ "Design",
1254
+ "Sound quality",
1255
+ "Microphone",
1256
+ "Power",
1257
+ "Connectivity",
1258
+ "Features"
1259
+ ],
1260
+ "propScore": [
1261
+ 0.2453917050691244,
1262
+ 0,
1263
+ 0,
1264
+ 0.6666666666666666,
1265
+ 0.4017966064101142,
1266
+ 0.86
1267
+ ]
1268
+ },
1269
+ {
1270
+ "name": "Samsung HM1700",
1271
+ "score": 46,
1272
+ "image": "/images/WEBP/headset-mobile-phone/samsung-hm1700.front.medium2x.1576684641045.webp",
1273
+ "propGroups": [
1274
+ "Design",
1275
+ "Sound quality",
1276
+ "Microphone",
1277
+ "Power",
1278
+ "Connectivity",
1279
+ "Features"
1280
+ ],
1281
+ "propScore": [
1282
+ 0.24193548387096775,
1283
+ 0.3333333333333333,
1284
+ 0,
1285
+ 0.6666666666666666,
1286
+ 0.44865254519241426,
1287
+ 0.7199999999999999
1288
+ ]
1289
+ },
1290
+ {
1291
+ "name": "Plantronics Voyager PRO HD",
1292
+ "score": 73,
1293
+ "image": "/images/WEBP/headset-mobile-phone/plantronics-voyager-pro-hd.front.medium2x.1576684641045.webp",
1294
+ "propGroups": [
1295
+ "Design",
1296
+ "Sound quality",
1297
+ "Microphone",
1298
+ "Power",
1299
+ "Connectivity",
1300
+ "Features"
1301
+ ],
1302
+ "propScore": [
1303
+ 0.483294930875576,
1304
+ 0.4833333333333333,
1305
+ 0.5263157894736843,
1306
+ 0.6666666666666666,
1307
+ 0.4017966064101142,
1308
+ 0.7199999999999999
1309
+ ]
1310
+ },
1311
+ {
1312
+ "name": "Samsung HM1900",
1313
+ "score": 32,
1314
+ "image": "/images/WEBP/headset-mobile-phone/samsung-hm1900.front.medium2x.1576684641045.webp",
1315
+ "propGroups": [
1316
+ "Design",
1317
+ "Sound quality",
1318
+ "Microphone",
1319
+ "Power",
1320
+ "Connectivity",
1321
+ "Features"
1322
+ ],
1323
+ "propScore": [
1324
+ 0.24308755760368664,
1325
+ 0,
1326
+ 0,
1327
+ 0.6666666666666666,
1328
+ 0.44865254519241426,
1329
+ 0.58
1330
+ ]
1331
+ },
1332
+ {
1333
+ "name": "Plantronics Voyager Legend",
1334
+ "score": 69,
1335
+ "image": "/images/WEBP/headset-mobile-phone/plantronics-voyager-legend.front.medium2x.1576684641045.webp",
1336
+ "propGroups": [
1337
+ "Design",
1338
+ "Sound quality",
1339
+ "Microphone",
1340
+ "Power",
1341
+ "Connectivity",
1342
+ "Features"
1343
+ ],
1344
+ "propScore": [
1345
+ 0.4827188940092165,
1346
+ 0.3333333333333333,
1347
+ 0.5789473684210527,
1348
+ 0.6666666666666666,
1349
+ 0.10269490961517133,
1350
+ 0.86
1351
+ ]
1352
+ },
1353
+ {
1354
+ "name": "Samsung HM3300",
1355
+ "score": 38,
1356
+ "image": "/images/WEBP/headset-mobile-phone/samsung-hm3300.front.medium2x.1576684641045.webp",
1357
+ "propGroups": [
1358
+ "Design",
1359
+ "Sound quality",
1360
+ "Microphone",
1361
+ "Power",
1362
+ "Connectivity",
1363
+ "Features"
1364
+ ],
1365
+ "propScore": [
1366
+ 0.24078341013824886,
1367
+ 0,
1368
+ 0.47368421052631576,
1369
+ 0.6666666666666666,
1370
+ 0.7851419540867249,
1371
+ 0.44
1372
+ ]
1373
+ },
1374
+ {
1375
+ "name": "Sena SMH5 Headset & Intercom",
1376
+ "score": 49,
1377
+ "image": "/images/WEBP/headset-mobile-phone/sena-smh5-headset-intercom.front.medium2x.1576684641045.webp",
1378
+ "propGroups": [
1379
+ "Design",
1380
+ "Sound quality",
1381
+ "Microphone",
1382
+ "Power",
1383
+ "Connectivity",
1384
+ "Features"
1385
+ ],
1386
+ "propScore": [
1387
+ 0.4147465437788018,
1388
+ 0,
1389
+ 0.9473684210526315,
1390
+ 0.6666666666666666,
1391
+ 0.531551513807253,
1392
+ 0.44
1393
+ ]
1394
+ },
1395
+ {
1396
+ "name": "Samsung HM6000",
1397
+ "score": 32,
1398
+ "image": "/images/WEBP/headset-mobile-phone/samsung-hm6000.front.medium2x.1576684641045.webp",
1399
+ "propGroups": [
1400
+ "Design",
1401
+ "Sound quality",
1402
+ "Microphone",
1403
+ "Power",
1404
+ "Connectivity",
1405
+ "Features"
1406
+ ],
1407
+ "propScore": [
1408
+ 0,
1409
+ 0,
1410
+ 0.5263157894736843,
1411
+ 0.3333333333333333,
1412
+ 0.44865254519241426,
1413
+ 0.7200000000000001
1414
+ ]
1415
+ },
1416
+ {
1417
+ "name": "Sena SMH10 Motorcycle Headset & Intercom",
1418
+ "score": 58,
1419
+ "image": "/images/WEBP/headset-mobile-phone/sena-smh10-motorcycle-headset-intercom.front.medium2x.1576684641045.webp",
1420
+ "propGroups": [
1421
+ "Design",
1422
+ "Sound quality",
1423
+ "Microphone",
1424
+ "Power",
1425
+ "Connectivity",
1426
+ "Features"
1427
+ ],
1428
+ "propScore": [
1429
+ 0.5875576036866359,
1430
+ 0,
1431
+ 0.47368421052631576,
1432
+ 0.3333333333333333,
1433
+ 0.9970056559831428,
1434
+ 0.44
1435
+ ]
1436
+ },
1437
+ {
1438
+ "name": "Sennheiser EZX 80",
1439
+ "score": 67,
1440
+ "image": "/images/WEBP/headset-mobile-phone/sennheiser-ezx-80.front.medium2x.1576684641045.webp",
1441
+ "propGroups": [
1442
+ "Design",
1443
+ "Sound quality",
1444
+ "Microphone",
1445
+ "Power",
1446
+ "Connectivity",
1447
+ "Features"
1448
+ ],
1449
+ "propScore": [
1450
+ 0.24193548387096775,
1451
+ 1,
1452
+ 0,
1453
+ 0.6666666666666666,
1454
+ 0.4017966064101142,
1455
+ 0.7777777777777778
1456
+ ]
1457
+ },
1458
+ {
1459
+ "name": "Sennheiser EZX 60",
1460
+ "score": 35,
1461
+ "image": "/images/WEBP/headset-mobile-phone/sennheiser-ezx-60.front.medium2x.1576684641045.webp",
1462
+ "propGroups": [
1463
+ "Design",
1464
+ "Sound quality",
1465
+ "Microphone",
1466
+ "Power",
1467
+ "Connectivity",
1468
+ "Features"
1469
+ ],
1470
+ "propScore": [
1471
+ 0.23963133640552994,
1472
+ 0.6036363636363636,
1473
+ 0.37798557306973013,
1474
+ 0.3333333333333333,
1475
+ 0.3120660973716314,
1476
+ 0.4666666666666666
1477
+ ]
1478
+ },
1479
+ {
1480
+ "name": "Sennheiser Presence UC",
1481
+ "score": 66,
1482
+ "image": "/images/WEBP/headset-mobile-phone/sennheiser-presence-uc.front.medium2x.1576684641045.webp",
1483
+ "propGroups": [
1484
+ "Design",
1485
+ "Sound quality",
1486
+ "Microphone",
1487
+ "Power",
1488
+ "Connectivity",
1489
+ "Features"
1490
+ ],
1491
+ "propScore": [
1492
+ 0.23847926267281105,
1493
+ 0.5372367745249101,
1494
+ 0.3473684210526316,
1495
+ 0.3333333333333333,
1496
+ 0.5064877453698569,
1497
+ 0.31111111111111106
1498
+ ]
1499
+ },
1500
+ {
1501
+ "name": "Sennheiser VMX 200",
1502
+ "score": 50,
1503
+ "image": "/images/WEBP/headset-mobile-phone/sennheiser-vmx-200.front.medium2x.1576684641045.webp",
1504
+ "propGroups": [
1505
+ "Design",
1506
+ "Sound quality",
1507
+ "Microphone",
1508
+ "Power",
1509
+ "Connectivity",
1510
+ "Features"
1511
+ ],
1512
+ "propScore": [
1513
+ 0.24193548387096775,
1514
+ 0.6036363636363636,
1515
+ 0.6937750467539406,
1516
+ 0.6666666666666666,
1517
+ 0.4017966064101142,
1518
+ 0.58
1519
+ ]
1520
+ },
1521
+ {
1522
+ "name": "Sony MDR-EX100iP",
1523
+ "score": 65,
1524
+ "image": "/images/WEBP/headset-mobile-phone/sony-mdr-ex100ip.front.medium2x.1576684641045.webp",
1525
+ "propGroups": [
1526
+ "Design",
1527
+ "Sound quality",
1528
+ "Microphone",
1529
+ "Power",
1530
+ "Connectivity",
1531
+ "Features"
1532
+ ],
1533
+ "propScore": [
1534
+ 0.501984126984127,
1535
+ 0.5707070707070707,
1536
+ 0,
1537
+ 0,
1538
+ 0,
1539
+ 0.31111111111111106
1540
+ ]
1541
+ },
1542
+ {
1543
+ "name": "VXI BlueParrott B250-XT",
1544
+ "score": 20,
1545
+ "image": "/images/WEBP/headset-mobile-phone/vxi-blueparrott-b250-xt.front.medium2x.1576684641045.webp",
1546
+ "propGroups": [
1547
+ "Design",
1548
+ "Sound quality",
1549
+ "Microphone",
1550
+ "Power",
1551
+ "Connectivity",
1552
+ "Features"
1553
+ ],
1554
+ "propScore": [
1555
+ 0,
1556
+ 0,
1557
+ 0.47368421052631576,
1558
+ 0.3333333333333333,
1559
+ 0.3153931462792503,
1560
+ 0.6222222222222221
1561
+ ]
1562
+ },
1563
+ {
1564
+ "name": "Sony MW600 Hi-Fi with FM Radio",
1565
+ "score": 49,
1566
+ "image": "/images/WEBP/headset-mobile-phone/sony-mw600-hi-fi-with-fm-radio.front.medium2x.1576684641045.webp",
1567
+ "propGroups": [
1568
+ "Design",
1569
+ "Sound quality",
1570
+ "Microphone",
1571
+ "Power",
1572
+ "Connectivity",
1573
+ "Features"
1574
+ ],
1575
+ "propScore": [
1576
+ 0.23847926267281105,
1577
+ 0.3172394101586787,
1578
+ 0,
1579
+ 0.3333333333333333,
1580
+ 0.3120660973716314,
1581
+ 0.4666666666666666
1582
+ ]
1583
+ },
1584
+ {
1585
+ "name": "Sony SBH20T",
1586
+ "score": 45,
1587
+ "image": "/images/WEBP/headset-mobile-phone/sony-sbh20t.front.medium2x.1576684641045.webp",
1588
+ "propGroups": [
1589
+ "Design",
1590
+ "Sound quality",
1591
+ "Microphone",
1592
+ "Power",
1593
+ "Connectivity",
1594
+ "Features"
1595
+ ],
1596
+ "propScore": [
1597
+ 0,
1598
+ 0.5210585636321585,
1599
+ 0,
1600
+ 0.3333333333333333,
1601
+ 1,
1602
+ 0.17999999999999997
1603
+ ]
1604
+ },
1605
+ {
1606
+ "name": "Xiaomi Mi Bluetooth Headset Basic",
1607
+ "score": 51,
1608
+ "image": "/images/WEBP/headset-mobile-phone/xiaomi-mi-bluetooth-headset-basic.front.medium2x.1621264670451.webp",
1609
+ "propGroups": [
1610
+ "Design",
1611
+ "Sound quality",
1612
+ "Microphone",
1613
+ "Power",
1614
+ "Connectivity",
1615
+ "Features"
1616
+ ],
1617
+ "propScore": [
1618
+ 0.4218278368528492,
1619
+ 0.3333333333333333,
1620
+ 0,
1621
+ 0.7619047619047619,
1622
+ 0.5114672285682599,
1623
+ 0.56
1624
+ ]
1625
+ },
1626
+ {
1627
+ "name": "VXI BlueParrott Xpress",
1628
+ "score": 63,
1629
+ "image": "/images/WEBP/headset-mobile-phone/vxi-blueparrott-xpress.front.medium2x.1576684641045.webp",
1630
+ "propGroups": [
1631
+ "Design",
1632
+ "Sound quality",
1633
+ "Microphone",
1634
+ "Power",
1635
+ "Connectivity",
1636
+ "Features"
1637
+ ],
1638
+ "propScore": [
1639
+ 0.23387096774193547,
1640
+ 0.2949942481610635,
1641
+ 0.762289078767861,
1642
+ 0.6666666666666666,
1643
+ 0.3153931462792503,
1644
+ 0.7200000000000001
1645
+ ]
1646
+ }
1647
+ ]
1648
+ }
data/business-faculty.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"data": [{"name": "Booth School of Business", "score": 79, "image": "/images/WEBP/business-faculty/booth-school-of-business.warm_day.medium2x.1576684641045.webp", "propGroups": ["General info", "Admissions", "Facilities", "Honors", "Tuition & Aid", "Miscellaneous"], "propScore": [0.8826002212076304, 0.7180669766720355, 0.5388817170571509, 0.48170814861287864, 0.8080480623898125]}, {"name": "Boston School of Management", "score": 66, "image": "/images/WEBP/business-faculty/boston-school-of-management.warm_day.medium2x.1576684641045.webp", "propGroups": ["General info", "Admissions", "Facilities", "Honors", "Tuition & Aid", "Miscellaneous"], "propScore": [0.7343626102837534, 0.5814284395421907, 0.5642711030878004, 0.19655971335030975, 0.6951508988033573]}, {"name": "Carey Business School", "score": 61, "image": "/images/WEBP/business-faculty/carey-business-school.warm_day.medium2x.1576684641045.webp", "propGroups": ["General info", "Admissions", "Facilities", "Honors", "Tuition & Aid", "Miscellaneous"], "propScore": [0.7204787900763767, 0.4739901868336214, 0.5952500252617754, 0.17365898681236872, 0.6346521269125436]}, {"name": "College of Business", "score": 48, "image": "/images/WEBP/business-faculty/college-of-business.warm_day.medium2x.1576684641045.webp", "propGroups": ["General info", "Admissions", "Facilities", "Honors", "Tuition & Aid", "Miscellaneous"], "propScore": [0.5822882691213117, 0.13085832470411332, 0.822749802850823, 0.032457325676789626, 0.6501616473745025]}, {"name": "Cornell School of Hotel Administration", "score": 78, "image": "/images/WEBP/business-faculty/cornell-school-of-hotel-administration.warm_day.medium2x.1576684641045.webp", "propGroups": ["General info", "Admissions", "Facilities", "Honors", "Tuition & Aid", "Miscellaneous"], "propScore": [0.7910985376777236, 0.48113556357448456, 0.8013409244797355, 0.5952956352178851, 0.806925492176599]}, {"name": "Columbia Business School", "score": 85, "image": "/images/WEBP/business-faculty/columbia-business-school.warm_day.medium2x.1576684641045.webp", "propGroups": ["General info", "Admissions", "Facilities", "Honors", "Tuition & Aid", "Miscellaneous"], "propScore": [0.9806205655510057, 0.669590137379734, 0.49186468252914844, 0.489685708814798, 0.9061350876301635]}, {"name": "Fisher College of Business", "score": 76, "image": "/images/WEBP/business-faculty/fisher-college-of-business.warm_day.medium2x.1576684641045.webp", "propGroups": ["General info", "Admissions", "Facilities", "Honors", "Tuition & Aid", "Miscellaneous"], "propScore": [0.6917646942688236, 1, 0.8130460197031344, 0.044703300336877354, 0.8015836869341028]}, {"name": "Foster School", "score": 73, "image": "/images/WEBP/business-faculty/foster-school.warm_day.medium2x.1576684641045.webp", "propGroups": ["General info", "Admissions", "Facilities", "Honors", "Tuition & Aid", "Miscellaneous"], "propScore": [0.7980386289271617, 0.3575764758281682, 0.6607726058138687, 0.37733676033937524, 0.693887050244647]}, {"name": "Haas School of Business", "score": 78, "image": "/images/WEBP/business-faculty/haas-school-of-business.warm_day.medium2x.1576684641045.webp", "propGroups": ["General info", "Admissions", "Facilities", "Honors", "Tuition & Aid", "Miscellaneous"], "propScore": [0.7069135180375405, 0.5425801341832159, 0.7692157881777145, 0.5452808312705748, 0.8909937313092204]}, {"name": "Graduate School of Business", "score": 90, "image": "/images/WEBP/business-faculty/graduate-school-of-business.warm_day.medium2x.1576684641045.webp", "propGroups": ["General info", "Admissions", "Facilities", "Honors", "Tuition & Aid", "Miscellaneous"], "propScore": [0.8472138360197679, 0.6277581064844089, 0.9646860712894104, 0.654923961543303, 0.8293469156271982]}, {"name": "H. John Heinz III College", "score": 61, "image": "/images/WEBP/business-faculty/h-john-heinz-iii-college.warm_day.medium2x.1576684641045.webp", "propGroups": ["General info", "Admissions", "Facilities", "Honors", "Tuition & Aid", "Miscellaneous"], "propScore": [0.5704435319395689, 0.5430523817625543, 0.4502200589058345, 0.23530665090206163, 0.6790233217616066]}, {"name": "Fuqua School of Business", "score": 78, "image": "/images/WEBP/business-faculty/fuqua-school-of-business.warm_day.medium2x.1576684641045.webp", "propGroups": ["General info", "Admissions", "Facilities", "Honors", "Tuition & Aid", "Miscellaneous"], "propScore": [0.7999810800042212, 0.651474837734877, 0.7893773044576476, 0.404004620900745, 0.8017772962252481]}, {"name": "Leonard N. Stern School", "score": 83, "image": "/images/WEBP/business-faculty/leonard-n-stern-school.warm_day.medium2x.1576684641045.webp", "propGroups": ["General info", "Admissions", "Facilities", "Honors", "Tuition & Aid", "Miscellaneous"], "propScore": [0.8848530302984907, 0.8571156850411021, 0.6317997998990194, 0.4937707982509402, 0.8895570498833687]}, {"name": "Harvard Business School", "score": 100, "image": "/images/WEBP/business-faculty/harvard-business-school.warm_day.medium2x.1576684641045.webp", "propGroups": ["General info", "Admissions", "Facilities", "Honors", "Tuition & Aid", "Miscellaneous"], "propScore": [0.8516001725517498, 0.6432132035014546, 1, 1, 0.9987277255355964]}, {"name": "Kellogg School of Management", "score": 69, "image": "/images/WEBP/business-faculty/kellogg-school-of-management.warm_day.medium2x.1576684641045.webp", "propGroups": ["General info", "Admissions", "Facilities", "Honors", "Tuition & Aid", "Miscellaneous"], "propScore": [0.7841786081339192, 0.5482514158173644, 0.5439690375879117, 0.30950563328039804, 0.8613310051336924]}, {"name": "Judge Business School", "score": 86, "image": "/images/WEBP/business-faculty/judge-business-school.warm_day.medium2x.1576684641045.webp", "propGroups": ["General info", "Admissions", "Facilities", "Honors", "Tuition & Aid", "Miscellaneous"], "propScore": [0.5950482188348396, 0.51211482535412, 0.9865374174308151, 0.7196229948308672, 0.7028182591519995]}, {"name": "MIT Sloan School", "score": 73, "image": "/images/WEBP/business-faculty/mit-sloan-school.warm_day.medium2x.1576684641045.webp", "propGroups": ["General info", "Admissions", "Facilities", "Honors", "Tuition & Aid", "Miscellaneous"], "propScore": [0.7188337032567598, 0.6371244831673462, 0.5026780101948376, 0.5585168369827752, 0.7660665995011247]}, {"name": "Ross School of Business", "score": 83, "image": "/images/WEBP/business-faculty/ross-school-of-business.warm_day.medium2x.1576684641045.webp", "propGroups": ["General info", "Admissions", "Facilities", "Honors", "Tuition & Aid", "Miscellaneous"], "propScore": [0.8763757373325546, 0.6465170351100731, 0.9152484222890657, 0.4043854103951764, 0.8028654965642897]}, {"name": "Melbourne Business School", "score": 50, "image": "/images/WEBP/business-faculty/melbourne-business-school.warm_day.medium2x.1576684641045.webp", "propGroups": ["General info", "Admissions", "Facilities", "Honors", "Tuition & Aid", "Miscellaneous"], "propScore": [0.5435669458826513, 0.16887804693019767, 0.7311726028321464, 0.3435113720012142, 0.76377877323804]}, {"name": "McCombs School", "score": 74, "image": "/images/WEBP/business-faculty/mccombs-school.warm_day.medium2x.1576684641045.webp", "propGroups": ["General info", "Admissions", "Facilities", "Honors", "Tuition & Aid", "Miscellaneous"], "propScore": [0.865960050767621, 0.6208211167314364, 0.728124790203429, 0.3023038402860557, 0.8395966598304718]}, {"name": "Samuel Curtis Johnson Graduate School", "score": 81, "image": "/images/WEBP/business-faculty/samuel-curtis-johnson-graduate-school.warm_day.medium2x.1576684641045.webp", "propGroups": ["General info", "Admissions", "Facilities", "Honors", "Tuition & Aid", "Miscellaneous"], "propScore": [0.8216203842402984, 0.4639417380531369, 0.8013409244797355, 0.4746857236857068, 0.8715142802486612]}, {"name": "Sa\u00efd Business School", "score": 70, "image": "/images/WEBP/business-faculty/sa\u00efd-business-school.warm_day.medium2x.1576684641045.webp", "propGroups": ["General info", "Admissions", "Facilities", "Honors", "Tuition & Aid", "Miscellaneous"], "propScore": [0.6447349564397491, 0.5884043757960735, 0.6685039560157017, 0.4376727066898866, 0.6705739423166022]}, {"name": "School of Business", "score": 51, "image": "/images/WEBP/business-faculty/school-of-business.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Admissions", "Facilities", "Honors", "Tuition & Aid", "Miscellaneous"], "propScore": [0.6265154812816358, 0.3487737021808946, 0.7858490018639384, 0.016324713162959175, 0.7005164791129871]}, {"name": "Tepper School", "score": 68, "image": "/images/WEBP/business-faculty/tepper-school.warm_day.medium2x.1576684641045.webp", "propGroups": ["General info", "Admissions", "Facilities", "Honors", "Tuition & Aid", "Miscellaneous"], "propScore": [0.7450296754764969, 0.6261399709800829, 0.44383387053059903, 0.139815040958718, 0.6806194955219501]}, {"name": "Tuck School of Business", "score": 64, "image": "/images/WEBP/business-faculty/tuck-school-of-business.warm_day.medium2x.1576684641045.webp", "propGroups": ["General info", "Admissions", "Facilities", "Honors", "Tuition & Aid", "Miscellaneous"], "propScore": [0.8233861857125224, 0.5378740983452265, 0.5946476398967405, 0.5625290902183541, 0.6871656864534877]}, {"name": "W. P. Carey School", "score": 56, "image": "/images/WEBP/business-faculty/w-p-carey-school.warm_day.medium2x.1576684641045.webp", "propGroups": ["General info", "Admissions", "Facilities", "Honors", "Tuition & Aid", "Miscellaneous"], "propScore": [0.7004142712464924, 0.6254760608128278, 0.7429817859166494, 0.02840045788763368, 0.7094488256006201]}, {"name": "Weatherhead School", "score": 49, "image": "/images/WEBP/business-faculty/weatherhead-school.warm_day.medium2x.1576684641045.webp", "propGroups": ["General info", "Admissions", "Facilities", "Honors", "Tuition & Aid", "Miscellaneous"], "propScore": [0.6099211573047085, 0.40642607753706667, 0.5239986250520039, 0.06432141050101914, 0.7537954183250785]}, {"name": "UQ Business School", "score": 62, "image": "/images/WEBP/business-faculty/uq-business-school.warm_day.medium2x.1576684641045.webp", "propGroups": ["General info", "Admissions", "Facilities", "Honors", "Tuition & Aid", "Miscellaneous"], "propScore": [0.2960710575829495, 0.7528588340676979, 0.6559524321477538, 0.30805010058517046, 0.8691457161016473]}, {"name": "Yale School of Management", "score": 84, "image": "/images/WEBP/business-faculty/yale-school-of-management.warm_day.medium2x.1576684641045.webp", "propGroups": ["General info", "Admissions", "Facilities", "Honors", "Tuition & Aid", "Miscellaneous"], "propScore": [0.824297006439917, 0.6330947747557777, 0.8312760080068515, 0.7344964111422961, 0.7770504779339987]}, {"name": "Wharton School", "score": 84, "image": "/images/WEBP/business-faculty/wharton-school.warm_day.medium2x.1576684641045.webp", "propGroups": ["General info", "Admissions", "Facilities", "Honors", "Tuition & Aid", "Miscellaneous"], "propScore": [1, 0.6608853563352058, 0.6240291327813337, 0.4921298738299677, 1]}]}
data/calendar-app.json ADDED
@@ -0,0 +1,674 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "data": [
3
+ {
4
+ "name": "Atlas Scheduling",
5
+ "score": 50,
6
+ "image": "/images/WEBP/calendar-app/atlas-scheduling.front.medium2x.1576684641045.webp",
7
+ "propGroups": [
8
+ "General info",
9
+ "Planning",
10
+ "Reminders",
11
+ "Features",
12
+ "Miscellaneous"
13
+ ],
14
+ "propScore": [
15
+ 0.6330968732687601,
16
+ 0.5625,
17
+ 0,
18
+ 0.30769230769230765
19
+ ]
20
+ },
21
+ {
22
+ "name": "Agenda Calendar 4",
23
+ "score": 44,
24
+ "image": "/images/WEBP/calendar-app/agenda-calendar-4.front.medium2x.1576684641045.webp",
25
+ "propGroups": [
26
+ "General info",
27
+ "Planning",
28
+ "Reminders",
29
+ "Features"
30
+ ],
31
+ "propScore": [
32
+ 0.66299641565905,
33
+ 0.625,
34
+ 0.6666666666666666,
35
+ 0.15384615384615383
36
+ ]
37
+ },
38
+ {
39
+ "name": "aCalendar",
40
+ "score": 51,
41
+ "image": "/images/WEBP/calendar-app/acalendar.front.medium2x.1576684641045.webp",
42
+ "propGroups": [
43
+ "General info",
44
+ "Planning",
45
+ "Reminders",
46
+ "Features"
47
+ ],
48
+ "propScore": [
49
+ 0.8464823221405583,
50
+ 0.3125,
51
+ 0.3333333333333333,
52
+ 0.6153846153846153
53
+ ]
54
+ },
55
+ {
56
+ "name": "Awesome Calendar Lite",
57
+ "score": 81,
58
+ "image": "/images/WEBP/calendar-app/awesome-calendar-lite.front.medium2x.1576684641045.webp",
59
+ "propGroups": [
60
+ "General info",
61
+ "Planning",
62
+ "Reminders",
63
+ "Features"
64
+ ],
65
+ "propScore": [
66
+ 0.7043146999528211,
67
+ 0.8125,
68
+ 0.6666666666666666,
69
+ 0.8461538461538461
70
+ ]
71
+ },
72
+ {
73
+ "name": "Calendar.AI",
74
+ "score": 98,
75
+ "image": "/images/WEBP/calendar-app/calendar-ai.front.medium2x.1587467527530.webp",
76
+ "propGroups": [
77
+ "General info",
78
+ "Planning",
79
+ "Reminders",
80
+ "Features"
81
+ ],
82
+ "propScore": [
83
+ 1,
84
+ 0.8749999999999999,
85
+ 0.3333333333333333,
86
+ 0.8461538461538461
87
+ ]
88
+ },
89
+ {
90
+ "name": "Calendar Plus Note Everything",
91
+ "score": 99,
92
+ "image": "/images/WEBP/calendar-app/calendar-plus-note-everything.front.medium2x.1576684641045.webp",
93
+ "propGroups": [
94
+ "General info",
95
+ "Planning",
96
+ "Reminders",
97
+ "Features",
98
+ "Miscellaneous"
99
+ ],
100
+ "propScore": [
101
+ 0.9462682317937263,
102
+ 0.8749999999999999,
103
+ 0.3333333333333333,
104
+ 0.7692307692307693
105
+ ]
106
+ },
107
+ {
108
+ "name": "Business Calendar",
109
+ "score": 52,
110
+ "image": "/images/WEBP/calendar-app/business-calendar.front.medium2x.1576684641045.webp",
111
+ "propGroups": [
112
+ "General info",
113
+ "Planning",
114
+ "Reminders",
115
+ "Features"
116
+ ],
117
+ "propScore": [
118
+ 0.7895404130767093,
119
+ 0.43749999999999994,
120
+ 0,
121
+ 0.5384615384615384
122
+ ]
123
+ },
124
+ {
125
+ "name": "Cal",
126
+ "score": 65,
127
+ "image": "/images/WEBP/calendar-app/cal.front.medium2x.1576684641045.webp",
128
+ "propGroups": [
129
+ "General info",
130
+ "Planning",
131
+ "Reminders",
132
+ "Features"
133
+ ],
134
+ "propScore": [
135
+ 0.8582880597399748,
136
+ 0.5625,
137
+ 0,
138
+ 0.6153846153846153
139
+ ]
140
+ },
141
+ {
142
+ "name": "CalenGoo",
143
+ "score": 87,
144
+ "image": "/images/WEBP/calendar-app/calengoo.front.medium2x.1576684641045.webp",
145
+ "propGroups": [
146
+ "General info",
147
+ "Planning",
148
+ "Reminders",
149
+ "Features"
150
+ ],
151
+ "propScore": [
152
+ 0.7933738712204758,
153
+ 0.6875,
154
+ 0.6666666666666666,
155
+ 0.7692307692307693
156
+ ]
157
+ },
158
+ {
159
+ "name": "Calendars 5",
160
+ "score": 44,
161
+ "image": "/images/WEBP/calendar-app/calendars-5.front.medium2x.1576684641045.webp",
162
+ "propGroups": [
163
+ "General info",
164
+ "Planning",
165
+ "Reminders",
166
+ "Features"
167
+ ],
168
+ "propScore": [
169
+ 0.6905529463402862,
170
+ 0.5625,
171
+ 0.3333333333333333,
172
+ 0.30769230769230765
173
+ ]
174
+ },
175
+ {
176
+ "name": "CalPad",
177
+ "score": 93,
178
+ "image": "/images/WEBP/calendar-app/calpad.front.medium2x.1576684641045.webp",
179
+ "propGroups": [
180
+ "General info",
181
+ "Planning",
182
+ "Reminders",
183
+ "Features"
184
+ ],
185
+ "propScore": [
186
+ 0.5479863686647904,
187
+ 1,
188
+ 0.3333333333333333,
189
+ 1
190
+ ]
191
+ },
192
+ {
193
+ "name": "CalenMob",
194
+ "score": 41,
195
+ "image": "/images/WEBP/calendar-app/calenmob.front.medium2x.1576684641045.webp",
196
+ "propGroups": [
197
+ "General info",
198
+ "Planning",
199
+ "Reminders",
200
+ "Features"
201
+ ],
202
+ "propScore": [
203
+ 0.7423986092387812,
204
+ 0.37499999999999994,
205
+ 0.3333333333333333,
206
+ 0.30769230769230765
207
+ ]
208
+ },
209
+ {
210
+ "name": "DigiCal Calendar & Widgets",
211
+ "score": 98,
212
+ "image": "/images/WEBP/calendar-app/digical-calendar-widgets.front.medium2x.1576684641045.webp",
213
+ "propGroups": [
214
+ "General info",
215
+ "Planning",
216
+ "Reminders",
217
+ "Features",
218
+ "Miscellaneous"
219
+ ],
220
+ "propScore": [
221
+ 0.8165285959192008,
222
+ 0.8125,
223
+ 0.6666666666666666,
224
+ 0.7692307692307693
225
+ ]
226
+ },
227
+ {
228
+ "name": "Coletto calendar~Cute diary",
229
+ "score": 75,
230
+ "image": "/images/WEBP/calendar-app/coletto-calendar-cute-diary.front.medium2x.1576684641045.webp",
231
+ "propGroups": [
232
+ "General info",
233
+ "Planning",
234
+ "Reminders",
235
+ "Features"
236
+ ],
237
+ "propScore": [
238
+ 0.9098814215706394,
239
+ 0.625,
240
+ 0.6666666666666666,
241
+ 0.6153846153846153
242
+ ]
243
+ },
244
+ {
245
+ "name": "Cozi Family Calendar & Lists",
246
+ "score": 56,
247
+ "image": "/images/WEBP/calendar-app/cozi-family-calendar-lists.front.medium2x.1576684641045.webp",
248
+ "propGroups": [
249
+ "General info",
250
+ "Planning",
251
+ "Reminders",
252
+ "Features"
253
+ ],
254
+ "propScore": [
255
+ 0.7048786990071646,
256
+ 0.5625,
257
+ 0.3333333333333333,
258
+ 0.38461538461538464
259
+ ]
260
+ },
261
+ {
262
+ "name": "DejaOffice",
263
+ "score": 42,
264
+ "image": "/images/WEBP/calendar-app/dejaoffice.front.medium2x.1576684641045.webp",
265
+ "propGroups": [
266
+ "General info",
267
+ "Planning",
268
+ "Reminders",
269
+ "Features"
270
+ ],
271
+ "propScore": [
272
+ 0.5616940192449973,
273
+ 0.5625,
274
+ 0,
275
+ 0.30769230769230765
276
+ ]
277
+ },
278
+ {
279
+ "name": "Event Book",
280
+ "score": 51,
281
+ "image": "/images/WEBP/calendar-app/event-book.front.medium2x.1576684641045.webp",
282
+ "propGroups": [
283
+ "General info",
284
+ "Planning",
285
+ "Reminders",
286
+ "Features"
287
+ ],
288
+ "propScore": [
289
+ 0.7729652649630971,
290
+ 0.5,
291
+ 0.3333333333333333,
292
+ 0.38461538461538464
293
+ ]
294
+ },
295
+ {
296
+ "name": "EasilyDo",
297
+ "score": 81,
298
+ "image": "/images/WEBP/calendar-app/easilydo.front.medium2x.1576684641045.webp",
299
+ "propGroups": [
300
+ "General info",
301
+ "Planning",
302
+ "Reminders",
303
+ "Features",
304
+ "Miscellaneous"
305
+ ],
306
+ "propScore": [
307
+ 0.7103834402833907,
308
+ 0.5,
309
+ 0.6666666666666666,
310
+ 0.6923076923076923
311
+ ]
312
+ },
313
+ {
314
+ "name": "Easy Calendar",
315
+ "score": 75,
316
+ "image": "/images/WEBP/calendar-app/easy-calendar.front.medium2x.1576684641045.webp",
317
+ "propGroups": [
318
+ "General info",
319
+ "Planning",
320
+ "Reminders",
321
+ "Features"
322
+ ],
323
+ "propScore": [
324
+ 0.8813632235887223,
325
+ 0.5625,
326
+ 0.3333333333333333,
327
+ 0.8461538461538461
328
+ ]
329
+ },
330
+ {
331
+ "name": "Fantastical 2",
332
+ "score": 77,
333
+ "image": "/images/WEBP/calendar-app/fantastical-2.front.medium2x.1576684641045.webp",
334
+ "propGroups": [
335
+ "General info",
336
+ "Planning",
337
+ "Reminders",
338
+ "Features"
339
+ ],
340
+ "propScore": [
341
+ 0.7555842375788808,
342
+ 0.7499999999999999,
343
+ 0.6666666666666666,
344
+ 0.6153846153846153
345
+ ]
346
+ },
347
+ {
348
+ "name": "Jorte Calendar & Organizer",
349
+ "score": 84,
350
+ "image": "/images/WEBP/calendar-app/jorte-calendar-organizer.front.medium2x.1576684641045.webp",
351
+ "propGroups": [
352
+ "General info",
353
+ "Planning",
354
+ "Reminders",
355
+ "Features"
356
+ ],
357
+ "propScore": [
358
+ 0.9418019752485952,
359
+ 0.7499999999999999,
360
+ 0.3333333333333333,
361
+ 0.6153846153846153
362
+ ]
363
+ },
364
+ {
365
+ "name": "Google Calendar",
366
+ "score": 53,
367
+ "image": "/images/WEBP/calendar-app/google-calendar.front.medium2x.1576684641045.webp",
368
+ "propGroups": [
369
+ "General info",
370
+ "Planning",
371
+ "Reminders",
372
+ "Features"
373
+ ],
374
+ "propScore": [
375
+ 0.9386754994762048,
376
+ 0.37499999999999994,
377
+ 0.3333333333333333,
378
+ 0.4615384615384615
379
+ ]
380
+ },
381
+ {
382
+ "name": "iOS 7 Calendar",
383
+ "score": 40,
384
+ "image": "/images/WEBP/calendar-app/ios-7-calendar.front.medium2x.1576684641045.webp",
385
+ "propGroups": [
386
+ "General info",
387
+ "Planning",
388
+ "Reminders",
389
+ "Features"
390
+ ],
391
+ "propScore": [
392
+ 0.5973560999096019,
393
+ 0.5625,
394
+ 0,
395
+ 0.30769230769230765
396
+ ]
397
+ },
398
+ {
399
+ "name": "MyCalendar Mobile",
400
+ "score": 37,
401
+ "image": "/images/WEBP/calendar-app/mycalendar-mobile.front.medium2x.1576684641045.webp",
402
+ "propGroups": [
403
+ "General info",
404
+ "Planning",
405
+ "Reminders",
406
+ "Features"
407
+ ],
408
+ "propScore": [
409
+ 0.8581538694449543,
410
+ 0.18749999999999997,
411
+ 0.3333333333333333,
412
+ 0.23076923076923075
413
+ ]
414
+ },
415
+ {
416
+ "name": "Petatto Calendar",
417
+ "score": 80,
418
+ "image": "/images/WEBP/calendar-app/petatto-calendar.front.medium2x.1576684641045.webp",
419
+ "propGroups": [
420
+ "General info",
421
+ "Planning",
422
+ "Reminders",
423
+ "Features"
424
+ ],
425
+ "propScore": [
426
+ 0.9746493951336386,
427
+ 0.7499999999999999,
428
+ 0.3333333333333333,
429
+ 0.6923076923076923
430
+ ]
431
+ },
432
+ {
433
+ "name": "Mynd Calendar",
434
+ "score": 76,
435
+ "image": "/images/WEBP/calendar-app/mynd-calendar.front.medium2x.1576684641045.webp",
436
+ "propGroups": [
437
+ "General info",
438
+ "Planning",
439
+ "Reminders",
440
+ "Features",
441
+ "Miscellaneous"
442
+ ],
443
+ "propScore": [
444
+ 0.7882541196757319,
445
+ 0.6875,
446
+ 1,
447
+ 0.6153846153846153
448
+ ]
449
+ },
450
+ {
451
+ "name": "Naver Calendar",
452
+ "score": 76,
453
+ "image": "/images/WEBP/calendar-app/naver-calendar.front.medium2x.1576684641045.webp",
454
+ "propGroups": [
455
+ "General info",
456
+ "Planning",
457
+ "Reminders",
458
+ "Features"
459
+ ],
460
+ "propScore": [
461
+ 0.8481394971113666,
462
+ 0.9375,
463
+ 0,
464
+ 0.4615384615384615
465
+ ]
466
+ },
467
+ {
468
+ "name": "PlanBe",
469
+ "score": 57,
470
+ "image": "/images/WEBP/calendar-app/planbe.front.medium2x.1576684641045.webp",
471
+ "propGroups": [
472
+ "General info",
473
+ "Planning",
474
+ "Reminders",
475
+ "Features"
476
+ ],
477
+ "propScore": [
478
+ 0.6232364144773618,
479
+ 0.7499999999999999,
480
+ 0,
481
+ 0.6923076923076923
482
+ ]
483
+ },
484
+ {
485
+ "name": "SaiSuke",
486
+ "score": 40,
487
+ "image": "/images/WEBP/calendar-app/saisuke.front.medium2x.1576684641045.webp",
488
+ "propGroups": [
489
+ "General info",
490
+ "Planning",
491
+ "Reminders",
492
+ "Features"
493
+ ],
494
+ "propScore": [
495
+ 0.5063780157860334,
496
+ 0.37499999999999994,
497
+ 0.3333333333333333,
498
+ 0.5384615384615384
499
+ ]
500
+ },
501
+ {
502
+ "name": "Pocket Informant 3",
503
+ "score": 87,
504
+ "image": "/images/WEBP/calendar-app/pocket-informant-3.front.medium2x.1576684641045.webp",
505
+ "propGroups": [
506
+ "General info",
507
+ "Planning",
508
+ "Reminders",
509
+ "Features"
510
+ ],
511
+ "propScore": [
512
+ 0.7763411916728429,
513
+ 0.8749999999999999,
514
+ 0.3333333333333333,
515
+ 0.8461538461538461
516
+ ]
517
+ },
518
+ {
519
+ "name": "Pocket Informant - Calendar & Tasks",
520
+ "score": 63,
521
+ "image": "/images/WEBP/calendar-app/pocket-informant-calendar-tasks.front.medium2x.1576684641045.webp",
522
+ "propGroups": [
523
+ "General info",
524
+ "Planning",
525
+ "Reminders",
526
+ "Features"
527
+ ],
528
+ "propScore": [
529
+ 0.8131125777182255,
530
+ 0.7499999999999999,
531
+ 0,
532
+ 0.5384615384615384
533
+ ]
534
+ },
535
+ {
536
+ "name": "SolCalendar - Android Calendar",
537
+ "score": 73,
538
+ "image": "/images/WEBP/calendar-app/solcalendar-android-calendar.front.medium2x.1576684641045.webp",
539
+ "propGroups": [
540
+ "General info",
541
+ "Planning",
542
+ "Reminders",
543
+ "Features"
544
+ ],
545
+ "propScore": [
546
+ 0.7065229439880867,
547
+ 0.7499999999999999,
548
+ 0.3333333333333333,
549
+ 0.5384615384615384
550
+ ]
551
+ },
552
+ {
553
+ "name": "To-Do Calendar Planner",
554
+ "score": 100,
555
+ "image": "/images/WEBP/calendar-app/to-do-calendar-planner.front.medium2x.1576684641045.webp",
556
+ "propGroups": [
557
+ "General info",
558
+ "Planning",
559
+ "Reminders",
560
+ "Features",
561
+ "Miscellaneous"
562
+ ],
563
+ "propScore": [
564
+ 0.7914522535667964,
565
+ 0.9375,
566
+ 0.6666666666666666,
567
+ 0.7692307692307693
568
+ ]
569
+ },
570
+ {
571
+ "name": "Touch Calendar",
572
+ "score": 37,
573
+ "image": "/images/WEBP/calendar-app/touch-calendar.front.medium2x.1576684641045.webp",
574
+ "propGroups": [
575
+ "General info",
576
+ "Planning",
577
+ "Reminders",
578
+ "Features"
579
+ ],
580
+ "propScore": [
581
+ 0.5761368680902972,
582
+ 0.125,
583
+ 0,
584
+ 0.5384615384615384
585
+ ]
586
+ },
587
+ {
588
+ "name": "Tempo Smart Calendar",
589
+ "score": 74,
590
+ "image": "/images/WEBP/calendar-app/tempo-smart-calendar.front.medium2x.1576684641045.webp",
591
+ "propGroups": [
592
+ "General info",
593
+ "Planning",
594
+ "Reminders",
595
+ "Features",
596
+ "Miscellaneous"
597
+ ],
598
+ "propScore": [
599
+ 0.7978910332822473,
600
+ 0.37499999999999994,
601
+ 0.6666666666666666,
602
+ 0.7692307692307693
603
+ ]
604
+ },
605
+ {
606
+ "name": "Tempus Calendar",
607
+ "score": 63,
608
+ "image": "/images/WEBP/calendar-app/tempus-calendar.front.medium2x.1576684641045.webp",
609
+ "propGroups": [
610
+ "General info",
611
+ "Planning",
612
+ "Reminders",
613
+ "Features"
614
+ ],
615
+ "propScore": [
616
+ 0.7317495643857511,
617
+ 0.7499999999999999,
618
+ 0.3333333333333333,
619
+ 0.4615384615384615
620
+ ]
621
+ },
622
+ {
623
+ "name": "Uniqlo Calendar",
624
+ "score": 38,
625
+ "image": "/images/WEBP/calendar-app/uniqlo-calendar.front.medium2x.1576684641045.webp",
626
+ "propGroups": [
627
+ "General info",
628
+ "Planning",
629
+ "Reminders",
630
+ "Features"
631
+ ],
632
+ "propScore": [
633
+ 0.7031345222366882,
634
+ 0.37499999999999994,
635
+ 0,
636
+ 0.23076923076923075
637
+ ]
638
+ },
639
+ {
640
+ "name": "Week Calendar HD",
641
+ "score": 56,
642
+ "image": "/images/WEBP/calendar-app/week-calendar-hd.front.medium2x.1576684641045.webp",
643
+ "propGroups": [
644
+ "General info",
645
+ "Planning",
646
+ "Reminders",
647
+ "Features"
648
+ ],
649
+ "propScore": [
650
+ 0.8725033351049049,
651
+ 0.6875,
652
+ 0.3333333333333333,
653
+ 0.38461538461538464
654
+ ]
655
+ },
656
+ {
657
+ "name": "Week Calendar",
658
+ "score": 55,
659
+ "image": "/images/WEBP/calendar-app/week-calendar.front.medium2x.1576684641045.webp",
660
+ "propGroups": [
661
+ "General info",
662
+ "Planning",
663
+ "Reminders",
664
+ "Features"
665
+ ],
666
+ "propScore": [
667
+ 0.8963954942574646,
668
+ 0.7499999999999999,
669
+ 0,
670
+ 0.38461538461538464
671
+ ]
672
+ }
673
+ ]
674
+ }
data/camcorder.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"data": [{"name": "Blackmagic Production Camera 4K", "score": 47, "image": "/images/WEBP/camcorder/blackmagic-production-camera-4k.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features", "Miscellaneous"], "propScore": [0.7375100947436503, 0.4935763234443627, 0.34633043944781133, 0.425, 1, 0.17501715854495536]}, {"name": "Acer Holo360", "score": 27, "image": "/images/WEBP/camcorder/acer-holo360.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features", "Miscellaneous"], "propScore": [0.21291703648173638, 0.11042854388888138, 0.19564670336685056, 0.25, 0.5, 0.35904255319148937]}, {"name": "Canon EOS C100 Mark II", "score": 56, "image": "/images/WEBP/camcorder/canon-eos-c100-mark-ii.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features"], "propScore": [0.6692655632628011, 0.544859216929086, 0.5516309911538249, 0.65, 1, 0.35904255319148937]}, {"name": "Canon EOS C300 Mark II", "score": 54, "image": "/images/WEBP/camcorder/canon-eos-c300-mark-ii.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features", "Miscellaneous"], "propScore": [0.541514359164598, 0.7690896097661004, 0.5289841677868836, 0.5, 1, 0]}, {"name": "Canon LEGRIA FS36", "score": 38, "image": "/images/WEBP/camcorder/canon-legria-fs36.left.medium2x.1576684641045.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features"], "propScore": [0.5689031179776683, 0.15037029919855993, 0.38197390192678227, 0.025, 0.8064406779661016, 0.07395332875772134]}, {"name": "Canon LEGRIA FS306", "score": 41, "image": "/images/WEBP/camcorder/canon-legria-fs306.left.medium2x.1576684641045.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features"], "propScore": [0.5689031179776683, 0.15037029919855993, 0.3821769384502275, 0.5, 0.8064406779661016, 0.08991077556623198]}, {"name": "Canon GL2", "score": 45, "image": "/images/WEBP/camcorder/canon-gl2.left.medium2x.1576684641045.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features"], "propScore": [0.483655014021467, 0.17028790202465835, 0.5160727339862898, 0.85, 0.7130750605326877, 0.11968085106382978]}, {"name": "Canon EOS C700", "score": 58, "image": "/images/WEBP/camcorder/canon-eos-c700.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features"], "propScore": [0.4885212058379934, 0.4935763234443627, 0.7817408315050931, 0.9, 1, 0.3379224030037547]}, {"name": "Canon LEGRIA FS46", "score": 42, "image": "/images/WEBP/camcorder/canon-legria-fs46.left.medium2x.1576684641045.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features"], "propScore": [0.5040108036500083, 0.15037029919855993, 0.45012405476526496, 0.25, 0.8064406779661016, 0.1803363074811256]}, {"name": "Canon LEGRIA FS37", "score": 39, "image": "/images/WEBP/camcorder/canon-legria-fs37.left.medium2x.1576684641045.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features"], "propScore": [0.5689031179776683, 0.15037029919855993, 0.36767244772568575, 0.2, 0.8064406779661016, 0.07927247769389155]}, {"name": "Canon LEGRIA FS406", "score": 40, "image": "/images/WEBP/camcorder/canon-legria-fs406.left.medium2x.1576684641045.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features"], "propScore": [0.5694813263502864, 0.15037029919855993, 0.37655350447925084, 0.025, 0.8064406779661016, 0.18531228551818804]}, {"name": "Canon Legria GX10", "score": 73, "image": "/images/WEBP/camcorder/canon-legria-gx10.front.medium2x.1655744871763.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features"], "propScore": [0.8660134704485314, 0.6476592228229304, 0.7887830123994706, 0.75, 0.8667796610169491, 0.3379224030037547]}, {"name": "Canon LEGRIA HF G10", "score": 51, "image": "/images/WEBP/camcorder/canon-legria-hf-g10.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features"], "propScore": [0.8099979858578679, 0.14316970956853373, 0.41430412543873124, 0.85, 0.8064406779661016, 0.3026767330130405]}, {"name": "Canon LEGRIA HF G30", "score": 59, "image": "/images/WEBP/camcorder/canon-legria-hf-g30.right.medium2x.1576684641045.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features"], "propScore": [0.73902969891329, 0.18983796839180317, 0.5494077606786537, 0.85, 0.8366101694915254, 0.41059388752069115]}, {"name": "Canon Legria HF G50", "score": 81, "image": "/images/WEBP/camcorder/canon-legria-hf-g50.front.medium2x.1655745107153.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features"], "propScore": [0.8750834621524334, 0.6034001343305392, 0.8377247183420956, 0.75, 0.8366101694915254, 0.41059388752069115]}, {"name": "Canon LEGRIA HF G25", "score": 59, "image": "/images/WEBP/camcorder/canon-legria-hf-g25.left.medium2x.1576684641045.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features"], "propScore": [0.770646700269842, 0.3405758040493167, 0.5241823969222937, 1, 0.8064406779661016, 0.3026767330130405]}, {"name": "Canon LEGRIA HF M506", "score": 54, "image": "/images/WEBP/camcorder/canon-legria-hf-m506.left.medium2x.1576684641045.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features"], "propScore": [0.6868056641568547, 0.14316970956853373, 0.46262693417245604, 0.85, 0.8386440677966102, 0.3026767330130405]}, {"name": "Canon LEGRIA HF M46", "score": 57, "image": "/images/WEBP/camcorder/canon-legria-hf-m46.left.medium2x.1576684641045.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features"], "propScore": [0.6799720049306225, 0.14316970956853373, 0.5441261834269309, 0.65, 0.8064406779661016, 0.3984214138641043]}, {"name": "Canon LEGRIA HF M56", "score": 54, "image": "/images/WEBP/camcorder/canon-legria-hf-m56.left.medium2x.1576684641045.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features"], "propScore": [0.6868056641568547, 0.14316970956853373, 0.47903664764785503, 0.625, 0.8386440677966102, 0.39310226492793404]}, {"name": "Canon LEGRIA HF M52", "score": 58, "image": "/images/WEBP/camcorder/canon-legria-hf-m52.left.medium2x.1576684641045.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features"], "propScore": [0.7045721941114378, 0.2610613340471434, 0.47903664764785503, 0.65, 0.8386440677966102, 0.40905971173644473]}, {"name": "Canon LEGRIA HF R28", "score": 52, "image": "/images/WEBP/camcorder/canon-legria-hf-r28.left.medium2x.1576684641045.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features"], "propScore": [0.6926433211170262, 0.14316970956853373, 0.49650727532501165, 0.65, 0.611864406779661, 0.3875302532240003]}, {"name": "Canon LEGRIA HF R38", "score": 53, "image": "/images/WEBP/camcorder/canon-legria-hf-r38.left.medium2x.1576684641045.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features"], "propScore": [0.6991801158063022, 0.14316970956853373, 0.5805423234676109, 0.5, 0.6338983050847458, 0.3026767330130405]}, {"name": "Canon LEGRIA HF R306", "score": 48, "image": "/images/WEBP/camcorder/canon-legria-hf-r306.left.medium2x.1576684641045.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features"], "propScore": [0.6991801158063022, 0.14316970956853373, 0.5805423234676109, 0.25, 0.6101694915254237, 0.18531228551818804]}, {"name": "Canon LEGRIA HF R36", "score": 52, "image": "/images/WEBP/camcorder/canon-legria-hf-r36.left.medium2x.1576684641045.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features"], "propScore": [0.6991801158063022, 0.14316970956853373, 0.5878937777524373, 0.5, 0.6101694915254237, 0.2867192862045298]}, {"name": "Canon LEGRIA HF R48", "score": 55, "image": "/images/WEBP/camcorder/canon-legria-hf-r48.right.medium2x.1576684641045.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features"], "propScore": [0.6988185174124033, 0.17960140420845055, 0.5651606134558073, 0.5, 0.8369491525423729, 0.3026767330130405]}, {"name": "Canon LEGRIA HF R46", "score": 55, "image": "/images/WEBP/camcorder/canon-legria-hf-r46.left.medium2x.1576684641045.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features"], "propScore": [0.698487624712927, 0.17028790202465835, 0.5651606134558073, 0.65, 0.6386440677966101, 0.2867192862045298]}, {"name": "Canon Legria Mini", "score": 58, "image": "/images/WEBP/camcorder/canon-legria-mini.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features"], "propScore": [0.773833054007718, 0.13475538703526113, 0.5987244089242488, 0.25, 1, 0.4505632040050062]}, {"name": "Canon LEGRIA HF S30", "score": 55, "image": "/images/WEBP/camcorder/canon-legria-hf-s30.left.medium2x.1576684641045.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features"], "propScore": [0.8108061330643024, 0.2610613340471434, 0.4904047739969989, 0.75, 0.6064406779661017, 0.3026767330130405]}, {"name": "Canon Vixia HF M400", "score": 56, "image": "/images/WEBP/camcorder/canon-vixia-hf-m400.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features"], "propScore": [0.8038438159469233, 0.27050658821304774, 0.39743119968810436, 0.425, 0.8064406779661016, 0.41059388752069115]}, {"name": "Canon Vixia HF M52", "score": 51, "image": "/images/WEBP/camcorder/canon-vixia-hf-m52.side.medium2x.1576684641045.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features"], "propScore": [0.6055744796223507, 0.2883185843967834, 0.5258414422227118, 0.65, 0.8386440677966102, 0.360450563204005]}, {"name": "Canon Vixia HF R42", "score": 68, "image": "/images/WEBP/camcorder/canon-vixia-hf-r42.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features"], "propScore": [0.8714889698521474, 0.3139881189918088, 0.5629803440803584, 0.425, 1, 0.44680851063829785]}, {"name": "Canon Vixia HF G20", "score": 61, "image": "/images/WEBP/camcorder/canon-vixia-hf-g20.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features"], "propScore": [0.8371970417274345, 0.16770778229701203, 0.6103854268999057, 0.425, 0.8064406779661016, 0.44680851063829785]}, {"name": "Canon Vixia HF R52", "score": 55, "image": "/images/WEBP/camcorder/canon-vixia-hf-r52.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features"], "propScore": [0.7612327304127836, 0.20445562364855988, 0.4742804625333542, 0.425, 1, 0.23404255319148937]}, {"name": "Canon Vixia Mini X", "score": 48, "image": "/images/WEBP/camcorder/canon-vixia-mini-x.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features"], "propScore": [0.35954858047387556, 0.3175538949102969, 0.5987244089242488, 0.25, 1, 0.4505632040050062]}, {"name": "Canon Vixia HF R500", "score": 52, "image": "/images/WEBP/camcorder/canon-vixia-hf-r500.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features"], "propScore": [0.7493139566269728, 0.20445562364855988, 0.4742804625333542, 0.425, 1, 0.11264080100125155]}, {"name": "Canon XA10", "score": 47, "image": "/images/WEBP/camcorder/canon-xa10.left.medium2x.1576684641045.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features"], "propScore": [0.720891656176538, 0.14316970956853373, 0.4929143033035881, 1, 0.40644067796610167, 0.32395332875772126]}, {"name": "Canon XA25", "score": 66, "image": "/images/WEBP/camcorder/canon-xa25.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features"], "propScore": [0.8093350413840655, 0.17125544692252576, 0.6749261943837421, 0.425, 0.8366101694915254, 0.5632040050062578]}, {"name": "Canon XC10", "score": 86, "image": "/images/WEBP/camcorder/canon-xc10.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features"], "propScore": [0.666140729545309, 0.8298351172285828, 0.6996907696701561, 0.625, 0.8394915254237288, 0.4941660947151681]}, {"name": "Canon XF100", "score": 48, "image": "/images/WEBP/camcorder/canon-xf100.left.medium2x.1576684641045.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features"], "propScore": [0.5901214965310357, 0.2681566632981708, 0.4758925016860689, 0.65, 1, 0.3026767330130405]}, {"name": "Canon XA20", "score": 65, "image": "/images/WEBP/camcorder/canon-xa20.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features"], "propScore": [0.7048538187259896, 0.5108637060739751, 0.5740258177046474, 0.5, 1, 0.4787234042553191]}, {"name": "Canon XF105", "score": 42, "image": "/images/WEBP/camcorder/canon-xf105.left.medium2x.1576684641045.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features"], "propScore": [0.5892448639730022, 0.2681566632981708, 0.3564283381118113, 0.75, 0.75, 0.3026767330130405]}, {"name": "Canon XF605", "score": 89, "image": "/images/WEBP/camcorder/canon-xf605.front.medium2x.1631707506959.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features", "Miscellaneous"], "propScore": [0.5601198056981153, 0.7363161507301615, 0.9149186557249345, 0.75, 1, 0.8260325406758448]}, {"name": "Canon XF305", "score": 37, "image": "/images/WEBP/camcorder/canon-xf305.left.medium2x.1576684641045.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features"], "propScore": [0.5333279414699698, 0.1502650388195612, 0.3788801117088465, 0.75, 1, 0.3026767330130405]}, {"name": "Canon XF300", "score": 35, "image": "/images/WEBP/camcorder/canon-xf300.left.medium2x.1576684641045.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features"], "propScore": [0.43882568089317026, 0.2681566632981708, 0.25987194034487177, 0.425, 0.75, 0.3026767330130405]}, {"name": "Canon XL H1S", "score": 29, "image": "/images/WEBP/camcorder/canon-xl-h1s.left.medium2x.1576684641045.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features"], "propScore": [0.2755797390115901, 0.15037029919855993, 0.4471446764168281, 0.425, 0.75, 0]}, {"name": "Canon XH G1s", "score": 35, "image": "/images/WEBP/camcorder/canon-xh-g1s.left.medium2x.1576684641045.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features"], "propScore": [0.34864889192875026, 0.15037029919855993, 0.38740531821895297, 0.65, 1, 0.11968085106382978]}, {"name": "Canon XH A1s", "score": 32, "image": "/images/WEBP/camcorder/canon-xh-a1s.right.medium2x.1576684641045.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features"], "propScore": [0.3509399489249344, 0.17028790202465835, 0.3873690869741733, 0.5, 0.75, 0.11968085106382978]}, {"name": "Canon XL H1A", "score": 31, "image": "/images/WEBP/camcorder/canon-xl-h1a.left.medium2x.1576684641045.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features"], "propScore": [0.2728750473812933, 0.17028790202465835, 0.36898752154604963, 0.65, 1, 0.11968085106382978]}, {"name": "Canon XL2", "score": 36, "image": "/images/WEBP/camcorder/canon-xl2.left.medium2x.1576684641045.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features"], "propScore": [0.2867360861760711, 0.17028790202465835, 0.392805422439862, 0.85, 0.7186440677966102, 0.23936170212765956]}, {"name": "Contour+2", "score": 48, "image": "/images/WEBP/camcorder/contour-2.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features"], "propScore": [0.6127323949003405, 0.16060265787828965, 0.014070482091451585, 0.225, 0.4, 0.4787234042553191]}, {"name": "Contour Roam 2", "score": 40, "image": "/images/WEBP/camcorder/contour-roam-2.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features"], "propScore": [0.6146954387336603, 0.16060265787828965, 0.014070482091451585, 0.025, 0.4, 0.23936170212765956]}, {"name": "Contour Roam", "score": 50, "image": "/images/WEBP/camcorder/contour-roam.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features"], "propScore": [0.904437995736106, 0.03288673135979587, 0.24642097891125933, 0.425, 0.5, 0.08991077556623198]}, {"name": "Google Clips", "score": 19, "image": "/images/WEBP/camcorder/google-clips.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features", "Miscellaneous"], "propScore": [0.31078163758475913, 0.17028790202465835, 0.1353446372606295, 0.025, 0, 0.1501877346683354]}, {"name": "Flir Duo", "score": 28, "image": "/images/WEBP/camcorder/flir-duo.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features", "Miscellaneous"], "propScore": [0.5885037957891119, 0.16060265787828965, 0.004020137740414737, 0, 0.75, 0.17501715854495536]}, {"name": "Flir Duo R", "score": 28, "image": "/images/WEBP/camcorder/flir-duo-r.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features", "Miscellaneous"], "propScore": [0.5885037957891119, 0.16060265787828965, 0.004020137740414737, 0, 0.75, 0.17501715854495536]}, {"name": "Garmin Virb", "score": 50, "image": "/images/WEBP/camcorder/garmin-virb.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features"], "propScore": [0.680930057243605, 0.2720943541992917, 0.1487450963953453, 0.225, 0.8440677966101695, 0.41059388752069115]}, {"name": "JVC Everio GZ-EX355", "score": 63, "image": "/images/WEBP/camcorder/jvc-everio-gz-ex355.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features"], "propScore": [0.8131365072704477, 0.028381317004109726, 0.5892173944865121, 0.025, 0.8237288135593219, 0.4782357403460607]}, {"name": "JVC GY-HM150", "score": 44, "image": "/images/WEBP/camcorder/jvc-gy-hm150.left.medium2x.1576684641045.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features"], "propScore": [0.33080484568170954, 0.3126236325973804, 0.351419360730945, 0.65, 0.8576271186440678, 0.2979530865194396]}, {"name": "JVC GC-PX100", "score": 64, "image": "/images/WEBP/camcorder/jvc-gc-px100.left.medium2x.1576684641045.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features"], "propScore": [0.7408009309344351, 0.31614648837935905, 0.46488003116556026, 0.75, 1, 0.41059388752069115]}, {"name": "JVC Everio GZ-VX815", "score": 56, "image": "/images/WEBP/camcorder/jvc-everio-gz-vx815.left.medium2x.1576684641045.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features"], "propScore": [0.699358156455392, 0.33217155016705363, 0.48725856161808556, 0.25, 1, 0.35904255319148937]}, {"name": "JVC GY-LS300", "score": 45, "image": "/images/WEBP/camcorder/jvc-gy-ls300.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features"], "propScore": [0.41363304850388427, 0.5501609142335117, 0.21301979226826764, 0.5, 0.9423728813559322, 0.2979530865194396]}, {"name": "JVC GY-HM600", "score": 41, "image": "/images/WEBP/camcorder/jvc-gy-hm600.left.medium2x.1576684641045.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features"], "propScore": [0.6246130465431136, 0.1960964945131991, 0.37489588337346563, 0.65, 0.9423728813559322, 0.23936170212765956]}, {"name": "JVC GZ-GX1", "score": 60, "image": "/images/WEBP/camcorder/jvc-gz-gx1.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features"], "propScore": [0.9122509803493425, 0.20445562364855988, 0.5574187391443213, 0.25, 0.623728813559322, 0.41059388752069115]}, {"name": "JVC GY-HMQ10", "score": 52, "image": "/images/WEBP/camcorder/jvc-gy-hmq10.left.medium2x.1576684641045.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features"], "propScore": [0.6630094585848675, 0.42339721196597774, 0.5340571947711069, 0.75, 0.7423728813559322, 0.2979530865194396]}, {"name": "Nikon KeyMission 360", "score": 25, "image": "/images/WEBP/camcorder/nikon-keymission-360.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features"], "propScore": [0.417011317419519, 0, 0.310732999464998, 0, 0.5, 0.11264080100125155]}, {"name": "Kodak Pixpro SP360 4K", "score": 67, "image": "/images/WEBP/camcorder/kodak-pixpro-sp360-4k.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features"], "propScore": [0.660372587369626, 0.3484347098771791, 0.3130883588656701, 0.25, 0.8186440677966103, 0.7069320521619767]}, {"name": "Nokia OZO", "score": 11, "image": "/images/WEBP/camcorder/nokia-ozo.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features"], "propScore": [0.29547706807012625, 0, 0, 0.2, 0.5, 0.2252816020025031]}, {"name": "Olympus Tough TG-Tracker", "score": 55, "image": "/images/WEBP/camcorder/olympus-tough-tg-tracker.front.medium2x.1605805762253.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features", "Miscellaneous"], "propScore": [0.8648962132787884, 0.16060265787828965, 0.16804523818807235, 0, 0.8220338983050848, 0.38778311599176385]}, {"name": "Panasonic AG-AF100", "score": 39, "image": "/images/WEBP/camcorder/panasonic-ag-af100.back.medium2x.1576684641045.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features"], "propScore": [0.5330841107958895, 0.33217155016705363, 0.3712035750856532, 0.425, 0.5593220338983051, 0.2979530865194396]}, {"name": "Panasonic AG-3DA1", "score": 34, "image": "/images/WEBP/camcorder/panasonic-ag-3da1.left.medium2x.1576684641045.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features"], "propScore": [0.40957595739918556, 0.4598874766855474, 0.22249870210786382, 0.75, 0.5, 0.23936170212765956]}, {"name": "Panasonic AG-HPX170PJ", "score": 43, "image": "/images/WEBP/camcorder/panasonic-ag-hpx170pj.back.medium2x.1576684641045.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features"], "propScore": [0.25737054229664136, 0.4598874766855474, 0.3725690439157489, 0.75, 0.5593220338983051, 0.18531228551818804]}, {"name": "Panasonic AG-AC160A", "score": 58, "image": "/images/WEBP/camcorder/panasonic-ag-ac160a.left.medium2x.1576684641045.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features"], "propScore": [0.5018767827358913, 0.33217155016705363, 0.6927336076038839, 0.65, 0.9728813559322035, 0.2979530865194396]}, {"name": "Panasonic AG-HPX500", "score": 30, "image": "/images/WEBP/camcorder/panasonic-ag-hpx500.back.medium2x.1576684641045.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features"], "propScore": [0.3147088912129718, 0.49477016183179795, 0.18111477736555542, 0.5, 0.75, 0.18531228551818804]}, {"name": "Panasonic HC-PV100", "score": 49, "image": "/images/WEBP/camcorder/panasonic-hc-pv100.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features"], "propScore": [0.5186133481509109, 0.06880510898086833, 0.6571188124359367, 0.65, 0.8745762711864407, 0.2979530865194396]}, {"name": "Panasonic AG-HPX250PJ", "score": 48, "image": "/images/WEBP/camcorder/panasonic-ag-hpx250pj.back.medium2x.1576684641045.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features"], "propScore": [0.4003649616271249, 0.4598874766855474, 0.391587951520881, 0.75, 0.7593220338983051, 0.2979530865194396]}, {"name": "Panasonic AG-HPX370", "score": 31, "image": "/images/WEBP/camcorder/panasonic-ag-hpx370.left.medium2x.1576684641045.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features"], "propScore": [0.43667529914417813, 0.33217155016705363, 0.3601024347158658, 0.425, 0.5, 0.18531228551818804]}, {"name": "Panasonic HC-V500", "score": 41, "image": "/images/WEBP/camcorder/panasonic-hc-v500.left.medium2x.1576684641045.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features"], "propScore": [0.48879431802306994, 0.20445562364855988, 0.5436674262663331, 0.25, 0.6369491525423729, 0.1856554564172958]}, {"name": "Panasonic HC-V500M", "score": 54, "image": "/images/WEBP/camcorder/panasonic-hc-v500m.left.medium2x.1576684641045.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features"], "propScore": [0.6524239768182187, 0.20445562364855988, 0.7402959081984314, 0.25, 0.6369491525423729, 0.1856554564172958]}, {"name": "Panasonic HC-V100", "score": 37, "image": "/images/WEBP/camcorder/panasonic-hc-v100.left.medium2x.1576684641045.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features"], "propScore": [0.4723892773933046, 0.20445562364855988, 0.41902763881107785, 0.25, 0.43694915254237293, 0.1856554564172958]}, {"name": "Panasonic HC-V10", "score": 39, "image": "/images/WEBP/camcorder/panasonic-hc-v10.left.medium2x.1576684641045.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features"], "propScore": [0.4683756977984414, 0.17404706971558515, 0.5231001092706979, 0.25, 0.4066101694915254, 0.18531228551818804]}, {"name": "Panasonic HC-V720", "score": 69, "image": "/images/WEBP/camcorder/panasonic-hc-v720.left.medium2x.1576684641045.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features"], "propScore": [0.5148010599043721, 0.20445562364855988, 0.5253981082224326, 0.75, 0.8420338983050847, 0.9196980096087851]}, {"name": "Panasonic HC-X2", "score": 75, "image": "/images/WEBP/camcorder/panasonic-hc-x2.front.medium2x.1666319008834.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features"], "propScore": [0.7224301970796523, 0.6790077221641707, 0.5362733623721176, 0.75, 0.9762711864406779, 0.6382978723404255]}, {"name": "Panasonic HC-V700M", "score": 44, "image": "/images/WEBP/camcorder/panasonic-hc-v700m.left.medium2x.1576684641045.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features"], "propScore": [0.6213208929976707, 0.20445562364855988, 0.35141412611353146, 0.5, 0.43694915254237293, 0.1856554564172958]}, {"name": "Panasonic HC-X1000", "score": 62, "image": "/images/WEBP/camcorder/panasonic-hc-x1000.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features"], "propScore": [0.7137959774281207, 0.35901617000794434, 0.5642099024129783, 1, 0.9728813559322035, 0.4505632040050062]}, {"name": "Panasonic HC-X900M", "score": 51, "image": "/images/WEBP/camcorder/panasonic-hc-x900m.left.medium2x.1576684641045.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features"], "propScore": [0.7346200603841416, 0.5053328308078685, 0.4518045244891191, 0.45, 0.6186440677966102, 0.19629375428963625]}, {"name": "Panasonic HC-X900", "score": 46, "image": "/images/WEBP/camcorder/panasonic-hc-x900.left.medium2x.1576684641045.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features"], "propScore": [0.6778848799333306, 0.5053328308078685, 0.25615782112226854, 0.45, 0.6186440677966102, 0.19629375428963625]}, {"name": "Panasonic HC-X800", "score": 38, "image": "/images/WEBP/camcorder/panasonic-hc-x800.left.medium2x.1576684641045.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features"], "propScore": [0.5400971618312176, 0.3175538949102969, 0.25161936758356357, 0.25, 0.41864406779661023, 0.18531228551818804]}, {"name": "Panasonic HC-X20", "score": 82, "image": "/images/WEBP/camcorder/panasonic-hc-x20.front.medium2x.1666319367118.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features"], "propScore": [0.8250313996310499, 0.6790077221641707, 0.4758383870847575, 0.75, 0.9762711864406779, 0.8062709966405375]}, {"name": "Panasonic HDC-TM90", "score": 54, "image": "/images/WEBP/camcorder/panasonic-hdc-tm90.left.medium2x.1576684641045.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features"], "propScore": [0.5479048953314984, 0.42689316591987114, 0.6533305851750125, 0.5, 0.43694915254237293, 0.1856554564172958]}, {"name": "Panasonic HDC-TM900", "score": 68, "image": "/images/WEBP/camcorder/panasonic-hdc-tm900.right.medium2x.1576684641045.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features"], "propScore": [0.6434942546885967, 0.7305534107890174, 0.6481506027370637, 0.65, 0.8488700564971752, 0.13516896120150187]}, {"name": "Panasonic HC-X920", "score": 76, "image": "/images/WEBP/camcorder/panasonic-hc-x920.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features"], "propScore": [0.8531350954373729, 0.17028790202465835, 0.7672860702087607, 0.75, 0.8186440677966103, 0.5632040050062578]}, {"name": "Panasonic HDC-TM40", "score": 43, "image": "/images/WEBP/camcorder/panasonic-hdc-tm40.left.medium2x.1576684641045.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features"], "propScore": [0.4735940517735649, 0.20445562364855988, 0.624900719011713, 0.25, 0.6369491525423729, 0.1856554564172958]}, {"name": "Panasonic HX-DC3", "score": 48, "image": "/images/WEBP/camcorder/panasonic-hx-dc3.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features"], "propScore": [0.638349304076741, 0.20445562364855988, 0.46744338020606296, 0.25, 0.6, 0.28144335535346604]}, {"name": "Panasonic HX-WA20", "score": 57, "image": "/images/WEBP/camcorder/panasonic-hx-wa20.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features"], "propScore": [0.7124847110808206, 0.3069771398088005, 0.5471941905024302, 0.25, 0.6061016949152542, 0.18531228551818804]}, {"name": "Panasonic HX-WA2", "score": 59, "image": "/images/WEBP/camcorder/panasonic-hx-wa2.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features"], "propScore": [0.7124158318821495, 0.30661989246189564, 0.5959780947327435, 0.25, 0.6061016949152542, 0.1750587143960192]}, {"name": "Panasonic HDC-Z10000", "score": 44, "image": "/images/WEBP/camcorder/panasonic-hdc-z10000.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features"], "propScore": [0.48511789637544134, 0.6744282049928231, 0.3766342008236638, 0.425, 0.5593220338983051, 0]}, {"name": "Panasonic HX-WA30", "score": 70, "image": "/images/WEBP/camcorder/panasonic-hx-wa30.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features"], "propScore": [0.807036637330364, 0.32651797631341084, 0.7336939701915391, 0.25, 0.8061016949152542, 0.41059388752069115]}, {"name": "Samsung Gear 360 (2017)", "score": 62, "image": "/images/WEBP/camcorder/samsung-gear-360-2017.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features", "Miscellaneous"], "propScore": [0.7033710891030801, 0.3658603969258689, 0.2796784820365085, 0, 0.8325423728813559, 0.6202814001372682]}, {"name": "Panasonic Lumix DC-BGH1", "score": 78, "image": "/images/WEBP/camcorder/panasonic-lumix-dc-bgh1.front.medium2x.1605799264639.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features", "Miscellaneous"], "propScore": [0.7764907725145668, 0.7335871779413048, 0.7484969014073266, 0.75, 1, 0.604703247480403]}, {"name": "Samsung F80", "score": 46, "image": "/images/WEBP/camcorder/samsung-f80.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features"], "propScore": [0.7160692036673116, 0.13475538703526113, 0.40560272616072374, 0.45, 0.6440677966101696, 0.18531228551818804]}, {"name": "Samsung H300", "score": 40, "image": "/images/WEBP/camcorder/samsung-h300.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features"], "propScore": [0.7151521228728828, 0.20445562364855988, 0.3309206013574207, 0, 0.8474576271186441, 0.18531228551818804]}, {"name": "Samsung HMX-T10BP", "score": 47, "image": "/images/WEBP/camcorder/samsung-hmx-t10bp.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features"], "propScore": [0.8148646374499185, 0.20445562364855988, 0.485934120082518, 0.225, 0.8186440677966103, 0.18531228551818804]}, {"name": "Samsung Gear 360", "score": 60, "image": "/images/WEBP/camcorder/samsung-gear-360.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features", "Miscellaneous"], "propScore": [0.581041464236325, 0.2209129565120228, 0.3482324098204231, 0, 0.8220338983050848, 0.5245367192862043]}, {"name": "Samsung Q10", "score": 41, "image": "/images/WEBP/camcorder/samsung-q10.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features"], "propScore": [0.8114356210713703, 0.20445562364855988, 0.34968771928955783, 0.25, 0.6186440677966102, 0.18531228551818804]}, {"name": "Samsung QF20", "score": 47, "image": "/images/WEBP/camcorder/samsung-qf20.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features"], "propScore": [0.8132281399161255, 0.20445562364855988, 0.4094923907044764, 0, 0.6186440677966102, 0.2979530865194396]}, {"name": "Sony Action Cam HDR-AS30V", "score": 86, "image": "/images/WEBP/camcorder/sony-action-cam-hdr-as30v.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features"], "propScore": [0.959751867768665, 0.308803070692981, 0.5279916812089196, 0.225, 1, 0.7069320521619767]}, {"name": "Sony Action Cam", "score": 85, "image": "/images/WEBP/camcorder/sony-action-cam.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features"], "propScore": [0.959751867768665, 0.42669469517159064, 0.5279916812089196, 0.225, 1, 0.5984042553191489]}, {"name": "Sony Bloggie Live", "score": 53, "image": "/images/WEBP/camcorder/sony-bloggie-live.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features"], "propScore": [0.5369164589678429, 0.20445562364855988, 0.34122942817782753, 0.025, 0.5, 0.6358754895231943]}, {"name": "Sony FDR-AX33", "score": 85, "image": "/images/WEBP/camcorder/sony-fdr-ax33.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features"], "propScore": [0.7114923000681159, 0.6437591833185449, 1, 0.425, 0.8427118644067797, 0.4941660947151681]}, {"name": "Sony FDR-AX43", "score": 64, "image": "/images/WEBP/camcorder/sony-fdr-ax43.front.medium2x.1625861134938.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features", "Miscellaneous"], "propScore": [0.7538364299594873, 0.6212922499628565, 0.5142091181468817, 0.5, 0.8427118644067797, 0.3379224030037547]}, {"name": "Sony FDR-AX40", "score": 100, "image": "/images/WEBP/camcorder/sony-fdr-ax40.front.medium2x.1622123129137.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features", "Miscellaneous"], "propScore": [0.7343198166458386, 0.7665714822475124, 0.8647729781938694, 0.75, 0.8271186440677966, 1]}, {"name": "Sony FDR-AX100", "score": 88, "image": "/images/WEBP/camcorder/sony-fdr-ax100.front.medium2x.1625786787656.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features", "Miscellaneous"], "propScore": [0.6846061127033197, 0.6212922499628565, 0.8469090173140381, 0.75, 0.8427118644067797, 0.7069320521619767]}, {"name": "Sony FDR-AX700", "score": 82, "image": "/images/WEBP/camcorder/sony-fdr-ax700.front.medium2x.1625857117162.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features", "Miscellaneous"], "propScore": [0.6686202314323969, 0.6212922499628565, 0.8015791935192363, 0.75, 1, 0.5632040050062578]}, {"name": "Sony FDR-AX53", "score": 75, "image": "/images/WEBP/camcorder/sony-fdr-ax53.front.medium2x.1625853372193.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features", "Miscellaneous"], "propScore": [0.7725713126500217, 0.7490081764813502, 0.5165660372469482, 0.5, 0.8413559322033898, 0.6758448060075094]}, {"name": "Sony FX6", "score": 88, "image": "/images/WEBP/camcorder/sony-fx6.front.medium2x.1607636297527.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features", "Miscellaneous"], "propScore": [0.8679239107390336, 0.934260918039953, 0.7162545407505592, 0.625, 1, 0.7390817469204928]}, {"name": "Sony Handycam FDR-AX100", "score": 64, "image": "/images/WEBP/camcorder/sony-handycam-fdr-ax100.left.medium2x.1576684641045.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features"], "propScore": [0.5287396271901539, 0.4935763234443627, 0.6307726638663335, 0.425, 1, 0.7069320521619767]}, {"name": "Sony Handycam HDR-CX130", "score": 61, "image": "/images/WEBP/camcorder/sony-handycam-hdr-cx130.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features"], "propScore": [0.8249703581899422, 0.4598874766855474, 0.5236098679969218, 0.25, 0.8111864406779661, 0.17501715854495536]}, {"name": "Sony HDR-AX2000", "score": 44, "image": "/images/WEBP/camcorder/sony-hdr-ax2000.left.medium2x.1576684641045.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features"], "propScore": [0.5314023172612462, 0.14316970956853373, 0.5846055682766633, 0.85, 0.8461016949152542, 0.23936170212765956]}, {"name": "Sony Handycam HDR-PJ430V", "score": 81, "image": "/images/WEBP/camcorder/sony-handycam-hdr-pj430v.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features"], "propScore": [0.7976933887431997, 0.4598874766855474, 0.7307741481698816, 0.75, 0.8111864406779661, 0.515442690459849]}, {"name": "Sony Handycam HDR-XR160", "score": 63, "image": "/images/WEBP/camcorder/sony-handycam-hdr-xr160.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features"], "propScore": [0.8172545011485981, 0.31207783803960903, 0.4680204996585365, 0.625, 0.8111864406779661, 0.4941660947151681]}, {"name": "Sony HDR-CX220", "score": 50, "image": "/images/WEBP/camcorder/sony-hdr-cx220.left.medium2x.1576684641045.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features"], "propScore": [0.6341591488298757, 0.19418621356099944, 0.6876140316467964, 0.025, 1, 0.18531228551818804]}, {"name": "Sony HDR-CX280", "score": 53, "image": "/images/WEBP/camcorder/sony-hdr-cx280.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features"], "propScore": [0.6199589192933089, 0.33217155016705363, 0.40866964578250636, 0.25, 0.8118644067796611, 0.23936170212765956]}, {"name": "Sony HDR-CX230", "score": 47, "image": "/images/WEBP/camcorder/sony-hdr-cx230.left.medium2x.1576684641045.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features"], "propScore": [0.6345891696368777, 0.19938753132639742, 0.6083765888640755, 0.025, 0.75, 0.1803363074811256]}, {"name": "Sony HDR-CX240", "score": 52, "image": "/images/WEBP/camcorder/sony-hdr-cx240.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features"], "propScore": [0.5687667284746339, 0.20445562364855988, 0.668238962829928, 0.5, 1, 0.18531228551818804]}, {"name": "Sony HDR-CX290", "score": 53, "image": "/images/WEBP/camcorder/sony-hdr-cx290.right.medium2x.1576684641045.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features"], "propScore": [0.6134144222802153, 0.20445562364855988, 0.7915546670534853, 0.025, 1, 0.1803363074811256]}, {"name": "Sony HDR-CX330", "score": 55, "image": "/images/WEBP/camcorder/sony-hdr-cx330.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features"], "propScore": [0.6848083665382949, 0.20445562364855988, 0.6720502622461655, 0.5, 1, 0.2979530865194396]}, {"name": "Sony HDR-CX410VE", "score": 71, "image": "/images/WEBP/camcorder/sony-hdr-cx410ve.right.medium2x.1576684641045.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features"], "propScore": [0.6838410153095092, 0.4452698214287907, 0.7302905465447319, 0.25, 1, 0.35904255319148937]}, {"name": "Sony HDR-CX405", "score": 60, "image": "/images/WEBP/camcorder/sony-hdr-cx405.front.medium2x.1625793923247.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features", "Miscellaneous"], "propScore": [0.6756320621483529, 0.07673969713006609, 0.7129044259668802, 0.25, 1, 0.4941660947151681]}, {"name": "Sony HDR-CX440", "score": 59, "image": "/images/WEBP/camcorder/sony-hdr-cx440.front.medium2x.1625839006208.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features", "Miscellaneous"], "propScore": [0.6836172874688008, 0.07673969713006609, 0.7129044259668802, 0, 0.8183050847457627, 0.6005490734385724]}, {"name": "Sony HDR-CX570E", "score": 55, "image": "/images/WEBP/camcorder/sony-hdr-cx570e.left.medium2x.1576684641045.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features"], "propScore": [0.8015132959608341, 0.2648515672100873, 0.5465119425179076, 0.75, 0.6111864406779661, 0.11968085106382978]}, {"name": "Sony HDR-CX675", "score": 74, "image": "/images/WEBP/camcorder/sony-hdr-cx675.front.medium2x.1625848625758.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features", "Miscellaneous"], "propScore": [0.6901497379785475, 0.715319329722535, 0.6049083122042325, 0.5, 0.8111864406779661, 0.7069320521619767]}, {"name": "Sony HDR-CX455", "score": 72, "image": "/images/WEBP/camcorder/sony-hdr-cx455.front.medium2x.1625842713889.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features", "Miscellaneous"], "propScore": [0.7772739504938454, 0.4598874766855474, 0.6975830664306354, 0.5, 0.8111864406779661, 0.6005490734385724]}, {"name": "Sony HDR-CX900", "score": 71, "image": "/images/WEBP/camcorder/sony-hdr-cx900.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features"], "propScore": [0.5287396271901539, 0.5876034032040413, 0.5956170447244031, 0.75, 1, 0.5632040050062578]}, {"name": "Sony HDR-CX760V", "score": 78, "image": "/images/WEBP/camcorder/sony-hdr-cx760v.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features"], "propScore": [0.7779839270263486, 0.38139386966499633, 0.5615238815678226, 0.625, 0.8111864406779661, 0.7707618393960192]}, {"name": "Sony HDR-FX1000", "score": 42, "image": "/images/WEBP/camcorder/sony-hdr-fx1000.right.medium2x.1576684641045.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features"], "propScore": [0.5348292298493456, 0.15037029919855993, 0.5863230511798255, 0.75, 0.6461016949152543, 0.23936170212765956]}, {"name": "Sony HDR-CX730E", "score": 61, "image": "/images/WEBP/camcorder/sony-hdr-cx730e.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features"], "propScore": [0.8356826621805623, 0.26215292316268607, 0.5558764021310011, 0.75, 0.6111864406779661, 0.23936170212765956]}, {"name": "Sony HDR-GW55VE", "score": 72, "image": "/images/WEBP/camcorder/sony-hdr-gw55ve.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features"], "propScore": [0.9536601543664524, 0.26215292316268607, 0.6718144282622922, 0.225, 0.808813559322034, 0.23936170212765956]}, {"name": "Sony HDR-FX7", "score": 46, "image": "/images/WEBP/camcorder/sony-hdr-fx7.left.medium2x.1576684641045.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features"], "propScore": [0.515985464276757, 0.15037029919855993, 0.6214936467494983, 0.65, 0.6461016949152543, 0.23936170212765956]}, {"name": "Sony HDR-MV1", "score": 43, "image": "/images/WEBP/camcorder/sony-hdr-mv1.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features"], "propScore": [0.5549385110677071, 0.16060265787828965, 0.26567433281360997, 0.6, 0.8183050847457627, 0.3379224030037547]}, {"name": "Sony HDR-GW66VE", "score": 60, "image": "/images/WEBP/camcorder/sony-hdr-gw66ve.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features"], "propScore": [0.8044502044464773, 0.06212204187330935, 0.7463035270663095, 0.025, 0.75, 0.23936170212765956]}, {"name": "Sony HDR-PJ340", "score": 84, "image": "/images/WEBP/camcorder/sony-hdr-pj340.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features"], "propScore": [0.7419949213981445, 0.4598874766855474, 0.7594578366290071, 0.65, 1, 0.6798034895061951]}, {"name": "Sony HDR-PJ380", "score": 67, "image": "/images/WEBP/camcorder/sony-hdr-pj380.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features"], "propScore": [1, 0.42996946251821866, 0.5796330507273162, 0.425, 1, 0.29203843514070005]}, {"name": "Sony HDR-PJ200", "score": 57, "image": "/images/WEBP/camcorder/sony-hdr-pj200.left.medium2x.1576684641045.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features"], "propScore": [0.6877699380422037, 0.2883185843967834, 0.647247284268532, 0.45, 1, 0.18531228551818804]}, {"name": "Sony HDR-PJ275", "score": 52, "image": "/images/WEBP/camcorder/sony-hdr-pj275.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features"], "propScore": [0.5622005898686926, 0.0762945890823898, 0.7082653461194873, 0.025, 0.75, 0.5089585666293392]}, {"name": "Sony HDR-PJ810", "score": 92, "image": "/images/WEBP/camcorder/sony-hdr-pj810.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features"], "propScore": [0.831846104280343, 0.5876034032040413, 0.8381302628702286, 0.65, 0.8111864406779661, 0.790665751544269]}, {"name": "Sony HDR-PJ650V", "score": 89, "image": "/images/WEBP/camcorder/sony-hdr-pj650v.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features"], "propScore": [0.8488312576556222, 0.5876034032040413, 0.754461146147847, 0.75, 0.8094915254237287, 0.6983729662077597]}, {"name": "Sony HDR-TD10", "score": 82, "image": "/images/WEBP/camcorder/sony-hdr-td10.right.medium2x.1576684641045.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features"], "propScore": [0.9030483972030925, 0.6888385939128565, 0.861664507131899, 0.75, 1, 0.38297872340425526]}, {"name": "Sony HDR-PJ540", "score": 85, "image": "/images/WEBP/camcorder/sony-hdr-pj540.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features"], "propScore": [0.8437236163709474, 0.5876034032040413, 0.6930777051295398, 0.65, 0.8111864406779661, 0.6898818769642018]}, {"name": "Sony HVR-Z1 E", "score": 38, "image": "/images/WEBP/camcorder/sony-hvr-z1-e.back.medium2x.1576684641045.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features"], "propScore": [0.34370092934866625, 0.15037029919855993, 0.4389661408708178, 0.75, 0.8508474576271187, 0.11968085106382978]}, {"name": "Sony HDR-TD30", "score": 87, "image": "/images/WEBP/camcorder/sony-hdr-td30.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features"], "propScore": [0.9688422375534196, 0.6729547318395337, 0.8579699425633405, 1, 0.8111864406779661, 0.35904255319148937]}, {"name": "Sony HVR-Z5", "score": 30, "image": "/images/WEBP/camcorder/sony-hvr-z5.left.medium2x.1576684641045.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features"], "propScore": [0.5092739026129, 0.15329383024991128, 0.36213227975892553, 0.25, 0.6508474576271187, 0.23936170212765956]}, {"name": "Sony HDR-TD20VE", "score": 70, "image": "/images/WEBP/camcorder/sony-hdr-td20ve.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features"], "propScore": [0.964916805551599, 0.40457313984742305, 0.586033555169563, 0.65, 0.6461016949152543, 0.38297872340425526]}, {"name": "Sony NEX-VG20E", "score": 47, "image": "/images/WEBP/camcorder/sony-nex-vg20e.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features"], "propScore": [0.813942206804256, 0.2610613340471434, 0.45595249642753866, 0.825, 0.8461016949152542, 0.2979530865194396]}, {"name": "Sony NEX-VG20EH", "score": 54, "image": "/images/WEBP/camcorder/sony-nex-vg20eh.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features"], "propScore": [0.8686799219831446, 0.2610613340471434, 0.5368317763054962, 0.85, 0.6461016949152543, 0.2979530865194396]}, {"name": "Sony HVRZ7U", "score": 39, "image": "/images/WEBP/camcorder/sony-hvrz7u.left.medium2x.1576684641045.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features"], "propScore": [0.7074477478851787, 0.261334231326029, 0.37422010376780307, 0.625, 0.6508474576271187, 0.23936170212765956]}, {"name": "Sony HXRNX70U", "score": 58, "image": "/images/WEBP/camcorder/sony-hxrnx70u.left.medium2x.1576684641045.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features"], "propScore": [0.7875465275339321, 0.14426129868407644, 0.572294918549356, 0.85, 0.75, 0.4055068836045056]}, {"name": "Sony PMW-100 XDCAM HD422", "score": 39, "image": "/images/WEBP/camcorder/sony-pmw-100-xdcam-hd422.left.medium2x.1576684641045.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features"], "propScore": [0.4186763041011237, 0.1502650388195612, 0.43158571650237504, 0.45, 1, 0.2979530865194396]}, {"name": "Sony NEX-VG30H", "score": 61, "image": "/images/WEBP/camcorder/sony-nex-vg30h.side.medium2x.1576684641045.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features"], "propScore": [0.5842053207113784, 0.6207768064717091, 0.7244097458302351, 0.7, 1, 0.18531228551818804]}, {"name": "Sony NEX-VG900E", "score": 53, "image": "/images/WEBP/camcorder/sony-nex-vg900e.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features"], "propScore": [0.8229771122798113, 0.14426129868407644, 0.7199645893472962, 0.425, 1, 0.2979530865194396]}, {"name": "Sony NEXFS100UK", "score": 45, "image": "/images/WEBP/camcorder/sony-nexfs100uk.left.medium2x.1576684641045.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features"], "propScore": [0.7350674045790504, 0.26215292316268607, 0.3764033908917842, 1, 0.7796610169491526, 0.23936170212765956]}, {"name": "Toshiba Camileo X400", "score": 50, "image": "/images/WEBP/camcorder/toshiba-camileo-x400.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features"], "propScore": [0.8681253091281016, 0.16060265787828965, 0.26829608677300715, 0.45, 1, 0.2253717146433041]}, {"name": "Sony XDCAM PMW-F3K", "score": 40, "image": "/images/WEBP/camcorder/sony-xdcam-pmw-f3k.right.medium2x.1576684641045.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features"], "propScore": [0.5160923376401729, 0.281009756768405, 0.31200906976043863, 0.65, 0.7050847457627119, 0.2979530865194396]}, {"name": "Sony PMW-F55 CineAlta", "score": 49, "image": "/images/WEBP/camcorder/sony-pmw-f55-cinealta.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features"], "propScore": [0.4596931854840356, 0.6266114446181219, 0.3524907416181824, 0.2, 1, 0.23936170212765956]}, {"name": "Sony PMWEX1R XDCAM EX", "score": 31, "image": "/images/WEBP/camcorder/sony-pmwex1r-xdcam-ex.left.medium2x.1576684641045.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features"], "propScore": [0.5062986399968082, 0.16060265787828965, 0.3841515217276046, 0.25, 0.75, 0.23936170212765956]}, {"name": "Z-Cam E2-M4", "score": 65, "image": "/images/WEBP/camcorder/z-cam-e2-m4.front.medium2x.1591211179630.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features", "Miscellaneous"], "propScore": [0.5315147467086719, 0.6361238640535654, 0.4416027842375199, 0.75, 0.75, 0.5284831846259437]}, {"name": "Z CAM E1", "score": 60, "image": "/images/WEBP/camcorder/z-cam-e1.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Videography", "Optics", "Audio", "Battery", "Features"], "propScore": [0.688782804439053, 0.45172317849866844, 0.32413012463512014, 0.45, 0.6440677966101696, 0.6005490734385724]}]}
data/camera-lens.json ADDED
The diff for this file is too large to render. See raw diff
 
data/camera.json ADDED
The diff for this file is too large to render. See raw diff
 
data/car.json ADDED
The diff for this file is too large to render. See raw diff
 
data/city.json ADDED
The diff for this file is too large to render. See raw diff
 
data/coffee-machine-commercial.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"data": [{"name": "Dalla Corte DC Pro 2 Group", "score": 37, "image": "/images/WEBP/coffee-machine-commercial/dalla-corte-dc-pro-2-group.front.medium2x.1591876000726.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.6418771965436917, 0.6153846153846153, 0.5829493087557603, 0, 0.2285714285714286]}, {"name": "Dalla Corte Evolution 2 Group", "score": 44, "image": "/images/WEBP/coffee-machine-commercial/dalla-corte-evolution-2-group.front.medium2x.1591876000726.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.6356409948808043, 0.7307692307692306, 0.5829493087557603, 0.25, 0.4571428571428572]}, {"name": "Dalla Corte DC Pro 3 Group", "score": 39, "image": "/images/WEBP/coffee-machine-commercial/dalla-corte-dc-pro-3-group.front.medium2x.1591876000726.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.5507489164432637, 0.6538461538461536, 0.6463133640552995, 0, 0.2285714285714286]}, {"name": "Dalla Corte Evolution 2 Group High", "score": 65, "image": "/images/WEBP/coffee-machine-commercial/dalla-corte-evolution-2-group-high.front.medium2x.1591876000726.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.6004195961555444, 0.846153846153846, 0.5829493087557603, 0.25, 0.8571428571428571]}, {"name": "Dalla Corte Evolution 3 Group", "score": 46, "image": "/images/WEBP/coffee-machine-commercial/dalla-corte-evolution-3-group.front.medium2x.1591876000726.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.53524476801502, 0.7692307692307692, 0.6463133640552995, 0.25, 0.4571428571428572]}, {"name": "La Marzocco FB/80 2 Group", "score": 74, "image": "/images/WEBP/coffee-machine-commercial/la-marzocco-fb-80-2-group.front.medium2x.1591876000726.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.7621824187772585, 0.7307692307692307, 0.7857142857142857, 0.25, 0.6857142857142857]}, {"name": "Dalla Corte Evolution 3 Group High", "score": 53, "image": "/images/WEBP/coffee-machine-commercial/dalla-corte-evolution-3-group-high.front.medium2x.1591876000726.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.5029874646749946, 0.8846153846153845, 0.6463133640552995, 0.25, 0.4571428571428572]}, {"name": "Dalla Corte Super Mini", "score": 47, "image": "/images/WEBP/coffee-machine-commercial/dalla-corte-super-mini.front.medium2x.1591876000726.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.8230680304962303, 0.5769230769230768, 0.7868663594470046, 0.25, 0.7142857142857143]}, {"name": "La Marzocco FB/80 3 Group", "score": 75, "image": "/images/WEBP/coffee-machine-commercial/la-marzocco-fb-80-3-group.front.medium2x.1591876000726.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.6968681618946775, 0.769230769230769, 0.7857142857142857, 0.25, 0.6857142857142857]}, {"name": "La Marzocco GB/5 2 Group", "score": 56, "image": "/images/WEBP/coffee-machine-commercial/la-marzocco-gb-5-2-group.front.medium2x.1591876000726.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.6995884996458093, 0.7307692307692306, 0.5357142857142857, 0, 0.4571428571428572]}, {"name": "La Marzocco Linea Classic 3 Group", "score": 51, "image": "/images/WEBP/coffee-machine-commercial/la-marzocco-linea-classic-3-group.front.medium2x.1591876000726.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.6456825958539373, 0.6538461538461536, 0.804147465437788, 0, 0.37142857142857144]}, {"name": "La Marzocco Linea Classic 1 Group", "score": 35, "image": "/images/WEBP/coffee-machine-commercial/la-marzocco-linea-classic-1-group.front.medium2x.1591876000726.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.8888887669011853, 0.4615384615384614, 0.7672811059907833, 0, 0.2285714285714286]}, {"name": "La Marzocco Linea PB 3 Group", "score": 81, "image": "/images/WEBP/coffee-machine-commercial/la-marzocco-linea-pb-3-group.front.medium2x.1591876000726.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.6669003925967999, 0.769230769230769, 0.804147465437788, 0.25, 0.6857142857142857]}, {"name": "La Marzocco Strada EP 3 Group", "score": 66, "image": "/images/WEBP/coffee-machine-commercial/la-marzocco-strada-ep-3-group.front.medium2x.1591876000726.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.8287992373212366, 0.8846153846153845, 0.7914746543778802, 0, 0.4571428571428572]}, {"name": "La Marzocco Linea PB 2 Group", "score": 80, "image": "/images/WEBP/coffee-machine-commercial/la-marzocco-linea-pb-2-group.front.medium2x.1591876000726.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.7504632554400196, 0.7307692307692307, 0.7857142857142857, 0.25, 0.6857142857142857]}, {"name": "La Marzocco Strada MP 3 Group", "score": 79, "image": "/images/WEBP/coffee-machine-commercial/la-marzocco-strada-mp-3-group.front.medium2x.1591876000726.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.8414768868711562, 0.8846153846153845, 0.7764976958525346, 0.25, 0.6857142857142857]}, {"name": "Nuova Simonelli Adonis 3 Group", "score": 69, "image": "/images/WEBP/coffee-machine-commercial/nuova-simonelli-adonis-3-group.front.medium2x.1591876000726.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.5945601662734623, 0.7692307692307692, 0.6923963133640552, 0.5, 0.5142857142857143]}, {"name": "Nuova Simonelli Appia Compact 110V 2 Group", "score": 64, "image": "/images/WEBP/coffee-machine-commercial/nuova-simonelli-appia-compact-110v-2-group.front.medium2x.1591876000726.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.7235562740264291, 0.846153846153846, 0.5829493087557603, 0.25, 0.37142857142857144]}, {"name": "Nuova Simonelli Appia 1 Group", "score": 43, "image": "/images/WEBP/coffee-machine-commercial/nuova-simonelli-appia-1-group.front.medium2x.1591876000726.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.7594223119912937, 0.5769230769230768, 0.5541474654377879, 0, 0.3]}, {"name": "Nuova Simonelli Appia Compact 220V 2 Group", "score": 65, "image": "/images/WEBP/coffee-machine-commercial/nuova-simonelli-appia-compact-220v-2-group.front.medium2x.1591876000726.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.734153996697065, 0.846153846153846, 0.5829493087557603, 0.25, 0.37142857142857144]}, {"name": "Nuova Simonelli Microbar", "score": 100, "image": "/images/WEBP/coffee-machine-commercial/nuova-simonelli-microbar.front.medium2x.1591876000726.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [1, 0.8615384615384614, 0.7626728110599077, 1, 1]}, {"name": "Nuova Simonelli Aurelia II 3 Group", "score": 91, "image": "/images/WEBP/coffee-machine-commercial/nuova-simonelli-aurelia-ii-3-group.front.medium2x.1591876000726.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.5083291781429333, 1, 0.9078341013824883, 0.7499999999999999, 0.7428571428571429]}, {"name": "Nuova Simonelli Aurelia II Volumetric 2 Group", "score": 52, "image": "/images/WEBP/coffee-machine-commercial/nuova-simonelli-aurelia-ii-volumetric-2-group.front.medium2x.1591876000726.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.5574968185569277, 0.846153846153846, 0.4078341013824885, 0, 0.5714285714285714]}, {"name": "Nuova Simonelli Aurelia II 2 Group", "score": 54, "image": "/images/WEBP/coffee-machine-commercial/nuova-simonelli-aurelia-ii-2-group.front.medium2x.1591876000726.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.542188694545345, 0.6153846153846153, 0.9078341013824883, 0.25, 0.4571428571428572]}, {"name": "Rancilio Classe 10 RE 2 Group", "score": 39, "image": "/images/WEBP/coffee-machine-commercial/rancilio-classe-10-re-2-group.front.medium2x.1591876000726.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.5885385740200064, 0.6153846153846152, 0.6232718894009217, 0.25, 0.4571428571428572]}, {"name": "Rancilio Classe 10 S 2 Group", "score": 38, "image": "/images/WEBP/coffee-machine-commercial/rancilio-classe-10-s-2-group.front.medium2x.1591876000726.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.5230463549917859, 0.6153846153846152, 0.6232718894009217, 0.25, 0.4571428571428572]}, {"name": "Nuova Simonelli Musica", "score": 39, "image": "/images/WEBP/coffee-machine-commercial/nuova-simonelli-musica.front.medium2x.1591876000726.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.9549985838678149, 0.34615384615384603, 0.7695852534562211, 0, 0.2714285714285714]}, {"name": "Rancilio Classe 10 RE 3 Group", "score": 41, "image": "/images/WEBP/coffee-machine-commercial/rancilio-classe-10-re-3-group.front.medium2x.1591876000726.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.4458359438660013, 0.6538461538461537, 0.6808755760368663, 0.25, 0.4571428571428572]}, {"name": "Rancilio Classe 10 USB 3 Group", "score": 59, "image": "/images/WEBP/coffee-machine-commercial/rancilio-classe-10-usb-3-group.front.medium2x.1591876000726.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.4458359438660013, 0.7692307692307692, 0.9308755760368662, 0.7499999999999999, 0.4857142857142857]}, {"name": "Rancilio Classe 10 USB 2 Group", "score": 56, "image": "/images/WEBP/coffee-machine-commercial/rancilio-classe-10-usb-2-group.front.medium2x.1591876000726.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.5230463549917859, 0.7307692307692306, 0.8732718894009217, 0.7499999999999999, 0.4857142857142857]}, {"name": "Rancilio Classe 10 USB 4 Group", "score": 61, "image": "/images/WEBP/coffee-machine-commercial/rancilio-classe-10-usb-4-group.front.medium2x.1591876000726.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.5117322331967955, 0.8076923076923075, 1, 0.7499999999999999, 0.4857142857142857]}, {"name": "Rancilio Classe 10 S 3 Group", "score": 41, "image": "/images/WEBP/coffee-machine-commercial/rancilio-classe-10-s-3-group.front.medium2x.1591876000726.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.4458359438660013, 0.6538461538461537, 0.6808755760368663, 0.25, 0.4571428571428572]}, {"name": "Rancilio Classe 7 E Tall 2 Group", "score": 54, "image": "/images/WEBP/coffee-machine-commercial/rancilio-classe-7-e-tall-2-group.front.medium2x.1591876000726.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.63209066072499, 0.6153846153846152, 0.8732718894009217, 0, 0.5714285714285714]}, {"name": "Rancilio Classe 7 E 2 Group", "score": 54, "image": "/images/WEBP/coffee-machine-commercial/rancilio-classe-7-e-2-group.front.medium2x.1591876000726.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.6611104431438379, 0.3846153846153846, 0.8732718894009217, 0.25, 0.5714285714285714]}, {"name": "Rancilio Classe 7 E Tall 3 Group", "score": 61, "image": "/images/WEBP/coffee-machine-commercial/rancilio-classe-7-e-tall-3-group.front.medium2x.1591876000726.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.5664952510924595, 0.6538461538461537, 0.9308755760368662, 0, 0.6285714285714287]}, {"name": "Rancilio Classe 7 E 3 Group", "score": 43, "image": "/images/WEBP/coffee-machine-commercial/rancilio-classe-7-e-3-group.front.medium2x.1591876000726.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.5664952510924595, 0.5384615384615383, 0.9308755760368662, 0, 0.4571428571428572]}, {"name": "Rancilio Classe 7 Leva 2 Group", "score": 28, "image": "/images/WEBP/coffee-machine-commercial/rancilio-classe-7-leva-2-group.front.medium2x.1591876000726.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.6354682249818904, 0.5, 0.6232718894009217, 0, 0]}, {"name": "Rancilio Classe 7 Leva 3 Group", "score": 31, "image": "/images/WEBP/coffee-machine-commercial/rancilio-classe-7-leva-3-group.front.medium2x.1591876000726.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.5492363977694115, 0.5384615384615383, 0.6808755760368663, 0, 0]}, {"name": "Rancilio Classe 7 Leva 4 Group", "score": 33, "image": "/images/WEBP/coffee-machine-commercial/rancilio-classe-7-leva-4-group.front.medium2x.1591876000726.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.6090399509065815, 0.5769230769230768, 0.7499999999999999, 0, 0]}, {"name": "Rancilio Classe 7 S 2 Group", "score": 35, "image": "/images/WEBP/coffee-machine-commercial/rancilio-classe-7-s-2-group.front.medium2x.1591876000726.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.6319903785361674, 0.4970414201183431, 0.6232718894009217, 0.25, 0.4571428571428572]}, {"name": "Rancilio Classe 7 S 3 Group", "score": 41, "image": "/images/WEBP/coffee-machine-commercial/rancilio-classe-7-s-3-group.front.medium2x.1591876000726.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.5664952510924595, 0.5384615384615383, 0.6808755760368663, 0.25, 0.4571428571428572]}, {"name": "Rancilio Classe 9 USB 3 Group", "score": 58, "image": "/images/WEBP/coffee-machine-commercial/rancilio-classe-9-usb-3-group.front.medium2x.1591876000726.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.47232732280347595, 0.8846153846153845, 0.6808755760368663, 0.7499999999999999, 0.4857142857142857]}, {"name": "Rancilio Classe 9 S 4 Group", "score": 59, "image": "/images/WEBP/coffee-machine-commercial/rancilio-classe-9-s-4-group.front.medium2x.1591876000726.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.3878453193272715, 0.8076923076923075, 0.7499999999999999, 0.7499999999999999, 0.5714285714285714]}, {"name": "Rancilio Classe 9 S 3 Group", "score": 55, "image": "/images/WEBP/coffee-machine-commercial/rancilio-classe-9-s-3-group.front.medium2x.1591876000726.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.5313679157118835, 0.7692307692307692, 0.6808755760368663, 0.7499999999999999, 0.4571428571428572]}, {"name": "Rancilio Classe 9 USB Tall 2 Group", "score": 65, "image": "/images/WEBP/coffee-machine-commercial/rancilio-classe-9-usb-tall-2-group.front.medium2x.1591876000726.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.6684730603846587, 0.846153846153846, 0.8732718894009217, 0.25, 0.5714285714285714]}, {"name": "Rancilio Classe 9 USB Tall 3 Group", "score": 68, "image": "/images/WEBP/coffee-machine-commercial/rancilio-classe-9-usb-tall-3-group.front.medium2x.1591876000726.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.47232732280347595, 0.8846153846153845, 0.9308755760368662, 0.5, 0.6285714285714287]}, {"name": "Rancilio Classe 9 USB Tall 4 Group", "score": 76, "image": "/images/WEBP/coffee-machine-commercial/rancilio-classe-9-usb-tall-4-group.front.medium2x.1591876000726.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.4364374088974278, 0.9230769230769228, 1, 0.5, 0.6857142857142857]}, {"name": "Rancilio Classe 9 USB 4 Group", "score": 61, "image": "/images/WEBP/coffee-machine-commercial/rancilio-classe-9-usb-4-group.front.medium2x.1591876000726.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.3878454912963525, 0.9230769230769228, 0.7499999999999999, 0.7499999999999999, 0.4857142857142857]}, {"name": "Rancilio Epoca S 2 Group", "score": 34, "image": "/images/WEBP/coffee-machine-commercial/rancilio-epoca-s-2-group.front.medium2x.1591876000726.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.6174331814717866, 0.5, 0.6232718894009217, 0, 0.4571428571428572]}, {"name": "Rancilio Epoca E 2 Group", "score": 39, "image": "/images/WEBP/coffee-machine-commercial/rancilio-epoca-e-2-group.front.medium2x.1591876000726.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.6147680480190205, 0.5, 0.6232718894009217, 0, 0.34285714285714286]}, {"name": "Wega Atlas EVD 3 Group", "score": 59, "image": "/images/WEBP/coffee-machine-commercial/wega-atlas-evd-3-group.front.medium2x.1591876000726.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.4658044263084366, 0.8846153846153845, 0.6923963133640552, 0, 0.6285714285714287]}, {"name": "Rancilio Silvia LE", "score": 32, "image": "/images/WEBP/coffee-machine-commercial/rancilio-silvia-le.front.medium2x.1591876000726.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.980220826099382, 0.34615384615384603, 0.5, 0.25, 0.028571428571428574]}, {"name": "Wega Vela Vintage 2 Group", "score": 47, "image": "/images/WEBP/coffee-machine-commercial/wega-vela-vintage-2-group.front.medium2x.1591876000726.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.4934236663967301, 0.846153846153846, 0.6347926267281104, 0, 0.31428571428571433]}]}
data/coffee-machine-super-automatic.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"data": [{"name": "Bosch Tassimo Fidelia Plus T65", "score": 35, "image": "/images/WEBP/coffee-machine-super-automatic/bosch-tassimo-fidelia-plus-t65.front.medium2x.1591876514159.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.939071965684737, 0.30502730182639803, 0.6562500000000001, 0.19999999999999998, 0.4411764705882353]}, {"name": "Bosch Tassimo T47", "score": 20, "image": "/images/WEBP/coffee-machine-super-automatic/bosch-tassimo-t47.front.medium2x.1591876514159.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.747387755834467, 0, 0.43749999999999994, 0, 0.39215686274509803]}, {"name": "Bosch Tassimo Joy", "score": 36, "image": "/images/WEBP/coffee-machine-super-automatic/bosch-tassimo-joy.front.medium2x.1591876514159.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.996640238922151, 0.13864877355745364, 0.4453125, 0.6, 0.39215686274509803]}, {"name": "Bosch Tassimo Amia T20", "score": 27, "image": "/images/WEBP/coffee-machine-super-automatic/bosch-tassimo-amia-t20.front.medium2x.1591876514159.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.9552688676134877, 0.15251365091319902, 0.2578125, 0.19999999999999998, 0.4411764705882353]}, {"name": "Bosch Tassimo Vivy", "score": 26, "image": "/images/WEBP/coffee-machine-super-automatic/bosch-tassimo-vivy.front.medium2x.1591876514159.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.927470206880257, 0.13864877355745364, 0.3828125000000001, 0.39999999999999997, 0.39215686274509803]}, {"name": "DeLonghi Caffe Corso ESAM 2600", "score": 67, "image": "/images/WEBP/coffee-machine-super-automatic/delonghi-caffe-corso-esam-2600.front.medium2x.1591876514159.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.7264259345330876, 0.484372057992845, 0.46875000000000006, 0.7999999999999999, 0.3676470588235294]}, {"name": "DeLonghi CitiZ Update", "score": 26, "image": "/images/WEBP/coffee-machine-super-automatic/delonghi-citiz-update.front.medium2x.1591876514159.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.9479111562909351, 0.21490559901405315, 0.40625000000000006, 0.19999999999999998, 0.2184873949579832]}, {"name": "DeLonghi CitiZ & Milk", "score": 27, "image": "/images/WEBP/coffee-machine-super-automatic/delonghi-citiz-milk.front.medium2x.1591876514159.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.8955728119791074, 0.21490559901405315, 0.21875000000000003, 0, 0.3081232492997199]}, {"name": "DeLonghi Eletta Plus ECAM 45.326", "score": 80, "image": "/images/WEBP/coffee-machine-super-automatic/delonghi-eletta-plus-ecam-45-326.front.medium2x.1591876514159.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.7617071766420238, 0.9033138768593486, 0.6640625, 0.6, 0.5228758169934641]}, {"name": "DeLonghi ECAM 23.420", "score": 83, "image": "/images/WEBP/coffee-machine-super-automatic/delonghi-ecam-23-420.front.medium2x.1591876514159.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.8144183624111416, 0.7479758990773865, 0.84375, 0.7999999999999999, 0.7189542483660131]}, {"name": "DeLonghi ECAM 23.210", "score": 83, "image": "/images/WEBP/coffee-machine-super-automatic/delonghi-ecam-23-210.front.medium2x.1591876514159.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.8144183624111416, 0.620881189983054, 0.6562500000000001, 0.7999999999999999, 0.7189542483660131]}, {"name": "DeLonghi Eletta Cappuccino TOP ECAM 45.366", "score": 79, "image": "/images/WEBP/coffee-machine-super-automatic/delonghi-eletta-cappuccino-top-ecam-45-366.front.medium2x.1591876514159.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.6833963066692351, 0.522029749576351, 0.675, 1, 0.6209150326797386]}, {"name": "DeLonghi Lattissima", "score": 32, "image": "/images/WEBP/coffee-machine-super-automatic/delonghi-lattissima.front.medium2x.1591876514159.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.9605365232075344, 0.20797316033618046, 0.39843750000000006, 0.19999999999999998, 0.4773109243697478]}, {"name": "DeLonghi Essenza", "score": 21, "image": "/images/WEBP/coffee-machine-super-automatic/delonghi-essenza.front.medium2x.1591876514159.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.9805742599762844, 0.09705414149021754, 0.21875000000000003, 0, 0.11204481792717086]}, {"name": "DeLonghi Maestria", "score": 30, "image": "/images/WEBP/coffee-machine-super-automatic/delonghi-maestria.front.medium2x.1591876514159.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.9001828808722914, 0.3743516886051249, 0.43749999999999994, 0.19999999999999998, 0.11204481792717086]}, {"name": "DeLonghi Magnifica ESAM 3200", "score": 80, "image": "/images/WEBP/coffee-machine-super-automatic/delonghi-magnifica-esam-3200.front.medium2x.1591876514159.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.80079889867819, 0.73856147618151, 0.6562500000000001, 0.7999999999999999, 0.32679738562091504]}, {"name": "DeLonghi Magnifica ESAM 4000", "score": 69, "image": "/images/WEBP/coffee-machine-super-automatic/delonghi-magnifica-esam-4000.front.medium2x.1591876514159.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.6816274750282302, 0.484372057992845, 0.46875000000000006, 0.7999999999999999, 0.42483660130718953]}, {"name": "DeLonghi Magnifica ESAM 3500", "score": 81, "image": "/images/WEBP/coffee-machine-super-automatic/delonghi-magnifica-esam-3500.front.medium2x.1591876514159.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.8971240734582295, 0.73856147618151, 0.46875000000000006, 0.7999999999999999, 0.6209150326797386]}, {"name": "DeLonghi Magnifica S ECAM 21.117", "score": 76, "image": "/images/WEBP/coffee-machine-super-automatic/delonghi-magnifica-s-ecam-21-117.front.medium2x.1591876514159.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.7347924987178192, 0.620881189983054, 0.46875000000000006, 0.7999999999999999, 0.6535947712418301]}, {"name": "DeLonghi Magnifica ESAM 3600", "score": 97, "image": "/images/WEBP/coffee-machine-super-automatic/delonghi-magnifica-esam-3600.front.medium2x.1591876514159.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.8031690965741348, 0.8656561852758424, 0.6562500000000001, 0.7999999999999999, 0.9150326797385621]}, {"name": "DeLonghi Magnifica S ECAM 22.110", "score": 87, "image": "/images/WEBP/coffee-machine-super-automatic/delonghi-magnifica-s-ecam-22-110.front.medium2x.1591876514159.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.8029520172943982, 0.73856147618151, 0.6562500000000001, 0.7999999999999999, 0.7189542483660131]}, {"name": "DeLonghi Magnifica S ECAM 22.320", "score": 72, "image": "/images/WEBP/coffee-machine-super-automatic/delonghi-magnifica-s-ecam-22-320.front.medium2x.1591876514159.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.7347929388876462, 0.620881189983054, 0.6562500000000001, 0.7999999999999999, 0.6535947712418301]}, {"name": "DeLonghi Magnifica S ECAM 22.360", "score": 74, "image": "/images/WEBP/coffee-machine-super-automatic/delonghi-magnifica-s-ecam-22-360.front.medium2x.1591876514159.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.7347929388876462, 0.4937864808887215, 0.46875000000000006, 0.7999999999999999, 0.8496732026143791]}, {"name": "DeLonghi Perfecta ESAM 5500", "score": 87, "image": "/images/WEBP/coffee-machine-super-automatic/delonghi-perfecta-esam-5500.front.medium2x.1591876514159.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.7509478714718059, 0.7479758990773865, 0.46093750000000006, 1, 0.9150326797385621]}, {"name": "DeLonghi PrimaDonna Exclusive ESAM 6900.M", "score": 87, "image": "/images/WEBP/coffee-machine-super-automatic/delonghi-primadonna-exclusive-esam-6900-m.front.medium2x.1591876514159.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.6546997672276028, 0.7479758990773865, 1, 1, 0.5228758169934641]}, {"name": "DeLonghi PrimaDonna ESAM 6620", "score": 96, "image": "/images/WEBP/coffee-machine-super-automatic/delonghi-primadonna-esam-6620.front.medium2x.1591876514159.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.7502074665224082, 0.875070608171719, 0.46875000000000006, 1, 1]}, {"name": "DeLonghi Pixie", "score": 19, "image": "/images/WEBP/coffee-machine-super-automatic/delonghi-pixie.front.medium2x.1591876514159.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.9966862584032082, 0.07625682545659951, 0.3828125000000001, 0.19999999999999998, 0.11204481792717086]}, {"name": "DeLonghi Perfecta ESAM 5600", "score": 69, "image": "/images/WEBP/coffee-machine-super-automatic/delonghi-perfecta-esam-5600.front.medium2x.1591876514159.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.6690841271261706, 0.7479758990773865, 0.46093750000000006, 0.7999999999999999, 0.3676470588235294]}, {"name": "DeLonghi U", "score": 21, "image": "/images/WEBP/coffee-machine-super-automatic/delonghi-u.front.medium2x.1591876514159.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.9704241722934901, 0.2287704763697985, 0.39062500000000006, 0.19999999999999998, 0.11204481792717086]}, {"name": "DeLonghi PrimaDonna S De Luxe ECAM 26.455", "score": 83, "image": "/images/WEBP/coffee-machine-super-automatic/delonghi-primadonna-s-de-luxe-ecam-26-455.front.medium2x.1591876514159.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.71860542477024, 0.7479758990773865, 0.6562500000000001, 0.7999999999999999, 0.9150326797385621]}, {"name": "DeLonghi PrimaDonna XS De Luxe ETAM 36.365", "score": 96, "image": "/images/WEBP/coffee-machine-super-automatic/delonghi-primadonna-xs-de-luxe-etam-36-365.front.medium2x.1591876514159.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.8117151845176258, 0.8562417623799661, 0.6171875000000001, 1, 0.9150326797385621]}, {"name": "DeLonghi PrimaDonna S De Luxe ECAM 28.465", "score": 100, "image": "/images/WEBP/coffee-machine-super-automatic/delonghi-primadonna-s-de-luxe-ecam-28-465.front.medium2x.1591876514159.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.7881145712775746, 0.875070608171719, 0.671875, 1, 0.9150326797385621]}, {"name": "Gaggia Accademia", "score": 91, "image": "/images/WEBP/coffee-machine-super-automatic/gaggia-accademia.front.medium2x.1591876514159.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.728351662927565, 0.9377953545997859, 0.6406250000000001, 0.6, 0.847058823529412]}, {"name": "Gaggia Brera", "score": 53, "image": "/images/WEBP/coffee-machine-super-automatic/gaggia-brera.front.medium2x.1591876514159.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.7080572413707054, 0.6808479368542512, 0.23437500000000003, 0.39999999999999997, 0.47058823529411764]}, {"name": "Gaggia Platinum", "score": 68, "image": "/images/WEBP/coffee-machine-super-automatic/gaggia-platinum.front.medium2x.1591876514159.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.7276828977320915, 1, 0.6484375000000001, 0.39999999999999997, 0.39215686274509803]}, {"name": "Gaggia Titanium", "score": 80, "image": "/images/WEBP/coffee-machine-super-automatic/gaggia-titanium.front.medium2x.1591876514159.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.7656375265767104, 0.706923993347778, 0.6953124999999999, 0.6, 0.7843137254901961]}, {"name": "Jura ENA 8", "score": 66, "image": "/images/WEBP/coffee-machine-super-automatic/jura-ena-8.front.medium2x.1670324117721.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.7901789962361334, 0.4448314818301638, 0.41406250000000006, 0.7999999999999999, 0.9138655462184873]}, {"name": "Gaggia Unica", "score": 60, "image": "/images/WEBP/coffee-machine-super-automatic/gaggia-unica.front.medium2x.1591876514159.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.7392149286343425, 0.7033616953957967, 0.6484375000000001, 0.39999999999999997, 0.2222222222222222]}, {"name": "Jura Ena 9 One Touch", "score": 79, "image": "/images/WEBP/coffee-machine-super-automatic/jura-ena-9-one-touch.front.medium2x.1591876514159.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.7935458867895349, 0.6990209000188288, 0.6015625, 1, 0.6143790849673203]}, {"name": "Jura Ena 5", "score": 67, "image": "/images/WEBP/coffee-machine-super-automatic/jura-ena-5.front.medium2x.1591876514159.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.7940483095678283, 0.6990209000188288, 0.7890625000000001, 0.39999999999999997, 0.41830065359477125]}, {"name": "Jura Giga 5", "score": 84, "image": "/images/WEBP/coffee-machine-super-automatic/jura-giga-5.front.medium2x.1591876514159.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.5575388412038265, 0.5902843155714554, 0.7187500000000001, 1, 0.7058823529411765]}, {"name": "Jura Ena Micro 1", "score": 45, "image": "/images/WEBP/coffee-machine-super-automatic/jura-ena-micro-1.front.medium2x.1591876514159.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.6663338932262691, 0.6926661645641122, 0.41406250000000006, 0.19999999999999998, 0.22058823529411764]}, {"name": "Jura Ena Micro 9 One Touch", "score": 75, "image": "/images/WEBP/coffee-machine-super-automatic/jura-ena-micro-9-one-touch.front.medium2x.1591876514159.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.8175631494925465, 0.5655714554697797, 0.7890625000000001, 0.6, 0.6617647058823529]}, {"name": "Jura Impressa C5", "score": 55, "image": "/images/WEBP/coffee-machine-super-automatic/jura-impressa-c5.front.medium2x.1591876514159.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.7972430038278312, 0.4970815289022783, 0.8515624999999999, 0.39999999999999997, 0.2647058823529412]}, {"name": "Jura Impressa F50 Classic", "score": 85, "image": "/images/WEBP/coffee-machine-super-automatic/jura-impressa-f50-classic.front.medium2x.1591876514159.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.7871897957825873, 0.8783656561852756, 0.6640625, 0.7999999999999999, 0.5882352941176471]}, {"name": "Jura Impressa J9.3 One Touch TFT", "score": 86, "image": "/images/WEBP/coffee-machine-super-automatic/jura-impressa-j9-3-one-touch-tft.front.medium2x.1591876514159.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.7021099464877955, 0.6335906608924873, 0.6796875, 1, 0.7647058823529412]}, {"name": "Jura Impressa C9 One Touch", "score": 87, "image": "/images/WEBP/coffee-machine-super-automatic/jura-impressa-c9-one-touch.front.medium2x.1591876514159.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.7851556814627844, 0.6241762379966107, 0.6640625, 1, 0.6023529411764706]}, {"name": "Jura Impressa F7", "score": 64, "image": "/images/WEBP/coffee-machine-super-automatic/jura-impressa-f7.front.medium2x.1591876514159.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.7726427572940081, 0.5159103746940312, 0.46875000000000006, 0.7999999999999999, 0.4411764705882353]}, {"name": "Krups CitiZ", "score": 20, "image": "/images/WEBP/coffee-machine-super-automatic/krups-citiz.front.medium2x.1591876514159.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.9479111562909351, 0.07625682545659951, 0.40625000000000006, 0.19999999999999998, 0.11204481792717086]}, {"name": "Jura Impressa S9 One Touch", "score": 90, "image": "/images/WEBP/coffee-machine-super-automatic/jura-impressa-s9-one-touch.front.medium2x.1591876514159.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.7609446271348842, 0.6392393146300132, 0.7265625000000001, 1, 0.7189542483660132]}, {"name": "Jura Impressa Z7 One Touch", "score": 94, "image": "/images/WEBP/coffee-machine-super-automatic/jura-impressa-z7-one-touch.front.medium2x.1591876514159.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.7269145991417925, 0.7917529655432122, 0.734375, 1, 0.6274509803921569]}, {"name": "Krups Dolce Gusto Piccolo", "score": 12, "image": "/images/WEBP/coffee-machine-super-automatic/krups-dolce-gusto-piccolo.front.medium2x.1591876514159.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [1, 0.15251365091319902, 0.5625, 0, 0.09453781512605042]}, {"name": "Krups Gran Maestria", "score": 39, "image": "/images/WEBP/coffee-machine-super-automatic/krups-gran-maestria.front.medium2x.1591876514159.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.8305366464802907, 0.3743516886051249, 0.43749999999999994, 0.39999999999999997, 0.3081232492997199]}, {"name": "Krups Espresseria Automatic Premium EA8260", "score": 64, "image": "/images/WEBP/coffee-machine-super-automatic/krups-espresseria-automatic-premium-ea8260.front.medium2x.1591876514159.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.6417036763200004, 0.8797778196196573, 0.6562500000000001, 0.19999999999999998, 0.5042016806722689]}, {"name": "Krups Maestria", "score": 35, "image": "/images/WEBP/coffee-machine-super-automatic/krups-maestria.front.medium2x.1591876514159.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.9023082014490039, 0.3743516886051249, 0.43749999999999994, 0.39999999999999997, 0.11204481792717086]}, {"name": "Krups Essenza", "score": 19, "image": "/images/WEBP/coffee-machine-super-automatic/krups-essenza.front.medium2x.1591876514159.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.8263304670402476, 0.09705414149021754, 0.21875000000000003, 0.19999999999999998, 0.12605042016806722]}, {"name": "Krups Pixie", "score": 20, "image": "/images/WEBP/coffee-machine-super-automatic/krups-pixie.front.medium2x.1591876514159.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.9892585903708977, 0.21490559901405315, 0.39062500000000006, 0.19999999999999998, 0.11204481792717086]}, {"name": "Krups U", "score": 21, "image": "/images/WEBP/coffee-machine-super-automatic/krups-u.front.medium2x.1591876514159.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.8933020571790217, 0.22183803769192587, 0.20312500000000003, 0.39999999999999997, 0]}, {"name": "Krups Umilk", "score": 39, "image": "/images/WEBP/coffee-machine-super-automatic/krups-umilk.front.medium2x.1591876514159.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.913942211372935, 0.2287704763697985, 0.20312500000000003, 0.39999999999999997, 0.5672268907563025]}, {"name": "Krups Umat", "score": 21, "image": "/images/WEBP/coffee-machine-super-automatic/krups-umat.front.medium2x.1591876514159.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.9707233726987818, 0.2287704763697985, 0.39062500000000006, 0.19999999999999998, 0.11204481792717086]}, {"name": "Miele CVA6805", "score": 80, "image": "/images/WEBP/coffee-machine-super-automatic/miele-cva6805.front.medium2x.1591876514159.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.8379369242604358, 0.9284974581058181, 0.3203125, 0.6, 0.7563025210084033]}, {"name": "Miele CVA6401", "score": 58, "image": "/images/WEBP/coffee-machine-super-automatic/miele-cva6401.front.medium2x.1591876514159.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.6939025762833789, 0.7702709642080758, 0.3203125, 0.19999999999999998, 0.7563025210084033]}, {"name": "Miele CVA6800", "score": 74, "image": "/images/WEBP/coffee-machine-super-automatic/miele-cva6800.front.medium2x.1591876514159.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.4577992650219073, 0.9284974581058181, 0.3203125, 0.39999999999999997, 0.6617647058823529]}, {"name": "Miele CM5200", "score": 75, "image": "/images/WEBP/coffee-machine-super-automatic/miele-cm5200.front.medium2x.1591876514159.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.7429516993697265, 0.6018169836189041, 0.84375, 0.6, 0.6617647058823529]}, {"name": "Philips Saeco Exprelia Evo", "score": 84, "image": "/images/WEBP/coffee-machine-super-automatic/philips-saeco-exprelia-evo.front.medium2x.1591876514159.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.7004825531972357, 0.8654208247034457, 0.6406250000000001, 0.7999999999999999, 0.8235294117647058]}, {"name": "Nuova Simonelli Prontobar", "score": 49, "image": "/images/WEBP/coffee-machine-super-automatic/nuova-simonelli-prontobar.front.medium2x.1591876514159.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.49741698810918067, 0.6932438677872682, 0.22500000000000003, 0.39999999999999997, 0.8823529411764706]}, {"name": "Philips Saeco Intelia HD8751/47", "score": 61, "image": "/images/WEBP/coffee-machine-super-automatic/philips-saeco-intelia-hd8751-47.front.medium2x.1591876514159.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.7278099877917922, 0.7319713801543966, 0.8203125, 0.39999999999999997, 0.47058823529411764]}, {"name": "Philips Saeco Exprelia", "score": 84, "image": "/images/WEBP/coffee-machine-super-automatic/philips-saeco-exprelia.front.medium2x.1591876514159.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.7004825531972357, 0.7383261156091131, 0.6406250000000001, 0.7999999999999999, 0.8235294117647058]}, {"name": "Philips Saeco Minuto", "score": 50, "image": "/images/WEBP/coffee-machine-super-automatic/philips-saeco-minuto.front.medium2x.1591876514159.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.7621960547388762, 0.6272359254377706, 0.46875000000000006, 0.39999999999999997, 0.41830065359477125]}, {"name": "Philips Saeco Odea RI9753/47", "score": 58, "image": "/images/WEBP/coffee-machine-super-automatic/philips-saeco-odea-ri9753-47.front.medium2x.1591876514159.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.694737291645676, 0.7347957070231594, 0.6328125, 0.39999999999999997, 0.25]}, {"name": "Philips Saeco Intelia HD8753/87", "score": 61, "image": "/images/WEBP/coffee-machine-super-automatic/philips-saeco-intelia-hd8753-87.front.medium2x.1591876514159.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.7140970700801729, 0.604876671060064, 0.4453125, 0.6, 0.6911764705882353]}, {"name": "Philips Saeco Intuita", "score": 61, "image": "/images/WEBP/coffee-machine-super-automatic/philips-saeco-intuita.front.medium2x.1591876514159.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.7278088370210026, 0.7319713801543966, 0.4453125, 0.6, 0.6797385620915033]}, {"name": "Philips Saeco Odea RI9755/47", "score": 57, "image": "/images/WEBP/coffee-machine-super-automatic/philips-saeco-odea-ri9755-47.front.medium2x.1591876514159.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.694737291645676, 0.8959703124443623, 0.6328125, 0.39999999999999997, 0.2222222222222222]}, {"name": "Philips Saeco Syntia HD8837/47", "score": 74, "image": "/images/WEBP/coffee-machine-super-automatic/philips-saeco-syntia-hd8837-47.front.medium2x.1591876514159.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.8251905833316684, 0.7098474863490868, 0.984375, 0.6, 0.28758169934640526]}, {"name": "Philips Saeco Royal Gran Crema", "score": 100, "image": "/images/WEBP/coffee-machine-super-automatic/philips-saeco-royal-gran-crema.front.medium2x.1591876514159.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.6205955311942758, 0.9320278666917716, 0.8750000000000001, 0.7999999999999999, 0.9411764705882353]}, {"name": "Philips Saeco Odea RI9757/47", "score": 64, "image": "/images/WEBP/coffee-machine-super-automatic/philips-saeco-odea-ri9757-47.front.medium2x.1591876514159.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.6947361408748864, 0.7347957070231594, 0.4453125, 0.6, 0.47058823529411764]}, {"name": "Philips Saeco Vienna", "score": 66, "image": "/images/WEBP/coffee-machine-super-automatic/philips-saeco-vienna.front.medium2x.1591876514159.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.6782542770612251, 0.6441818866503484, 0.46093750000000006, 0.19999999999999998, 0.6617647058823529]}, {"name": "Philips Saeco Syntia HD8838/47", "score": 80, "image": "/images/WEBP/coffee-machine-super-automatic/philips-saeco-syntia-hd8838-47.front.medium2x.1591876514159.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.8251905833316684, 0.5827527772547543, 0.984375, 0.6, 0.6797385620915033]}, {"name": "Philips Saeco Xelsis Evo", "score": 70, "image": "/images/WEBP/coffee-machine-super-automatic/philips-saeco-xelsis-evo.front.medium2x.1591876514159.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.662604633821138, 0.7668047448691395, 0.26562500000000006, 0.6, 0.5228758169934641]}, {"name": "Philips Saeco Xelsis", "score": 91, "image": "/images/WEBP/coffee-machine-super-automatic/philips-saeco-xelsis.front.medium2x.1591876514159.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.6648655363234578, 0.7668047448691396, 0.4531250000000001, 1, 1]}, {"name": "Quick Mill Monza", "score": 59, "image": "/images/WEBP/coffee-machine-super-automatic/quick-mill-monza.front.medium2x.1591876514159.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.6209990862209934, 0.915081905479194, 0.75, 0.19999999999999998, 0.4411764705882353]}, {"name": "Quick Mill Monza Deluxe", "score": 69, "image": "/images/WEBP/coffee-machine-super-automatic/quick-mill-monza-deluxe.front.medium2x.1591876514159.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.6796313712227693, 0.915081905479194, 0.8035714285714286, 0.19999999999999998, 0.4411764705882353]}, {"name": "Pronto ME 712", "score": 86, "image": "/images/WEBP/coffee-machine-super-automatic/pronto-me-712.front.medium2x.1591876514159.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.5860923013294848, 0.7291898461169786, 0.671875, 0.7999999999999999, 0.8823529411764706]}, {"name": "Pronto ME 707", "score": 52, "image": "/images/WEBP/coffee-machine-super-automatic/pronto-me-707.front.medium2x.1591876514159.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.7197452410429087, 0.7086492870714297, 0.4531250000000001, 0.6, 0.39215686274509803]}]}
data/coffee-machine.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"data": [{"name": "Breville Barista Express", "score": 100, "image": "/images/WEBP/coffee-machine/breville-barista-express.front.medium2x.1591875883628.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.6161688272266407, 0.6885758998435055, 0.8044382801664355, 1, 0.6349206349206349]}, {"name": "Breville Dual Boiler", "score": 95, "image": "/images/WEBP/coffee-machine/breville-dual-boiler.front.medium2x.1591875883628.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.3891022408377389, 0.6704433460490226, 0.8054548606733073, 0.25, 1]}, {"name": "Breville Duo-Temp", "score": 48, "image": "/images/WEBP/coffee-machine/breville-duo-temp.front.medium2x.1591875883628.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.4085108630181689, 0.31780426146623336, 1, 0.5, 0.23809523809523808]}, {"name": "Breville Infuser", "score": 88, "image": "/images/WEBP/coffee-machine/breville-infuser.front.medium2x.1591875883628.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.7022399589393008, 0.4237390152883111, 0.7905686546463245, 1, 0.5238095238095238]}, {"name": "Capresso EC Pro", "score": 33, "image": "/images/WEBP/coffee-machine/capresso-ec-pro.front.medium2x.1591875883628.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.8353760215587882, 0.4237390152883111, 0.570735090152566, 0, 0]}, {"name": "Capresso EC50", "score": 16, "image": "/images/WEBP/coffee-machine/capresso-ec50.front.medium2x.1591875883628.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.877424309977306, 0.21186950764415555, 0.38834951456310685, 0, 0]}, {"name": "Capresso EC100", "score": 16, "image": "/images/WEBP/coffee-machine/capresso-ec100.front.medium2x.1591875883628.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.8376511280067301, 0.17214397496087638, 0.39667128987517336, 0, 0]}, {"name": "Capresso Caf\u00e9", "score": 24, "image": "/images/WEBP/coffee-machine/capresso-caf\u00e9.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.8305661940930957, 0.21186950764415555, 0.5825242718446602, 0.25, 0]}, {"name": "Expobar Office Control", "score": 77, "image": "/images/WEBP/coffee-machine/expobar-office-control.front.medium2x.1591875883628.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.4892626861565771, 0.7134217684931364, 0.7184229605346111, 0.25, 0.8095238095238094]}, {"name": "DeLonghi EC 820", "score": 37, "image": "/images/WEBP/coffee-machine/delonghi-ec-820.front.medium2x.1591875883628.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.8659443832310996, 0.21186950764415555, 0.3717059639389736, 0.5, 0.23809523809523808]}, {"name": "Delonghi EC 850.M", "score": 30, "image": "/images/WEBP/coffee-machine/delonghi-ec-850-m.front.medium2x.1591875883628.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.8198237601409851, 0.21186950764415555, 0.5533980582524272, 0.5, 0.11904761904761904]}, {"name": "DeLonghi EC 860", "score": 44, "image": "/images/WEBP/coffee-machine/delonghi-ec-860.front.medium2x.1591875883628.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.8873955556229656, 0.21186950764415555, 0.5533980582524272, 0.5, 0.33333333333333326]}, {"name": "Expobar Office Semi-Automatic", "score": 34, "image": "/images/WEBP/coffee-machine/expobar-office-semi-automatic.front.medium2x.1591875883628.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.46048416007779935, 0.31780426146623336, 0.7184229605346111, 0, 0.5952380952380952]}, {"name": "Gaggia Carezza", "score": 62, "image": "/images/WEBP/coffee-machine/gaggia-carezza.front.medium2x.1591875883628.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.9782317675473672, 0.31780426146623336, 0.7628294036061027, 0.25, 0.47619047619047616]}, {"name": "Gaggia Baby", "score": 56, "image": "/images/WEBP/coffee-machine/gaggia-baby.front.medium2x.1591875883628.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.9567513139785918, 0.31780426146623336, 0.5950069348127601, 0.25, 0.47619047619047616]}, {"name": "Expobar Office Leva", "score": 82, "image": "/images/WEBP/coffee-machine/expobar-office-leva.front.medium2x.1591875883628.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.47890080098535087, 0.7415432767545443, 0.7184229605346111, 0.25, 0.7142857142857142]}, {"name": "Gaggia New Espresso", "score": 32, "image": "/images/WEBP/coffee-machine/gaggia-new-espresso.front.medium2x.1591875883628.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.9622150080307817, 0.21186950764415555, 0.570735090152566, 0, 0]}, {"name": "Gaggia Classic", "score": 51, "image": "/images/WEBP/coffee-machine/gaggia-classic.front.medium2x.1591875883628.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.8995238919685864, 0.31780426146623336, 0.6359223300970874, 0.25, 0.2976190476190476]}, {"name": "Gaggia Gran Gaggia", "score": 25, "image": "/images/WEBP/coffee-machine/gaggia-gran-gaggia.front.medium2x.1591875883628.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [1, 0.21186950764415555, 0.5533980582524272, 0, 0]}, {"name": "Keurig K-Elite", "score": 38, "image": "/images/WEBP/coffee-machine/keurig-k-elite.front.medium2x.1591875883628.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.8737613445733745, 0.10593475382207777, 0.8190013869625521, 0.25, 0.23809523809523808]}, {"name": "Krups XP4600", "score": 28, "image": "/images/WEBP/coffee-machine/krups-xp4600.front.medium2x.1591875883628.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.948423951853832, 0.21186950764415555, 0.5450762829403606, 0, 0.047619047619047616]}, {"name": "Krups XP601", "score": 19, "image": "/images/WEBP/coffee-machine/krups-xp601.front.medium2x.1591875883628.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.9187269145716578, 0.21186950764415555, 0.5880721220527045, 0, 0]}, {"name": "Krups Espresso XP5280", "score": 24, "image": "/images/WEBP/coffee-machine/krups-espresso-xp5280.front.medium2x.1591875883628.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.9676895855103367, 0.21186950764415555, 0.3786407766990292, 0, 0]}, {"name": "Krups XP5240", "score": 51, "image": "/images/WEBP/coffee-machine/krups-xp5240.front.medium2x.1591875883628.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.8152540191899149, 0.21186950764415555, 0.3786407766990292, 1, 0.47619047619047616]}, {"name": "Rancilio Silvia V3", "score": 53, "image": "/images/WEBP/coffee-machine/rancilio-silvia-v3.front.medium2x.1591875883628.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.8432430647887713, 0.4417944942695889, 0.5599546084982978, 0.25, 0.23809523809523808]}, {"name": "La Spaziale S1 Vivaldi", "score": 60, "image": "/images/WEBP/coffee-machine/la-spaziale-s1-vivaldi.front.medium2x.1591875883628.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.5113394812291387, 0.4237390152883111, 0.5674928400309815, 0.25, 0.5238095238095238]}, {"name": "Quick Mill 02820", "score": 35, "image": "/images/WEBP/coffee-machine/quick-mill-02820.front.medium2x.1591875883628.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.8724512817769299, 0.21186950764415555, 0.7905686546463245, 0, 0]}, {"name": "La Marzocco GS3", "score": 59, "image": "/images/WEBP/coffee-machine/la-marzocco-gs3.front.medium2x.1591875883628.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.6249852372603915, 0.5296737691103889, 0.7639326692724752, 0.25, 0.7619047619047619]}, {"name": "Rocket Espresso Evoluzione V2", "score": 81, "image": "/images/WEBP/coffee-machine/rocket-espresso-evoluzione-v2.front.medium2x.1591875883628.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.40295225087721315, 1, 0.758495145631068, 0, 0.8928571428571428]}, {"name": "Rocket Espresso Plus V2", "score": 69, "image": "/images/WEBP/coffee-machine/rocket-espresso-plus-v2.front.medium2x.1591875883628.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.45313562648176486, 0.9534127843986999, 0.44053398058252424, 0, 0.47619047619047616]}, {"name": "Rancilio Silvia", "score": 25, "image": "/images/WEBP/coffee-machine/rancilio-silvia.front.medium2x.1591875883628.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.7868201534667282, 0.3934719427677174, 0.5599546084982978, 0, 0]}, {"name": "Rocket Espresso Professionale", "score": 80, "image": "/images/WEBP/coffee-machine/rocket-espresso-professionale.front.medium2x.1591875883628.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.3743088844579371, 0.9534127843986999, 0.5450762829403606, 0, 0.7142857142857142]}, {"name": "Saeco Via Venezia", "score": 20, "image": "/images/WEBP/coffee-machine/saeco-via-venezia.front.medium2x.1591875883628.webp", "propGroups": ["General info", "Components", "Water source", "Maintenance", "Features"], "propScore": [0.7807469267713305, 0.21186950764415555, 0.5449029126213593, 0, 0]}]}
data/country.json ADDED
The diff for this file is too large to render. See raw diff
 
data/cpu.json ADDED
The diff for this file is too large to render. See raw diff
 
data/dating-app.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"data": [{"name": "Blendr", "score": 76, "image": "/images/WEBP/dating-app/blendr.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Profile & Matching", "Notifications", "Messaging features", "Security", "Features"], "propScore": [0.9185498872544243, 0.6666666666666666, 1, 0.5, 0.33333333333333337, 0.5]}, {"name": "Are You Interested", "score": 55, "image": "/images/WEBP/dating-app/are-you-interested.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Profile & Matching", "Notifications", "Messaging features", "Security", "Features"], "propScore": [0.8251611863546328, 0.5555555555555556, 0.6666666666666666, 0.16666666666666666, 0, 0.5]}, {"name": "Badoo", "score": 64, "image": "/images/WEBP/dating-app/badoo.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Profile & Matching", "Notifications", "Messaging features", "Security", "Features"], "propScore": [0.9583584703559641, 0.22222222222222224, 0.6666666666666666, 0.16666666666666666, 0.33333333333333337, 0.5]}, {"name": "Avalable", "score": 47, "image": "/images/WEBP/dating-app/avalable.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Profile & Matching", "Notifications", "Messaging features", "Security", "Features"], "propScore": [0.7352931393175899, 0.5555555555555556, 0, 0.16666666666666666, 0, 1]}, {"name": "Coffee Meets Bagel", "score": 55, "image": "/images/WEBP/dating-app/coffee-meets-bagel.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Profile & Matching", "Notifications", "Messaging features", "Security", "Features"], "propScore": [0.8107937290715898, 0.6666666666666666, 0.3333333333333333, 0.5, 0, 0.25]}, {"name": "DateHookup", "score": 48, "image": "/images/WEBP/dating-app/datehookup.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Profile & Matching", "Notifications", "Messaging features", "Security", "Features"], "propScore": [0.5953236010989521, 0.5555555555555556, 0, 0.3333333333333333, 0.33333333333333337, 1]}, {"name": "Bumble", "score": 37, "image": "/images/WEBP/dating-app/bumble.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Profile & Matching", "Notifications", "Messaging features", "Security", "Features"], "propScore": [0.5923619425995111, 0.5555555555555556, 0, 0.16666666666666666, 0.6666666666666667, 0]}, {"name": "Charm", "score": 34, "image": "/images/WEBP/dating-app/charm.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Profile & Matching", "Notifications", "Messaging features", "Security", "Features"], "propScore": [0.48113506879095336, 0.4444444444444445, 0, 0.16666666666666666, 0.33333333333333337, 0.75]}, {"name": "Duego", "score": 48, "image": "/images/WEBP/dating-app/duego.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Profile & Matching", "Notifications", "Messaging features", "Security", "Features"], "propScore": [0.6185421547562465, 0.6666666666666666, 0, 0.6666666666666666, 0, 0.75]}, {"name": "eHarmony", "score": 22, "image": "/images/WEBP/dating-app/eharmony.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Profile & Matching", "Notifications", "Messaging features", "Security", "Features"], "propScore": [0.16764288111183043, 0.3333333333333333, 0, 0.16666666666666666, 0.33333333333333337, 0.25]}, {"name": "Dating DNA Free", "score": 52, "image": "/images/WEBP/dating-app/dating-dna-free.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Profile & Matching", "Notifications", "Messaging features", "Security", "Features"], "propScore": [0.4956564635612338, 0.7777777777777777, 0.3333333333333333, 0.3333333333333333, 0.33333333333333337, 0.5]}, {"name": "Down", "score": 79, "image": "/images/WEBP/dating-app/down.front.medium2x.1627986480448.webp", "propGroups": ["General info", "Profile & Matching", "Notifications", "Messaging features", "Security", "Features"], "propScore": [0.6784209414942157, 1, 1, 0.6666666666666666, 1, 0.375]}, {"name": "Hinge", "score": 46, "image": "/images/WEBP/dating-app/hinge.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Profile & Matching", "Notifications", "Messaging features", "Security", "Features"], "propScore": [0.9238468416723351, 0.5555555555555556, 0, 0, 0.6666666666666667, 0.25]}, {"name": "Grindr", "score": 20, "image": "/images/WEBP/dating-app/grindr.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Profile & Matching", "Notifications", "Messaging features", "Security", "Features"], "propScore": [0.33249171420513035, 0.3333333333333333, 0, 0, 0, 0.5]}, {"name": "Flirtomatic", "score": 19, "image": "/images/WEBP/dating-app/flirtomatic.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Profile & Matching", "Notifications", "Messaging features", "Security", "Features"], "propScore": [0.6255658586719149, 0.11111111111111112, 0, 0.16666666666666666, 0, 0.25]}, {"name": "FriendScout24", "score": 27, "image": "/images/WEBP/dating-app/friendscout24.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Profile & Matching", "Notifications", "Messaging features", "Security", "Features"], "propScore": [0.6686972005335359, 0.3333333333333333, 0, 0.3333333333333333, 0, 0.5]}, {"name": "Hot or Not", "score": 100, "image": "/images/WEBP/dating-app/hot-or-not.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Profile & Matching", "Notifications", "Messaging features", "Security", "Features"], "propScore": [0.8971744847502588, 0.888888888888889, 0.6666666666666666, 0.8333333333333334, 0.33333333333333337, 0.5]}, {"name": "iLove", "score": 70, "image": "/images/WEBP/dating-app/ilove.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Profile & Matching", "Notifications", "Messaging features", "Security", "Features"], "propScore": [0.9583314204969856, 0.6666666666666666, 1, 0.3333333333333333, 0, 0.5]}, {"name": "i-Pair", "score": 61, "image": "/images/WEBP/dating-app/i-pair.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Profile & Matching", "Notifications", "Messaging features", "Security", "Features"], "propScore": [0.6033515999595522, 0.5555555555555556, 0.3333333333333333, 1, 0.33333333333333337, 0.5]}, {"name": "HowAboutWe", "score": 45, "image": "/images/WEBP/dating-app/howaboutwe.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Profile & Matching", "Notifications", "Messaging features", "Security", "Features"], "propScore": [0.7841017331125983, 0.5555555555555556, 0, 0.5, 0.33333333333333337, 0.25]}, {"name": "Instamour", "score": 34, "image": "/images/WEBP/dating-app/instamour.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Profile & Matching", "Notifications", "Messaging features", "Security", "Features"], "propScore": [0.661071761184318, 0.22222222222222224, 0, 0.5, 0.33333333333333337, 0]}, {"name": "Mamba", "score": 43, "image": "/images/WEBP/dating-app/mamba.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Profile & Matching", "Notifications", "Messaging features", "Security", "Features"], "propScore": [0.7129271263164458, 0.22222222222222224, 0.3333333333333333, 0.16666666666666666, 0.33333333333333337, 0.5]}, {"name": "Lovoo", "score": 59, "image": "/images/WEBP/dating-app/lovoo.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Profile & Matching", "Notifications", "Messaging features", "Security", "Features"], "propScore": [1, 0.5555555555555556, 0, 0.5, 0, 1]}, {"name": "Let's Date", "score": 57, "image": "/images/WEBP/dating-app/let-s-date.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Profile & Matching", "Notifications", "Messaging features", "Security", "Features"], "propScore": [0.8218073473316166, 0.6666666666666666, 0, 0.5, 0.33333333333333337, 0.75]}, {"name": "Meet24", "score": 69, "image": "/images/WEBP/dating-app/meet24.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Profile & Matching", "Notifications", "Messaging features", "Security", "Features"], "propScore": [0.8917007174065651, 0.6666666666666666, 0, 1, 0, 0.5]}, {"name": "MiuMeet", "score": 73, "image": "/images/WEBP/dating-app/miumeet.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Profile & Matching", "Notifications", "Messaging features", "Security", "Features"], "propScore": [0.9252968446243661, 0.4444444444444445, 0.6666666666666666, 0.5, 0, 1]}, {"name": "Match.com", "score": 39, "image": "/images/WEBP/dating-app/match-com.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Profile & Matching", "Notifications", "Messaging features", "Security", "Features"], "propScore": [0.657532252998736, 0.11111111111111112, 0.3333333333333333, 0.3333333333333333, 0, 0.75]}, {"name": "MeetMe", "score": 26, "image": "/images/WEBP/dating-app/meetme.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Profile & Matching", "Notifications", "Messaging features", "Security", "Features"], "propScore": [0.7024418416414419, 0.3333333333333333, 0, 0.16666666666666666, 0, 0.25]}, {"name": "OkCupid", "score": 61, "image": "/images/WEBP/dating-app/okcupid.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Profile & Matching", "Notifications", "Messaging features", "Security", "Features"], "propScore": [0.8256411894757648, 0.5555555555555556, 0, 0.5, 0.33333333333333337, 0.5]}, {"name": "Moco", "score": 35, "image": "/images/WEBP/dating-app/moco.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Profile & Matching", "Notifications", "Messaging features", "Security", "Features"], "propScore": [0.6295192027176165, 0.22222222222222224, 0.3333333333333333, 0.6666666666666666, 0, 0.5]}, {"name": "Qeep", "score": 27, "image": "/images/WEBP/dating-app/qeep.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Profile & Matching", "Notifications", "Messaging features", "Security", "Features"], "propScore": [0.5449746941570082, 0, 0, 0.3333333333333333, 0, 0.75]}, {"name": "POF", "score": 64, "image": "/images/WEBP/dating-app/pof.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Profile & Matching", "Notifications", "Messaging features", "Security", "Features"], "propScore": [0.86224112206839, 0.5555555555555556, 0, 0.6666666666666666, 0.33333333333333337, 0.25]}, {"name": "Skout", "score": 62, "image": "/images/WEBP/dating-app/skout.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Profile & Matching", "Notifications", "Messaging features", "Security", "Features"], "propScore": [0.845274770152172, 0.5555555555555556, 0.3333333333333333, 0.5, 0.33333333333333337, 0.5]}, {"name": "Singles AroundMe", "score": 43, "image": "/images/WEBP/dating-app/singles-aroundme.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Profile & Matching", "Notifications", "Messaging features", "Security", "Features"], "propScore": [0.8300350228265294, 0.3333333333333333, 0.3333333333333333, 0.3333333333333333, 0.33333333333333337, 0.5]}, {"name": "Speed Date", "score": 73, "image": "/images/WEBP/dating-app/speed-date.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Profile & Matching", "Notifications", "Messaging features", "Security", "Features"], "propScore": [0.7451539923857906, 0.6666666666666666, 1, 0.5, 0.33333333333333337, 0.5]}, {"name": "SayHi!", "score": 29, "image": "/images/WEBP/dating-app/sayhi.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Profile & Matching", "Notifications", "Messaging features", "Security", "Features"], "propScore": [0.7616335541279852, 0.11111111111111112, 0, 0.3333333333333333, 0, 0.25]}, {"name": "Twine Canvas", "score": 96, "image": "/images/WEBP/dating-app/twine-canvas.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Profile & Matching", "Notifications", "Messaging features", "Security", "Features"], "propScore": [0.7855566596125543, 1, 1, 1, 0.33333333333333337, 0.5]}, {"name": "Tinder", "score": 73, "image": "/images/WEBP/dating-app/tinder.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Profile & Matching", "Notifications", "Messaging features", "Security", "Features"], "propScore": [0.8969114800113394, 0.5555555555555556, 0.6666666666666666, 0.8333333333333334, 0, 0.6923076923076924]}, {"name": "Tingle", "score": 34, "image": "/images/WEBP/dating-app/tingle.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Profile & Matching", "Notifications", "Messaging features", "Security", "Features"], "propScore": [0.5883576183678213, 0.4444444444444445, 0, 0.5, 0, 0.5]}, {"name": "Spring.me", "score": 45, "image": "/images/WEBP/dating-app/spring-me.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Profile & Matching", "Notifications", "Messaging features", "Security", "Features"], "propScore": [0.8227253250855098, 0.22222222222222224, 0.3333333333333333, 0, 0.33333333333333337, 0.75]}, {"name": "Zoosk", "score": 65, "image": "/images/WEBP/dating-app/zoosk.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Profile & Matching", "Notifications", "Messaging features", "Security", "Features"], "propScore": [0.7937873144307729, 0.6666666666666666, 0.3333333333333333, 0.3333333333333333, 0, 1]}, {"name": "Twoo", "score": 73, "image": "/images/WEBP/dating-app/twoo.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Profile & Matching", "Notifications", "Messaging features", "Security", "Features"], "propScore": [0.8154025418335721, 0.6666666666666666, 1, 0.3333333333333333, 0, 0.75]}, {"name": "Waplog", "score": 32, "image": "/images/WEBP/dating-app/waplog.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Profile & Matching", "Notifications", "Messaging features", "Security", "Features"], "propScore": [0.7728224888748522, 0.22222222222222224, 0.3333333333333333, 0.16666666666666666, 0, 0.25]}]}
data/dishwasher.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"data": [{"name": "Bosch SGV63E03UC", "score": 98, "image": "/images/WEBP/dishwasher/bosch-sgv63e03uc.front.medium2x.1591877157033.webp", "propGroups": ["General info", "Programs", "Dish load", "Efficiency", "Features", "Miscellaneous"], "propScore": [0.8709712601609533, 0.7061538461538461, 0.5131578947368421, 0.8096638655462185, 0.75]}, {"name": "Bloomberg DW 24100 W", "score": 58, "image": "/images/WEBP/dishwasher/bloomberg-dw-24100-w.front.medium2x.1591877157033.webp", "propGroups": ["General info", "Programs", "Dish load", "Efficiency", "Features"], "propScore": [0.4883895710192013, 0.3860805860805861, 0.5017543859649123, 0.67, 0.25]}, {"name": "Bosch SGE63E15UC", "score": 81, "image": "/images/WEBP/dishwasher/bosch-sge63e15uc.front.medium2x.1591877157033.webp", "propGroups": ["General info", "Programs", "Dish load", "Efficiency", "Features", "Miscellaneous"], "propScore": [0.750751473526533, 0.5676923076923077, 0.5131578947368421, 0.8721638655462185, 0.5]}, {"name": "Asko D5954 Outdoor", "score": 63, "image": "/images/WEBP/dishwasher/asko-d5954-outdoor.front.medium2x.1591877157033.webp", "propGroups": ["General info", "Programs", "Dish load", "Efficiency", "Features"], "propScore": [0.811529159275456, 0.8, 0.2631578947368421, 0.66, 0]}, {"name": "Bosch SHX3AR75UC", "score": 66, "image": "/images/WEBP/dishwasher/bosch-shx3ar75uc.front.medium2x.1591877157033.webp", "propGroups": ["General info", "Programs", "Dish load", "Efficiency", "Features"], "propScore": [0.5239518137851465, 0.2887912087912088, 0.3684210526315789, 0.647707343807088, 0.5]}, {"name": "Bosch SHP65T55UC", "score": 88, "image": "/images/WEBP/dishwasher/bosch-shp65t55uc.front.medium2x.1591877157033.webp", "propGroups": ["General info", "Programs", "Dish load", "Efficiency", "Features", "Miscellaneous"], "propScore": [0.6031338613447909, 0.5676923076923077, 0.7982456140350879, 0.6959018389964681, 0.75]}, {"name": "Bosch SHE9ER55UC", "score": 98, "image": "/images/WEBP/dishwasher/bosch-she9er55uc.front.medium2x.1591877157033.webp", "propGroups": ["General info", "Programs", "Dish load", "Efficiency", "Features", "Miscellaneous"], "propScore": [0.7757349774692097, 0.7061538461538461, 1, 0.9422222222222222, 0.5]}, {"name": "Bosch SHP53T55UC", "score": 72, "image": "/images/WEBP/dishwasher/bosch-shp53t55uc.front.medium2x.1591877157033.webp", "propGroups": ["General info", "Programs", "Dish load", "Efficiency", "Features", "Miscellaneous"], "propScore": [0.5993788578897568, 0.49230769230769234, 0.2719298245614035, 0.6959018389964681, 0.75]}, {"name": "Bosch SHX8PT55UC", "score": 100, "image": "/images/WEBP/dishwasher/bosch-shx8pt55uc.front.medium2x.1591877157033.webp", "propGroups": ["General info", "Programs", "Dish load", "Efficiency", "Features", "Miscellaneous"], "propScore": [0.7180848412067169, 0.7061538461538461, 0.8491228070175438, 0.6959018389964681, 1]}, {"name": "Bosch SHX53T55UC", "score": 79, "image": "/images/WEBP/dishwasher/bosch-shx53t55uc.front.medium2x.1591877157033.webp", "propGroups": ["General info", "Programs", "Dish load", "Efficiency", "Features", "Miscellaneous"], "propScore": [0.5993788578897568, 0.49230769230769234, 0.5350877192982457, 0.6959018389964681, 0.75]}, {"name": "Bosch SHX68T56UC", "score": 88, "image": "/images/WEBP/dishwasher/bosch-shx68t56uc.front.medium2x.1591877157033.webp", "propGroups": ["General info", "Programs", "Dish load", "Efficiency", "Features", "Miscellaneous"], "propScore": [0.6031076496015141, 0.7061538461538461, 0.680701754385965, 0.6959018389964681, 0.75]}, {"name": "Bosch SHX68T55UC", "score": 86, "image": "/images/WEBP/dishwasher/bosch-shx68t55uc.front.medium2x.1591877157033.webp", "propGroups": ["General info", "Programs", "Dish load", "Efficiency", "Features", "Miscellaneous"], "propScore": [0.6031076496015141, 0.7061538461538461, 0.680701754385965, 0.6959850606909431, 0.75]}, {"name": "Bosch SMI58N55EU", "score": 65, "image": "/images/WEBP/dishwasher/bosch-smi58n55eu.front.medium2x.1591877157033.webp", "propGroups": ["General info", "Programs", "Dish load", "Efficiency", "Features"], "propScore": [0.7252152784457576, 0.6836342761715897, 0.14077790825949255, 0.7872983997807582, 0.25]}, {"name": "Bosch SME69U40EU", "score": 72, "image": "/images/WEBP/dishwasher/bosch-sme69u40eu.front.medium2x.1591877157033.webp", "propGroups": ["General info", "Programs", "Dish load", "Efficiency", "Features", "Miscellaneous"], "propScore": [0.6285727800564082, 0.8363584177017014, 0.368848083698089, 0.6717797011682176, 0.25]}, {"name": "Bosch SMD53M74EU", "score": 67, "image": "/images/WEBP/dishwasher/bosch-smd53m74eu.front.medium2x.1591877157033.webp", "propGroups": ["General info", "Programs", "Dish load", "Efficiency", "Features", "Miscellaneous"], "propScore": [0.6727726920910932, 0.6685293810666945, 0.35386641044802675, 0.6624115219527039, 0.25]}, {"name": "Bosch SMI54M02EU", "score": 76, "image": "/images/WEBP/dishwasher/bosch-smi54m02eu.front.medium2x.1591877157033.webp", "propGroups": ["General info", "Programs", "Dish load", "Efficiency", "Features", "Miscellaneous"], "propScore": [0.8368773048047254, 0.692025884563198, 0.1433400946585531, 0.7316853180676756, 0.25]}, {"name": "Bosch SMV58N70EP", "score": 87, "image": "/images/WEBP/dishwasher/bosch-smv58n70ep.front.medium2x.1591877157033.webp", "propGroups": ["General info", "Programs", "Dish load", "Efficiency", "Features", "Miscellaneous"], "propScore": [0.9482089766911594, 0.8179000104373239, 0.3513042240489662, 0.7041229997259477, 0.25]}, {"name": "Bosch SMV69U80EU", "score": 76, "image": "/images/WEBP/dishwasher/bosch-smv69u80eu.front.medium2x.1591877157033.webp", "propGroups": ["General info", "Programs", "Dish load", "Efficiency", "Features", "Miscellaneous"], "propScore": [0.7278229891689605, 0.7815327210103331, 0.23391812865497075, 0.8171567813275128, 0.25]}, {"name": "Bosch SPV40M10EU", "score": 52, "image": "/images/WEBP/dishwasher/bosch-spv40m10eu.front.medium2x.1591877157033.webp", "propGroups": ["General info", "Programs", "Dish load", "Efficiency", "Features"], "propScore": [0.628054778450554, 0.46400114810562576, 0.07316465606206185, 0.5686367516041281, 0.25]}, {"name": "Bosch SMS69U78EU", "score": 72, "image": "/images/WEBP/dishwasher/bosch-sms69u78eu.front.medium2x.1591877157033.webp", "propGroups": ["General info", "Programs", "Dish load", "Efficiency", "Features", "Miscellaneous"], "propScore": [0.7960177453172725, 0.8363584177017014, 0.14077790825949255, 0.7901044774622965, 0.25]}, {"name": "Bosch SPV50E00EU", "score": 46, "image": "/images/WEBP/dishwasher/bosch-spv50e00eu.front.medium2x.1591877157033.webp", "propGroups": ["General info", "Programs", "Dish load", "Efficiency", "Features", "Miscellaneous"], "propScore": [0.311385493084504, 0.5238658356568804, 0.11695906432748537, 0.6353034182707946, 0.25]}, {"name": "Brastemp BLF06", "score": 28, "image": "/images/WEBP/dishwasher/brastemp-blf06.front.medium2x.1591877157033.webp", "propGroups": ["General info", "Programs", "Dish load", "Efficiency", "Features"], "propScore": [0.3436809156108506, 0.03461538461538462, 0.029239766081871343, 0.5804494786526087, 0]}, {"name": "Bosch SPV53M50EU", "score": 82, "image": "/images/WEBP/dishwasher/bosch-spv53m50eu.front.medium2x.1591877157033.webp", "propGroups": ["General info", "Programs", "Dish load", "Efficiency", "Features", "Miscellaneous"], "propScore": [0.8913997657237034, 0.7977664126917859, 0.2836909718515355, 0.7133577169133286, 0.25]}, {"name": "Bosch SPV69T30EU", "score": 93, "image": "/images/WEBP/dishwasher/bosch-spv69t30eu.front.medium2x.1591877157033.webp", "propGroups": ["General info", "Programs", "Dish load", "Efficiency", "Features", "Miscellaneous"], "propScore": [1, 0.8363584177017014, 0.2982456140350877, 0.8224702947244371, 0.5]}, {"name": "Electrolux ESF2300OK", "score": 54, "image": "/images/WEBP/dishwasher/electrolux-esf2300ok.front.medium2x.1591877157033.webp", "propGroups": ["General info", "Programs", "Dish load", "Efficiency", "Features", "Miscellaneous"], "propScore": [0.48847440463816505, 0.7200000000000001, 0.021929824561403508, 0.6582277526395174, 0.25]}, {"name": "Brastemp BLF08", "score": 33, "image": "/images/WEBP/dishwasher/brastemp-blf08.front.medium2x.1591877157033.webp", "propGroups": ["General info", "Programs", "Dish load", "Efficiency", "Features"], "propScore": [0.4158853601695854, 0.05192307692307692, 0.08771929824561403, 0.8269230769230769, 0]}, {"name": "Electrolux ESF2210DW", "score": 56, "image": "/images/WEBP/dishwasher/electrolux-esf2210dw.front.medium2x.1591877157033.webp", "propGroups": ["General info", "Programs", "Dish load", "Efficiency", "Features"], "propScore": [0.49670276945888303, 0.6615384615384615, 0.029239766081871343, 0.9560683760683761, 0.25]}, {"name": "Electrolux EIDW6105GS", "score": 42, "image": "/images/WEBP/dishwasher/electrolux-eidw6105gs.front.medium2x.1591877157033.webp", "propGroups": ["General info", "Programs", "Dish load", "Efficiency", "Features", "Miscellaneous"], "propScore": [0.3749505293991232, 0.43736263736263736, 0.24210526315789474, 0.47222222222222227, 0.25]}, {"name": "Electrolux ESL6210LO", "score": 48, "image": "/images/WEBP/dishwasher/electrolux-esl6210lo.front.medium2x.1591877157033.webp", "propGroups": ["General info", "Programs", "Dish load", "Efficiency", "Features"], "propScore": [0.38114101792756166, 0.7061538461538461, 0.31140350877192985, 0.8935897435897436, 0.25]}, {"name": "Electrolux ESL6370RO", "score": 59, "image": "/images/WEBP/dishwasher/electrolux-esl6370ro.front.medium2x.1591877157033.webp", "propGroups": ["General info", "Programs", "Dish load", "Efficiency", "Features", "Miscellaneous"], "propScore": [0.3972127003397668, 0.7259340659340658, 0.31140350877192985, 0.6909401709401709, 0.5]}, {"name": "Electrolux ESL6381RA\t", "score": 52, "image": "/images/WEBP/dishwasher/electrolux-esl6381ra.front.medium2x.1591877157033.webp", "propGroups": ["General info", "Programs", "Dish load", "Efficiency", "Features", "Miscellaneous"], "propScore": [0.2760515343988939, 0.7384615384615385, 0.31140350877192985, 0.6909401709401709, 0.5]}, {"name": "Electrolux ESI67070XR", "score": 59, "image": "/images/WEBP/dishwasher/electrolux-esi67070xr.front.medium2x.1591877157033.webp", "propGroups": ["General info", "Programs", "Dish load", "Efficiency", "Features", "Miscellaneous"], "propScore": [0.3989902980524051, 0.8584615384615383, 0.31140350877192985, 0.6909401709401709, 0.25]}, {"name": "Electrolux ESL6552RA", "score": 66, "image": "/images/WEBP/dishwasher/electrolux-esl6552ra.front.medium2x.1591877157033.webp", "propGroups": ["General info", "Programs", "Dish load", "Efficiency", "Features", "Miscellaneous"], "propScore": [0.5249798266543548, 0.9969230769230769, 0.31140350877192985, 0.9192307692307693, 0.5]}, {"name": "Frigidaire FGHD2455LF", "score": 71, "image": "/images/WEBP/dishwasher/frigidaire-fghd2455lf.front.medium2x.1591877157033.webp", "propGroups": ["General info", "Programs", "Dish load", "Efficiency", "Features", "Miscellaneous"], "propScore": [0.5536007910983662, 0.7338461538461539, 0.6210526315789475, 0.6820289855072463, 0.5]}, {"name": "Frigidaire FFBD1821MS", "score": 56, "image": "/images/WEBP/dishwasher/frigidaire-ffbd1821ms.front.medium2x.1591877157033.webp", "propGroups": ["General info", "Programs", "Dish load", "Efficiency", "Features"], "propScore": [0.6128433588562147, 0.5304029304029304, 0.6140350877192983, 0.6051059085841695, 0]}, {"name": "Electrolux ESL6391RA", "score": 62, "image": "/images/WEBP/dishwasher/electrolux-esl6391ra.front.medium2x.1591877157033.webp", "propGroups": ["General info", "Programs", "Dish load", "Efficiency", "Features", "Miscellaneous"], "propScore": [0.3972127003397667, 0.9969230769230769, 0.31140350877192985, 0.9192307692307693, 0.5]}, {"name": "Kitchen Aid KDFX 6030", "score": 48, "image": "/images/WEBP/dishwasher/kitchen-aid-kdfx-6030.front.medium2x.1591877157033.webp", "propGroups": ["General info", "Programs", "Dish load", "Efficiency", "Features", "Miscellaneous"], "propScore": [0.3461636847272123, 0.7076923076923076, 0.5847953216374269, 0.9807692307692308, 0]}, {"name": "Frigidaire FGHD2472PF", "score": 66, "image": "/images/WEBP/dishwasher/frigidaire-fghd2472pf.front.medium2x.1591877157033.webp", "propGroups": ["General info", "Programs", "Dish load", "Efficiency", "Features", "Miscellaneous"], "propScore": [0.5801592437971911, 0.3538461538461538, 0.6744777765915804, 0.6466666666666667, 0.25]}, {"name": "GE GDF540HSDSS", "score": 48, "image": "/images/WEBP/dishwasher/ge-gdf540hsdss.front.medium2x.1591877157033.webp", "propGroups": ["General info", "Programs", "Dish load", "Efficiency", "Features", "Miscellaneous"], "propScore": [0.47934965392616313, 0.528937728937729, 0.29385964912280704, 1, 0.25]}, {"name": "Kitchen Aid KDFP 6040", "score": 57, "image": "/images/WEBP/dishwasher/kitchen-aid-kdfp-6040.front.medium2x.1591877157033.webp", "propGroups": ["General info", "Programs", "Dish load", "Efficiency", "Features", "Miscellaneous"], "propScore": [0.5505733748178999, 0.681923076923077, 0.2631578947368421, 0.9294871794871794, 0.25]}, {"name": "KitchenAid KDFX 7017", "score": 54, "image": "/images/WEBP/dishwasher/kitchenaid-kdfx-7017.front.medium2x.1591877157033.webp", "propGroups": ["General info", "Programs", "Dish load", "Efficiency", "Features"], "propScore": [0.3888709295837183, 0.7692307692307693, 0.5486593843098312, 0.9134615384615384, 0]}, {"name": "KitchenAid KUDE70FXSS", "score": 65, "image": "/images/WEBP/dishwasher/kitchenaid-kude70fxss.front.medium2x.1591877157033.webp", "propGroups": ["General info", "Programs", "Dish load", "Efficiency", "Features"], "propScore": [0.589816412922729, 0.3942857142857143, 0.5570175438596492, 0.65, 0.25]}, {"name": "LG D14446IXS", "score": 47, "image": "/images/WEBP/dishwasher/lg-d14446ixs.front.medium2x.1591877157033.webp", "propGroups": ["General info", "Programs", "Dish load", "Efficiency", "Features"], "propScore": [0.35297364378760776, 0.39807692307692305, 0.6140350877192983, 0.28265172735760974, 0.25]}, {"name": "KitchenAid KDIX 8810", "score": 28, "image": "/images/WEBP/dishwasher/kitchenaid-kdix-8810.front.medium2x.1591877157033.webp", "propGroups": ["General info", "Programs", "Dish load", "Efficiency", "Features"], "propScore": [0.4519255814675161, 0.13846153846153847, 0, 0.41346153846153844, 0]}, {"name": "LG D1484BF", "score": 61, "image": "/images/WEBP/dishwasher/lg-d1484bf.front.medium2x.1591877157033.webp", "propGroups": ["General info", "Programs", "Dish load", "Efficiency", "Features", "Miscellaneous"], "propScore": [0.5147977939960999, 0.5576923076923077, 0.6140350877192983, 0.9423076923076923, 0.25]}, {"name": "LG D1454BF", "score": 38, "image": "/images/WEBP/dishwasher/lg-d1454bf.front.medium2x.1591877157033.webp", "propGroups": ["General info", "Programs", "Dish load", "Efficiency", "Features", "Miscellaneous"], "propScore": [0.40672619386186576, 0.38324175824175827, 0.5263157894736842, 0.4423076923076923, 0]}, {"name": "LG D1454TF", "score": 44, "image": "/images/WEBP/dishwasher/lg-d1454tf.front.medium2x.1591877157033.webp", "propGroups": ["General info", "Programs", "Dish load", "Efficiency", "Features"], "propScore": [0.39212423656877, 0.5078571428571429, 0.2631578947368421, 0, 0.25]}, {"name": "LG D1453WF", "score": 65, "image": "/images/WEBP/dishwasher/lg-d1453wf.front.medium2x.1591877157033.webp", "propGroups": ["General info", "Programs", "Dish load", "Efficiency", "Features", "Miscellaneous"], "propScore": [0.7292640417384443, 0.2769230769230769, 0.6140350877192983, 0, 0.25]}, {"name": "LG LD-1453AC", "score": 41, "image": "/images/WEBP/dishwasher/lg-ld-1453ac.front.medium2x.1591877157033.webp", "propGroups": ["General info", "Programs", "Dish load", "Efficiency", "Features"], "propScore": [0.37334133271923464, 0.36098901098901093, 0.2631578947368421, 0, 0.25]}, {"name": "LG LD-5321PV", "score": 42, "image": "/images/WEBP/dishwasher/lg-ld-5321pv.front.medium2x.1591877157033.webp", "propGroups": ["General info", "Programs", "Dish load", "Efficiency", "Features"], "propScore": [0.3824675560274195, 0.37978021978021975, 0.2631578947368421, 0, 0.25]}, {"name": "LG D1484CF", "score": 65, "image": "/images/WEBP/dishwasher/lg-d1484cf.front.medium2x.1591877157033.webp", "propGroups": ["General info", "Programs", "Dish load", "Efficiency", "Features", "Miscellaneous"], "propScore": [0.6334386970025031, 0.5576923076923077, 0.6140350877192983, 0.9423076923076923, 0.25]}, {"name": "LG D1484WF", "score": 59, "image": "/images/WEBP/dishwasher/lg-d1484wf.front.medium2x.1591877157033.webp", "propGroups": ["General info", "Programs", "Dish load", "Efficiency", "Features", "Miscellaneous"], "propScore": [0.6334386970025031, 0.41538461538461535, 0.5263157894736842, 0.9423076923076923, 0.25]}, {"name": "LG LD-5421ST", "score": 41, "image": "/images/WEBP/dishwasher/lg-ld-5421st.front.medium2x.1591877157033.webp", "propGroups": ["General info", "Programs", "Dish load", "Efficiency", "Features"], "propScore": [0.2960170538488465, 0.37978021978021975, 0.2631578947368421, 1, 0.25]}, {"name": "LG LDF8072ST", "score": 71, "image": "/images/WEBP/dishwasher/lg-ldf8072st.front.medium2x.1591877157033.webp", "propGroups": ["General info", "Programs", "Dish load", "Efficiency", "Features"], "propScore": [0.4558849837655131, 0.6780719280719281, 0.9649122807017544, 1, 0.75]}, {"name": "LG LDF7551BB", "score": 65, "image": "/images/WEBP/dishwasher/lg-ldf7551bb.front.medium2x.1591877157033.webp", "propGroups": ["General info", "Programs", "Dish load", "Efficiency", "Features"], "propScore": [0.4578232915349353, 0.6780719280719281, 0.6140350877192983, 0.7633333333333333, 0.5]}, {"name": "LG LDS4821BB", "score": 57, "image": "/images/WEBP/dishwasher/lg-lds4821bb.front.medium2x.1591877157033.webp", "propGroups": ["General info", "Programs", "Dish load", "Efficiency", "Features"], "propScore": [0.4589705309059879, 0.49230769230769234, 0.3216374269005848, 1, 0.5]}, {"name": "LG LDS5040BB", "score": 65, "image": "/images/WEBP/dishwasher/lg-lds5040bb.front.medium2x.1591877157033.webp", "propGroups": ["General info", "Programs", "Dish load", "Efficiency", "Features"], "propScore": [0.4325633492380801, 0.5624175824175823, 0.6140350877192983, 1, 0.75]}, {"name": "LG LDS5540BB", "score": 66, "image": "/images/WEBP/dishwasher/lg-lds5540bb.front.medium2x.1591877157033.webp", "propGroups": ["General info", "Programs", "Dish load", "Efficiency", "Features"], "propScore": [0.4395268300218045, 0.5624175824175823, 0.6140350877192983, 1, 0.75]}, {"name": "LG LSDF9962ST", "score": 61, "image": "/images/WEBP/dishwasher/lg-lsdf9962st.front.medium2x.1591877157033.webp", "propGroups": ["General info", "Programs", "Dish load", "Efficiency", "Features"], "propScore": [0.4680532815097596, 0.7285714285714286, 0.6140350877192983, 1, 0.5]}, {"name": "LG LDS5560ST", "score": 71, "image": "/images/WEBP/dishwasher/lg-lds5560st.front.medium2x.1591877157033.webp", "propGroups": ["General info", "Programs", "Dish load", "Efficiency", "Features"], "propScore": [0.45707361310633915, 0.5521978021978021, 0.9649122807017544, 1, 0.75]}, {"name": "Maytag MDC4809PAB", "score": 30, "image": "/images/WEBP/dishwasher/maytag-mdc4809pab.front.medium2x.1591877157033.webp", "propGroups": ["General info", "Programs", "Dish load", "Efficiency", "Features", "Miscellaneous"], "propScore": [0.419419678192185, 0.34585414585414587, 0.14619883040935674, 0.09666666666666666, 0.5]}, {"name": "Miele G 4170 SCVI", "score": 53, "image": "/images/WEBP/dishwasher/miele-g-4170-scvi.front.medium2x.1591877157033.webp", "propGroups": ["General info", "Programs", "Dish load", "Efficiency", "Features", "Miscellaneous"], "propScore": [0.6384840217166503, 0.4068312284730195, 0.6140350877192983, 0.4229929307606279, 0]}, {"name": "Maytag MDB6769PAW", "score": 40, "image": "/images/WEBP/dishwasher/maytag-mdb6769paw.front.medium2x.1591877157033.webp", "propGroups": ["General info", "Programs", "Dish load", "Efficiency", "Features", "Miscellaneous"], "propScore": [0.3884906656229517, 0.4206593406593407, 0.2631578947368421, 0.6, 0.25]}, {"name": "Maytag MDB8959SBW", "score": 53, "image": "/images/WEBP/dishwasher/maytag-mdb8959sbw.front.medium2x.1591877157033.webp", "propGroups": ["General info", "Programs", "Dish load", "Efficiency", "Features", "Miscellaneous"], "propScore": [0.7449335873464895, 0.3649725274725275, 0.2923976608187135, 0.6, 0.25]}, {"name": "Miele G 4220 SC", "score": 40, "image": "/images/WEBP/dishwasher/miele-g-4220-sc.front.medium2x.1591877157033.webp", "propGroups": ["General info", "Programs", "Dish load", "Efficiency", "Features"], "propScore": [0.6105188371848531, 0.35230195177956364, 0.19902350215160544, 0.4229929307606279, 0]}, {"name": "Miele G 4210 SC", "score": 47, "image": "/images/WEBP/dishwasher/miele-g-4210-sc.front.medium2x.1591877157033.webp", "propGroups": ["General info", "Programs", "Dish load", "Efficiency", "Features"], "propScore": [0.6208886923641372, 0.5134978951396861, 0.2631578947368421, 0.6124183006535948, 0]}, {"name": "Miele G 4210 SCU", "score": 47, "image": "/images/WEBP/dishwasher/miele-g-4210-scu.front.medium2x.1591877157033.webp", "propGroups": ["General info", "Programs", "Dish load", "Efficiency", "Features", "Miscellaneous"], "propScore": [0.6240935989280968, 0.7146800960233797, 0.2631578947368421, 0.30759151691275344, 0]}, {"name": "Miele G 4210", "score": 40, "image": "/images/WEBP/dishwasher/miele-g-4210.front.medium2x.1591877157033.webp", "propGroups": ["General info", "Programs", "Dish load", "Efficiency", "Features"], "propScore": [0.5280523497748121, 0.6292250287026406, 0.1416319703925127, 0.3138341974257465, 0]}, {"name": "Miele G 4240 SCU", "score": 47, "image": "/images/WEBP/dishwasher/miele-g-4240-scu.front.medium2x.1591877157033.webp", "propGroups": ["General info", "Programs", "Dish load", "Efficiency", "Features"], "propScore": [0.6543193202902948, 0.5888059701492538, 0.2631578947368421, 0.30759151691275344, 0]}, {"name": "Miele G 4280 ScVi", "score": 44, "image": "/images/WEBP/dishwasher/miele-g-4280-scvi.front.medium2x.1591877157033.webp", "propGroups": ["General info", "Programs", "Dish load", "Efficiency", "Features"], "propScore": [0.612455256176929, 0.49076349024110216, 0.19902350215160544, 0.40834992458521874, 0]}, {"name": "Miele G 4220 SCI", "score": 39, "image": "/images/WEBP/dishwasher/miele-g-4220-sci.front.medium2x.1591877157033.webp", "propGroups": ["General info", "Programs", "Dish load", "Efficiency", "Features"], "propScore": [0.4226777284127775, 0.6978968792401629, 0.19902350215160544, 0.30759151691275344, 0]}, {"name": "Miele G 4280 Vi", "score": 56, "image": "/images/WEBP/dishwasher/miele-g-4280-vi.front.medium2x.1591877157033.webp", "propGroups": ["General info", "Programs", "Dish load", "Efficiency", "Features"], "propScore": [0.6471193352408879, 0.7146800960233797, 0.14338306633820186, 0.4281951645214554, 0.25]}, {"name": "Miele G 4570 SCVI", "score": 55, "image": "/images/WEBP/dishwasher/miele-g-4570-scvi.front.medium2x.1591877157033.webp", "propGroups": ["General info", "Programs", "Dish load", "Efficiency", "Features"], "propScore": [0.7496683995670054, 0.5560786974219811, 0.14619883040935674, 0.5333098604263634, 0]}, {"name": "Miele G 4501 SCI", "score": 40, "image": "/images/WEBP/dishwasher/miele-g-4501-sci.front.medium2x.1591877157033.webp", "propGroups": ["General info", "Programs", "Dish load", "Efficiency", "Features"], "propScore": [0.605099958293016, 0.6292250287026406, 0.07149950347567031, 0.2857516339869281, 0]}, {"name": "Miele G 4285 SCVI XXL", "score": 47, "image": "/images/WEBP/dishwasher/miele-g-4285-scvi-xxl.front.medium2x.1591877157033.webp", "propGroups": ["General info", "Programs", "Dish load", "Efficiency", "Features"], "propScore": [0.5133225975389076, 0.7676865671641792, 0.19902350215160544, 0.30759151691275344, 0]}, {"name": "Miele G 4501 SC", "score": 40, "image": "/images/WEBP/dishwasher/miele-g-4501-sc.front.medium2x.1591877157033.webp", "propGroups": ["General info", "Programs", "Dish load", "Efficiency", "Features"], "propScore": [0.5506850453877447, 0.6153788748564869, 0.11695906432748537, 0.5333098604263634, 0]}, {"name": "Miele G 5220 SC", "score": 51, "image": "/images/WEBP/dishwasher/miele-g-5220-sc.front.medium2x.1591877157033.webp", "propGroups": ["General info", "Programs", "Dish load", "Efficiency", "Features"], "propScore": [0.6457085146235435, 0.6430711825487946, 0.15921880172128433, 0.6552594942600511, 0]}, {"name": "Miele G 4670 SCVI", "score": 53, "image": "/images/WEBP/dishwasher/miele-g-4670-scvi.front.medium2x.1591877157033.webp", "propGroups": ["General info", "Programs", "Dish load", "Efficiency", "Features"], "propScore": [0.6978809279905527, 0.6886661100093936, 0.11695906432748537, 0.6004545063046951, 0]}, {"name": "Miele G 5100 SCI", "score": 50, "image": "/images/WEBP/dishwasher/miele-g-5100-sci.front.medium2x.1591877157033.webp", "propGroups": ["General info", "Programs", "Dish load", "Efficiency", "Features"], "propScore": [0.6646079076360777, 0.7199999999999999, 0.19902350215160544, 0.3567369830786713, 0]}, {"name": "Miele G 5141 SCI", "score": 57, "image": "/images/WEBP/dishwasher/miele-g-5141-sci.front.medium2x.1591877157033.webp", "propGroups": ["General info", "Programs", "Dish load", "Efficiency", "Features"], "propScore": [0.6455498086490172, 0.6903444316877154, 0.2631578947368421, 0.6552594942600511, 0]}, {"name": "Miele G 5285 SCVI XXL", "score": 54, "image": "/images/WEBP/dishwasher/miele-g-5285-scvi-xxl.front.medium2x.1591877157033.webp", "propGroups": ["General info", "Programs", "Dish load", "Efficiency", "Features"], "propScore": [0.5220650737860388, 0.5644703058135895, 0.19902350215160544, 0.6552594942600511, 0]}, {"name": "Miele G 5220 SCU", "score": 48, "image": "/images/WEBP/dishwasher/miele-g-5220-scu.front.medium2x.1591877157033.webp", "propGroups": ["General info", "Programs", "Dish load", "Efficiency", "Features"], "propScore": [0.5141350280719443, 0.6430711825487946, 0.2631578947368421, 0.7127162452167092, 0]}, {"name": "Miele G 5400 SC", "score": 50, "image": "/images/WEBP/dishwasher/miele-g-5400-sc.front.medium2x.1591877157033.webp", "propGroups": ["General info", "Programs", "Dish load", "Efficiency", "Features"], "propScore": [0.542501169510114, 0.6853094666527503, 0.15921880172128433, 0.6758521870286577, 0]}, {"name": "Miele G 5280 SCVi", "score": 60, "image": "/images/WEBP/dishwasher/miele-g-5280-scvi.front.medium2x.1591877157033.webp", "propGroups": ["General info", "Programs", "Dish load", "Efficiency", "Features"], "propScore": [0.6612516526277984, 0.7815327210103331, 0.15921880172128433, 0.7127162452167092, 0.25]}, {"name": "Miele G 5475 SCVI XXL", "score": 59, "image": "/images/WEBP/dishwasher/miele-g-5475-scvi-xxl.front.medium2x.1591877157033.webp", "propGroups": ["General info", "Programs", "Dish load", "Efficiency", "Features"], "propScore": [0.5264090921957155, 0.6903444316877154, 0.2631578947368421, 0.6552594942600511, 0]}, {"name": "Miele G 5400 SCU", "score": 53, "image": "/images/WEBP/dishwasher/miele-g-5400-scu.front.medium2x.1591877157033.webp", "propGroups": ["General info", "Programs", "Dish load", "Efficiency", "Features"], "propScore": [0.5274670913972545, 0.6903444316877154, 0.15921880172128433, 0.6552594942600511, 0]}, {"name": "Miele G 5470 SCVI", "score": 63, "image": "/images/WEBP/dishwasher/miele-g-5470-scvi.front.medium2x.1591877157033.webp", "propGroups": ["General info", "Programs", "Dish load", "Efficiency", "Features"], "propScore": [0.6704334107634166, 0.6903444316877154, 0.15921880172128433, 0.6552594942600511, 0]}, {"name": "Miele G 5400 SCI", "score": 59, "image": "/images/WEBP/dishwasher/miele-g-5400-sci.front.medium2x.1591877157033.webp", "propGroups": ["General info", "Programs", "Dish load", "Efficiency", "Features"], "propScore": [0.7752304249108823, 0.6430711825487946, 0.15921880172128433, 0.7127162452167092, 0]}, {"name": "Miele G 5500 SC", "score": 57, "image": "/images/WEBP/dishwasher/miele-g-5500-sc.front.medium2x.1591877157033.webp", "propGroups": ["General info", "Programs", "Dish load", "Efficiency", "Features"], "propScore": [0.6450499952021187, 0.6903444316877154, 0.2631578947368421, 0.6552594942600511, 0]}, {"name": "Miele G 5570 SCVI", "score": 62, "image": "/images/WEBP/dishwasher/miele-g-5570-scvi.front.medium2x.1591877157033.webp", "propGroups": ["General info", "Programs", "Dish load", "Efficiency", "Features"], "propScore": [0.5397142597279383, 0.6903444316877154, 0.2631578947368421, 0.6552594942600511, 0.25]}, {"name": "Miele G 5600 SC", "score": 57, "image": "/images/WEBP/dishwasher/miele-g-5600-sc.front.medium2x.1591877157033.webp", "propGroups": ["General info", "Programs", "Dish load", "Efficiency", "Features", "Miscellaneous"], "propScore": [0.4120016788788879, 0.6903444316877154, 0.2631578947368421, 0.7039289799029748, 0]}, {"name": "Miele G 5510 SCU \t", "score": 63, "image": "/images/WEBP/dishwasher/miele-g-5510-scu.front.medium2x.1591877157033.webp", "propGroups": ["General info", "Programs", "Dish load", "Efficiency", "Features"], "propScore": [0.6489268524207693, 0.6903444316877154, 0.2631578947368421, 0.6552594942600511, 0.25]}, {"name": "Miele G 5600 SCU", "score": 70, "image": "/images/WEBP/dishwasher/miele-g-5600-scu.front.medium2x.1591877157033.webp", "propGroups": ["General info", "Programs", "Dish load", "Efficiency", "Features", "Miscellaneous"], "propScore": [0.7216820352111405, 0.6903444316877154, 0.2631578947368421, 0.7025956465696414, 0.25]}, {"name": "Miele G 5780 SCVI", "score": 84, "image": "/images/WEBP/dishwasher/miele-g-5780-scvi.front.medium2x.1591877157033.webp", "propGroups": ["General info", "Programs", "Dish load", "Efficiency", "Features", "Miscellaneous"], "propScore": [0.5584239290552688, 0.6903444316877154, 0.6140350877192983, 0.7039289799029748, 0.5]}, {"name": "Miele G 5600 SCI", "score": 73, "image": "/images/WEBP/dishwasher/miele-g-5600-sci.front.medium2x.1591877157033.webp", "propGroups": ["General info", "Programs", "Dish load", "Efficiency", "Features"], "propScore": [0.6700859554142365, 0.6430711825487946, 0.6140350877192983, 0.7039289799029748, 0.5]}, {"name": "Miele G 5670 SCVI", "score": 66, "image": "/images/WEBP/dishwasher/miele-g-5670-scvi.front.medium2x.1591877157033.webp", "propGroups": ["General info", "Programs", "Dish load", "Efficiency", "Features"], "propScore": [0.6723822994762396, 0.6430711825487946, 0.2631578947368421, 0.7039289799029748, 0.25]}, {"name": "Miele G 5935 SCI XXL", "score": 73, "image": "/images/WEBP/dishwasher/miele-g-5935-sci-xxl.front.medium2x.1591877157033.webp", "propGroups": ["General info", "Programs", "Dish load", "Efficiency", "Features", "Miscellaneous"], "propScore": [0.7828672724492144, 0.6707634902411022, 0.17676266137040716, 0.6190849673202615, 0.75]}, {"name": "Miele G 5830 SCU", "score": 82, "image": "/images/WEBP/dishwasher/miele-g-5830-scu.front.medium2x.1591877157033.webp", "propGroups": ["General info", "Programs", "Dish load", "Efficiency", "Features", "Miscellaneous"], "propScore": [0.6121673555129221, 0.8363584177017014, 0.2631578947368421, 0.6667060966735902, 0.75]}, {"name": "Miele G 5830 SCI", "score": 81, "image": "/images/WEBP/dishwasher/miele-g-5830-sci.front.medium2x.1591877157033.webp", "propGroups": ["General info", "Programs", "Dish load", "Efficiency", "Features", "Miscellaneous"], "propScore": [0.6799000588903024, 0.8413933827366662, 0.369745117510758, 0.7039289799029748, 0.5]}, {"name": "Miele G 5930 SCI", "score": 71, "image": "/images/WEBP/dishwasher/miele-g-5930-sci.front.medium2x.1591877157033.webp", "propGroups": ["General info", "Programs", "Dish load", "Efficiency", "Features", "Miscellaneous"], "propScore": [0.6820547018817568, 0.6903444316877154, 0.2631578947368421, 0.7039289799029748, 0.25]}, {"name": "Miele G 5985 SCVI XXL", "score": 82, "image": "/images/WEBP/dishwasher/miele-g-5985-scvi-xxl.front.medium2x.1591877157033.webp", "propGroups": ["General info", "Programs", "Dish load", "Efficiency", "Features", "Miscellaneous"], "propScore": [0.8818827397558192, 0.8092250287026407, 0.15921880172128433, 0.6190849673202615, 0.75]}, {"name": "Miele G4225", "score": 62, "image": "/images/WEBP/dishwasher/miele-g4225.front.medium2x.1591877157033.webp", "propGroups": ["General info", "Programs", "Dish load", "Efficiency", "Features", "Miscellaneous"], "propScore": [0.4366215214997581, 0.6003444316877153, 0.3216374269005848, 0.63, 0.75]}, {"name": "Miele G4210SCi", "score": 52, "image": "/images/WEBP/dishwasher/miele-g4210sci.front.medium2x.1591877157033.webp", "propGroups": ["General info", "Programs", "Dish load", "Efficiency", "Features"], "propScore": [0.7612005578520407, 0.5888059701492538, 0.23391812865497075, 0.36143767075890726, 0]}, {"name": "Miele G 5980 SCVI", "score": 97, "image": "/images/WEBP/dishwasher/miele-g-5980-scvi.front.medium2x.1591877157033.webp", "propGroups": ["General info", "Programs", "Dish load", "Efficiency", "Features", "Miscellaneous"], "propScore": [0.8006956048881599, 0.8413933827366662, 0.46218139688844756, 0.7025956465696414, 0.75]}, {"name": "Samsung DMM770", "score": 47, "image": "/images/WEBP/dishwasher/samsung-dmm770.front.medium2x.1591877157033.webp", "propGroups": ["General info", "Programs", "Dish load", "Efficiency", "Features"], "propScore": [0.3990354236108393, 0.6923076923076923, 0.19902350215160544, 0.6035294117647059, 0]}, {"name": "Samsung DMT400RHS", "score": 45, "image": "/images/WEBP/dishwasher/samsung-dmt400rhs.front.medium2x.1591877157033.webp", "propGroups": ["General info", "Programs", "Dish load", "Efficiency", "Features", "Miscellaneous"], "propScore": [0.4445362053047502, 0.05, 0.25, 0.65, 0.5]}, {"name": "Samsung DMT800RHS", "score": 53, "image": "/images/WEBP/dishwasher/samsung-dmt800rhs.front.medium2x.1591877157033.webp", "propGroups": ["General info", "Programs", "Dish load", "Efficiency", "Features", "Miscellaneous"], "propScore": [0.5596219128858766, 0.3323076923076923, 0.47368421052631576, 0.6105982905982906, 0.5]}, {"name": "Miele PG 8083 SCVi XXL", "score": 68, "image": "/images/WEBP/dishwasher/miele-pg-8083-scvi-xxl.front.medium2x.1591877157033.webp", "propGroups": ["General info", "Programs", "Dish load", "Efficiency", "Features"], "propScore": [0.5740323979478876, 0.7116618828932262, 0.1647702055859155, 0.6263491479702016, 0.5]}, {"name": "Samsung DW-FG720", "score": 51, "image": "/images/WEBP/dishwasher/samsung-dw-fg720.front.medium2x.1591877157033.webp", "propGroups": ["General info", "Programs", "Dish load", "Efficiency", "Features"], "propScore": [0.4035408286227455, 0.4326923076923077, 0.6140350877192983, 0.6035294117647059, 0.25]}, {"name": "Samsung DW-BG570B", "score": 55, "image": "/images/WEBP/dishwasher/samsung-dw-bg570b.front.medium2x.1591877157033.webp", "propGroups": ["General info", "Programs", "Dish load", "Efficiency", "Features"], "propScore": [0.6625533790481171, 0.6923076923076923, 0.440251572327044, 0.5184313725490196, 0.25]}, {"name": "Samsung DW-FG520W", "score": 46, "image": "/images/WEBP/dishwasher/samsung-dw-fg520w.front.medium2x.1591877157033.webp", "propGroups": ["General info", "Programs", "Dish load", "Efficiency", "Features"], "propScore": [0.5197250850449454, 0.38461538461538464, 0.440251572327044, 1, 0.25]}, {"name": "Samsung DW-BG770", "score": 59, "image": "/images/WEBP/dishwasher/samsung-dw-bg770.front.medium2x.1591877157033.webp", "propGroups": ["General info", "Programs", "Dish load", "Efficiency", "Features"], "propScore": [0.5597250570922051, 0.5019230769230769, 0.46218139688844756, 0.6413071895424837, 0.5]}, {"name": "Samsung DW-SG522T", "score": 67, "image": "/images/WEBP/dishwasher/samsung-dw-sg522t.front.medium2x.1591877157033.webp", "propGroups": ["General info", "Programs", "Dish load", "Efficiency", "Features"], "propScore": [0.7661255588301403, 0.8461538461538463, 0.440251572327044, 0.66, 0.25]}, {"name": "Samsung DW-FN320T", "score": 57, "image": "/images/WEBP/dishwasher/samsung-dw-fn320t.front.medium2x.1591877157033.webp", "propGroups": ["General info", "Programs", "Dish load", "Efficiency", "Features", "Miscellaneous"], "propScore": [0.3869553222914729, 0.6358974358974359, 0.5555555555555556, 0.5561312217194571, 0.25]}, {"name": "Samsung DW-SG970", "score": 68, "image": "/images/WEBP/dishwasher/samsung-dw-sg970.front.medium2x.1591877157033.webp", "propGroups": ["General info", "Programs", "Dish load", "Efficiency", "Features"], "propScore": [0.574329217250538, 1, 0.4118503806686528, 0.7933333333333333, 0.25]}, {"name": "Samsung DW-FN310", "score": 42, "image": "/images/WEBP/dishwasher/samsung-dw-fn310.front.medium2x.1591877157033.webp", "propGroups": ["General info", "Programs", "Dish load", "Efficiency", "Features"], "propScore": [0.5997486449705104, 0.39807692307692305, 0.5555555555555556, 0.11, 0]}, {"name": "Samsung DW80F600", "score": 63, "image": "/images/WEBP/dishwasher/samsung-dw80f600.front.medium2x.1591877157033.webp", "propGroups": ["General info", "Programs", "Dish load", "Efficiency", "Features", "Miscellaneous"], "propScore": [0.6725996143642041, 0.3807692307692308, 0.2596491228070176, 0.7657264957264958, 0.5]}, {"name": "Samsung DW-UG721W", "score": 58, "image": "/images/WEBP/dishwasher/samsung-dw-ug721w.front.medium2x.1591877157033.webp", "propGroups": ["General info", "Programs", "Dish load", "Efficiency", "Features"], "propScore": [0.615984766469285, 0.36923076923076925, 0.35308396778108797, 0.6933333333333334, 0.5]}, {"name": "Samsung DW7933", "score": 49, "image": "/images/WEBP/dishwasher/samsung-dw7933.front.medium2x.1591877157033.webp", "propGroups": ["General info", "Programs", "Dish load", "Efficiency", "Features"], "propScore": [0.5619147445553812, 0.03461538461538462, 0.20495711896373794, 0.7323931623931624, 0.5]}, {"name": "Samsung DW-UG971T", "score": 44, "image": "/images/WEBP/dishwasher/samsung-dw-ug971t.front.medium2x.1591877157033.webp", "propGroups": ["General info", "Programs", "Dish load", "Efficiency", "Features"], "propScore": [0.48013208573879995, 0.4326923076923077, 0.6140350877192983, 0, 0.25]}, {"name": "Siemens SC78M530EU", "score": 68, "image": "/images/WEBP/dishwasher/siemens-sc78m530eu.front.medium2x.1591877157033.webp", "propGroups": ["General info", "Programs", "Dish load", "Efficiency", "Features", "Miscellaneous"], "propScore": [0.7451088256797809, 0.7107692307692307, 0.08771929824561403, 0.8088235294117647, 0.25]}, {"name": "Samsung DW80F800", "score": 58, "image": "/images/WEBP/dishwasher/samsung-dw80f800.front.medium2x.1591877157033.webp", "propGroups": ["General info", "Programs", "Dish load", "Efficiency", "Features", "Miscellaneous"], "propScore": [0.637199634660825, 0.3384615384615385, 0.4280701754385965, 0.7977777777777778, 0.5]}, {"name": "Siemens SK76M530EU", "score": 80, "image": "/images/WEBP/dishwasher/siemens-sk76m530eu.front.medium2x.1591877157033.webp", "propGroups": ["General info", "Programs", "Dish load", "Efficiency", "Features", "Miscellaneous"], "propScore": [0.9769569339632076, 0.5552426677799812, 0.029239766081871343, 0.6474358974358975, 0.25]}, {"name": "Siemens SK75M532EU", "score": 87, "image": "/images/WEBP/dishwasher/siemens-sk75m532eu.front.medium2x.1591877157033.webp", "propGroups": ["General info", "Programs", "Dish load", "Efficiency", "Features", "Miscellaneous"], "propScore": [0.9159535055889355, 0.6416762342135477, 0, 0.9414027149321267, 0.25]}, {"name": "Siemens SN64D000EU", "score": 51, "image": "/images/WEBP/dishwasher/siemens-sn64d000eu.front.medium2x.1591877157033.webp", "propGroups": ["General info", "Programs", "Dish load", "Efficiency", "Features"], "propScore": [0.3724526492517103, 0.4446130884041332, 0.20467836257309943, 0.7837948717948718, 0.25]}, {"name": "Siemens SX76V090EU", "score": 76, "image": "/images/WEBP/dishwasher/siemens-sx76v090eu.front.medium2x.1591877157033.webp", "propGroups": ["General info", "Programs", "Dish load", "Efficiency", "Features", "Miscellaneous"], "propScore": [0.6419688195440877, 0.8128619142051978, 0.5263157894736842, 0.667403720462544, 0.5]}, {"name": "Siemens SN66M033EU", "score": 78, "image": "/images/WEBP/dishwasher/siemens-sn66m033eu.front.medium2x.1591877157033.webp", "propGroups": ["General info", "Programs", "Dish load", "Efficiency", "Features", "Miscellaneous"], "propScore": [0.6067923993257357, 0.8069909195282329, 0.5847953216374269, 0.7460150829562594, 0.25]}, {"name": "Siemens SN76V090EU", "score": 83, "image": "/images/WEBP/dishwasher/siemens-sn76v090eu.front.medium2x.1591877157033.webp", "propGroups": ["General info", "Programs", "Dish load", "Efficiency", "Features", "Miscellaneous"], "propScore": [0.6565385507310456, 0.8128619142051978, 0.6140350877192983, 0.667403720462544, 0.5]}, {"name": "Whirlpool ADP 750 WH", "score": 30, "image": "/images/WEBP/dishwasher/whirlpool-adp-750-wh.front.medium2x.1591877157033.webp", "propGroups": ["General info", "Programs", "Dish load", "Efficiency", "Features"], "propScore": [0.2667580759774273, 0.5384615384615384, 0.2456140350877193, 0.4102564102564103, 0]}, {"name": "Whirlpool ADG 175", "score": 26, "image": "/images/WEBP/dishwasher/whirlpool-adg-175.front.medium2x.1591877157033.webp", "propGroups": ["General info", "Programs", "Dish load", "Efficiency", "Features"], "propScore": [0.43061994811061205, 0.38461538461538464, 0.11695906432748537, 0.25, 0]}, {"name": "Whirlpool ADP 451 WH", "score": 25, "image": "/images/WEBP/dishwasher/whirlpool-adp-451-wh.front.medium2x.1591877157033.webp", "propGroups": ["General info", "Programs", "Dish load", "Efficiency", "Features"], "propScore": [0.2564903034386717, 0.2593406593406593, 0.11695906432748537, 0.8356410256410257, 0]}, {"name": "Whirlpool ADG 4500", "score": 32, "image": "/images/WEBP/dishwasher/whirlpool-adg-4500.front.medium2x.1591877157033.webp", "propGroups": ["General info", "Programs", "Dish load", "Efficiency", "Features"], "propScore": [0.4005404109430613, 0.24395604395604398, 0.20467836257309943, 0.27863247863247864, 0]}, {"name": "Whirlpool WDF518SAAM", "score": 31, "image": "/images/WEBP/dishwasher/whirlpool-wdf518saam.front.medium2x.1591877157033.webp", "propGroups": ["General info", "Programs", "Dish load", "Efficiency", "Features"], "propScore": [0.49077826326744417, 0.2302747252747253, 0.08771929824561403, 0.6466666666666667, 0]}, {"name": "Whirlpool WDF510PAYB", "score": 50, "image": "/images/WEBP/dishwasher/whirlpool-wdf510payb.front.medium2x.1591877157033.webp", "propGroups": ["General info", "Programs", "Dish load", "Efficiency", "Features", "Miscellaneous"], "propScore": [0.3420014635471823, 0.6573626373626372, 0.2631578947368421, 0.63, 0.25]}, {"name": "Whirlpool WDF510PAYD", "score": 50, "image": "/images/WEBP/dishwasher/whirlpool-wdf510payd.front.medium2x.1591877157033.webp", "propGroups": ["General info", "Programs", "Dish load", "Efficiency", "Features", "Miscellaneous"], "propScore": [0.3420014635471823, 0.6573626373626372, 0.2631578947368421, 0.63, 0.25]}, {"name": "Whirlpool WDF550SAAS", "score": 51, "image": "/images/WEBP/dishwasher/whirlpool-wdf550saas.front.medium2x.1591877157033.webp", "propGroups": ["General info", "Programs", "Dish load", "Efficiency", "Features", "Miscellaneous"], "propScore": [0.6372460264505433, 0.4012987012987013, 0.20467836257309943, 0.6466666666666667, 0.25]}, {"name": "Whirlpool WDT910SSYB", "score": 70, "image": "/images/WEBP/dishwasher/whirlpool-wdt910ssyb.front.medium2x.1591877157033.webp", "propGroups": ["General info", "Programs", "Dish load", "Efficiency", "Features", "Miscellaneous"], "propScore": [0.40800525931113146, 0.625924075924076, 0.6403508771929826, 0.7633333333333333, 0.75]}, {"name": "Whirlpool WDP350PAAB", "score": 40, "image": "/images/WEBP/dishwasher/whirlpool-wdp350paab.front.medium2x.1591877157033.webp", "propGroups": ["General info", "Programs", "Dish load", "Efficiency", "Features", "Miscellaneous"], "propScore": [0.49949847795443564, 0.2142857142857143, 0.20467836257309943, 0.5966666666666667, 0]}, {"name": "Whirlpool WDP350PAAW", "score": 42, "image": "/images/WEBP/dishwasher/whirlpool-wdp350paaw.front.medium2x.1591877157033.webp", "propGroups": ["General info", "Programs", "Dish load", "Efficiency", "Features", "Miscellaneous"], "propScore": [0.5879415009874349, 0.2142857142857143, 0.20467836257309943, 0.5966666666666667, 0]}, {"name": "Whirlpool WDF750SAYB", "score": 63, "image": "/images/WEBP/dishwasher/whirlpool-wdf750sayb.front.medium2x.1591877157033.webp", "propGroups": ["General info", "Programs", "Dish load", "Efficiency", "Features", "Miscellaneous"], "propScore": [0.5456505550162527, 0.6373126873126873, 0.2923976608187135, 0.7633333333333333, 0.5]}, {"name": "Whirlpool WDT910SSYW", "score": 57, "image": "/images/WEBP/dishwasher/whirlpool-wdt910ssyw.front.medium2x.1591877157033.webp", "propGroups": ["General info", "Programs", "Dish load", "Efficiency", "Features", "Miscellaneous"], "propScore": [0.5226534185283997, 0.6712087912087912, 0.2596491228070176, 1, 0.25]}, {"name": "Whirlpool WDT910SSYM", "score": 55, "image": "/images/WEBP/dishwasher/whirlpool-wdt910ssym.front.medium2x.1591877157033.webp", "propGroups": ["General info", "Programs", "Dish load", "Efficiency", "Features", "Miscellaneous"], "propScore": [0.28518765087895037, 0.625924075924076, 0.2719298245614035, 0.7633333333333333, 0.5]}]}
data/dj-controller.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"data": [{"name": "Allen & Heath Xone 2D", "score": 55, "image": "/images/WEBP/all-in-one-dj-midi-controller/allen-heath-xone-2d.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Controls & Buttons", "Keys & Pads", "Ports", "Features"], "propScore": [0.7056622336022127, 0.31934080804175535, 0.125, 0.7595959595959596, 0.442596738087624]}, {"name": "American Audio Versadeck", "score": 55, "image": "/images/WEBP/all-in-one-dj-midi-controller/american-audio-versadeck.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Controls & Buttons", "Keys & Pads", "Ports", "Features"], "propScore": [0.84943635087907, 0.5230717185385657, 0.75, 0.6370370370370371, 0.6013542637060109]}, {"name": "Allen & Heath Xone 4D", "score": 100, "image": "/images/WEBP/all-in-one-dj-midi-controller/allen-heath-xone-4d.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Controls & Buttons", "Keys & Pads", "Ports", "Features"], "propScore": [0.8095157733369693, 1, 0.25, 1, 0.663895107131436]}, {"name": "Allen & Heath Xone DX", "score": 75, "image": "/images/WEBP/all-in-one-dj-midi-controller/allen-heath-xone-dx.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Controls & Buttons", "Keys & Pads", "Ports", "Features"], "propScore": [0.8192354487081875, 0.5425478445776146, 0.5, 0.9740740740740742, 0.774544291653342]}, {"name": "American Audio VMS 4 Traktor", "score": 75, "image": "/images/WEBP/all-in-one-dj-midi-controller/american-audio-vms-4-traktor.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Controls & Buttons", "Keys & Pads", "Ports", "Features"], "propScore": [0.8710632537484444, 0.6503600425285134, 1, 0.6925925925925926, 0.7233770386952351]}, {"name": "American Audio VMS 4", "score": 73, "image": "/images/WEBP/all-in-one-dj-midi-controller/american-audio-vms-4.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Controls & Buttons", "Keys & Pads", "Ports", "Features"], "propScore": [0.8710632537484444, 0.6503600425285134, 1, 0.6925925925925926, 0.7233770386952351]}, {"name": "American Audio VMS 2", "score": 47, "image": "/images/WEBP/all-in-one-dj-midi-controller/american-audio-vms-2.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Controls & Buttons", "Keys & Pads", "Ports", "Features"], "propScore": [0.8816391838811238, 0.4079656388942587, 1, 0.5814814814814815, 0.48108341096480867]}, {"name": "American Audio VMS 4.1", "score": 73, "image": "/images/WEBP/all-in-one-dj-midi-controller/american-audio-vms-4-1.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Controls & Buttons", "Keys & Pads", "Ports", "Features"], "propScore": [0.8710632537484444, 0.6503600425285134, 1, 0.6925925925925926, 0.7233770386952351]}, {"name": "Behringer B-Control Deejay BCD 2000", "score": 33, "image": "/images/WEBP/all-in-one-dj-midi-controller/behringer-b-control-deejay-bcd-2000.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Controls & Buttons", "Keys & Pads", "Ports", "Features"], "propScore": [0.7439357295223712, 0.39767784651072885, 0.75, 0.31851851851851853, 0.387272145826671]}, {"name": "Behringer CMD Micro", "score": 23, "image": "/images/WEBP/all-in-one-dj-midi-controller/behringer-cmd-micro.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Controls & Buttons", "Keys & Pads", "Ports", "Features"], "propScore": [0.714374296071515, 0.22042939300212647, 0.75, 0, 0.36081255822360647]}, {"name": "Behringer CMD Studio 4A", "score": 50, "image": "/images/WEBP/all-in-one-dj-midi-controller/behringer-cmd-studio-4a.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Controls & Buttons", "Keys & Pads", "Ports", "Features"], "propScore": [0.8710402009746511, 0.5296128938720278, 1, 0.23703703703703705, 0.6680524464342821]}, {"name": "Behringer B-Control Deejay BCD 3000", "score": 39, "image": "/images/WEBP/all-in-one-dj-midi-controller/behringer-b-control-deejay-bcd-3000.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Controls & Buttons", "Keys & Pads", "Ports", "Features"], "propScore": [0.7411847252918802, 0.39767784651072885, 0.75, 0.31851851851851853, 0.49792133034857694]}, {"name": "Denon MC6000", "score": 75, "image": "/images/WEBP/all-in-one-dj-midi-controller/denon-mc6000.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Controls & Buttons", "Keys & Pads", "Ports", "Features"], "propScore": [0.8887129390014159, 0.6395805142083899, 1, 0.775925925925926, 0.6680524464342821]}, {"name": "Denon MC3000", "score": 66, "image": "/images/WEBP/all-in-one-dj-midi-controller/denon-mc3000.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Controls & Buttons", "Keys & Pads", "Ports", "Features"], "propScore": [0.9238012871083229, 0.4635221341581288, 1, 0.412962962962963, 0.719219699392389]}, {"name": "DJ-Tech 4Mix", "score": 58, "image": "/images/WEBP/all-in-one-dj-midi-controller/dj-tech-4mix.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Controls & Buttons", "Keys & Pads", "Ports", "Features"], "propScore": [0.7389519258551726, 0.595756814227721, 0.5, 0.4148148148148148, 0.6680524464342822]}, {"name": "Denon MC2000", "score": 47, "image": "/images/WEBP/all-in-one-dj-midi-controller/denon-mc2000.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Controls & Buttons", "Keys & Pads", "Ports", "Features"], "propScore": [0.7509406978772851, 0.42553160641793936, 1, 0.29629629629629634, 0.7233770386952351]}, {"name": "DJ-Tech DJ For All", "score": 24, "image": "/images/WEBP/all-in-one-dj-midi-controller/dj-tech-dj-for-all.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Controls & Buttons", "Keys & Pads", "Ports", "Features"], "propScore": [0.7742180597953996, 0.27863908757007533, 0.5, 0, 0.5412188373354098]}, {"name": "DJ-Tech Mix-101", "score": 20, "image": "/images/WEBP/all-in-one-dj-midi-controller/dj-tech-mix-101.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Controls & Buttons", "Keys & Pads", "Ports", "Features"], "propScore": [0.8403008123338995, 0.2049149429731297, 0.375, 0, 0.48108341096480867]}, {"name": "DJ-Tech i-Mix", "score": 35, "image": "/images/WEBP/all-in-one-dj-midi-controller/dj-tech-i-mix.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Controls & Buttons", "Keys & Pads", "Ports", "Features"], "propScore": [0.7427606539830247, 0.4365938526966945, 0.75, 0, 0.48108341096480867]}, {"name": "Gemini FirstMix", "score": 20, "image": "/images/WEBP/all-in-one-dj-midi-controller/gemini-firstmix.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Controls & Buttons", "Keys & Pads", "Ports", "Features"], "propScore": [0.727304295750737, 0.10986854823120047, 0.5, 0, 0.48108341096480867]}, {"name": "Hercules DJ Console Mk4", "score": 37, "image": "/images/WEBP/all-in-one-dj-midi-controller/hercules-dj-console-mk4.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Controls & Buttons", "Keys & Pads", "Ports", "Features"], "propScore": [0.7079914872318048, 0.23279045041561958, 0.5, 0.3703703703703704, 0.5574032619123762]}, {"name": "Gemini G4V", "score": 72, "image": "/images/WEBP/all-in-one-dj-midi-controller/gemini-g4v.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Controls & Buttons", "Keys & Pads", "Ports", "Features"], "propScore": [0.7740320724705066, 0.6990769379470327, 1, 0.5592592592592592, 0.8068169704722312]}, {"name": "Hercules DJ Console 4 Mx", "score": 58, "image": "/images/WEBP/all-in-one-dj-midi-controller/hercules-dj-console-4-mx.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Controls & Buttons", "Keys & Pads", "Ports", "Features"], "propScore": [0.7059120067647738, 0.3490527740189445, 1, 0.5925925925925926, 0.7216251164472129]}, {"name": "Hercules DJ 4Set", "score": 35, "image": "/images/WEBP/all-in-one-dj-midi-controller/hercules-dj-4set.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Controls & Buttons", "Keys & Pads", "Ports", "Features"], "propScore": [0.7642346152590885, 0.22028803402281077, 1, 0.2851851851851852, 0.661489690076612]}, {"name": "Hercules DJ Console RMX 2", "score": 65, "image": "/images/WEBP/all-in-one-dj-midi-controller/hercules-dj-console-rmx-2.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Controls & Buttons", "Keys & Pads", "Ports", "Features"], "propScore": [0.7988524488948039, 0.4379856949545718, 1, 0.6370370370370371, 0.719219699392389]}, {"name": "Hercules DJ Control Air Street Edition", "score": 31, "image": "/images/WEBP/all-in-one-dj-midi-controller/hercules-dj-control-air-street-edition.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Controls & Buttons", "Keys & Pads", "Ports", "Features"], "propScore": [0.7857189437862294, 0.3299536052580708, 1, 0.24444444444444446, 0.5412188373354098]}, {"name": "Hercules DJ Control Air Plus", "score": 45, "image": "/images/WEBP/all-in-one-dj-midi-controller/hercules-dj-control-air-plus.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Controls & Buttons", "Keys & Pads", "Ports", "Features"], "propScore": [0.6835898346796113, 0.34792190218441915, 1, 0.46296296296296285, 0.661489690076612]}, {"name": "Hercules DJ Console Rmx", "score": 51, "image": "/images/WEBP/all-in-one-dj-midi-controller/hercules-dj-console-rmx.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Controls & Buttons", "Keys & Pads", "Ports", "Features"], "propScore": [0.6966879232825478, 0.3264836651846124, 0.75, 0.5925925925925926, 0.608570514870483]}, {"name": "Hercules DJ Control Air", "score": 31, "image": "/images/WEBP/all-in-one-dj-midi-controller/hercules-dj-control-air.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Controls & Buttons", "Keys & Pads", "Ports", "Features"], "propScore": [0.8123564782405225, 0.3580997486951479, 1, 0.18888888888888888, 0.5412188373354098]}, {"name": "Hercules DJ Control MP3 e2", "score": 25, "image": "/images/WEBP/all-in-one-dj-midi-controller/hercules-dj-control-mp3-e2.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Controls & Buttons", "Keys & Pads", "Ports", "Features"], "propScore": [0.732219077655721, 0.26609317610670796, 0.5, 0, 0.48108341096480867]}, {"name": "Hercules DJ Control Instinct", "score": 31, "image": "/images/WEBP/all-in-one-dj-midi-controller/hercules-dj-control-instinct.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Controls & Buttons", "Keys & Pads", "Ports", "Features"], "propScore": [0.7969469623302251, 0.18786970809974868, 0.75, 0.24629629629629632, 0.608570514870483]}, {"name": "Hercules DJ Control Instinct Street Edition", "score": 30, "image": "/images/WEBP/all-in-one-dj-midi-controller/hercules-dj-control-instinct-street-edition.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Controls & Buttons", "Keys & Pads", "Ports", "Features"], "propScore": [0.7969469623302251, 0.194906243959018, 1, 0.21851851851851853, 0.6013542637060109]}, {"name": "Hercules DJ Control MP3 LE", "score": 22, "image": "/images/WEBP/all-in-one-dj-midi-controller/hercules-dj-control-mp3-le.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Controls & Buttons", "Keys & Pads", "Ports", "Features"], "propScore": [0.7567691329284779, 0.2058380050260971, 0.5, 0, 0.48108341096480867]}, {"name": "Ion Audio Discover DJ", "score": 19, "image": "/images/WEBP/all-in-one-dj-midi-controller/ion-audio-discover-dj.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Controls & Buttons", "Keys & Pads", "Ports", "Features"], "propScore": [0.47287831033968386, 0.10997970230040598, 0.5, 0, 0.4209479845942076]}, {"name": "M-Audio Torq Xponent", "score": 48, "image": "/images/WEBP/all-in-one-dj-midi-controller/m-audio-torq-xponent.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Controls & Buttons", "Keys & Pads", "Ports", "Features"], "propScore": [0.8728612877939809, 0.5784602745022231, 1, 0.48148148148148157, 0.5574032619123761]}, {"name": "Ion Audio DJ2GO", "score": 25, "image": "/images/WEBP/all-in-one-dj-midi-controller/ion-audio-dj2go.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Controls & Buttons", "Keys & Pads", "Ports", "Features"], "propScore": [0.9288472458390014, 0.14419099168760877, 0.5, 0, 0.4209479845942076]}, {"name": "Native Instruments Traktor Kontrol S4 MK2", "score": 88, "image": "/images/WEBP/all-in-one-dj-midi-controller/native-instruments-traktor-kontrol-s4-mk2.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Controls & Buttons", "Keys & Pads", "Ports", "Features"], "propScore": [0.8379564652507728, 0.86207229847284, 1, 0.6074074074074074, 0.8298688839142949]}, {"name": "MixVibes U-Mix Control Pro 2", "score": 40, "image": "/images/WEBP/all-in-one-dj-midi-controller/mixvibes-u-mix-control-pro-2.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Controls & Buttons", "Keys & Pads", "Ports", "Features"], "propScore": [0.775431700892717, 0.47090179779624985, 1, 0.5259259259259259, 0.502078669651423]}, {"name": "MixVibes U-Mix Control 2", "score": 25, "image": "/images/WEBP/all-in-one-dj-midi-controller/mixvibes-u-mix-control-2.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Controls & Buttons", "Keys & Pads", "Ports", "Features"], "propScore": [0.7976112469352378, 0.36242509182292676, 1, 0, 0.4209479845942076]}, {"name": "Native Instruments Traktor Kontrol S2", "score": 58, "image": "/images/WEBP/all-in-one-dj-midi-controller/native-instruments-traktor-kontrol-s2.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Controls & Buttons", "Keys & Pads", "Ports", "Features"], "propScore": [0.9274648270216144, 0.3778900057993428, 1, 0.3407407407407408, 0.719219699392389]}, {"name": "Numark 4TRAK", "score": 89, "image": "/images/WEBP/all-in-one-dj-midi-controller/numark-4trak.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Controls & Buttons", "Keys & Pads", "Ports", "Features"], "propScore": [0.7310768274005784, 0.7887686062246281, 1, 0.8814814814814814, 0.8298688839142949]}, {"name": "Numark DJ 2 Go", "score": 25, "image": "/images/WEBP/all-in-one-dj-midi-controller/numark-dj-2-go.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Controls & Buttons", "Keys & Pads", "Ports", "Features"], "propScore": [0.9288472458390014, 0.14419099168760877, 0.5, 0, 0.4209479845942076]}, {"name": "Novation Twitch", "score": 56, "image": "/images/WEBP/all-in-one-dj-midi-controller/novation-twitch.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Controls & Buttons", "Keys & Pads", "Ports", "Features"], "propScore": [0.9252222711407934, 0.4950270635994588, 0.25, 0.5407407407407409, 0.7787016309561882]}, {"name": "Native Instruments Traktor Kontrol S4", "score": 80, "image": "/images/WEBP/all-in-one-dj-midi-controller/native-instruments-traktor-kontrol-s4.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Controls & Buttons", "Keys & Pads", "Ports", "Features"], "propScore": [0.8726966717824174, 0.5273873960951092, 1, 0.5185185185185185, 0.8298688839142949]}, {"name": "Numark iDJ Pro", "score": 45, "image": "/images/WEBP/all-in-one-dj-midi-controller/numark-idj-pro.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Controls & Buttons", "Keys & Pads", "Ports", "Features"], "propScore": [0.625250803164175, 0.28134061473033056, 1, 0.5962962962962963, 0.48108341096480867]}, {"name": "Numark iDJ3", "score": 34, "image": "/images/WEBP/all-in-one-dj-midi-controller/numark-idj3.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Controls & Buttons", "Keys & Pads", "Ports", "Features"], "propScore": [0.6633720993180718, 0.26483665184612415, 1, 0.2740740740740741, 0.5762978360515938]}, {"name": "Numark iDJ Live II", "score": 29, "image": "/images/WEBP/all-in-one-dj-midi-controller/numark-idj-live-ii.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Controls & Buttons", "Keys & Pads", "Ports", "Features"], "propScore": [0.7820176668230735, 0.10451382176686644, 0.5, 0, 0.6013542637060109]}, {"name": "Numark Mixtrack II", "score": 39, "image": "/images/WEBP/all-in-one-dj-midi-controller/numark-mixtrack-ii.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Controls & Buttons", "Keys & Pads", "Ports", "Features"], "propScore": [0.7261418601068697, 0.5020684322443456, 1, 0, 0.6013542637060109]}, {"name": "Numark Mixtrack Pro II", "score": 52, "image": "/images/WEBP/all-in-one-dj-midi-controller/numark-mixtrack-pro-ii.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Controls & Buttons", "Keys & Pads", "Ports", "Features"], "propScore": [0.7254093441875081, 0.5293978349120433, 1, 0.4407407407407407, 0.7216251164472129]}, {"name": "Numark Mixtrack Quad", "score": 52, "image": "/images/WEBP/all-in-one-dj-midi-controller/numark-mixtrack-quad.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Controls & Buttons", "Keys & Pads", "Ports", "Features"], "propScore": [0.5322321466034495, 0.5744297312971196, 1, 0.4518518518518518, 0.7216251164472129]}, {"name": "Numark Mixtrack", "score": 28, "image": "/images/WEBP/all-in-one-dj-midi-controller/numark-mixtrack.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Controls & Buttons", "Keys & Pads", "Ports", "Features"], "propScore": [0.5564582564232198, 0.3478639087570076, 1, 0, 0.5412188373354098]}, {"name": "Numark Mixtrack Pro", "score": 42, "image": "/images/WEBP/all-in-one-dj-midi-controller/numark-mixtrack-pro.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Controls & Buttons", "Keys & Pads", "Ports", "Features"], "propScore": [0.7247478187227405, 0.3513821766866423, 1, 0.31481481481481477, 0.661489690076612]}, {"name": "Numark N4", "score": 62, "image": "/images/WEBP/all-in-one-dj-midi-controller/numark-n4.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Controls & Buttons", "Keys & Pads", "Ports", "Features"], "propScore": [0.8551138768266826, 0.5032476319350473, 1, 0.8148148148148148, 0.55324592260953]}, {"name": "Numark NS6", "score": 78, "image": "/images/WEBP/all-in-one-dj-midi-controller/numark-ns6.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Controls & Buttons", "Keys & Pads", "Ports", "Features"], "propScore": [0.7676989194900441, 0.4925381790063793, 1, 0.8592592592592593, 0.774544291653342]}, {"name": "Numark NS7FX", "score": 54, "image": "/images/WEBP/all-in-one-dj-midi-controller/numark-ns7fx.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Controls & Buttons", "Keys & Pads", "Ports", "Features"], "propScore": [0.8492827150090221, 0.3374154262516915, 0.75, 0.7370370370370369, 0.663895107131436]}, {"name": "Numark NS7II", "score": 97, "image": "/images/WEBP/all-in-one-dj-midi-controller/numark-ns7ii.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Controls & Buttons", "Keys & Pads", "Ports", "Features"], "propScore": [0.5882461645608801, 0.8475981055480379, 1, 0.8592592592592593, 0.940518068436201]}, {"name": "Pioneer DDJ-SB", "score": 53, "image": "/images/WEBP/all-in-one-dj-midi-controller/pioneer-ddj-sb.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Controls & Buttons", "Keys & Pads", "Ports", "Features"], "propScore": [0.7049899270680723, 0.45460081190798385, 1, 0.4407407407407407, 0.7216251164472129]}, {"name": "Pioneer DDJ-ERGO-K Limited", "score": 60, "image": "/images/WEBP/all-in-one-dj-midi-controller/pioneer-ddj-ergo-k-limited.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Controls & Buttons", "Keys & Pads", "Ports", "Features"], "propScore": [0.6166272768237965, 0.4958341387976031, 1, 0.5171717171717173, 0.7787016309561882]}, {"name": "Pioneer DDJ-ERGO-V", "score": 58, "image": "/images/WEBP/all-in-one-dj-midi-controller/pioneer-ddj-ergo-v.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Controls & Buttons", "Keys & Pads", "Ports", "Features"], "propScore": [0.6166272768237965, 0.4958341387976031, 1, 0.5148148148148147, 0.7787016309561882]}, {"name": "Pioneer DDJ-S1", "score": 66, "image": "/images/WEBP/all-in-one-dj-midi-controller/pioneer-ddj-s1.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Controls & Buttons", "Keys & Pads", "Ports", "Features"], "propScore": [0.7461080847513708, 0.5051952445389524, 1, 0.6092592592592592, 0.7787016309561882]}, {"name": "Pioneer DDJ-SZ", "score": 97, "image": "/images/WEBP/all-in-one-dj-midi-controller/pioneer-ddj-sz.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Controls & Buttons", "Keys & Pads", "Ports", "Features"], "propScore": [1, 0.8272907403827566, 1, 0.9407407407407408, 0.885193476175248]}, {"name": "Pioneer DDJ-T1", "score": 66, "image": "/images/WEBP/all-in-one-dj-midi-controller/pioneer-ddj-t1.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Controls & Buttons", "Keys & Pads", "Ports", "Features"], "propScore": [0.54714048292124, 0.6402426058380051, 1, 0.5407407407407409, 0.7787016309561882]}, {"name": "Pioneer DDJ-SR", "score": 75, "image": "/images/WEBP/all-in-one-dj-midi-controller/pioneer-ddj-sr.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Controls & Buttons", "Keys & Pads", "Ports", "Features"], "propScore": [0.8309970000488406, 0.6148076551324184, 1, 0.6407407407407407, 0.8418959691884152]}, {"name": "Pioneer DDJ-SX", "score": 100, "image": "/images/WEBP/all-in-one-dj-midi-controller/pioneer-ddj-sx.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Controls & Buttons", "Keys & Pads", "Ports", "Features"], "propScore": [0.7647850724476196, 0.8519814421032283, 1, 0.9074074074074076, 0.885193476175248]}, {"name": "Pioneer DDJ-WeGo", "score": 46, "image": "/images/WEBP/all-in-one-dj-midi-controller/pioneer-ddj-wego.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Controls & Buttons", "Keys & Pads", "Ports", "Features"], "propScore": [0.7540762940399246, 0.30391455635028036, 1, 0.4314814814814815, 0.7233770386952351]}, {"name": "Pioneer DDJ-WeGo2", "score": 45, "image": "/images/WEBP/all-in-one-dj-midi-controller/pioneer-ddj-wego2.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Controls & Buttons", "Keys & Pads", "Ports", "Features"], "propScore": [0.7388511843059821, 0.30391455635028036, 1, 0.4407407407407407, 0.7216251164472129]}, {"name": "Pioneer XDJ-AERO", "score": 60, "image": "/images/WEBP/all-in-one-dj-midi-controller/pioneer-xdj-aero.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Controls & Buttons", "Keys & Pads", "Ports", "Features"], "propScore": [0.8289738349545901, 0.4142712159288615, 1, 0.562962962962963, 0.663895107131436]}, {"name": "Reloop BeatMix LTD.", "score": 52, "image": "/images/WEBP/all-in-one-dj-midi-controller/reloop-beatmix-ltd.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Controls & Buttons", "Keys & Pads", "Ports", "Features"], "propScore": [0.7465930147097454, 0.37275758747341975, 1, 0.4037037037037037, 0.781760542817814]}, {"name": "Reloop BeatMix", "score": 52, "image": "/images/WEBP/all-in-one-dj-midi-controller/reloop-beatmix.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Controls & Buttons", "Keys & Pads", "Ports", "Features"], "propScore": [0.7465930147097454, 0.37275758747341975, 1, 0.4037037037037037, 0.781760542817814]}, {"name": "Reloop Beatpad", "score": 58, "image": "/images/WEBP/all-in-one-dj-midi-controller/reloop-beatpad.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Controls & Buttons", "Keys & Pads", "Ports", "Features"], "propScore": [0.6910865363737443, 0.4711579354339842, 1, 0.5740740740740741, 0.8418959691884152]}, {"name": "Reloop Digital Jockey 2 IE", "score": 46, "image": "/images/WEBP/all-in-one-dj-midi-controller/reloop-digital-jockey-2-ie.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Controls & Buttons", "Keys & Pads", "Ports", "Features"], "propScore": [0.747918708758719, 0.5278803402281075, 1, 0.29629629629629634, 0.6127278541733291]}, {"name": "Reloop Digital Jockey 2 ME", "score": 65, "image": "/images/WEBP/all-in-one-dj-midi-controller/reloop-digital-jockey-2-me.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Controls & Buttons", "Keys & Pads", "Ports", "Features"], "propScore": [0.747918708758719, 0.3647448289193892, 1, 0.6925925925925926, 0.719219699392389]}, {"name": "Reloop Mixage IE", "score": 50, "image": "/images/WEBP/all-in-one-dj-midi-controller/reloop-mixage-ie.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Controls & Buttons", "Keys & Pads", "Ports", "Features"], "propScore": [0.9635378513268493, 0.3549004446162769, 1, 0.262962962962963, 0.6680524464342821]}, {"name": "Reloop Mixage CE LTD", "score": 43, "image": "/images/WEBP/all-in-one-dj-midi-controller/reloop-mixage-ce-ltd.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Controls & Buttons", "Keys & Pads", "Ports", "Features"], "propScore": [0.9645506853365184, 0.3061279721631549, 1, 0, 0.6013542637060109]}, {"name": "Reloop Jockey 3 ME", "score": 90, "image": "/images/WEBP/all-in-one-dj-midi-controller/reloop-jockey-3-me.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Controls & Buttons", "Keys & Pads", "Ports", "Features"], "propScore": [0.9107142332647564, 0.6911898318190606, 1, 0.7037037037037037, 0.885193476175248]}, {"name": "Reloop Jockey 3 Remix", "score": 85, "image": "/images/WEBP/all-in-one-dj-midi-controller/reloop-jockey-3-remix.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Controls & Buttons", "Keys & Pads", "Ports", "Features"], "propScore": [0.8730768492139616, 0.6911898318190606, 1, 0.6925925925925926, 0.885193476175248]}, {"name": "Reloop Terminal Mix 4 Serato", "score": 77, "image": "/images/WEBP/all-in-one-dj-midi-controller/reloop-terminal-mix-4-serato.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Controls & Buttons", "Keys & Pads", "Ports", "Features"], "propScore": [0.8359038117105763, 0.6820268702880341, 1, 0.6703703703703704, 0.8418959691884152]}, {"name": "Reloop Terminal Mix 4", "score": 77, "image": "/images/WEBP/all-in-one-dj-midi-controller/reloop-terminal-mix-4.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Controls & Buttons", "Keys & Pads", "Ports", "Features"], "propScore": [0.8359038117105763, 0.6820268702880341, 1, 0.6703703703703704, 0.8418959691884152]}, {"name": "Reloop Terminal Mix 2", "score": 66, "image": "/images/WEBP/all-in-one-dj-midi-controller/reloop-terminal-mix-2.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Controls & Buttons", "Keys & Pads", "Ports", "Features"], "propScore": [0.8992126975035722, 0.49935240672723763, 1, 0.6703703703703704, 0.781760542817814]}, {"name": "Reloop Terminal Mix 2 Serato", "score": 66, "image": "/images/WEBP/all-in-one-dj-midi-controller/reloop-terminal-mix-2-serato.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Controls & Buttons", "Keys & Pads", "Ports", "Features"], "propScore": [0.8992126975035722, 0.49935240672723763, 1, 0.6703703703703704, 0.781760542817814]}, {"name": "Stanton DJC.4", "score": 59, "image": "/images/WEBP/all-in-one-dj-midi-controller/stanton-djc-4.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Controls & Buttons", "Keys & Pads", "Ports", "Features"], "propScore": [0.8972738676365759, 0.5399574714865649, 1, 0.39629629629629637, 0.7233770386952351]}, {"name": "Stanton SC System 3", "score": 14, "image": "/images/WEBP/all-in-one-dj-midi-controller/stanton-sc-system-3.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Controls & Buttons", "Keys & Pads", "Ports", "Features"], "propScore": [0.7048322572236987, 0, 0.3333333333333333, 0, 0.36081255822360647]}, {"name": "Reloop Terminal Mix 8", "score": 79, "image": "/images/WEBP/all-in-one-dj-midi-controller/reloop-terminal-mix-8.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Controls & Buttons", "Keys & Pads", "Ports", "Features"], "propScore": [0.8881880620610327, 0.7465445582833947, 1, 0.6703703703703704, 0.781760542817814]}, {"name": "Stanton SCS.4DJ", "score": 42, "image": "/images/WEBP/all-in-one-dj-midi-controller/stanton-scs-4dj.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Controls & Buttons", "Keys & Pads", "Ports", "Features"], "propScore": [0.9577089009976341, 0.2591484631741736, 1, 0.5185185185185185, 0.387272145826671]}, {"name": "Vestax Typhoon", "score": 49, "image": "/images/WEBP/all-in-one-dj-midi-controller/vestax-typhoon.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Controls & Buttons", "Keys & Pads", "Ports", "Features"], "propScore": [0.985063148684744, 0.3822975062826214, 1, 0.262962962962963, 0.663895107131436]}, {"name": "Vestax Spin 2", "score": 48, "image": "/images/WEBP/all-in-one-dj-midi-controller/vestax-spin-2.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Controls & Buttons", "Keys & Pads", "Ports", "Features"], "propScore": [0.911278772137506, 0.29590179779624975, 1, 0.2074074074074074, 0.781760542817814]}, {"name": "Vestax Spin", "score": 44, "image": "/images/WEBP/all-in-one-dj-midi-controller/vestax-spin.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Controls & Buttons", "Keys & Pads", "Ports", "Features"], "propScore": [0.9906907968088905, 0.3822975062826214, 1, 0.262962962962963, 0.49792133034857694]}, {"name": "Vestax Typhoon Black", "score": 54, "image": "/images/WEBP/all-in-one-dj-midi-controller/vestax-typhoon-black.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Controls & Buttons", "Keys & Pads", "Ports", "Features"], "propScore": [0.985063148684744, 0.3822975062826214, 1, 0.262962962962963, 0.719219699392389]}, {"name": "Vestax VCI-380 Red", "score": 73, "image": "/images/WEBP/all-in-one-dj-midi-controller/vestax-vci-380-red.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Controls & Buttons", "Keys & Pads", "Ports", "Features"], "propScore": [0.8908841731637869, 0.5299487724724531, 0.75, 0.7962962962962963, 0.7787016309561882]}, {"name": "Vestax VCI-100MKII", "score": 58, "image": "/images/WEBP/all-in-one-dj-midi-controller/vestax-vci-100mkii.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Controls & Buttons", "Keys & Pads", "Ports", "Features"], "propScore": [0.7365682387308026, 0.3255557703460275, 1, 0.337037037037037, 0.719219699392389]}, {"name": "Vestax VCI-100", "score": 45, "image": "/images/WEBP/all-in-one-dj-midi-controller/vestax-vci-100.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Controls & Buttons", "Keys & Pads", "Ports", "Features"], "propScore": [0.5669068724701749, 0.285723951285521, 1, 0, 0.661489690076612]}, {"name": "Vestax VCI-300MKII", "score": 57, "image": "/images/WEBP/all-in-one-dj-midi-controller/vestax-vci-300mkii.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Controls & Buttons", "Keys & Pads", "Ports", "Features"], "propScore": [0.9354373912268654, 0.28339938140344095, 1, 0.5296296296296296, 0.6915574032619125]}, {"name": "Vestax VCI-400", "score": 98, "image": "/images/WEBP/all-in-one-dj-midi-controller/vestax-vci-400.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Controls & Buttons", "Keys & Pads", "Ports", "Features"], "propScore": [0.8653568159109101, 0.8663879760293833, 1, 0.5666666666666667, 1]}, {"name": "Vestax VCI-400DJ", "score": 90, "image": "/images/WEBP/all-in-one-dj-midi-controller/vestax-vci-400dj.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Controls & Buttons", "Keys & Pads", "Ports", "Features"], "propScore": [0.8653568159109101, 0.8663879760293833, 1, 0.6555555555555556, 0.889350815478094]}, {"name": "Vestax VCI-380", "score": 73, "image": "/images/WEBP/all-in-one-dj-midi-controller/vestax-vci-380.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Controls & Buttons", "Keys & Pads", "Ports", "Features"], "propScore": [0.8908841731637869, 0.5299487724724531, 0.75, 0.7962962962962963, 0.7787016309561882]}, {"name": "Vestax VCI-380 White", "score": 73, "image": "/images/WEBP/all-in-one-dj-midi-controller/vestax-vci-380-white.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Controls & Buttons", "Keys & Pads", "Ports", "Features"], "propScore": [0.8908841731637869, 0.5299487724724531, 0.75, 0.7962962962962963, 0.7787016309561882]}]}
data/dj-software.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"data": [{"name": "Aria", "score": 20, "image": "/images/WEBP/dj-software/aria.front.medium2x.1576684641045.webp", "propGroups": ["Compatibility", "Effects", "Audio processing", "File types", "Features"], "propScore": [0.16666666666666666, 0.23076923076923075, 0.24361581920903955, 0.6, 0.3333333333333333]}, {"name": "Algoriddim Djay", "score": 77, "image": "/images/WEBP/dj-software/algoriddim-djay.front.medium2x.1576684641045.webp", "propGroups": ["Compatibility", "Effects", "Audio processing", "File types", "Features"], "propScore": [0.6666666666666666, 0.8136752136752138, 0.6655367231638418, 0.8, 0.6666666666666666]}, {"name": "Ableton Live 9", "score": 77, "image": "/images/WEBP/dj-software/ableton-live-9.front.medium2x.1576684641045.webp", "propGroups": ["Compatibility", "Effects", "Audio processing", "File types", "Features"], "propScore": [0.6666666666666666, 1, 0.6745762711864407, 0.6, 0.5833333333333333]}, {"name": "Admix DJ", "score": 21, "image": "/images/WEBP/dj-software/admix-dj.front.medium2x.1576684641045.webp", "propGroups": ["Compatibility", "Effects", "Audio processing", "File types", "Features"], "propScore": [0.16666666666666666, 0.07692307692307691, 0.3654237288135593, 0.4, 0.25]}, {"name": "Atomix VirtualDJ Pro Full", "score": 73, "image": "/images/WEBP/dj-software/atomix-virtualdj-pro-full.front.medium2x.1576684641045.webp", "propGroups": ["Compatibility", "Effects", "Audio processing", "File types", "Features"], "propScore": [0.5, 0.5958974358974359, 0.775141242937853, 1, 1]}, {"name": "Atomix VirtualDJ Home", "score": 55, "image": "/images/WEBP/dj-software/atomix-virtualdj-home.front.medium2x.1576684641045.webp", "propGroups": ["Compatibility", "Effects", "Audio processing", "File types", "Features"], "propScore": [0.3333333333333333, 0.7692307692307693, 0.8858757062146893, 0, 0.3333333333333333]}, {"name": "Atomix VirtualDJ Pro Basic", "score": 55, "image": "/images/WEBP/dj-software/atomix-virtualdj-pro-basic.front.medium2x.1576684641045.webp", "propGroups": ["Compatibility", "Effects", "Audio processing", "File types", "Features"], "propScore": [0.5, 0.4615384615384615, 0.775141242937853, 0.2, 0.6666666666666666]}, {"name": "Atomix VirtualDJ LE", "score": 28, "image": "/images/WEBP/dj-software/atomix-virtualdj-le.front.medium2x.1576684641045.webp", "propGroups": ["Compatibility", "Effects", "Audio processing", "File types", "Features"], "propScore": [0.3333333333333333, 0.30769230769230765, 0.3355932203389831, 0, 0.5]}, {"name": "Disco XT", "score": 48, "image": "/images/WEBP/dj-software/disco-xt.front.medium2x.1576684641045.webp", "propGroups": ["Compatibility", "Effects", "Audio processing", "File types", "Features"], "propScore": [0.5, 0.5839316239316239, 0.5548022598870057, 1, 0.25]}, {"name": "Club DJ Pro VJ6", "score": 50, "image": "/images/WEBP/dj-software/club-dj-pro-vj6.front.medium2x.1576684641045.webp", "propGroups": ["Compatibility", "Effects", "Audio processing", "File types", "Features"], "propScore": [0.3333333333333333, 0.4615384615384615, 0.4508474576271186, 0.2, 0.5833333333333333]}, {"name": "DJ Mixer Professional", "score": 80, "image": "/images/WEBP/dj-software/dj-mixer-professional.front.medium2x.1576684641045.webp", "propGroups": ["Compatibility", "Effects", "Audio processing", "File types", "Features"], "propScore": [0.6666666666666666, 0.8088888888888888, 0.8892655367231638, 1, 0.6666666666666666]}, {"name": "DJ Mixer Express", "score": 51, "image": "/images/WEBP/dj-software/dj-mixer-express.front.medium2x.1576684641045.webp", "propGroups": ["Compatibility", "Effects", "Audio processing", "File types", "Features"], "propScore": [0.5, 0.6605128205128205, 0.5548022598870057, 0.6, 0.3333333333333333]}, {"name": "Image Line Deckadance mobile", "score": 24, "image": "/images/WEBP/dj-software/image-line-deckadance-mobile.front.medium2x.1576684641045.webp", "propGroups": ["Compatibility", "Effects", "Audio processing", "File types", "Features"], "propScore": [0.3333333333333333, 0.4615384615384615, 0.22259887005649714, 0.2, 0.25]}, {"name": "DJ ProDecks", "score": 24, "image": "/images/WEBP/dj-software/dj-prodecks.front.medium2x.1576684641045.webp", "propGroups": ["Compatibility", "Effects", "Audio processing", "File types", "Features"], "propScore": [0.16666666666666666, 0.4615384615384615, 0.22259887005649714, 0.6, 0.08333333333333333]}, {"name": "DJ ProMixer", "score": 43, "image": "/images/WEBP/dj-software/dj-promixer.front.medium2x.1576684641045.webp", "propGroups": ["Compatibility", "Effects", "Audio processing", "File types", "Features"], "propScore": [0.16666666666666666, 0.3661538461538461, 0.4872316384180791, 1, 0.5]}, {"name": "FutureDecks DJ Pro", "score": 69, "image": "/images/WEBP/dj-software/futuredecks-dj-pro.front.medium2x.1576684641045.webp", "propGroups": ["Compatibility", "Effects", "Audio processing", "File types", "Features"], "propScore": [0.5, 0.8064957264957265, 0.7785310734463277, 0.8, 0.6666666666666666]}, {"name": "MixMeister Express", "score": 9, "image": "/images/WEBP/dj-software/mixmeister-express.front.medium2x.1576684641045.webp", "propGroups": ["Compatibility", "Effects", "Audio processing", "File types", "Features"], "propScore": [0.5, 0, 0, 0.6, 0.16666666666666666]}, {"name": "Image Line FL Studio Sound Editing Software", "score": 57, "image": "/images/WEBP/dj-software/image-line-fl-studio-sound-editing-software.front.medium2x.1576684641045.webp", "propGroups": ["Compatibility", "Effects", "Audio processing", "File types", "Features"], "propScore": [0.5, 0.7692307692307693, 0.3654237288135593, 0.4, 0.3333333333333333]}, {"name": "Magix Digital DJ 2", "score": 31, "image": "/images/WEBP/dj-software/magix-digital-dj-2.front.medium2x.1576684641045.webp", "propGroups": ["Compatibility", "Effects", "Audio processing", "File types", "Features"], "propScore": [0.5, 0.4615384615384615, 0.2214689265536723, 0.8, 0.25]}, {"name": "Image Line Deckadance", "score": 58, "image": "/images/WEBP/dj-software/image-line-deckadance.front.medium2x.1576684641045.webp", "propGroups": ["Compatibility", "Effects", "Audio processing", "File types", "Features"], "propScore": [0.6666666666666666, 0.4475213675213675, 0.6655367231638418, 1, 0.6666666666666666]}, {"name": "MixMeister Fusion LE", "score": 9, "image": "/images/WEBP/dj-software/mixmeister-fusion-le.front.medium2x.1576684641045.webp", "propGroups": ["Compatibility", "Effects", "Audio processing", "File types", "Features"], "propScore": [0.3333333333333333, 0, 0, 0.6, 0.16666666666666666]}, {"name": "MixVibes Cross DJ", "score": 64, "image": "/images/WEBP/dj-software/mixvibes-cross-dj.front.medium2x.1576684641045.webp", "propGroups": ["Compatibility", "Effects", "Audio processing", "File types", "Features"], "propScore": [0.5, 0.6078632478632479, 0.5570621468926554, 1, 0.5833333333333333]}, {"name": "Mixxx", "score": 84, "image": "/images/WEBP/dj-software/mixxx.front.medium2x.1576684641045.webp", "propGroups": ["Compatibility", "Effects", "Audio processing", "File types", "Features"], "propScore": [0.8333333333333334, 0.6153846153846153, 0.6677966101694915, 1, 0.7499999999999999]}, {"name": "Native Instruments Traktor LE 2", "score": 32, "image": "/images/WEBP/dj-software/native-instruments-traktor-le-2.front.medium2x.1576684641045.webp", "propGroups": ["Compatibility", "Effects", "Audio processing", "File types", "Features"], "propScore": [0.5, 0.14358974358974358, 0.111864406779661, 1, 0.5]}, {"name": "Native Instruments Traktor Pro 2", "score": 93, "image": "/images/WEBP/dj-software/native-instruments-traktor-pro-2.front.medium2x.1576684641045.webp", "propGroups": ["Compatibility", "Effects", "Audio processing", "File types", "Features"], "propScore": [0.5, 0.9333333333333333, 0.8892655367231638, 1, 0.5833333333333333]}, {"name": "Native Instruments Traktor Scratch Pro 2", "score": 100, "image": "/images/WEBP/dj-software/native-instruments-traktor-scratch-pro-2.front.medium2x.1595322039768.webp", "propGroups": ["Compatibility", "Effects", "Audio processing", "File types", "Features"], "propScore": [0.5, 0.9333333333333333, 0.8892655367231638, 1, 0.9166666666666666]}, {"name": "PCDJ DEX 2", "score": 51, "image": "/images/WEBP/dj-software/pcdj-dex-2.front.medium2x.1576684641045.webp", "propGroups": ["Compatibility", "Effects", "Audio processing", "File types", "Features"], "propScore": [0.5, 0.5073504273504273, 0.6677966101694915, 0.8, 0.6666666666666666]}, {"name": "Numark Cue", "score": 32, "image": "/images/WEBP/dj-software/numark-cue.front.medium2x.1576684641045.webp", "propGroups": ["Compatibility", "Effects", "Audio processing", "File types", "Features"], "propScore": [0.6666666666666666, 0.38461538461538464, 0.111864406779661, 0.6, 0.6666666666666666]}, {"name": "Pioneer Rekordbox", "score": 39, "image": "/images/WEBP/dj-software/pioneer-rekordbox.front.medium2x.1576684641045.webp", "propGroups": ["Compatibility", "Effects", "Audio processing", "File types", "Features"], "propScore": [0.3333333333333333, 0.5384615384615384, 0.4872316384180791, 0.2, 0.16666666666666666]}, {"name": "Rockit Pro", "score": 26, "image": "/images/WEBP/dj-software/rockit-pro.front.medium2x.1576684641045.webp", "propGroups": ["Compatibility", "Effects", "Audio processing", "File types", "Features"], "propScore": [0.3333333333333333, 0.30769230769230765, 0.22259887005649714, 0.4, 0.25]}, {"name": "PCDJ Red Mobile 2", "score": 60, "image": "/images/WEBP/dj-software/pcdj-red-mobile-2.front.medium2x.1576684641045.webp", "propGroups": ["Compatibility", "Effects", "Audio processing", "File types", "Features"], "propScore": [0.5, 0.5911111111111111, 0.5548022598870057, 1, 0.6666666666666666]}, {"name": "Pioneer SVJ-DL01", "score": 45, "image": "/images/WEBP/dj-software/pioneer-svj-dl01.front.medium2x.1576684641045.webp", "propGroups": ["Compatibility", "Effects", "Audio processing", "File types", "Features"], "propScore": [0.16666666666666666, 0.5217094017094017, 0.7308474576271186, 0.4, 0.3333333333333333]}, {"name": "Serato Scratch Live", "score": 58, "image": "/images/WEBP/dj-software/serato-scratch-live.front.medium2x.1576684641045.webp", "propGroups": ["Compatibility", "Effects", "Audio processing", "File types", "Features"], "propScore": [0.3333333333333333, 0.38461538461538464, 0.7785310734463277, 0.8, 0.5833333333333333]}, {"name": "Ultramixer 4", "score": 64, "image": "/images/WEBP/dj-software/ultramixer-4.front.medium2x.1576684641045.webp", "propGroups": ["Compatibility", "Effects", "Audio processing", "File types", "Features"], "propScore": [1, 0.30769230769230765, 0.7308474576271186, 1, 0.6666666666666666]}, {"name": "Serato DJ", "score": 96, "image": "/images/WEBP/dj-software/serato-dj.front.medium2x.1576684641045.webp", "propGroups": ["Compatibility", "Effects", "Audio processing", "File types", "Features"], "propScore": [0.5, 0.6700854700854699, 1, 1, 0.8333333333333334]}, {"name": "Serato DJ Intro", "score": 51, "image": "/images/WEBP/dj-software/serato-dj-intro.front.medium2x.1576684641045.webp", "propGroups": ["Compatibility", "Effects", "Audio processing", "File types", "Features"], "propScore": [0.5, 0.7418803418803417, 0.22259887005649714, 0.8, 0.4166666666666667]}, {"name": "Zulu DJ Software", "score": 41, "image": "/images/WEBP/dj-software/zulu-dj-software.front.medium2x.1576684641045.webp", "propGroups": ["Compatibility", "Effects", "Audio processing", "File types", "Features"], "propScore": [0.5, 0.38461538461538464, 0.4440677966101695, 0.8, 0.4166666666666667]}]}
data/drawing-tablet.json ADDED
@@ -0,0 +1,1594 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "data": [
3
+ {
4
+ "name": "Gaomon M1220",
5
+ "score": 46,
6
+ "image": "/images/WEBP/drawing-tablet/gaomon-m1220.front.medium2x.1655212725625.webp",
7
+ "propGroups": [
8
+ "General info",
9
+ "Display",
10
+ "Pen",
11
+ "Connectivity"
12
+ ],
13
+ "propScore": [
14
+ 0.40797650454738205,
15
+ 0,
16
+ 0.736734693877551,
17
+ 0.3
18
+ ]
19
+ },
20
+ {
21
+ "name": "Gaomon M106K Pro",
22
+ "score": 46,
23
+ "image": "/images/WEBP/drawing-tablet/gaomon-m106k-pro.front.medium2x.1655203008169.webp",
24
+ "propGroups": [
25
+ "General info",
26
+ "Display",
27
+ "Pen",
28
+ "Connectivity"
29
+ ],
30
+ "propScore": [
31
+ 0.41570893854908225,
32
+ 0,
33
+ 0.736734693877551,
34
+ 0.25
35
+ ]
36
+ },
37
+ {
38
+ "name": "Gaomon M1230",
39
+ "score": 55,
40
+ "image": "/images/WEBP/drawing-tablet/gaomon-m1230.front.medium2x.1655213139118.webp",
41
+ "propGroups": [
42
+ "General info",
43
+ "Display",
44
+ "Pen",
45
+ "Connectivity"
46
+ ],
47
+ "propScore": [
48
+ 0.49690421893154535,
49
+ 0,
50
+ 0.736734693877551,
51
+ 0.3
52
+ ]
53
+ },
54
+ {
55
+ "name": "Gaomon M10K Pro",
56
+ "score": 43,
57
+ "image": "/images/WEBP/drawing-tablet/gaomon-m10k-pro.front.medium2x.1655207874596.webp",
58
+ "propGroups": [
59
+ "General info",
60
+ "Display",
61
+ "Pen",
62
+ "Connectivity"
63
+ ],
64
+ "propScore": [
65
+ 0.383693072823041,
66
+ 0,
67
+ 0.736734693877551,
68
+ 0.25
69
+ ]
70
+ },
71
+ {
72
+ "name": "Gaomon PD1220",
73
+ "score": 53,
74
+ "image": "/images/WEBP/drawing-tablet/gaomon-pd1220.front.medium2x.1655378455846.webp",
75
+ "propGroups": [
76
+ "General info",
77
+ "Display",
78
+ "Pen",
79
+ "Connectivity"
80
+ ],
81
+ "propScore": [
82
+ 0.4431559752957847,
83
+ 0.4483781084562978,
84
+ 0.6572629051620648,
85
+ 0.5
86
+ ]
87
+ },
88
+ {
89
+ "name": "Gaomon PD1161",
90
+ "score": 58,
91
+ "image": "/images/WEBP/drawing-tablet/gaomon-pd1161.front.medium2x.1655298036579.webp",
92
+ "propGroups": [
93
+ "General info",
94
+ "Display",
95
+ "Pen",
96
+ "Connectivity"
97
+ ],
98
+ "propScore": [
99
+ 0.44553812711829127,
100
+ 0.7289488753571374,
101
+ 0.4785714285714286,
102
+ 0.5
103
+ ]
104
+ },
105
+ {
106
+ "name": "Gaomon PD1320",
107
+ "score": 54,
108
+ "image": "/images/WEBP/drawing-tablet/gaomon-pd1320.front.medium2x.1655302959002.webp",
109
+ "propGroups": [
110
+ "General info",
111
+ "Display",
112
+ "Pen",
113
+ "Connectivity"
114
+ ],
115
+ "propScore": [
116
+ 0.48245080866287937,
117
+ 0.44040472793902435,
118
+ 0.6572629051620648,
119
+ 0.5
120
+ ]
121
+ },
122
+ {
123
+ "name": "Gaomon PD156 Pro",
124
+ "score": 60,
125
+ "image": "/images/WEBP/drawing-tablet/gaomon-pd156-pro.front.medium2x.1655299480791.webp",
126
+ "propGroups": [
127
+ "General info",
128
+ "Display",
129
+ "Pen",
130
+ "Connectivity"
131
+ ],
132
+ "propScore": [
133
+ 0.570090337764733,
134
+ 0.6367970518906451,
135
+ 0.6959183673469387,
136
+ 0.3
137
+ ]
138
+ },
139
+ {
140
+ "name": "Gaomon PD2200",
141
+ "score": 69,
142
+ "image": "/images/WEBP/drawing-tablet/gaomon-pd2200.front.medium2x.1655288012578.webp",
143
+ "propGroups": [
144
+ "General info",
145
+ "Display",
146
+ "Pen",
147
+ "Connectivity"
148
+ ],
149
+ "propScore": [
150
+ 0.5974909920855683,
151
+ 0.6544974642588922,
152
+ 0.7571428571428571,
153
+ 0.45
154
+ ]
155
+ },
156
+ {
157
+ "name": "Gaomon PD1561",
158
+ "score": 62,
159
+ "image": "/images/WEBP/drawing-tablet/gaomon-pd1561.front.medium2x.1655291303708.webp",
160
+ "propGroups": [
161
+ "General info",
162
+ "Display",
163
+ "Pen",
164
+ "Connectivity"
165
+ ],
166
+ "propScore": [
167
+ 0.5602168498216621,
168
+ 0.7163966833769757,
169
+ 0.4785714285714286,
170
+ 0.5
171
+ ]
172
+ },
173
+ {
174
+ "name": "Gaomon S620",
175
+ "score": 42,
176
+ "image": "/images/WEBP/drawing-tablet/gaomon-s620.front.medium2x.1655207051053.webp",
177
+ "propGroups": [
178
+ "General info",
179
+ "Display",
180
+ "Pen",
181
+ "Connectivity"
182
+ ],
183
+ "propScore": [
184
+ 0.33044850268606324,
185
+ 0,
186
+ 0.736734693877551,
187
+ 0.25
188
+ ]
189
+ },
190
+ {
191
+ "name": "Gaomon PD1560",
192
+ "score": 64,
193
+ "image": "/images/WEBP/drawing-tablet/gaomon-pd1560.front.medium2x.1655379455835.webp",
194
+ "propGroups": [
195
+ "General info",
196
+ "Display",
197
+ "Pen",
198
+ "Connectivity"
199
+ ],
200
+ "propScore": [
201
+ 0.5437685793955249,
202
+ 0.6494033246716755,
203
+ 0.6785714285714285,
204
+ 0.5
205
+ ]
206
+ },
207
+ {
208
+ "name": "Huion H420",
209
+ "score": 18,
210
+ "image": "/images/WEBP/drawing-tablet/huion-h420.front.medium2x.1576684641045.webp",
211
+ "propGroups": [
212
+ "General info",
213
+ "Display",
214
+ "Pen",
215
+ "Connectivity"
216
+ ],
217
+ "propScore": [
218
+ 0.14375398686769478,
219
+ 0,
220
+ 0.1916010498687664,
221
+ 0
222
+ ]
223
+ },
224
+ {
225
+ "name": "Gaomon S830",
226
+ "score": 42,
227
+ "image": "/images/WEBP/drawing-tablet/gaomon-s830.front.medium2x.1655216162129.webp",
228
+ "propGroups": [
229
+ "General info",
230
+ "Display",
231
+ "Pen",
232
+ "Connectivity"
233
+ ],
234
+ "propScore": [
235
+ 0.35727216538234136,
236
+ 0,
237
+ 0.736734693877551,
238
+ 0.25
239
+ ]
240
+ },
241
+ {
242
+ "name": "Huion GT-190",
243
+ "score": 19,
244
+ "image": "/images/WEBP/drawing-tablet/huion-gt-190.front.medium2x.1576684641045.webp",
245
+ "propGroups": [
246
+ "General info",
247
+ "Display",
248
+ "Pen",
249
+ "Connectivity",
250
+ "Miscellaneous"
251
+ ],
252
+ "propScore": [
253
+ 0,
254
+ 0.18382825837024977,
255
+ 0.5,
256
+ 0
257
+ ]
258
+ },
259
+ {
260
+ "name": "Gaomon S630",
261
+ "score": 42,
262
+ "image": "/images/WEBP/drawing-tablet/gaomon-s630.front.medium2x.1655287152937.webp",
263
+ "propGroups": [
264
+ "General info",
265
+ "Display",
266
+ "Pen",
267
+ "Connectivity"
268
+ ],
269
+ "propScore": [
270
+ 0.33537110253914254,
271
+ 0,
272
+ 0.736734693877551,
273
+ 0.25
274
+ ]
275
+ },
276
+ {
277
+ "name": "Huion HS64",
278
+ "score": 37,
279
+ "image": "/images/WEBP/drawing-tablet/huion-hs64.front.medium2x.1655737378385.webp",
280
+ "propGroups": [
281
+ "General info",
282
+ "Display",
283
+ "Pen",
284
+ "Connectivity"
285
+ ],
286
+ "propScore": [
287
+ 0.3908010711262264,
288
+ 0,
289
+ 0.4819327731092437,
290
+ 0.25
291
+ ]
292
+ },
293
+ {
294
+ "name": "Huion HS611",
295
+ "score": 47,
296
+ "image": "/images/WEBP/drawing-tablet/huion-hs611.front.medium2x.1655806526975.webp",
297
+ "propGroups": [
298
+ "General info",
299
+ "Display",
300
+ "Pen",
301
+ "Connectivity"
302
+ ],
303
+ "propScore": [
304
+ 0.4734772074910007,
305
+ 0,
306
+ 0.68859543817527,
307
+ 0.3
308
+ ]
309
+ },
310
+ {
311
+ "name": "Huion H610 Pro",
312
+ "score": 12,
313
+ "image": "/images/WEBP/drawing-tablet/huion-h610-pro.front.medium2x.1576684641045.webp",
314
+ "propGroups": [
315
+ "General info",
316
+ "Display",
317
+ "Pen",
318
+ "Connectivity",
319
+ "Miscellaneous"
320
+ ],
321
+ "propScore": [
322
+ 0.14402196800925288,
323
+ 0,
324
+ 0,
325
+ 0
326
+ ]
327
+ },
328
+ {
329
+ "name": "Huion HS610",
330
+ "score": 40,
331
+ "image": "/images/WEBP/drawing-tablet/huion-hs610.front.medium2x.1655736530859.webp",
332
+ "propGroups": [
333
+ "General info",
334
+ "Display",
335
+ "Pen",
336
+ "Connectivity"
337
+ ],
338
+ "propScore": [
339
+ 0.4647483028301958,
340
+ 0,
341
+ 0.6358543417366946,
342
+ 0.25
343
+ ]
344
+ },
345
+ {
346
+ "name": "Huion Inspiroy Dial Q620M",
347
+ "score": 58,
348
+ "image": "/images/WEBP/drawing-tablet/huion-inspiroy-dial-q620m.front.medium2x.1655808927339.webp",
349
+ "propGroups": [
350
+ "General info",
351
+ "Display",
352
+ "Pen",
353
+ "Connectivity"
354
+ ],
355
+ "propScore": [
356
+ 0.5993415888777811,
357
+ 0,
358
+ 0.68859543817527,
359
+ 0.3
360
+ ]
361
+ },
362
+ {
363
+ "name": "Huion Inspiroy H420X",
364
+ "score": 52,
365
+ "image": "/images/WEBP/drawing-tablet/huion-inspiroy-h420x.front.medium2x.1655812563462.webp",
366
+ "propGroups": [
367
+ "General info",
368
+ "Display",
369
+ "Pen",
370
+ "Connectivity"
371
+ ],
372
+ "propScore": [
373
+ 0.42950409903534803,
374
+ 0,
375
+ 0.7551020408163265,
376
+ 0.3
377
+ ]
378
+ },
379
+ {
380
+ "name": "Huion Inspiroy H1161",
381
+ "score": 49,
382
+ "image": "/images/WEBP/drawing-tablet/huion-inspiroy-h1161.front.medium2x.1655810950664.webp",
383
+ "propGroups": [
384
+ "General info",
385
+ "Display",
386
+ "Pen",
387
+ "Connectivity"
388
+ ],
389
+ "propScore": [
390
+ 0.4968197111231618,
391
+ 0,
392
+ 0.687875150060024,
393
+ 0.3
394
+ ]
395
+ },
396
+ {
397
+ "name": "Huion Inspiroy Giano",
398
+ "score": 45,
399
+ "image": "/images/WEBP/drawing-tablet/huion-inspiroy-giano.front.medium2x.1655989417730.webp",
400
+ "propGroups": [
401
+ "General info",
402
+ "Display",
403
+ "Pen",
404
+ "Connectivity"
405
+ ],
406
+ "propScore": [
407
+ 0.6364233422062185,
408
+ 0,
409
+ 0.315266106442577,
410
+ 0.3
411
+ ]
412
+ },
413
+ {
414
+ "name": "Huion Inspiroy RTE-100",
415
+ "score": 43,
416
+ "image": "/images/WEBP/drawing-tablet/huion-inspiroy-rte-100.front.medium2x.1655817638076.webp",
417
+ "propGroups": [
418
+ "General info",
419
+ "Display",
420
+ "Pen",
421
+ "Connectivity"
422
+ ],
423
+ "propScore": [
424
+ 0.3334454109933216,
425
+ 0,
426
+ 0.7551020408163265,
427
+ 0.25
428
+ ]
429
+ },
430
+ {
431
+ "name": "Huion Inspiroy Keydial KD200",
432
+ "score": 63,
433
+ "image": "/images/WEBP/drawing-tablet/huion-inspiroy-keydial-kd200.front.medium2x.1655809797991.webp",
434
+ "propGroups": [
435
+ "General info",
436
+ "Display",
437
+ "Pen",
438
+ "Connectivity"
439
+ ],
440
+ "propScore": [
441
+ 0.6249165223820649,
442
+ 0,
443
+ 0.6776710684273709,
444
+ 0.4444444444444445
445
+ ]
446
+ },
447
+ {
448
+ "name": "Huion Inspiroy H430P",
449
+ "score": 34,
450
+ "image": "/images/WEBP/drawing-tablet/huion-inspiroy-h430p.front.medium2x.1655819942307.webp",
451
+ "propGroups": [
452
+ "General info",
453
+ "Display",
454
+ "Pen",
455
+ "Connectivity"
456
+ ],
457
+ "propScore": [
458
+ 0.38256714810854886,
459
+ 0,
460
+ 0.4005835667600373,
461
+ 0.25
462
+ ]
463
+ },
464
+ {
465
+ "name": "Huion Inspiroy Ink H320M",
466
+ "score": 52,
467
+ "image": "/images/WEBP/drawing-tablet/huion-inspiroy-ink-h320m.front.medium2x.1656926400778.webp",
468
+ "propGroups": [
469
+ "General info",
470
+ "Display",
471
+ "Pen",
472
+ "Connectivity"
473
+ ],
474
+ "propScore": [
475
+ 0.504337777389938,
476
+ 0,
477
+ 0.726890756302521,
478
+ 0.3
479
+ ]
480
+ },
481
+ {
482
+ "name": "Huion Kamvas 16 (2021)",
483
+ "score": 60,
484
+ "image": "/images/WEBP/drawing-tablet/huion-kamvas-16-2021.front.medium2x.1655730511176.webp",
485
+ "propGroups": [
486
+ "General info",
487
+ "Display",
488
+ "Pen",
489
+ "Connectivity"
490
+ ],
491
+ "propScore": [
492
+ 0.6522889078552295,
493
+ 0.43830828727932797,
494
+ 0.7023809523809524,
495
+ 0.5
496
+ ]
497
+ },
498
+ {
499
+ "name": "Huion Inspiroy RTS-300",
500
+ "score": 48,
501
+ "image": "/images/WEBP/drawing-tablet/huion-inspiroy-rts-300.front.medium2x.1655813245606.webp",
502
+ "propGroups": [
503
+ "General info",
504
+ "Display",
505
+ "Pen",
506
+ "Connectivity"
507
+ ],
508
+ "propScore": [
509
+ 0.4313386433783961,
510
+ 0,
511
+ 0.7551020408163265,
512
+ 0.3
513
+ ]
514
+ },
515
+ {
516
+ "name": "Huion K58",
517
+ "score": 21,
518
+ "image": "/images/WEBP/drawing-tablet/huion-k58.front.medium2x.1576684641045.webp",
519
+ "propGroups": [
520
+ "General info",
521
+ "Display",
522
+ "Pen",
523
+ "Connectivity",
524
+ "Miscellaneous"
525
+ ],
526
+ "propScore": [
527
+ 0.14457487966761037,
528
+ 0,
529
+ 0,
530
+ 0
531
+ ]
532
+ },
533
+ {
534
+ "name": "Huion Kamvas 12",
535
+ "score": 56,
536
+ "image": "/images/WEBP/drawing-tablet/huion-kamvas-12.front.medium2x.1655467911112.webp",
537
+ "propGroups": [
538
+ "General info",
539
+ "Display",
540
+ "Pen",
541
+ "Connectivity"
542
+ ],
543
+ "propScore": [
544
+ 0.5366012612623189,
545
+ 0.4367271431205129,
546
+ 0.7023809523809524,
547
+ 0.5
548
+ ]
549
+ },
550
+ {
551
+ "name": "Huion Kamvas 24 Plus",
552
+ "score": 65,
553
+ "image": "/images/WEBP/drawing-tablet/huion-kamvas-24-plus.front.medium2x.1655468506074.webp",
554
+ "propGroups": [
555
+ "General info",
556
+ "Display",
557
+ "Pen",
558
+ "Connectivity"
559
+ ],
560
+ "propScore": [
561
+ 0.6502413043310826,
562
+ 0.7046626566799554,
563
+ 0.7023809523809524,
564
+ 0.5
565
+ ]
566
+ },
567
+ {
568
+ "name": "Huion Kamvas 24",
569
+ "score": 67,
570
+ "image": "/images/WEBP/drawing-tablet/huion-kamvas-24.front.medium2x.1655386731686.webp",
571
+ "propGroups": [
572
+ "General info",
573
+ "Display",
574
+ "Pen",
575
+ "Connectivity"
576
+ ],
577
+ "propScore": [
578
+ 0.5234811237479261,
579
+ 0.867279362037584,
580
+ 0.7023809523809524,
581
+ 0.5
582
+ ]
583
+ },
584
+ {
585
+ "name": "Huion Kamvas Pro 13 (2.5K)",
586
+ "score": 57,
587
+ "image": "/images/WEBP/drawing-tablet/huion-kamvas-pro-13-2-5k.front.medium2x.1655466774244.webp",
588
+ "propGroups": [
589
+ "General info",
590
+ "Display",
591
+ "Pen",
592
+ "Connectivity"
593
+ ],
594
+ "propScore": [
595
+ 0.47653219873228386,
596
+ 0.623519227500108,
597
+ 0.7023809523809524,
598
+ 0.5
599
+ ]
600
+ },
601
+ {
602
+ "name": "Huion Kamvas Pro 16 (2.5K)",
603
+ "score": 66,
604
+ "image": "/images/WEBP/drawing-tablet/huion-kamvas-pro-16-2-5k.front.medium2x.1655467405698.webp",
605
+ "propGroups": [
606
+ "General info",
607
+ "Display",
608
+ "Pen",
609
+ "Connectivity"
610
+ ],
611
+ "propScore": [
612
+ 0.5621114786129375,
613
+ 0.6444821963950365,
614
+ 0.7448979591836735,
615
+ 0.5
616
+ ]
617
+ },
618
+ {
619
+ "name": "Huion Kamvas Pro 16 (4K)",
620
+ "score": 62,
621
+ "image": "/images/WEBP/drawing-tablet/huion-kamvas-pro-16-4k.front.medium2x.1655385336295.webp",
622
+ "propGroups": [
623
+ "General info",
624
+ "Display",
625
+ "Pen",
626
+ "Connectivity"
627
+ ],
628
+ "propScore": [
629
+ 0.5098201589617403,
630
+ 0.8341154746854756,
631
+ 0.7023809523809524,
632
+ 0.5
633
+ ]
634
+ },
635
+ {
636
+ "name": "Huion Kamvas Pro 16",
637
+ "score": 48,
638
+ "image": "/images/WEBP/drawing-tablet/huion-kamvas-pro-16.front.medium2x.1655383680455.webp",
639
+ "propGroups": [
640
+ "General info",
641
+ "Display",
642
+ "Pen",
643
+ "Connectivity"
644
+ ],
645
+ "propScore": [
646
+ 0.47187525264732316,
647
+ 0.437770087475064,
648
+ 0.7023809523809524,
649
+ 0.3
650
+ ]
651
+ },
652
+ {
653
+ "name": "Huion Kamvas Pro 24 (4K)",
654
+ "score": 75,
655
+ "image": "/images/WEBP/drawing-tablet/huion-kamvas-pro-24-4k.front.medium2x.1655462553805.webp",
656
+ "propGroups": [
657
+ "General info",
658
+ "Display",
659
+ "Pen",
660
+ "Connectivity"
661
+ ],
662
+ "propScore": [
663
+ 0.723876083410294,
664
+ 0.9625020527740411,
665
+ 0.7023809523809524,
666
+ 0.55
667
+ ]
668
+ },
669
+ {
670
+ "name": "Huion Kamvas Pro 16 Plus (4K)",
671
+ "score": 64,
672
+ "image": "/images/WEBP/drawing-tablet/huion-kamvas-pro-16-plus-4k.front.medium2x.1655735007004.webp",
673
+ "propGroups": [
674
+ "General info",
675
+ "Display",
676
+ "Pen",
677
+ "Connectivity"
678
+ ],
679
+ "propScore": [
680
+ 0.5010578880310859,
681
+ 0.8826610970300817,
682
+ 0.7023809523809524,
683
+ 0.5
684
+ ]
685
+ },
686
+ {
687
+ "name": "Huion W58",
688
+ "score": 19,
689
+ "image": "/images/WEBP/drawing-tablet/huion-w58.front.medium2x.1576684641045.webp",
690
+ "propGroups": [
691
+ "General info",
692
+ "Display",
693
+ "Pen",
694
+ "Connectivity",
695
+ "Miscellaneous"
696
+ ],
697
+ "propScore": [
698
+ 0.12635413672615345,
699
+ 0,
700
+ 0,
701
+ 0
702
+ ]
703
+ },
704
+ {
705
+ "name": "Huion Kamvas RDS-160",
706
+ "score": 55,
707
+ "image": "/images/WEBP/drawing-tablet/huion-kamvas-rds-160.front.medium2x.1655385868932.webp",
708
+ "propGroups": [
709
+ "General info",
710
+ "Display",
711
+ "Pen",
712
+ "Connectivity"
713
+ ],
714
+ "propScore": [
715
+ 0.4968924923803789,
716
+ 0.48111439313989074,
717
+ 0.7023809523809524,
718
+ 0.5
719
+ ]
720
+ },
721
+ {
722
+ "name": "Huion Kamvas Pro 24",
723
+ "score": 68,
724
+ "image": "/images/WEBP/drawing-tablet/huion-kamvas-pro-24.front.medium2x.1655461210191.webp",
725
+ "propGroups": [
726
+ "General info",
727
+ "Display",
728
+ "Pen",
729
+ "Connectivity"
730
+ ],
731
+ "propScore": [
732
+ 0.7193504901136822,
733
+ 0.6130418285726549,
734
+ 0.7023809523809524,
735
+ 0.6
736
+ ]
737
+ },
738
+ {
739
+ "name": "Wacom Cintiq 16",
740
+ "score": 62,
741
+ "image": "/images/WEBP/drawing-tablet/wacom-cintiq-16.front.medium2x.1655903064167.webp",
742
+ "propGroups": [
743
+ "General info",
744
+ "Display",
745
+ "Pen",
746
+ "Connectivity"
747
+ ],
748
+ "propScore": [
749
+ 0.62882835547461,
750
+ 0.6021790582274377,
751
+ 0.7261904761904762,
752
+ 0.25
753
+ ]
754
+ },
755
+ {
756
+ "name": "Wacom Cintiq 22",
757
+ "score": 68,
758
+ "image": "/images/WEBP/drawing-tablet/wacom-cintiq-22.front.medium2x.1655904019071.webp",
759
+ "propGroups": [
760
+ "General info",
761
+ "Display",
762
+ "Pen",
763
+ "Connectivity"
764
+ ],
765
+ "propScore": [
766
+ 0.6847944200345802,
767
+ 0.6287997050333951,
768
+ 0.7261904761904762,
769
+ 0.45
770
+ ]
771
+ },
772
+ {
773
+ "name": "Wacom Cintiq Pro 16",
774
+ "score": 65,
775
+ "image": "/images/WEBP/drawing-tablet/wacom-cintiq-pro-16.front.medium2x.1655898735196.webp",
776
+ "propGroups": [
777
+ "General info",
778
+ "Display",
779
+ "Pen",
780
+ "Connectivity"
781
+ ],
782
+ "propScore": [
783
+ 0.5906708913992131,
784
+ 0.8989327259992541,
785
+ 0.7261904761904762,
786
+ 0.55
787
+ ]
788
+ },
789
+ {
790
+ "name": "Wacom Cintiq 22HD",
791
+ "score": 29,
792
+ "image": "/images/WEBP/drawing-tablet/wacom-cintiq-22hd.front.medium2x.1576684641045.webp",
793
+ "propGroups": [
794
+ "General info",
795
+ "Display",
796
+ "Pen",
797
+ "Connectivity",
798
+ "Miscellaneous"
799
+ ],
800
+ "propScore": [
801
+ 0.04607597152979376,
802
+ 0.4423798094140425,
803
+ 0.5,
804
+ 0
805
+ ]
806
+ },
807
+ {
808
+ "name": "Wacom Cintiq Pro 24",
809
+ "score": 87,
810
+ "image": "/images/WEBP/drawing-tablet/wacom-cintiq-pro-24.front.medium2x.1655897475503.webp",
811
+ "propGroups": [
812
+ "General info",
813
+ "Display",
814
+ "Pen",
815
+ "Connectivity"
816
+ ],
817
+ "propScore": [
818
+ 0.7543760798999564,
819
+ 0.9523545717768132,
820
+ 0.7261904761904762,
821
+ 0.9
822
+ ]
823
+ },
824
+ {
825
+ "name": "Wacom Intuos Bluetooth (Small)",
826
+ "score": 34,
827
+ "image": "/images/WEBP/drawing-tablet/wacom-intuos-bluetooth-small.front.medium2x.1655983617805.webp",
828
+ "propGroups": [
829
+ "General info",
830
+ "Display",
831
+ "Pen",
832
+ "Connectivity"
833
+ ],
834
+ "propScore": [
835
+ 0.4172435451613104,
836
+ 0,
837
+ 0.1299253034547152,
838
+ 0.4
839
+ ]
840
+ },
841
+ {
842
+ "name": "Wacom Intuos Bluetooth (Medium)",
843
+ "score": 29,
844
+ "image": "/images/WEBP/drawing-tablet/wacom-intuos-bluetooth-medium.front.medium2x.1655986423345.webp",
845
+ "propGroups": [
846
+ "General info",
847
+ "Display",
848
+ "Pen",
849
+ "Connectivity"
850
+ ],
851
+ "propScore": [
852
+ 0.36444520380373485,
853
+ 0,
854
+ 0.12754435107376283,
855
+ 0.4
856
+ ]
857
+ },
858
+ {
859
+ "name": "Wacom Intuos (Medium)",
860
+ "score": 21,
861
+ "image": "/images/WEBP/drawing-tablet/wacom-intuos-medium.front.medium2x.1655986174162.webp",
862
+ "propGroups": [
863
+ "General info",
864
+ "Display",
865
+ "Pen",
866
+ "Connectivity"
867
+ ],
868
+ "propScore": [
869
+ 0.3402192153606113,
870
+ 0,
871
+ 0.1299253034547152,
872
+ 0.25
873
+ ]
874
+ },
875
+ {
876
+ "name": "Wacom Cintiq Pro 32",
877
+ "score": 100,
878
+ "image": "/images/WEBP/drawing-tablet/wacom-cintiq-pro-32.front.medium2x.1654070375274.webp",
879
+ "propGroups": [
880
+ "General info",
881
+ "Display",
882
+ "Pen",
883
+ "Connectivity"
884
+ ],
885
+ "propScore": [
886
+ 1,
887
+ 1,
888
+ 0.6904761904761906,
889
+ 1
890
+ ]
891
+ },
892
+ {
893
+ "name": "Wacom Intuos Pro Large",
894
+ "score": 24,
895
+ "image": "/images/WEBP/drawing-tablet/wacom-intuos-pro-large.front.medium2x.1576684641045.webp",
896
+ "propGroups": [
897
+ "General info",
898
+ "Display",
899
+ "Pen",
900
+ "Connectivity",
901
+ "Miscellaneous"
902
+ ],
903
+ "propScore": [
904
+ 0.11353119384941185,
905
+ 0,
906
+ 0.5,
907
+ 0
908
+ ]
909
+ },
910
+ {
911
+ "name": "Wacom Intuos Pro M",
912
+ "score": 50,
913
+ "image": "/images/WEBP/drawing-tablet/wacom-intuos-pro-m.front.medium2x.1656069077839.webp",
914
+ "propGroups": [
915
+ "General info",
916
+ "Display",
917
+ "Pen",
918
+ "Connectivity"
919
+ ],
920
+ "propScore": [
921
+ 0.40819339714378244,
922
+ 0,
923
+ 0.6904761904761906,
924
+ 0.5
925
+ ]
926
+ },
927
+ {
928
+ "name": "Wacom Intuos Pro S",
929
+ "score": 48,
930
+ "image": "/images/WEBP/drawing-tablet/wacom-intuos-pro-s.front.medium2x.1656068714469.webp",
931
+ "propGroups": [
932
+ "General info",
933
+ "Display",
934
+ "Pen",
935
+ "Connectivity"
936
+ ],
937
+ "propScore": [
938
+ 0.3645679272876366,
939
+ 0,
940
+ 0.6904761904761906,
941
+ 0.5
942
+ ]
943
+ },
944
+ {
945
+ "name": "Wacom Intuos Pro L",
946
+ "score": 51,
947
+ "image": "/images/WEBP/drawing-tablet/wacom-intuos-pro-l.front.medium2x.1656069456338.webp",
948
+ "propGroups": [
949
+ "General info",
950
+ "Display",
951
+ "Pen",
952
+ "Connectivity"
953
+ ],
954
+ "propScore": [
955
+ 0.44159035989718437,
956
+ 0,
957
+ 0.6904761904761906,
958
+ 0.5
959
+ ]
960
+ },
961
+ {
962
+ "name": "Wacom Intuos Pro Small",
963
+ "score": 14,
964
+ "image": "/images/WEBP/drawing-tablet/wacom-intuos-pro-small.front.medium2x.1576684641045.webp",
965
+ "propGroups": [
966
+ "General info",
967
+ "Display",
968
+ "Pen",
969
+ "Connectivity",
970
+ "Miscellaneous"
971
+ ],
972
+ "propScore": [
973
+ 0,
974
+ 0,
975
+ 0.5,
976
+ 0
977
+ ]
978
+ },
979
+ {
980
+ "name": "Wacom One by Wacom (Medium)",
981
+ "score": 20,
982
+ "image": "/images/WEBP/drawing-tablet/wacom-one-by-wacom-medium.front.medium2x.1655908267266.webp",
983
+ "propGroups": [
984
+ "General info",
985
+ "Display",
986
+ "Pen",
987
+ "Connectivity"
988
+ ],
989
+ "propScore": [
990
+ 0.3633778582935121,
991
+ 0,
992
+ 0.09817927170868347,
993
+ 0.25
994
+ ]
995
+ },
996
+ {
997
+ "name": "Wacom Intuos (Small)",
998
+ "score": 21,
999
+ "image": "/images/WEBP/drawing-tablet/wacom-intuos-small.front.medium2x.1655982026392.webp",
1000
+ "propGroups": [
1001
+ "General info",
1002
+ "Display",
1003
+ "Pen",
1004
+ "Connectivity"
1005
+ ],
1006
+ "propScore": [
1007
+ 0.31804848103904565,
1008
+ 0,
1009
+ 0.1299253034547152,
1010
+ 0.25
1011
+ ]
1012
+ },
1013
+ {
1014
+ "name": "Wacom Intuos4 XL DTP",
1015
+ "score": 31,
1016
+ "image": "/images/WEBP/drawing-tablet/wacom-intuos4-xl-dtp.front.medium2x.1576684641045.webp",
1017
+ "propGroups": [
1018
+ "General info",
1019
+ "Display",
1020
+ "Pen",
1021
+ "Connectivity",
1022
+ "Miscellaneous"
1023
+ ],
1024
+ "propScore": [
1025
+ 0.14695931119427721,
1026
+ 0,
1027
+ 0,
1028
+ 0
1029
+ ]
1030
+ },
1031
+ {
1032
+ "name": "Xencelabs Pen Tablet Medium",
1033
+ "score": 56,
1034
+ "image": "/images/WEBP/drawing-tablet/xencelabs-pen-tablet-medium.front.medium2x.1654071511294.webp",
1035
+ "propGroups": [
1036
+ "General info",
1037
+ "Display",
1038
+ "Pen",
1039
+ "Connectivity"
1040
+ ],
1041
+ "propScore": [
1042
+ 0.5640170187711588,
1043
+ 0,
1044
+ 1,
1045
+ 0.3
1046
+ ]
1047
+ },
1048
+ {
1049
+ "name": "Wacom One",
1050
+ "score": 47,
1051
+ "image": "/images/WEBP/drawing-tablet/wacom-one.front.medium2x.1655907395103.webp",
1052
+ "propGroups": [
1053
+ "General info",
1054
+ "Display",
1055
+ "Pen",
1056
+ "Connectivity"
1057
+ ],
1058
+ "propScore": [
1059
+ 0.655444820392401,
1060
+ 0.25279804104244585,
1061
+ 0.5809523809523809,
1062
+ 0.4
1063
+ ]
1064
+ },
1065
+ {
1066
+ "name": "Wacom One by Wacom (Small)",
1067
+ "score": 20,
1068
+ "image": "/images/WEBP/drawing-tablet/wacom-one-by-wacom-small.front.medium2x.1655980488849.webp",
1069
+ "propGroups": [
1070
+ "General info",
1071
+ "Display",
1072
+ "Pen",
1073
+ "Connectivity"
1074
+ ],
1075
+ "propScore": [
1076
+ 0.3398379266025424,
1077
+ 0,
1078
+ 0.09817927170868347,
1079
+ 0.25
1080
+ ]
1081
+ },
1082
+ {
1083
+ "name": "Xencelabs Pen Tablet Small",
1084
+ "score": 52,
1085
+ "image": "/images/WEBP/drawing-tablet/xencelabs-pen-tablet-small.front.medium2x.1656070072465.webp",
1086
+ "propGroups": [
1087
+ "General info",
1088
+ "Display",
1089
+ "Pen",
1090
+ "Connectivity"
1091
+ ],
1092
+ "propScore": [
1093
+ 0.5486972162382764,
1094
+ 0,
1095
+ 0.6714285714285715,
1096
+ 0.35
1097
+ ]
1098
+ },
1099
+ {
1100
+ "name": "XP-Pen Artist 13.3 Pro",
1101
+ "score": 63,
1102
+ "image": "/images/WEBP/drawing-tablet/xp-pen-artist-13-3-pro.front.medium2x.1654775752003.webp",
1103
+ "propGroups": [
1104
+ "General info",
1105
+ "Display",
1106
+ "Pen",
1107
+ "Connectivity"
1108
+ ],
1109
+ "propScore": [
1110
+ 0.6157061262997292,
1111
+ 0.6452721671186756,
1112
+ 0.6827731092436975,
1113
+ 0.25
1114
+ ]
1115
+ },
1116
+ {
1117
+ "name": "XP-Pen Artist 12 (2nd Generation)",
1118
+ "score": 65,
1119
+ "image": "/images/WEBP/drawing-tablet/xp-pen-artist-12-2nd-generation.front.medium2x.1654689868383.webp",
1120
+ "propGroups": [
1121
+ "General info",
1122
+ "Display",
1123
+ "Pen",
1124
+ "Connectivity"
1125
+ ],
1126
+ "propScore": [
1127
+ 0.4721996398850968,
1128
+ 0.6439190812452581,
1129
+ 0.773109243697479,
1130
+ 0.5
1131
+ ]
1132
+ },
1133
+ {
1134
+ "name": "XP-Pen Artist 12",
1135
+ "score": 56,
1136
+ "image": "/images/WEBP/drawing-tablet/xp-pen-artist-12.front.medium2x.1654688133948.webp",
1137
+ "propGroups": [
1138
+ "General info",
1139
+ "Display",
1140
+ "Pen",
1141
+ "Connectivity"
1142
+ ],
1143
+ "propScore": [
1144
+ 0.5152234939331172,
1145
+ 0.6608320960370794,
1146
+ 0.5499999999999999,
1147
+ 0.25
1148
+ ]
1149
+ },
1150
+ {
1151
+ "name": "XP-Pen Artist 12 Pro",
1152
+ "score": 64,
1153
+ "image": "/images/WEBP/drawing-tablet/xp-pen-artist-12-pro.front.medium2x.1654690874218.webp",
1154
+ "propGroups": [
1155
+ "General info",
1156
+ "Display",
1157
+ "Pen",
1158
+ "Connectivity"
1159
+ ],
1160
+ "propScore": [
1161
+ 0.6050077450975949,
1162
+ 0.6801947420521546,
1163
+ 0.7016806722689076,
1164
+ 0.25
1165
+ ]
1166
+ },
1167
+ {
1168
+ "name": "XP-Pen Artist 22R Pro",
1169
+ "score": 72,
1170
+ "image": "/images/WEBP/drawing-tablet/xp-pen-artist-22r-pro.front.medium2x.1654774649309.webp",
1171
+ "propGroups": [
1172
+ "General info",
1173
+ "Display",
1174
+ "Pen",
1175
+ "Connectivity"
1176
+ ],
1177
+ "propScore": [
1178
+ 0.6823214934641245,
1179
+ 0.651097194781239,
1180
+ 0.6659663865546219,
1181
+ 0.6
1182
+ ]
1183
+ },
1184
+ {
1185
+ "name": "XP-Pen Artist 16 (2nd Generation)",
1186
+ "score": 82,
1187
+ "image": "/images/WEBP/drawing-tablet/xp-pen-artist-16-2nd-generation.front.medium2x.1654696554483.webp",
1188
+ "propGroups": [
1189
+ "General info",
1190
+ "Display",
1191
+ "Pen",
1192
+ "Connectivity",
1193
+ "Miscellaneous"
1194
+ ],
1195
+ "propScore": [
1196
+ 0.5771819300297573,
1197
+ 0.6363808418671256,
1198
+ 0.773109243697479,
1199
+ 0.5
1200
+ ]
1201
+ },
1202
+ {
1203
+ "name": "XP-Pen Artist 15.6",
1204
+ "score": 58,
1205
+ "image": "/images/WEBP/drawing-tablet/xp-pen-artist-15-6.front.medium2x.1654609286063.webp",
1206
+ "propGroups": [
1207
+ "General info",
1208
+ "Display",
1209
+ "Pen",
1210
+ "Connectivity"
1211
+ ],
1212
+ "propScore": [
1213
+ 0.4548642181435837,
1214
+ 0.5731173467015805,
1215
+ 0.7571428571428571,
1216
+ 0.3
1217
+ ]
1218
+ },
1219
+ {
1220
+ "name": "XP-Pen Artist 22 (2nd Generation)",
1221
+ "score": 73,
1222
+ "image": "/images/WEBP/drawing-tablet/xp-pen-artist-22-2nd-generation.front.medium2x.1654772515430.webp",
1223
+ "propGroups": [
1224
+ "General info",
1225
+ "Display",
1226
+ "Pen",
1227
+ "Connectivity"
1228
+ ],
1229
+ "propScore": [
1230
+ 0.7369945663136589,
1231
+ 0.6573289881126907,
1232
+ 0.6858343337334933,
1233
+ 0.5
1234
+ ]
1235
+ },
1236
+ {
1237
+ "name": "XP-Pen Artist Pro 16TP",
1238
+ "score": 64,
1239
+ "image": "/images/WEBP/drawing-tablet/xp-pen-artist-pro-16tp.front.medium2x.1654777223765.webp",
1240
+ "propGroups": [
1241
+ "General info",
1242
+ "Display",
1243
+ "Pen",
1244
+ "Connectivity"
1245
+ ],
1246
+ "propScore": [
1247
+ 0.5079823497703141,
1248
+ 0.9792638902634766,
1249
+ 0.6715486194477791,
1250
+ 0.4
1251
+ ]
1252
+ },
1253
+ {
1254
+ "name": "XP-Pen Artist 24",
1255
+ "score": 73,
1256
+ "image": "/images/WEBP/drawing-tablet/xp-pen-artist-24.front.medium2x.1654694842960.webp",
1257
+ "propGroups": [
1258
+ "General info",
1259
+ "Display",
1260
+ "Pen",
1261
+ "Connectivity"
1262
+ ],
1263
+ "propScore": [
1264
+ 0.7579540161631624,
1265
+ 0.711318511392418,
1266
+ 0.6858343337334933,
1267
+ 0.5
1268
+ ]
1269
+ },
1270
+ {
1271
+ "name": "XP-Pen Artist 24 Pro",
1272
+ "score": 69,
1273
+ "image": "/images/WEBP/drawing-tablet/xp-pen-artist-24-pro.front.medium2x.1654695558273.webp",
1274
+ "propGroups": [
1275
+ "General info",
1276
+ "Display",
1277
+ "Pen",
1278
+ "Connectivity"
1279
+ ],
1280
+ "propScore": [
1281
+ 0.7130379360288042,
1282
+ 0.6390876406407011,
1283
+ 0.6827731092436975,
1284
+ 0.5
1285
+ ]
1286
+ },
1287
+ {
1288
+ "name": "XP-Pen Artist Pro 16",
1289
+ "score": 57,
1290
+ "image": "/images/WEBP/drawing-tablet/xp-pen-artist-pro-16.front.medium2x.1654783339934.webp",
1291
+ "propGroups": [
1292
+ "General info",
1293
+ "Display",
1294
+ "Pen",
1295
+ "Connectivity"
1296
+ ],
1297
+ "propScore": [
1298
+ 0.4962450707323527,
1299
+ 0.564784692379579,
1300
+ 0.773109243697479,
1301
+ 0.25
1302
+ ]
1303
+ },
1304
+ {
1305
+ "name": "XP-Pen Deco L",
1306
+ "score": 41,
1307
+ "image": "/images/WEBP/drawing-tablet/xp-pen-deco-l.front.medium2x.1654523735006.webp",
1308
+ "propGroups": [
1309
+ "General info",
1310
+ "Display",
1311
+ "Pen",
1312
+ "Connectivity"
1313
+ ],
1314
+ "propScore": [
1315
+ 0.3830104455568691,
1316
+ 0,
1317
+ 0.7261904761904762,
1318
+ 0.3
1319
+ ]
1320
+ },
1321
+ {
1322
+ "name": "XP-Pen Deco Fun L",
1323
+ "score": 42,
1324
+ "image": "/images/WEBP/drawing-tablet/xp-pen-deco-fun-l.front.medium2x.1654261282664.webp",
1325
+ "propGroups": [
1326
+ "General info",
1327
+ "Display",
1328
+ "Pen",
1329
+ "Connectivity"
1330
+ ],
1331
+ "propScore": [
1332
+ 0.3690947623333836,
1333
+ 0,
1334
+ 0.7184873949579832,
1335
+ 0.3
1336
+ ]
1337
+ },
1338
+ {
1339
+ "name": "XP-Pen Deco Fun S",
1340
+ "score": 42,
1341
+ "image": "/images/WEBP/drawing-tablet/xp-pen-deco-fun-s.front.medium2x.1654263012935.webp",
1342
+ "propGroups": [
1343
+ "General info",
1344
+ "Display",
1345
+ "Pen",
1346
+ "Connectivity"
1347
+ ],
1348
+ "propScore": [
1349
+ 0.3369486626836398,
1350
+ 0,
1351
+ 0.7184873949579832,
1352
+ 0.3
1353
+ ]
1354
+ },
1355
+ {
1356
+ "name": "XP-Pen Deco Fun XS",
1357
+ "score": 35,
1358
+ "image": "/images/WEBP/drawing-tablet/xp-pen-deco-fun-xs.front.medium2x.1654263575272.webp",
1359
+ "propGroups": [
1360
+ "General info",
1361
+ "Display",
1362
+ "Pen",
1363
+ "Connectivity"
1364
+ ],
1365
+ "propScore": [
1366
+ 0.3238522044724214,
1367
+ 0,
1368
+ 0.5049019607843137,
1369
+ 0.3
1370
+ ]
1371
+ },
1372
+ {
1373
+ "name": "XP-Pen Deco mini7",
1374
+ "score": 46,
1375
+ "image": "/images/WEBP/drawing-tablet/xp-pen-deco-mini7.front.medium2x.1654521121720.webp",
1376
+ "propGroups": [
1377
+ "General info",
1378
+ "Display",
1379
+ "Pen",
1380
+ "Connectivity"
1381
+ ],
1382
+ "propScore": [
1383
+ 0.3513282332679709,
1384
+ 0,
1385
+ 0.6725690276110444,
1386
+ 0.45
1387
+ ]
1388
+ },
1389
+ {
1390
+ "name": "XP-Pen Deco Pro M",
1391
+ "score": 40,
1392
+ "image": "/images/WEBP/drawing-tablet/xp-pen-deco-pro-m.front.medium2x.1654603507695.webp",
1393
+ "propGroups": [
1394
+ "General info",
1395
+ "Display",
1396
+ "Pen",
1397
+ "Connectivity"
1398
+ ],
1399
+ "propScore": [
1400
+ 0.3693470404875644,
1401
+ 0,
1402
+ 0.6680072028811525,
1403
+ 0.25
1404
+ ]
1405
+ },
1406
+ {
1407
+ "name": "XP-Pen Deco mini4",
1408
+ "score": 41,
1409
+ "image": "/images/WEBP/drawing-tablet/xp-pen-deco-mini4.front.medium2x.1654265060301.webp",
1410
+ "propGroups": [
1411
+ "General info",
1412
+ "Display",
1413
+ "Pen",
1414
+ "Connectivity"
1415
+ ],
1416
+ "propScore": [
1417
+ 0.32549932575734586,
1418
+ 0,
1419
+ 0.5297118847539015,
1420
+ 0.35
1421
+ ]
1422
+ },
1423
+ {
1424
+ "name": "XP-Pen Deco Pro MW",
1425
+ "score": 53,
1426
+ "image": "/images/WEBP/drawing-tablet/xp-pen-deco-pro-mw.front.medium2x.1654603216421.webp",
1427
+ "propGroups": [
1428
+ "General info",
1429
+ "Display",
1430
+ "Pen",
1431
+ "Connectivity"
1432
+ ],
1433
+ "propScore": [
1434
+ 0.4711244525507877,
1435
+ 0,
1436
+ 0.684813925570228,
1437
+ 0.4
1438
+ ]
1439
+ },
1440
+ {
1441
+ "name": "XP-Pen Deco Pro S",
1442
+ "score": 43,
1443
+ "image": "/images/WEBP/drawing-tablet/xp-pen-deco-pro-s.front.medium2x.1654604234968.webp",
1444
+ "propGroups": [
1445
+ "General info",
1446
+ "Display",
1447
+ "Pen",
1448
+ "Connectivity"
1449
+ ],
1450
+ "propScore": [
1451
+ 0.43351305966065556,
1452
+ 0,
1453
+ 0.6680072028811525,
1454
+ 0.25
1455
+ ]
1456
+ },
1457
+ {
1458
+ "name": "XP-Pen Deco Pro SW",
1459
+ "score": 55,
1460
+ "image": "/images/WEBP/drawing-tablet/xp-pen-deco-pro-sw.front.medium2x.1654604484408.webp",
1461
+ "propGroups": [
1462
+ "General info",
1463
+ "Display",
1464
+ "Pen",
1465
+ "Connectivity"
1466
+ ],
1467
+ "propScore": [
1468
+ 0.5184784752503597,
1469
+ 0,
1470
+ 0.684813925570228,
1471
+ 0.4
1472
+ ]
1473
+ },
1474
+ {
1475
+ "name": "XP-Pen Innovator 16",
1476
+ "score": 63,
1477
+ "image": "/images/WEBP/drawing-tablet/xp-pen-innovator-16.front.medium2x.1654606672788.webp",
1478
+ "propGroups": [
1479
+ "General info",
1480
+ "Display",
1481
+ "Pen",
1482
+ "Connectivity"
1483
+ ],
1484
+ "propScore": [
1485
+ 0.6358805370820831,
1486
+ 0.6131894059206756,
1487
+ 0.6909363745498199,
1488
+ 0.25
1489
+ ]
1490
+ },
1491
+ {
1492
+ "name": "XP-Pen Star 06 Wireless",
1493
+ "score": 45,
1494
+ "image": "/images/WEBP/drawing-tablet/xp-pen-star-06-wireless.front.medium2x.1654171131108.webp",
1495
+ "propGroups": [
1496
+ "General info",
1497
+ "Display",
1498
+ "Pen",
1499
+ "Connectivity"
1500
+ ],
1501
+ "propScore": [
1502
+ 0.5431087479517434,
1503
+ 0,
1504
+ 0.426890756302521,
1505
+ 0.25
1506
+ ]
1507
+ },
1508
+ {
1509
+ "name": "XP-Pen Star G430S",
1510
+ "score": 33,
1511
+ "image": "/images/WEBP/drawing-tablet/xp-pen-star-g430s.front.medium2x.1654176023130.webp",
1512
+ "propGroups": [
1513
+ "General info",
1514
+ "Display",
1515
+ "Pen",
1516
+ "Connectivity"
1517
+ ],
1518
+ "propScore": [
1519
+ 0.19829984784163268,
1520
+ 0,
1521
+ 0.5380952380952381,
1522
+ 0.2
1523
+ ]
1524
+ },
1525
+ {
1526
+ "name": "XP-Pen Star G960",
1527
+ "score": 23,
1528
+ "image": "/images/WEBP/drawing-tablet/xp-pen-star-g960.front.medium2x.1654177495057.webp",
1529
+ "propGroups": [
1530
+ "General info",
1531
+ "Display",
1532
+ "Pen",
1533
+ "Connectivity"
1534
+ ],
1535
+ "propScore": [
1536
+ 0.2718205062686934,
1537
+ 0,
1538
+ 0.27142857142857146,
1539
+ 0.2
1540
+ ]
1541
+ },
1542
+ {
1543
+ "name": "XP-Pen Star G640",
1544
+ "score": 29,
1545
+ "image": "/images/WEBP/drawing-tablet/xp-pen-star-g640.front.medium2x.1654174152726.webp",
1546
+ "propGroups": [
1547
+ "General info",
1548
+ "Display",
1549
+ "Pen",
1550
+ "Connectivity"
1551
+ ],
1552
+ "propScore": [
1553
+ 0.21533958191038136,
1554
+ 0,
1555
+ 0.44571428571428573,
1556
+ 0.25
1557
+ ]
1558
+ },
1559
+ {
1560
+ "name": "XP-Pen Star G960S Plus",
1561
+ "score": 39,
1562
+ "image": "/images/WEBP/drawing-tablet/xp-pen-star-g960s-plus.front.medium2x.1654259863118.webp",
1563
+ "propGroups": [
1564
+ "General info",
1565
+ "Display",
1566
+ "Pen",
1567
+ "Connectivity"
1568
+ ],
1569
+ "propScore": [
1570
+ 0.36406943584160417,
1571
+ 0,
1572
+ 0.6168067226890755,
1573
+ 0.4
1574
+ ]
1575
+ },
1576
+ {
1577
+ "name": "XP-Pen Star G960S",
1578
+ "score": 42,
1579
+ "image": "/images/WEBP/drawing-tablet/xp-pen-star-g960s.front.medium2x.1654260254172.webp",
1580
+ "propGroups": [
1581
+ "General info",
1582
+ "Display",
1583
+ "Pen",
1584
+ "Connectivity"
1585
+ ],
1586
+ "propScore": [
1587
+ 0.36406943584160417,
1588
+ 0,
1589
+ 0.6953781512605043,
1590
+ 0.4
1591
+ ]
1592
+ }
1593
+ ]
1594
+ }
data/drill.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"data": [{"name": "Black & Decker BDCDD12C", "score": 86, "image": "/images/WEBP/drill/black-decker-bdcdd12c.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Chuck", "Performance"], "propScore": [0.7864713770535048, 0.9944895591647331, 0.4148402406254909]}, {"name": "Black & Decker BDCD8C", "score": 72, "image": "/images/WEBP/drill/black-decker-bdcd8c.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Chuck", "Performance"], "propScore": [0.6968251143456178, 0.9944895591647331, 0.025665206067081708]}, {"name": "Black & Decker BDEDMT", "score": 58, "image": "/images/WEBP/drill/black-decker-bdedmt.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Chuck", "Performance"], "propScore": [0.5642257958333274, 0.4048723897911833, 0.40610375968077794]}, {"name": "Black & Decker BD12PSK", "score": 52, "image": "/images/WEBP/drill/black-decker-bd12psk.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Chuck", "Performance"], "propScore": [0.5295123824519848, 0.39288476411446244, 0.47016882298882484]}, {"name": "Black & Decker LD120VA", "score": 78, "image": "/images/WEBP/drill/black-decker-ld120va.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Chuck", "Performance"], "propScore": [0.7251377720993948, 0.40510440835266825, 0.6506799227510212]}, {"name": "Black & Decker DR260B", "score": 62, "image": "/images/WEBP/drill/black-decker-dr260b.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Chuck", "Performance"], "propScore": [0.5965282605791057, 0.4048723897911833, 0.5571005801528627]}, {"name": "Black & Decker LDX112C", "score": 49, "image": "/images/WEBP/drill/black-decker-ldx112c.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Chuck", "Performance"], "propScore": [0.47248857703550057, 0.4048723897911833, 0.323743829401986]}, {"name": "Black & Decker HPD12K-2", "score": 58, "image": "/images/WEBP/drill/black-decker-hpd12k-2.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Chuck", "Performance"], "propScore": [0.7144010622418152, 0, 0.3818268419852314]}, {"name": "Black & Decker LDX172C", "score": 52, "image": "/images/WEBP/drill/black-decker-ldx172c.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Chuck", "Performance"], "propScore": [0.49805155071833224, 0.4048723897911833, 0.04166079624979657]}, {"name": "Black & Decker LDX116C", "score": 49, "image": "/images/WEBP/drill/black-decker-ldx116c.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Chuck", "Performance"], "propScore": [0.48246101220878085, 0.4048723897911833, 0.3337745023398433]}, {"name": "Black & Decker Li2000", "score": 52, "image": "/images/WEBP/drill/black-decker-li2000.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Chuck", "Performance"], "propScore": [0.593065321849578, 0, 0.00953373752023745]}, {"name": "Black & Decker SS12C", "score": 54, "image": "/images/WEBP/drill/black-decker-ss12c.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Chuck", "Performance"], "propScore": [0.5277140579996882, 0.4048723897911833, 0.38328030904217786]}, {"name": "Bosch 11264EVS", "score": 54, "image": "/images/WEBP/drill/bosch-11264evs.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Chuck", "Performance"], "propScore": [0.36193701897160224, 0.5893271461716937, 0.5491912957538208]}, {"name": "Bosch 11321EVS", "score": 49, "image": "/images/WEBP/drill/bosch-11321evs.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Chuck", "Performance"], "propScore": [0.2697957761734434, 0.5893271461716937, 0.4790456439695053]}, {"name": "Bosch 11253VSR", "score": 74, "image": "/images/WEBP/drill/bosch-11253vsr.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Chuck", "Performance"], "propScore": [0.6604447966224164, 0.5893271461716937, 0.5091696917223146]}, {"name": "Bosch 11316EVS", "score": 51, "image": "/images/WEBP/drill/bosch-11316evs.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Chuck", "Performance"], "propScore": [0.31127941168548, 0, 0.7099605870396041]}, {"name": "Bosch 38636-01", "score": 61, "image": "/images/WEBP/drill/bosch-38636-01.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Chuck", "Performance"], "propScore": [0.6549060508696577, 0.44547563805104406, 0.5251369712585687]}, {"name": "Bosch DDS182-02", "score": 65, "image": "/images/WEBP/drill/bosch-dds182-02.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Chuck", "Performance"], "propScore": [0.7117554974334902, 0.4419953596287703, 0.49142969342388787]}, {"name": "Bosch 1191VSRK", "score": 72, "image": "/images/WEBP/drill/bosch-1191vsrk.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Chuck", "Performance"], "propScore": [0.5511056887742127, 0.14733178654292342, 0.5998123962124329]}, {"name": "Bosch GSR 12V-15", "score": 100, "image": "/images/WEBP/drill/bosch-gsr-12v-15.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Chuck", "Performance"], "propScore": [0.8920143292786318, 1, 0.6263990040521709]}, {"name": "Bosch HDB180-02", "score": 75, "image": "/images/WEBP/drill/bosch-hdb180-02.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Chuck", "Performance"], "propScore": [0.7719690812684536, 0.4048723897911833, 0.45921574811454696]}, {"name": "Bosch HDS181-02", "score": 93, "image": "/images/WEBP/drill/bosch-hds181-02.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Chuck", "Performance"], "propScore": [0.9218714962530088, 0.44547563805104406, 0.5391145028365157]}, {"name": "Bosch HD21-2", "score": 79, "image": "/images/WEBP/drill/bosch-hd21-2.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Chuck", "Performance"], "propScore": [0.5316492783156966, 0.1508120649651972, 0.7629616512806633]}, {"name": "Bosch HDH181-01", "score": 96, "image": "/images/WEBP/drill/bosch-hdh181-01.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Chuck", "Performance"], "propScore": [0.956431913697484, 0.44547563805104406, 0.5625968351517369]}, {"name": "Bosch RH328VC", "score": 65, "image": "/images/WEBP/drill/bosch-rh328vc.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Chuck", "Performance"], "propScore": [0.532224905540114, 0.5893271461716937, 0.4938502740022483]}, {"name": "Craftsman 10116", "score": 55, "image": "/images/WEBP/drill/craftsman-10116.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Chuck", "Performance"], "propScore": [0.4773181434912168, 0.4419953596287703, 0.659839852171235]}, {"name": "Bosch RH432VCQ", "score": 54, "image": "/images/WEBP/drill/bosch-rh432vcq.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Chuck", "Performance"], "propScore": [0.39302989212760286, 0.5893271461716937, 0.4934177192106763]}, {"name": "Bosch RHS181B", "score": 72, "image": "/images/WEBP/drill/bosch-rhs181b.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Chuck", "Performance"], "propScore": [0.8209982356530983, 0.4419953596287703, 0.3642387186847627]}, {"name": "Craftsman 11543", "score": 81, "image": "/images/WEBP/drill/craftsman-11543.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Chuck", "Performance"], "propScore": [0.7115832580791176, 0.4419953596287703, 0.4550523553460308]}, {"name": "Craftsman 16496", "score": 48, "image": "/images/WEBP/drill/craftsman-16496.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Chuck", "Performance"], "propScore": [0.4170537420725122, 0.4048723897911833, 0.44648167088889973]}, {"name": "Craftsman 11581", "score": 64, "image": "/images/WEBP/drill/craftsman-11581.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Chuck", "Performance"], "propScore": [0.6295198770188166, 0.4419953596287703, 0.46648290055144265]}, {"name": "Craftsman 11580X", "score": 67, "image": "/images/WEBP/drill/craftsman-11580x.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Chuck", "Performance"], "propScore": [0.6050138757064154, 0.39288476411446244, 0.2249968866905304]}, {"name": "Craftsman 17191", "score": 66, "image": "/images/WEBP/drill/craftsman-17191.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Chuck", "Performance"], "propScore": [0.6802608316606342, 0.4048723897911833, 0.31960485932864663]}, {"name": "Craftsman 17217", "score": 52, "image": "/images/WEBP/drill/craftsman-17217.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Chuck", "Performance"], "propScore": [0.33416467708224157, 0.4048723897911833, 1]}, {"name": "Craftsman 17191X", "score": 60, "image": "/images/WEBP/drill/craftsman-17191x.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Chuck", "Performance"], "propScore": [0.5220677211889174, 0.4419953596287703, 0.4494075497689278]}, {"name": "Craftsman 17560X", "score": 70, "image": "/images/WEBP/drill/craftsman-17560x.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Chuck", "Performance"], "propScore": [0.725820348549391, 0.4419953596287703, 0.4632664964889771]}, {"name": "Craftsman 32742", "score": 41, "image": "/images/WEBP/drill/craftsman-32742.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Chuck", "Performance"], "propScore": [0.2834865624540459, 0.4048723897911833, 0.4835086621816663]}, {"name": "Craftsman 28126", "score": 64, "image": "/images/WEBP/drill/craftsman-28126.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Chuck", "Performance"], "propScore": [0.5441434402759286, 0.4048723897911833, 0.8745572836464429]}, {"name": "DeWalt D21441", "score": 47, "image": "/images/WEBP/drill/dewalt-d21441.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Chuck", "Performance"], "propScore": [0.35038957114657027, 0.44547563805104406, 0.6572716562242904]}, {"name": "DeWalt DCD760B", "score": 61, "image": "/images/WEBP/drill/dewalt-dcd760b.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Chuck", "Performance"], "propScore": [0.7010218362785361, 0.44547563805104406, 0.4574687179786639]}, {"name": "DeWalt DCD775B", "score": 94, "image": "/images/WEBP/drill/dewalt-dcd775b.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Chuck", "Performance"], "propScore": [0.816704822243439, 0.4419953596287703, 0.5028580134588482]}, {"name": "DeWalt DCD776", "score": 86, "image": "/images/WEBP/drill/dewalt-dcd776.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Chuck", "Performance"], "propScore": [0.9751101342547369, 0.44547563805104406, 0.48100171852858487]}, {"name": "DeWalt DCD790B", "score": 65, "image": "/images/WEBP/drill/dewalt-dcd790b.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Chuck", "Performance"], "propScore": [0.5969423867987551, 0.44547563805104406, 0.5258686744574572]}, {"name": "DeWalt DCD771", "score": 62, "image": "/images/WEBP/drill/dewalt-dcd771.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Chuck", "Performance"], "propScore": [0.6511807700215254, 0.44547563805104406, 0.5258686744574572]}, {"name": "DeWalt DW120K", "score": 49, "image": "/images/WEBP/drill/dewalt-dw120k.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Chuck", "Performance"], "propScore": [0.5003589429965607, 0.1508120649651972, 0.5782475251589553]}, {"name": "DeWalt DCD985B", "score": 92, "image": "/images/WEBP/drill/dewalt-dcd985b.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Chuck", "Performance"], "propScore": [0.8299834100915876, 0.14733178654292342, 0.5831339797330606]}, {"name": "DeWalt DCD980L2", "score": 71, "image": "/images/WEBP/drill/dewalt-dcd980l2.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Chuck", "Performance"], "propScore": [0.7028553996228906, 0.4419953596287703, 0.5334030970207031]}, {"name": "DeWalt DW130V", "score": 51, "image": "/images/WEBP/drill/dewalt-dw130v.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Chuck", "Performance"], "propScore": [0.36114830330265973, 0.1508120649651972, 0.5750941126443934]}, {"name": "DeWalt DW221", "score": 63, "image": "/images/WEBP/drill/dewalt-dw221.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Chuck", "Performance"], "propScore": [0.5448890327893667, 0.4106728538283062, 0.5610353011106936]}, {"name": "DeWalt DW246", "score": 48, "image": "/images/WEBP/drill/dewalt-dw246.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Chuck", "Performance"], "propScore": [0.27492188700655007, 0.44547563805104406, 0.5499088686356016]}, {"name": "DeWalt DW236i", "score": 44, "image": "/images/WEBP/drill/dewalt-dw236i.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Chuck", "Performance"], "propScore": [0.2778859972950318, 0.44547563805104406, 0.5060857958510749]}, {"name": "DeWalt DW217", "score": 53, "image": "/images/WEBP/drill/dewalt-dw217.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Chuck", "Performance"], "propScore": [0.4053548562529132, 0.3642691415313225, 0.7913602941176471]}, {"name": "DeWalt DWD115KS", "score": 71, "image": "/images/WEBP/drill/dewalt-dwd115ks.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Chuck", "Performance"], "propScore": [0.6095573916538839, 0.11600928074245939, 0.6987476359922549]}, {"name": "DeWalt DWD460", "score": 51, "image": "/images/WEBP/drill/dewalt-dwd460.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Chuck", "Performance"], "propScore": [0.32333271764923976, 0.1508120649651972, 0.6826917613100514]}, {"name": "Hyperikon CDB012-H1", "score": 78, "image": "/images/WEBP/drill/hyperikon-cdb012-h1.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Chuck", "Performance"], "propScore": [0.9039714365811229, 0.6995359628770302, 0.7216516585569336]}, {"name": "DeWalt DWD112S", "score": 70, "image": "/images/WEBP/drill/dewalt-dwd112s.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Chuck", "Performance"], "propScore": [0.4978174049320307, 0.4106728538283062, 0.6832526706823084]}, {"name": "Makita DS4011", "score": 36, "image": "/images/WEBP/drill/makita-ds4011.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Chuck", "Performance"], "propScore": [0.27980806703739713, 0.14733178654292342, 0.2156076763165999]}, {"name": "Makita BTP140Z", "score": 86, "image": "/images/WEBP/drill/makita-btp140z.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Chuck", "Performance"], "propScore": [0.8136758948531275, 0.07424593967517402, 0.6902227702329449]}, {"name": "Makita FD01W", "score": 55, "image": "/images/WEBP/drill/makita-fd01w.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Chuck", "Performance"], "propScore": [0.6281830410198284, 0.07424593967517402, 0.40519814586685443]}, {"name": "Makita DA4000LR", "score": 58, "image": "/images/WEBP/drill/makita-da4000lr.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Chuck", "Performance"], "propScore": [0.5063207986696249, 0.14733178654292342, 0.5592882142044161]}, {"name": "Makita HP331DSAX3", "score": 81, "image": "/images/WEBP/drill/makita-hp331dsax3.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Chuck", "Performance"], "propScore": [0.8772249681082239, 0.5893271461716937, 0.5247960916641464]}, {"name": "Makita HP2070F", "score": 91, "image": "/images/WEBP/drill/makita-hp2070f.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Chuck", "Performance"], "propScore": [0.7414297634692228, 0.22041763341067283, 0.866167097387555]}, {"name": "Makita HP2050F", "score": 96, "image": "/images/WEBP/drill/makita-hp2050f.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Chuck", "Performance"], "propScore": [0.7057781821308495, 0.22041763341067283, 0.9129823850778646]}, {"name": "Makita FD02W", "score": 79, "image": "/images/WEBP/drill/makita-fd02w.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Chuck", "Performance"], "propScore": [0.7516622151599899, 0.6995359628770302, 0.4059570503460773]}, {"name": "Makita HR2811F", "score": 70, "image": "/images/WEBP/drill/makita-hr2811f.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Chuck", "Performance"], "propScore": [0.7347778802920102, 0.03712296983758701, 0.3839947519437892]}, {"name": "Makita HR4041C", "score": 55, "image": "/images/WEBP/drill/makita-hr4041c.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Chuck", "Performance"], "propScore": [0.5489005490438942, 0, 0.4417561598273869]}, {"name": "Makita HR4010C", "score": 69, "image": "/images/WEBP/drill/makita-hr4010c.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Chuck", "Performance"], "propScore": [0.6073034001181992, 0.39288476411446244, 0.4255802890406949]}, {"name": "Makita HR4002", "score": 61, "image": "/images/WEBP/drill/makita-hr4002.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Chuck", "Performance"], "propScore": [0.4945289583583289, 0.18445475638051043, 0.34808670424075294]}, {"name": "Milwaukee 0101-20", "score": 59, "image": "/images/WEBP/drill/milwaukee-0101-20.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Chuck", "Performance"], "propScore": [0.4498956644953829, 0.07424593967517402, 0.7700432965064198]}, {"name": "Makita LXPH01", "score": 88, "image": "/images/WEBP/drill/makita-lxph01.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Chuck", "Performance"], "propScore": [0.8214960612401054, 0.4419953596287703, 0.4884292379431702]}, {"name": "Makita LXFD01Z", "score": 68, "image": "/images/WEBP/drill/makita-lxfd01z.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Chuck", "Performance"], "propScore": [0.7033361436011265, 0.4419953596287703, 0.48534951761587314]}, {"name": "Makita LXPH05Z", "score": 81, "image": "/images/WEBP/drill/makita-lxph05z.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Chuck", "Performance"], "propScore": [0.7065088666488014, 0.4419953596287703, 0.4857448715237279]}, {"name": "Milwaukee 0240-20", "score": 60, "image": "/images/WEBP/drill/milwaukee-0240-20.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Chuck", "Performance"], "propScore": [0.442705635459615, 0.4048723897911833, 0.708948439715536]}, {"name": "Milwaukee 0726-22", "score": 81, "image": "/images/WEBP/drill/milwaukee-0726-22.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Chuck", "Performance"], "propScore": [0.6521516126904358, 0.4419953596287703, 0.5878670250070632]}, {"name": "Milwaukee 0299-20", "score": 53, "image": "/images/WEBP/drill/milwaukee-0299-20.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Chuck", "Performance"], "propScore": [0.42864655110022254, 0.14733178654292342, 0.5896821407350412]}, {"name": "Milwaukee 0726-20", "score": 87, "image": "/images/WEBP/drill/milwaukee-0726-20.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Chuck", "Performance"], "propScore": [0.7697376143944225, 0.4419953596287703, 0.5755812288262584]}, {"name": "Ryobi D47CK", "score": 58, "image": "/images/WEBP/drill/ryobi-d47ck.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Chuck", "Performance"], "propScore": [0.5630318983524106, 0.4048723897911833, 0.5208709836022006]}, {"name": "Milwaukee 5380-21", "score": 90, "image": "/images/WEBP/drill/milwaukee-5380-21.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Chuck", "Performance"], "propScore": [0.8279823154498379, 0.14733178654292342, 0.6334380703556669]}, {"name": "Ryobi D42K", "score": 51, "image": "/images/WEBP/drill/ryobi-d42k.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Chuck", "Performance"], "propScore": [0.4594135041107814, 0.4048723897911833, 0.5347299303222499]}, {"name": "Milwaukee 5376-20", "score": 73, "image": "/images/WEBP/drill/milwaukee-5376-20.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Chuck", "Performance"], "propScore": [0.4264214369925163, 0.14733178654292342, 0.7728949598371089]}, {"name": "Ryobi D552HK", "score": 80, "image": "/images/WEBP/drill/ryobi-d552hk.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Chuck", "Performance"], "propScore": [0.6397360471074709, 0.14733178654292342, 0.7812114880334055]}, {"name": "Ryobi P250", "score": 65, "image": "/images/WEBP/drill/ryobi-p250.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Chuck", "Performance"], "propScore": [0.6542055167681253, 0.4419953596287703, 0.4797601228698144]}, {"name": "Ryobi HJP003K", "score": 53, "image": "/images/WEBP/drill/ryobi-hjp003k.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Chuck", "Performance"], "propScore": [0.5906524884716793, 0.4048723897911833, 0.37901932904875885]}, {"name": "Ryobi D620H", "score": 79, "image": "/images/WEBP/drill/ryobi-d620h.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Chuck", "Performance"], "propScore": [0.5863116694971965, 0.14733178654292342, 0.7147903424663263]}, {"name": "Tacklife PCD03B", "score": 94, "image": "/images/WEBP/drill/tacklife-pcd03b.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Chuck", "Performance"], "propScore": [1, 0.6995359628770302, 0.6207072204579992]}]}
data/drone.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"data": [{"name": "Autel Evo II Enterprise", "score": 68, "image": "/images/WEBP/drone/autel-evo-ii-enterprise.front.medium2x.1633016391660.webp", "propGroups": ["General info", "Performance", "Cameras", "Battery", "Features"], "propScore": [1, 0.6990448929477525, 0.5761311901202265, 0.9293183087152936, 0.2770605759682224]}, {"name": "Autel Evo II Pro", "score": 66, "image": "/images/WEBP/drone/autel-evo-ii-pro.front.medium2x.1633015334903.webp", "propGroups": ["General info", "Performance", "Cameras", "Battery", "Features"], "propScore": [0.8682731326405159, 0.6881174066280337, 0.5215983546718963, 0.9966499162479062, 0.5110883390732954]}, {"name": "Autel Evo II Dual 640T", "score": 59, "image": "/images/WEBP/drone/autel-evo-ii-dual-640t.front.medium2x.1633016289398.webp", "propGroups": ["General info", "Performance", "Cameras", "Battery", "Features"], "propScore": [0.9760726645123781, 0.48031360609547485, 0.5556547181324709, 0.9966499162479062, 0.5110883390732954]}, {"name": "Autel Evo II Dual", "score": 67, "image": "/images/WEBP/drone/autel-evo-ii-dual.front.medium2x.1633015887877.webp", "propGroups": ["General info", "Performance", "Cameras", "Battery", "Features"], "propScore": [0.8634438609041637, 0.6779806358703477, 0.5516568465087676, 0.9966499162479062, 0.6219125694605844]}, {"name": "Autel Evo II", "score": 75, "image": "/images/WEBP/drone/autel-evo-ii.front.medium2x.1633015801799.webp", "propGroups": ["General info", "Performance", "Cameras", "Battery", "Features"], "propScore": [0.8714428369201933, 0.6881174066280337, 0.6055189436233801, 0.9966499162479062, 0.6219125694605844]}, {"name": "Autel Evo Nano", "score": 60, "image": "/images/WEBP/drone/autel-evo-nano.front.medium2x.1637148988873.webp", "propGroups": ["General info", "Performance", "Cameras", "Battery", "Features"], "propScore": [0.9049109236815968, 0.5796677744988107, 0.6160106060906947, 0.7598484848484848, 0.41559086395233363]}, {"name": "Autel Evo Lite", "score": 73, "image": "/images/WEBP/drone/autel-evo-lite.front.medium2x.1646898179876.webp", "propGroups": ["General info", "Performance", "Cameras", "Battery", "Features"], "propScore": [0.7377496219326035, 0.6812484093998437, 0.7233557793435931, 0.9499327445307344, 0.41559086395233363]}, {"name": "Autel Evo II RTK Series", "score": 59, "image": "/images/WEBP/drone/autel-evo-ii-rtk-series.front.medium2x.1633015173239.webp", "propGroups": ["General info", "Performance", "Cameras", "Battery", "Features"], "propScore": [0.8869527377668558, 0.667843865112662, 0.5842034820667145, 0.9966499162479062, 0.1385302879841112]}, {"name": "DJI Avata FPV", "score": 62, "image": "/images/WEBP/drone/dji-avata-fpv.front.medium2x.1663323733263.webp", "propGroups": ["General info", "Performance", "Cameras", "Battery", "Features"], "propScore": [0.9852526826617729, 0.4482991277346406, 0.7445575694032646, 0.6454545454545455, 0.6926514399205561]}, {"name": "DJI Mavic 2 Pro", "score": 92, "image": "/images/WEBP/drone/dji-mavic-2-pro.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Performance", "Cameras", "Battery", "Features"], "propScore": [0.7712817828681818, 0.8419480780078952, 0.7423692794083899, 0.7537878787878788, 0.9400853599273172]}, {"name": "DJI Mavic 2 Zoom", "score": 92, "image": "/images/WEBP/drone/dji-mavic-2-zoom.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Performance", "Cameras", "Battery", "Features"], "propScore": [0.7714473932670531, 0.8419480780078952, 0.74867574641741, 0.7537878787878788, 0.9400853599273172]}, {"name": "DJI Air 2S", "score": 87, "image": "/images/WEBP/drone/dji-air-2s.front.medium2x.1622204572883.webp", "propGroups": ["General info", "Performance", "Cameras", "Battery", "Features"], "propScore": [0.9200007622262613, 0.8309278240790309, 0.9194840835871778, 0.8148317344297243, 0.5110883390732954]}, {"name": "DJI Mavic 3E", "score": 66, "image": "/images/WEBP/drone/dji-mavic-3e.front.medium2x.1667561343762.webp", "propGroups": ["General info", "Performance", "Cameras", "Battery", "Features"], "propScore": [0.8256916765857535, 0.7278401285897537, 0.5449515743551516, 0.8409090909090908, 0.41559086395233363]}, {"name": "DJI Mavic 3 Cine", "score": 92, "image": "/images/WEBP/drone/dji-mavic-3-cine.front.medium2x.1636121437205.webp", "propGroups": ["General info", "Performance", "Cameras", "Battery", "Features"], "propScore": [0.8011694483223064, 0.9301801859624529, 0.8558824191282147, 0.5572559768539668, 0.5942065118637622]}, {"name": "DJI Mavic 3 Classic", "score": 78, "image": "/images/WEBP/drone/dji-mavic-3-classic.front.medium2x.1667828906525.webp", "propGroups": ["General info", "Performance", "Cameras", "Battery", "Features"], "propScore": [0.7522524048287219, 0.6735080726726925, 0.880356762739674, 0.3409090909090909, 0.4139533900990936]}, {"name": "DJI Mavic 3", "score": 54, "image": "/images/WEBP/drone/dji-mavic-3.front.medium2x.1635772166317.webp", "propGroups": ["General info", "Performance", "Cameras", "Battery", "Features"], "propScore": [0.8008918448055119, 0.5948346279861759, 0.47908407005234227, 0.8409090909090908, 0.3725580510891843]}, {"name": "DJI Mavic Air 2", "score": 100, "image": "/images/WEBP/drone/dji-mavic-air-2.front.medium2x.1603950704230.webp", "propGroups": ["General info", "Performance", "Cameras", "Battery", "Features"], "propScore": [0.8972029674740889, 0.8474178930038635, 1, 0.8181818181818182, 0.8435610302351623]}, {"name": "DJI Mavic 3T", "score": 70, "image": "/images/WEBP/drone/dji-mavic-3t.front.medium2x.1667827575617.webp", "propGroups": ["General info", "Performance", "Cameras", "Battery", "Features"], "propScore": [0.8252776505885752, 0.7278401285897537, 0.6464413003727456, 0.8409090909090908, 0.41559086395233363]}, {"name": "DJI Mavic Air", "score": 87, "image": "/images/WEBP/drone/dji-mavic-air.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Performance", "Cameras", "Battery", "Features"], "propScore": [0.8963360914884074, 0.7798486125095853, 0.6927262815518792, 0.6420454545454546, 0.8292611295400283]}, {"name": "DJI Mavic Mini 2", "score": 59, "image": "/images/WEBP/drone/dji-mavic-mini-2.front.medium2x.1646896204415.webp", "propGroups": ["General info", "Performance", "Cameras", "Battery", "Features"], "propScore": [0.960577798709459, 0.40569586499082466, 0.5878805036064548, 0.8923151109080757, 0.37636544190665344]}, {"name": "DJI Mini 3 Pro", "score": 90, "image": "/images/WEBP/drone/dji-mini-3-pro.front.medium2x.1652362670392.webp", "propGroups": ["General info", "Performance", "Cameras", "Battery", "Features"], "propScore": [0.9109099862384964, 0.8825194483830735, 0.8113201452786006, 0.8318384853560733, 0.49960278053624624]}, {"name": "DJI Mavic Pro Platinum", "score": 76, "image": "/images/WEBP/drone/dji-mavic-pro-platinum.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Performance", "Cameras", "Battery", "Features"], "propScore": [0.8885129513044654, 0.976397966594045, 0.4211480896280462, 0.25227272727272726, 0.9920556107249254]}, {"name": "DJI Mavic Mini", "score": 72, "image": "/images/WEBP/drone/dji-mavic-mini.front.medium2x.1603951496098.webp", "propGroups": ["General info", "Performance", "Cameras", "Battery", "Features"], "propScore": [0.9692374334216624, 0.5676058942863612, 0.5248372748397392, 0.7693771889751789, 0.8927507447864945]}, {"name": "DJI Mavic Pro", "score": 75, "image": "/images/WEBP/drone/dji-mavic-pro.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Performance", "Cameras", "Battery", "Features"], "propScore": [0.8650972547708701, 0.801017780868353, 0.4877726916814625, 0.7522727272727272, 1]}, {"name": "DJI Phantom 3 SE", "score": 80, "image": "/images/WEBP/drone/dji-phantom-3-se.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Performance", "Cameras", "Battery", "Features"], "propScore": [0.5519056025319619, 0.5717665091495904, 0.6888979382091872, 0.8015151515151515, 0.8689175769612711]}, {"name": "DJI Phantom 4 Pro", "score": 100, "image": "/images/WEBP/drone/dji-phantom-4-pro.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Performance", "Cameras", "Battery", "Features"], "propScore": [0.6327019787384838, 0.8347052248334611, 0.9220768845004151, 0.9339591898888381, 0.8768619662363455]}, {"name": "DJI Phantom 4 Pro V2.0", "score": 81, "image": "/images/WEBP/drone/dji-phantom-4-pro-v2-0.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Performance", "Cameras", "Battery", "Features"], "propScore": [0.5583134335858915, 0.7747167232599922, 0.5303504034505879, 0.9356677326024059, 0.8768619662363455]}, {"name": "DJI Phantom 4 Advanced", "score": 90, "image": "/images/WEBP/drone/dji-phantom-4-advanced.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Performance", "Cameras", "Battery", "Features"], "propScore": [0.8426208703745312, 1, 0.5635218719993008, 0.9068181818181817, 0.8768619662363455]}, {"name": "Holy Stone HS100", "score": 50, "image": "/images/WEBP/drone/holy-stone-hs100.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Performance", "Cameras", "Battery", "Features"], "propScore": [0.5132487335427564, 0.6355684100668407, 0.33084856155293774, 0.7492513070402517, 0.6926514399205561]}, {"name": "Holy Stone F181W", "score": 30, "image": "/images/WEBP/drone/holy-stone-f181w.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Performance", "Cameras", "Battery", "Features"], "propScore": [0.6421884516874873, 0.035871358890102754, 0.25635103836224615, 0.6759428455408355, 0.6926514399205561]}, {"name": "DJI Spark", "score": 60, "image": "/images/WEBP/drone/dji-spark.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Performance", "Cameras", "Battery", "Features"], "propScore": [0.9117813210185408, 0.70277093350365, 0.2434211599045489, 0.713481549159941, 0.8689175769612711]}, {"name": "Holy Stone HS100G", "score": 41, "image": "/images/WEBP/drone/holy-stone-hs100g.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Performance", "Cameras", "Battery", "Features"], "propScore": [0.7648552096284505, 0.5170796830961637, 0.28358448133108954, 0.7593015582965332, 0.7388282025819264]}, {"name": "Holy Stone HS110D", "score": 22, "image": "/images/WEBP/drone/holy-stone-hs110d.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Performance", "Cameras", "Battery", "Features"], "propScore": [0.6087452703144167, 0.2493859099592453, 0.25190362742488714, 0.3535607329577179, 0.41559086395233363]}, {"name": "Holy Stone HS110G", "score": 24, "image": "/images/WEBP/drone/holy-stone-hs110g.front.medium2x.1621951675737.webp", "propGroups": ["General info", "Performance", "Cameras", "Battery", "Features"], "propScore": [0.8860459026398493, 0.5048325330529274, 0.1956565627465926, 0.7087965077914827, 0.41559086395233363]}, {"name": "Holy Stone HS130D", "score": 35, "image": "/images/WEBP/drone/holy-stone-hs130d.front.medium2x.1621948278810.webp", "propGroups": ["General info", "Performance", "Cameras", "Battery", "Features"], "propScore": [0.9672910500478512, 0.5170322401624418, 0.1937858959459904, 0.6877442769402569, 0.6926514399205561]}, {"name": "Holy Stone HS120D", "score": 36, "image": "/images/WEBP/drone/holy-stone-hs120d.front.medium2x.1621950186841.webp", "propGroups": ["General info", "Performance", "Cameras", "Battery", "Features"], "propScore": [0.8428406775444306, 0.5231143026170532, 0.23339428241750998, 0.6969950763920613, 0.6926514399205561]}, {"name": "Holy Stone HS140", "score": 15, "image": "/images/WEBP/drone/holy-stone-hs140.front.medium2x.1622118636600.webp", "propGroups": ["General info", "Performance", "Cameras", "Battery", "Features"], "propScore": [0.8438348025660158, 0.2919484864080952, 0.11992428369614944, 0.7020455814425665, 0.1385302879841112]}, {"name": "Holy Stone HS165", "score": 32, "image": "/images/WEBP/drone/holy-stone-hs165.front.medium2x.1622020628773.webp", "propGroups": ["General info", "Performance", "Cameras", "Battery", "Features"], "propScore": [0.8954888732838733, 0.5170559616293028, 0.17168367331142964, 0.6831785188569107, 0.6186693147964251]}, {"name": "Holy Stone HS160", "score": 18, "image": "/images/WEBP/drone/holy-stone-hs160.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Performance", "Cameras", "Battery", "Features"], "propScore": [0.7741738017842363, 0, 0.11397388280379875, 0.6649916247906198, 0.41559086395233363]}, {"name": "Holy Stone HS161", "score": 24, "image": "/images/WEBP/drone/holy-stone-hs161.front.medium2x.1622121035439.webp", "propGroups": ["General info", "Performance", "Cameras", "Battery", "Features"], "propScore": [0.9440271319564969, 0.4865744849556624, 0.299721213506272, 0.6868940662910511, 0.2770605759682224]}, {"name": "Holy Stone HS230", "score": 14, "image": "/images/WEBP/drone/holy-stone-hs230.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Performance", "Cameras", "Battery", "Features"], "propScore": [0.6181190734861136, 0.060147703815024836, 0.12221617273583546, 0.6776178874168824, 0.41559086395233363]}, {"name": "Holy Stone HS220", "score": 6, "image": "/images/WEBP/drone/holy-stone-hs220.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Performance", "Cameras", "Battery", "Features"], "propScore": [0.7858795080620227, 0.006082062454611474, 0.03714072965216569, 0.6725927617887417, 0.1385302879841112]}, {"name": "Holy Stone HS175", "score": 37, "image": "/images/WEBP/drone/holy-stone-hs175.front.medium2x.1622027491513.webp", "propGroups": ["General info", "Performance", "Cameras", "Battery", "Features"], "propScore": [0.8499329001487231, 0.5596185380781526, 0.21282407938214984, 0.7003705395665195, 0.6226415094339622]}, {"name": "Holy Stone HS240", "score": 32, "image": "/images/WEBP/drone/holy-stone-hs240.front.medium2x.1622114927220.webp", "propGroups": ["General info", "Performance", "Cameras", "Battery", "Features"], "propScore": [0.8869400051521584, 0.49873860986488533, 0.1937858959459904, 0.688569108167098, 0.5541211519364448]}, {"name": "Holy Stone HS350", "score": 31, "image": "/images/WEBP/drone/holy-stone-hs350.front.medium2x.1622036591564.webp", "propGroups": ["General info", "Performance", "Cameras", "Battery", "Features"], "propScore": [0.858892528019191, 0.5291441778445705, 0.19747394913945707, 0.7138470128419877, 0.5541211519364448]}, {"name": "Holy Stone HS650", "score": 21, "image": "/images/WEBP/drone/holy-stone-hs650.front.medium2x.1622122700099.webp", "propGroups": ["General info", "Performance", "Cameras", "Battery", "Features"], "propScore": [0.8819056853462198, 0.48656974066229014, 0.23339428241750998, 0.9954773869346734, 0.1385302879841112]}, {"name": "Holy Stone HS510", "score": 26, "image": "/images/WEBP/drone/holy-stone-hs510.front.medium2x.1622033792089.webp", "propGroups": ["General info", "Performance", "Cameras", "Battery", "Features"], "propScore": [0.9228708706573654, 0.5232329099513583, 0.24654769918679972, 0.7003705395665195, 0.3723932472691162]}, {"name": "Holy Stone HS270", "score": 34, "image": "/images/WEBP/drone/holy-stone-hs270.front.medium2x.1622032475360.webp", "propGroups": ["General info", "Performance", "Cameras", "Battery", "Features"], "propScore": [0.764093194016926, 0.5353495919268592, 0.256663173283927, 0.7997563575453022, 0.4955312810327706]}, {"name": "Holy Stone HS700", "score": 44, "image": "/images/WEBP/drone/holy-stone-hs700.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Performance", "Cameras", "Battery", "Features"], "propScore": [0.6686577144208269, 0.6538217138707334, 0.12437220633010139, 0.7610527384396731, 0.41559086395233363]}, {"name": "Holy Stone HS700D", "score": 39, "image": "/images/WEBP/drone/holy-stone-hs700d.front.medium2x.1622029740543.webp", "propGroups": ["General info", "Performance", "Cameras", "Battery", "Features"], "propScore": [0.6105702493739509, 0.559772727612749, 0.21663171606938172, 0.7610527384396731, 0.6186693147964251]}, {"name": "Holy Stone HS700E", "score": 42, "image": "/images/WEBP/drone/holy-stone-hs700e.front.medium2x.1622035776377.webp", "propGroups": ["General info", "Performance", "Cameras", "Battery", "Features"], "propScore": [0.8297997240146359, 0.5536906651581376, 0.3344699662651766, 0.7677529059438607, 0.6305858987090367]}, {"name": "Holy Stone HS720", "score": 31, "image": "/images/WEBP/drone/holy-stone-hs720.front.medium2x.1622123793560.webp", "propGroups": ["General info", "Performance", "Cameras", "Battery", "Features"], "propScore": [0.7975713222537311, 0.5841009774311949, 0.26993862969062804, 0.7610527384396731, 0.3723932472691162]}, {"name": "Parrot Mambo FPV", "score": 30, "image": "/images/WEBP/drone/parrot-mambo-fpv.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Performance", "Cameras", "Battery", "Features"], "propScore": [0.44016102650071093, 0.023912530733446527, 0.2673473981440842, 0.6747474747474748, 0.5541211519364448]}, {"name": "Holy Stone HS720E", "score": 43, "image": "/images/WEBP/drone/holy-stone-hs720e.front.medium2x.1622034913471.webp", "propGroups": ["General info", "Performance", "Cameras", "Battery", "Features"], "propScore": [0.8641614376484497, 0.5658547900673605, 0.3344699662651766, 0.7677529059438607, 0.6305858987090367]}, {"name": "Parrot Bebop 2", "score": 51, "image": "/images/WEBP/drone/parrot-bebop-2.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Performance", "Cameras", "Battery", "Features"], "propScore": [0.6502003557496462, 0.3733680674798368, 0.41454459550043204, 0.7761027359017308, 0.4139533900990936]}, {"name": "Parrot Anafi", "score": 79, "image": "/images/WEBP/drone/parrot-anafi.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Performance", "Cameras", "Battery", "Features"], "propScore": [0.884316548987733, 0.5648825827395202, 0.7547213010402517, 0.6666666666666666, 0.8629592850049651]}, {"name": "Potensic Dreamer Pro", "score": 33, "image": "/images/WEBP/drone/potensic-dreamer-pro.front.medium2x.1622193794438.webp", "propGroups": ["General info", "Performance", "Cameras", "Battery", "Features"], "propScore": [0.7320355511924941, 0.5079028628185859, 0.22482866420082226, 0.7778031572001421, 0.3723932472691162]}, {"name": "Potensic D50", "score": 21, "image": "/images/WEBP/drone/potensic-d50.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Performance", "Cameras", "Battery", "Features"], "propScore": [0.8861633936567977, 0.6462191358024693, 0.14990535462018678, 0.07575757575757576, 0.41559086395233363]}, {"name": "Potensic D80", "score": 55, "image": "/images/WEBP/drone/potensic-d80.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Performance", "Cameras", "Battery", "Features"], "propScore": [0.34596671702535187, 0.6160537161278333, 0.299721213506272, 0.5984848484848485, 0.9697120158887785]}, {"name": "Potensic D60", "score": 33, "image": "/images/WEBP/drone/potensic-d60.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Performance", "Cameras", "Battery", "Features"], "propScore": [0.5244133149513328, 0.9807325708061002, 0.22954061009346843, 0.5984848484848485, 0.1385302879841112]}, {"name": "Potensic T35", "score": 20, "image": "/images/WEBP/drone/potensic-t35.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Performance", "Cameras", "Battery", "Features"], "propScore": [0.8268676087706459, 0.04260764723588572, 0.2248580319302802, 0.6515151515151515, 0.4955312810327706]}, {"name": "Potensic T18", "score": 33, "image": "/images/WEBP/drone/potensic-t18.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Performance", "Cameras", "Battery", "Features"], "propScore": [0.7586656010857291, 0.9047067901234568, 0.1428815513374786, 0.5378787878787878, 0.2770605759682224]}, {"name": "Potensic T25", "score": 44, "image": "/images/WEBP/drone/potensic-t25.front.medium2x.1576684641045.webp", "propGroups": ["General info", "Performance", "Cameras", "Battery", "Features"], "propScore": [0.5972111895275929, 0.6462191358024693, 0.3049995319911162, 0.6515151515151515, 0.7418073485600795]}, {"name": "Ryze Tello", "score": 11, "image": "/images/WEBP/drone/ryze-tello.front.medium2x.1622192483161.webp", "propGroups": ["General info", "Performance", "Cameras", "Battery", "Features"], "propScore": [0.9892444157080412, 0.26762023658964923, 0.1543056894709972, 1, 0.2770605759682224]}, {"name": "Snaptain SP650", "score": 23, "image": "/images/WEBP/drone/snaptain-sp650.front.medium2x.1622125260321.webp", "propGroups": ["General info", "Performance", "Cameras", "Battery", "Features"], "propScore": [0.8050029130092067, 0.49873386557151306, 0.23339428241750998, 0.6868940662910511, 0.2770605759682224]}, {"name": "Snaptain SP700", "score": 26, "image": "/images/WEBP/drone/snaptain-sp700.front.medium2x.1622126133466.webp", "propGroups": ["General info", "Performance", "Cameras", "Battery", "Features"], "propScore": [0.6394470407752354, 0.5353258704599981, 0.21663171606938172, 0.7239480229429978, 0.37636544190665344]}, {"name": "Snaptain SP500", "score": 29, "image": "/images/WEBP/drone/snaptain-sp500.front.medium2x.1622126926521.webp", "propGroups": ["General info", "Performance", "Cameras", "Battery", "Features"], "propScore": [0.779417827441414, 0.5170085186955807, 0.21282407938214984, 0.6852190244150043, 0.5074478649453823]}, {"name": "Snaptain S5C", "score": 18, "image": "/images/WEBP/drone/snaptain-s5c.front.medium2x.1622191083918.webp", "propGroups": ["General info", "Performance", "Cameras", "Battery", "Features"], "propScore": [0.7769778446868078, 0.48656974066229014, 0.13849464852223228, 0.6658418354398253, 0.24925521350546176]}]}
data/electric-bike.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"data": [{"name": "Aventon Level Commuter", "score": 61, "image": "/images/WEBP/electric-bike/aventon-level-commuter.front.medium2x.1640275424466.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.6423592327743898, 0.4425064599483204, 0.6781588626296232, 0.25]}, {"name": "Aventon Aventure", "score": 75, "image": "/images/WEBP/electric-bike/aventon-aventure.front.medium2x.1640268370407.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.6269464471799514, 0.4483204134366925, 0.8620535689958041, 0.5]}, {"name": "Aventon Pace 500", "score": 60, "image": "/images/WEBP/electric-bike/aventon-pace-500.front.medium2x.1640355099459.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.3272370785722806, 0.7062338501291989, 0.6781588626296232, 0.125]}, {"name": "Aventon Sinch Foldable", "score": 69, "image": "/images/WEBP/electric-bike/aventon-sinch-foldable.front.medium2x.1640277131049.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.9672850305590135, 0.4425064599483204, 0.7403791304904229, 0.25]}, {"name": "Biktrix Juggernaut Classic 8", "score": 67, "image": "/images/WEBP/electric-bike/biktrix-juggernaut-classic-8.front.medium2x.1650985758816.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.5693990614955456, 0.48320413436692505, 0.5305666443006937, 0.7142857142857143]}, {"name": "Biktrix Juggernaut Hub Duo Step-Over", "score": 75, "image": "/images/WEBP/electric-bike/biktrix-juggernaut-hub-duo-step-over.front.medium2x.1640182709893.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.6428571428571429, 0.1469638242894057, 0.6738399309242811, 0.625]}, {"name": "Biktrix Challenger", "score": 66, "image": "/images/WEBP/electric-bike/biktrix-challenger.front.medium2x.1640088396993.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.8333333333333334, 0.11240310077519379, 0.5697717457816819, 0.4875]}, {"name": "Biktrix Juggernaut HD Limited", "score": 64, "image": "/images/WEBP/electric-bike/biktrix-juggernaut-hd-limited.front.medium2x.1640007213684.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.634093779016731, 0.5271317829457365, 0.7692418708594458, 0.25]}, {"name": "Biktrix Juggernaut Ultra Duo 3 Step-Over", "score": 76, "image": "/images/WEBP/electric-bike/biktrix-juggernaut-ultra-duo-3-step-over.front.medium2x.1640195340671.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.6428571428571429, 0.8136304909560724, 0.6165805690965301, 0.5]}, {"name": "Biktrix Juggernaut Ultra 1000", "score": 64, "image": "/images/WEBP/electric-bike/biktrix-juggernaut-ultra-1000.front.medium2x.1640090877331.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.4523809523809524, 0.5, 0.6144284081726215, 0.5]}, {"name": "Biktrix Juggernaut Ultra Duo 2 Step-Over", "score": 64, "image": "/images/WEBP/electric-bike/biktrix-juggernaut-ultra-duo-2-step-over.front.medium2x.1640193193903.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.6428571428571429, 0.1469638242894057, 0.6307215146500249, 0.5]}, {"name": "Biktrix Juggernaut Ultra 1000 Pro", "score": 64, "image": "/images/WEBP/electric-bike/biktrix-juggernaut-ultra-1000-pro.front.medium2x.1640095505364.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.4523809523809524, 0.49612403100775193, 0.6680970752373874, 0.375]}, {"name": "Biktrix Monte Capro Ultra", "score": 69, "image": "/images/WEBP/electric-bike/biktrix-monte-capro-ultra.front.medium2x.1640011174428.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.9523809523809524, 0.4689922480620155, 0.611220470191701, 0.25]}, {"name": "Biktrix Juggernaut Ultra FS Pro Custom", "score": 81, "image": "/images/WEBP/electric-bike/biktrix-juggernaut-ultra-fs-pro-custom.front.medium2x.1639071768861.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.8118258373451362, 0.48029715762273906, 0.8089214919188055, 0.375]}, {"name": "Biktrix Juggernaut Ultra Eagle", "score": 61, "image": "/images/WEBP/electric-bike/biktrix-juggernaut-ultra-eagle.front.medium2x.1640102972338.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.2619047619047619, 0.5, 0.6972339652858457, 0.375]}, {"name": "Biktrix Juggernaut Ultra FS", "score": 76, "image": "/images/WEBP/electric-bike/biktrix-juggernaut-ultra-fs.front.medium2x.1640099263778.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.6428571428571429, 0.49612403100775193, 0.6680970752373874, 0.5]}, {"name": "Biktrix Moto", "score": 83, "image": "/images/WEBP/electric-bike/biktrix-moto.front.medium2x.1640086698659.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.4523809523809524, 1, 0.6919370325297267, 0.375]}, {"name": "Biktrix Stunner LT 6", "score": 55, "image": "/images/WEBP/electric-bike/biktrix-stunner-lt-6.front.medium2x.1640015437179.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.6428571428571429, 0.49612403100775193, 0.48468017566752064, 0.375]}, {"name": "Biktrix Swift Step-Over", "score": 55, "image": "/images/WEBP/electric-bike/biktrix-swift-step-over.front.medium2x.1640170362484.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.4523809523809524, 0.49612403100775193, 0.580550485075591, 0.375]}, {"name": "Biktrix Swift Step-Over 2", "score": 66, "image": "/images/WEBP/electric-bike/biktrix-swift-step-over-2.front.medium2x.1640083957501.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.4523809523809524, 0.5271317829457365, 0.6175605467750899, 0.5]}, {"name": "Brompton Electric C Line Explore", "score": 57, "image": "/images/WEBP/electric-bike/brompton-electric-c-line-explore.front.medium2x.1641389212346.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.27933443823547016, 0.4252260981912145, 0.5791734254348126, 0.5]}, {"name": "Biktrix Swift Step-Thru", "score": 63, "image": "/images/WEBP/electric-bike/biktrix-swift-step-thru.front.medium2x.1640177361818.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.4523809523809524, 0.49612403100775193, 0.6689370346196394, 0.375]}, {"name": "Biktrix Swift Step-Thru 2", "score": 64, "image": "/images/WEBP/electric-bike/biktrix-swift-step-thru-2.front.medium2x.1640081780394.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.4523809523809524, 0.49612403100775193, 0.5950724954607387, 0.4875]}, {"name": "Cannondale Adventure Neo 1 EQ", "score": 81, "image": "/images/WEBP/electric-bike/cannondale-adventure-neo-1-eq.front.medium2x.1643293256383.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.7290044861007264, 0.43959140826873383, 0.7613449889526624, 0.7142857142857143]}, {"name": "Cannondale Canvas Neo 2", "score": 67, "image": "/images/WEBP/electric-bike/cannondale-canvas-neo-2.front.medium2x.1643622514439.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.5884003916797034, 0.42344961240310075, 0.7239977984429133, 0.5714285714285714]}, {"name": "Cannondale Adventure Neo 2 EQ", "score": 66, "image": "/images/WEBP/electric-bike/cannondale-adventure-neo-2-eq.front.medium2x.1643543257802.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.7290076276182654, 0.43556201550387597, 0.6021773687877074, 0.5714285714285714]}, {"name": "Cannondale Canvas Neo 1", "score": 68, "image": "/images/WEBP/electric-bike/cannondale-canvas-neo-1.front.medium2x.1643368460394.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.5881272661941956, 0.43556201550387597, 0.7327774829438215, 0.5714285714285714]}, {"name": "Cannondale Adventure Neo 3 EQ", "score": 83, "image": "/images/WEBP/electric-bike/cannondale-adventure-neo-3-eq.front.medium2x.1643553059615.webp", "propGroups": ["Design", "Battery", "Performance", "Features", "Miscellaneous"], "propScore": [0.8738609220151412, 0.75, 0.726478505374074, 0.5714285714285714]}, {"name": "Cannondale Canvas Neo Remixte 1", "score": 72, "image": "/images/WEBP/electric-bike/cannondale-canvas-neo-remixte-1.front.medium2x.1643367856280.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.5933438323540392, 0.43556201550387597, 0.786928685476702, 0.5714285714285714]}, {"name": "Cannondale Canvas Neo Remixte 2", "score": 67, "image": "/images/WEBP/electric-bike/cannondale-canvas-neo-remixte-2.front.medium2x.1643551037800.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.5884003843530362, 0.42344961240310075, 0.7239977984429133, 0.5714285714285714]}, {"name": "Cannondale Moterra Neo 3", "score": 75, "image": "/images/WEBP/electric-bike/cannondale-moterra-neo-3.front.medium2x.1643194468744.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.9999193306469705, 0.45070251937984496, 0.7822611875716442, 0.2857142857142857]}, {"name": "Cannondale Moterra Neo 5", "score": 65, "image": "/images/WEBP/electric-bike/cannondale-moterra-neo-5.front.medium2x.1643286921973.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.7309286366667885, 0.3804909560723514, 0.6053262423178858, 0.42857142857142855]}, {"name": "Cannondale Moterra Neo Carbon 2", "score": 74, "image": "/images/WEBP/electric-bike/cannondale-moterra-neo-carbon-2.front.medium2x.1643114334083.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.9726906055313412, 0.3951469638242894, 0.7796032872882581, 0.14285714285714285]}, {"name": "Cannondale Quick Neo SL 1 Remixte", "score": 74, "image": "/images/WEBP/electric-bike/cannondale-quick-neo-sl-1-remixte.front.medium2x.1643634724496.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.6057001994063924, 0.4469476744186046, 0.8428539309765095, 0.42857142857142855]}, {"name": "Cannondale Quick Neo SL 2 Remixte", "score": 60, "image": "/images/WEBP/electric-bike/cannondale-quick-neo-sl-2-remixte.front.medium2x.1643717862567.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.6062493590642739, 0.4469476744186046, 0.5670044883708952, 0.2857142857142857]}, {"name": "Cannondale Quick Neo SL 1", "score": 74, "image": "/images/WEBP/electric-bike/cannondale-quick-neo-sl-1.front.medium2x.1643638750412.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.6055684932505783, 0.4469476744186046, 0.8428539309765095, 0.42857142857142855]}, {"name": "Cannondale Synapse Neo SE", "score": 73, "image": "/images/WEBP/electric-bike/cannondale-synapse-neo-se.front.medium2x.1643284656280.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.6901991170339468, 0.43556201550387597, 0.736635129882903, 0.42857142857142855]}, {"name": "Cannondale SuperSix EVO Neo 1", "score": 68, "image": "/images/WEBP/electric-bike/cannondale-supersix-evo-neo-1.front.medium2x.1643112860532.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.7096155342066762, 0.405281007751938, 0.6558208983034968, 0.14285714285714285]}, {"name": "Cannondale SuperSix EVO Neo 3", "score": 73, "image": "/images/WEBP/electric-bike/cannondale-supersix-evo-neo-3.front.medium2x.1643290903620.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.7066723095569496, 0.4469476744186046, 0.6400044579597346, 0.2857142857142857]}, {"name": "Cannondale Quick Neo SL 2", "score": 60, "image": "/images/WEBP/electric-bike/cannondale-quick-neo-sl-2.front.medium2x.1643721872592.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.6063196071490892, 0.4469476744186046, 0.5670044883708952, 0.2857142857142857]}, {"name": "Cannondale Tesoro Neo X 1 Remixte", "score": 77, "image": "/images/WEBP/electric-bike/cannondale-tesoro-neo-x-1-remixte.front.medium2x.1643282270644.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.7323013343281451, 0.43556201550387597, 0.7802839347682362, 0.5714285714285714]}, {"name": "Cannondale Tesoro Neo X 1", "score": 86, "image": "/images/WEBP/electric-bike/cannondale-tesoro-neo-x-1.front.medium2x.1643199265851.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.7276981360673108, 0.43959140826873383, 0.8376059842132677, 0.7142857142857143]}, {"name": "Cannondale Tesoro Neo SL EQ", "score": 61, "image": "/images/WEBP/electric-bike/cannondale-tesoro-neo-sl-eq.front.medium2x.1643710003743.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.7290893849813694, 0.405281007751938, 0.6239526387482837, 0.42857142857142855]}, {"name": "Cannondale Tesoro Neo SL EQ Remixte", "score": 77, "image": "/images/WEBP/electric-bike/cannondale-tesoro-neo-sl-eq-remixte.front.medium2x.1643643715555.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.7523475557842839, 0.4191698966408269, 0.823805645612241, 0.42857142857142855]}, {"name": "Cannondale Tesoro Neo X 3", "score": 74, "image": "/images/WEBP/electric-bike/cannondale-tesoro-neo-x-3.front.medium2x.1643544135466.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.5803812289197726, 0.43556201550387597, 0.7561583918718878, 0.5714285714285714]}, {"name": "Cannondale Tesoro Neo X 3 Remixte", "score": 74, "image": "/images/WEBP/electric-bike/cannondale-tesoro-neo-x-3-remixte.front.medium2x.1643546559569.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.7284584182963902, 0.46333979328165376, 0.7561583918718878, 0.5714285714285714]}, {"name": "Cannondale Tesoro Neo X 2", "score": 75, "image": "/images/WEBP/electric-bike/cannondale-tesoro-neo-x-2.front.medium2x.1643372179159.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.7302330682188715, 0.43556201550387597, 0.7713650269191508, 0.5714285714285714]}, {"name": "Cannondale Tesoro Neo X 2 Remixte", "score": 75, "image": "/images/WEBP/electric-bike/cannondale-tesoro-neo-x-2-remixte.front.medium2x.1643376989253.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.7303069576572695, 0.43556201550387597, 0.7713650269191508, 0.5714285714285714]}, {"name": "Cannondale Topstone Neo Carbon 2", "score": 84, "image": "/images/WEBP/electric-bike/cannondale-topstone-neo-carbon-2.front.medium2x.1643121313179.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.9922603405412467, 0.46333979328165376, 0.6895317577773906, 0.42857142857142855]}, {"name": "Cannondale Topstone Neo SL 2", "score": 64, "image": "/images/WEBP/electric-bike/cannondale-topstone-neo-sl-2.front.medium2x.1643378688696.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.6077634540753226, 0.4191698966408269, 0.8841375210263293, 0]}, {"name": "Cannondale Topstone Neo 5", "score": 68, "image": "/images/WEBP/electric-bike/cannondale-topstone-neo-5.front.medium2x.1643199434667.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.5995550092657628, 0.46333979328165376, 0.8067263510597585, 0.2857142857142857]}, {"name": "Cannondale Topstone Neo Carbon Lefty 3", "score": 83, "image": "/images/WEBP/electric-bike/cannondale-topstone-neo-carbon-lefty-3.front.medium2x.1643122984460.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.9883439087311192, 0.46333979328165376, 0.7841623245798996, 0.2857142857142857]}, {"name": "Cannondale Treadwell Neo 2 Remixte", "score": 55, "image": "/images/WEBP/electric-bike/cannondale-treadwell-neo-2-remixte.front.medium2x.1643786701031.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.5981562922126106, 0.4191698966408269, 0.3755987526853671, 0.2857142857142857]}, {"name": "Cannondale Treadwell Neo 2", "score": 57, "image": "/images/WEBP/electric-bike/cannondale-treadwell-neo-2.front.medium2x.1643713962951.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.6009018340686674, 0.405281007751938, 0.555834715166081, 0.2857142857142857]}, {"name": "Cannondale Treadwell Neo 2 EQ Remixte", "score": 68, "image": "/images/WEBP/electric-bike/cannondale-treadwell-neo-2-eq-remixte.front.medium2x.1643194416628.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.5981533688724102, 0.4191698966408269, 0.5463626933459854, 0.5714285714285714]}, {"name": "Cannondale Treadwell Neo 2 EQ", "score": 74, "image": "/images/WEBP/electric-bike/cannondale-treadwell-neo-2-eq.front.medium2x.1643194368211.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.7463577832911058, 0.4469476744186046, 0.5463626933459854, 0.5714285714285714]}, {"name": "Cannondale Treadwell Neo Remixte", "score": 60, "image": "/images/WEBP/electric-bike/cannondale-treadwell-neo-remixte.front.medium2x.1643724984857.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.6066666660329979, 0.4469476744186046, 0.5670044883708952, 0.2857142857142857]}, {"name": "Cannondale Treadwell Neo EQ Remixte", "score": 63, "image": "/images/WEBP/electric-bike/cannondale-treadwell-neo-eq-remixte.front.medium2x.1643714940271.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.5997302554078828, 0.4469476744186046, 0.5670044883708952, 0.42857142857142855]}, {"name": "Canyon Commuter:ON 7 WMN", "score": 63, "image": "/images/WEBP/electric-bike/canyon-commuter-on-7-wmn.front.medium2x.1646143482517.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.5075744845257177, 0.4191698966408269, 0.7669992921055265, 0.2857142857142857]}, {"name": "Cannondale Treadwell Neo", "score": 59, "image": "/images/WEBP/electric-bike/cannondale-treadwell-neo.front.medium2x.1650279830704.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.6007566634853833, 0.19694767441860464, 0.6177601002408106, 0.42857142857142855]}, {"name": "Canyon Grail:ON CF 7", "score": 62, "image": "/images/WEBP/electric-bike/canyon-grail-on-cf-7.front.medium2x.1646155359115.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.6139032654040291, 0.4140826873385013, 0.8160389633181049, 0.14285714285714285]}, {"name": "Canyon Grail:ON CF 8 eTap", "score": 64, "image": "/images/WEBP/electric-bike/canyon-grail-on-cf-8-etap.front.medium2x.1646236804159.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.6176097469097056, 0.4140826873385013, 0.9103031605985269, 0.14285714285714285]}, {"name": "Canyon Grail:ON CF 7 WMN", "score": 63, "image": "/images/WEBP/electric-bike/canyon-grail-on-cf-7-wmn.front.medium2x.1646062000396.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.6139032654040291, 0.4140826873385013, 0.8877003950462504, 0.14285714285714285]}, {"name": "Canyon Commuter:ON 7", "score": 57, "image": "/images/WEBP/electric-bike/canyon-commuter-on-7.front.medium2x.1646071552684.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.5081922314433305, 0.374031007751938, 0.7872505398566972, 0.14285714285714285]}, {"name": "Canyon Grand Canyon:ON 7", "score": 70, "image": "/images/WEBP/electric-bike/canyon-grand-canyon-on-7.front.medium2x.1646068621978.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.6563264905816143, 0.44945090439276486, 0.799984233854286, 0.42857142857142855]}, {"name": "Canyon Grand Canyon:ON 8 WMN", "score": 73, "image": "/images/WEBP/electric-bike/canyon-grand-canyon-on-8-wmn.front.medium2x.1646225515942.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.6616082267272034, 0.6596414728682171, 0.8137454305375593, 0.2857142857142857]}, {"name": "Canyon Grand Canyon:ON 7 WMN", "score": 70, "image": "/images/WEBP/electric-bike/canyon-grand-canyon-on-7-wmn.front.medium2x.1646069359957.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.6576855338003623, 0.44945090439276486, 0.799984233854286, 0.42857142857142855]}, {"name": "Canyon Grail:ON CF 8", "score": 62, "image": "/images/WEBP/electric-bike/canyon-grail-on-cf-8.front.medium2x.1646241573248.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.6151387592392545, 0.4140826873385013, 0.8160389633181049, 0.14285714285714285]}, {"name": "Canyon Neuron:ON 7 WMN", "score": 69, "image": "/images/WEBP/electric-bike/canyon-neuron-on-7-wmn.front.medium2x.1646150040406.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.8233020307070874, 0.44945090439276486, 0.799984233854286, 0.2857142857142857]}, {"name": "Canyon Grand Canyon:ON 8", "score": 72, "image": "/images/WEBP/electric-bike/canyon-grand-canyon-on-8.front.medium2x.1646152193888.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.657716421146243, 0.40964147286821706, 0.8137454305375593, 0.42857142857142855]}, {"name": "Canyon Grand Canyon:ON 9", "score": 72, "image": "/images/WEBP/electric-bike/canyon-grand-canyon-on-9.front.medium2x.1646240499620.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.657716421146243, 0.40964147286821706, 0.8137454305375593, 0.42857142857142855]}, {"name": "Canyon Neuron:ON 7", "score": 68, "image": "/images/WEBP/electric-bike/canyon-neuron-on-7.front.medium2x.1646238281310.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.8183600553661853, 0.44945090439276486, 0.799984233854286, 0.2857142857142857]}, {"name": "Canyon Pathlite:ON 4", "score": 60, "image": "/images/WEBP/electric-bike/canyon-pathlite-on-4.front.medium2x.1646046922890.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.6597240986284845, 0.3938953488372093, 0.7749065208384127, 0.14285714285714285]}, {"name": "Canyon Neuron:ON 9", "score": 70, "image": "/images/WEBP/electric-bike/canyon-neuron-on-9.front.medium2x.1646232808477.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.8205530569237105, 0.40964147286821706, 0.8137454305375593, 0.2857142857142857]}, {"name": "Canyon Neuron:ON 8", "score": 69, "image": "/images/WEBP/electric-bike/canyon-neuron-on-8.front.medium2x.1646223650459.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.8176805337568113, 0.40964147286821706, 0.8137454305375593, 0.2857142857142857]}, {"name": "Canyon Neuron:ON 8 WMN", "score": 70, "image": "/images/WEBP/electric-bike/canyon-neuron-on-8-wmn.front.medium2x.1646149005903.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.8203677328484268, 0.40964147286821706, 0.8137454305375593, 0.2857142857142857]}, {"name": "Canyon Pathlite:ON 7", "score": 69, "image": "/images/WEBP/electric-bike/canyon-pathlite-on-7.front.medium2x.1646048485766.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.6544732498287761, 0.3938953488372093, 0.7810990593458859, 0.42857142857142855]}, {"name": "Canyon Pathlite:ON 8", "score": 72, "image": "/images/WEBP/electric-bike/canyon-pathlite-on-8.front.medium2x.1646220594340.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.6440642142670009, 0.4140826873385013, 0.8380839492179321, 0.42857142857142855]}, {"name": "Canyon Pathlite:ON 5", "score": 64, "image": "/images/WEBP/electric-bike/canyon-pathlite-on-5.front.medium2x.1646231385341.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.6566353640404207, 0.43556201550387597, 0.7831632388483768, 0.2857142857142857]}, {"name": "Canyon Pathlite:ON 6", "score": 59, "image": "/images/WEBP/electric-bike/canyon-pathlite-on-6.front.medium2x.1646065291835.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.663430580134161, 0.3938953488372093, 0.7100900539508053, 0.14285714285714285]}, {"name": "Canyon Precede:ON CF 8", "score": 70, "image": "/images/WEBP/electric-bike/canyon-precede-on-cf-8.front.medium2x.1646064174059.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.6016718764352963, 0.42167312661498707, 0.7810990593458859, 0.42857142857142855]}, {"name": "Canyon Precede:ON CF 9", "score": 70, "image": "/images/WEBP/electric-bike/canyon-precede-on-cf-9.front.medium2x.1650278908465.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.6799002212401871, 0.42167312661498707, 0.7822785904901665, 0.42857142857142855]}, {"name": "Canyon Precede:ON CF 8 ST", "score": 69, "image": "/images/WEBP/electric-bike/canyon-precede-on-cf-8-st.front.medium2x.1646059645397.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.599231776110726, 0.42167312661498707, 0.8120617518832506, 0.375]}, {"name": "Canyon Pathlite:ON 9.0", "score": 81, "image": "/images/WEBP/electric-bike/canyon-pathlite-on-9-0.front.medium2x.1646157395357.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.6442804256881655, 0.49483204134366926, 0.9174431913366513, 0.5714285714285714]}, {"name": "Canyon Spectral:ON CF 6", "score": 70, "image": "/images/WEBP/electric-bike/canyon-spectral-on-cf-6.front.medium2x.1646154573043.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.8239815523164614, 0.40964147286821706, 0.8137454305375593, 0.2857142857142857]}, {"name": "Canyon Spectral:ON CF 6 WMN", "score": 66, "image": "/images/WEBP/electric-bike/canyon-spectral-on-cf-6-wmn.front.medium2x.1646066678419.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.8244757498505516, 0.4929748062015504, 0.8137454305375593, 0.14285714285714285]}, {"name": "Canyon Spectral:ON CF 7 WMN", "score": 66, "image": "/images/WEBP/electric-bike/canyon-spectral-on-cf-7-wmn.front.medium2x.1646304007255.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.8250317220764031, 0.40964147286821706, 0.8137454305375593, 0.14285714285714285]}, {"name": "Canyon Roadlite:ON 6", "score": 55, "image": "/images/WEBP/electric-bike/canyon-roadlite-on-6.front.medium2x.1646141809883.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.5122075864078134, 0.4191698966408269, 0.7669992921055265, 0]}, {"name": "Canyon Torque:ON 8", "score": 69, "image": "/images/WEBP/electric-bike/canyon-torque-on-8.front.medium2x.1646318809347.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.8225607344059519, 0.43556201550387597, 0.8137454305375593, 0.2857142857142857]}, {"name": "Canyon Spectral:ON CF 7", "score": 70, "image": "/images/WEBP/electric-bike/canyon-spectral-on-cf-7.front.medium2x.1646316498749.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.8241668763917452, 0.40964147286821706, 0.8137454305375593, 0.2857142857142857]}, {"name": "Canyon Spectral:ON CF 9", "score": 71, "image": "/images/WEBP/electric-bike/canyon-spectral-on-cf-9.front.medium2x.1646314781498.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.8263907652951511, 0.40964147286821706, 0.8137454305375593, 0.2857142857142857]}, {"name": "Canyon Spectral:ON CF 8", "score": 70, "image": "/images/WEBP/electric-bike/canyon-spectral-on-cf-8.front.medium2x.1646313934683.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.8246919612717161, 0.40964147286821706, 0.8137454305375593, 0.2857142857142857]}, {"name": "Charge XC", "score": 56, "image": "/images/WEBP/electric-bike/charge-xc.front.medium2x.1638898619231.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.48549744518407284, 0.41472868217054265, 0.4653830461470906, 0.42857142857142855]}, {"name": "Canyon Torque:ON 9", "score": 65, "image": "/images/WEBP/electric-bike/canyon-torque-on-9.front.medium2x.1646243012442.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.8223445229847876, 0.4140826873385013, 0.8137454305375593, 0.14285714285714285]}, {"name": "Cowboy 4 ST", "score": 98, "image": "/images/WEBP/electric-bike/cowboy-4-st.front.medium2x.1641911384027.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.5041311632069442, 0.45471576227390176, 0.5714805190147979, 0.9875]}, {"name": "Charge Comfort", "score": 62, "image": "/images/WEBP/electric-bike/charge-comfort.front.medium2x.1638896023362.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.3244349785539891, 0.4008397932816537, 0.6534379289753496, 0.375]}, {"name": "Cowboy 4", "score": 98, "image": "/images/WEBP/electric-bike/cowboy-4.front.medium2x.1641910148873.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.5041311632069442, 0.44638242894056845, 0.5714805190147979, 0.9875]}, {"name": "Electric Bike Company Model C", "score": 94, "image": "/images/WEBP/electric-bike/electric-bike-company-model-c.front.medium2x.1645198186830.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.5769952716029675, 0.5185185185185185, 0.8306848083595888, 0.8571428571428571]}, {"name": "Electric Bike Company Model F", "score": 88, "image": "/images/WEBP/electric-bike/electric-bike-company-model-f.front.medium2x.1645110758213.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.5783868302688954, 0.5185185185185185, 0.8611221905785991, 0.7142857142857143]}, {"name": "Electric Bike Company Model E", "score": 72, "image": "/images/WEBP/electric-bike/electric-bike-company-model-e.front.medium2x.1645110753389.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.578391240922531, 0.5, 0.5649288143481458, 0.7142857142857143]}, {"name": "Electric Bike Company Model R", "score": 80, "image": "/images/WEBP/electric-bike/electric-bike-company-model-r.front.medium2x.1645198228677.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.8746091125734518, 0.5185185185185185, 0.6503905724698837, 0.42857142857142855]}, {"name": "Electric Bike Company Model Y", "score": 85, "image": "/images/WEBP/electric-bike/electric-bike-company-model-y.front.medium2x.1645198129881.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.5757707599351662, 0.5185185185185185, 0.5643524769538775, 1]}, {"name": "Electric Bike Company Model X", "score": 86, "image": "/images/WEBP/electric-bike/electric-bike-company-model-x.front.medium2x.1645198272682.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.5820863194641525, 0.5185185185185185, 0.6380325666615279, 0.8571428571428571]}, {"name": "Electric Bike Company Model S", "score": 95, "image": "/images/WEBP/electric-bike/electric-bike-company-model-s.front.medium2x.1645198152742.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.5768467527327873, 0.5, 0.6820638841802373, 1]}, {"name": "Fiido D11", "score": 59, "image": "/images/WEBP/electric-bike/fiido-d11.front.medium2x.1641400286222.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.6751677715688036, 0.5, 0.399482920422235, 0.42857142857142855]}, {"name": "Fiido D2S", "score": 60, "image": "/images/WEBP/electric-bike/fiido-d2s.front.medium2x.1641464794251.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.6689903023926759, 0.14814814814814814, 0.5517584574912425, 0.42857142857142855]}, {"name": "Fiido D4S", "score": 66, "image": "/images/WEBP/electric-bike/fiido-d4s.front.medium2x.1641401457387.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.6720790369807398, 0.7407407407407408, 0.5355651492317842, 0.42857142857142855]}, {"name": "Fiido D21", "score": 62, "image": "/images/WEBP/electric-bike/fiido-d21.front.medium2x.1641466989230.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.6751677715688036, 0.40740740740740744, 0.3595346283800115, 0.4875]}, {"name": "Fiido L3", "score": 60, "image": "/images/WEBP/electric-bike/fiido-l3.front.medium2x.1641403481122.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.48842433007972214, 0.5, 0.4627994647245088, 0.42857142857142855]}, {"name": "Fiido M1", "score": 61, "image": "/images/WEBP/electric-bike/fiido-m1.front.medium2x.1641465393305.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.8186689288249916, 0.3333333333333333, 0.5632986335544793, 0.2857142857142857]}, {"name": "Fiido M21", "score": 70, "image": "/images/WEBP/electric-bike/fiido-m21.front.medium2x.1641470234945.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.8186689288249916, 0.3333333333333333, 0.6127132538693807, 0.3625]}, {"name": "Fiido M1 Pro", "score": 70, "image": "/images/WEBP/electric-bike/fiido-m1-pro.front.medium2x.1641397278561.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.8186689288249916, 0.32437015503875966, 0.7707704272029766, 0.2857142857142857]}, {"name": "Focus Aventura2 6.9", "score": 58, "image": "/images/WEBP/electric-bike/focus-aventura2-6-9.front.medium2x.1646060316179.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.5845557612078308, 0.46459140826873385, 0.4941055963391291, 0.5714285714285714]}, {"name": "Focus Jam2 6.7", "score": 60, "image": "/images/WEBP/electric-bike/focus-jam2-6-7.front.medium2x.1646400830212.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.877356119762942, 0.46459140826873385, 0.44456528827934527, 0.2857142857142857]}, {"name": "Focus Aventura2 6.8", "score": 57, "image": "/images/WEBP/electric-bike/focus-aventura2-6-8.front.medium2x.1646060327614.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.5803678524123087, 0.46459140826873385, 0.48791305783165617, 0.5714285714285714]}, {"name": "Focus Aventura2 6.7", "score": 57, "image": "/images/WEBP/electric-bike/focus-aventura2-6-7.front.medium2x.1646060355103.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.5804381810904627, 0.46459140826873385, 0.48172051932418314, 0.5714285714285714]}, {"name": "Focus Paralane2 9.8", "score": 67, "image": "/images/WEBP/electric-bike/focus-paralane2-9-8.front.medium2x.1646231935852.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.7028831805756678, 0.4330587855297158, 0.4334121660150924, 0.42857142857142855]}, {"name": "Focus Paralane2 9.7", "score": 67, "image": "/images/WEBP/electric-bike/focus-paralane2-9-7.front.medium2x.1646231953124.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.7026086263900623, 0.4330587855297158, 0.4334121660150924, 0.42857142857142855]}, {"name": "Focus Paralane2 6.6", "score": 58, "image": "/images/WEBP/electric-bike/focus-paralane2-6-6.front.medium2x.1646231994043.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.6042567214834575, 0.4191698966408269, 0.3783673792819993, 0.42857142857142855]}, {"name": "Focus Paralane2 9.5", "score": 60, "image": "/images/WEBP/electric-bike/focus-paralane2-9-5.front.medium2x.1646231955959.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.7016476867404423, 0.4330587855297158, 0.4334121660150924, 0.2857142857142857]}, {"name": "Focus Raven2 9.7", "score": 60, "image": "/images/WEBP/electric-bike/focus-raven2-9-7.front.medium2x.1646232268903.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.69327598207962, 0.4191698966408269, 0.4643814115032588, 0.42857142857142855]}, {"name": "Focus Thron2 6.8 EQP", "score": 57, "image": "/images/WEBP/electric-bike/focus-thron2-6-8-eqp.front.medium2x.1646146485483.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.5772145995347328, 0.46459140826873385, 0.4941055963391291, 0.5714285714285714]}, {"name": "Focus Planet2 5.9", "score": 55, "image": "/images/WEBP/electric-bike/focus-planet2-5-9.front.medium2x.1646060430819.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.5810598234666459, 0.44945090439276486, 0.45794117145548696, 0.5714285714285714]}, {"name": "Focus Thron2 6.7 EQP", "score": 57, "image": "/images/WEBP/electric-bike/focus-thron2-6-7-eqp.front.medium2x.1646146531131.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.578241080878905, 0.46459140826873385, 0.48791305783165617, 0.5714285714285714]}, {"name": "Gazelle Ultimate C380 HMB", "score": 71, "image": "/images/WEBP/electric-bike/gazelle-ultimate-c380-hmb.front.medium2x.1639680738333.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.6527250260519318, 0.08074935400516796, 0.6157256990655687, 0.625]}, {"name": "Gazelle Medeo T10 HMB High-Step", "score": 61, "image": "/images/WEBP/electric-bike/gazelle-medeo-t10-hmb-high-step.front.medium2x.1639765034265.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.6597302760976606, 0.08074935400516796, 0.4809365090554065, 0.5]}, {"name": "Gazelle Medeo T10 Plus HMB High-Step", "score": 73, "image": "/images/WEBP/electric-bike/gazelle-medeo-t10-plus-hmb-high-step.front.medium2x.1639761164359.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.6579083860008912, 0.08074935400516796, 0.79002218608431, 0.5]}, {"name": "Gazelle Medeo T9 HMB High-Step", "score": 60, "image": "/images/WEBP/electric-bike/gazelle-medeo-t9-hmb-high-step.front.medium2x.1639757580791.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.4951670376854654, 0.39793281653746765, 0.44491826868735057, 0.5]}, {"name": "Gazelle Ultimate C8 HMB", "score": 69, "image": "/images/WEBP/electric-bike/gazelle-ultimate-c8-hmb.front.medium2x.1639733902256.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.653846236707399, 0.08074935400516796, 0.723973729679236, 0.5]}, {"name": "Gazelle Ultimate T10 HMB High-Step", "score": 61, "image": "/images/WEBP/electric-bike/gazelle-ultimate-t10-hmb-high-step.front.medium2x.1639767312258.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.6581889975382168, 0.08074935400516796, 0.4809365090554065, 0.5]}, {"name": "Gazelle Ultimate C380 Plus HMB Mid-Step", "score": 65, "image": "/images/WEBP/electric-bike/gazelle-ultimate-c380-plus-hmb-mid-step.front.medium2x.1651151526314.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.578885224024941, 0.44945090439276486, 0.6587217362979703, 0.5714285714285714]}, {"name": "Gazelle Ultimate C380 Plus HMB High-Step", "score": 68, "image": "/images/WEBP/electric-bike/gazelle-ultimate-c380-plus-hmb-high-step.front.medium2x.1639679572614.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.651325829283539, 0.08074935400516796, 0.5188626444674179, 0.625]}, {"name": "Gazelle Ultimate T10 Plus HMB High-Step", "score": 63, "image": "/images/WEBP/electric-bike/gazelle-ultimate-t10-plus-hmb-high-step.front.medium2x.1639763361803.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.6576299365777772, 0.08074935400516796, 0.5198023239400348, 0.5]}, {"name": "Giant Reign E Plus 2", "score": 55, "image": "/images/WEBP/electric-bike/giant-reign-e-plus-2.front.medium2x.1640694025678.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.8888888888888888, 0.10093669250645994, 0.5817602296200838, 0.2857142857142857]}, {"name": "Giant Reign E Plus 3", "score": 59, "image": "/images/WEBP/electric-bike/giant-reign-e-plus-3.front.medium2x.1640697499955.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.8333333333333334, 0.4342700258397933, 0.5817602296200838, 0.2857142857142857]}, {"name": "Giant Explore E Plus 2 STA", "score": 57, "image": "/images/WEBP/electric-bike/giant-explore-e-plus-2-sta.front.medium2x.1640776758245.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.7292101696149448, 0.19945090439276486, 0.5450929834420898, 0.2857142857142857]}, {"name": "Giant Trance X E Plus Pro 29 1", "score": 55, "image": "/images/WEBP/electric-bike/giant-trance-x-e-plus-pro-29-1.front.medium2x.1640790231543.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.8333333333333334, 0.10093669250645994, 0.5697406138941035, 0.2857142857142857]}, {"name": "Giant Stance E Plus 1", "score": 55, "image": "/images/WEBP/electric-bike/giant-stance-e-plus-1.front.medium2x.1640859344049.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.8333333333333334, 0, 0.570065468373184, 0.2857142857142857]}, {"name": "Gocycle G4", "score": 72, "image": "/images/WEBP/electric-bike/gocycle-g4.front.medium2x.1639670196622.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.841528653511252, 0.4391149870801034, 0.6036830728139869, 0.5714285714285714]}, {"name": "Gocycle G3 Plus", "score": 59, "image": "/images/WEBP/electric-bike/gocycle-g3-plus.front.medium2x.1639676811690.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.9522002202485641, 0.18431040051679587, 0.6036830728139869, 0.5714285714285714]}, {"name": "Gocycle G4i Plus", "score": 63, "image": "/images/WEBP/electric-bike/gocycle-g4i-plus.front.medium2x.1639673241097.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.8333333333333334, 0.44819928940568476, 0.6036830728139869, 0.5714285714285714]}, {"name": "JackRabbit", "score": 56, "image": "/images/WEBP/electric-bike/jackrabbit.front.medium2x.1639652685907.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.3622633288009242, 0.462734173126615, 0.5436972537510957, 0.14285714285714285]}, {"name": "Juiced Bikes CrossCurrent S2", "score": 84, "image": "/images/WEBP/electric-bike/juiced-bikes-crosscurrent-s2.front.medium2x.1640624863201.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.5745050651395242, 0.4588178294573644, 1, 0.375]}, {"name": "Gocycle G4i", "score": 80, "image": "/images/WEBP/electric-bike/gocycle-g4i.front.medium2x.1639672171583.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.8415274797921084, 0.6981992894056848, 0.6036830728139869, 0.5714285714285714]}, {"name": "Juiced Bikes HyperScorpion Express", "score": 77, "image": "/images/WEBP/electric-bike/juiced-bikes-hyperscorpion-express.front.medium2x.1640615778277.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.58631723240856, 0.49386304909560724, 0.7457808030339439, 0.5]}, {"name": "Juiced Bikes HyperScrambler 2", "score": 79, "image": "/images/WEBP/electric-bike/juiced-bikes-hyperscrambler-2.front.medium2x.1640620423788.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.7291666666666666, 0.5, 0.8352240696074552, 0.5]}, {"name": "Juiced Bikes HyperScorpion", "score": 80, "image": "/images/WEBP/electric-bike/juiced-bikes-hyperscorpion.front.medium2x.1640611931234.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.58631723240856, 0.49386304909560724, 0.7953211110937277, 0.5]}, {"name": "Juiced Bikes CrossCurrent X", "score": 79, "image": "/images/WEBP/electric-bike/juiced-bikes-crosscurrent-x.front.medium2x.1640621179142.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.4714887983333682, 0.49386304909560724, 0.7609493801836306, 0.5]}, {"name": "Juiced Bikes RipCurrent", "score": 69, "image": "/images/WEBP/electric-bike/juiced-bikes-ripcurrent.front.medium2x.1640601548056.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.46448354828763955, 0.5, 0.7336616039408645, 0.375]}, {"name": "Juiced Bikes RipCurrent S", "score": 76, "image": "/images/WEBP/electric-bike/juiced-bikes-ripcurrent-s.front.medium2x.1640600196799.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.45607601273892984, 0.49386304909560724, 0.7531528726856976, 0.5]}, {"name": "Juiced Bikes Scorpion X", "score": 77, "image": "/images/WEBP/electric-bike/juiced-bikes-scorpion-x.front.medium2x.1640615226813.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.5891187146799339, 0.5, 0.7765491629811446, 0.5]}, {"name": "Juiced Bikes RipRacer", "score": 70, "image": "/images/WEBP/electric-bike/juiced-bikes-ripracer.front.medium2x.1640362408606.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.31883263175815896, 0.5, 0.7521713265959624, 0.375]}, {"name": "Lemond Prolog", "score": 71, "image": "/images/WEBP/electric-bike/lemond-prolog.front.medium2x.1639588083462.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.6302951798628836, 0, 0.5769346991518801, 0.5714285714285714]}, {"name": "Juiced Bikes Scrambler", "score": 65, "image": "/images/WEBP/electric-bike/juiced-bikes-scrambler.front.medium2x.1640618035657.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.6199411971342227, 0.5, 0.7212765269259186, 0.375]}, {"name": "Liv Amiti E Plus 2", "score": 63, "image": "/images/WEBP/electric-bike/liv-amiti-e-plus-2.front.medium2x.1646662104751.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.5872280363921988, 0.44945090439276486, 0.8856989143918798, 0.14285714285714285]}, {"name": "Lemond Dutch", "score": 69, "image": "/images/WEBP/electric-bike/lemond-dutch.front.medium2x.1639589405179.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.6148854830030334, 0, 0.5769346991518801, 0.5714285714285714]}, {"name": "Liv Intrigue X E Plus 1", "score": 69, "image": "/images/WEBP/electric-bike/liv-intrigue-x-e-plus-1.front.medium2x.1646662338531.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.8777608927909268, 0.47848029715762275, 0.7912905951639926, 0.14285714285714285]}, {"name": "Liv Intrigue X E Plus 2", "score": 57, "image": "/images/WEBP/electric-bike/liv-intrigue-x-e-plus-2.front.medium2x.1646662361275.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.5821609708759361, 0.47848029715762275, 0.8897967216065672, 0.14285714285714285]}, {"name": "Liv Rove E Plus", "score": 64, "image": "/images/WEBP/electric-bike/liv-rove-e-plus.front.medium2x.1646662156693.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.5971119870740031, 0.46511627906976744, 0.8166333052132639, 0.2857142857142857]}, {"name": "Liv Embolden E Plus 2", "score": 74, "image": "/images/WEBP/electric-bike/liv-embolden-e-plus-2.front.medium2x.1646662175468.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.8882664858489141, 0.46459140826873385, 0.8660964603342662, 0.14285714285714285]}, {"name": "Liv Thrive E Plus EX Pro", "score": 73, "image": "/images/WEBP/electric-bike/liv-thrive-e-plus-ex-pro.front.medium2x.1646662136626.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.5948579420184223, 0.44945090439276486, 0.886726266681972, 0.42857142857142855]}, {"name": "Propella Mini", "score": 55, "image": "/images/WEBP/electric-bike/propella-mini.front.medium2x.1639504695553.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.18298844754578106, 0.46083656330749356, 0.5676617171086648, 0.14285714285714285]}, {"name": "Montague M-E1", "score": 68, "image": "/images/WEBP/electric-bike/montague-m-e1.front.medium2x.1639662950896.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.6535651618598852, 0.4008397932816537, 0.6248175110627189, 0.42857142857142855]}, {"name": "Ninerbikes RIP E9", "score": 63, "image": "/images/WEBP/electric-bike/ninerbikes-rip-e9.front.medium2x.1641484119549.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.8180511819073789, 0.7676033591731266, 0.48498281456912956, 0.14285714285714285]}, {"name": "Rad Power Bikes RadCity 5 Plus Electric Commuter Bike", "score": 76, "image": "/images/WEBP/electric-bike/rad-power-bikes-radcity-5-plus-electric-commuter-bike.front.medium2x.1646834190002.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.8634293209688924, 0.4702842377260982, 0.6707589697933187, 0.5]}, {"name": "Propella SS (V4.0)", "score": 56, "image": "/images/WEBP/electric-bike/propella-ss-v4-0.front.medium2x.1639562859908.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.34685146982686227, 0.46083656330749356, 0.5676617171086648, 0.14285714285714285]}, {"name": "Rad Power Bikes RadCity 4 Electric Commuter Bike", "score": 79, "image": "/images/WEBP/electric-bike/rad-power-bikes-radcity-4-electric-commuter-bike.front.medium2x.1646748756751.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.7165748157433488, 0.4702842377260982, 0.6833491512385692, 0.7142857142857143]}, {"name": "Rad Power Bikes RadCity Step-Thru 3 Electric Commuter Bike", "score": 67, "image": "/images/WEBP/electric-bike/rad-power-bikes-radcity-step-thru-3-electric-commuter-bike.front.medium2x.1646748786265.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.7152020448153203, 0.4702842377260982, 0.5482392201664317, 0.7142857142857143]}, {"name": "Rad Power Bikes RadMission 1 Electric Metro Bike", "score": 64, "image": "/images/WEBP/electric-bike/rad-power-bikes-radmission-1-electric-metro-bike.front.medium2x.1646748745851.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.587649123921182, 0.44945090439276486, 0.5684306487544345, 0.5714285714285714]}, {"name": "Rad Power Bikes RadMini 4 Electric Folding Fat Bike", "score": 63, "image": "/images/WEBP/electric-bike/rad-power-bikes-radmini-4-electric-folding-fat-bike.front.medium2x.1646748812681.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.8608806706264511, 0.4702842377260982, 0.5914743981095157, 0.42857142857142855]}, {"name": "Rad Power Bikes RadRover 6 Plus Electric Fat Bike", "score": 77, "image": "/images/WEBP/electric-bike/rad-power-bikes-radrover-6-plus-electric-fat-bike.front.medium2x.1646834546700.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.8529962619158767, 0.4702842377260982, 0.6680518491343141, 0.5714285714285714]}, {"name": "Rad Power Bikes RadMini Step-Thru 2 Electric Folding Fat Bike", "score": 63, "image": "/images/WEBP/electric-bike/rad-power-bikes-radmini-step-thru-2-electric-folding-fat-bike.front.medium2x.1646748830814.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.8584089502892832, 0.4841731266149871, 0.5914743981095157, 0.42857142857142855]}, {"name": "Ribble CGR AL E Step Through-Sport", "score": 60, "image": "/images/WEBP/electric-bike/ribble-cgr-al-e-step-through-sport.front.medium2x.1645716487357.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.6093425752442817, 0.4191698966408269, 0.7806272468881738, 0]}, {"name": "Ribble CGR AL E Step Through-Enthusiast", "score": 58, "image": "/images/WEBP/electric-bike/ribble-cgr-al-e-step-through-enthusiast.front.medium2x.1645716516207.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.6101662378010987, 0.4191698966408269, 0.693931707783552, 0]}, {"name": "Rad Power Bikes RadRunner Plus Electric Utility Bike", "score": 66, "image": "/images/WEBP/electric-bike/rad-power-bikes-radrunner-plus-electric-utility-bike.front.medium2x.1646834292243.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.7036722343533158, 0.4702842377260982, 0.5914743981095157, 0.5]}, {"name": "Rad Power Bikes RadRunner 1 Electric Utility Bike", "score": 56, "image": "/images/WEBP/electric-bike/rad-power-bikes-radrunner-1-electric-utility-bike.front.medium2x.1646834269880.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.5672610455148243, 0.4702842377260982, 0.6153005951817666, 0.375]}, {"name": "Ribble Endurance SL E-Pro", "score": 65, "image": "/images/WEBP/electric-bike/ribble-endurance-sl-e-pro.front.medium2x.1645800592897.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.7091461546275966, 0.4330587855297158, 0.706316784798498, 0]}, {"name": "Ribble Endurance SL E-Hero", "score": 65, "image": "/images/WEBP/electric-bike/ribble-endurance-sl-e-hero.front.medium2x.1645800607928.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.7116986338737652, 0.4330587855297158, 0.706316784798498, 0]}, {"name": "Ribble Endurance SL E-Enthusiast", "score": 64, "image": "/images/WEBP/electric-bike/ribble-endurance-sl-e-enthusiast.front.medium2x.1645800586616.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.7078274198567253, 0.4330587855297158, 0.693931707783552, 0]}, {"name": "Ribble Endurance SL E-Sport", "score": 64, "image": "/images/WEBP/electric-bike/ribble-endurance-sl-e-sport.front.medium2x.1645800559856.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.7066012115787429, 0.4330587855297158, 0.693931707783552, 0]}, {"name": "Ribble Hybrid Al E Step Through (Fully Loaded Edition)", "score": 56, "image": "/images/WEBP/electric-bike/ribble-hybrid-al-e-step-through-fully-loaded-edition.front.medium2x.1645716579405.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.6067924522417397, 0.4191698966408269, 0.4392160881719746, 0.42857142857142855]}, {"name": "Ribble Gravel AL E-Sport", "score": 65, "image": "/images/WEBP/electric-bike/ribble-gravel-al-e-sport.front.medium2x.1645800623979.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.609617854769937, 0.5370370370370371, 0.6833631087307982, 0.14285714285714285]}, {"name": "Ribble Gravel AL E-Hero", "score": 59, "image": "/images/WEBP/electric-bike/ribble-gravel-al-e-hero.front.medium2x.1645716444697.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.6110575181692172, 0.5185185185185185, 0.52562722335224, 0.2857142857142857]}, {"name": "Ribble Gravel AL E-Enthusiast", "score": 59, "image": "/images/WEBP/electric-bike/ribble-gravel-al-e-enthusiast.front.medium2x.1645800671772.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.6098924236088771, 0.4330587855297158, 0.5743260192441122, 0.14285714285714285]}, {"name": "Sondors Fold XS", "score": 62, "image": "/images/WEBP/electric-bike/sondors-fold-xs.front.medium2x.1638916879284.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.6311486705870122, 0, 0.656891529366722, 0.42857142857142855]}, {"name": "Sondors Rockstar", "score": 63, "image": "/images/WEBP/electric-bike/sondors-rockstar.front.medium2x.1638975775974.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.779601996008243, 0, 0.7123294931479085, 0.2375]}, {"name": "Sondors MXS", "score": 62, "image": "/images/WEBP/electric-bike/sondors-mxs.front.medium2x.1638919403598.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.47148725396607416, 0, 0.656891529366722, 0.42857142857142855]}, {"name": "Sondors Cruiser", "score": 55, "image": "/images/WEBP/electric-bike/sondors-cruiser.front.medium2x.1638978493272.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.4015893974294939, 0, 0.6875593391180166, 0.3625]}, {"name": "Specialized S-Works Turbo Creo SL EVO", "score": 75, "image": "/images/WEBP/electric-bike/specialized-s-works-turbo-creo-sl-evo.front.medium2x.1645110776596.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.7078992578283159, 0.41375968992248063, 0.9314428724589323, 0.2857142857142857]}, {"name": "Specialized Kenevo Expert", "score": 68, "image": "/images/WEBP/electric-bike/specialized-kenevo-expert.front.medium2x.1644929883490.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.7445134026706074, 0.45978682170542634, 0.6136317412358288, 0.42857142857142855]}, {"name": "Specialized S-Works Turbo Creo SL", "score": 75, "image": "/images/WEBP/electric-bike/specialized-s-works-turbo-creo-sl.front.medium2x.1645110799674.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.7078992578283159, 0.41375968992248063, 0.9314428724589323, 0.2857142857142857]}, {"name": "Specialized S-Works Turbo Kenevo SL", "score": 77, "image": "/images/WEBP/electric-bike/specialized-s-works-turbo-kenevo-sl.front.medium2x.1644935157313.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.8375227014452159, 0.41375968992248063, 0.8132211944734348, 0.2857142857142857]}, {"name": "Specialized Turbo Como 3.0", "score": 77, "image": "/images/WEBP/electric-bike/specialized-turbo-como-3-0.front.medium2x.1644497639715.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.5885483903565146, 0.4530846253229974, 0.6101229437089417, 0.8571428571428571]}, {"name": "Specialized S-Works Turbo Levo SL", "score": 78, "image": "/images/WEBP/electric-bike/specialized-s-works-turbo-levo-sl.front.medium2x.1644931656849.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.8410164411862504, 0.42764857881136953, 0.8477880099516568, 0.42857142857142855]}, {"name": "Specialized S-Works Turbo Levo", "score": 75, "image": "/images/WEBP/electric-bike/specialized-s-works-turbo-levo.front.medium2x.1645019719847.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.842114650602006, 0.45978682170542634, 0.8465338181384078, 0.2857142857142857]}, {"name": "Specialized Turbo Como 3.0 650b", "score": 71, "image": "/images/WEBP/electric-bike/specialized-turbo-como-3-0-650b.front.medium2x.1644500146518.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.5705794878270684, 0.4446059431524548, 0.6533007271783137, 0.7142857142857143]}, {"name": "Specialized Turbo Como 4.0", "score": 76, "image": "/images/WEBP/electric-bike/specialized-turbo-como-4-0.front.medium2x.1644495576872.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.5892936649012919, 0.44710917312661497, 0.51453451323949, 0.8571428571428571]}, {"name": "Specialized Turbo Como SL 4.0", "score": 70, "image": "/images/WEBP/electric-bike/specialized-turbo-como-sl-4-0.front.medium2x.1644578216850.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.5877194599260033, 0.4415374677002584, 0.6358397989277341, 0.7142857142857143]}, {"name": "Specialized Turbo Como 5.0", "score": 77, "image": "/images/WEBP/electric-bike/specialized-turbo-como-5-0.front.medium2x.1644486982464.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.5920405914974435, 0.44710917312661497, 0.536152102211032, 0.8571428571428571]}, {"name": "Specialized Turbo Como 4.0 650b", "score": 80, "image": "/images/WEBP/electric-bike/specialized-turbo-como-4-0-650b.front.medium2x.1644498830259.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.5884700023444748, 0.43556201550387597, 0.666802491465099, 0.8571428571428571]}, {"name": "Specialized Turbo Creo SL Comp Carbon EVO", "score": 71, "image": "/images/WEBP/electric-bike/specialized-turbo-creo-sl-comp-carbon-evo.front.medium2x.1645019439865.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.7025940978823279, 0.42764857881136953, 0.8721386677048261, 0.2857142857142857]}, {"name": "Specialized Turbo Creo SL Comp E5", "score": 64, "image": "/images/WEBP/electric-bike/specialized-turbo-creo-sl-comp-e5.front.medium2x.1645019561256.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.612356069958825, 0.41375968992248063, 0.7890531599393253, 0.2857142857142857]}, {"name": "Specialized Turbo Como SL 5.0", "score": 69, "image": "/images/WEBP/electric-bike/specialized-turbo-como-sl-5-0.front.medium2x.1644577019448.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.5893668876129775, 0.42764857881136953, 0.6237496046988583, 0.7142857142857143]}, {"name": "Specialized Turbo Creo SL Comp Carbon", "score": 69, "image": "/images/WEBP/electric-bike/specialized-turbo-creo-sl-comp-carbon.front.medium2x.1645019511565.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.7025868298284963, 0.42764857881136953, 0.7890531599393253, 0.2857142857142857]}, {"name": "Specialized Turbo Creo SL Expert", "score": 74, "image": "/images/WEBP/electric-bike/specialized-turbo-creo-sl-expert.front.medium2x.1645110879400.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.7040151783203582, 0.42764857881136953, 0.9245622741172955, 0.2857142857142857]}, {"name": "Specialized Turbo Kenevo SL Expert", "score": 73, "image": "/images/WEBP/electric-bike/specialized-turbo-kenevo-sl-expert.front.medium2x.1644935414017.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.7449301601392935, 0.41375968992248063, 0.8132211944734348, 0.42857142857142855]}, {"name": "Specialized Turbo Kenevo SL Comp", "score": 66, "image": "/images/WEBP/electric-bike/specialized-turbo-kenevo-sl-comp.front.medium2x.1645019842861.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.744930094199289, 0.42764857881136953, 0.9097133950263866, 0.14285714285714285]}, {"name": "Specialized Turbo Creo SL Expert EVO", "score": 74, "image": "/images/WEBP/electric-bike/specialized-turbo-creo-sl-expert-evo.front.medium2x.1645110828110.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.7040553966564961, 0.41375968992248063, 0.9245622741172955, 0.2857142857142857]}, {"name": "Specialized Turbo Levo SL Comp Carbon", "score": 75, "image": "/images/WEBP/electric-bike/specialized-turbo-levo-sl-comp-carbon.front.medium2x.1644916789578.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.8366272375501441, 0.42764857881136953, 0.6631382102873749, 0.42857142857142855]}, {"name": "Specialized Turbo Levo Comp", "score": 66, "image": "/images/WEBP/electric-bike/specialized-turbo-levo-comp.front.medium2x.1644584205318.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.7353533623820083, 0.44945090439276486, 0.6136317412358288, 0.42857142857142855]}, {"name": "Specialized Turbo Levo Expert", "score": 72, "image": "/images/WEBP/electric-bike/specialized-turbo-levo-expert.front.medium2x.1645019644745.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.8377345685298941, 0.45978682170542634, 0.7660087953295488, 0.2857142857142857]}, {"name": "Specialized Turbo Levo Pro", "score": 71, "image": "/images/WEBP/electric-bike/specialized-turbo-levo-pro.front.medium2x.1645019781865.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.8273985535802092, 0.45978682170542634, 0.7660087953295488, 0.2857142857142857]}, {"name": "Specialized Turbo Tero 5.0", "score": 84, "image": "/images/WEBP/electric-bike/specialized-turbo-tero-5-0.front.medium2x.1644845604429.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.5858034419604986, 0.46099806201550386, 0.6911962854085669, 0.8571428571428571]}, {"name": "Specialized Turbo Levo", "score": 65, "image": "/images/WEBP/electric-bike/specialized-turbo-levo.front.medium2x.1644935093836.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.7342802903514168, 0.45978682170542634, 0.7660087953295488, 0.2857142857142857]}, {"name": "Specialized Turbo Tero 3.0", "score": 77, "image": "/images/WEBP/electric-bike/specialized-turbo-tero-3-0.front.medium2x.1644847315927.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.5888228712754486, 0.43919573643410853, 0.5871651542241366, 0.8571428571428571]}, {"name": "Specialized Turbo Levo SL Expert Carbon", "score": 71, "image": "/images/WEBP/electric-bike/specialized-turbo-levo-sl-expert-carbon.front.medium2x.1644925893493.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.8398083954429184, 0.42764857881136953, 0.6938060200386696, 0.2857142857142857]}, {"name": "Specialized Turbo Vado 5.0", "score": 86, "image": "/images/WEBP/electric-bike/specialized-turbo-vado-5-0.front.medium2x.1644583252621.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.6070699370942129, 0.44710917312661497, 0.6845515347001011, 0.8571428571428571]}, {"name": "Specialized Turbo Vado SL 4.0", "score": 75, "image": "/images/WEBP/electric-bike/specialized-turbo-vado-sl-4-0.front.medium2x.1644838383007.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.6072128071040058, 0.4415374677002584, 0.6814209430237236, 0.7142857142857143]}, {"name": "Specialized Turbo Vado 4.0", "score": 82, "image": "/images/WEBP/electric-bike/specialized-turbo-vado-4-0.front.medium2x.1644588502983.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.6070662737606284, 0.44710917312661497, 0.6385698597975178, 0.8571428571428571]}, {"name": "Specialized Turbo Vado 3.0", "score": 80, "image": "/images/WEBP/electric-bike/specialized-turbo-vado-3-0.front.medium2x.1644587732218.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.6020556328950196, 0.43919573643410853, 0.6167676944174074, 0.8571428571428571]}, {"name": "Stromer ST1 Sport", "score": 81, "image": "/images/WEBP/electric-bike/stromer-st1-sport.front.medium2x.1642431408363.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.47606939172746693, 0.21611757105943152, 0.6675188237174005, 0.8571428571428571]}, {"name": "Stromer ST2 Sport", "score": 85, "image": "/images/WEBP/electric-bike/stromer-st2-sport.front.medium2x.1642430712130.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.46062571878714786, 0.2137435400516796, 0.6285299578937266, 1]}, {"name": "Specialized Turbo Vado SL 5.0 EQ", "score": 81, "image": "/images/WEBP/electric-bike/specialized-turbo-vado-sl-5-0-eq.front.medium2x.1644836040632.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.6953392660552189, 0.4415374677002584, 0.6938060200386696, 0.7142857142857143]}, {"name": "Specialized Turbo Vado SL 5.0", "score": 81, "image": "/images/WEBP/electric-bike/specialized-turbo-vado-sl-5-0.front.medium2x.1644841375425.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.6997343310250604, 0.42764857881136953, 0.6938060200386696, 0.7142857142857143]}, {"name": "Sushi California Roll Plus", "score": 69, "image": "/images/WEBP/electric-bike/sushi-california-roll-plus.front.medium2x.1643897136895.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.6041964842959354, 0.3890180878552971, 0.5464946117654003, 0.5714285714285714]}, {"name": "Sushi Maki M1", "score": 82, "image": "/images/WEBP/electric-bike/sushi-maki-m1.front.medium2x.1643891827369.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.9031649605299266, 0.4179182816537468, 0.7548999323395622, 0.5714285714285714]}, {"name": "Sushi California Roll C1", "score": 67, "image": "/images/WEBP/electric-bike/sushi-california-roll-c1.front.medium2x.1643895847976.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.604125313051057, 0.4179182816537468, 0.5275447671523683, 0.5714285714285714]}, {"name": "Stromer ST3 Sport", "score": 91, "image": "/images/WEBP/electric-bike/stromer-st3-sport.front.medium2x.1642430196572.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.47298065713940307, 0.22498385012919897, 0.6997650605999507, 1]}, {"name": "Sushi Maki Plus", "score": 67, "image": "/images/WEBP/electric-bike/sushi-maki-plus.front.medium2x.1643034469385.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.45604975752121807, 0.3890180878552971, 0.6111271174991346, 0.375]}, {"name": "Trek Ace of Spades Go 5i", "score": 61, "image": "/images/WEBP/electric-bike/trek-ace-of-spades-go-5i.front.medium2x.1645461092954.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.3116575013100868, 0.45122739018087854, 0.7869684353246901, 0.4875]}, {"name": "Trek Allant Plus 7 Lowstep", "score": 77, "image": "/images/WEBP/electric-bike/trek-allant-plus-7-lowstep.front.medium2x.1650456930553.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.5797946762127091, 0.44945090439276486, 0.7839777481713313, 0.7142857142857143]}, {"name": "Sushi Maki M2", "score": 69, "image": "/images/WEBP/electric-bike/sushi-maki-m2.front.medium2x.1643893709109.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.605217727073082, 0.4179182816537468, 0.5691237771153731, 0.5714285714285714]}, {"name": "Trek Allant Plus 7", "score": 63, "image": "/images/WEBP/electric-bike/trek-allant-plus-7.front.medium2x.1645453480929.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.6535775167982375, 0.4140826873385013, 0.6406623410159893, 0.42857142857142855]}, {"name": "Trek Allant Plus 8S Stagger", "score": 70, "image": "/images/WEBP/electric-bike/trek-allant-plus-8s-stagger.front.medium2x.1643383022048.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.4835441294305813, 0.4342700258397933, 0.8142539395197604, 0.5714285714285714]}, {"name": "Trek Allant Plus 7S Stagger", "score": 72, "image": "/images/WEBP/electric-bike/trek-allant-plus-7s-stagger.front.medium2x.1643385319598.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.6535466294523569, 0.4140826873385013, 0.8199510749466354, 0.5]}, {"name": "Trek Allant Plus 7S", "score": 68, "image": "/images/WEBP/electric-bike/trek-allant-plus-7s.front.medium2x.1643384448410.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.6534848547605956, 0.4140826873385013, 0.8199510749466354, 0.375]}, {"name": "Trek Allant Plus 8S", "score": 67, "image": "/images/WEBP/electric-bike/trek-allant-plus-8s.front.medium2x.1643383729864.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.48366767881410383, 0.4140826873385013, 0.8261436134541084, 0.5]}, {"name": "Trek Allant Plus 9.9S Stagger", "score": 65, "image": "/images/WEBP/electric-bike/trek-allant-plus-9-9s-stagger.front.medium2x.1643304028068.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.5714285714285714, 0.4342700258397933, 0.6899077662897031, 0.5714285714285714]}, {"name": "Trek Allant Plus 9.9S (2021)", "score": 67, "image": "/images/WEBP/electric-bike/trek-allant-plus-9-9s-2021.front.medium2x.1645611625805.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.5945677868827496, 0.4140826873385013, 0.5968427590059664, 0.42857142857142855]}, {"name": "Trek Allant Plus 9.9S Stagger (2021)", "score": 69, "image": "/images/WEBP/electric-bike/trek-allant-plus-9-9s-stagger-2021.front.medium2x.1650455506793.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.6805400627843565, 0.46459140826873385, 0.5585264544577049, 0.42857142857142855]}, {"name": "Trek Domane Plus HP 7", "score": 77, "image": "/images/WEBP/electric-bike/trek-domane-plus-hp-7.front.medium2x.1645538457862.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.6166213518415252, 0.4140826873385013, 0.9202308810628882, 0.42857142857142855]}, {"name": "Trek Domane Plus HP (2021)", "score": 82, "image": "/images/WEBP/electric-bike/trek-domane-plus-hp-2021.front.medium2x.1645609070554.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.6139650400957903, 0.7474160206718347, 0.8910671346586858, 0.2857142857142857]}, {"name": "Trek Domane Plus LT 7 (2021)", "score": 63, "image": "/images/WEBP/electric-bike/trek-domane-plus-lt-7-2021.front.medium2x.1645548563733.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.6265670772150906, 0.4747254521963824, 0.7672325857480957, 0.14285714285714285]}, {"name": "Trek Allant Plus 9.9S", "score": 80, "image": "/images/WEBP/electric-bike/trek-allant-plus-9-9s.front.medium2x.1643303001989.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.5981507190049036, 0.4342700258397933, 0.9271114794045249, 0.5714285714285714]}, {"name": "Trek Domane Plus LT 9", "score": 60, "image": "/images/WEBP/electric-bike/trek-domane-plus-lt-9.front.medium2x.1642771939511.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.6260419923351198, 0.37370801033591733, 0.6157589579765221, 0.14285714285714285]}, {"name": "Trek E-Caliber 9.8 GX AXS (2021)", "score": 69, "image": "/images/WEBP/electric-bike/trek-e-caliber-9-8-gx-axs-2021.front.medium2x.1645546473768.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [1, 0.4747254521963824, 0.4438444636911739, 0.14285714285714285]}, {"name": "Trek E-Caliber 9.6", "score": 76, "image": "/images/WEBP/electric-bike/trek-e-caliber-9-6.front.medium2x.1643297002283.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.9429741450058343, 0.37370801033591733, 0.6353945549256323, 0.25]}, {"name": "Trek E-Caliber 9.8 GX (2021)", "score": 68, "image": "/images/WEBP/electric-bike/trek-e-caliber-9-8-gx-2021.front.medium2x.1645551499988.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.9475763595420493, 0.4747254521963824, 0.6089788238904531, 0.14285714285714285]}, {"name": "Trek E-Caliber 9.8 XT", "score": 61, "image": "/images/WEBP/electric-bike/trek-e-caliber-9-8-xt.front.medium2x.1643290954032.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.9477307962714526, 0.37370801033591733, 0.45698181945813876, 0.125]}, {"name": "Trek E-Caliber 9.8 GX AXS", "score": 60, "image": "/images/WEBP/electric-bike/trek-e-caliber-9-8-gx-axs.front.medium2x.1642777080810.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.9460937669397788, 0.37370801033591733, 0.45698181945813876, 0.125]}, {"name": "Trek E-Caliber 9.8 GX", "score": 78, "image": "/images/WEBP/electric-bike/trek-e-caliber-9-8-gx.front.medium2x.1650365694602.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.8422160980323049, 0.4191698966408269, 0.6631382102873749, 0.2857142857142857]}, {"name": "Trek E-Caliber 9.8 XT (2021)", "score": 68, "image": "/images/WEBP/electric-bike/trek-e-caliber-9-8-xt-2021.front.medium2x.1645552321081.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.9477307962714526, 0.37370801033591733, 0.6089788238904531, 0.14285714285714285]}, {"name": "Trek E-Caliber 9.9 XX1 AXS (2021)", "score": 61, "image": "/images/WEBP/electric-bike/trek-e-caliber-9-9-xx1-axs-2021.front.medium2x.1645540737760.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.7828864830117436, 0.4747254521963824, 0.6089788238904531, 0.14285714285714285]}, {"name": "Trek E-Caliber 9.9 XX1 AXS", "score": 69, "image": "/images/WEBP/electric-bike/trek-e-caliber-9-9-xx1-axs.front.medium2x.1642761254866.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.9495531496784103, 0.37370801033591733, 0.6130700840139076, 0.25]}, {"name": "Trek E-Caliber 9.9 XTR", "score": 61, "image": "/images/WEBP/electric-bike/trek-e-caliber-9-9-xtr.front.medium2x.1642774732514.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.9494604876407683, 0.37370801033591733, 0.45698181945813876, 0.125]}, {"name": "Trek E-Caliber 9.9 XTR (2021)", "score": 56, "image": "/images/WEBP/electric-bike/trek-e-caliber-9-9-xtr-2021.front.medium2x.1645541419702.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.7827938209741016, 0.4747254521963824, 0.4438444636911739, 0.14285714285714285]}, {"name": "Trek Navigator Go 5i", "score": 61, "image": "/images/WEBP/electric-bike/trek-navigator-go-5i.front.medium2x.1645462171958.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.3116575013100868, 0.45122739018087854, 0.7869684353246901, 0.4875]}, {"name": "Trek Powerfly FS 4", "score": 72, "image": "/images/WEBP/electric-bike/trek-powerfly-fs-4.front.medium2x.1643380235823.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.8191940137049625, 0.3938953488372093, 0.9440967278821649, 0.125]}, {"name": "Trek Powerfly 4", "score": 69, "image": "/images/WEBP/electric-bike/trek-powerfly-4.front.medium2x.1645451746336.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.657036899536869, 0.7474160206718347, 0.7954758037028137, 0.14285714285714285]}, {"name": "Trek Ghostrider Go", "score": 84, "image": "/images/WEBP/electric-bike/trek-ghostrider-go.front.medium2x.1645459964018.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.9755134195016154, 0.7012273901808785, 0.8024497815933727, 0.4875]}, {"name": "Trek Rail 5", "score": 73, "image": "/images/WEBP/electric-bike/trek-rail-5.front.medium2x.1643369814941.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.8221283115636231, 0.4140826873385013, 0.8078608807177595, 0.25]}, {"name": "Trek Powerfly FS 9 Equipped", "score": 80, "image": "/images/WEBP/electric-bike/trek-powerfly-fs-9-equipped.front.medium2x.1643367431273.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.8123370229194609, 0.40903585271317827, 0.8078608807177595, 0.5714285714285714]}, {"name": "Trek Rail 5 (2021)", "score": 63, "image": "/images/WEBP/electric-bike/trek-rail-5-2021.front.medium2x.1650354187901.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.7316010329898677, 0.44945090439276486, 0.5350764612167171, 0.2857142857142857]}, {"name": "Trek Rail 7", "score": 62, "image": "/images/WEBP/electric-bike/trek-rail-7.front.medium2x.1643298399852.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.8217576634130555, 0.40903585271317827, 0.6592399565384083, 0.14285714285714285]}, {"name": "Trek Rail 9.8 (2021)", "score": 78, "image": "/images/WEBP/electric-bike/trek-rail-9-8-2021.front.medium2x.1645550711648.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.9304956572700566, 0.4342700258397933, 0.8078608807177595, 0.2857142857142857]}, {"name": "Trek Rail 9.7", "score": 95, "image": "/images/WEBP/electric-bike/trek-rail-9-7.front.medium2x.1643296207431.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.9299705723900856, 0.4342700258397933, 0.8930361352364198, 0.5]}, {"name": "Trek Rail 9.8 GX AXS", "score": 82, "image": "/images/WEBP/electric-bike/trek-rail-9-8-gx-axs.front.medium2x.1642775963718.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.9277775708325603, 0.45445736434108525, 0.7810990593458859, 0.375]}, {"name": "Trek Rail 9.7 (2021)", "score": 83, "image": "/images/WEBP/electric-bike/trek-rail-9-7-2021.front.medium2x.1645553599619.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.9297234736230405, 0.3951469638242894, 0.8078608807177595, 0.3625]}, {"name": "Trek Rail 9.9 (2021)", "score": 67, "image": "/images/WEBP/electric-bike/trek-rail-9-9-2021.front.medium2x.1645545101398.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.9308045307288628, 0.4342700258397933, 0.5106190323590569, 0.2857142857142857]}, {"name": "Trek Rail 9.8 XT", "score": 100, "image": "/images/WEBP/electric-bike/trek-rail-9-8-xt.front.medium2x.1643293307801.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.9277775708325603, 0.45445736434108525, 0.9103031605985269, 0.625]}, {"name": "Trek Rail 9.8 GX", "score": 94, "image": "/images/WEBP/electric-bike/trek-rail-9-8-gx.front.medium2x.1643295329421.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.9276231341031572, 0.45445736434108525, 0.8930361352364198, 0.5]}, {"name": "Trek Rail 9.8 XT (2021)", "score": 72, "image": "/images/WEBP/electric-bike/trek-rail-9-8-xt-2021.front.medium2x.1645549951940.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.9310516294959079, 0.4342700258397933, 0.8137454305375593, 0.14285714285714285]}, {"name": "Trek Rail 9.9 XTR", "score": 74, "image": "/images/WEBP/electric-bike/trek-rail-9-9-xtr.front.medium2x.1642773963725.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.9297234736230405, 0.45445736434108525, 0.8137454305375593, 0.25]}, {"name": "Trek Rail 9.9 XX1 AXS", "score": 72, "image": "/images/WEBP/electric-bike/trek-rail-9-9-xx1-axs.front.medium2x.1642763170405.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.9304338825782953, 0.45445736434108525, 0.6940941350230924, 0.25]}, {"name": "Trek Rail 9.9 X01 AXS (2021)", "score": 81, "image": "/images/WEBP/electric-bike/trek-rail-9-9-x01-axs-2021.front.medium2x.1650289882105.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.9752520334446942, 0.46459140826873385, 0.7464308987236277, 0.42857142857142855]}, {"name": "Trek Rail 9.9 XTR (2021)", "score": 79, "image": "/images/WEBP/electric-bike/trek-rail-9-9-xtr-2021.front.medium2x.1645544575033.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.9329975322863883, 0.4342700258397933, 0.8078608807177595, 0.2375]}, {"name": "Trek Vale Go EQ", "score": 58, "image": "/images/WEBP/electric-bike/trek-vale-go-eq.front.medium2x.1645616455688.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.4523809523809524, 0.43556201550387597, 0.7468660146568513, 0.4875]}, {"name": "Trek Verve Plus 2 Lowstep", "score": 73, "image": "/images/WEBP/electric-bike/trek-verve-plus-2-lowstep.front.medium2x.1650447003125.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.5833140984554799, 0.4373385012919897, 0.726478505374074, 0.7142857142857143]}, {"name": "Trek Vale Go 9D EQ S (2021)", "score": 69, "image": "/images/WEBP/electric-bike/trek-vale-go-9d-eq-s-2021.front.medium2x.1645614740620.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.48675641340216763, 0.4140826873385013, 0.7698627507404591, 0.5714285714285714]}, {"name": "Trek Townie Path Go 10D EQ Step-Thru", "score": 56, "image": "/images/WEBP/electric-bike/trek-townie-path-go-10d-eq-step-thru.front.medium2x.1645114826649.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.4314094182148074, 0.43556201550387597, 0.6215703725683597, 0.2857142857142857]}, {"name": "Trek Verve Plus 3 Lowstep", "score": 75, "image": "/images/WEBP/electric-bike/trek-verve-plus-3-lowstep.front.medium2x.1650453122412.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.5800461709800555, 0.44945090439276486, 0.7505768012767766, 0.7142857142857143]}, {"name": "Trek Verve Plus 2", "score": 57, "image": "/images/WEBP/electric-bike/trek-verve-plus-2.front.medium2x.1645523527343.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.32373445354941627, 0.45122739018087854, 0.7336552658409089, 0.42857142857142855]}, {"name": "VanMoof S3", "score": 97, "image": "/images/WEBP/electric-bike/vanmoof-s3.front.medium2x.1638885419609.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.5904628888114968, 0.19969315245478036, 0.8699000351749899, 1]}, {"name": "Trek Verve Plus 3", "score": 62, "image": "/images/WEBP/electric-bike/trek-verve-plus-3.front.medium2x.1645457464497.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.6529597698806248, 0.4140826873385013, 0.5990484822457711, 0.42857142857142855]}, {"name": "Wilier Cento10 Hybrid", "score": 67, "image": "/images/WEBP/electric-bike/wilier-cento10-hybrid.front.medium2x.1643790260984.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.7085911336359799, 0.4469476744186046, 0.6389093046022283, 0.14285714285714285]}, {"name": "VanMoof X3", "score": 97, "image": "/images/WEBP/electric-bike/vanmoof-x3.front.medium2x.1638886597615.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.5910855777044505, 0.19993540051679587, 0.8685710850332968, 1]}, {"name": "Wilier 101FX Hybrid", "score": 55, "image": "/images/WEBP/electric-bike/wilier-101fx-hybrid.front.medium2x.1643809592098.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.6967144181500772, 0.405281007751938, 0.4686781745076775, 0.14285714285714285]}, {"name": "Wilier Cento1 Hybrid", "score": 70, "image": "/images/WEBP/electric-bike/wilier-cento1-hybrid.front.medium2x.1643801151397.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.7310313175106234, 0.405281007751938, 0.6426852105603722, 0.14285714285714285]}, {"name": "Wilier Triestina Hybrid", "score": 61, "image": "/images/WEBP/electric-bike/wilier-triestina-hybrid.front.medium2x.1643804412462.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.8957535047153615, 0.405281007751938, 0.6384663212216639, 0.14285714285714285]}, {"name": "Wilier Jena Hybrid", "score": 72, "image": "/images/WEBP/electric-bike/wilier-jena-hybrid.front.medium2x.1643807445748.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.8539219898764866, 0.4330587855297158, 0.7116508672190717, 0.14285714285714285]}, {"name": "Wilier E903TRN Pro", "score": 55, "image": "/images/WEBP/electric-bike/wilier-e903trn-pro.front.medium2x.1643883023288.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.8798236345931553, 0.4513081395348837, 0.4941055963391291, 0]}, {"name": "Wilier E803TRB", "score": 58, "image": "/images/WEBP/electric-bike/wilier-e803trb.front.medium2x.1643885601682.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.8867487568109494, 0.44945090439276486, 0.4519963344883129, 0.2857142857142857]}, {"name": "Wing Freedom 2", "score": 67, "image": "/images/WEBP/electric-bike/wing-freedom-2.front.medium2x.1645450367554.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.5993787565636696, 0.5185185185185185, 0.43175287293179937, 0.7142857142857143]}, {"name": "Wing Freedom X", "score": 67, "image": "/images/WEBP/electric-bike/wing-freedom-x.front.medium2x.1645450395130.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.5994571738823781, 0.5185185185185185, 0.4274636687707791, 0.7142857142857143]}, {"name": "Wing Freedom S2", "score": 67, "image": "/images/WEBP/electric-bike/wing-freedom-s2.front.medium2x.1645450325953.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.6022730957032588, 0.5185185185185185, 0.42102986252924884, 0.7142857142857143]}, {"name": "Wing Freedom Fatty 2", "score": 70, "image": "/images/WEBP/electric-bike/wing-freedom-fatty-2.front.medium2x.1645450342971.webp", "propGroups": ["Design", "Battery", "Performance", "Features"], "propScore": [0.5994586172358104, 0.5185185185185185, 0.4864592109868316, 0.7142857142857143]}]}
data/electric-scooter.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"data": [{"name": "Apollo City", "score": 69, "image": "/images/WEBP/electric-scooter/apollo-city.front.medium2x.1620302050370.webp", "propGroups": ["Design", "Performance", "Battery"], "propScore": [0.8861648465582087, 0.4608389054274058, 0.8245416173481921]}, {"name": "Apollo Ghost", "score": 77, "image": "/images/WEBP/electric-scooter/apollo-ghost.front.medium2x.1620304376937.webp", "propGroups": ["Design", "Performance", "Battery"], "propScore": [0.8487341455668472, 0.7427094244825018, 0.6380842843424078]}, {"name": "Apollo Light", "score": 66, "image": "/images/WEBP/electric-scooter/apollo-light.front.medium2x.1620303523015.webp", "propGroups": ["Design", "Performance", "Battery"], "propScore": [0.9311031322809358, 0.42234806892648047, 0.7562922929182393]}, {"name": "Apollo Explore", "score": 67, "image": "/images/WEBP/electric-scooter/apollo-explore.front.medium2x.1620301080953.webp", "propGroups": ["Design", "Performance", "Battery"], "propScore": [0.8663242775258008, 0.50708434042006, 0.7444335261406526]}, {"name": "Apollo Phantom", "score": 84, "image": "/images/WEBP/electric-scooter/apollo-phantom.front.medium2x.1620294479428.webp", "propGroups": ["Design", "Performance", "Battery"], "propScore": [0.855502831623534, 0.7717352763520263, 0.7188109902995662]}, {"name": "Bird Air", "score": 53, "image": "/images/WEBP/electric-scooter/bird-air.front.medium2x.1620648709994.webp", "propGroups": ["Design", "Performance", "Battery"], "propScore": [0.5679513364386443, 0.24851023200244285, 0.7706635102842977]}, {"name": "Apollo Pro", "score": 78, "image": "/images/WEBP/electric-scooter/apollo-pro.front.medium2x.1620291837029.webp", "propGroups": ["Design", "Performance", "Battery"], "propScore": [0.896349068470213, 0.8187769689543407, 0.4033097349085468]}, {"name": "Bird One", "score": 54, "image": "/images/WEBP/electric-scooter/bird-one.front.medium2x.1620649730538.webp", "propGroups": ["Design", "Performance", "Battery"], "propScore": [0.9060597911635798, 0.3973990707131768, 0.6498090537552761]}, {"name": "Glion Dolly", "score": 51, "image": "/images/WEBP/electric-scooter/glion-dolly.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Performance", "Battery"], "propScore": [0.6588065406831186, 0.27473185310010756, 0.6767616161211665]}, {"name": "FluidFreeRide Mercane WideWheel", "score": 68, "image": "/images/WEBP/electric-scooter/fluidfreeride-mercane-widewheel.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Performance", "Battery"], "propScore": [0.7960553372032821, 0.46861654867633307, 0.5460839270161021]}, {"name": "Costzon 24-Volt", "score": 40, "image": "/images/WEBP/electric-scooter/costzon-24-volt.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Performance", "Battery"], "propScore": [0.591418827000952, 0.3760792068556053, 0.4080443084619336]}, {"name": "Boosted Rev", "score": 80, "image": "/images/WEBP/electric-scooter/boosted-rev.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Performance", "Battery"], "propScore": [0.8900792047396625, 0.5475182314420359, 0.8167921030886393]}, {"name": "Glion SNAPnGO", "score": 53, "image": "/images/WEBP/electric-scooter/glion-snapngo.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Performance", "Battery"], "propScore": [0.7855051402441202, 0.44029028873027254, 0.4574484244913299]}, {"name": "GoTrax G4", "score": 68, "image": "/images/WEBP/electric-scooter/gotrax-g4.front.medium2x.1620223871421.webp", "propGroups": ["Design", "Performance", "Battery"], "propScore": [0.9770620272439416, 0.41888525726454023, 0.7909752774862094]}, {"name": "GoTrax G2", "score": 42, "image": "/images/WEBP/electric-scooter/gotrax-g2.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Performance", "Battery"], "propScore": [0.6769734399639168, 0.24706756886288556, 0.4872590839046832]}, {"name": "GoTrax Apex", "score": 56, "image": "/images/WEBP/electric-scooter/gotrax-apex.front.medium2x.1620223039093.webp", "propGroups": ["Design", "Performance", "Battery"], "propScore": [0.9567693302865523, 0.3974983784699321, 0.7664760926368448]}, {"name": "GoTrax GMax Ultra", "score": 61, "image": "/images/WEBP/electric-scooter/gotrax-gmax-ultra.front.medium2x.1620217142881.webp", "propGroups": ["Design", "Performance", "Battery"], "propScore": [0.8318591087965063, 0.4318653613061231, 0.6086160305513991]}, {"name": "GoTrax GKS", "score": 35, "image": "/images/WEBP/electric-scooter/gotrax-gks.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Performance", "Battery"], "propScore": [0.3553440374395704, 0.20772631822902893, 0.2080867409607611]}, {"name": "GoTrax GXL", "score": 51, "image": "/images/WEBP/electric-scooter/gotrax-gxl.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Performance", "Battery"], "propScore": [0.7860268012604955, 0.26091804355571013, 0.42933512920606043]}, {"name": "GoTrax GXL V2", "score": 55, "image": "/images/WEBP/electric-scooter/gotrax-gxl-v2.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Performance", "Battery"], "propScore": [0.7863022470367282, 0.26091804355571013, 0.6394271779513241]}, {"name": "GoTrax XR Elite", "score": 57, "image": "/images/WEBP/electric-scooter/gotrax-xr-elite.front.medium2x.1620218150279.webp", "propGroups": ["Design", "Performance", "Battery"], "propScore": [0.8492516805202408, 0.39911411929880014, 0.782388279697166]}, {"name": "Hiboy S2 Lite", "score": 53, "image": "/images/WEBP/electric-scooter/hiboy-s2-lite.front.medium2x.1620383026399.webp", "propGroups": ["Design", "Performance", "Battery"], "propScore": [0.7740655135040192, 0.36377752084777154, 0.7060432811488041]}, {"name": "Hiboy S2 Pro", "score": 69, "image": "/images/WEBP/electric-scooter/hiboy-s2-pro.front.medium2x.1620390943926.webp", "propGroups": ["Design", "Performance", "Battery"], "propScore": [0.8995843297602333, 0.4286035355033997, 0.7925832458628314]}, {"name": "GoTrax XR Ultra", "score": 55, "image": "/images/WEBP/electric-scooter/gotrax-xr-ultra.front.medium2x.1620219943815.webp", "propGroups": ["Design", "Performance", "Battery"], "propScore": [0.752469012456576, 0.40227624012854324, 0.7754092502847443]}, {"name": "Inokim Light 2 Super", "score": 62, "image": "/images/WEBP/electric-scooter/inokim-light-2-super.front.medium2x.1620393397751.webp", "propGroups": ["Design", "Performance", "Battery"], "propScore": [0.7863946352782011, 0.5752126057849606, 0.5361681220269334]}, {"name": "Hiboy S2R", "score": 69, "image": "/images/WEBP/electric-scooter/hiboy-s2r.front.medium2x.1620387323724.webp", "propGroups": ["Design", "Performance", "Battery"], "propScore": [0.7728340346695688, 0.4077109514497405, 1]}, {"name": "Hiboy S2", "score": 66, "image": "/images/WEBP/electric-scooter/hiboy-s2.front.medium2x.1620388634655.webp", "propGroups": ["Design", "Performance", "Battery"], "propScore": [0.8792768255763967, 0.4181745047077511, 0.7479174576233335]}, {"name": "Hover-1 Alpha", "score": 56, "image": "/images/WEBP/electric-scooter/hover-1-alpha.front.medium2x.1620381547540.webp", "propGroups": ["Design", "Performance", "Battery"], "propScore": [0.9199606510615526, 0.2923686785229445, 0.4603814458315653]}, {"name": "Inokim OX Super", "score": 57, "image": "/images/WEBP/electric-scooter/inokim-ox-super.front.medium2x.1620630329484.webp", "propGroups": ["Design", "Performance", "Battery"], "propScore": [0.865587326040097, 0.47944789642153096, 0.47316702771512165]}, {"name": "Inokim OXO", "score": 71, "image": "/images/WEBP/electric-scooter/inokim-oxo.front.medium2x.1620394457159.webp", "propGroups": ["Design", "Performance", "Battery"], "propScore": [0.8435573373923394, 0.7555580468536077, 0.48091654197467454]}, {"name": "Inokim OX Eco", "score": 62, "image": "/images/WEBP/electric-scooter/inokim-ox-eco.front.medium2x.1620395637272.webp", "propGroups": ["Design", "Performance", "Battery"], "propScore": [0.8770726881956818, 0.48128116761821366, 0.5482502177457176]}, {"name": "Inokim Mini 2", "score": 51, "image": "/images/WEBP/electric-scooter/inokim-mini-2.front.medium2x.1620392540034.webp", "propGroups": ["Design", "Performance", "Battery"], "propScore": [0.7967853430142523, 0.380755650747113, 0.7770842173437256]}, {"name": "Jetson Quest", "score": 48, "image": "/images/WEBP/electric-scooter/jetson-quest.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Performance", "Battery"], "propScore": [0.6523151033045389, 0.25633636844491614, 0.43210371819584104]}, {"name": "Levy The Levy Electric Scooter", "score": 67, "image": "/images/WEBP/electric-scooter/levy-the-levy-electric-scooter.front.medium2x.1620719509251.webp", "propGroups": ["Design", "Performance", "Battery"], "propScore": [0.7749125473988572, 0.4034881877800704, 0.9481943999497895]}, {"name": "Jetson Element", "score": 56, "image": "/images/WEBP/electric-scooter/jetson-element.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Performance", "Battery"], "propScore": [0.9072177542396561, 0.2454271641934434, 0.42045090498277676]}, {"name": "MegaWheels S1", "score": 56, "image": "/images/WEBP/electric-scooter/megawheels-s1.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Performance", "Battery"], "propScore": [0.8137735683776366, 0.388524828359731, 0.6319833612237808]}, {"name": "MegaWheels S5", "score": 49, "image": "/images/WEBP/electric-scooter/megawheels-s5.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Performance", "Battery"], "propScore": [0.7814433257460286, 0.4233856792142677, 0.43458544501115237]}, {"name": "Mercane WideWheel Pro (Single)", "score": 57, "image": "/images/WEBP/electric-scooter/mercane-widewheel-pro-single.front.medium2x.1620723036646.webp", "propGroups": ["Design", "Performance", "Battery"], "propScore": [0.7700333036608094, 0.4408461188604211, 0.510418295106863]}, {"name": "Nanrobot D3", "score": 66, "image": "/images/WEBP/electric-scooter/nanrobot-d3.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Performance", "Battery"], "propScore": [0.9465370995990975, 0.5320976606711288, 0.5218533144710223]}, {"name": "Mercane WideWheel Pro (Dual)", "score": 75, "image": "/images/WEBP/electric-scooter/mercane-widewheel-pro-dual.front.medium2x.1620722109285.webp", "propGroups": ["Design", "Performance", "Battery"], "propScore": [0.755705254067498, 0.6736791477761433, 0.7562922929182393]}, {"name": "Nanrobot D5+", "score": 99, "image": "/images/WEBP/electric-scooter/nanrobot-d5.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Performance", "Battery"], "propScore": [0.9723859786472708, 0.8108716668799834, 0.8053382804544307]}, {"name": "Nanrobot D4+", "score": 87, "image": "/images/WEBP/electric-scooter/nanrobot-d4.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Performance", "Battery"], "propScore": [0.8675903908921142, 0.786887784315407, 0.5086539643839112]}, {"name": "Nanrobot LS7", "score": 99, "image": "/images/WEBP/electric-scooter/nanrobot-ls7.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Performance", "Battery"], "propScore": [0.6921718422109191, 0.9870939301877, 0.6049981017039998]}, {"name": "Nanrobot RS11", "score": 89, "image": "/images/WEBP/electric-scooter/nanrobot-rs11.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Performance", "Battery"], "propScore": [0.8827452730496156, 0.980986815447433, 0.5753604901325831]}, {"name": "Nanrobot RS7", "score": 100, "image": "/images/WEBP/electric-scooter/nanrobot-rs7.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Performance", "Battery"], "propScore": [0.68047178728728, 1, 0.647596171987928]}, {"name": "Ninebot by Segway KickScooter E22D", "score": 58, "image": "/images/WEBP/electric-scooter/ninebot-by-segway-kickscooter-e22d.front.medium2x.1620650715314.webp", "propGroups": ["Design", "Performance", "Battery"], "propScore": [0.8883081133220639, 0.37961214104587243, 0.6534841464688742]}, {"name": "Navee N65", "score": 66, "image": "/images/WEBP/electric-scooter/navee-n65.front.medium2x.1654085228947.webp", "propGroups": ["Design", "Performance", "Battery"], "propScore": [0.8702732638799835, 0.45279054903114163, 0.8198740424771646]}, {"name": "Ninebot by Segway KickScooter Air T15", "score": 60, "image": "/images/WEBP/electric-scooter/ninebot-by-segway-kickscooter-air-t15.front.medium2x.1620307620437.webp", "propGroups": ["Design", "Performance", "Battery"], "propScore": [0.8471624811641777, 0.3925922450874552, 0.7407932643991334]}, {"name": "Ninebot by Segway KickScooter E25D", "score": 60, "image": "/images/WEBP/electric-scooter/ninebot-by-segway-kickscooter-e25d.front.medium2x.1620376164759.webp", "propGroups": ["Design", "Performance", "Battery"], "propScore": [0.9069827992518364, 0.3925922450874552, 0.7687093820488198]}, {"name": "Ninebot by Segway KickScooter ES1", "score": 61, "image": "/images/WEBP/electric-scooter/ninebot-by-segway-kickscooter-es1.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Performance", "Battery"], "propScore": [0.7767671719833265, 0.37743030019557783, 0.7787926837438864]}, {"name": "Ninebot by Segway KickScooter E45D", "score": 64, "image": "/images/WEBP/electric-scooter/ninebot-by-segway-kickscooter-e45d.front.medium2x.1620375403762.webp", "propGroups": ["Design", "Performance", "Battery"], "propScore": [0.9017221791817701, 0.40557234912903806, 0.6705539700056395]}, {"name": "Ninebot by Segway KickScooter ES1LD", "score": 45, "image": "/images/WEBP/electric-scooter/ninebot-by-segway-kickscooter-es1ld.front.medium2x.1620310441273.webp", "propGroups": ["Design", "Performance", "Battery"], "propScore": [0.6862311038016865, 0.36964223777062816, 0.39674891781726]}, {"name": "Ninebot by Segway KickScooter Max G30D", "score": 67, "image": "/images/WEBP/electric-scooter/ninebot-by-segway-kickscooter-max-g30d.front.medium2x.1620308735994.webp", "propGroups": ["Design", "Performance", "Battery"], "propScore": [0.9061298087660439, 0.40775418997933255, 0.7730750296680946]}, {"name": "Pure Air Pro", "score": 61, "image": "/images/WEBP/electric-scooter/pure-air-pro.front.medium2x.1620648843488.webp", "propGroups": ["Design", "Performance", "Battery"], "propScore": [0.9021567081856636, 0.4630740696426171, 0.517084664001608]}, {"name": "Ninebot by Segway KickScooter Max G30LD", "score": 66, "image": "/images/WEBP/electric-scooter/ninebot-by-segway-kickscooter-max-g30ld.front.medium2x.1620308421527.webp", "propGroups": ["Design", "Performance", "Battery"], "propScore": [0.8975578527255215, 0.4176358175722796, 0.7730750296680946]}, {"name": "Ninebot by Segway KickScooter ES4", "score": 68, "image": "/images/WEBP/electric-scooter/ninebot-by-segway-kickscooter-es4.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Performance", "Battery"], "propScore": [0.8992995383217767, 0.30058524277922954, 0.7640418071777922]}, {"name": "Qiewa Qmini", "score": 72, "image": "/images/WEBP/electric-scooter/qiewa-qmini.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Performance", "Battery"], "propScore": [0.7565235311364673, 0.4775629508006618, 0.7144434414964168]}, {"name": "Qiewa Q1Hummer", "score": 72, "image": "/images/WEBP/electric-scooter/qiewa-q1hummer.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Performance", "Battery"], "propScore": [0.7560114690358116, 0.6008003332389965, 0.5638173760312599]}, {"name": "Qiewa QPower", "score": 91, "image": "/images/WEBP/electric-scooter/qiewa-qpower.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Performance", "Battery"], "propScore": [1, 0.6407523295591843, 0.8870115754342273]}, {"name": "Pure Air", "score": 65, "image": "/images/WEBP/electric-scooter/pure-air.front.medium2x.1620635723266.webp", "propGroups": ["Design", "Performance", "Battery"], "propScore": [0.9027782555527628, 0.4579831076585965, 0.7725841391785963]}, {"name": "Razor E Prime", "score": 54, "image": "/images/WEBP/electric-scooter/razor-e-prime.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Performance", "Battery"], "propScore": [0.5624792887095437, 0.4192094831986524, 0.3358947035946388]}, {"name": "Razor E Prime Air", "score": 50, "image": "/images/WEBP/electric-scooter/razor-e-prime-air.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Performance", "Battery"], "propScore": [0.6788397847789358, 0.289785787468592, 0.3575885540573468]}, {"name": "Razor E300", "score": 39, "image": "/images/WEBP/electric-scooter/razor-e300.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Performance", "Battery"], "propScore": [0.5337559053848233, 0.25875067323699047, 0.09816668557741047]}, {"name": "Razor E100", "score": 37, "image": "/images/WEBP/electric-scooter/razor-e100.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Performance", "Battery"], "propScore": [0.5081708898307778, 0.36942319300175386, 0.3101346135373394]}, {"name": "Razor EcoSmart Metro", "score": 48, "image": "/images/WEBP/electric-scooter/razor-ecosmart-metro.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Performance", "Battery"], "propScore": [0.635296665651761, 0.28300664372214673, 0.31584104916887107]}, {"name": "Razor E300S", "score": 48, "image": "/images/WEBP/electric-scooter/razor-e300s.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Performance", "Battery"], "propScore": [0.5196846668470988, 0.25875067323699047, 0.34615490987139674]}, {"name": "Razor Power A2", "score": 37, "image": "/images/WEBP/electric-scooter/razor-power-a2.front.medium2x.1620634876082.webp", "propGroups": ["Design", "Performance", "Battery"], "propScore": [0.5039261676909872, 0.20585006496925476, 0.2218326372914666]}, {"name": "Razor Power A5", "score": 43, "image": "/images/WEBP/electric-scooter/razor-power-a5.front.medium2x.1620632896258.webp", "propGroups": ["Design", "Performance", "Battery"], "propScore": [0.7212383116163378, 0.21698005073534066, 0.4761484690801081]}, {"name": "Razor Power Core E90", "score": 45, "image": "/images/WEBP/electric-scooter/razor-power-core-e90.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Performance", "Battery"], "propScore": [0.5808152633408712, 0.36891409680335174, 0.49451541341909167]}, {"name": "TurboAnt M10", "score": 64, "image": "/images/WEBP/electric-scooter/turboant-m10.front.medium2x.1636021663005.webp", "propGroups": ["Design", "Performance", "Battery"], "propScore": [0.9141761348150452, 0.4184899921608224, 0.7597092257185609]}, {"name": "Swagtron Swagger 5 Elite", "score": 58, "image": "/images/WEBP/electric-scooter/swagtron-swagger-5-elite.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Performance", "Battery"], "propScore": [0.7835058276287173, 0.4563429238954382, 0.5063313754829488]}, {"name": "Razor Power Core E100", "score": 40, "image": "/images/WEBP/electric-scooter/razor-power-core-e100.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Performance", "Battery"], "propScore": [0.46285141579676004, 0.19534185357267225, 0.4566177563781816]}, {"name": "Turboant X7 Pro", "score": 58, "image": "/images/WEBP/electric-scooter/turboant-x7-pro.front.medium2x.1620657647279.webp", "propGroups": ["Design", "Performance", "Battery"], "propScore": [0.7967158935405881, 0.4380263732438169, 0.7925832458628314]}, {"name": "Unagi Model One E500", "score": 68, "image": "/images/WEBP/electric-scooter/unagi-model-one-e500.front.medium2x.1620656905495.webp", "propGroups": ["Design", "Performance", "Battery"], "propScore": [0.7567352961601613, 0.6388475794151811, 0.7485427786586865]}, {"name": "Unagi E250", "score": 51, "image": "/images/WEBP/electric-scooter/unagi-e250.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Performance", "Battery"], "propScore": [0.556361981357906, 0.3877042148918652, 0.4523502033961915]}, {"name": "Unagi E450", "score": 56, "image": "/images/WEBP/electric-scooter/unagi-e450.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Performance", "Battery"], "propScore": [0.5544643673119001, 0.42865596288393676, 0.6237856488822386]}, {"name": "Varla Eagle One", "score": 86, "image": "/images/WEBP/electric-scooter/varla-eagle-one.front.medium2x.1620720636670.webp", "propGroups": ["Design", "Performance", "Battery"], "propScore": [0.8334372921547626, 0.7857019890042533, 0.8001987627576658]}, {"name": "XIaomi Mi Electric Scooter 1S", "score": 60, "image": "/images/WEBP/electric-scooter/xiaomi-mi-electric-scooter-1s.front.medium2x.1603006076720.webp", "propGroups": ["Design", "Performance", "Battery"], "propScore": [0.9177944365200364, 0.40860521527326377, 0.6538768572560985]}, {"name": "Xiaomi Electric Scooter 4 Pro", "score": 61, "image": "/images/WEBP/electric-scooter/xiaomi-electric-scooter-4-pro.front.medium2x.1657194179950.webp", "propGroups": ["Design", "Performance", "Battery"], "propScore": [0.727657411972485, 0.3678346311967951, 0.6586259263337936]}, {"name": "Xiaomi Electric Scooter 3 Lite", "score": 52, "image": "/images/WEBP/electric-scooter/xiaomi-electric-scooter-3-lite.front.medium2x.1662455878210.webp", "propGroups": ["Design", "Performance", "Battery"], "propScore": [0.7606445486526214, 0.2237626168645812, 0.4925854791522434]}, {"name": "Xiaomi Mi Electric Scooter 3", "score": 62, "image": "/images/WEBP/electric-scooter/xiaomi-mi-electric-scooter-3.front.medium2x.1627652278534.webp", "propGroups": ["Design", "Performance", "Battery"], "propScore": [0.902822204402903, 0.4210753518316987, 0.6538768572560985]}, {"name": "Xiaomi Mi Electric Scooter Essential", "score": 56, "image": "/images/WEBP/electric-scooter/xiaomi-mi-electric-scooter-essential.front.medium2x.1662457116794.webp", "propGroups": ["Design", "Performance", "Battery"], "propScore": [0.913877982283736, 0.2878582284545624, 0.4303599234674822]}, {"name": "Xiaomi Mi Electric Scooter Pro", "score": 58, "image": "/images/WEBP/electric-scooter/xiaomi-mi-electric-scooter-pro.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Performance", "Battery"], "propScore": [0.8944990762635178, 0.40777685535721975, 0.7237086003975255]}, {"name": "Xiaomi Mi Electric Scooter Pro 2", "score": 62, "image": "/images/WEBP/electric-scooter/xiaomi-mi-electric-scooter-pro-2.front.medium2x.1603002734791.webp", "propGroups": ["Design", "Performance", "Battery"], "propScore": [0.8828805499825304, 0.43016142466080665, 0.6586259263337936]}, {"name": "Xiaomi Mi Scooter", "score": 59, "image": "/images/WEBP/electric-scooter/xiaomi-mi-scooter.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Performance", "Battery"], "propScore": [0.8622694659016488, 0.38931621205640937, 0.7285178174781337]}, {"name": "Xiaomi Mi Electric Scooter", "score": 58, "image": "/images/WEBP/electric-scooter/xiaomi-mi-electric-scooter.front.medium2x.1603010416466.webp", "propGroups": ["Design", "Performance", "Battery"], "propScore": [0.7004804460645512, 0.4127140939291293, 0.7286806614977569]}]}
data/enterprise-cpu.json ADDED
The diff for this file is too large to render. See raw diff
 
data/ereader.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"data": [{"name": "Amazon Kindle (2022)", "score": 51, "image": "/images/WEBP/ereader/amazon-kindle-2022.front.medium2x.1663172430525.webp", "propGroups": ["Design", "Display", "Performance", "Connectivity", "Battery", "Features"], "propScore": [0.6897911425189635, 0.8230965456966312, 0.018728890157461587, 0.8017241379310344, 0.7800453514739228, 0.5105882352941177]}, {"name": "Amazon Kindle (2011)", "score": 26, "image": "/images/WEBP/ereader/amazon-kindle-2011.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Display", "Performance", "Connectivity", "Battery", "Features", "Miscellaneous"], "propScore": [0.5059609834955628, 0.20091786158097355, 0.4040721183578326, 0.48103448275862065, 0.34656084656084657, 0.18352941176470589]}, {"name": "Amazon Kindle (2019)", "score": 28, "image": "/images/WEBP/ereader/amazon-kindle-2019.front.medium2x.1602686135640.webp", "propGroups": ["Design", "Display", "Performance", "Connectivity", "Battery", "Features", "Miscellaneous"], "propScore": [0.6338217717128274, 0.3399208196720504, 0.009290709290709291, 0.48103448275862065, 0.54421768707483, 0.16842105263157894]}, {"name": "Amazon Kindle (2014)", "score": 29, "image": "/images/WEBP/ereader/amazon-kindle-2014.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Display", "Performance", "Connectivity", "Battery", "Features", "Miscellaneous"], "propScore": [0.4679347654353952, 0.6616858715957861, 0.004571618857333143, 0.48103448275862065, 0.3446712018140589, 0.18352941176470589]}, {"name": "Amazon Kindle Keyboard 3G", "score": 33, "image": "/images/WEBP/ereader/amazon-kindle-keyboard-3g.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Display", "Performance", "Connectivity", "Battery", "Features"], "propScore": [0.6237190656959423, 0.31377306431266183, 0.004571618857333143, 0.5497536945812808, 0.32275132275132273, 0.4235294117647059]}, {"name": "Amazon Kindle Oasis (2017) WiFi + Cellular 32GB", "score": 48, "image": "/images/WEBP/ereader/amazon-kindle-oasis-2017-wifi-cellular-32gb.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Display", "Performance", "Connectivity", "Battery", "Features", "Miscellaneous"], "propScore": [0.8555756647885403, 0.9356335109491287, 0.037605251890966175, 0.9620689655172413, 0.562358276643991, 0.18352941176470589]}, {"name": "Amazon Kindle Kids (2022)", "score": 44, "image": "/images/WEBP/ereader/amazon-kindle-kids-2022.front.medium2x.1663176322792.webp", "propGroups": ["Design", "Display", "Performance", "Connectivity", "Battery", "Features"], "propScore": [0.6795170380084026, 0.8230965456966312, 0.018728890157461587, 0.8017241379310344, 0.7800453514739228, 0.4305882352941177]}, {"name": "Amazon Kindle Oasis (2017) WiFi 32GB", "score": 48, "image": "/images/WEBP/ereader/amazon-kindle-oasis-2017-wifi-32gb.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Display", "Performance", "Connectivity", "Battery", "Features", "Miscellaneous"], "propScore": [0.8555756647885403, 0.9356335109491287, 0.037605251890966175, 0.721551724137931, 0.562358276643991, 0.18352941176470589]}, {"name": "Amazon Kindle Oasis WiFi", "score": 38, "image": "/images/WEBP/ereader/amazon-kindle-oasis-wifi.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Display", "Performance", "Connectivity", "Battery", "Features"], "propScore": [0.5079968079439842, 0.7746281797820055, 0.004571618857333143, 0.721551724137931, 0.562358276643991, 0.18352941176470589]}, {"name": "Amazon Kindle Oasis WiFi + 3G", "score": 38, "image": "/images/WEBP/ereader/amazon-kindle-oasis-wifi-3g.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Display", "Performance", "Connectivity", "Battery", "Features"], "propScore": [0.5079968079439842, 0.7746281797820055, 0.004571618857333143, 0.721551724137931, 0.562358276643991, 0.18352941176470589]}, {"name": "Amazon Kindle Oasis (2019)", "score": 50, "image": "/images/WEBP/ereader/amazon-kindle-oasis-2019.front.medium2x.1605820462372.webp", "propGroups": ["Design", "Display", "Performance", "Connectivity", "Battery", "Features", "Miscellaneous"], "propScore": [0.9866781000963659, 0.913660090543367, 0.037605251890966175, 0.9620689655172413, 0.562358276643991, 0.1035294117647059]}, {"name": "Amazon Kindle Paperwhite (2013)", "score": 31, "image": "/images/WEBP/ereader/amazon-kindle-paperwhite-2013.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Display", "Performance", "Connectivity", "Battery", "Features"], "propScore": [0.46353125961174985, 0.6111032941911918, 0.0010268391220772171, 0.48103448275862065, 0.54421768707483, 0.18352941176470589]}, {"name": "Amazon Kindle Paperwhite (2018)", "score": 53, "image": "/images/WEBP/ereader/amazon-kindle-paperwhite-2018.front.medium2x.1605812306747.webp", "propGroups": ["Design", "Display", "Performance", "Connectivity", "Battery", "Features", "Miscellaneous"], "propScore": [1, 0.8726366295285786, 0.037605251890966175, 1, 0.562358276643991, 0.18352941176470589]}, {"name": "Amazon Kindle Paperwhite Kids (2021)", "score": 43, "image": "/images/WEBP/ereader/amazon-kindle-paperwhite-kids-2021.front.medium2x.1632405847474.webp", "propGroups": ["Design", "Display", "Performance", "Connectivity", "Battery", "Features", "Miscellaneous"], "propScore": [0.8037129782395582, 0.7958421136031791, 0.009290709290709291, 0.7862068965517242, 0.5714285714285714, 0.4235294117647059]}, {"name": "Amazon Kindle Paperwhite 3G", "score": 33, "image": "/images/WEBP/ereader/amazon-kindle-paperwhite-3g.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Display", "Performance", "Connectivity", "Battery", "Features"], "propScore": [0.5305177196286973, 0.6111032941911918, 0.0022120736406450693, 0.48103448275862065, 0.3446712018140589, 0.18588235294117644]}, {"name": "Amazon Kindle Paperwhite (2021)", "score": 57, "image": "/images/WEBP/ereader/amazon-kindle-paperwhite-2021.front.medium2x.1632395008819.webp", "propGroups": ["Design", "Display", "Performance", "Connectivity", "Battery", "Features", "Miscellaneous"], "propScore": [0.9414948097721494, 0.9428821372986897, 0.09686140305975016, 0.7862068965517242, 0.5271604938271605, 0.4235294117647059]}, {"name": "Amazon Kindle Scribe", "score": 49, "image": "/images/WEBP/ereader/amazon-kindle-scribe.front.medium2x.1664843945916.webp", "propGroups": ["Design", "Display", "Performance", "Connectivity", "Battery", "Features"], "propScore": [0.47587470896313017, 0.9750027053611894, 0.07535797535797535, 0.8017241379310344, 0.7709750566893424, 0.4352941176470589]}, {"name": "Amazon Kindle Touch", "score": 33, "image": "/images/WEBP/ereader/amazon-kindle-touch.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Display", "Performance", "Connectivity", "Battery", "Features"], "propScore": [0.4948007148125772, 0.42662826704435014, 0.004571618857333143, 0.48103448275862065, 0.3446712018140589, 0.3482352941176471]}, {"name": "Amazon Kindle Paperwhite Signature Edition (2021)", "score": 54, "image": "/images/WEBP/ereader/amazon-kindle-paperwhite-signature-edition-2021.front.medium2x.1632400281190.webp", "propGroups": ["Design", "Display", "Performance", "Connectivity", "Battery", "Features", "Miscellaneous"], "propScore": [0.9407993131568021, 0.8704282827041534, 0.037605251890966175, 0.7862068965517242, 0.7709750566893424, 0.4235294117647059]}, {"name": "Amazon Kindle Paperwhite", "score": 29, "image": "/images/WEBP/ereader/amazon-kindle-paperwhite.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Display", "Performance", "Connectivity", "Battery", "Features"], "propScore": [0.36962128614357265, 0.6111032941911918, 0.0022120736406450693, 0.48103448275862065, 0.54421768707483, 0.18352941176470589]}, {"name": "Amazon Kindle Voyage", "score": 36, "image": "/images/WEBP/ereader/amazon-kindle-voyage.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Display", "Performance", "Connectivity", "Battery", "Features"], "propScore": [0.5286026731466048, 0.7746281797820055, 0.0019706572087524465, 0.48103448275862065, 0.31400352733686065, 0.18352941176470589]}, {"name": "Asus Eee Reader DR900", "score": 31, "image": "/images/WEBP/ereader/asus-eee-reader-dr900.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Display", "Performance", "Connectivity", "Battery", "Features"], "propScore": [0.43655068759433185, 0.4457268993669553, 0.606108177536749, 0.2748768472906404, 0.3446712018140589, 0.2611764705882353]}, {"name": "Barnes & Noble Nook GlowLight 4", "score": 32, "image": "/images/WEBP/ereader/barnes-noble-nook-glowlight-4.front.medium2x.1654009077490.webp", "propGroups": ["Design", "Display", "Performance", "Connectivity", "Battery", "Features"], "propScore": [0.7216913002058718, 0.768160648782199, 0.037605251890966175, 0.24051724137931033, 0.6163769211388258, 0.3223529411764706]}, {"name": "Barnes & Noble NOOK Color", "score": 29, "image": "/images/WEBP/ereader/barnes-noble-nook-color.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Display", "Performance", "Connectivity", "Battery", "Features"], "propScore": [0.3334237617348856, 0.5154834223908399, 0.6375509304744842, 0.48103448275862065, 0.2328042328042328, 0.36705882352941177]}, {"name": "Barnes & Noble NOOK Simple Touch", "score": 24, "image": "/images/WEBP/ereader/barnes-noble-nook-simple-touch.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Display", "Performance", "Connectivity", "Battery", "Features"], "propScore": [0.4650396179083528, 0.4228828288230236, 0.8066695209552351, 0.24051724137931033, 0.2328042328042328, 0.16705882352941176]}, {"name": "Barnes & Noble Nook GlowLight", "score": 30, "image": "/images/WEBP/ereader/barnes-noble-nook-glowlight.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Display", "Performance", "Connectivity", "Battery", "Features"], "propScore": [0.4481015022951453, 0.7239584969228801, 0.004571618857333143, 0.24051724137931033, 0.3537414965986394, 0.16842105263157894]}, {"name": "Barnes & Noble NOOK HD Smoke 8GB", "score": 36, "image": "/images/WEBP/ereader/barnes-noble-nook-hd-smoke-8gb.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Display", "Performance", "Connectivity", "Battery", "Features", "Miscellaneous"], "propScore": [0.4378170680440274, 0.623838545657293, 0.6131868131868131, 0.721551724137931, 0.2328042328042328, 0.4]}, {"name": "Barnes & Noble Nook GlowLight 4e", "score": 17, "image": "/images/WEBP/ereader/barnes-noble-nook-glowlight-4e.front.medium2x.1654007090707.webp", "propGroups": ["Design", "Display", "Performance", "Connectivity", "Battery", "Features"], "propScore": [0.2715251039070445, 0.768160648782199, 0.009290709290709291, 0.24051724137931033, 0.6984126984126984, 0.24235294117647058]}, {"name": "Bookeen Cybook Odyssey HD Frontlight", "score": 30, "image": "/images/WEBP/ereader/bookeen-cybook-odyssey-hd-frontlight.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Display", "Performance", "Connectivity", "Battery", "Features"], "propScore": [0.534617687111541, 0.5397687657477954, 0.8066695209552351, 0.48103448275862065, 0.30899470899470893, 0.1035294117647059]}, {"name": "Icarus Excel", "score": 32, "image": "/images/WEBP/ereader/icarus-excel.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Display", "Performance", "Connectivity", "Battery", "Features"], "propScore": [0.2104719886668032, 0.5829137791661383, 0.608467722753437, 0.5497536945812808, 0.30899470899470893, 0.42105263157894735]}, {"name": "Elonex eInk 621EB eBook", "score": 22, "image": "/images/WEBP/ereader/elonex-eink-621eb-ebook.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Display", "Performance", "Connectivity", "Battery", "Features"], "propScore": [0.5226638294763903, 0.21861916563873493, 0.6049284049284049, 0, 0.19954648526077096, 0.17647058823529413]}, {"name": "Huawei MatePad Paper", "score": 87, "image": "/images/WEBP/ereader/huawei-matepad-paper.front.medium2x.1646851746889.webp", "propGroups": ["Design", "Display", "Performance", "Connectivity", "Battery", "Features", "Miscellaneous"], "propScore": [0.49348041608195464, 1, 0.7548185148185148, 0.9977011494252873, 0.9123708742756361, 0.5052631578947369]}, {"name": "Irex Technologies Digital Reader 1000SW", "score": 22, "image": "/images/WEBP/ereader/irex-technologies-digital-reader-1000sw.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Display", "Performance", "Connectivity", "Battery", "Features"], "propScore": [0.3736255997589162, 0.6271499582304241, 0.40259740259740256, 0.8246305418719211, 0.3608465608465608, 0.09411764705882353]}, {"name": "Irex Technologies Digital Reader 1000S", "score": 19, "image": "/images/WEBP/ereader/irex-technologies-digital-reader-1000s.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Display", "Performance", "Connectivity", "Battery", "Features"], "propScore": [0.3736255997589162, 0.6271499582304241, 0.40259740259740256, 0, 0.3608465608465608, 0.01411764705882353]}, {"name": "Kobo Aura H2O", "score": 37, "image": "/images/WEBP/ereader/kobo-aura-h2o.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Display", "Performance", "Connectivity", "Battery", "Features"], "propScore": [0.7669558560274163, 0.8184753461966099, 0.24352909876719397, 0.48103448275862065, 0.2328042328042328, 0.18823529411764706]}, {"name": "Irex Technologies Digital Reader 1000", "score": 18, "image": "/images/WEBP/ereader/irex-technologies-digital-reader-1000.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Display", "Performance", "Connectivity", "Battery", "Features"], "propScore": [0.3736255997589162, 0.5142947554987358, 0.40259740259740256, 0, 0.3608465608465608, 0.01411764705882353]}, {"name": "Kobo Clara HD", "score": 41, "image": "/images/WEBP/ereader/kobo-clara-hd.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Display", "Performance", "Connectivity", "Battery", "Features"], "propScore": [0.6416482115282655, 0.8230965456966312, 0.04487310210450706, 0.48103448275862065, 0.5432098765432098, 0.18588235294117644]}, {"name": "Kobo Aura HD", "score": 37, "image": "/images/WEBP/ereader/kobo-aura-hd.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Display", "Performance", "Connectivity", "Battery", "Features"], "propScore": [0.45454545300328353, 0.8199082553397941, 0.24352909876719397, 0.48103448275862065, 0.4656084656084656, 0.18352941176470589]}, {"name": "Kobo Aura", "score": 37, "image": "/images/WEBP/ereader/kobo-aura.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Display", "Performance", "Connectivity", "Battery", "Features"], "propScore": [0.5979529091681395, 0.6410102635750861, 0.4058818312786567, 0.48103448275862065, 0.4656084656084656, 0.18823529411764706]}, {"name": "Kobo Forma", "score": 40, "image": "/images/WEBP/ereader/kobo-forma.front.medium2x.1615483933461.webp", "propGroups": ["Design", "Display", "Performance", "Connectivity", "Battery", "Features"], "propScore": [0.7380329611666692, 0.8870795852976165, 0.06374946383801164, 0.24051724137931033, 0.40796170319979835, 0.10823529411764707]}, {"name": "Kobo Mini", "score": 26, "image": "/images/WEBP/ereader/kobo-mini.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Display", "Performance", "Connectivity", "Battery", "Features"], "propScore": [0.5958042234555906, 0.42522040880131917, 0.4040721183578326, 0.48103448275862065, 0.2328042328042328, 0.09882352941176471]}, {"name": "Kobo Libra H2O", "score": 33, "image": "/images/WEBP/ereader/kobo-libra-h2o.front.medium2x.1601083345550.webp", "propGroups": ["Design", "Display", "Performance", "Connectivity", "Battery", "Features"], "propScore": [0.9191435306765994, 0.7933932373501463, 0.0461208213274329, 0.24051724137931033, 0.20841521793902745, 0.16]}, {"name": "Kobo Glo", "score": 33, "image": "/images/WEBP/ereader/kobo-glo.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Display", "Performance", "Connectivity", "Battery", "Features"], "propScore": [0.5395098619918292, 0.6128553981079541, 0.4043088011341979, 0.48103448275862065, 0.2328042328042328, 0.09882352941176471]}, {"name": "Kobo Nia", "score": 31, "image": "/images/WEBP/ereader/kobo-nia.front.medium2x.1615481780006.webp", "propGroups": ["Design", "Display", "Performance", "Connectivity", "Battery", "Features"], "propScore": [0.6359607387547014, 0.5397687657477954, 0.019502811238348426, 0.24051724137931033, 0.3990929705215419, 0.10823529411764707]}, {"name": "Onyx BOOX i62ML Angel Glow", "score": 35, "image": "/images/WEBP/ereader/onyx-boox-i62ml-angel-glow.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Display", "Performance", "Connectivity", "Battery", "Features"], "propScore": [0.4854643277222848, 0.6111032941911918, 0.4041892589005051, 0.48103448275862065, 0.22615268329554045, 0.22588235294117648]}, {"name": "Kobo Touch", "score": 24, "image": "/images/WEBP/ereader/kobo-touch.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Display", "Performance", "Connectivity", "Battery", "Features"], "propScore": [0.4497680254921555, 0.4238409777490371, 0.606108177536749, 0.48103448275862065, 0.2328042328042328, 0.18588235294117644]}, {"name": "Onyx Boox i62 Touch", "score": 30, "image": "/images/WEBP/ereader/onyx-boox-i62-touch.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Display", "Performance", "Connectivity", "Battery", "Features"], "propScore": [0.4854643277222848, 0.4275127122068242, 0.4041892589005051, 0.48103448275862065, 0.22615268329554045, 0.22588235294117648]}, {"name": "Kogan eBook Reader", "score": 25, "image": "/images/WEBP/ereader/kogan-ebook-reader.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Display", "Performance", "Connectivity", "Battery", "Features"], "propScore": [0.5222949208403225, 0.4238409777490371, 0.606108177536749, 0, 0.2328042328042328, 0.12705882352941178]}, {"name": "PocketBook 360\u00b0 Plus New", "score": 31, "image": "/images/WEBP/ereader/pocketbook-360-plus-new.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Display", "Performance", "Connectivity", "Battery", "Features"], "propScore": [0.6029117926794862, 0.45476746317759315, 0.30315606379436166, 0.5497536945812808, 0.19954648526077096, 0.2752941176470588]}, {"name": "PocketBook 611", "score": 29, "image": "/images/WEBP/ereader/pocketbook-611.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Display", "Performance", "Connectivity", "Battery", "Features"], "propScore": [0.5277709066687148, 0.4572507918668902, 0.30315606379436166, 0.48103448275862065, 0.19954648526077096, 0.11529411764705881]}, {"name": "Pandigital 9\" Color Multimedia R91L256", "score": 21, "image": "/images/WEBP/ereader/pandigital-9-color-multimedia-r91l256.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Display", "Performance", "Connectivity", "Battery", "Features", "Miscellaneous"], "propScore": [0.5030427881835874, 0.35531536789152035, 0.606108177536749, 0.721551724137931, 0.2328042328042328, 0.2564705882352941]}, {"name": "Onyx Boox M92", "score": 30, "image": "/images/WEBP/ereader/onyx-boox-m92.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Display", "Performance", "Connectivity", "Battery", "Features"], "propScore": [0.22307763165215114, 0.5731253177047163, 0.4183302939353707, 0.24051724137931033, 0.22615268329554045, 0.37882352941176467]}, {"name": "Pocketbook InkPad Color", "score": 36, "image": "/images/WEBP/ereader/pocketbook-inkpad-color.front.medium2x.1613565380799.webp", "propGroups": ["Design", "Display", "Performance", "Connectivity", "Battery", "Features", "Miscellaneous"], "propScore": [0.5272177632773863, 0.8656060175209305, 0.45429250580437774, 0.48103448275862065, 0.2837994457042076, 0]}, {"name": "PocketBook InkPad 3 Pro", "score": 40, "image": "/images/WEBP/ereader/pocketbook-inkpad-3-pro.front.medium2x.1609873672112.webp", "propGroups": ["Design", "Display", "Performance", "Connectivity", "Battery", "Features"], "propScore": [0.5652480400893737, 0.6861657365184014, 0.2668002997936532, 0.721551724137931, 0.4390022675736962, 0.35764705882352943]}, {"name": "PocketBook Basic Lux 2", "score": 31, "image": "/images/WEBP/ereader/pocketbook-basic-lux-2.front.medium2x.1609878625240.webp", "propGroups": ["Design", "Display", "Performance", "Connectivity", "Battery", "Features"], "propScore": [0.6484531741793573, 0.27253768599612704, 0.4162775241287638, 0.24051724137931033, 0.4123960695389266, 0.19294117647058823]}, {"name": "PocketBook Basic New", "score": 29, "image": "/images/WEBP/ereader/pocketbook-basic-new.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Display", "Performance", "Connectivity", "Battery", "Features"], "propScore": [0.6578417010349465, 0.42662826704435014, 0.30315606379436166, 0, 0.19954648526077096, 0.35764705882352943]}, {"name": "PocketBook Pro 912", "score": 34, "image": "/images/WEBP/ereader/pocketbook-pro-912.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Display", "Performance", "Connectivity", "Battery", "Features"], "propScore": [0.29844728368430057, 0.7216223248606867, 0.312567947843184, 0.6413793103448275, 0.22304862685815066, 0.6729411764705883]}, {"name": "PocketBook InkPad X", "score": 39, "image": "/images/WEBP/ereader/pocketbook-inkpad-x.front.medium2x.1609871977065.webp", "propGroups": ["Design", "Display", "Performance", "Connectivity", "Battery", "Features"], "propScore": [0.43884752756962464, 0.807864232956635, 0.27309242037148806, 0.721551724137931, 0.4434366339128244, 0.2776470588235294]}, {"name": "PocketBook PocketBook Pro 903", "score": 29, "image": "/images/WEBP/ereader/pocketbook-pocketbook-pro-903.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Display", "Performance", "Connectivity", "Battery", "Features"], "propScore": [0.13931688791867192, 0.5714669830250776, 0.606108177536749, 0.6413793103448275, 0.4225951121189216, 0.4352941176470589]}, {"name": "PocketBook PocketBook Pro 902", "score": 29, "image": "/images/WEBP/ereader/pocketbook-pocketbook-pro-902.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Display", "Performance", "Connectivity", "Battery", "Features"], "propScore": [0.17037156124076866, 0.4586117802933892, 0.606108177536749, 0.6413793103448275, 0.4225951121189216, 0.4352941176470589]}, {"name": "PocketBook Touch HD 3", "score": 43, "image": "/images/WEBP/ereader/pocketbook-touch-hd-3.front.medium2x.1609876105965.webp", "propGroups": ["Design", "Display", "Performance", "Connectivity", "Battery", "Features", "Miscellaneous"], "propScore": [0.930201871777726, 0.5340710213335137, 0.24080614931603167, 0.721551724137931, 0.42126480221718315, 0.27294117647058824]}, {"name": "PocketBook Touch", "score": 37, "image": "/images/WEBP/ereader/pocketbook-touch.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Display", "Performance", "Connectivity", "Battery", "Features"], "propScore": [0.6611183767916806, 0.5795105948262192, 0.30315606379436166, 0.721551724137931, 0.20398085159989918, 0.5976470588235294]}, {"name": "PocketBook Touch Lux 4 Limited Edition", "score": 32, "image": "/images/WEBP/ereader/pocketbook-touch-lux-4-limited-edition.front.medium2x.1609868817312.webp", "propGroups": ["Design", "Display", "Performance", "Connectivity", "Battery", "Features"], "propScore": [0.6672257822584201, 0.38539288872781524, 0.43895879032581553, 0.48103448275862065, 0.42126480221718315, 0.19764705882352943]}, {"name": "PocketBook Touch Lux", "score": 41, "image": "/images/WEBP/ereader/pocketbook-touch-lux.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Display", "Performance", "Connectivity", "Battery", "Features"], "propScore": [0.6701809022557685, 0.723422351971486, 0.3043358364027057, 0.48103448275862065, 0.19954648526077096, 0.5223529411764706]}, {"name": "Sony PRS 600", "score": 28, "image": "/images/WEBP/ereader/sony-prs-600.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Display", "Performance", "Connectivity", "Battery", "Features"], "propScore": [0.4428794656463657, 0.3423344424428178, 1, 0, 0.2328042328042328, 0.18588235294117644]}, {"name": "Sony PRS 650", "score": 22, "image": "/images/WEBP/ereader/sony-prs-650.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Display", "Performance", "Connectivity", "Battery", "Features"], "propScore": [0.536580448743782, 0.32899764522513614, 0.4040721183578326, 0, 0.2328042328042328, 0.18588235294117644]}, {"name": "Sony PRS 350", "score": 24, "image": "/images/WEBP/ereader/sony-prs-350.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Display", "Performance", "Connectivity", "Battery", "Features"], "propScore": [0.5936843939135354, 0.40077309039822034, 0.0022120736406450693, 0, 0.2328042328042328, 0.16842105263157894]}, {"name": "Sony PRS T1", "score": 32, "image": "/images/WEBP/ereader/sony-prs-t1.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Display", "Performance", "Connectivity", "Battery", "Features"], "propScore": [0.5529552795405918, 0.4361617543333165, 0.606108177536749, 0.48103448275862065, 0.4656084656084656, 0.25411764705882356]}, {"name": "Sony PRS T2", "score": 26, "image": "/images/WEBP/ereader/sony-prs-t2.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Display", "Performance", "Connectivity", "Battery", "Features"], "propScore": [0.49289538567945246, 0.4238409777490371, 0.8066695209552351, 0.24051724137931033, 0.380952380952381, 0.16941176470588235]}, {"name": "Tolino Vision 2", "score": 29, "image": "/images/WEBP/ereader/tolino-vision-2.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Display", "Performance", "Connectivity", "Battery", "Features", "Miscellaneous"], "propScore": [0.583679337860279, 0.5946609221785146, 0.22228056359467874, 0.48103448275862065, 0.2217183169564122, 0]}, {"name": "Tolino Shine", "score": 25, "image": "/images/WEBP/ereader/tolino-shine.front.medium2x.1576684641045.webp", "propGroups": ["Design", "Display", "Performance", "Connectivity", "Battery", "Features"], "propScore": [0.5373507688497723, 0.4724011192191856, 0.4183302939353707, 0.48103448275862065, 0.272108843537415, 0]}, {"name": "TCL Nxtpaper", "score": 51, "image": "/images/WEBP/tablet/tcl-nxtpaper.front.medium2x.1610455068868.webp", "propGroups": ["Design", "Display", "Performance", "Cameras", "Audio", "Battery", "Features", "Miscellaneous"], "propScore": [0.6165575931687746, 0.5187110965588794, 0.6238070749988773, 0.24440079462100978, 0.7285714285714286, 0.6425100581601384, 0.5654432286923359]}]}
data/faculty.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"data": [{"name": "Harvard Kennedy School", "score": 100, "image": "/images/WEBP/faculty/harvard-kennedy-school.warm_day.medium2x.1576684641045.webp", "propGroups": ["General info", "Admissions", "Facilities", "Honors", "Tuition & Aid", "Miscellaneous"], "propScore": [0.8333484816301594, 0.7000895310988137, 1, 1, 0.8125579442349072]}, {"name": "Barnard College", "score": 78, "image": "/images/WEBP/faculty/barnard-college.warm_day.medium2x.1576684641045.webp", "propGroups": ["General info", "Admissions", "Facilities", "Honors", "Tuition & Aid", "Miscellaneous"], "propScore": [0.8137225551700121, 0.8071092412873535, 0.4301137462444214, 0.5062399762362896, 0.591821826694476]}, {"name": "Harvard Graduate School of Education", "score": 91, "image": "/images/WEBP/faculty/harvard-graduate-school-of-education.warm_day.medium2x.1576684641045.webp", "propGroups": ["General info", "Admissions", "Facilities", "Honors", "Tuition & Aid", "Miscellaneous"], "propScore": [0.7074786801880071, 0.617905668880246, 1, 0.9976861271725926, 0.608294083483384]}, {"name": "Columbia Journalism School", "score": 66, "image": "/images/WEBP/faculty/columbia-journalism-school.warm_day.medium2x.1576684641045.webp", "propGroups": ["General info", "Admissions", "Facilities", "Honors", "Tuition & Aid", "Miscellaneous"], "propScore": [0.6408696333140919, 0.5935806200219634, 0.4301137462444214, 0.5170290282997901, 0.37528843470197076]}, {"name": "MIT School of Science", "score": 75, "image": "/images/WEBP/faculty/mit-school-of-science.warm_day.medium2x.1576684641045.webp", "propGroups": ["General info", "Admissions", "Facilities", "Honors", "Tuition & Aid", "Miscellaneous"], "propScore": [0.6222672239004857, 0.7665749783313403, 0.3844260083761777, 0.660913657024815, 0.6011057222286944]}, {"name": "Mandel School", "score": 37, "image": "/images/WEBP/faculty/mandel-school.warm_day.medium2x.1576684641045.webp", "propGroups": ["General info", "Admissions", "Facilities", "Honors", "Tuition & Aid", "Miscellaneous"], "propScore": [0.35116039844615893, 0.41771388708124846, 0.39603944013535186, 0.047044993070134024, 0.5600296100351405]}, {"name": "Johns Hopkins School of Education", "score": 58, "image": "/images/WEBP/faculty/johns-hopkins-school-of-education.warm_day.medium2x.1576684641045.webp", "propGroups": ["General info", "Admissions", "Facilities", "Honors", "Tuition & Aid", "Miscellaneous"], "propScore": [0.7571435772608752, 0.4410927352385817, 0.5130004938494732, 0.49036424613872664, 0.5607102632876655]}, {"name": "MIT Whitaker College", "score": 66, "image": "/images/WEBP/faculty/mit-whitaker-college.warm_day.medium2x.1576684641045.webp", "propGroups": ["General info", "Admissions", "Facilities", "Honors", "Tuition & Aid", "Miscellaneous"], "propScore": [0.5675338331733082, 0.6104766287064736, 0.3844260083761777, 0.5936766383044917, 1]}, {"name": "Nicholas School", "score": 71, "image": "/images/WEBP/faculty/nicholas-school.warm_day.medium2x.1576684641045.webp", "propGroups": ["General info", "Admissions", "Facilities", "Honors", "Tuition & Aid", "Miscellaneous"], "propScore": [0.5124405308464859, 0.6986020513409692, 0.7077012588840648, 0.28342381856511323, 0.7315725912996812]}, {"name": "Paul H. Nitze School", "score": 59, "image": "/images/WEBP/faculty/paul-h-nitze-school.warm_day.medium2x.1576684641045.webp", "propGroups": ["General info", "Admissions", "Facilities", "Honors", "Tuition & Aid", "Miscellaneous"], "propScore": [0.6132531722916851, 0.49580917552415793, 0.5130004938494732, 0.17726668719699284, 0.3631245213682907]}, {"name": "School of Computer Science", "score": 74, "image": "/images/WEBP/faculty/school-of-computer-science.warm_day.medium2x.1576684641045.webp", "propGroups": ["General info", "Admissions", "Facilities", "Honors", "Tuition & Aid", "Miscellaneous"], "propScore": [0.7728081073134162, 0.7968579908808581, 0.32799329423379453, 0.3527515485644597, 0.5450591317198409]}, {"name": "School of Earth Sciences", "score": 88, "image": "/images/WEBP/faculty/school-of-earth-sciences.warm_day.medium2x.1576684641045.webp", "propGroups": ["General info", "Admissions", "Facilities", "Honors", "Tuition & Aid", "Miscellaneous"], "propScore": [0.8695232553061814, 0.6725780257584821, 0.8240754009570224, 0.6923489454395593, 0.8034552518695405]}, {"name": "School of Humanities and Sciences", "score": 100, "image": "/images/WEBP/faculty/school-of-humanities-and-sciences.warm_day.medium2x.1576684641045.webp", "propGroups": ["General info", "Admissions", "Facilities", "Honors", "Tuition & Aid", "Miscellaneous"], "propScore": [1, 1, 0.8240754009570224, 0.6670806960836859, 0.7841963095393975]}, {"name": "Walter Cronkite School", "score": 50, "image": "/images/WEBP/faculty/walter-cronkite-school.warm_day.medium2x.1576684641045.webp", "propGroups": ["General info", "Admissions", "Facilities", "Honors", "Tuition & Aid", "Miscellaneous"], "propScore": [0.7792684579316589, 0.20185877494166687, 0.6878683397192508, 0.0015478518461921715, 0.7640912506661206]}, {"name": "School of International and Public Affairs", "score": 78, "image": "/images/WEBP/faculty/school-of-international-and-public-affairs.warm_day.medium2x.1576684641045.webp", "propGroups": ["General info", "Admissions", "Facilities", "Honors", "Tuition & Aid", "Miscellaneous"], "propScore": [0.7885960023390681, 0.7128873693310657, 0.4301137462444214, 0.6896538613157983, 0.4829920670691053]}]}