fernandobriann commited on
Commit
fddb320
·
verified ·
1 Parent(s): b3cb623

FINAL PUSH

Browse files
.gitattributes CHANGED
@@ -33,3 +33,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
 
 
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
36
+ FTDS-053-RMT-GROUP1-LOGO.png filter=lfs diff=lfs merge=lfs -text
FTDS-053-RMT-GROUP1-LOGO.png ADDED

Git LFS Details

  • SHA256: c447deb18ca44d583b8cb8cda4ee752bc932f936bbf928304a24ebec713f3936
  • Pointer size: 131 Bytes
  • Size of remote file: 809 kB
app.py CHANGED
@@ -1,250 +1,413 @@
 
 
1
  import streamlit as st
2
- import time
 
 
 
 
 
 
 
3
 
4
- # ======================
5
- # CONFIG
6
- # ======================
7
  st.set_page_config(
8
- page_title="Smartphone Intelligence",
 
9
  layout="wide",
10
- initial_sidebar_state="collapsed"
11
  )
12
 
13
- # ======================
14
- # CSS (CLEAN FINAL)
15
- # ======================
 
16
  st.markdown("""
17
  <style>
18
 
19
- /* Hide header */
20
  header {visibility: hidden;}
21
 
22
  /* Background */
23
  [data-testid="stAppViewContainer"] {
24
- background: radial-gradient(circle at top, #0f172a, #020617);
 
 
 
 
25
  color: white;
26
  }
27
 
28
- /* Remove extra top spacing */
29
- section.main > div {
30
- padding-top: 0rem;
31
- }
32
-
33
- /* Container */
34
  .block-container {
35
- max-width: 1100px;
36
  padding-top: 1rem;
37
- padding-bottom: 1rem;
 
 
 
 
 
38
  }
39
 
40
- /* Hero */
41
  .hero-title {
42
  text-align: center;
43
- font-size: 3.2rem;
44
- font-weight: 700;
45
- background: linear-gradient(90deg, #60a5fa, #a78bfa);
46
  -webkit-background-clip: text;
47
  -webkit-text-fill-color: transparent;
 
48
  }
49
 
 
50
  .subtitle {
51
  text-align: center;
52
  color: #94a3b8;
53
- font-size: 1.1rem;
 
54
  }
55
 
56
- /* Card (NO margin, no ghost box) */
57
- .card {
58
- background: rgba(255,255,255,0.03);
59
- backdrop-filter: blur(16px);
60
- padding: 22px;
61
- border-radius: 20px;
 
 
 
 
 
 
62
  border: 1px solid rgba(255,255,255,0.05);
63
- margin: 0;
 
64
  }
65
 
66
- /* Hover */
67
- .card:hover {
68
- transform: translateY(-2px);
69
- transition: 0.3s ease;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
70
  }
71
 
72
  /* Button */
73
- .stButton>button {
74
  width: 100%;
75
- border-radius: 20px;
76
- height: 50px;
77
- font-weight: bold;
78
- background: linear-gradient(to right, #6366f1, #8b5cf6);
79
- color: white;
80
  border: none;
 
 
 
81
  }
82
 
83
- .stButton>button:hover {
84
- transform: scale(1.03);
85
- box-shadow: 0 0 20px #8b5cf6;
86
  }
87
 
88
- /* Score */
89
- .score {
90
- font-size: 58px;
91
- font-weight: bold;
92
- text-align: center;
 
 
 
93
  }
94
 
95
- /* Category */
96
- .category {
97
- text-align: center;
98
- color: #a5b4fc;
99
- font-size: 18px;
100
- }
101
 
102
- /* Section */
103
- .section-title {
104
- font-size: 1.6rem;
105
- margin-bottom: 6px;
106
- }
107
 
108
- /* Spacer ONLY */
109
- .spacer {
110
- height: 28px;
111
- }
112
 
113
- </style>
114
- """, unsafe_allow_html=True)
 
 
115
 
116
- # ======================
117
- # STATE
118
- # ======================
119
- if "page" not in st.session_state:
120
- st.session_state.page = "home"
121
 
122
- def go_predict():
123
- st.session_state.page = "predict"
 
 
 
 
 
 
124
 
125
- def go_home():
126
- st.session_state.page = "home"
 
127
 
128
- # ======================
129
- # HOME
130
- # ======================
131
- if st.session_state.page == "home":
132
 
133
- st.markdown('<div class="hero-title">Smartphone Intelligence</div>', unsafe_allow_html=True)
134
- st.markdown('<div class="subtitle">Understand smartphone value through specifications</div>', unsafe_allow_html=True)
135
 
136
- st.image(
137
- "https://images.unsplash.com/photo-1511707171634-5f897ff02aa9",
138
- width=900
 
 
 
 
 
 
139
  )
140
 
141
- st.markdown('<div class="spacer"></div>', unsafe_allow_html=True)
 
 
 
 
 
142
 
 
143
  # PROBLEM
144
- st.markdown('<div class="section-title">❓ The Problem</div>', unsafe_allow_html=True)
 
 
 
 
 
 
145
  st.write("""
146
- With hundreds of smartphone options available, choosing the right device can be confusing.
147
- Many users rely on trends instead of understanding specifications.
 
 
 
148
  """)
149
- st.markdown('</div>', unsafe_allow_html=True)
150
 
151
- st.markdown('<div class="spacer"></div>', unsafe_allow_html=True)
152
 
 
153
  # SOLUTION
154
- st.markdown('<div class="section-title">💡 Our Solution</div>', unsafe_allow_html=True)
 
 
 
 
 
 
155
  st.write("""
156
- Analyze smartphone specs and classify them into price categories to help smarter decisions.
 
 
 
 
 
 
 
 
157
  """)
158
- st.markdown('</div>', unsafe_allow_html=True)
159
 
160
- st.markdown('<div class="spacer"></div>', unsafe_allow_html=True)
 
 
 
 
161
 
162
- # FEATURES
163
- st.markdown('<div class="section-title">✨ Key Features</div>', unsafe_allow_html=True)
164
 
165
  col1, col2, col3 = st.columns(3)
166
 
167
  with col1:
168
- st.markdown('<div class="card">⚡ Fast Analysis<br><small>Instant evaluation</small></div>', unsafe_allow_html=True)
 
 
 
 
 
 
169
 
170
  with col2:
171
- st.markdown('<div class="card">📊 Data-Based<br><small>Market driven</small></div>', unsafe_allow_html=True)
 
 
 
 
 
 
172
 
173
  with col3:
174
- st.markdown('<div class="card">🎯 Smart Decisions<br><small>Better choices</small></div>', unsafe_allow_html=True)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
175
 
176
- st.markdown('<div class="spacer"></div>', unsafe_allow_html=True)
 
 
 
177
 
178
- st.button("🚀 Start Analysis", on_click=go_predict)
179
 
180
- # ======================
181
- # PREDICT
182
- # ======================
183
- elif st.session_state.page == "predict":
184
 
185
- st.markdown('<div class="hero-title">Analyze Device</div>', unsafe_allow_html=True)
 
 
186
 
187
- st.markdown('<div class="spacer"></div>', unsafe_allow_html=True)
188
 
189
- st.caption("📊 Based on 2024–2025 smartphone trends")
 
 
 
 
 
 
 
 
 
 
190
 
191
  col1, col2 = st.columns(2)
192
 
193
  with col1:
194
- ram = st.selectbox("RAM (GB)", [2, 3, 4, 6, 8, 12, 16])
195
- storage = st.selectbox("Storage (GB)", [32, 64, 128, 256, 512, 1024])
196
- battery = st.selectbox("Battery (mAh)", [3000, 4000, 4500, 5000, 5500, 6000])
 
 
 
 
 
 
 
 
 
 
 
 
197
 
198
  with col2:
199
- camera = st.selectbox("Camera (MP)", [12, 48, 64, 108, 200])
200
- screen = st.selectbox("Screen Size (inch)", [5.5, 6.1, 6.4, 6.5, 6.7, 6.8])
201
 
202
- st.markdown('</div>', unsafe_allow_html=True)
 
 
 
 
 
 
 
 
203
 
204
- st.markdown('<div class="spacer"></div>', unsafe_allow_html=True)
205
 
206
- col1, col2 = st.columns(2)
207
 
208
- with col1:
209
- predict_clicked = st.button("⚡ Analyze")
 
210
 
211
- with col2:
212
- st.button("⬅ Back", on_click=go_home)
 
 
 
 
 
 
 
213
 
214
- if predict_clicked:
215
 
216
- with st.spinner("Analyzing specs..."):
217
- time.sleep(1)
 
 
 
 
218
 
219
- raw_score = (
220
- ram * 3 +
221
- storage / 12 +
222
- battery / 180 +
223
- camera / 3
224
  )
225
 
226
- score = max(0, min(int(raw_score), 100))
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
227
 
228
- if ram <= 3:
229
- category = "Low-end"
230
- emoji = "🔵"
231
- elif score < 70:
232
- category = "Mid-range"
233
- emoji = "🟡"
234
- else:
235
- category = "High-end"
236
- emoji = "🔴"
237
 
238
- st.markdown('<div class="spacer"></div>', unsafe_allow_html=True)
 
 
239
 
240
- st.markdown(f'<div class="score">{score}/100</div>', unsafe_allow_html=True)
241
- st.markdown(f'<div class="category">{emoji} {category}</div>', unsafe_allow_html=True)
 
242
 
243
- progress = st.progress(0)
244
- for i in range(score):
245
- progress.progress(i + 1)
246
- time.sleep(0.003)
247
 
248
- st.markdown('</div>', unsafe_allow_html=True)
 
249
 
250
- st.warning("⚠️ Prototype mode — model coming soon.")
 
1
+ # app.py
2
+
3
  import streamlit as st
4
+ import pandas as pd
5
+
6
+ from prediction import recommend_phones
7
+ from eda import render_eda, get_dataset_info
8
+
9
+ # =========================================================
10
+ # PAGE CONFIG
11
+ # =========================================================
12
 
 
 
 
13
  st.set_page_config(
14
+ page_title="PhoneFinder",
15
+ page_icon="📱",
16
  layout="wide",
17
+ initial_sidebar_state="expanded"
18
  )
19
 
20
+ # =========================================================
21
+ # CSS
22
+ # =========================================================
23
+
24
  st.markdown("""
25
  <style>
26
 
27
+ /* Hide Streamlit header */
28
  header {visibility: hidden;}
29
 
30
  /* Background */
31
  [data-testid="stAppViewContainer"] {
32
+ background:
33
+ radial-gradient(circle at top,
34
+ #111827 0%,
35
+ #020617 45%,
36
+ #000000 100%);
37
  color: white;
38
  }
39
 
40
+ /* Main container */
 
 
 
 
 
41
  .block-container {
42
+ max-width: 1150px;
43
  padding-top: 1rem;
44
+ padding-bottom: 2rem;
45
+ }
46
+
47
+ /* Sidebar */
48
+ [data-testid="stSidebar"] {
49
+ background: #020617;
50
  }
51
 
52
+ /* Hero Title */
53
  .hero-title {
54
  text-align: center;
55
+ font-size: 4rem;
56
+ font-weight: 800;
57
+ background: linear-gradient(90deg, #60a5fa, #8b5cf6);
58
  -webkit-background-clip: text;
59
  -webkit-text-fill-color: transparent;
60
+ margin-bottom: 0.5rem;
61
  }
62
 
63
+ /* Subtitle */
64
  .subtitle {
65
  text-align: center;
66
  color: #94a3b8;
67
+ font-size: 1.15rem;
68
+ margin-bottom: 2rem;
69
  }
70
 
71
+ /* Section Title */
72
+ .section-title {
73
+ font-size: 1.8rem;
74
+ font-weight: 700;
75
+ margin-bottom: 10px;
76
+ }
77
+
78
+ /* Feature Card */
79
+ .feature-card {
80
+ background: rgba(255,255,255,0.04);
81
+ border-radius: 22px;
82
+ padding: 24px;
83
  border: 1px solid rgba(255,255,255,0.05);
84
+ text-align: center;
85
+ backdrop-filter: blur(10px);
86
  }
87
 
88
+ /* Result Card */
89
+ .result-card {
90
+ background: rgba(255,255,255,0.05);
91
+ border-radius: 22px;
92
+ padding: 24px;
93
+ border: 1px solid rgba(255,255,255,0.06);
94
+ margin-bottom: 18px;
95
+ backdrop-filter: blur(12px);
96
+ }
97
+
98
+ /* Tags */
99
+ .tag {
100
+ display: inline-block;
101
+ padding: 6px 12px;
102
+ border-radius: 999px;
103
+ background: rgba(99,102,241,0.18);
104
+ color: #c7d2fe;
105
+ font-size: 0.82rem;
106
+ margin-right: 8px;
107
+ margin-top: 8px;
108
  }
109
 
110
  /* Button */
111
+ .stButton > button {
112
  width: 100%;
113
+ height: 52px;
114
+ border-radius: 18px;
 
 
 
115
  border: none;
116
+ font-weight: 700;
117
+ color: white;
118
+ background: linear-gradient(to right, #6366f1, #8b5cf6);
119
  }
120
 
121
+ .stButton > button:hover {
122
+ transform: scale(1.02);
123
+ box-shadow: 0 0 25px rgba(139,92,246,0.45);
124
  }
125
 
126
+ /* Segment Badge */
127
+ .segment-badge {
128
+ display:inline-block;
129
+ padding:8px 16px;
130
+ border-radius:999px;
131
+ color:white;
132
+ font-weight:600;
133
+ font-size:0.9rem;
134
  }
135
 
136
+ </style>
137
+ """, unsafe_allow_html=True)
 
 
 
 
138
 
139
+ # =========================================================
140
+ # SIDEBAR
141
+ # =========================================================
 
 
142
 
143
+ with st.sidebar:
 
 
 
144
 
145
+ st.image(
146
+ "FTDS-053-RMT-GROUP1-LOGO.png",
147
+ width=180
148
+ )
149
 
150
+ st.markdown("## 📱 Navigation")
 
 
 
 
151
 
152
+ page = st.radio(
153
+ "",
154
+ [
155
+ "🏠 Home",
156
+ "📊 EDA",
157
+ "🔍 Recommendation"
158
+ ]
159
+ )
160
 
161
+ # =========================================================
162
+ # HOME PAGE
163
+ # =========================================================
164
 
165
+ if page == "🏠 Home":
 
 
 
166
 
167
+ col1, col2, col3 = st.columns([1,2,1])
 
168
 
169
+ with col2:
170
+ st.image(
171
+ "FTDS-053-RMT-GROUP1-LOGO.png",
172
+ width=320
173
+ )
174
+
175
+ st.markdown(
176
+ '<div class="hero-title">PhoneFinder</div>',
177
+ unsafe_allow_html=True
178
  )
179
 
180
+ st.markdown(
181
+ '<div class="subtitle">AI-Powered Smartphone Recommendation System</div>',
182
+ unsafe_allow_html=True
183
+ )
184
+
185
+ st.markdown("<br>", unsafe_allow_html=True)
186
 
187
+ # =====================================================
188
  # PROBLEM
189
+ # =====================================================
190
+
191
+ st.markdown(
192
+ '<div class="section-title">❓ The Problem</div>',
193
+ unsafe_allow_html=True
194
+ )
195
+
196
  st.write("""
197
+ With hundreds of smartphone options available across different price ranges,
198
+ users often struggle to find devices that truly match their needs and budget.
199
+
200
+ Many people purchase smartphones based only on trends or brand popularity,
201
+ instead of choosing devices optimized for their actual use case.
202
  """)
 
203
 
204
+ st.markdown("<br>", unsafe_allow_html=True)
205
 
206
+ # =====================================================
207
  # SOLUTION
208
+ # =====================================================
209
+
210
+ st.markdown(
211
+ '<div class="section-title">💡 Our Solution</div>',
212
+ unsafe_allow_html=True
213
+ )
214
+
215
  st.write("""
216
+ PhoneFinder provides smartphone recommendations based on broad user priorities such as:
217
+
218
+ - Balanced
219
+ - Gaming / Performance
220
+ - Camera-Focused
221
+ - Battery-Focused
222
+
223
+ The system combines clustering and similarity-based recommendation techniques
224
+ to recommend smartphones that best match the user's budget and preferences.
225
  """)
 
226
 
227
+ st.markdown("<br>", unsafe_allow_html=True)
228
+
229
+ # =====================================================
230
+ # DATASET INFO
231
+ # =====================================================
232
 
233
+ info = get_dataset_info()
 
234
 
235
  col1, col2, col3 = st.columns(3)
236
 
237
  with col1:
238
+ st.markdown(f"""
239
+ <div class="feature-card">
240
+ 📱<br><br>
241
+ <h2>{info['total_phones']}</h2>
242
+ Smartphones
243
+ </div>
244
+ """, unsafe_allow_html=True)
245
 
246
  with col2:
247
+ st.markdown(f"""
248
+ <div class="feature-card">
249
+ 💰<br><br>
250
+ <h2>${info['avg_price']}</h2>
251
+ Average Price
252
+ </div>
253
+ """, unsafe_allow_html=True)
254
 
255
  with col3:
256
+ st.markdown("""
257
+ <div class="feature-card">
258
+ 🎯<br><br>
259
+ <h2>4</h2>
260
+ Recommendation Types
261
+ </div>
262
+ """, unsafe_allow_html=True)
263
+
264
+ # =========================================================
265
+ # EDA PAGE
266
+ # =========================================================
267
+
268
+ elif page == "📊 EDA":
269
+
270
+ st.markdown(
271
+ '<div class="hero-title">Exploratory Data Analysis</div>',
272
+ unsafe_allow_html=True
273
+ )
274
 
275
+ st.markdown(
276
+ '<div class="subtitle">Understanding smartphone market patterns and specifications</div>',
277
+ unsafe_allow_html=True
278
+ )
279
 
280
+ st.markdown("<br>", unsafe_allow_html=True)
281
 
282
+ render_eda()
 
 
 
283
 
284
+ # =========================================================
285
+ # RECOMMENDATION PAGE
286
+ # =========================================================
287
 
288
+ elif page == "🔍 Recommendation":
289
 
290
+ st.markdown(
291
+ '<div class="hero-title">Find Your Smartphone</div>',
292
+ unsafe_allow_html=True
293
+ )
294
+
295
+ st.markdown(
296
+ '<div class="subtitle">AI-powered smartphone recommendation engine</div>',
297
+ unsafe_allow_html=True
298
+ )
299
+
300
+ st.markdown("<br>", unsafe_allow_html=True)
301
 
302
  col1, col2 = st.columns(2)
303
 
304
  with col1:
305
+
306
+ budget = st.slider(
307
+ "Budget (USD)",
308
+ min_value=50,
309
+ max_value=2000,
310
+ value=500,
311
+ step=50
312
+ )
313
+
314
+ top_n = st.slider(
315
+ "Top N Results",
316
+ min_value=1,
317
+ max_value=10,
318
+ value=5
319
+ )
320
 
321
  with col2:
 
 
322
 
323
+ priority = st.selectbox(
324
+ "Priority",
325
+ [
326
+ "balanced",
327
+ "gaming",
328
+ "camera",
329
+ "battery"
330
+ ]
331
+ )
332
 
333
+ st.markdown("<br>", unsafe_allow_html=True)
334
 
335
+ search = st.button("🔍 Find Phones")
336
 
337
+ # =====================================================
338
+ # RESULTS
339
+ # =====================================================
340
 
341
+ if search:
342
+
343
+ with st.spinner("Finding best smartphone matches..."):
344
+
345
+ results, seg_name = recommend_phones(
346
+ budget_usd=budget,
347
+ priority=priority,
348
+ top_n=top_n
349
+ )
350
 
351
+ st.markdown("<br>", unsafe_allow_html=True)
352
 
353
+ SEG_COLORS = {
354
+ 'Budget': '#534AB7',
355
+ 'Camera-focused': '#993C1D',
356
+ 'Gaming / Performance': '#0F6E56',
357
+ 'Flagship': '#854F0B',
358
+ }
359
 
360
+ color = SEG_COLORS.get(
361
+ seg_name.split(' (')[0],
362
+ '#534AB7'
 
 
363
  )
364
 
365
+ st.markdown(
366
+ f"""
367
+ <div class="segment-badge"
368
+ style="background:{color}">
369
+ Matched Segment: {seg_name}
370
+ </div>
371
+ """,
372
+ unsafe_allow_html=True
373
+ )
374
+
375
+ st.markdown("<br>", unsafe_allow_html=True)
376
+
377
+ for rank, row in results.iterrows():
378
+
379
+ name = f"{row.get('brand','')} {row.get('model','')}".strip()
380
+
381
+ price = (
382
+ f"${row['price']:.0f}"
383
+ if pd.notna(row.get('price'))
384
+ else 'N/A'
385
+ )
386
+
387
+ score = row.get('Match Score (%)', 0)
388
+
389
+ st.markdown(f"""
390
+ <div class="result-card">
391
+
392
+ <h2>#{rank} {name}</h2>
393
+
394
+ <h3>{price}</h3>
395
 
396
+ <p><b>Match Score:</b> {score:.1f}%</p>
 
 
 
 
 
 
 
 
397
 
398
+ <div class="tag">
399
+ {int(row['ram'])} GB RAM
400
+ </div>
401
 
402
+ <div class="tag">
403
+ {int(row['battery_capacity'])} mAh
404
+ </div>
405
 
406
+ <div class="tag">
407
+ {int(row['main_camera_mp'])} MP Camera
408
+ </div>
 
409
 
410
+ </div>
411
+ """, unsafe_allow_html=True)
412
 
413
+ st.progress(int(score))
app_metadata.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"FEATURE_COLS": ["price_norm", "ram_norm", "battery_norm", "battery_efficiency", "camera_norm", "cpu_tier_norm", "price_to_perf"], "CLUSTER_LABELS": {"2": "Budget", "0": "Flagship", "3": "Gaming / Performance", "1": "Camera-focused"}, "price_min": 79.0, "price_max": 1799.0}
df_clean.csv ADDED
@@ -0,0 +1,807 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ,brand,model,mobile weight,ram,front camera,main_camera_mp,chipset,battery_capacity,screen_size,price,launched year,cpu_tier,cluster_kmeans,segment
2
+ 0,Apple,iPhone 16 128GB,174g,6.0,12MP,48.0,A17 Bionic,3600.0,6.1,799.0,2024,5,3,Gaming / Performance
3
+ 1,Apple,iPhone 16 256GB,174g,6.0,12MP,48.0,A17 Bionic,3600.0,6.1,849.0,2024,5,3,Gaming / Performance
4
+ 2,Apple,iPhone 16 512GB,174g,6.0,12MP,48.0,A17 Bionic,3600.0,6.1,899.0,2024,5,3,Gaming / Performance
5
+ 3,Apple,iPhone 16 Plus 128GB,203g,6.0,12MP,48.0,A17 Bionic,4200.0,6.7,899.0,2024,5,3,Gaming / Performance
6
+ 4,Apple,iPhone 16 Plus 256GB,203g,6.0,12MP,48.0,A17 Bionic,4200.0,6.7,949.0,2024,5,3,Gaming / Performance
7
+ 5,Apple,iPhone 16 Plus 512GB,203g,6.0,12MP,48.0,A17 Bionic,4200.0,6.7,999.0,2024,5,3,Gaming / Performance
8
+ 6,Apple,iPhone 16 Pro 128GB,206g,6.0,12MP / 4K,50.0,A17 Pro,4400.0,6.1,999.0,2024,5,0,Flagship
9
+ 7,Apple,iPhone 16 Pro 256GB,206g,8.0,12MP / 4K,50.0,A17 Pro,4400.0,6.1,1049.0,2024,5,0,Flagship
10
+ 8,Apple,iPhone 16 Pro 512GB,206g,8.0,12MP / 4K,50.0,A17 Pro,4400.0,6.1,1099.0,2024,5,0,Flagship
11
+ 9,Apple,iPhone 16 Pro Max 128GB,221g,6.0,12MP / 4K,48.0,A17 Pro,4500.0,6.7,1099.0,2024,5,3,Gaming / Performance
12
+ 10,Apple,iPhone 16 Pro Max 256GB,221g,8.0,12MP / 4K,48.0,A17 Pro,4500.0,6.7,1199.0,2024,5,0,Flagship
13
+ 11,Apple,iPhone 16 Pro Max 512GB,221g,8.0,12MP / 4K,48.0,A17 Pro,4500.0,6.7,1299.0,2024,5,0,Flagship
14
+ 12,Apple,iPhone 15 128GB,171g,6.0,12MP,48.0,A16 Bionic,3200.0,6.1,799.0,2023,5,3,Gaming / Performance
15
+ 13,Apple,iPhone 15 256GB,171g,6.0,12MP,48.0,A16 Bionic,3200.0,6.1,849.0,2023,5,3,Gaming / Performance
16
+ 14,Apple,iPhone 15 512GB,171g,6.0,12MP,48.0,A16 Bionic,3200.0,6.1,949.0,2023,5,3,Gaming / Performance
17
+ 15,Apple,iPhone 15 Plus 128GB,203g,6.0,12MP,48.0,A16 Bionic,4300.0,6.7,899.0,2023,5,3,Gaming / Performance
18
+ 16,Apple,iPhone 15 Plus 256GB,203g,6.0,12MP,48.0,A16 Bionic,4300.0,6.7,999.0,2023,5,3,Gaming / Performance
19
+ 17,Apple,iPhone 15 Plus 512GB,203g,6.0,12MP,48.0,A16 Bionic,4300.0,6.7,1049.0,2023,5,3,Gaming / Performance
20
+ 18,Apple,iPhone 15 Pro 128GB,206g,6.0,12MP / 4K,48.0,A16 Bionic,4400.0,6.1,1099.0,2023,5,0,Flagship
21
+ 19,Apple,iPhone 15 Pro 256GB,206g,8.0,12MP / 4K,48.0,A16 Bionic,4400.0,6.1,1199.0,2023,5,0,Flagship
22
+ 20,Apple,iPhone 15 Pro 512GB,206g,8.0,12MP / 4K,48.0,A16 Bionic,4400.0,6.1,1299.0,2023,5,0,Flagship
23
+ 21,Apple,iPhone 15 Pro Max 128GB,221g,6.0,12MP / 4K,48.0,A16 Bionic,4500.0,6.7,1199.0,2023,5,3,Gaming / Performance
24
+ 22,Apple,iPhone 15 Pro Max 256GB,221g,8.0,12MP / 4K,48.0,A16 Bionic,4500.0,6.7,1299.0,2023,5,0,Flagship
25
+ 23,Apple,iPhone 15 Pro Max 512GB,221g,8.0,12MP / 4K,48.0,A16 Bionic,4500.0,6.7,1399.0,2023,5,0,Flagship
26
+ 24,Apple,iPhone 14 128GB,172g,6.0,12MP,12.0,A15 Bionic,3200.0,6.1,799.0,2022,5,3,Gaming / Performance
27
+ 25,Apple,iPhone 14 256GB,172g,6.0,12MP,12.0,A15 Bionic,3200.0,6.1,849.0,2022,5,3,Gaming / Performance
28
+ 26,Apple,iPhone 14 512GB,172g,6.0,12MP,12.0,A15 Bionic,3200.0,6.1,949.0,2022,5,3,Gaming / Performance
29
+ 27,Apple,iPhone 14 Plus 128GB,203g,6.0,12MP,12.0,A15 Bionic,4325.0,6.7,899.0,2022,5,3,Gaming / Performance
30
+ 28,Apple,iPhone 14 Plus 256GB,203g,6.0,12MP,12.0,A15 Bionic,4325.0,6.7,999.0,2022,5,3,Gaming / Performance
31
+ 29,Apple,iPhone 14 Plus 512GB,203g,6.0,12MP,12.0,A15 Bionic,4325.0,6.7,1049.0,2022,5,3,Gaming / Performance
32
+ 30,Apple,iPhone 14 Pro 128GB,206g,6.0,12MP / 4K,48.0,A16 Bionic,4200.0,6.1,1099.0,2022,5,3,Gaming / Performance
33
+ 31,Apple,iPhone 14 Pro 256GB,206g,8.0,12MP / 4K,48.0,A16 Bionic,4200.0,6.1,1199.0,2022,5,0,Flagship
34
+ 32,Apple,iPhone 14 Pro 512GB,206g,8.0,12MP / 4K,48.0,A16 Bionic,4200.0,6.1,1299.0,2022,5,0,Flagship
35
+ 33,Apple,iPhone 14 Pro Max 128GB,221g,6.0,12MP / 4K,48.0,A16 Bionic,4500.0,6.7,1199.0,2022,5,3,Gaming / Performance
36
+ 34,Apple,iPhone 14 Pro Max 256GB,221g,8.0,12MP / 4K,48.0,A16 Bionic,4500.0,6.7,1299.0,2022,5,0,Flagship
37
+ 35,Apple,iPhone 14 Pro Max 512GB,221g,8.0,12MP / 4K,48.0,A16 Bionic,4500.0,6.7,1399.0,2022,5,0,Flagship
38
+ 36,Apple,iPhone 13 mini 128GB,140g,4.0,12MP,12.0,A15 Bionic,2438.0,5.4,699.0,2021,5,3,Gaming / Performance
39
+ 37,Apple,iPhone 13 mini 256GB,140g,4.0,12MP,12.0,A15 Bionic,2438.0,5.4,799.0,2021,5,3,Gaming / Performance
40
+ 38,Apple,iPhone 13 mini 512GB,140g,4.0,12MP,12.0,A15 Bionic,2438.0,5.4,899.0,2021,5,3,Gaming / Performance
41
+ 39,Apple,iPhone 13 128GB,174g,4.0,12MP,12.0,A15 Bionic,3240.0,6.1,799.0,2021,5,3,Gaming / Performance
42
+ 40,Apple,iPhone 13 256GB,174g,4.0,12MP,12.0,A15 Bionic,3240.0,6.1,899.0,2021,5,3,Gaming / Performance
43
+ 41,Apple,iPhone 13 512GB,174g,4.0,12MP,12.0,A15 Bionic,3240.0,6.1,999.0,2021,5,3,Gaming / Performance
44
+ 42,Apple,iPhone 13 Pro 128GB,204g,6.0,12MP / 4K,12.0,A15 Bionic,3095.0,6.1,999.0,2021,5,3,Gaming / Performance
45
+ 43,Apple,iPhone 13 Pro 256GB,204g,6.0,12MP / 4K,12.0,A15 Bionic,3095.0,6.1,1099.0,2021,5,3,Gaming / Performance
46
+ 44,Apple,iPhone 13 Pro 512GB,204g,6.0,12MP / 4K,12.0,A15 Bionic,3095.0,6.1,1199.0,2021,5,3,Gaming / Performance
47
+ 45,Apple,iPhone 13 Pro Max 128GB,238g,6.0,12MP / 4K,12.0,A15 Bionic,4352.0,6.7,1099.0,2021,5,3,Gaming / Performance
48
+ 46,Apple,iPhone 13 Pro Max 256GB,238g,6.0,12MP / 4K,12.0,A15 Bionic,4352.0,6.7,1199.0,2021,5,3,Gaming / Performance
49
+ 47,Apple,iPhone 13 Pro Max 512GB,238g,6.0,12MP / 4K,12.0,A15 Bionic,4352.0,6.7,1399.0,2021,5,3,Gaming / Performance
50
+ 48,Apple,iPhone 12 mini 64GB,135g,4.0,12MP,12.0,A14 Bionic,2227.0,5.4,699.0,2020,5,3,Gaming / Performance
51
+ 49,Apple,iPhone 12 mini 128GB,135g,4.0,12MP,12.0,A14 Bionic,2227.0,5.4,799.0,2020,5,3,Gaming / Performance
52
+ 50,Apple,iPhone 12 mini 256GB,135g,4.0,12MP,12.0,A14 Bionic,2227.0,5.4,899.0,2020,5,3,Gaming / Performance
53
+ 51,Apple,iPhone 12 64GB,164g,4.0,12MP,12.0,A14 Bionic,2815.0,6.1,799.0,2020,5,3,Gaming / Performance
54
+ 52,Apple,iPhone 12 128GB,164g,4.0,12MP,12.0,A14 Bionic,2815.0,6.1,899.0,2020,5,3,Gaming / Performance
55
+ 53,Apple,iPhone 12 256GB,164g,4.0,12MP,12.0,A14 Bionic,2815.0,6.1,999.0,2020,5,3,Gaming / Performance
56
+ 54,Apple,iPhone 12 Pro 128GB,189g,6.0,12MP / 4K,12.0,A14 Bionic,2815.0,6.1,999.0,2020,5,3,Gaming / Performance
57
+ 55,Apple,iPhone 12 Pro 256GB,189g,6.0,12MP / 4K,12.0,A14 Bionic,2815.0,6.1,1099.0,2020,5,3,Gaming / Performance
58
+ 56,Apple,iPhone 12 Pro 512GB,189g,6.0,12MP / 4K,12.0,A14 Bionic,2815.0,6.1,1199.0,2020,5,3,Gaming / Performance
59
+ 57,Apple,iPhone 12 Pro Max 128GB,228g,6.0,12MP / 4K,12.0,A14 Bionic,3687.0,6.7,1099.0,2020,5,3,Gaming / Performance
60
+ 58,Apple,iPhone 12 Pro Max 256GB,228g,6.0,12MP / 4K,12.0,A14 Bionic,3687.0,6.7,1199.0,2020,5,3,Gaming / Performance
61
+ 59,Apple,iPhone 12 Pro Max 512GB,228g,6.0,12MP / 4K,12.0,A14 Bionic,3687.0,6.7,1399.0,2020,5,3,Gaming / Performance
62
+ 60,Apple,iPhone 11 64GB,194g,4.0,12MP,12.0,A13 Bionic,3110.0,6.1,699.0,2019,4,3,Gaming / Performance
63
+ 61,Apple,iPhone 11 128GB,194g,4.0,12MP,12.0,A13 Bionic,3110.0,6.1,799.0,2019,4,3,Gaming / Performance
64
+ 62,Apple,iPhone 11 256GB,194g,4.0,12MP,12.0,A13 Bionic,3110.0,6.1,899.0,2019,4,3,Gaming / Performance
65
+ 63,Apple,iPhone 11 Pro 64GB,188g,4.0,12MP / 4K,12.0,A13 Bionic,3046.0,5.8,999.0,2019,4,3,Gaming / Performance
66
+ 64,Apple,iPhone 11 Pro 256GB,188g,4.0,12MP / 4K,12.0,A13 Bionic,3046.0,5.8,1099.0,2019,4,3,Gaming / Performance
67
+ 65,Apple,iPhone 11 Pro 512GB,188g,4.0,12MP / 4K,12.0,A13 Bionic,3046.0,5.8,1199.0,2019,4,3,Gaming / Performance
68
+ 66,Apple,iPhone 11 Pro Max 64GB,226g,4.0,12MP / 4K,12.0,A13 Bionic,3969.0,6.5,1099.0,2019,4,3,Gaming / Performance
69
+ 67,Apple,iPhone 11 Pro Max 256GB,226g,4.0,12MP / 4K,12.0,A13 Bionic,3969.0,6.5,1199.0,2019,4,3,Gaming / Performance
70
+ 68,Apple,iPhone 11 Pro Max 512GB,226g,4.0,12MP / 4K,12.0,A13 Bionic,3969.0,6.5,1399.0,2019,4,3,Gaming / Performance
71
+ 69,Apple,iPhone X 64GB,174g,3.0,7MP,12.0,A11 Bionic,2716.0,5.8,999.0,2017,2,3,Gaming / Performance
72
+ 70,Apple,iPhone X 256GB,174g,3.0,7MP,12.0,A11 Bionic,2716.0,5.8,1099.0,2017,2,3,Gaming / Performance
73
+ 71,Apple,iPhone XS 64GB,177g,4.0,7MP,12.0,A12 Bionic,2658.0,5.8,999.0,2018,4,3,Gaming / Performance
74
+ 72,Apple,iPhone XS 256GB,177g,4.0,7MP,12.0,A12 Bionic,2658.0,5.8,1099.0,2018,4,3,Gaming / Performance
75
+ 73,Apple,iPhone XS 512GB,177g,4.0,7MP,12.0,A12 Bionic,2658.0,5.8,1299.0,2018,4,3,Gaming / Performance
76
+ 74,Apple,iPhone XS Max 64GB,208g,4.0,7MP,12.0,A12 Bionic,3174.0,6.5,1099.0,2018,4,3,Gaming / Performance
77
+ 75,Apple,iPhone XS Max 256GB,208g,4.0,7MP,12.0,A12 Bionic,3174.0,6.5,1249.0,2018,4,3,Gaming / Performance
78
+ 76,Apple,iPhone XS Max 512GB,208g,4.0,7MP,12.0,A12 Bionic,3174.0,6.5,1399.0,2018,4,3,Gaming / Performance
79
+ 77,Apple,iPhone XR 64GB,194g,3.0,7MP,12.0,A12 Bionic,2942.0,6.1,749.0,2018,4,3,Gaming / Performance
80
+ 78,Apple,iPhone XR 128GB,194g,3.0,7MP,12.0,A12 Bionic,2942.0,6.1,799.0,2018,4,3,Gaming / Performance
81
+ 79,Apple,iPhone XR 256GB,194g,3.0,7MP,12.0,A12 Bionic,2942.0,6.1,899.0,2018,4,3,Gaming / Performance
82
+ 80,Samsung,Galaxy S24 Ultra 128GB,234g,12.0,12MP,200.0,Exynos 2400,5000.0,6.8,1199.0,2024,5,0,Flagship
83
+ 81,Samsung,Galaxy S24 Ultra 256GB,234g,12.0,12MP,200.0,Exynos 2400,5000.0,6.8,1299.0,2024,5,0,Flagship
84
+ 82,Samsung,Galaxy S24+ 128GB,196g,8.0,12MP,50.0,Exynos 2400,4800.0,6.6,899.0,2024,5,0,Flagship
85
+ 83,Samsung,Galaxy S24+ 256GB,196g,8.0,12MP,50.0,Exynos 2400,4800.0,6.6,999.0,2024,5,0,Flagship
86
+ 84,Samsung,Galaxy S24 128GB,168g,8.0,12MP,50.0,Exynos 2400,4000.0,6.1,799.0,2024,5,3,Gaming / Performance
87
+ 85,Samsung,Galaxy S24 256GB,168g,8.0,12MP,50.0,Exynos 2400,4000.0,6.1,899.0,2024,5,3,Gaming / Performance
88
+ 86,Samsung,Galaxy S23 Ultra 128GB,228g,12.0,12MP,200.0,Snapdragon 8 Gen 2,5000.0,6.8,1199.0,2023,5,0,Flagship
89
+ 87,Samsung,Galaxy S23 Ultra 256GB,228g,12.0,12MP,200.0,Snapdragon 8 Gen 2,5000.0,6.8,1299.0,2023,5,0,Flagship
90
+ 88,Samsung,Galaxy S23+ 128GB,196g,8.0,12MP,50.0,Snapdragon 8 Gen 2,4700.0,6.6,899.0,2023,5,0,Flagship
91
+ 89,Samsung,Galaxy S23+ 256GB,196g,8.0,12MP,50.0,Snapdragon 8 Gen 2,4700.0,6.6,999.0,2023,5,0,Flagship
92
+ 90,Samsung,Galaxy S23 128GB,168g,8.0,12MP,50.0,Snapdragon 8 Gen 2,3900.0,6.1,799.0,2023,5,3,Gaming / Performance
93
+ 91,Samsung,Galaxy S23 256GB,168g,8.0,12MP,50.0,Snapdragon 8 Gen 2,3900.0,6.1,899.0,2023,5,3,Gaming / Performance
94
+ 92,Samsung,Galaxy S22 Ultra 128GB,228g,12.0,10MP,108.0,Exynos 2200,5000.0,6.8,1099.0,2022,4,0,Flagship
95
+ 93,Samsung,Galaxy S22 Ultra 256GB,228g,12.0,10MP,108.0,Exynos 2200,5000.0,6.8,1199.0,2022,4,0,Flagship
96
+ 94,Samsung,Galaxy S22+ 128GB,195g,8.0,10MP,50.0,Exynos 2200,4500.0,6.6,799.0,2022,4,0,Flagship
97
+ 95,Samsung,Galaxy S22+ 256GB,195g,8.0,10MP,50.0,Exynos 2200,4500.0,6.6,899.0,2022,4,0,Flagship
98
+ 96,Samsung,Galaxy S22 128GB,167g,8.0,10MP,50.0,Exynos 2200,3800.0,6.1,699.0,2022,4,3,Gaming / Performance
99
+ 97,Samsung,Galaxy S22 256GB,167g,8.0,10MP,50.0,Exynos 2200,3800.0,6.1,799.0,2022,4,3,Gaming / Performance
100
+ 98,Samsung,Galaxy Z Flip 5 256GB,187g,8.0,12MP,12.0,Snapdragon 8 Gen 2,3700.0,6.7,999.0,2023,5,3,Gaming / Performance
101
+ 99,Samsung,Galaxy Z Flip 5 512GB,187g,8.0,12MP,12.0,Snapdragon 8 Gen 2,3700.0,6.7,1099.0,2023,5,3,Gaming / Performance
102
+ 100,Samsung,Galaxy Z Flip 4 256GB,187g,8.0,10MP,12.0,Snapdragon 8 Gen 1,3700.0,6.7,999.0,2022,5,3,Gaming / Performance
103
+ 101,Samsung,Galaxy Z Flip 4 512GB,187g,8.0,10MP,12.0,Snapdragon 8 Gen 1,3700.0,6.7,1099.0,2022,5,3,Gaming / Performance
104
+ 102,Samsung,Galaxy A54 128GB,189g,6.0,32MP,50.0,Exynos 1380,5000.0,6.4,399.0,2023,4,1,Camera-focused
105
+ 103,Samsung,Galaxy A54 256GB,189g,6.0,32MP,50.0,Exynos 1380,5000.0,6.4,449.0,2023,4,1,Camera-focused
106
+ 104,Samsung,Galaxy A34 128GB,199g,6.0,13MP,48.0,MediaTek Dimensity 1080,5000.0,6.6,349.0,2023,3,1,Camera-focused
107
+ 105,Samsung,Galaxy A34 256GB,199g,6.0,13MP,48.0,MediaTek Dimensity 1080,5000.0,6.6,399.0,2023,3,1,Camera-focused
108
+ 106,Samsung,Galaxy A24 128GB,195g,6.0,13MP,50.0,MediaTek Helio G99,5000.0,6.5,299.0,2023,3,1,Camera-focused
109
+ 107,Samsung,Galaxy A24 256GB,195g,6.0,13MP,50.0,MediaTek Helio G99,5000.0,6.5,349.0,2023,3,1,Camera-focused
110
+ 108,Samsung,Galaxy A14 128GB,190g,4.0,13MP,50.0,Exynos 850,5000.0,6.6,249.0,2023,2,2,Budget
111
+ 109,Samsung,Galaxy A14 256GB,190g,4.0,13MP,50.0,Exynos 850,5000.0,6.6,299.0,2023,2,2,Budget
112
+ 110,Samsung,Galaxy A04 64GB,188g,4.0,5MP,50.0,Exynos 850,5000.0,6.5,199.0,2022,2,2,Budget
113
+ 111,Samsung,Galaxy A04 128GB,188g,4.0,5MP,50.0,Exynos 850,5000.0,6.5,249.0,2022,2,2,Budget
114
+ 112,Samsung,Galaxy M54 128GB,202g,8.0,32MP,108.0,Exynos 1380,6000.0,6.7,349.0,2023,4,1,Camera-focused
115
+ 113,Samsung,Galaxy M54 256GB,202g,8.0,32MP,108.0,Exynos 1380,6000.0,6.7,399.0,2023,4,1,Camera-focused
116
+ 114,Samsung,Galaxy M34 128GB,199g,6.0,13MP,50.0,Exynos 1280,6000.0,6.5,299.0,2023,3,1,Camera-focused
117
+ 115,Samsung,Galaxy M34 256GB,199g,6.0,13MP,50.0,Exynos 1280,6000.0,6.5,349.0,2023,3,1,Camera-focused
118
+ 116,Samsung,Galaxy M14 128GB,202g,4.0,13MP,50.0,Exynos 850,6000.0,6.6,249.0,2023,2,2,Budget
119
+ 117,Samsung,Galaxy M14 256GB,202g,4.0,13MP,50.0,Exynos 850,6000.0,6.6,299.0,2023,2,2,Budget
120
+ 118,Samsung,Galaxy M04 64GB,188g,4.0,5MP,13.0,MediaTek Helio P35,5000.0,6.5,199.0,2022,1,2,Budget
121
+ 119,Samsung,Galaxy M04 128GB,188g,4.0,5MP,13.0,MediaTek Helio P35,5000.0,6.5,249.0,2022,1,2,Budget
122
+ 120,Samsung,Galaxy F54 128GB,199g,8.0,32MP,108.0,Exynos 1380,6000.0,6.7,349.0,2023,4,1,Camera-focused
123
+ 121,Samsung,Galaxy F54 256GB,199g,8.0,32MP,108.0,Exynos 1380,6000.0,6.7,399.0,2023,4,1,Camera-focused
124
+ 122,Samsung,Galaxy F34 128GB,190g,6.0,13MP,50.0,Exynos 1280,6000.0,6.5,299.0,2023,3,1,Camera-focused
125
+ 123,Samsung,Galaxy F34 256GB,190g,6.0,13MP,50.0,Exynos 1280,6000.0,6.5,349.0,2023,3,1,Camera-focused
126
+ 124,Samsung,Galaxy F14 128GB,198g,4.0,13MP,50.0,Exynos 850,6000.0,6.6,249.0,2023,2,2,Budget
127
+ 125,Samsung,Galaxy F14 256GB,198g,4.0,13MP,50.0,Exynos 850,6000.0,6.6,299.0,2023,2,2,Budget
128
+ 126,Samsung,Galaxy Note 20 Ultra 128GB,208g,12.0,10MP,108.0,Exynos 990,4500.0,6.9,1299.0,2020,3,0,Flagship
129
+ 127,Samsung,Galaxy Note 20 Ultra 256GB,208g,12.0,10MP,108.0,Exynos 990,4500.0,6.9,1399.0,2020,3,0,Flagship
130
+ 128,Samsung,Galaxy Note 20 128GB,192g,8.0,10MP,108.0,Exynos 990,4300.0,6.7,999.0,2020,3,0,Flagship
131
+ 129,Samsung,Galaxy Note 20 256GB,192g,8.0,10MP,108.0,Exynos 990,4300.0,6.7,1099.0,2020,3,0,Flagship
132
+ 130,Samsung,Galaxy Note 10+ 256GB,196g,12.0,10MP,16.0,Exynos 9825,4300.0,6.8,1099.0,2019,3,0,Flagship
133
+ 131,Samsung,Galaxy Note 10+ 512GB,196g,12.0,10MP,16.0,Exynos 9825,4300.0,6.8,1199.0,2019,3,0,Flagship
134
+ 132,Samsung,Galaxy Note 10 256GB,168g,8.0,10MP,16.0,Exynos 9825,3500.0,6.3,949.0,2019,3,3,Gaming / Performance
135
+ 133,Samsung,Galaxy Note 10 128GB,168g,8.0,10MP,16.0,Exynos 9825,3500.0,6.3,899.0,2019,3,3,Gaming / Performance
136
+ 134,Samsung,Galaxy Xcover 6 Pro 128GB,235g,6.0,13MP,50.0,Exynos 1380,4050.0,6.6,499.0,2022,4,3,Gaming / Performance
137
+ 135,Samsung,Galaxy Xcover 5 64GB,172g,4.0,5MP,16.0,Exynos 850,3000.0,5.3,249.0,2020,2,2,Budget
138
+ 136,Samsung,Galaxy J8 64GB,191g,4.0,16MP,16.0,Snapdragon 450,3500.0,6.0,199.0,2018,1,2,Budget
139
+ 137,Samsung,Galaxy J7 Pro 64GB,181g,3.0,13MP,13.0,Exynos 7870,3600.0,5.5,179.0,2017,2,2,Budget
140
+ 138,Samsung,Galaxy J6+ 64GB,178g,4.0,8MP,13.0,Snapdragon 425,3300.0,6.0,169.0,2018,1,2,Budget
141
+ 139,Samsung,Galaxy J4 16GB,175g,2.0,5MP,13.0,Exynos 7570,3000.0,5.5,129.0,2018,1,2,Budget
142
+ 140,Samsung,Galaxy C9 Pro 64GB,189g,6.0,16MP,16.0,Snapdragon 653,4000.0,6.0,399.0,2016,3,1,Camera-focused
143
+ 141,Samsung,Galaxy C7 Pro 64GB,165g,4.0,16MP,16.0,Snapdragon 625,3300.0,5.7,299.0,2017,3,3,Gaming / Performance
144
+ 142,Samsung,Galaxy C5 32GB,143g,4.0,8MP,16.0,Snapdragon 617,2600.0,5.2,249.0,2016,2,2,Budget
145
+ 143,OnePlus,OnePlus 12 256GB,205g,12.0,32MP,50.0,Snapdragon 8 Gen 3,5000.0,6.7,799.0,2024,5,0,Flagship
146
+ 144,OnePlus,OnePlus 12R 256GB,203g,12.0,16MP,50.0,Snapdragon 8 Gen 2,4500.0,6.7,699.0,2024,5,0,Flagship
147
+ 145,OnePlus,OnePlus 11 256GB,205g,12.0,16MP,50.0,Snapdragon 8 Gen 1,5000.0,6.7,699.0,2023,5,0,Flagship
148
+ 146,OnePlus,OnePlus 11R 256GB,202g,12.0,16MP,50.0,Snapdragon 8 Gen 1,5000.0,6.7,599.0,2023,5,0,Flagship
149
+ 147,OnePlus,OnePlus Nord 3 256GB,190g,12.0,16MP,50.0,MediaTek Dimensity 9000,5000.0,6.74,499.0,2023,5,0,Flagship
150
+ 148,OnePlus,OnePlus Nord CE 3 128GB,179g,8.0,16MP,50.0,Snapdragon 782G,5000.0,6.72,399.0,2023,4,1,Camera-focused
151
+ 149,OnePlus,OnePlus Nord CE 3 Lite 128GB,195g,8.0,16MP,108.0,Snapdragon 695,5000.0,6.72,299.0,2023,3,1,Camera-focused
152
+ 150,OnePlus,OnePlus Nord N30 5G 128GB,192g,8.0,16MP,64.0,MediaTek Dimensity 6020,5000.0,6.72,249.0,2023,3,1,Camera-focused
153
+ 151,OnePlus,OnePlus 10 Pro 256GB,200g,12.0,32MP,50.0,Snapdragon 8 Gen 1,5000.0,6.7,899.0,2022,5,0,Flagship
154
+ 152,OnePlus,OnePlus 10T 256GB,203g,12.0,16MP,50.0,Snapdragon 8+ Gen 1,4500.0,6.7,749.0,2022,5,0,Flagship
155
+ 153,OnePlus,OnePlus 9 Pro 256GB,192g,12.0,16MP,50.0,Snapdragon 888,4500.0,6.7,699.0,2021,5,0,Flagship
156
+ 154,OnePlus,OnePlus 9 128GB,183g,8.0,16MP,50.0,Snapdragon 888,4500.0,6.55,599.0,2021,5,0,Flagship
157
+ 155,OnePlus,OnePlus 11 Pro 256GB,204g,16.0,32MP,50.0,Snapdragon 8 Gen 2,5000.0,6.7,899.0,2023,5,0,Flagship
158
+ 156,OnePlus,OnePlus Nord 2T 128GB,190g,8.0,32MP,50.0,MediaTek Dimensity 1300,4500.0,6.43,399.0,2022,3,1,Camera-focused
159
+ 157,OnePlus,OnePlus Nord 2 128GB,190g,8.0,32MP,50.0,MediaTek Dimensity 1200-AI,4500.0,6.43,349.0,2021,3,1,Camera-focused
160
+ 158,OnePlus,OnePlus Nord N200 64GB,189g,4.0,16MP,13.0,Snapdragon 480,5000.0,6.49,199.0,2021,1,2,Budget
161
+ 159,OnePlus,OnePlus Nord N100 64GB,185g,4.0,8MP,13.0,Qualcomm Snapdragon 460,5000.0,6.52,179.0,2020,1,2,Budget
162
+ 160,OnePlus,OnePlus 8T Cyberpunk 2077 Edition 256GB,188g,12.0,16MP,48.0,Snapdragon 865,4500.0,6.55,749.0,2020,5,0,Flagship
163
+ 161,OnePlus,OnePlus 9T 128GB,192g,8.0,16MP,50.0,Snapdragon 888,4500.0,6.55,649.0,2021,5,0,Flagship
164
+ 162,OnePlus,OnePlus 8T 256GB,188g,12.0,16MP,48.0,Snapdragon 865,4500.0,6.55,599.0,2020,5,0,Flagship
165
+ 163,OnePlus,OnePlus 10T 5G 256GB,203g,12.0,16MP,50.0,Snapdragon 8+ Gen 1,4500.0,6.7,749.0,2022,5,0,Flagship
166
+ 164,OnePlus,OnePlus 9R 5G 128GB,189g,8.0,16MP,48.0,Snapdragon 870,4500.0,6.55,599.0,2021,5,0,Flagship
167
+ 165,OnePlus,OnePlus 8 Pro 256GB,199g,12.0,16MP,48.0,Snapdragon 865,4510.0,6.78,749.0,2020,5,0,Flagship
168
+ 166,OnePlus,OnePlus 8 128GB,180g,8.0,16MP,48.0,Snapdragon 865,4300.0,6.55,699.0,2020,5,0,Flagship
169
+ 167,OnePlus,OnePlus Nord CE 2 Lite 128GB,195g,6.0,16MP,64.0,MediaTek Dimensity 900,5000.0,6.59,249.0,2022,5,1,Camera-focused
170
+ 168,OnePlus,OnePlus Nord CE 2 128GB,173g,8.0,16MP,64.0,MediaTek Dimensity 1200,4500.0,6.43,299.0,2022,3,1,Camera-focused
171
+ 169,OnePlus,OnePlus Nord 1 128GB,184g,6.0,16MP,48.0,Snapdragon 765G,4115.0,6.44,349.0,2020,4,1,Camera-focused
172
+ 170,OnePlus,OnePlus Nord CE 5G 128GB,170g,6.0,16MP,64.0,Snapdragon 750G,4500.0,6.43,299.0,2021,4,1,Camera-focused
173
+ 171,OnePlus,OnePlus Nord 2 5G 128GB,189g,8.0,32MP,50.0,MediaTek Dimensity 1200-AI,4500.0,6.43,399.0,2021,3,1,Camera-focused
174
+ 172,OnePlus,OnePlus Nord N100 5G 64GB,185g,4.0,8MP,13.0,Qualcomm Snapdragon 460,5000.0,6.52,179.0,2020,1,2,Budget
175
+ 173,OnePlus,OnePlus Nord N10 5G 128GB,190g,6.0,16MP,64.0,Qualcomm Snapdragon 690,4300.0,6.49,299.0,2020,3,1,Camera-focused
176
+ 174,OnePlus,OnePlus 8R 128GB,192g,8.0,16MP,48.0,Snapdragon 865,4300.0,6.55,649.0,2020,5,0,Flagship
177
+ 175,OnePlus,OnePlus 7R 128GB,190g,6.0,16MP,48.0,Snapdragon 855,3700.0,6.41,599.0,2020,5,3,Gaming / Performance
178
+ 176,OnePlus,OnePlus 6T McLaren Edition 256GB,185g,10.0,16MP,20.0,Snapdragon 845,3700.0,6.41,799.0,2018,5,3,Gaming / Performance
179
+ 177,OnePlus,OnePlus 5T Star Wars Edition 128GB,162g,6.0,16MP,20.0,Snapdragon 835,3300.0,6.01,649.0,2017,5,3,Gaming / Performance
180
+ 178,OnePlus,OnePlus 13R 128GB,210g,8.0,16MP,50.0,Snapdragon 8 Gen 2,4500.0,6.7,849.0,2023,5,0,Flagship
181
+ 179,OnePlus,OnePlus 11T 128GB,202g,12.0,32MP,50.0,Snapdragon 8 Gen 2,5000.0,6.7,799.0,2023,5,0,Flagship
182
+ 180,OnePlus,OnePlus 10R 128GB,205g,8.0,16MP,50.0,MediaTek Dimensity 8100,4500.0,6.7,599.0,2022,4,1,Camera-focused
183
+ 181,OnePlus,OnePlus 7 Pro 5G 256GB,206g,12.0,16MP,48.0,Snapdragon 855,4000.0,6.67,799.0,2019,5,0,Flagship
184
+ 182,OnePlus,OnePlus 6 Special Edition 128GB,177g,6.0,16MP,20.0,Snapdragon 845,3300.0,6.28,599.0,2018,5,3,Gaming / Performance
185
+ 183,OnePlus,OnePlus 5 Special Edition 128GB,155g,8.0,16MP,20.0,Snapdragon 835,3300.0,5.5,599.0,2017,5,3,Gaming / Performance
186
+ 184,OnePlus,OnePlus Nord X 128GB,190g,8.0,32MP,64.0,Snapdragon 765G,4000.0,6.44,299.0,2020,4,1,Camera-focused
187
+ 185,OnePlus,OnePlus 8 Pro McLaren Edition 256GB,199g,12.0,16MP,48.0,Snapdragon 865,4510.0,6.78,899.0,2020,5,0,Flagship
188
+ 186,OnePlus,OnePlus 8T Cyberpunk Edition 256GB,188g,12.0,16MP,48.0,Snapdragon 865,4500.0,6.55,799.0,2020,5,0,Flagship
189
+ 187,OnePlus,OnePlus 7T Pro 5G McLaren Edition 256GB,206g,12.0,16MP,48.0,Snapdragon 855,4085.0,6.67,899.0,2019,5,0,Flagship
190
+ 188,OnePlus,OnePlus 15R 128GB,210g,12.0,32MP,50.0,Snapdragon 8 Gen 3,5000.0,6.7,849.0,2023,5,0,Flagship
191
+ 189,OnePlus,OnePlus 14+ 128GB,202g,8.0,16MP,64.0,Snapdragon 8 Gen 2,4800.0,6.55,799.0,2023,5,0,Flagship
192
+ 190,OnePlus,OnePlus 13 Pro 256GB,215g,12.0,32MP,50.0,Snapdragon 8 Gen 2,5000.0,6.7,899.0,2023,5,0,Flagship
193
+ 191,OnePlus,OnePlus 12T 5G 256GB,200g,12.0,16MP,50.0,Snapdragon 8 Gen 2,5000.0,6.7,849.0,2023,5,0,Flagship
194
+ 192,Vivo,X200 128GB,223g,12.0,32MP,50.0,Dimensity 9400,6000.0,6.78,999.0,2024,5,0,Flagship
195
+ 193,Vivo,X200 256GB,223g,12.0,32MP,50.0,Dimensity 9400,6000.0,6.78,1099.0,2024,5,0,Flagship
196
+ 194,Vivo,X200 Pro 256GB,223g,16.0,32MP,200.0,Dimensity 9400,6000.0,6.78,1199.0,2024,5,0,Flagship
197
+ 195,Vivo,X200 Pro 512GB,223g,16.0,32MP,200.0,Dimensity 9400,6000.0,6.78,1299.0,2024,5,0,Flagship
198
+ 196,Vivo,X200 Pro Mini 256GB,187g,16.0,32MP,50.0,Dimensity 9400,5700.0,6.31,949.0,2024,5,0,Flagship
199
+ 197,Vivo,V40e 128GB,179g,8.0,44MP,64.0,Snapdragon 778G,4100.0,6.44,449.0,2024,4,1,Camera-focused
200
+ 198,Vivo,Y200 GT 128GB,190g,12.0,16MP,64.0,Dimensity 1200,5000.0,6.58,399.0,2024,3,1,Camera-focused
201
+ 199,Vivo,T3 5G 128GB,180g,8.0,16MP,50.0,Snapdragon 870,5000.0,6.67,349.0,2024,5,1,Camera-focused
202
+ 200,Vivo,Y100 5G 128GB,181g,8.0,16MP,64.0,Dimensity 900,4500.0,6.38,299.0,2024,5,1,Camera-focused
203
+ 201,Vivo,S18 Pro 256GB,189g,12.0,32MP,108.0,Snapdragon 8 Gen 2,4700.0,6.56,599.0,2024,5,0,Flagship
204
+ 202,Vivo,V30 Pro 128GB,192g,12.0,32MP,64.0,Dimensity 1100,4500.0,6.44,549.0,2024,3,1,Camera-focused
205
+ 203,Vivo,iQOO 12 256GB,210g,16.0,16MP,50.0,Snapdragon 8 Gen 3,5000.0,6.78,699.0,2024,5,0,Flagship
206
+ 204,Vivo,Z3 64GB,162g,6.0,12MP,16.0,Snapdragon 710,3315.0,6.3,249.0,2018,4,3,Gaming / Performance
207
+ 205,Vivo,V9 64GB,150g,4.0,24MP,16.0,Snapdragon 626,3260.0,6.3,219.0,2018,3,3,Gaming / Performance
208
+ 206,Vivo,X9 Plus 128GB,199g,6.0,20MP+8MP,16.0,Snapdragon 653,4000.0,5.88,299.0,2017,3,1,Camera-focused
209
+ 207,Vivo,Y81 32GB,146g,3.0,5MP,13.0,MediaTek Helio P22,3260.0,6.22,149.0,2018,1,2,Budget
210
+ 208,Vivo,X5Max 16GB,146g,2.0,5MP,13.0,Snapdragon 615,2300.0,5.5,199.0,2014,3,3,Gaming / Performance
211
+ 209,Vivo,V5 Plus 64GB,158g,4.0,20MP+8MP,16.0,Snapdragon 625,3055.0,5.5,249.0,2017,3,3,Gaming / Performance
212
+ 210,Vivo,Y95 64GB,163g,4.0,20MP,13.0,Snapdragon 439,4030.0,6.22,199.0,2018,1,2,Budget
213
+ 211,Vivo,V3 Max 32GB,168g,4.0,8MP,13.0,Snapdragon 652,3000.0,5.5,179.0,2016,3,1,Camera-focused
214
+ 212,Vivo,X3S 16GB,153g,1.0,5MP,13.0,MediaTek MT6592,2000.0,5.0,139.0,2014,3,3,Gaming / Performance
215
+ 213,Vivo,Y66 32GB,155g,3.0,16MP,13.0,Snapdragon 430,3000.0,5.5,179.0,2017,1,2,Budget
216
+ 214,Vivo,V19 128GB,176g,8.0,32MP,48.0,Qualcomm Snapdragon 712,4500.0,6.44,399.0,2020,4,1,Camera-focused
217
+ 215,Vivo,V19 256GB,176g,8.0,32MP,48.0,Qualcomm Snapdragon 712,4500.0,6.44,429.0,2020,4,1,Camera-focused
218
+ 216,Vivo,V17 Pro 128GB,201g,8.0,32MP,48.0,Qualcomm Snapdragon 675,4100.0,6.44,399.0,2019,3,1,Camera-focused
219
+ 217,Vivo,V17 Pro 256GB,201g,8.0,32MP,48.0,Qualcomm Snapdragon 675,4100.0,6.44,429.0,2019,3,1,Camera-focused
220
+ 218,Vivo,Y12s 64GB,191g,3.0,8MP,13.0,MediaTek Helio P35,5000.0,6.51,159.0,2020,1,2,Budget
221
+ 219,Vivo,Y12s 128GB,191g,4.0,8MP,13.0,MediaTek Helio P35,5000.0,6.51,179.0,2020,1,2,Budget
222
+ 220,Vivo,S1 Pro 128GB,185g,6.0,32MP,48.0,MediaTek Helio P65,4500.0,6.38,249.0,2019,1,2,Budget
223
+ 221,Vivo,S1 Pro 256GB,185g,6.0,32MP,48.0,MediaTek Helio P65,4500.0,6.38,269.0,2019,1,2,Budget
224
+ 222,Vivo,Y11 32GB,190g,3.0,8MP,13.0,Qualcomm Snapdragon 439,5000.0,6.35,149.0,2019,1,2,Budget
225
+ 223,Vivo,Y11 64GB,190g,3.0,8MP,13.0,Qualcomm Snapdragon 439,5000.0,6.35,169.0,2019,1,2,Budget
226
+ 224,Vivo,V15 128GB,190g,6.0,32MP,48.0,MediaTek Helio P70,4000.0,6.53,299.0,2019,1,2,Budget
227
+ 225,Vivo,V15 256GB,190g,6.0,32MP,48.0,MediaTek Helio P70,4000.0,6.53,319.0,2019,1,2,Budget
228
+ 226,Vivo,X27 Pro 128GB,190g,8.0,32MP,48.0,Qualcomm Snapdragon 710,4000.0,6.39,499.0,2019,4,3,Gaming / Performance
229
+ 227,Vivo,X27 Pro 256GB,190g,8.0,32MP,48.0,Qualcomm Snapdragon 710,4000.0,6.39,549.0,2019,4,3,Gaming / Performance
230
+ 228,Vivo,Y30 128GB,193g,4.0,8MP,13.0,MediaTek Helio P35,5000.0,6.47,199.0,2020,1,2,Budget
231
+ 229,Vivo,Y30 64GB,193g,3.0,8MP,13.0,MediaTek Helio P35,5000.0,6.47,169.0,2020,1,2,Budget
232
+ 230,Vivo,Z1 Pro 64GB,159g,4.0,16MP,16.0,Qualcomm Snapdragon 712,4500.0,6.53,249.0,2019,4,1,Camera-focused
233
+ 231,Vivo,Z1 Pro 128GB,159g,6.0,16MP,16.0,Qualcomm Snapdragon 712,4500.0,6.53,299.0,2019,4,1,Camera-focused
234
+ 232,Vivo,X21 128GB,156g,6.0,12MP,12.0,Qualcomm Snapdragon 660,3200.0,6.28,349.0,2018,3,3,Gaming / Performance
235
+ 233,Vivo,X21 64GB,156g,4.0,12MP,12.0,Qualcomm Snapdragon 660,3200.0,6.28,299.0,2018,3,3,Gaming / Performance
236
+ 234,Vivo,V23e 128GB,172g,8.0,50MP,64.0,MediaTek Helio G96,4050.0,6.44,299.0,2021,3,1,Camera-focused
237
+ 235,Vivo,V23e 256GB,172g,8.0,50MP,64.0,MediaTek Helio G96,4050.0,6.44,349.0,2021,3,1,Camera-focused
238
+ 236,Vivo,Y33s 128GB,182g,8.0,16MP,50.0,MediaTek Helio G80,5000.0,6.58,239.0,2021,2,2,Budget
239
+ 237,Vivo,Y33s 64GB,182g,4.0,16MP,50.0,MediaTek Helio G80,5000.0,6.58,179.0,2021,2,2,Budget
240
+ 238,Vivo,X60 Pro 256GB,190g,12.0,32MP,48.0,Qualcomm Snapdragon 870,4200.0,6.56,899.0,2021,5,0,Flagship
241
+ 239,Vivo,X60 Pro 512GB,190g,12.0,32MP,48.0,Qualcomm Snapdragon 870,4200.0,6.56,999.0,2021,5,0,Flagship
242
+ 240,Vivo,V20 Pro 128GB,173g,8.0,44MP,64.0,Qualcomm Snapdragon 765G,4000.0,6.44,499.0,2020,4,1,Camera-focused
243
+ 241,Vivo,V20 Pro 256GB,173g,8.0,44MP,64.0,Qualcomm Snapdragon 765G,4000.0,6.44,549.0,2020,4,3,Gaming / Performance
244
+ 242,Vivo,Y75 5G 128GB,179g,8.0,16MP,50.0,MediaTek Dimensity 700,5000.0,6.58,349.0,2021,2,2,Budget
245
+ 243,Vivo,Y75 5G 256GB,179g,8.0,16MP,50.0,MediaTek Dimensity 700,5000.0,6.58,399.0,2021,2,2,Budget
246
+ 244,Vivo,Y53s 128GB,190g,6.0,16MP,64.0,MediaTek Helio G80,5000.0,6.58,229.0,2021,2,2,Budget
247
+ 245,Vivo,Y53s 64GB,190g,6.0,16MP,64.0,MediaTek Helio G80,5000.0,6.58,179.0,2021,2,2,Budget
248
+ 246,Vivo,V15 Pro 128GB,185g,6.0,32MP,48.0,Qualcomm Snapdragon 675,3700.0,6.39,399.0,2019,3,1,Camera-focused
249
+ 247,Vivo,V15 Pro 256GB,185g,6.0,32MP,48.0,Qualcomm Snapdragon 675,3700.0,6.39,449.0,2019,3,3,Gaming / Performance
250
+ 248,Vivo,X70 Pro 128GB,185g,8.0,32MP,50.0,MediaTek Dimensity 1200,4450.0,6.56,749.0,2021,3,1,Camera-focused
251
+ 249,Vivo,X70 Pro 256GB,185g,8.0,32MP,50.0,MediaTek Dimensity 1200,4450.0,6.56,799.0,2021,3,1,Camera-focused
252
+ 250,Vivo,T1 5G 128GB,181g,6.0,16MP,50.0,Qualcomm Snapdragon 695,5000.0,6.58,269.0,2022,3,1,Camera-focused
253
+ 251,Vivo,T1 5G 256GB,181g,8.0,16MP,50.0,Qualcomm Snapdragon 695,5000.0,6.58,319.0,2022,3,1,Camera-focused
254
+ 252,Vivo,X30 Pro 128GB,199g,8.0,32MP,64.0,Qualcomm Snapdragon 855,4200.0,6.44,899.0,2019,5,0,Flagship
255
+ 253,Vivo,X30 Pro 256GB,199g,8.0,32MP,64.0,Qualcomm Snapdragon 855,4200.0,6.44,949.0,2019,5,0,Flagship
256
+ 254,Vivo,V27 128GB,182g,8.0,50MP,50.0,MediaTek Dimensity 8200,4600.0,6.78,599.0,2023,4,1,Camera-focused
257
+ 255,Vivo,V27 256GB,182g,8.0,50MP,50.0,MediaTek Dimensity 8200,4600.0,6.78,649.0,2023,4,0,Flagship
258
+ 256,Vivo,V27 Pro 128GB,182g,8.0,50MP,50.0,MediaTek Dimensity 8200,4600.0,6.78,699.0,2023,4,0,Flagship
259
+ 257,Vivo,V27 Pro 256GB,182g,8.0,50MP,50.0,MediaTek Dimensity 8200,4600.0,6.78,749.0,2023,4,0,Flagship
260
+ 258,Vivo,V25 Pro 128GB,190g,8.0,32MP,64.0,MediaTek Dimensity 1300,4830.0,6.56,599.0,2022,3,1,Camera-focused
261
+ 259,Vivo,V25 Pro 256GB,190g,8.0,32MP,64.0,MediaTek Dimensity 1300,4830.0,6.56,649.0,2022,3,1,Camera-focused
262
+ 260,Vivo,X90 Pro 256GB,221g,12.0,32MP,50.0,MediaTek Dimensity 9200,4870.0,6.78,1099.0,2022,5,0,Flagship
263
+ 261,Vivo,X90 Pro 512GB,221g,12.0,32MP,50.0,MediaTek Dimensity 9200,4870.0,6.78,1199.0,2022,5,0,Flagship
264
+ 262,Vivo,Y100 128GB,190g,8.0,16MP,64.0,MediaTek Dimensity 900,4500.0,6.44,399.0,2023,5,1,Camera-focused
265
+ 263,Vivo,Y100 256GB,190g,8.0,16MP,64.0,MediaTek Dimensity 900,4500.0,6.44,449.0,2023,5,0,Flagship
266
+ 264,Vivo,T2 Series 128GB,190g,8.0,16MP,64.0,Qualcomm Snapdragon 695,4500.0,6.44,299.0,2023,3,1,Camera-focused
267
+ 265,Vivo,T2 Series 256GB,190g,8.0,16MP,64.0,Qualcomm Snapdragon 695,4500.0,6.44,349.0,2023,3,1,Camera-focused
268
+ 266,Vivo,V23 5G 128GB,179g,8.0,50MP,64.0,MediaTek Dimensity 920,4200.0,6.44,499.0,2022,5,0,Flagship
269
+ 267,Vivo,V23 5G 256GB,179g,8.0,50MP,64.0,MediaTek Dimensity 920,4200.0,6.44,549.0,2022,5,0,Flagship
270
+ 268,Vivo,X80 256GB,206g,12.0,32MP,50.0,MediaTek Dimensity 9000,4700.0,6.78,899.0,2022,5,0,Flagship
271
+ 269,Vivo,X80 512GB,206g,12.0,32MP,50.0,MediaTek Dimensity 9000,4700.0,6.78,999.0,2022,5,0,Flagship
272
+ 270,Vivo,Y21 128GB,182g,4.0,8MP,13.0,MediaTek Helio P35,5000.0,6.51,199.0,2021,1,2,Budget
273
+ 271,Vivo,Y21 64GB,182g,4.0,8MP,13.0,MediaTek Helio P35,5000.0,6.51,179.0,2021,1,2,Budget
274
+ 272,Oppo,Find N3 Flip 256GB,198g,12.0,32MP,50.0,MediaTek Dimensity 9200,4300.0,6.8,999.0,2023,5,0,Flagship
275
+ 273,Oppo,Find X8 Pro 256GB,210g,12.0,32MP,50.0,Snapdragon 8 Gen 2,5000.0,6.8,1299.0,2024,5,0,Flagship
276
+ 274,Oppo,Find X8 256GB,195g,8.0,32MP,50.0,Snapdragon 8 Gen 2,4800.0,6.7,1099.0,2024,5,0,Flagship
277
+ 275,Oppo,Reno13 F 4G 256GB,192g,8.0,32MP,50.0,MediaTek Helio G100,5800.0,6.67,499.0,2025,3,1,Camera-focused
278
+ 276,Oppo,Reno13 F 256GB,192g,8.0,32MP,50.0,MediaTek Helio G100,5800.0,6.67,499.0,2025,3,1,Camera-focused
279
+ 277,Oppo,Reno13 Pro 512GB,210g,12.0,50MP,50.0,MediaTek Dimensity 8350,5800.0,6.83,799.0,2025,4,0,Flagship
280
+ 278,Oppo,Reno13 256GB,200g,12.0,50MP,50.0,MediaTek Dimensity 8350,5600.0,6.59,699.0,2025,4,0,Flagship
281
+ 279,Oppo,Reno12 F 4G 256GB,187g,8.0,32MP,50.0,Snapdragon 685,5000.0,6.7,449.0,2024,3,1,Camera-focused
282
+ 280,Oppo,Reno12 F 256GB,187g,8.0,32MP,50.0,Snapdragon 685,5000.0,6.7,449.0,2024,3,1,Camera-focused
283
+ 281,Oppo,Reno12 Pro 512GB,190g,12.0,32MP,50.0,MediaTek Dimensity 8200,4600.0,6.74,749.0,2024,4,0,Flagship
284
+ 282,Oppo,Reno12 256GB,185g,8.0,32MP,50.0,MediaTek Dimensity 7050,5000.0,6.7,599.0,2024,3,1,Camera-focused
285
+ 283,Oppo,Reno11 F 256GB,185g,8.0,32MP,64.0,MediaTek Dimensity 7050,5000.0,6.7,499.0,2024,3,1,Camera-focused
286
+ 284,Oppo,Reno11 Pro 512GB,190g,12.0,32MP,50.0,MediaTek Dimensity 8200,4600.0,6.74,699.0,2024,4,0,Flagship
287
+ 285,Oppo,A5 Pro 256GB,180g,8.0,16MP,50.0,Dimensity 7300,6000.0,6.7,599.0,2024,3,1,Camera-focused
288
+ 286,Oppo,A5 Pro 512GB,186g,12.0,16MP,50.0,Dimensity 7300,6000.0,6.7,699.0,2024,3,0,Flagship
289
+ 287,Oppo,A80 256GB,186g,8.0,8MP,50.0,Dimensity 6300,5100.0,6.67,499.0,2024,3,1,Camera-focused
290
+ 288,Oppo,A3 4G 128GB,186g,4.0,5MP,50.0,Snapdragon 6s 4G Gen 1,5000.0,6.7,399.0,2024,3,1,Camera-focused
291
+ 289,Oppo,A3x 4G 128GB,186g,4.0,8MP,8.0,Snapdragon 6s 4G Gen 1,5100.0,6.67,449.0,2024,3,1,Camera-focused
292
+ 290,Oppo,A3x 4G 256GB,186g,6.0,8MP,8.0,Snapdragon 6s 4G Gen 1,5100.0,6.67,499.0,2024,3,1,Camera-focused
293
+ 291,Oppo,A3 128GB,186g,4.0,5MP,50.0,Snapdragon 6s 4G Gen 1,5000.0,6.7,399.0,2024,3,1,Camera-focused
294
+ 292,Oppo,A3x 128GB,186g,4.0,8MP,8.0,Snapdragon 6s 4G Gen 1,5100.0,6.67,449.0,2024,3,1,Camera-focused
295
+ 293,Oppo,A3x 256GB,186g,6.0,8MP,8.0,Snapdragon 6s 4G Gen 1,5100.0,6.67,499.0,2024,3,1,Camera-focused
296
+ 294,Oppo,A3 128GB,186g,4.0,5MP,50.0,Snapdragon 6s 4G Gen 1,5000.0,6.7,399.0,2024,3,1,Camera-focused
297
+ 295,Oppo,A60 128GB,186g,8.0,8MP,50.0,Snapdragon 680 4G,5000.0,6.67,449.0,2024,3,1,Camera-focused
298
+ 296,Oppo,A60 256GB,186g,8.0,8MP,50.0,Snapdragon 680 4G,5000.0,6.67,499.0,2024,3,1,Camera-focused
299
+ 297,Oppo,K12 Plus 256GB,192g,8.0,16MP,50.0,Snapdragon 7 Gen 3,6400.0,6.7,699.0,2024,4,0,Flagship
300
+ 298,Oppo,K12 Plus 512GB,192g,12.0,16MP,50.0,Snapdragon 7 Gen 3,6400.0,6.7,799.0,2024,4,0,Flagship
301
+ 299,Oppo,F27 128GB,175g,8.0,32MP,64.0,Dimensity 7050,5000.0,6.7,499.0,2024,3,1,Camera-focused
302
+ 300,Oppo,F27 256GB,175g,8.0,32MP,64.0,Dimensity 7050,5000.0,6.7,549.0,2024,3,1,Camera-focused
303
+ 301,Oppo,F27 Pro+ 256GB,177g,8.0,32MP,64.0,Dimensity 7050,5000.0,6.7,599.0,2024,3,1,Camera-focused
304
+ 302,Oppo,F27 Pro+ 512GB,177g,12.0,32MP,64.0,Dimensity 7050,5000.0,6.7,699.0,2024,3,0,Flagship
305
+ 303,Oppo,F25 Pro 128GB,173g,8.0,32MP,64.0,Snapdragon 778G,4500.0,6.55,549.0,2023,4,1,Camera-focused
306
+ 304,Oppo,F25 Pro 256GB,173g,8.0,32MP,64.0,Snapdragon 778G,4500.0,6.55,599.0,2023,4,1,Camera-focused
307
+ 305,Oppo,Find X7 Ultra 256GB,221g,12.0,32MP,50.0,Snapdragon 8 Gen 3,5000.0,6.82,1199.0,2024,5,0,Flagship
308
+ 306,Oppo,Find X7 Ultra 512GB,221g,16.0,32MP,50.0,Snapdragon 8 Gen 3,5000.0,6.82,1299.0,2024,5,0,Flagship
309
+ 307,Oppo,Find X7 256GB,206g,12.0,32MP,64.0,Dimensity 9300,5000.0,6.78,1099.0,2024,5,0,Flagship
310
+ 308,Oppo,Find X7 512GB,206g,16.0,32MP,64.0,Dimensity 9300,5000.0,6.78,1199.0,2024,5,0,Flagship
311
+ 309,Oppo,Find X6 Pro 256GB,218g,12.0,32MP,50.0,Snapdragon 8 Gen 2,5000.0,6.82,999.0,2023,5,0,Flagship
312
+ 310,Oppo,Find X6 Pro 512GB,218g,16.0,32MP,50.0,Snapdragon 8 Gen 2,5000.0,6.82,1099.0,2023,5,0,Flagship
313
+ 311,Oppo,Find X6 256GB,207g,12.0,32MP,50.0,Dimensity 9200,4800.0,6.74,899.0,2023,5,0,Flagship
314
+ 312,Oppo,Find X6 512GB,207g,16.0,32MP,50.0,Dimensity 9200,4800.0,6.74,999.0,2023,5,0,Flagship
315
+ 313,Oppo,Find X5 Pro 256GB,218g,12.0,32MP,50.0,Snapdragon 8 Gen 1,5000.0,6.7,899.0,2022,5,0,Flagship
316
+ 314,Oppo,Find X5 Pro 512GB,218g,16.0,32MP,50.0,Snapdragon 8 Gen 1,5000.0,6.7,999.0,2022,5,0,Flagship
317
+ 315,Oppo,Find X5 256GB,196g,8.0,32MP,50.0,Snapdragon 888,4800.0,6.55,799.0,2022,5,0,Flagship
318
+ 316,Oppo,Find N2 Flip 256GB,191g,8.0,32MP,50.0,Dimensity 9000+,4300.0,6.8,899.0,2023,5,0,Flagship
319
+ 317,Oppo,Find N2 Flip 512GB,191g,12.0,32MP,50.0,Dimensity 9000+,4300.0,6.8,999.0,2023,5,0,Flagship
320
+ 318,Oppo,Find N2 256GB,233g,12.0,32MP,50.0,Snapdragon 8+ Gen 1,4520.0,7.1,1099.0,2022,5,0,Flagship
321
+ 319,Oppo,Reno10 5G 128GB,180g,8.0,32MP,64.0,Dimensity 7050,5000.0,6.7,499.0,2023,3,1,Camera-focused
322
+ 320,Oppo,Reno10 5G 256GB,180g,8.0,32MP,64.0,Dimensity 7050,5000.0,6.7,549.0,2023,3,1,Camera-focused
323
+ 321,Oppo,Reno10 Pro 5G 256GB,186g,12.0,32MP,50.0,Snapdragon 778G,4600.0,6.7,599.0,2023,4,0,Flagship
324
+ 322,Oppo,Reno10 Pro+ 5G 256GB,194g,16.0,32MP,64.0,Snapdragon 8+ Gen 1,4700.0,6.74,699.0,2023,5,0,Flagship
325
+ 323,Oppo,Reno9 5G 128GB,174g,8.0,32MP,64.0,Snapdragon 778G,4500.0,6.7,449.0,2022,4,1,Camera-focused
326
+ 324,Oppo,Reno9 5G 256GB,174g,12.0,32MP,64.0,Snapdragon 778G,4500.0,6.7,499.0,2022,4,0,Flagship
327
+ 325,Oppo,Reno9 Pro 5G 256GB,184g,16.0,32MP,50.0,Dimensity 8100,4500.0,6.7,599.0,2022,4,0,Flagship
328
+ 326,Oppo,Reno9 Pro+ 5G 256GB,192g,16.0,32MP,50.0,Snapdragon 8+ Gen 1,4700.0,6.7,649.0,2022,5,0,Flagship
329
+ 327,Oppo,Reno8 5G 128GB,179g,8.0,32MP,50.0,Dimensity 1300,4500.0,6.4,399.0,2022,3,1,Camera-focused
330
+ 328,Oppo,Reno8 5G 256GB,179g,12.0,32MP,50.0,Dimensity 1300,4500.0,6.4,449.0,2022,3,1,Camera-focused
331
+ 329,Oppo,Reno8 Pro 5G 256GB,183g,12.0,32MP,50.0,Dimensity 8100,4500.0,6.7,549.0,2022,4,0,Flagship
332
+ 330,Oppo,Reno8 Pro+ 5G 256GB,195g,12.0,32MP,50.0,Dimensity 8100,4500.0,6.7,599.0,2022,4,0,Flagship
333
+ 331,Oppo,Reno7 5G 128GB,173g,8.0,32MP,64.0,Dimensity 900,4500.0,6.4,349.0,2021,5,1,Camera-focused
334
+ 332,Oppo,Reno7 5G 256GB,173g,12.0,32MP,64.0,Dimensity 900,4500.0,6.4,399.0,2021,5,0,Flagship
335
+ 333,Oppo,Reno7 Pro 5G 256GB,180g,12.0,32MP,50.0,Dimensity 1200,4500.0,6.55,499.0,2021,3,1,Camera-focused
336
+ 334,Oppo,Reno6 5G 128GB,182g,8.0,32MP,64.0,Dimensity 900,4300.0,6.43,349.0,2021,5,1,Camera-focused
337
+ 335,Oppo,Reno6 5G 256GB,182g,12.0,32MP,64.0,Dimensity 900,4300.0,6.43,399.0,2021,5,0,Flagship
338
+ 336,Oppo,Reno6 Pro 5G 128GB,177g,8.0,32MP,64.0,Dimensity 1200,4500.0,6.55,449.0,2021,3,1,Camera-focused
339
+ 337,Oppo,Reno6 Pro 5G 256GB,177g,12.0,32MP,64.0,Dimensity 1200,4500.0,6.55,499.0,2021,3,1,Camera-focused
340
+ 338,Oppo,Reno6 Pro+ 5G 256GB,188g,12.0,32MP,50.0,Snapdragon 870,4500.0,6.55,599.0,2021,5,0,Flagship
341
+ 339,Oppo,Reno5 5G 128GB,180g,8.0,32MP,64.0,Snapdragon 765G,4300.0,6.43,299.0,2020,4,1,Camera-focused
342
+ 340,Oppo,Reno5 5G 256GB,180g,12.0,32MP,64.0,Snapdragon 765G,4300.0,6.43,349.0,2020,4,1,Camera-focused
343
+ 341,Oppo,Reno5 Pro 5G 128GB,173g,8.0,32MP,64.0,Dimensity 1000+,4350.0,6.55,399.0,2020,3,1,Camera-focused
344
+ 342,Oppo,Reno5 Pro 5G 256GB,173g,12.0,32MP,64.0,Dimensity 1000+,4350.0,6.55,449.0,2020,3,1,Camera-focused
345
+ 343,Oppo,Reno5 Pro+ 5G 256GB,184g,12.0,32MP,50.0,Snapdragon 865,4500.0,6.55,599.0,2020,5,0,Flagship
346
+ 344,Oppo,Reno4 5G 128GB,183g,8.0,32MP,48.0,Snapdragon 765G,4000.0,6.43,299.0,2020,4,1,Camera-focused
347
+ 345,Oppo,Reno4 5G 256GB,183g,8.0,32MP,48.0,Snapdragon 765G,4000.0,6.43,349.0,2020,4,1,Camera-focused
348
+ 346,Oppo,Reno4 Pro 5G 256GB,172g,12.0,32MP,48.0,Snapdragon 765G,4000.0,6.55,499.0,2020,4,0,Flagship
349
+ 347,Oppo,Reno3 5G 128GB,181g,8.0,32MP,64.0,Dimensity 1000L,4025.0,6.4,249.0,2019,3,1,Camera-focused
350
+ 348,Oppo,Reno3 5G 256GB,181g,12.0,32MP,64.0,Dimensity 1000L,4025.0,6.4,299.0,2019,3,1,Camera-focused
351
+ 349,Oppo,Reno3 Pro 5G 256GB,171g,12.0,32MP,48.0,Snapdragon 765G,4025.0,6.5,499.0,2019,4,0,Flagship
352
+ 350,Oppo,A59 5G 128GB,186g,6.0,8MP,13.0,MediaTek Dimensity 6020,5000.0,6.56,199.0,2023,3,1,Camera-focused
353
+ 351,Oppo,A59 5G 256GB,186g,8.0,8MP,13.0,MediaTek Dimensity 6020,5000.0,6.56,229.0,2023,3,1,Camera-focused
354
+ 352,Oppo,A58 5G 256GB,188g,8.0,8MP,50.0,MediaTek Dimensity 700,5000.0,6.56,249.0,2022,2,2,Budget
355
+ 353,Oppo,A57 5G 128GB,186g,6.0,8MP,13.0,MediaTek Dimensity 810,5000.0,6.56,219.0,2022,4,1,Camera-focused
356
+ 354,Oppo,A56 5G 128GB,189g,6.0,8MP,13.0,MediaTek Dimensity 700,5000.0,6.5,199.0,2021,2,2,Budget
357
+ 355,Oppo,A55 5G 128GB,186g,6.0,8MP,13.0,MediaTek Dimensity 700,5000.0,6.5,189.0,2021,2,2,Budget
358
+ 356,Oppo,A54 5G 128GB,190g,6.0,16MP,48.0,Qualcomm Snapdragon 480,5000.0,6.5,219.0,2021,1,2,Budget
359
+ 357,Oppo,A53 5G 128GB,175g,4.0,8MP,16.0,MediaTek Dimensity 720,4040.0,6.5,179.0,2020,3,1,Camera-focused
360
+ 358,Oppo,A52 5G 128GB,184g,4.0,8MP,12.0,MediaTek Dimensity 720,4000.0,6.5,169.0,2020,3,1,Camera-focused
361
+ 359,Oppo,A51 5G 128GB,186g,4.0,8MP,13.0,MediaTek Dimensity 700,4000.0,6.5,149.0,2020,2,2,Budget
362
+ 360,Oppo,A50 5G 128GB,185g,4.0,8MP,13.0,MediaTek Dimensity 700,4000.0,6.5,139.0,2020,2,2,Budget
363
+ 361,Oppo,A49 5G 128GB,185g,4.0,8MP,13.0,MediaTek Dimensity 700,4000.0,6.5,129.0,2020,2,2,Budget
364
+ 362,Oppo,A40 128GB,186g,4.0,5MP,50.0,Qualcomm Snapdragon 6s Gen 1,5100.0,6.67,199.0,2024,3,1,Camera-focused
365
+ 363,Oppo,A40 256GB,186g,6.0,5MP,50.0,Qualcomm Snapdragon 6s Gen 1,5100.0,6.67,229.0,2024,3,1,Camera-focused
366
+ 364,Oppo,K11x 128GB,195g,8.0,16MP,108.0,Qualcomm Snapdragon 695,5000.0,6.72,199.0,2023,3,1,Camera-focused
367
+ 365,Oppo,K11x 256GB,195g,12.0,16MP,108.0,Qualcomm Snapdragon 695,5000.0,6.72,229.0,2023,3,1,Camera-focused
368
+ 366,Oppo,K10x 128GB,195g,6.0,16MP,64.0,Qualcomm Snapdragon 695,5000.0,6.59,199.0,2022,3,1,Camera-focused
369
+ 367,Oppo,K10x 256GB,195g,8.0,16MP,64.0,Qualcomm Snapdragon 695,5000.0,6.59,229.0,2022,3,1,Camera-focused
370
+ 368,Oppo,K10 5G 128GB,205g,8.0,16MP,64.0,MediaTek Dimensity 8000-Max,5000.0,6.59,249.0,2022,4,1,Camera-focused
371
+ 369,Oppo,K9x 128GB,194g,6.0,16MP,64.0,MediaTek Dimensity 810,5000.0,6.5,199.0,2021,4,1,Camera-focused
372
+ 370,Oppo,K9x 256GB,194g,8.0,16MP,64.0,MediaTek Dimensity 810,5000.0,6.5,229.0,2021,4,1,Camera-focused
373
+ 371,Oppo,K9 Pro 5G 128GB,180g,8.0,16MP,64.0,MediaTek Dimensity 1200,4500.0,6.43,299.0,2021,3,1,Camera-focused
374
+ 372,Oppo,K9 Pro 5G 256GB,180g,12.0,16MP,64.0,MediaTek Dimensity 1200,4500.0,6.43,329.0,2021,3,1,Camera-focused
375
+ 373,Oppo,K9 5G 128GB,172g,8.0,32MP,64.0,Qualcomm Snapdragon 768G,4300.0,6.43,279.0,2021,4,1,Camera-focused
376
+ 374,Oppo,K9 5G 256GB,172g,8.0,32MP,64.0,Qualcomm Snapdragon 768G,4300.0,6.43,299.0,2021,4,1,Camera-focused
377
+ 375,Oppo,K7x 128GB,194g,6.0,16MP,48.0,MediaTek Dimensity 720,5000.0,6.5,199.0,2020,3,1,Camera-focused
378
+ 376,Oppo,K7 5G 128GB,180g,8.0,32MP,48.0,Qualcomm Snapdragon 765G,4025.0,6.4,279.0,2020,4,1,Camera-focused
379
+ 377,Oppo,K7 5G 256GB,180g,8.0,32MP,48.0,Qualcomm Snapdragon 765G,4025.0,6.4,299.0,2020,4,1,Camera-focused
380
+ 378,Oppo,K11x 128GB,195g,8.0,16MP,108.0,Qualcomm Snapdragon 695,5000.0,6.72,199.0,2023,3,1,Camera-focused
381
+ 379,Oppo,K11x 256GB,195g,12.0,16MP,108.0,Qualcomm Snapdragon 695,5000.0,6.72,229.0,2023,3,1,Camera-focused
382
+ 380,Oppo,K11 128GB,184g,8.0,16MP,64.0,Qualcomm Snapdragon 782G,5000.0,6.7,259.0,2023,4,1,Camera-focused
383
+ 381,Oppo,K11 256GB,184g,12.0,16MP,64.0,Qualcomm Snapdragon 782G,5000.0,6.7,299.0,2023,4,1,Camera-focused
384
+ 382,Oppo,K10x 128GB,195g,6.0,16MP,64.0,Qualcomm Snapdragon 695,5000.0,6.59,199.0,2022,3,1,Camera-focused
385
+ 383,Oppo,K10x 256GB,195g,8.0,16MP,64.0,Qualcomm Snapdragon 695,5000.0,6.59,229.0,2022,3,1,Camera-focused
386
+ 384,Oppo,K10 5G 128GB,205g,8.0,16MP,64.0,MediaTek Dimensity 8000-Max,5000.0,6.59,249.0,2022,4,1,Camera-focused
387
+ 385,Oppo,K10 5G 256GB,205g,12.0,16MP,64.0,MediaTek Dimensity 8000-Max,5000.0,6.59,279.0,2022,4,1,Camera-focused
388
+ 386,Oppo,K9x 128GB,194g,6.0,16MP,64.0,MediaTek Dimensity 810,5000.0,6.5,199.0,2021,4,1,Camera-focused
389
+ 387,Oppo,K9x 256GB,194g,8.0,16MP,64.0,MediaTek Dimensity 810,5000.0,6.5,229.0,2021,4,1,Camera-focused
390
+ 388,Oppo,K9 Pro 5G 128GB,180g,8.0,16MP,64.0,MediaTek Dimensity 1200,4500.0,6.43,299.0,2021,3,1,Camera-focused
391
+ 389,Oppo,K9 Pro 5G 256GB,180g,12.0,16MP,64.0,MediaTek Dimensity 1200,4500.0,6.43,329.0,2021,3,1,Camera-focused
392
+ 390,Oppo,K9 5G 128GB,172g,8.0,32MP,64.0,Qualcomm Snapdragon 768G,4300.0,6.43,279.0,2021,4,1,Camera-focused
393
+ 391,Oppo,K9 5G 256GB,172g,8.0,32MP,64.0,Qualcomm Snapdragon 768G,4300.0,6.43,299.0,2021,4,1,Camera-focused
394
+ 392,Oppo,K7x 128GB,194g,6.0,16MP,48.0,MediaTek Dimensity 720,5000.0,6.5,199.0,2020,3,1,Camera-focused
395
+ 393,Oppo,K7 5G 128GB,180g,8.0,32MP,48.0,Qualcomm Snapdragon 765G,4025.0,6.4,279.0,2020,4,1,Camera-focused
396
+ 394,Realme,GT 7 Pro 128GB,222.8g,12.0,16MP,50.0,Qualcomm Snapdragon 8 Elite,6500.0,6.78,470.0,2024,5,0,Flagship
397
+ 395,Realme,GT 7 Pro 256GB,222.8g,16.0,16MP,50.0,Qualcomm Snapdragon 8 Elite,6500.0,6.78,500.0,2024,5,0,Flagship
398
+ 396,Realme,GT 6 128GB,191g,8.0,32MP,50.0,Qualcomm Snapdragon 8s Gen 3,5500.0,6.78,380.0,2023,5,1,Camera-focused
399
+ 397,Realme,GT 6 256GB,191g,12.0,32MP,50.0,Qualcomm Snapdragon 8s Gen 3,5500.0,6.78,400.0,2023,5,0,Flagship
400
+ 398,Realme,GT 6 512GB,191g,16.0,32MP,50.0,Qualcomm Snapdragon 8s Gen 3,5500.0,6.78,420.0,2023,5,0,Flagship
401
+ 399,Realme,GT 6T 128GB,191g,8.0,32MP,50.0,Qualcomm Snapdragon 7 Plus Gen 3,5500.0,6.78,360.0,2023,4,1,Camera-focused
402
+ 400,Realme,GT 6T 256GB,191g,8.0,32MP,50.0,Qualcomm Snapdragon 7 Plus Gen 3,5500.0,6.78,380.0,2023,4,1,Camera-focused
403
+ 401,Realme,14 Pro+ 5G 256GB,184g,12.0,16MP,50.0,Qualcomm Snapdragon 7s Gen 3,6000.0,6.83,340.0,2025,4,1,Camera-focused
404
+ 402,Realme,14 Pro+ 5G 512GB,184g,12.0,16MP,50.0,Qualcomm Snapdragon 7s Gen 3,6000.0,6.83,360.0,2025,4,1,Camera-focused
405
+ 403,Realme,14 Pro 5G 128GB,184g,8.0,16MP,50.0,MediaTek Dimensity 7300 Energy,5800.0,6.7,320.0,2025,3,1,Camera-focused
406
+ 404,Realme,14 Pro 5G 256GB,184g,8.0,16MP,50.0,MediaTek Dimensity 7300 Energy,5800.0,6.7,340.0,2025,3,1,Camera-focused
407
+ 405,Realme,14x 5G 128GB,190g,6.0,16MP,48.0,Qualcomm Snapdragon 7s Gen 2,5500.0,6.6,270.0,2025,4,1,Camera-focused
408
+ 406,Realme,14x 5G 256GB,190g,8.0,16MP,48.0,Qualcomm Snapdragon 7s Gen 2,5500.0,6.6,290.0,2025,4,1,Camera-focused
409
+ 407,Realme,13+ 5G 128GB,185g,8.0,16MP,50.0,MediaTek Dimensity 7200,5000.0,6.5,250.0,2024,3,1,Camera-focused
410
+ 408,Realme,13+ 5G 256GB,185g,8.0,16MP,50.0,MediaTek Dimensity 7200,5000.0,6.5,270.0,2024,3,1,Camera-focused
411
+ 409,Realme,13 5G 128GB,190g,6.0,16MP,50.0,MediaTek Dimensity 6100+,5000.0,6.6,220.0,2024,3,1,Camera-focused
412
+ 410,Realme,13 5G 256GB,190g,8.0,16MP,50.0,MediaTek Dimensity 6100+,5000.0,6.6,240.0,2024,3,1,Camera-focused
413
+ 411,Realme,13 Pro 5G 128GB,192g,8.0,16MP,50.0,Qualcomm Snapdragon 7s Gen 2,5200.0,6.7,300.0,2024,4,1,Camera-focused
414
+ 412,Realme,13 Pro 5G 256GB,192g,12.0,16MP,50.0,Qualcomm Snapdragon 7s Gen 2,5200.0,6.7,320.0,2024,4,1,Camera-focused
415
+ 413,Realme,13 Pro+ 5G 256GB,195g,12.0,32MP,50.0,Qualcomm Snapdragon 7+ Gen 2,5500.0,6.78,360.0,2024,4,1,Camera-focused
416
+ 414,Realme,13 Pro+ 5G 512GB,195g,16.0,32MP,50.0,Qualcomm Snapdragon 7+ Gen 2,5500.0,6.78,380.0,2024,4,0,Flagship
417
+ 415,Realme,P1 Speed 5G 128GB,185g,8.0,16MP,64.0,MediaTek Dimensity 8100,5100.0,6.7,250.0,2024,4,1,Camera-focused
418
+ 416,Realme,P1 Speed 5G 256GB,185g,12.0,16MP,64.0,MediaTek Dimensity 8100,5100.0,6.7,270.0,2024,4,1,Camera-focused
419
+ 417,Realme,P2 Pro 5G 256GB,188g,12.0,32MP,50.0,Qualcomm Snapdragon 7+ Gen 3,5500.0,6.78,340.0,2024,4,1,Camera-focused
420
+ 418,Realme,P2 Pro 5G 512GB,188g,16.0,32MP,50.0,Qualcomm Snapdragon 7+ Gen 3,5500.0,6.78,360.0,2024,4,0,Flagship
421
+ 419,Realme,P1 5G 128GB,184g,6.0,16MP,50.0,MediaTek Dimensity 6100+,5000.0,6.6,200.0,2024,3,1,Camera-focused
422
+ 420,Realme,P1 5G 256GB,184g,8.0,16MP,50.0,MediaTek Dimensity 6100+,5000.0,6.6,220.0,2024,3,1,Camera-focused
423
+ 421,Realme,P1 Pro 5G 128GB,190g,8.0,16MP,64.0,Qualcomm Snapdragon 7s Gen 1,5200.0,6.7,270.0,2024,4,1,Camera-focused
424
+ 422,Realme,P1 Pro 5G 256GB,190g,12.0,16MP,64.0,Qualcomm Snapdragon 7s Gen 1,5200.0,6.7,290.0,2024,4,1,Camera-focused
425
+ 423,Realme,Narzo 70 Turbo 5G 128GB,200g,8.0,16MP,50.0,MediaTek Dimensity 810,5000.0,6.6,240.0,2024,4,1,Camera-focused
426
+ 424,Realme,Narzo 70 Turbo 5G 256GB,200g,8.0,16MP,50.0,MediaTek Dimensity 810,5000.0,6.6,260.0,2024,4,1,Camera-focused
427
+ 425,Realme,Narzo N61 128GB,195g,6.0,16MP,50.0,MediaTek Helio G99,5000.0,6.5,180.0,2024,3,1,Camera-focused
428
+ 426,Realme,Narzo N63 128GB,193g,6.0,16MP,50.0,MediaTek Helio G88,5000.0,6.5,160.0,2024,2,2,Budget
429
+ 427,Realme,Narzo N65 5G 128GB,198g,8.0,16MP,50.0,MediaTek Dimensity 700,5000.0,6.6,210.0,2024,2,2,Budget
430
+ 428,Realme,Narzo 70 5G 128GB,198g,8.0,16MP,50.0,MediaTek Dimensity 810,5200.0,6.6,230.0,2024,4,1,Camera-focused
431
+ 429,Realme,C75 128GB,190g,6.0,8MP,50.0,MediaTek Helio G85,5000.0,6.6,160.0,2024,2,2,Budget
432
+ 430,Realme,C75 256GB,190g,8.0,8MP,50.0,MediaTek Helio G85,5000.0,6.6,180.0,2024,2,2,Budget
433
+ 431,Realme,C61 128GB,189g,4.0,8MP,50.0,Unisoc T612,5000.0,6.5,130.0,2024,1,2,Budget
434
+ 432,Realme,C67 128GB,195g,6.0,8MP,50.0,MediaTek Helio G88,5000.0,6.6,170.0,2024,2,2,Budget
435
+ 433,Realme,C67 256GB,195g,8.0,8MP,50.0,MediaTek Helio G88,5000.0,6.6,190.0,2024,2,2,Budget
436
+ 434,Realme,C65 128GB,192g,6.0,8MP,50.0,Qualcomm Snapdragon 680,5000.0,6.6,160.0,2024,3,1,Camera-focused
437
+ 435,Realme,C65 256GB,192g,8.0,8MP,50.0,Qualcomm Snapdragon 680,5000.0,6.6,180.0,2024,3,1,Camera-focused
438
+ 436,Realme,C63 128GB,191g,6.0,8MP,50.0,MediaTek Helio G85,5000.0,6.6,150.0,2024,2,2,Budget
439
+ 437,Realme,C55 128GB,189g,6.0,8MP,64.0,MediaTek Helio G88,5000.0,6.72,170.0,2023,2,2,Budget
440
+ 438,Realme,C55 256GB,189g,8.0,8MP,64.0,MediaTek Helio G88,5000.0,6.72,190.0,2023,2,2,Budget
441
+ 439,Realme,Note 60x 128GB,198g,6.0,16MP,50.0,MediaTek Dimensity 6100+,5200.0,6.6,210.0,2024,3,1,Camera-focused
442
+ 440,Realme,Note 60 128GB,196g,6.0,16MP,50.0,MediaTek Dimensity 810,5200.0,6.6,220.0,2024,4,1,Camera-focused
443
+ 441,Realme,Note 60 256GB,196g,8.0,16MP,50.0,MediaTek Dimensity 810,5200.0,6.6,240.0,2024,4,1,Camera-focused
444
+ 442,Realme,Note 50 128GB,195g,6.0,16MP,50.0,MediaTek Helio G99,5000.0,6.5,170.0,2024,3,1,Camera-focused
445
+ 443,Realme,GT 7 128GB,199g,8.0,16MP,50.0,Qualcomm Snapdragon 8 Gen 2,5200.0,6.8,440.0,2024,5,1,Camera-focused
446
+ 444,Realme,GT 7 256GB,199g,12.0,16MP,50.0,Qualcomm Snapdragon 8 Gen 2,5200.0,6.8,500.0,2024,5,0,Flagship
447
+ 445,Realme,Neo 7 128GB,193g,8.0,16MP,64.0,MediaTek Dimensity 8200,5000.0,6.7,330.0,2024,4,1,Camera-focused
448
+ 446,Realme,Neo 7 256GB,193g,12.0,16MP,64.0,MediaTek Dimensity 8200,5000.0,6.7,380.0,2024,4,1,Camera-focused
449
+ 447,Realme,P2 Pro 5G 128GB,195g,8.0,16MP,50.0,MediaTek Dimensity 9200,5100.0,6.7,350.0,2024,5,1,Camera-focused
450
+ 448,Realme,P2 Pro 5G 256GB,195g,12.0,16MP,50.0,MediaTek Dimensity 9200,5100.0,6.7,400.0,2024,5,0,Flagship
451
+ 449,Xiaomi,Xiaomi 15 Pro 256GB,210g,12.0,32MP,50.0,Snapdragon 8 Elite,6100.0,6.73,799.0,2024,5,0,Flagship
452
+ 450,Xiaomi,Xiaomi 15 Pro 512GB,210g,16.0,32MP,50.0,Snapdragon 8 Elite,6100.0,6.73,899.0,2024,5,0,Flagship
453
+ 451,Xiaomi,Xiaomi 15 Pro 1TB,210g,16.0,32MP,50.0,Snapdragon 8 Elite,6100.0,6.73,999.0,2024,5,0,Flagship
454
+ 452,Xiaomi,Xiaomi 15 256GB,190g,12.0,32MP,50.0,Snapdragon 8 Elite,5400.0,6.36,699.0,2024,5,0,Flagship
455
+ 453,Xiaomi,Xiaomi 15 512GB,190g,16.0,32MP,50.0,Snapdragon 8 Elite,5400.0,6.36,799.0,2024,5,0,Flagship
456
+ 454,Xiaomi,Xiaomi 14T Pro 256GB,209g,12.0,32MP,50.0,Dimensity 9300+,5000.0,6.67,634.99,2024,5,0,Flagship
457
+ 455,Xiaomi,Xiaomi 14T Pro 512GB,209g,12.0,32MP,50.0,Dimensity 9300+,5000.0,6.67,790.77,2024,5,0,Flagship
458
+ 456,Xiaomi,Xiaomi 14T Pro 1TB,209g,12.0,32MP,50.0,Dimensity 9300+,5000.0,6.67,899.0,2024,5,0,Flagship
459
+ 457,Xiaomi,Xiaomi 14T 256GB,195g,12.0,32MP,50.0,Dimensity 8300-Ultra,5000.0,6.67,599.0,2024,4,0,Flagship
460
+ 458,Xiaomi,Xiaomi 14T 512GB,195g,12.0,32MP,50.0,Dimensity 8300-Ultra,5000.0,6.67,699.0,2024,4,0,Flagship
461
+ 459,Xiaomi,Xiaomi 14 Pro 256GB,206g,12.0,32MP,50.0,Snapdragon 8 Gen 3,5000.0,6.73,799.0,2023,5,0,Flagship
462
+ 460,Xiaomi,Xiaomi 14 Pro 512GB,206g,12.0,32MP,50.0,Snapdragon 8 Gen 3,5000.0,6.73,899.0,2023,5,0,Flagship
463
+ 461,Xiaomi,Xiaomi 14 256GB,189g,12.0,32MP,50.0,Snapdragon 8 Gen 3,4610.0,6.36,699.0,2023,5,0,Flagship
464
+ 462,Xiaomi,Xiaomi 14 512GB,189g,12.0,32MP,50.0,Snapdragon 8 Gen 3,4610.0,6.36,799.0,2023,5,0,Flagship
465
+ 463,Xiaomi,Redmi Note 14 Pro+ 5G 128GB,205g,8.0,16MP,200.0,Snapdragon 7s Gen 3,5110.0,6.67,374.9,2024,4,1,Camera-focused
466
+ 464,Xiaomi,Redmi Note 14 Pro+ 5G 256GB,205g,12.0,16MP,200.0,Snapdragon 7s Gen 3,5110.0,6.67,399.0,2024,4,0,Flagship
467
+ 465,Xiaomi,Redmi Note 14 Pro+ 5G 512GB,205g,16.0,16MP,200.0,Snapdragon 7s Gen 3,5110.0,6.67,429.0,2024,4,0,Flagship
468
+ 466,Xiaomi,Redmi Note 14 Pro 5G 128GB,195g,8.0,16MP,108.0,MediaTek Dimensity 7300-Ultra,5500.0,6.67,349.0,2024,3,1,Camera-focused
469
+ 467,Xiaomi,Redmi Note 14 Pro 5G 256GB,195g,12.0,16MP,108.0,MediaTek Dimensity 7300-Ultra,5500.0,6.67,379.0,2024,3,1,Camera-focused
470
+ 468,Xiaomi,Redmi Note 14 Pro 4G 128GB,190g,6.0,16MP,108.0,Qualcomm Snapdragon 732G,5000.0,6.67,299.0,2024,4,1,Camera-focused
471
+ 469,Xiaomi,Redmi Note 14 Pro 4G 256GB,190g,8.0,16MP,108.0,Qualcomm Snapdragon 732G,5000.0,6.67,329.0,2024,4,1,Camera-focused
472
+ 470,Xiaomi,Redmi Note 14 5G 128GB,185g,6.0,16MP,50.0,MediaTek Dimensity 7025-Ultra,5000.0,6.67,279.0,2024,3,1,Camera-focused
473
+ 471,Xiaomi,Redmi Note 14 5G 256GB,185g,8.0,16MP,50.0,MediaTek Dimensity 7025-Ultra,5000.0,6.67,309.0,2024,3,1,Camera-focused
474
+ 472,Xiaomi,Redmi Note 14 4G 128GB,180g,4.0,16MP,50.0,Qualcomm Snapdragon 680,5000.0,6.67,249.0,2024,3,1,Camera-focused
475
+ 473,Xiaomi,Redmi Note 14 4G 256GB,180g,6.0,16MP,50.0,Qualcomm Snapdragon 680,5000.0,6.67,279.0,2024,3,1,Camera-focused
476
+ 474,Xiaomi,Redmi 14C 5G 64GB,195g,4.0,8MP,50.0,MediaTek Dimensity 700,5000.0,6.5,199.0,2024,2,2,Budget
477
+ 475,Xiaomi,Redmi 14C 5G 128GB,195g,6.0,8MP,50.0,MediaTek Dimensity 700,5000.0,6.5,229.0,2024,2,2,Budget
478
+ 476,Lenovo,Legion Y70 128GB,209g,8.0,16MP,50.0,Snapdragon 8+ Gen 1,5100.0,6.67,499.0,2022,5,0,Flagship
479
+ 477,Lenovo,Legion Y70 256GB,209g,12.0,16MP,50.0,Snapdragon 8+ Gen 1,5100.0,6.67,549.0,2022,5,0,Flagship
480
+ 478,Lenovo,Legion Y70 512GB,209g,16.0,16MP,50.0,Snapdragon 8+ Gen 1,5100.0,6.67,599.0,2022,5,0,Flagship
481
+ 479,Lenovo,K14 Plus 64GB,198g,4.0,8MP,48.0,Unisoc T700,5000.0,6.5,199.0,2022,1,2,Budget
482
+ 480,Lenovo,K14 Plus 128GB,198g,6.0,8MP,48.0,Unisoc T700,5000.0,6.5,229.0,2022,1,2,Budget
483
+ 481,Lenovo,K13 Pro 128GB,200g,6.0,16MP,64.0,Snapdragon 662,5000.0,6.8,249.0,2021,3,1,Camera-focused
484
+ 482,Lenovo,K13 32GB,190g,2.0,5MP,13.0,Unisoc SC9863A,5000.0,6.52,149.0,2021,1,2,Budget
485
+ 483,Lenovo,K13 Note 64GB,200g,4.0,8MP,48.0,Snapdragon 460,5000.0,6.5,199.0,2021,1,2,Budget
486
+ 484,Lenovo,K10 Plus 64GB,172g,4.0,16MP,13.0,Snapdragon 632,4050.0,6.22,179.0,2019,3,1,Camera-focused
487
+ 485,Lenovo,A6 Note 32GB,172g,3.0,5MP,13.0,Helio P22,4000.0,6.09,149.0,2019,1,2,Budget
488
+ 486,Lenovo,K10 Note 64GB,164g,4.0,16MP,16.0,Snapdragon 710,4050.0,6.3,219.0,2019,4,1,Camera-focused
489
+ 487,Lenovo,K10 Note 128GB,164g,6.0,16MP,16.0,Snapdragon 710,4050.0,6.3,249.0,2019,4,1,Camera-focused
490
+ 488,Lenovo,Z6 Pro 128GB,185g,6.0,32MP,48.0,Snapdragon 855,4000.0,6.39,429.0,2019,5,3,Gaming / Performance
491
+ 489,Lenovo,Z6 Pro 256GB,185g,8.0,32MP,48.0,Snapdragon 855,4000.0,6.39,479.0,2019,5,3,Gaming / Performance
492
+ 490,Lenovo,Z5 Pro 64GB,210g,6.0,16MP,16.0,Snapdragon 710,3350.0,6.39,299.0,2018,4,3,Gaming / Performance
493
+ 491,Motorola,Edge 50 Fusion 128GB,168g,8.0,32MP,50.0,Snapdragon 7 Gen 1,5000.0,6.7,499.0,2024,4,1,Camera-focused
494
+ 492,Motorola,Edge 50 Fusion 256GB,168g,12.0,32MP,50.0,Snapdragon 7 Gen 1,5000.0,6.7,549.0,2024,4,0,Flagship
495
+ 493,Motorola,Edge 50 Pro 128GB,186g,8.0,50MP,50.0,Snapdragon 7 Gen 3,4500.0,6.7,549.0,2024,4,1,Camera-focused
496
+ 494,Motorola,Edge 50 Pro 256GB,186g,12.0,50MP,50.0,Snapdragon 7 Gen 3,4500.0,6.7,599.0,2024,4,0,Flagship
497
+ 495,Motorola,Razr 128GB,192g,8.0,32MP,50.0,Snapdragon 8+ Gen 1,3500.0,6.7,999.0,2023,5,3,Gaming / Performance
498
+ 496,Motorola,Razr 256GB,192g,12.0,32MP,50.0,Snapdragon 8+ Gen 1,3500.0,6.7,1099.0,2023,5,3,Gaming / Performance
499
+ 497,Motorola,G84 5G 128GB,166g,8.0,16MP,50.0,Snapdragon 695,5000.0,6.5,299.0,2023,3,1,Camera-focused
500
+ 498,Motorola,G84 5G 256GB,166g,12.0,16MP,50.0,Snapdragon 695,5000.0,6.5,349.0,2023,3,1,Camera-focused
501
+ 499,Motorola,Moto G Stylus 64GB,195g,4.0,16MP,50.0,MediaTek Helio G88,5000.0,6.8,199.0,2023,2,2,Budget
502
+ 500,Motorola,Moto G Stylus 128GB,195g,6.0,16MP,50.0,MediaTek Helio G88,5000.0,6.8,249.0,2023,2,2,Budget
503
+ 501,Motorola,One Vision 3 128GB,180g,6.0,25MP,48.0,Exynos 9609,3500.0,6.3,299.0,2024,3,1,Camera-focused
504
+ 502,Motorola,One Vision 3 256GB,180g,8.0,25MP,48.0,Exynos 9609,3500.0,6.3,349.0,2024,3,1,Camera-focused
505
+ 503,Motorola,Edge 50 Lite 128GB,170g,6.0,32MP,64.0,Snapdragon 695,5000.0,6.7,399.0,2024,3,1,Camera-focused
506
+ 504,Motorola,Edge 50 Lite 256GB,170g,8.0,32MP,64.0,Snapdragon 695,5000.0,6.7,449.0,2024,3,1,Camera-focused
507
+ 505,Motorola,Moto E40 Plus 64GB,198g,4.0,8MP,48.0,Unisoc T700,5000.0,6.5,199.0,2023,1,2,Budget
508
+ 506,Motorola,Moto E40 Plus 128GB,198g,6.0,8MP,48.0,Unisoc T700,5000.0,6.5,229.0,2023,1,2,Budget
509
+ 507,Motorola,Moto G Power 64GB,206g,4.0,16MP,50.0,Snapdragon 662,5000.0,6.6,249.0,2022,3,1,Camera-focused
510
+ 508,Motorola,Moto G Power 128GB,206g,6.0,16MP,50.0,Snapdragon 662,5000.0,6.6,279.0,2022,3,1,Camera-focused
511
+ 509,Motorola,Moto G Play 32GB,203g,3.0,5MP,13.0,MediaTek Helio G25,5000.0,6.5,149.0,2022,3,1,Camera-focused
512
+ 510,Motorola,Moto G Play 64GB,203g,4.0,5MP,13.0,MediaTek Helio G25,5000.0,6.5,179.0,2022,3,1,Camera-focused
513
+ 511,Motorola,Moto G75 5G 128GB,205g,8.0,16MP,50.0,Snapdragon 6 Gen 3,5000.0,6.78,320.0,2024,3,1,Camera-focused
514
+ 512,Motorola,Moto G75 5G 256GB,205g,8.0,16MP,50.0,Snapdragon 6 Gen 3,5000.0,6.78,370.0,2024,3,1,Camera-focused
515
+ 513,Motorola,Moto S50 128GB,190g,8.0,32MP,64.0,MediaTek Dimensity 8100,4500.0,6.7,300.0,2024,4,1,Camera-focused
516
+ 514,Motorola,Moto S50 256GB,190g,12.0,32MP,64.0,MediaTek Dimensity 8100,4500.0,6.7,350.0,2024,4,1,Camera-focused
517
+ 515,Motorola,Edge 50 Neo 256GB,171g,8.0,32MP,50.0,MediaTek Dimensity 7300,4310.0,6.4,400.0,2024,3,1,Camera-focused
518
+ 516,Motorola,Edge 50 Neo 512GB,171g,12.0,32MP,50.0,MediaTek Dimensity 7300,4310.0,6.4,450.0,2024,3,1,Camera-focused
519
+ 517,Motorola,Moto G55 128GB,182g,8.0,16MP,50.0,MediaTek Dimensity 7025,5000.0,6.49,270.0,2024,3,1,Camera-focused
520
+ 518,Motorola,Moto G55 256GB,182g,8.0,16MP,50.0,MediaTek Dimensity 7025,5000.0,6.49,320.0,2024,3,1,Camera-focused
521
+ 519,Motorola,Moto G35 128GB,188g,4.0,16MP,50.0,Unisoc T760,5000.0,6.72,200.0,2024,1,2,Budget
522
+ 520,Motorola,Moto G35 256GB,188g,8.0,16MP,50.0,Unisoc T760,5000.0,6.72,250.0,2024,1,2,Budget
523
+ 521,Motorola,Moto G45 128GB,183g,6.0,16MP,50.0,Snapdragon 6s Gen 3,5000.0,6.5,250.0,2024,3,1,Camera-focused
524
+ 522,Motorola,Moto G45 256GB,183g,8.0,16MP,50.0,Snapdragon 6s Gen 3,5000.0,6.5,300.0,2024,3,1,Camera-focused
525
+ 523,Motorola,Edge 50 256GB,180g,8.0,32MP,50.0,Snapdragon 7s Gen 2,4700.0,6.7,450.0,2024,4,1,Camera-focused
526
+ 524,Motorola,Edge 50 512GB,180g,12.0,32MP,50.0,Snapdragon 7s Gen 2,4700.0,6.7,500.0,2024,4,0,Flagship
527
+ 525,Motorola,Razr 50 Ultra 512GB,189g,12.0,32MP,50.0,Snapdragon 8+ Gen 1,4000.0,6.9,1199.0,2024,5,0,Flagship
528
+ 526,Motorola,Razr 50 256GB,188g,8.0,32MP,50.0,Snapdragon 7 Gen 1,3800.0,6.7,999.0,2024,4,3,Gaming / Performance
529
+ 527,Motorola,Moto G85 128GB,173g,8.0,32MP,50.0,Snapdragon 6s Gen 3,5000.0,6.67,320.0,2024,3,1,Camera-focused
530
+ 528,Motorola,Moto G85 256GB,173g,12.0,32MP,50.0,Snapdragon 6s Gen 3,5000.0,6.67,370.0,2024,3,1,Camera-focused
531
+ 529,Motorola,S50 Neo 256GB,170g,8.0,32MP,50.0,MediaTek Dimensity 7200,4300.0,6.5,300.0,2024,3,1,Camera-focused
532
+ 530,Motorola,S50 Neo 512GB,170g,12.0,32MP,50.0,MediaTek Dimensity 7200,4300.0,6.5,350.0,2024,3,1,Camera-focused
533
+ 531,Motorola,Moto E14 64GB,180g,4.0,8MP,13.0,Unisoc T606,5000.0,6.5,150.0,2024,1,2,Budget
534
+ 532,Motorola,Moto E14 128GB,180g,4.0,8MP,13.0,Unisoc T606,5000.0,6.5,180.0,2024,1,2,Budget
535
+ 533,Motorola,Edge 256GB,174g,8.0,32MP,50.0,Snapdragon 7s Gen 2,4700.0,6.7,450.0,2024,4,1,Camera-focused
536
+ 534,Motorola,Edge 512GB,174g,12.0,32MP,50.0,Snapdragon 7s Gen 2,4700.0,6.7,500.0,2024,4,0,Flagship
537
+ 535,Motorola,Moto X50 Ultra 512GB,198g,12.0,60MP,200.0,Snapdragon 8 Gen 3,5000.0,6.9,1499.0,2024,5,0,Flagship
538
+ 536,Motorola,Moto G Stylus 5G 256GB,195g,6.0,16MP,50.0,Snapdragon 6 Gen 1,5000.0,6.8,300.0,2024,3,1,Camera-focused
539
+ 537,Motorola,Moto G Stylus 5G 512GB,195g,8.0,16MP,50.0,Snapdragon 6 Gen 1,5000.0,6.8,350.0,2024,3,1,Camera-focused
540
+ 538,Motorola,Edge 50 Ultra 512GB,198g,12.0,60MP,200.0,Snapdragon 8 Gen 3,5000.0,6.9,1499.0,2024,5,0,Flagship
541
+ 539,Motorola,Edge 30 Fusion 128GB,168g,8.0,32MP,50.0,Snapdragon 888+ 5G,4400.0,6.55,699.0,2022,5,0,Flagship
542
+ 540,Motorola,Edge 30 Fusion 256GB,168g,12.0,32MP,50.0,Snapdragon 888+ 5G,4400.0,6.55,749.0,2022,5,0,Flagship
543
+ 541,Motorola,Edge 30 Neo 128GB,155g,6.0,32MP,64.0,Snapdragon 695 5G,4020.0,6.28,499.0,2022,3,1,Camera-focused
544
+ 542,Motorola,Edge 30 Neo 256GB,155g,8.0,32MP,64.0,Snapdragon 695 5G,4020.0,6.28,549.0,2022,3,1,Camera-focused
545
+ 543,Motorola,Moto G82 5G 128GB,173g,6.0,16MP,50.0,Snapdragon 695 5G,5000.0,6.6,399.0,2022,3,1,Camera-focused
546
+ 544,Motorola,Moto G82 5G 256GB,173g,8.0,16MP,50.0,Snapdragon 695 5G,5000.0,6.6,449.0,2022,3,1,Camera-focused
547
+ 545,Motorola,Moto G62 5G 128GB,184g,4.0,16MP,50.0,Snapdragon 480+ 5G,5000.0,6.5,349.0,2022,1,2,Budget
548
+ 546,Motorola,Moto G62 5G 256GB,184g,6.0,16MP,50.0,Snapdragon 480+ 5G,5000.0,6.5,399.0,2022,1,2,Budget
549
+ 547,Motorola,Moto G42 128GB,175g,4.0,16MP,50.0,Snapdragon 680 4G,5000.0,6.4,299.0,2022,3,1,Camera-focused
550
+ 548,Motorola,Moto G32 128GB,184g,4.0,16MP,50.0,Snapdragon 680 4G,5000.0,6.5,279.0,2022,3,1,Camera-focused
551
+ 549,Motorola,Moto E32s 64GB,185g,3.0,8MP,16.0,MediaTek Helio G37,5000.0,6.5,199.0,2022,3,1,Camera-focused
552
+ 550,Motorola,Moto E22i 32GB,169g,2.0,5MP,16.0,MediaTek Helio G37,4020.0,6.5,179.0,2022,3,1,Camera-focused
553
+ 551,Motorola,Moto E22 64GB,169g,4.0,5MP,16.0,MediaTek Helio G37,4020.0,6.5,199.0,2022,3,1,Camera-focused
554
+ 552,Motorola,Moto G22 64GB,185g,4.0,16MP,50.0,MediaTek Helio G37,5000.0,6.5,249.0,2022,3,1,Camera-focused
555
+ 553,Huawei,P50,181g,8.0,13MP,50.0,Snapdragon 888 4G,4100.0,6.5,699.0,2021,5,3,Gaming / Performance
556
+ 554,Huawei,P50 Pro,195g,8.0,13MP,50.0,Snapdragon 888 4G,4360.0,6.6,899.0,2021,5,0,Flagship
557
+ 555,Huawei,P50 Pocket,190g,8.0,10.7MP,40.0,Snapdragon 888 4G,4000.0,6.9,1299.0,2021,5,3,Gaming / Performance
558
+ 556,Huawei,Mate 40E,188g,8.0,13MP,64.0,Kirin 990E 5G,4200.0,6.5,799.0,2021,4,0,Flagship
559
+ 557,Huawei,Nova 9,175g,8.0,32MP,50.0,Snapdragon 778G 4G,4300.0,6.57,499.0,2021,4,1,Camera-focused
560
+ 558,Huawei,Nova 9 Pro,186g,8.0,Dual 32MP,50.0,Snapdragon 778G 4G,4000.0,6.72,599.0,2021,4,3,Gaming / Performance
561
+ 559,Huawei,P50E,181g,8.0,13MP,50.0,Snapdragon 778G 4G,4100.0,6.5,649.0,2022,4,3,Gaming / Performance
562
+ 560,Huawei,Mate 50,202g,8.0,13MP,50.0,Snapdragon 8+ Gen 1 4G,4460.0,6.7,999.0,2022,5,0,Flagship
563
+ 561,Huawei,Mate 50 Pro,205g,8.0,13MP,50.0,Snapdragon 8+ Gen 1 4G,4700.0,6.74,1199.0,2022,5,0,Flagship
564
+ 562,Huawei,Nova 10,168g,8.0,60MP,50.0,Snapdragon 778G 4G,4000.0,6.67,499.0,2022,4,3,Gaming / Performance
565
+ 563,Huawei,Nova 10 Pro,191g,8.0,Dual 60MP,50.0,Snapdragon 778G 4G,4500.0,6.78,599.0,2022,4,1,Camera-focused
566
+ 564,Huawei,Nova 10 SE,184g,8.0,16MP,108.0,Snapdragon 680 4G,4500.0,6.67,399.0,2022,3,1,Camera-focused
567
+ 565,Huawei,P60,197g,8.0,13MP,48.0,Snapdragon 8+ Gen 1 4G,4815.0,6.67,999.0,2023,5,0,Flagship
568
+ 566,Huawei,P60 Pro,200g,8.0,13MP,48.0,Snapdragon 8+ Gen 1 4G,4815.0,6.67,1099.0,2023,5,0,Flagship
569
+ 567,Huawei,P60 Art,206g,8.0,13MP,48.0,Snapdragon 8+ Gen 1 4G,5100.0,6.73,1299.0,2023,5,0,Flagship
570
+ 568,Huawei,Mate 60,209g,12.0,13MP,50.0,Kirin 9000S,4750.0,6.7,1099.0,2023,5,0,Flagship
571
+ 569,Huawei,Mate 60 Pro,225g,12.0,13MP,50.0,Kirin 9000S,5000.0,6.82,1299.0,2023,5,0,Flagship
572
+ 570,Huawei,Mate 60 Pro+,235g,12.0,13MP,50.0,Kirin 9000S,5200.0,6.82,1499.0,2023,5,0,Flagship
573
+ 571,Huawei,Nova 11,168g,8.0,60MP,50.0,Snapdragon 778G 4G,4500.0,6.7,499.0,2023,4,1,Camera-focused
574
+ 572,Huawei,Nova 11 Pro,188g,8.0,60MP (ultrawide) + 8MP (telephoto),50.0,Snapdragon 778G 4G,4500.0,6.78,599.0,2023,4,1,Camera-focused
575
+ 573,Huawei,Nova 11 Ultra,188g,12.0,60MP (ultrawide) + 8MP (telephoto),50.0,Snapdragon 778G 4G,4500.0,6.78,699.0,2023,4,0,Flagship
576
+ 574,Huawei,Pura 70,220g,12.0,13MP,50.0,Kirin 9010,4900.0,6.8,999.0,2024,5,0,Flagship
577
+ 575,Huawei,Pura 70 Pro,220g,12.0,13MP,50.0,Kirin 9010,5050.0,6.8,1099.0,2024,5,0,Flagship
578
+ 576,Huawei,Pura 70 Pro+,220g,12.0,13MP,50.0,Kirin 9010,5050.0,6.8,1199.0,2024,5,0,Flagship
579
+ 577,Huawei,Pura 70 Ultra,226g,16.0,13MP,50.0,Kirin 9010,5200.0,6.8,1299.0,2024,5,0,Flagship
580
+ 578,Huawei,Mate 70,220g,12.0,13MP,50.0,Kirin 9010,4900.0,6.7,899.0,2024,5,0,Flagship
581
+ 579,Huawei,Mate 70 Pro,220g,12.0,13MP,50.0,Kirin 9010,5000.0,6.8,999.0,2024,5,0,Flagship
582
+ 580,Huawei,Mate 70 Pro+,220g,12.0,13MP,50.0,Kirin 9010,5000.0,6.8,1099.0,2024,5,0,Flagship
583
+ 581,Huawei,Nova 12,168g,8.0,60MP,50.0,Kirin 9000S,4500.0,6.7,499.0,2024,5,0,Flagship
584
+ 582,Huawei,Nova 12 Pro,188g,8.0,60MP + 8MP,50.0,Kirin 9000S,4500.0,6.78,599.0,2024,5,0,Flagship
585
+ 583,Huawei,Nova 13 256GB,170g,8.0,50MP,50.0,Kirin 9000S,4600.0,6.7,529.0,2024,5,0,Flagship
586
+ 584,Huawei,Nova 13 512GB,170g,8.0,50MP,50.0,Kirin 9000S,4600.0,6.7,599.0,2024,5,0,Flagship
587
+ 585,Huawei,Nova 13 Pro 256GB,190g,8.0,60MP + 8MP,50.0,Kirin 9000S,4600.0,6.78,649.0,2024,5,0,Flagship
588
+ 586,Huawei,Nova 13 Pro 512GB,190g,8.0,60MP + 8MP,50.0,Kirin 9000S,4600.0,6.78,729.0,2024,5,0,Flagship
589
+ 587,Nokia,G42 5G 128GB,193g,4.0,8MP,50.0,Snapdragon 480+,5000.0,6.56,229.0,2023,1,2,Budget
590
+ 588,Nokia,G20 64GB,197g,4.0,8MP,48.0,MediaTek G35,5050.0,6.52,169.0,2021,3,1,Camera-focused
591
+ 589,Nokia,G20 128GB,197g,4.0,8MP,48.0,MediaTek G35,5050.0,6.52,189.0,2021,3,1,Camera-focused
592
+ 590,Nokia,C32 64GB,199g,3.0,8MP,50.0,Unisoc SC9863A,5000.0,6.52,139.0,2023,1,2,Budget
593
+ 591,Nokia,C32 128GB,199g,4.0,8MP,50.0,Unisoc SC9863A,5000.0,6.52,159.0,2023,1,2,Budget
594
+ 592,Nokia,G21 64GB,190g,4.0,8MP,50.0,Unisoc T606,5050.0,6.5,169.0,2022,1,2,Budget
595
+ 593,Nokia,G21 128GB,190g,6.0,8MP,50.0,Unisoc T606,5050.0,6.5,189.0,2022,1,2,Budget
596
+ 594,Nokia,C22 64GB,190g,2.0,8MP,13.0,Unisoc SC9863A,5000.0,6.5,119.0,2023,1,2,Budget
597
+ 595,Nokia,C22 128GB,190g,3.0,8MP,13.0,Unisoc SC9863A,5000.0,6.5,139.0,2023,1,2,Budget
598
+ 596,Nokia,G400 128GB,198g,6.0,16MP,48.0,Snapdragon 480,5000.0,6.58,239.0,2022,1,2,Budget
599
+ 597,Sony,Xperia 1 IV 256GB,185g,12.0,12MP,12.0,Snapdragon 8 Gen 1,5000.0,6.5,1599.0,2022,5,0,Flagship
600
+ 598,Sony,Xperia 5 IV 128GB,172g,8.0,12MP,12.0,Snapdragon 8 Gen 1,5000.0,6.1,999.0,2022,5,0,Flagship
601
+ 599,Sony,Xperia 10 IV 128GB,161g,6.0,8MP,12.0,Snapdragon 695,5000.0,6.0,499.0,2022,3,1,Camera-focused
602
+ 600,Sony,Xperia 1 V 256GB,187g,12.0,12MP,48.0,Snapdragon 8 Gen 2,5000.0,6.5,1699.0,2023,5,0,Flagship
603
+ 601,Sony,Xperia 5 V 128GB,178g,8.0,12MP,48.0,Snapdragon 8 Gen 2,5000.0,6.1,1099.0,2023,5,0,Flagship
604
+ 602,Sony,Xperia 10 V 128GB,164g,6.0,8MP,48.0,Snapdragon 695,5000.0,6.1,599.0,2023,3,1,Camera-focused
605
+ 603,Sony,Xperia 1 VI 256GB,190g,12.0,12MP,48.0,Snapdragon 8 Gen 3,5000.0,6.5,1799.0,2024,5,0,Flagship
606
+ 604,Sony,Xperia 5 VI 128GB,180g,8.0,12MP,48.0,Snapdragon 8 Gen 3,5000.0,6.1,1199.0,2024,5,0,Flagship
607
+ 605,Sony,Xperia 10 VI 128GB,167g,6.0,8MP,48.0,Snapdragon 7 Gen 1,5000.0,6.1,699.0,2024,4,1,Camera-focused
608
+ 606,Google,Pixel 3a 64GB,147g,4.0,8MP,12.2,Snapdragon 670,3000.0,5.6,399.0,2019,3,3,Gaming / Performance
609
+ 607,Google,Pixel 3a XL 64GB,167g,4.0,8MP,12.2,Snapdragon 670,3700.0,6.0,479.0,2019,3,3,Gaming / Performance
610
+ 608,Google,Pixel 4 64GB,162g,6.0,8MP,12.2,Snapdragon 855,2800.0,5.7,799.0,2019,5,3,Gaming / Performance
611
+ 609,Google,Pixel 4 XL 64GB,193g,6.0,8MP,12.2,Snapdragon 855,3700.0,6.3,899.0,2019,5,3,Gaming / Performance
612
+ 610,Google,Pixel 4a 128GB,143g,6.0,8MP,12.2,Snapdragon 730G,3140.0,5.8,349.0,2020,4,3,Gaming / Performance
613
+ 611,Google,Pixel 4a 5G 128GB,168g,6.0,8MP,12.2,Snapdragon 765G,3885.0,6.2,499.0,2020,4,3,Gaming / Performance
614
+ 612,Google,Pixel 5 128GB,151g,8.0,8MP,12.2,Snapdragon 765G,4080.0,6.0,699.0,2020,4,3,Gaming / Performance
615
+ 613,Google,Pixel 5a 128GB,183g,6.0,8MP,12.2,Snapdragon 765G,4680.0,6.34,449.0,2021,4,1,Camera-focused
616
+ 614,Google,Pixel 6 128GB,207g,8.0,8MP,50.0,Google Tensor,4614.0,6.4,699.0,2021,3,1,Camera-focused
617
+ 615,Google,Pixel 6 Pro 256GB,210g,12.0,11.1MP,50.0,Google Tensor,5003.0,6.71,899.0,2021,3,0,Flagship
618
+ 616,Google,Pixel 6a 128GB,178g,6.0,8MP,12.2,Google Tensor,4410.0,6.1,449.0,2022,3,1,Camera-focused
619
+ 617,Google,Pixel 7 128GB,197g,8.0,10.8MP,50.0,Google Tensor G2,4355.0,6.3,599.0,2022,3,1,Camera-focused
620
+ 618,Google,Pixel 7 Pro 256GB,212g,12.0,10.8MP,50.0,Google Tensor G2,5000.0,6.7,899.0,2022,3,0,Flagship
621
+ 619,Google,Pixel 7a 128GB,193g,8.0,10.8MP,64.0,Google Tensor G2,4385.0,6.1,499.0,2023,3,1,Camera-focused
622
+ 620,Google,Pixel 8 128GB,187g,8.0,10.5MP,50.0,Google Tensor G3,4575.0,6.2,699.0,2023,3,1,Camera-focused
623
+ 621,Google,Pixel 8 Pro 256GB,213g,12.0,10.5MP,50.0,Google Tensor G3,5050.0,6.7,999.0,2023,3,0,Flagship
624
+ 622,Google,Pixel 8a 128GB,194g,8.0,10.5MP,64.0,Google Tensor G3,4385.0,6.1,549.0,2024,3,1,Camera-focused
625
+ 623,Google,Pixel 9 128GB,195g,8.0,10.8MP,50.0,Google Tensor G4,4600.0,6.3,799.0,2024,3,1,Camera-focused
626
+ 624,Google,Pixel 9 Pro 256GB,216g,12.0,10.8MP,50.0,Google Tensor G4,5050.0,6.7,1099.0,2024,3,0,Flagship
627
+ 625,Google,Pixel 9 Pro XL 512GB,222g,16.0,10.8MP,50.0,Google Tensor G4,5250.0,6.8,1299.0,2024,3,0,Flagship
628
+ 626,Tecno,Spark Go 1S 64GB,190g,4.0,8MP,13.0,MediaTek Helio A22,5000.0,6.6,129.0,2024,1,2,Budget
629
+ 627,Tecno,Pop 9 4G 64GB,195g,3.0,5MP,8.0,Unisoc SC9863A,5000.0,6.52,99.0,2024,1,2,Budget
630
+ 628,Tecno,Camon 30S 256GB,198g,8.0,32MP,50.0,MediaTek Dimensity 810,5200.0,6.8,499.0,2024,4,1,Camera-focused
631
+ 629,Tecno,Spark 30C 5G 128GB,200g,6.0,16MP,50.0,MediaTek Dimensity 6100+,5000.0,6.6,199.0,2024,3,1,Camera-focused
632
+ 630,Tecno,Spark 30 5G 128GB,195g,6.0,16MP,50.0,MediaTek Dimensity 6020,5000.0,6.6,229.0,2024,3,1,Camera-focused
633
+ 631,Tecno,Pop 9 64GB,190g,3.0,5MP,8.0,Unisoc SC9832E,5000.0,6.52,89.0,2024,1,2,Budget
634
+ 632,Tecno,Spark 30 Pro 256GB,205g,8.0,32MP,50.0,MediaTek Helio G99,5200.0,6.8,269.0,2024,3,1,Camera-focused
635
+ 633,Tecno,Spark 30 128GB,192g,4.0,16MP,50.0,MediaTek Helio G85,5000.0,6.6,179.0,2024,2,2,Budget
636
+ 634,Tecno,Phantom V Flip2 256GB,195g,8.0,32MP,50.0,MediaTek Dimensity 8050,4300.0,6.9,999.0,2024,4,3,Gaming / Performance
637
+ 635,Tecno,Pova 6 Neo 5G 256GB,225g,8.0,16MP,50.0,MediaTek Dimensity 810,6000.0,6.8,349.0,2024,4,1,Camera-focused
638
+ 636,Tecno,Spark 30C 128GB,190g,4.0,16MP,50.0,MediaTek Helio G85,5000.0,6.6,149.0,2024,2,2,Budget
639
+ 637,Tecno,Spark Go 1 64GB,195g,3.0,5MP,8.0,Unisoc SC9863A,5000.0,6.52,99.0,2024,1,2,Budget
640
+ 638,Tecno,Camon 30S Pro 512GB,202g,12.0,50MP,108.0,MediaTek Dimensity 9200,5200.0,6.9,1099.0,2024,5,0,Flagship
641
+ 639,Tecno,Spark 20P 128GB,195g,4.0,16MP,50.0,MediaTek Helio G85,5000.0,6.6,179.0,2024,2,2,Budget
642
+ 640,Tecno,Spark 20 Pro 5G 256GB,210g,8.0,32MP,50.0,MediaTek Dimensity 810,5200.0,6.8,329.0,2024,4,1,Camera-focused
643
+ 641,Tecno,Pova 6 Neo 256GB,230g,8.0,16MP,50.0,MediaTek Helio G99,6000.0,6.8,299.0,2024,3,1,Camera-focused
644
+ 642,Tecno,Camon 30 Premier 512GB,210g,12.0,50MP,108.0,MediaTek Dimensity 9200,5200.0,6.9,1199.0,2024,5,0,Flagship
645
+ 643,Tecno,Camon 30 Pro 512GB,205g,12.0,50MP,64.0,MediaTek Dimensity 8200,5200.0,6.8,899.0,2024,4,0,Flagship
646
+ 644,Tecno,Camon 30 5G 256GB,198g,8.0,32MP,50.0,MediaTek Dimensity 810,5000.0,6.7,499.0,2024,4,1,Camera-focused
647
+ 645,Tecno,Camon 30 128GB,195g,6.0,32MP,50.0,MediaTek Helio G99,5000.0,6.7,349.0,2024,3,1,Camera-focused
648
+ 646,Tecno,Pova 6 Pro 512GB,230g,12.0,32MP,64.0,MediaTek Dimensity 8100,6000.0,6.9,1099.0,2024,4,0,Flagship
649
+ 647,Tecno,Spark 20 Pro+ 256GB,210g,8.0,32MP,50.0,MediaTek Helio G99,5200.0,6.8,269.0,2024,3,1,Camera-focused
650
+ 648,Tecno,Spark 20 Pro 128GB,195g,6.0,16MP,50.0,MediaTek Helio G85,5000.0,6.6,199.0,2024,2,2,Budget
651
+ 649,Tecno,Spark 20 128GB,192g,4.0,16MP,50.0,MediaTek Helio G85,5000.0,6.6,179.0,2024,2,2,Budget
652
+ 650,Tecno,Spark 20C 128GB,190g,4.0,16MP,50.0,MediaTek Helio G85,5000.0,6.6,149.0,2024,2,2,Budget
653
+ 651,Tecno,Spark Go 2024 64GB,195g,3.0,5MP,8.0,Unisoc SC9863A,5000.0,6.52,99.0,2024,1,2,Budget
654
+ 652,Tecno,Pop 8 64GB,195g,3.0,5MP,8.0,Unisoc SC9832E,5000.0,6.52,89.0,2024,1,2,Budget
655
+ 653,Tecno,Camon 20s Pro 5G 512GB,202g,12.0,50MP,108.0,MediaTek Dimensity 9200,5200.0,6.9,1099.0,2024,5,0,Flagship
656
+ 654,Tecno,Camon 20s Pro 256GB,202g,12.0,50MP,108.0,MediaTek Dimensity 810,5200.0,6.9,899.0,2024,4,0,Flagship
657
+ 655,Tecno,Camon 20s 256GB,200g,8.0,32MP,50.0,MediaTek Helio G99,5000.0,6.7,449.0,2024,3,1,Camera-focused
658
+ 656,Tecno,Camon 20 Premier 512GB,205g,12.0,50MP,108.0,MediaTek Dimensity 8200,5200.0,6.8,1049.0,2024,4,0,Flagship
659
+ 657,Tecno,Camon 20 Pro 5G 256GB,200g,8.0,32MP,50.0,MediaTek Dimensity 810,5000.0,6.7,499.0,2024,4,1,Camera-focused
660
+ 658,Tecno,Camon 20 Pro 128GB,198g,6.0,32MP,50.0,MediaTek Helio G99,5000.0,6.7,349.0,2024,3,1,Camera-focused
661
+ 659,Tecno,Camon 20 128GB,195g,6.0,32MP,50.0,MediaTek Helio G99,5000.0,6.7,349.0,2024,3,1,Camera-focused
662
+ 660,Tecno,Pova 5G 512GB,240g,8.0,32MP,50.0,MediaTek Dimensity 900,6000.0,6.9,699.0,2024,5,0,Flagship
663
+ 661,Tecno,Pova 5 256GB,230g,8.0,16MP,50.0,MediaTek Helio G99,6000.0,6.8,329.0,2024,3,1,Camera-focused
664
+ 662,Infinix,Hot 50,192g,6.0,8MP,50.0,MediaTek Helio G85,5000.0,6.78,219.0,2024,2,2,Budget
665
+ 663,Infinix,Hot 50i,190g,4.0,8MP,50.0,Unisoc T606,5000.0,6.6,179.0,2024,1,2,Budget
666
+ 664,Infinix,Hot 50 5G,195g,8.0,16MP,50.0,MediaTek Dimensity 810,5200.0,6.78,289.0,2024,4,1,Camera-focused
667
+ 665,Infinix,Hot 50 Pro,194g,8.0,16MP,50.0,MediaTek Helio G99,5000.0,6.8,269.0,2024,3,1,Camera-focused
668
+ 666,Infinix,Hot 50 Pro+,196g,12.0,32MP,108.0,MediaTek Dimensity 9200,5300.0,6.9,379.0,2024,5,0,Flagship
669
+ 667,Infinix,GT 20 Pro,198g,12.0,32MP,108.0,MediaTek Dimensity 8200,5500.0,6.9,449.0,2024,4,0,Flagship
670
+ 668,Infinix,Note 40X 5G,198g,8.0,32MP,108.0,MediaTek Dimensity 7200,5200.0,6.8,349.0,2024,3,1,Camera-focused
671
+ 669,Infinix,Note 40S,196g,8.0,32MP,50.0,MediaTek Helio G99,5000.0,6.78,279.0,2024,3,1,Camera-focused
672
+ 670,Infinix,Note 40 5G,195g,8.0,32MP,108.0,MediaTek Dimensity 8100,5200.0,6.8,319.0,2024,4,1,Camera-focused
673
+ 671,Infinix,Note 40 Pro 5G,195g,12.0,32MP,108.0,MediaTek Dimensity 9000,5300.0,6.8,399.0,2024,5,0,Flagship
674
+ 672,Infinix,Note 40 Racing Edition,196g,12.0,32MP,108.0,MediaTek Dimensity 9200,5500.0,6.9,449.0,2024,5,0,Flagship
675
+ 673,Infinix,Hot 40,196g,8.0,32MP,50.0,MediaTek Helio G88,5000.0,6.78,199.0,2023,2,2,Budget
676
+ 674,Infinix,Hot 40i,195g,4.0,8MP,13.0,Unisoc T606,5000.0,6.6,159.0,2023,1,2,Budget
677
+ 675,Infinix,Hot 40 Pro,195g,8.0,32MP,108.0,MediaTek Helio G99,5000.0,6.78,229.0,2023,3,1,Camera-focused
678
+ 676,Infinix,Zero 40,195g,12.0,50MP,108.0,MediaTek Dimensity 8200,5000.0,6.78,349.0,2024,4,1,Camera-focused
679
+ 677,Infinix,Zero 40 5G,195g,12.0,50MP,108.0,MediaTek Dimensity 8200,5000.0,6.78,379.0,2024,4,1,Camera-focused
680
+ 678,Infinix,Zero Flip,190g,8.0,32MP,108.0,Qualcomm Snapdragon 778G,4500.0,6.7,399.0,2024,4,1,Camera-focused
681
+ 679,Infinix,Note 40,190g,8.0,32MP,108.0,MediaTek Helio G99,5000.0,6.78,279.0,2024,3,1,Camera-focused
682
+ 680,Infinix,Note 40 Pro,190g,12.0,32MP,108.0,MediaTek Dimensity 8100,5000.0,6.78,329.0,2024,4,1,Camera-focused
683
+ 681,Infinix,Hot 30 128GB,196g,8.0,8MP,50.0,MediaTek Helio G88,5000.0,6.78,199.0,2023,2,2,Budget
684
+ 682,Infinix,Hot 30i 128GB,191g,4.0,8MP,13.0,Unisoc T606,5000.0,6.6,159.0,2023,1,2,Budget
685
+ 683,Infinix,Hot 30i NFC 128GB,191g,4.0,8MP,13.0,Unisoc T606,5000.0,6.6,159.0,2023,1,2,Budget
686
+ 684,Infinix,Hot 30 Play 128GB,205g,4.0,8MP,16.0,MediaTek Helio G37,6000.0,6.82,179.0,2023,3,1,Camera-focused
687
+ 685,Infinix,Hot 30 5G 128GB,202g,8.0,8MP,50.0,MediaTek Dimensity 810,5000.0,6.78,239.0,2023,4,1,Camera-focused
688
+ 686,Infinix,Zero 30 256GB,185g,8.0,50MP,108.0,MediaTek Dimensity 8020,5000.0,6.78,349.0,2023,4,1,Camera-focused
689
+ 687,Infinix,Zero 30 5G 256GB,185g,12.0,50MP,108.0,MediaTek Dimensity 8020,5000.0,6.78,379.0,2023,4,1,Camera-focused
690
+ 688,Infinix,GT 10 Pro 256GB,187g,8.0,32MP,108.0,MediaTek Dimensity 8050,5000.0,6.67,399.0,2023,4,1,Camera-focused
691
+ 689,Infinix,Hot 12 128GB,195g,6.0,8MP,13.0,MediaTek Helio G85,5000.0,6.82,179.0,2022,2,2,Budget
692
+ 690,Infinix,Hot 12 Play 128GB,209g,4.0,8MP,13.0,Unisoc T610,6000.0,6.82,159.0,2022,1,2,Budget
693
+ 691,Infinix,Hot 12 Pro 128GB,191g,8.0,8MP,50.0,Unisoc T616,5000.0,6.6,199.0,2022,1,2,Budget
694
+ 692,Infinix,Hot 12i 64GB,190g,4.0,8MP,13.0,MediaTek Helio A22,5000.0,6.6,139.0,2022,1,2,Budget
695
+ 693,Infinix,Hot 20 128GB,198g,6.0,8MP,50.0,MediaTek Helio G85,5000.0,6.82,199.0,2022,2,2,Budget
696
+ 694,Infinix,Hot 20 Play 128GB,209g,4.0,8MP,13.0,MediaTek Helio G37,6000.0,6.82,159.0,2022,3,1,Camera-focused
697
+ 695,Infinix,Hot 20s 128GB,202g,8.0,8MP,50.0,MediaTek Helio G96,5000.0,6.78,219.0,2022,3,1,Camera-focused
698
+ 696,Infinix,Hot 20 5G 128GB,204g,6.0,8MP,50.0,MediaTek Dimensity 810,5000.0,6.6,239.0,2022,4,1,Camera-focused
699
+ 697,Infinix,Hot 20i 64GB,195g,4.0,8MP,13.0,MediaTek Helio G25,5000.0,6.6,139.0,2022,3,1,Camera-focused
700
+ 698,Infinix,Hot 10T 128GB,205g,4.0,8MP,48.0,MediaTek Helio G70,5000.0,6.82,149.0,2021,3,1,Camera-focused
701
+ 699,Infinix,Hot 10S 128GB,211g,6.0,8MP,48.0,MediaTek Helio G85,6000.0,6.82,169.0,2021,2,2,Budget
702
+ 700,Infinix,Hot 10S NFC 128GB,211g,6.0,8MP,48.0,MediaTek Helio G85,6000.0,6.82,179.0,2021,2,2,Budget
703
+ 701,Infinix,Hot 10 Lite 64GB,195g,3.0,8MP,13.0,MediaTek Helio A25,5000.0,6.6,109.0,2020,1,2,Budget
704
+ 702,Infinix,Hot 10 Play 64GB,207g,4.0,8MP,13.0,MediaTek Helio G25,6000.0,6.82,139.0,2021,3,1,Camera-focused
705
+ 703,Infinix,Hot 11 128GB,201g,4.0,8MP,13.0,MediaTek Helio G70,5200.0,6.6,159.0,2021,3,1,Camera-focused
706
+ 704,Infinix,Hot 11 Play 128GB,209g,4.0,8MP,13.0,MediaTek Helio G35,6000.0,6.82,169.0,2021,3,1,Camera-focused
707
+ 705,Infinix,Hot 11s 128GB,205g,6.0,8MP,50.0,MediaTek Helio G88,5000.0,6.78,189.0,2021,2,2,Budget
708
+ 706,Infinix,Smart HD 32GB,195g,2.0,5MP,8.0,MediaTek Helio A20,5000.0,6.1,79.0,2020,1,2,Budget
709
+ 707,Infinix,Note 8i 128GB,210g,6.0,8MP,48.0,MediaTek Helio G80,5200.0,6.78,199.0,2020,2,2,Budget
710
+ 708,Infinix,Hot 10 Lite 64GB,195g,3.0,8MP,13.0,MediaTek Helio A25,5000.0,6.6,109.0,2020,1,2,Budget
711
+ 709,Infinix,Note 8 128GB,210g,6.0,16MP,64.0,MediaTek Helio G80,5200.0,6.95,229.0,2020,2,2,Budget
712
+ 710,Infinix,Zero 8i 128GB,210g,8.0,16MP,48.0,MediaTek Helio G90T,4500.0,6.85,249.0,2020,3,1,Camera-focused
713
+ 711,Infinix,Hot 10 128GB,204g,4.0,8MP,16.0,MediaTek Helio G70,5200.0,6.78,159.0,2020,3,1,Camera-focused
714
+ 712,Infinix,Zero 8 128GB,205g,8.0,48MP,64.0,MediaTek Helio G90T,4500.0,6.85,279.0,2020,3,1,Camera-focused
715
+ 713,Infinix,Smart 5 64GB,195g,3.0,8MP,13.0,MediaTek Helio A20,5000.0,6.6,99.0,2020,1,2,Budget
716
+ 714,Honor,9X Lite,175g,4.0,8MP,48.0,Kirin 710F,3750.0,6.5,219.0,2020,3,1,Camera-focused
717
+ 715,Honor,30,185g,8.0,32MP,40.0,Kirin 985 5G,4000.0,6.53,449.0,2020,3,1,Camera-focused
718
+ 716,Honor,30 Pro,190g,8.0,32MP,50.0,Kirin 990 5G,4000.0,6.57,599.0,2020,4,3,Gaming / Performance
719
+ 717,Honor,30 Pro+,192g,12.0,32MP,50.0,Kirin 990 5G,4000.0,6.57,699.0,2020,4,0,Flagship
720
+ 718,Honor,30S,190g,6.0,16MP,64.0,Kirin 820 5G,4000.0,6.5,349.0,2020,3,1,Camera-focused
721
+ 719,Honor,X10,203g,6.0,16MP,40.0,Kirin 820 5G,4300.0,6.63,319.0,2020,3,1,Camera-focused
722
+ 720,Honor,X10 Max,227g,8.0,8MP,48.0,MediaTek Dimensity 800,5000.0,7.09,379.0,2020,4,1,Camera-focused
723
+ 721,Honor,Play 4,213g,6.0,16MP,64.0,MediaTek Dimensity 800,4300.0,6.81,349.0,2020,4,1,Camera-focused
724
+ 722,Honor,Play 4 Pro,213g,8.0,32MP,40.0,Kirin 990 5G,4200.0,6.57,549.0,2020,4,3,Gaming / Performance
725
+ 723,Honor,10X Lite,206g,4.0,8MP,48.0,Kirin 710A,5000.0,6.67,229.0,2020,3,1,Camera-focused
726
+ 724,Honor,V40,189g,8.0,16MP,50.0,MediaTek Dimensity 1000+,4000.0,6.72,599.0,2021,3,1,Camera-focused
727
+ 725,Honor,50,175g,8.0,32MP,108.0,Qualcomm Snapdragon 778G,4300.0,6.57,549.0,2021,4,1,Camera-focused
728
+ 726,Honor,50 Pro,187g,8.0,32MP,108.0,Qualcomm Snapdragon 778G,4000.0,6.72,649.0,2021,4,0,Flagship
729
+ 727,Honor,50 SE,191g,8.0,16MP,108.0,MediaTek Dimensity 900,4000.0,6.78,449.0,2021,5,0,Flagship
730
+ 728,Honor,X20,192g,6.0,16MP,64.0,MediaTek Dimensity 900,4300.0,6.67,379.0,2021,5,1,Camera-focused
731
+ 729,Honor,X20 SE,179g,6.0,16MP,64.0,MediaTek Dimensity 700,4000.0,6.6,299.0,2021,2,2,Budget
732
+ 730,Honor,Play 5,179g,8.0,16MP,64.0,MediaTek Dimensity 800U,3800.0,6.53,319.0,2021,4,1,Camera-focused
733
+ 731,Honor,Play 5T,191g,6.0,8MP,13.0,Unisoc T610,5000.0,6.5,219.0,2021,1,2,Budget
734
+ 732,Honor,Magic3,202g,8.0,13MP,50.0,Qualcomm Snapdragon 888,4600.0,6.76,899.0,2021,5,0,Flagship
735
+ 733,Honor,Magic3 Pro,213g,8.0,13MP,50.0,Qualcomm Snapdragon 888+,4600.0,6.76,1099.0,2021,5,0,Flagship
736
+ 734,Honor,Magic3 Pro+,236g,12.0,13MP,50.0,Qualcomm Snapdragon 888+,4600.0,6.76,1299.0,2021,5,0,Flagship
737
+ 735,Honor,60,179g,8.0,32MP,108.0,Qualcomm Snapdragon 778G,4800.0,6.67,549.0,2021,4,1,Camera-focused
738
+ 736,Honor,60 Pro,192g,8.0,50MP,108.0,Qualcomm Snapdragon 778G+,4800.0,6.78,649.0,2021,4,0,Flagship
739
+ 737,Honor,60 SE,191g,8.0,16MP,64.0,MediaTek Dimensity 900,4300.0,6.67,449.0,2021,5,0,Flagship
740
+ 738,Honor,X30,189g,6.0,16MP,48.0,Qualcomm Snapdragon 695,4800.0,6.81,379.0,2021,3,1,Camera-focused
741
+ 739,Honor,X30i,175g,6.0,16MP,48.0,MediaTek Dimensity 810,4000.0,6.7,299.0,2021,4,1,Camera-focused
742
+ 740,Honor,X30 Max,228g,8.0,8MP,64.0,MediaTek Dimensity 900,5000.0,7.09,499.0,2021,5,0,Flagship
743
+ 741,Honor,Play 6,190g,6.0,5MP,13.0,MediaTek MT6762G Helio G25,5000.0,6.52,179.0,2022,3,1,Camera-focused
744
+ 742,Honor,Play 6T,198g,6.0,5MP,13.0,MediaTek Dimensity 700,5000.0,6.74,229.0,2022,2,2,Budget
745
+ 743,Honor,Magic4,199g,8.0,12MP,50.0,Qualcomm Snapdragon 8 Gen 1,4800.0,6.81,899.0,2022,5,0,Flagship
746
+ 744,Honor,Magic4 Pro,215g,8.0,12MP,50.0,Qualcomm Snapdragon 8 Gen 1,4600.0,6.81,1099.0,2022,5,0,Flagship
747
+ 745,Honor,Magic4 Ultimate,242g,12.0,12MP,50.0,Qualcomm Snapdragon 8 Gen 1,4600.0,6.81,1299.0,2022,5,0,Flagship
748
+ 746,Honor,70,178g,8.0,32MP,54.0,Qualcomm Snapdragon 778G+,4800.0,6.67,549.0,2022,4,1,Camera-focused
749
+ 747,Honor,70 Pro,192g,8.0,50MP,54.0,MediaTek Dimensity 8000,4500.0,6.78,699.0,2022,4,0,Flagship
750
+ 748,Honor,70 Pro+,209g,12.0,50MP,54.0,MediaTek Dimensity 9000,4500.0,6.78,799.0,2022,5,0,Flagship
751
+ 749,Honor,X40,172g,6.0,8MP,50.0,Qualcomm Snapdragon 695,5100.0,6.67,299.0,2022,3,1,Camera-focused
752
+ 750,Honor,X40i,175g,6.0,8MP,50.0,MediaTek Dimensity 700,4000.0,6.7,279.0,2022,2,2,Budget
753
+ 751,Honor,Play 7,196g,4.0,5MP,13.0,MediaTek Helio G37,5200.0,6.74,159.0,2023,3,1,Camera-focused
754
+ 752,Honor,Play 7T,199g,6.0,5MP,13.0,MediaTek Dimensity 6020,5200.0,6.74,199.0,2023,3,1,Camera-focused
755
+ 753,Honor,Magic5,204g,8.0,12MP,50.0,Qualcomm Snapdragon 8 Gen 2,5100.0,6.81,999.0,2023,5,0,Flagship
756
+ 754,Honor,Magic5 Pro,219g,12.0,12MP,50.0,Qualcomm Snapdragon 8 Gen 2,5100.0,6.81,1199.0,2023,5,0,Flagship
757
+ 755,Honor,Magic5 Ultimate,234g,16.0,12MP,50.0,Qualcomm Snapdragon 8 Gen 2,5450.0,6.81,1399.0,2023,5,0,Flagship
758
+ 756,Honor,80,180g,8.0,32MP,160.0,Qualcomm Snapdragon 782G,4800.0,6.67,549.0,2022,4,1,Camera-focused
759
+ 757,Honor,80 Pro,193g,12.0,50MP,160.0,Qualcomm Snapdragon 8+ Gen 1,4800.0,6.78,799.0,2022,5,0,Flagship
760
+ 758,Honor,80 SE,175g,8.0,32MP,64.0,MediaTek Dimensity 900,4600.0,6.67,399.0,2022,5,1,Camera-focused
761
+ 759,Honor,X50,185g,6.0,8MP,108.0,Qualcomm Snapdragon 6 Gen 1,5800.0,6.78,299.0,2023,3,1,Camera-focused
762
+ 760,Honor,X50i,179g,6.0,8MP,100.0,MediaTek Dimensity 6020,4500.0,6.7,249.0,2023,3,1,Camera-focused
763
+ 761,Honor,Play 8,191g,4.0,5MP,13.0,MediaTek Helio G36,5000.0,6.52,149.0,2023,3,1,Camera-focused
764
+ 762,Honor,Play 8T,195g,6.0,5MP,50.0,MediaTek Dimensity 6100+,5200.0,6.74,189.0,2023,3,1,Camera-focused
765
+ 763,Honor,Magic6,203g,8.0,12MP,50.0,Qualcomm Snapdragon 8 Gen 3,5200.0,6.81,1099.0,2024,5,0,Flagship
766
+ 764,Honor,Magic6 Pro,219g,12.0,12MP,50.0,Qualcomm Snapdragon 8 Gen 3,5500.0,6.81,1299.0,2024,5,0,Flagship
767
+ 765,Honor,Magic6 Ultimate,234g,16.0,12MP,50.0,Qualcomm Snapdragon 8 Gen 3,5550.0,6.81,1499.0,2024,5,0,Flagship
768
+ 766,Honor,90,183g,12.0,50MP,200.0,Qualcomm Snapdragon 7 Gen 1,5000.0,6.7,599.0,2023,4,0,Flagship
769
+ 767,Honor,90 Pro,192g,12.0,50MP,200.0,Qualcomm Snapdragon 8+ Gen 1,5000.0,6.78,699.0,2023,5,0,Flagship
770
+ 768,Honor,90 SE,175g,8.0,32MP,64.0,MediaTek Dimensity 900,4600.0,6.67,399.0,2023,5,1,Camera-focused
771
+ 769,Honor,X60,185g,6.0,8MP,108.0,Qualcomm Snapdragon 6 Gen 1,5800.0,6.78,299.0,2023,3,1,Camera-focused
772
+ 770,Honor,X60i,179g,6.0,8MP,100.0,MediaTek Dimensity 6020,4500.0,6.7,249.0,2023,3,1,Camera-focused
773
+ 771,Honor,Play 9,191g,4.0,5MP,13.0,MediaTek Helio G36,5000.0,6.52,149.0,2023,3,1,Camera-focused
774
+ 772,Honor,Play 9T,195g,6.0,5MP,50.0,MediaTek Dimensity 6100+,5200.0,6.74,189.0,2023,3,1,Camera-focused
775
+ 773,Honor,Magic7,203g,8.0,12MP,50.0,Qualcomm Snapdragon 8 Gen 3,5200.0,6.81,1099.0,2024,5,0,Flagship
776
+ 774,Honor,Magic7 Pro,219g,12.0,12MP,50.0,Qualcomm Snapdragon 8 Gen 3,5500.0,6.81,1299.0,2024,5,0,Flagship
777
+ 775,Honor,Magic7 Ultimate,234g,16.0,12MP,50.0,Qualcomm Snapdragon 8 Gen 3,5550.0,6.81,1499.0,2024,5,0,Flagship
778
+ 776,POCO,F2 Pro 128GB,219g,6.0,20MP,64.0,Snapdragon 865,4700.0,6.67,499.0,2020,5,1,Camera-focused
779
+ 777,POCO,M2 Pro 64GB,209g,4.0,16MP,48.0,Snapdragon 720G,5000.0,6.67,199.0,2020,4,1,Camera-focused
780
+ 778,POCO,X3 NFC 128GB,215g,6.0,20MP,64.0,Snapdragon 732G,5160.0,6.67,229.0,2020,4,1,Camera-focused
781
+ 779,POCO,M3 64GB,198g,4.0,8MP,48.0,Snapdragon 662,6000.0,6.53,149.0,2020,3,1,Camera-focused
782
+ 780,POCO,F3 128GB,196g,6.0,20MP,48.0,Snapdragon 870,4520.0,6.67,349.0,2021,5,1,Camera-focused
783
+ 781,POCO,X3 Pro 128GB,215g,6.0,20MP,48.0,Snapdragon 860,5160.0,6.67,249.0,2021,5,1,Camera-focused
784
+ 782,POCO,M3 Pro 5G 64GB,190g,4.0,8MP,48.0,MediaTek Dimensity 700,5000.0,6.5,199.0,2021,2,2,Budget
785
+ 783,POCO,F3 GT 128GB,205g,6.0,16MP,64.0,MediaTek Dimensity 1200,5065.0,6.67,399.0,2021,3,1,Camera-focused
786
+ 784,POCO,X3 GT 128GB,193g,6.0,16MP,64.0,MediaTek Dimensity 1100,5000.0,6.6,279.0,2021,3,1,Camera-focused
787
+ 785,POCO,M4 Pro 5G 128GB,195g,4.0,16MP,50.0,MediaTek Dimensity 810,5000.0,6.6,219.0,2021,4,1,Camera-focused
788
+ 786,POCO,F4 128GB,195g,6.0,20MP,64.0,Snapdragon 870,4500.0,6.67,349.0,2022,5,1,Camera-focused
789
+ 787,POCO,F4 GT 128GB,210g,8.0,20MP,64.0,Snapdragon 8 Gen 1,4700.0,6.67,499.0,2022,5,0,Flagship
790
+ 788,POCO,X4 Pro 5G 128GB,205g,6.0,16MP,108.0,Snapdragon 695,5000.0,6.67,299.0,2022,3,1,Camera-focused
791
+ 789,POCO,M4 Pro 128GB,179g,6.0,16MP,64.0,MediaTek Helio G96,5000.0,6.43,219.0,2022,3,1,Camera-focused
792
+ 790,POCO,M5 128GB,201g,4.0,5MP,50.0,MediaTek Helio G99,5000.0,6.58,199.0,2022,3,1,Camera-focused
793
+ 791,POCO,M5s 128GB,178.8g,4.0,13MP,64.0,MediaTek Helio G95,5000.0,6.43,229.0,2022,3,1,Camera-focused
794
+ 792,POCO,F5 128GB,181g,6.0,16MP,64.0,Snapdragon 7+ Gen 2,5000.0,6.67,349.0,2023,4,1,Camera-focused
795
+ 793,POCO,F5 Pro 256GB,204g,8.0,20MP,64.0,Snapdragon 8+ Gen 1,5160.0,6.67,499.0,2023,5,0,Flagship
796
+ 794,POCO,X5 128GB,189g,6.0,13MP,48.0,Snapdragon 695,5000.0,6.67,279.0,2023,3,1,Camera-focused
797
+ 795,POCO,X5 Pro 128GB,181g,6.0,16MP,108.0,Snapdragon 778G,5000.0,6.67,329.0,2023,4,1,Camera-focused
798
+ 796,POCO,M6 64GB,199g,4.0,8MP,50.0,MediaTek Helio G88,5000.0,6.58,199.0,2023,2,2,Budget
799
+ 797,POCO,M6 Pro 128GB,202g,6.0,8MP,50.0,Snapdragon 4 Gen 1,5000.0,6.79,219.0,2023,2,2,Budget
800
+ 798,POCO,X6 128GB,193g,6.0,16MP,64.0,MediaTek Dimensity 8100,5000.0,6.67,349.0,2024,4,1,Camera-focused
801
+ 799,POCO,X6 Pro 256GB,205g,8.0,20MP,108.0,MediaTek Dimensity 8300,5000.0,6.67,399.0,2024,4,1,Camera-focused
802
+ 800,POCO,F6 128GB,190g,6.0,20MP,64.0,Snapdragon 8 Gen 2,5000.0,6.67,449.0,2024,5,1,Camera-focused
803
+ 801,POCO,F6 Pro 256GB,210g,8.0,20MP,108.0,Snapdragon 8+ Gen 2,5160.0,6.67,549.0,2024,5,0,Flagship
804
+ 802,POCO,C65 64GB,190g,4.0,5MP,50.0,MediaTek Helio G85,5000.0,6.5,149.0,2024,2,2,Budget
805
+ 803,POCO,X7 128GB,195g,6.0,16MP,64.0,MediaTek Dimensity 8200,5000.0,6.67,329.0,2025,4,1,Camera-focused
806
+ 804,POCO,X7 Pro 256GB,207g,8.0,20MP,108.0,MediaTek Dimensity 8400,6000.0,6.67,399.0,2025,4,1,Camera-focused
807
+ 805,POCO,M7 5G 128GB,198g,6.0,8MP,50.0,MediaTek Dimensity 7025,5110.0,6.67,229.0,2024,3,1,Camera-focused
eda.py ADDED
File without changes
feat_df_clean.csv ADDED
@@ -0,0 +1,807 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ,price_norm,ram_norm,battery_norm,battery_efficiency,camera_norm,cpu_tier_norm,price_to_perf
2
+ 0,0.41860465116279066,0.33333333333333337,0.35555555555555557,0.3403673377533887,0.20833333333333334,1.0,0.2094411285946826
3
+ 1,0.4476744186046511,0.33333333333333337,0.35555555555555557,0.3403673377533887,0.20833333333333334,1.0,0.19613821138211385
4
+ 2,0.4767441860465116,0.33333333333333337,0.35555555555555557,0.3403673377533887,0.20833333333333334,1.0,0.18442427138079315
5
+ 3,0.4767441860465116,0.33333333333333337,0.4888888888888889,0.4060584091159829,0.20833333333333334,1.0,0.18442427138079315
6
+ 4,0.5058139534883721,0.33333333333333337,0.4888888888888889,0.4060584091159829,0.20833333333333334,1.0,0.17403065825067626
7
+ 5,0.5348837209302325,0.33333333333333337,0.4888888888888889,0.4060584091159829,0.20833333333333334,1.0,0.16474605206999574
8
+ 6,0.5348837209302325,0.33333333333333337,0.5333333333333334,0.5751034327557258,0.21874999999999997,1.0,0.16474605206999574
9
+ 7,0.563953488372093,0.4666666666666667,0.5333333333333334,0.5751034327557258,0.21874999999999997,1.0,0.15640194489465153
10
+ 8,0.5930232558139534,0.4666666666666667,0.5333333333333334,0.5751034327557258,0.21874999999999997,1.0,0.14886232163517163
11
+ 9,0.5930232558139534,0.33333333333333337,0.5555555555555556,0.48620151617834795,0.20833333333333334,1.0,0.14886232163517163
12
+ 10,0.6511627906976744,0.4666666666666667,0.5555555555555556,0.48620151617834795,0.20833333333333334,1.0,0.1357720717551882
13
+ 11,0.7093023255813953,0.4666666666666667,0.5555555555555556,0.48620151617834795,0.20833333333333334,1.0,0.12479793081150987
14
+ 12,0.41860465116279066,0.33333333333333337,0.26666666666666666,0.22299929025222032,0.20833333333333334,1.0,0.2094411285946826
15
+ 13,0.4476744186046511,0.33333333333333337,0.26666666666666666,0.22299929025222032,0.20833333333333334,1.0,0.19613821138211385
16
+ 14,0.5058139534883721,0.33333333333333337,0.26666666666666666,0.22299929025222032,0.20833333333333334,1.0,0.17403065825067626
17
+ 15,0.4767441860465116,0.33333333333333337,0.5111111111111111,0.4327727781367714,0.20833333333333334,1.0,0.18442427138079315
18
+ 16,0.5348837209302325,0.33333333333333337,0.5111111111111111,0.4327727781367714,0.20833333333333334,1.0,0.16474605206999574
19
+ 17,0.563953488372093,0.33333333333333337,0.5111111111111111,0.4327727781367714,0.20833333333333334,1.0,0.15640194489465153
20
+ 18,0.5930232558139534,0.33333333333333337,0.5333333333333334,0.5751034327557258,0.20833333333333334,1.0,0.14886232163517163
21
+ 19,0.6511627906976744,0.4666666666666667,0.5333333333333334,0.5751034327557258,0.20833333333333334,1.0,0.1357720717551882
22
+ 20,0.7093023255813953,0.4666666666666667,0.5333333333333334,0.5751034327557258,0.20833333333333334,1.0,0.12479793081150987
23
+ 21,0.6511627906976744,0.33333333333333337,0.5555555555555556,0.48620151617834795,0.20833333333333334,1.0,0.1357720717551882
24
+ 22,0.7093023255813953,0.4666666666666667,0.5555555555555556,0.48620151617834795,0.20833333333333334,1.0,0.12479793081150987
25
+ 23,0.7674418604651162,0.4666666666666667,0.5555555555555556,0.48620151617834795,0.20833333333333334,1.0,0.11546515106192044
26
+ 24,0.41860465116279066,0.33333333333333337,0.26666666666666666,0.22299929025222032,0.020833333333333336,1.0,0.2094411285946826
27
+ 25,0.4476744186046511,0.33333333333333337,0.26666666666666666,0.22299929025222032,0.020833333333333336,1.0,0.19613821138211385
28
+ 26,0.5058139534883721,0.33333333333333337,0.26666666666666666,0.22299929025222032,0.020833333333333336,1.0,0.17403065825067626
29
+ 27,0.4767441860465116,0.33333333333333337,0.5166666666666666,0.43945137039196847,0.020833333333333336,1.0,0.18442427138079315
30
+ 28,0.5348837209302325,0.33333333333333337,0.5166666666666666,0.43945137039196847,0.020833333333333336,1.0,0.16474605206999574
31
+ 29,0.563953488372093,0.33333333333333337,0.5166666666666666,0.43945137039196847,0.020833333333333336,1.0,0.15640194489465153
32
+ 30,0.5930232558139534,0.33333333333333337,0.4888888888888889,0.5164194090051415,0.20833333333333334,1.0,0.14886232163517163
33
+ 31,0.6511627906976744,0.4666666666666667,0.4888888888888889,0.5164194090051415,0.20833333333333334,1.0,0.1357720717551882
34
+ 32,0.7093023255813953,0.4666666666666667,0.4888888888888889,0.5164194090051415,0.20833333333333334,1.0,0.12479793081150987
35
+ 33,0.6511627906976744,0.33333333333333337,0.5555555555555556,0.48620151617834795,0.20833333333333334,1.0,0.1357720717551882
36
+ 34,0.7093023255813953,0.4666666666666667,0.5555555555555556,0.48620151617834795,0.20833333333333334,1.0,0.12479793081150987
37
+ 35,0.7674418604651162,0.4666666666666667,0.5555555555555556,0.48620151617834795,0.20833333333333334,1.0,0.11546515106192044
38
+ 36,0.36046511627906974,0.2,0.09733333333333333,0.09214478470022291,0.020833333333333336,1.0,0.2423101067168864
39
+ 37,0.41860465116279066,0.2,0.09733333333333333,0.09214478470022291,0.020833333333333336,1.0,0.2094411285946826
40
+ 38,0.4767441860465116,0.2,0.09733333333333333,0.09214478470022291,0.020833333333333336,1.0,0.18442427138079315
41
+ 39,0.41860465116279066,0.2,0.2755555555555556,0.23473609500233716,0.020833333333333336,1.0,0.2094411285946826
42
+ 40,0.4767441860465116,0.2,0.2755555555555556,0.23473609500233716,0.020833333333333336,1.0,0.18442427138079315
43
+ 41,0.5348837209302325,0.2,0.2755555555555556,0.23473609500233716,0.020833333333333336,1.0,0.16474605206999574
44
+ 42,0.5348837209302325,0.33333333333333337,0.24333333333333335,0.1921901777831635,0.020833333333333336,1.0,0.16474605206999574
45
+ 43,0.5930232558139534,0.33333333333333337,0.24333333333333335,0.1921901777831635,0.020833333333333336,1.0,0.14886232163517163
46
+ 44,0.6511627906976744,0.33333333333333337,0.24333333333333335,0.1921901777831635,0.020833333333333336,1.0,0.1357720717551882
47
+ 45,0.5930232558139534,0.33333333333333337,0.5226666666666666,0.44666425002758126,0.020833333333333336,1.0,0.14886232163517163
48
+ 46,0.6511627906976744,0.33333333333333337,0.5226666666666666,0.44666425002758126,0.020833333333333336,1.0,0.1357720717551882
49
+ 47,0.7674418604651162,0.33333333333333337,0.5226666666666666,0.44666425002758126,0.020833333333333336,1.0,0.11546515106192044
50
+ 48,0.36046511627906974,0.2,0.05044444444444446,0.022207556024873898,0.020833333333333336,1.0,0.2423101067168864
51
+ 49,0.41860465116279066,0.2,0.05044444444444446,0.022207556024873898,0.020833333333333336,1.0,0.2094411285946826
52
+ 50,0.4767441860465116,0.2,0.05044444444444446,0.022207556024873898,0.020833333333333336,1.0,0.18442427138079315
53
+ 51,0.41860465116279066,0.2,0.18111111111111106,0.11003254453234546,0.020833333333333336,1.0,0.2094411285946826
54
+ 52,0.4767441860465116,0.2,0.18111111111111106,0.11003254453234546,0.020833333333333336,1.0,0.18442427138079315
55
+ 53,0.5348837209302325,0.2,0.18111111111111106,0.11003254453234546,0.020833333333333336,1.0,0.16474605206999574
56
+ 54,0.5348837209302325,0.33333333333333337,0.18111111111111106,0.11003254453234546,0.020833333333333336,1.0,0.16474605206999574
57
+ 55,0.5930232558139534,0.33333333333333337,0.18111111111111106,0.11003254453234546,0.020833333333333336,1.0,0.14886232163517163
58
+ 56,0.6511627906976744,0.33333333333333337,0.18111111111111106,0.11003254453234546,0.020833333333333336,1.0,0.1357720717551882
59
+ 57,0.5930232558139534,0.33333333333333337,0.3748888888888889,0.26901369603933867,0.020833333333333336,1.0,0.14886232163517163
60
+ 58,0.6511627906976744,0.33333333333333337,0.3748888888888889,0.26901369603933867,0.020833333333333336,1.0,0.1357720717551882
61
+ 59,0.7674418604651162,0.33333333333333337,0.3748888888888889,0.26901369603933867,0.020833333333333336,1.0,0.11546515106192044
62
+ 60,0.36046511627906974,0.2,0.24666666666666665,0.19659147956445722,0.020833333333333336,0.75,0.1817325800376648
63
+ 61,0.41860465116279066,0.2,0.24666666666666665,0.19659147956445722,0.020833333333333336,0.75,0.15708084644601195
64
+ 62,0.4767441860465116,0.2,0.24666666666666665,0.19659147956445722,0.020833333333333336,0.75,0.13831820353559485
65
+ 63,0.5348837209302325,0.2,0.2324444444444444,0.22404143757054962,0.020833333333333336,0.75,0.12355953905249682
66
+ 64,0.5930232558139534,0.2,0.2324444444444444,0.22404143757054962,0.020833333333333336,0.75,0.11164674122637873
67
+ 65,0.6511627906976744,0.2,0.2324444444444444,0.22404143757054962,0.020833333333333336,0.75,0.10182905381639115
68
+ 66,0.5930232558139534,0.2,0.43755555555555553,0.3769726261067339,0.020833333333333336,0.75,0.11164674122637873
69
+ 67,0.6511627906976744,0.2,0.43755555555555553,0.3769726261067339,0.020833333333333336,0.75,0.10182905381639115
70
+ 68,0.7674418604651162,0.2,0.43755555555555553,0.3769726261067339,0.020833333333333336,0.75,0.08659886329644034
71
+ 69,0.5348837209302325,0.13333333333333336,0.15911111111111115,0.12220442049302704,0.020833333333333336,0.25,0.041186513017498934
72
+ 70,0.5930232558139534,0.13333333333333336,0.15911111111111115,0.12220442049302704,0.020833333333333336,0.25,0.03721558040879291
73
+ 71,0.5348837209302325,0.2,0.1462222222222222,0.10430579324909883,0.020833333333333336,0.75,0.12355953905249682
74
+ 72,0.5930232558139534,0.2,0.1462222222222222,0.10430579324909883,0.020833333333333336,0.75,0.11164674122637873
75
+ 73,0.7093023255813953,0.2,0.1462222222222222,0.10430579324909883,0.020833333333333336,0.75,0.0935984481086324
76
+ 74,0.5930232558139534,0.2,0.2608888888888889,0.15805864673868908,0.020833333333333336,0.75,0.11164674122637873
77
+ 75,0.6802325581395349,0.2,0.2608888888888889,0.15805864673868908,0.020833333333333336,0.75,0.09754043126684636
78
+ 76,0.7674418604651162,0.2,0.2608888888888889,0.15805864673868908,0.020833333333333336,0.75,0.08659886329644034
79
+ 77,0.3895348837209302,0.13333333333333336,0.20933333333333332,0.14729689961396653,0.020833333333333336,0.75,0.16850989522700816
80
+ 78,0.41860465116279066,0.13333333333333336,0.20933333333333332,0.14729689961396653,0.020833333333333336,0.75,0.15708084644601195
81
+ 79,0.4767441860465116,0.13333333333333336,0.20933333333333332,0.14729689961396653,0.020833333333333336,0.75,0.13831820353559485
82
+ 80,0.6511627906976744,0.7333333333333334,0.6666666666666667,0.6001304428846514,0.9999999999999999,1.0,0.1357720717551882
83
+ 81,0.7093023255813953,0.7333333333333334,0.6666666666666667,0.6001304428846514,0.9999999999999999,1.0,0.12479793081150987
84
+ 82,0.4767441860465116,0.4666666666666667,0.6222222222222222,0.5857732552558321,0.21874999999999997,1.0,0.18442427138079315
85
+ 83,0.5348837209302325,0.4666666666666667,0.6222222222222222,0.5857732552558321,0.21874999999999997,1.0,0.16474605206999574
86
+ 84,0.41860465116279066,0.4666666666666667,0.4444444444444445,0.45773538525455715,0.21874999999999997,1.0,0.2094411285946826
87
+ 85,0.4767441860465116,0.4666666666666667,0.4444444444444445,0.45773538525455715,0.21874999999999997,1.0,0.18442427138079315
88
+ 86,0.6511627906976744,0.7333333333333334,0.6666666666666667,0.6001304428846514,0.9999999999999999,1.0,0.1357720717551882
89
+ 87,0.7093023255813953,0.7333333333333334,0.6666666666666667,0.6001304428846514,0.9999999999999999,1.0,0.12479793081150987
90
+ 88,0.4767441860465116,0.4666666666666667,0.6000000000000001,0.558654123068062,0.21874999999999997,1.0,0.18442427138079315
91
+ 89,0.5348837209302325,0.4666666666666667,0.6000000000000001,0.558654123068062,0.21874999999999997,1.0,0.16474605206999574
92
+ 90,0.41860465116279066,0.4666666666666667,0.4222222222222222,0.4283933733792651,0.21874999999999997,1.0,0.2094411285946826
93
+ 91,0.4767441860465116,0.4666666666666667,0.4222222222222222,0.4283933733792651,0.21874999999999997,1.0,0.18442427138079315
94
+ 92,0.5930232558139534,0.7333333333333334,0.6666666666666667,0.6001304428846514,0.5208333333333334,0.75,0.11164674122637873
95
+ 93,0.6511627906976744,0.7333333333333334,0.6666666666666667,0.6001304428846514,0.5208333333333334,0.75,0.10182905381639115
96
+ 94,0.41860465116279066,0.4666666666666667,0.5555555555555556,0.504415858692522,0.21874999999999997,0.75,0.15708084644601195
97
+ 95,0.4767441860465116,0.4666666666666667,0.5555555555555556,0.504415858692522,0.21874999999999997,0.75,0.13831820353559485
98
+ 96,0.36046511627906974,0.4666666666666667,0.39999999999999997,0.399051361503973,0.21874999999999997,0.75,0.1817325800376648
99
+ 97,0.41860465116279066,0.4666666666666667,0.39999999999999997,0.399051361503973,0.21874999999999997,0.75,0.15708084644601195
100
+ 98,0.5348837209302325,0.4666666666666667,0.3777777777777778,0.2724865640120411,0.020833333333333336,1.0,0.16474605206999574
101
+ 99,0.5930232558139534,0.4666666666666667,0.3777777777777778,0.2724865640120411,0.020833333333333336,1.0,0.14886232163517163
102
+ 100,0.5348837209302325,0.4666666666666667,0.3777777777777778,0.2724865640120411,0.020833333333333336,1.0,0.16474605206999574
103
+ 101,0.5930232558139534,0.4666666666666667,0.3777777777777778,0.2724865640120411,0.020833333333333336,1.0,0.14886232163517163
104
+ 102,0.18604651162790697,0.33333333333333337,0.6666666666666667,0.6823851636747624,0.21874999999999997,0.75,0.34341637010676157
105
+ 103,0.21511627906976744,0.33333333333333337,0.6666666666666667,0.6823851636747624,0.21874999999999997,0.75,0.2990702479338843
106
+ 104,0.1569767441860465,0.33333333333333337,0.6666666666666667,0.640011519631372,0.20833333333333334,0.5,0.26880222841225626
107
+ 105,0.18604651162790697,0.33333333333333337,0.6666666666666667,0.640011519631372,0.20833333333333334,0.5,0.22894424673784106
108
+ 106,0.12790697674418605,0.33333333333333337,0.6666666666666667,0.6608723905450411,0.21874999999999997,0.5,0.32546374367622255
109
+ 107,0.1569767441860465,0.33333333333333337,0.6666666666666667,0.6608723905450411,0.21874999999999997,0.5,0.26880222841225626
110
+ 108,0.09883720930232558,0.2,0.6666666666666667,0.640011519631372,0.21874999999999997,0.25,0.20619658119658124
111
+ 109,0.12790697674418605,0.2,0.6666666666666667,0.640011519631372,0.21874999999999997,0.25,0.16273187183811127
112
+ 110,0.06976744186046512,0.2,0.6666666666666667,0.6608723905450411,0.21874999999999997,0.25,0.2813411078717201
113
+ 111,0.09883720930232558,0.2,0.6666666666666667,0.6608723905450411,0.21874999999999997,0.25,0.20619658119658124
114
+ 112,0.1569767441860465,0.4666666666666667,0.8888888888888891,0.8869170514901732,0.5208333333333334,0.75,0.4032033426183844
115
+ 113,0.18604651162790697,0.4666666666666667,0.8888888888888891,0.8869170514901732,0.5208333333333334,0.75,0.34341637010676157
116
+ 114,0.12790697674418605,0.33333333333333337,0.8888888888888891,0.936235886605475,0.21874999999999997,0.5,0.32546374367622255
117
+ 115,0.1569767441860465,0.33333333333333337,0.8888888888888891,0.936235886605475,0.21874999999999997,0.5,0.26880222841225626
118
+ 116,0.09883720930232558,0.2,0.8888888888888891,0.9112028415090718,0.21874999999999997,0.25,0.20619658119658124
119
+ 117,0.12790697674418605,0.2,0.8888888888888891,0.9112028415090718,0.21874999999999997,0.25,0.16273187183811127
120
+ 118,0.06976744186046512,0.2,0.6666666666666667,0.6608723905450411,0.026041666666666664,0.0,0.0
121
+ 119,0.09883720930232558,0.2,0.6666666666666667,0.6608723905450411,0.026041666666666664,0.0,0.0
122
+ 120,0.1569767441860465,0.4666666666666667,0.8888888888888891,0.8869170514901732,0.5208333333333334,0.75,0.4032033426183844
123
+ 121,0.18604651162790697,0.4666666666666667,0.8888888888888891,0.8869170514901732,0.5208333333333334,0.75,0.34341637010676157
124
+ 122,0.12790697674418605,0.33333333333333337,0.8888888888888891,0.936235886605475,0.21874999999999997,0.5,0.32546374367622255
125
+ 123,0.1569767441860465,0.33333333333333337,0.8888888888888891,0.936235886605475,0.21874999999999997,0.5,0.26880222841225626
126
+ 124,0.09883720930232558,0.2,0.8888888888888891,0.9112028415090718,0.21874999999999997,0.25,0.20619658119658124
127
+ 125,0.12790697674418605,0.2,0.8888888888888891,0.9112028415090718,0.21874999999999997,0.25,0.16273187183811127
128
+ 126,0.7093023255813953,0.7333333333333334,0.5555555555555556,0.4513566870207979,0.5208333333333334,0.5,0.06239896540575494
129
+ 127,0.7674418604651162,0.7333333333333334,0.5555555555555556,0.4513566870207979,0.5208333333333334,0.5,0.05773257553096022
130
+ 128,0.5348837209302325,0.4666666666666667,0.5111111111111111,0.4327727781367714,0.5208333333333334,0.5,0.08237302603499787
131
+ 129,0.5930232558139534,0.4666666666666667,0.5111111111111111,0.4327727781367714,0.5208333333333334,0.5,0.07443116081758581
132
+ 130,0.5930232558139534,0.7333333333333334,0.5111111111111111,0.41587986831480217,0.041666666666666664,0.5,0.07443116081758581
133
+ 131,0.6511627906976744,0.7333333333333334,0.5111111111111111,0.41587986831480217,0.041666666666666664,0.5,0.0678860358775941
134
+ 132,0.5058139534883721,0.4666666666666667,0.3333333333333333,0.27842309046110525,0.041666666666666664,0.5,0.08701532912533813
135
+ 133,0.4767441860465116,0.4666666666666667,0.3333333333333333,0.27842309046110525,0.041666666666666664,0.5,0.09221213569039657
136
+ 134,0.2441860465116279,0.33333333333333337,0.45555555555555555,0.382379763847557,0.21874999999999997,0.75,0.26486733760292774
137
+ 135,0.09883720930232558,0.2,0.22222222222222227,0.29718475423880775,0.041666666666666664,0.25,0.20619658119658124
138
+ 136,0.06976744186046512,0.2,0.3333333333333333,0.3281414994720171,0.041666666666666664,0.0,0.0
139
+ 137,0.05813953488372092,0.13333333333333336,0.35555555555555557,0.4556014207545358,0.026041666666666664,0.25,0.32935153583617754
140
+ 138,0.05232558139534883,0.2,0.2888888888888889,0.26847940865892295,0.026041666666666664,0.0,0.0
141
+ 139,0.02906976744186046,0.06666666666666667,0.22222222222222227,0.260343669002592,0.026041666666666664,0.0,0.0
142
+ 140,0.18604651162790697,0.33333333333333337,0.4444444444444445,0.47729672650475186,0.041666666666666664,0.5,0.22894424673784106
143
+ 141,0.12790697674418605,0.2,0.2888888888888889,0.3202912243650309,0.041666666666666664,0.5,0.32546374367622255
144
+ 142,0.09883720930232558,0.2,0.13333333333333336,0.178986272439282,0.041666666666666664,0.25,0.20619658119658124
145
+ 143,0.41860465116279066,0.7333333333333334,0.6666666666666667,0.6197733612822898,0.21874999999999997,1.0,0.2094411285946826
146
+ 144,0.36046511627906974,0.7333333333333334,0.5555555555555556,0.48620151617834795,0.21874999999999997,1.0,0.2423101067168864
147
+ 145,0.36046511627906974,0.7333333333333334,0.6666666666666667,0.6197733612822898,0.21874999999999997,1.0,0.2423101067168864
148
+ 146,0.3023255813953488,0.7333333333333334,0.6666666666666667,0.6197733612822898,0.21874999999999997,1.0,0.2874162323157111
149
+ 147,0.2441860465116279,0.7333333333333334,0.6666666666666667,0.611846248813213,0.21874999999999997,1.0,0.35315645013723695
150
+ 148,0.18604651162790697,0.4666666666666667,0.6666666666666667,0.6157980087494344,0.21874999999999997,0.75,0.34341637010676157
151
+ 149,0.12790697674418605,0.4666666666666667,0.6666666666666667,0.6157980087494344,0.5208333333333334,0.5,0.32546374367622255
152
+ 150,0.09883720930232558,0.4666666666666667,0.6666666666666667,0.6157980087494344,0.29166666666666663,0.5,0.4123931623931625
153
+ 151,0.4767441860465116,0.7333333333333334,0.6666666666666667,0.6197733612822898,0.21874999999999997,1.0,0.18442427138079315
154
+ 152,0.3895348837209302,0.7333333333333334,0.5555555555555556,0.48620151617834795,0.21874999999999997,1.0,0.22467986030267756
155
+ 153,0.36046511627906974,0.7333333333333334,0.5555555555555556,0.48620151617834795,0.21874999999999997,1.0,0.2423101067168864
156
+ 154,0.3023255813953488,0.4666666666666667,0.5555555555555556,0.5137315911234355,0.21874999999999997,1.0,0.2874162323157111
157
+ 155,0.4767441860465116,1.0,0.6666666666666667,0.6197733612822898,0.21874999999999997,1.0,0.18442427138079315
158
+ 156,0.18604651162790697,0.4666666666666667,0.5555555555555556,0.5366804560854366,0.21874999999999997,0.5,0.22894424673784106
159
+ 157,0.1569767441860465,0.4666666666666667,0.5555555555555556,0.5366804560854366,0.21874999999999997,0.5,0.26880222841225626
160
+ 158,0.06976744186046512,0.2,0.6666666666666667,0.6629938350447362,0.026041666666666664,0.0,0.0
161
+ 159,0.05813953488372092,0.2,0.6666666666666667,0.6566490240410467,0.026041666666666664,0.0,0.0
162
+ 160,0.3895348837209302,0.7333333333333334,0.5555555555555556,0.5137315911234355,0.20833333333333334,1.0,0.22467986030267756
163
+ 161,0.3313953488372093,0.4666666666666667,0.5555555555555556,0.5137315911234355,0.21874999999999997,1.0,0.26294277929155313
164
+ 162,0.3023255813953488,0.7333333333333334,0.5555555555555556,0.5137315911234355,0.20833333333333334,1.0,0.2874162323157111
165
+ 163,0.3895348837209302,0.7333333333333334,0.5555555555555556,0.48620151617834795,0.21874999999999997,1.0,0.22467986030267756
166
+ 164,0.3023255813953488,0.4666666666666667,0.5555555555555556,0.5137315911234355,0.20833333333333334,1.0,0.2874162323157111
167
+ 165,0.3895348837209302,0.7333333333333334,0.5577777777777779,0.4746568109820486,0.20833333333333334,1.0,0.22467986030267756
168
+ 166,0.36046511627906974,0.4666666666666667,0.5111111111111111,0.45907929419541027,0.20833333333333334,1.0,0.2423101067168864
169
+ 167,0.09883720930232558,0.33333333333333337,0.6666666666666667,0.6420691169142074,0.29166666666666663,1.0,0.824786324786325
170
+ 168,0.12790697674418605,0.4666666666666667,0.5555555555555556,0.5366804560854366,0.29166666666666663,0.5,0.32546374367622255
171
+ 169,0.1569767441860465,0.33333333333333337,0.47000000000000003,0.4277327224907683,0.20833333333333334,0.75,0.4032033426183844
172
+ 170,0.12790697674418605,0.33333333333333337,0.5555555555555556,0.5366804560854366,0.29166666666666663,0.75,0.4881956155143339
173
+ 171,0.18604651162790697,0.4666666666666667,0.5555555555555556,0.5366804560854366,0.21874999999999997,0.5,0.22894424673784106
174
+ 172,0.05813953488372092,0.2,0.6666666666666667,0.6566490240410467,0.026041666666666664,0.0,0.0
175
+ 173,0.12790697674418605,0.33333333333333337,0.5111111111111111,0.46994238557247536,0.29166666666666663,0.5,0.32546374367622255
176
+ 174,0.3313953488372093,0.4666666666666667,0.5111111111111111,0.45907929419541027,0.20833333333333334,1.0,0.26294277929155313
177
+ 175,0.3023255813953488,0.33333333333333337,0.3777777777777778,0.31720500076602853,0.20833333333333334,1.0,0.2874162323157111
178
+ 176,0.41860465116279066,0.6,0.3777777777777778,0.31720500076602853,0.06249999999999999,1.0,0.2094411285946826
179
+ 177,0.3313953488372093,0.33333333333333337,0.2888888888888889,0.26684143112412084,0.06249999999999999,1.0,0.26294277929155313
180
+ 178,0.4476744186046511,0.4666666666666667,0.5555555555555556,0.48620151617834795,0.21874999999999997,1.0,0.19613821138211385
181
+ 179,0.41860465116279066,0.7333333333333334,0.6666666666666667,0.6197733612822898,0.21874999999999997,1.0,0.2094411285946826
182
+ 180,0.3023255813953488,0.4666666666666667,0.5555555555555556,0.48620151617834795,0.21874999999999997,0.75,0.21556217423678334
183
+ 181,0.41860465116279066,0.7333333333333334,0.4444444444444445,0.3574358544064822,0.20833333333333334,1.0,0.2094411285946826
184
+ 182,0.3023255813953488,0.33333333333333337,0.2888888888888889,0.22458787051298434,0.06249999999999999,1.0,0.2874162323157111
185
+ 183,0.3023255813953488,0.4666666666666667,0.2888888888888889,0.357972544878564,0.06249999999999999,1.0,0.2874162323157111
186
+ 184,0.12790697674418605,0.4666666666666667,0.4444444444444445,0.3957708881266111,0.29166666666666663,0.75,0.4881956155143339
187
+ 185,0.4767441860465116,0.7333333333333334,0.5577777777777779,0.4746568109820486,0.20833333333333334,1.0,0.18442427138079315
188
+ 186,0.41860465116279066,0.7333333333333334,0.5555555555555556,0.5137315911234355,0.20833333333333334,1.0,0.2094411285946826
189
+ 187,0.4767441860465116,0.7333333333333334,0.4633333333333333,0.38024519946995894,0.20833333333333334,1.0,0.18442427138079315
190
+ 188,0.4476744186046511,0.7333333333333334,0.6666666666666667,0.6197733612822898,0.21874999999999997,1.0,0.19613821138211385
191
+ 189,0.41860465116279066,0.4666666666666667,0.6222222222222222,0.5957100365154728,0.29166666666666663,1.0,0.2094411285946826
192
+ 190,0.4767441860465116,0.7333333333333334,0.6666666666666667,0.6197733612822898,0.21874999999999997,1.0,0.18442427138079315
193
+ 191,0.4476744186046511,0.7333333333333334,0.6666666666666667,0.6197733612822898,0.21874999999999997,1.0,0.19613821138211385
194
+ 192,0.5348837209302325,0.7333333333333334,0.8888888888888891,0.8680042238648364,0.21874999999999997,1.0,0.16474605206999574
195
+ 193,0.5930232558139534,0.7333333333333334,0.8888888888888891,0.8680042238648364,0.21874999999999997,1.0,0.14886232163517163
196
+ 194,0.6511627906976744,1.0,0.8888888888888891,0.8680042238648364,0.9999999999999999,1.0,0.1357720717551882
197
+ 195,0.7093023255813953,1.0,0.8888888888888891,0.8680042238648364,0.9999999999999999,1.0,0.12479793081150987
198
+ 196,0.5058139534883721,1.0,0.8222222222222224,0.9008881161127726,0.21874999999999997,1.0,0.17403065825067626
199
+ 197,0.21511627906976744,0.4666666666666667,0.46666666666666673,0.4235637875737044,0.29166666666666663,0.75,0.2990702479338843
200
+ 198,0.18604651162790697,0.7333333333333334,0.6666666666666667,0.6441329682921273,0.29166666666666663,0.5,0.22894424673784106
201
+ 199,0.1569767441860465,0.4666666666666667,0.6666666666666667,0.6257810904473846,0.21874999999999997,1.0,0.5376044568245125
202
+ 200,0.12790697674418605,0.4666666666666667,0.5555555555555556,0.5464972707080271,0.29166666666666663,1.0,0.6509274873524451
203
+ 201,0.3023255813953488,0.7333333333333334,0.6000000000000001,0.5664260694877277,0.5208333333333334,1.0,0.2874162323157111
204
+ 202,0.27325581395348836,0.7333333333333334,0.5555555555555556,0.5347353853620784,0.29166666666666663,0.5,0.15845648604269294
205
+ 203,0.36046511627906974,1.0,0.6666666666666667,0.6040126715945091,0.21874999999999997,1.0,0.2423101067168864
206
+ 204,0.09883720930232558,0.33333333333333337,0.2922222222222222,0.22586362950671313,0.041666666666666664,0.75,0.6185897435897436
207
+ 205,0.0813953488372093,0.2,0.27999999999999997,0.21023784381756927,0.041666666666666664,0.5,0.49109414758269726
208
+ 206,0.12790697674418605,0.33333333333333337,0.4444444444444445,0.5016486003060148,0.041666666666666664,0.5,0.32546374367622255
209
+ 207,0.040697674418604654,0.13333333333333336,0.27999999999999997,0.22215016450663294,0.026041666666666664,0.0,0.0
210
+ 208,0.06976744186046512,0.06666666666666667,0.06666666666666671,0.03254295862532397,0.026041666666666664,0.5,0.5626822157434402
211
+ 209,0.09883720930232558,0.2,0.2344444444444444,0.2782422962465202,0.041666666666666664,0.5,0.4123931623931625
212
+ 210,0.06976744186046512,0.2,0.4511111111111111,0.44372481045236767,0.026041666666666664,0.0,0.0
213
+ 211,0.05813953488372092,0.2,0.22222222222222227,0.260343669002592,0.026041666666666664,0.5,0.6587030716723551
214
+ 212,0.03488372093023255,0.0,0.0,0.0,0.026041666666666664,0.5,1.0
215
+ 213,0.05813953488372092,0.13333333333333336,0.22222222222222227,0.260343669002592,0.026041666666666664,0.0,0.0
216
+ 214,0.18604651162790697,0.4666666666666667,0.5555555555555556,0.5347353853620784,0.20833333333333334,0.75,0.34341637010676157
217
+ 215,0.20348837209302323,0.4666666666666667,0.5555555555555556,0.5347353853620784,0.20833333333333334,0.75,0.31535947712418305
218
+ 216,0.18604651162790697,0.4666666666666667,0.46666666666666673,0.4235637875737044,0.20833333333333334,0.5,0.22894424673784106
219
+ 217,0.20348837209302323,0.4666666666666667,0.46666666666666673,0.4235637875737044,0.20833333333333334,0.5,0.21023965141612203
220
+ 218,0.046511627906976744,0.13333333333333336,0.6666666666666667,0.6587574635399687,0.026041666666666664,0.0,0.0
221
+ 219,0.05813953488372092,0.2,0.6666666666666667,0.6587574635399687,0.026041666666666664,0.0,0.0
222
+ 220,0.09883720930232558,0.33333333333333337,0.5555555555555556,0.5464972707080271,0.20833333333333334,0.0,0.0
223
+ 221,0.11046511627906976,0.33333333333333337,0.5555555555555556,0.5464972707080271,0.20833333333333334,0.0,0.0
224
+ 222,0.040697674418604654,0.13333333333333336,0.6666666666666667,0.6933956381112341,0.026041666666666664,0.0,0.0
225
+ 223,0.05232558139534883,0.13333333333333336,0.6666666666666667,0.6933956381112341,0.026041666666666664,0.0,0.0
226
+ 224,0.12790697674418605,0.33333333333333337,0.4444444444444445,0.3804486158433742,0.20833333333333334,0.0,0.0
227
+ 225,0.1395348837209302,0.33333333333333337,0.4444444444444445,0.3804486158433742,0.20833333333333334,0.0,0.0
228
+ 226,0.2441860465116279,0.4666666666666667,0.4444444444444445,0.40446976119299416,0.20833333333333334,0.75,0.26486733760292774
229
+ 227,0.27325581395348836,0.4666666666666667,0.4444444444444445,0.40446976119299416,0.20833333333333334,0.75,0.23768472906403942
230
+ 228,0.06976744186046512,0.2,0.6666666666666667,0.6672563974088843,0.026041666666666664,0.0,0.0
231
+ 229,0.05232558139534883,0.13333333333333336,0.6666666666666667,0.6672563974088843,0.026041666666666664,0.0,0.0
232
+ 230,0.09883720930232558,0.2,0.5555555555555556,0.5174978290434369,0.041666666666666664,0.75,0.6185897435897436
233
+ 231,0.12790697674418605,0.33333333333333337,0.5555555555555556,0.5174978290434369,0.041666666666666664,0.75,0.4881956155143339
234
+ 232,0.1569767441860465,0.33333333333333337,0.26666666666666666,0.1960868717169203,0.020833333333333336,0.5,0.26880222841225626
235
+ 233,0.12790697674418605,0.2,0.26666666666666666,0.1960868717169203,0.020833333333333336,0.5,0.32546374367622255
236
+ 234,0.12790697674418605,0.4666666666666667,0.45555555555555555,0.40966733785015785,0.29166666666666663,0.5,0.32546374367622255
237
+ 235,0.1569767441860465,0.4666666666666667,0.45555555555555555,0.40966733785015785,0.29166666666666663,0.5,0.26880222841225626
238
+ 236,0.09302325581395347,0.4666666666666667,0.6666666666666667,0.6441329682921273,0.21874999999999997,0.25,0.21783295711060954
239
+ 237,0.05813953488372092,0.2,0.6666666666666667,0.6441329682921273,0.21874999999999997,0.25,0.32935153583617754
240
+ 238,0.4767441860465116,0.7333333333333334,0.4888888888888889,0.430003605738275,0.20833333333333334,1.0,0.18442427138079315
241
+ 239,0.5348837209302325,0.7333333333333334,0.4888888888888889,0.430003605738275,0.20833333333333334,1.0,0.16474605206999574
242
+ 240,0.2441860465116279,0.4666666666666667,0.4444444444444445,0.3957708881266111,0.29166666666666663,0.75,0.26486733760292774
243
+ 241,0.27325581395348836,0.4666666666666667,0.4444444444444445,0.3957708881266111,0.29166666666666663,0.75,0.23768472906403942
244
+ 242,0.1569767441860465,0.4666666666666667,0.6666666666666667,0.6441329682921273,0.21874999999999997,0.25,0.13440111420612813
245
+ 243,0.18604651162790697,0.4666666666666667,0.6666666666666667,0.6441329682921273,0.21874999999999997,0.25,0.11447212336892053
246
+ 244,0.0872093023255814,0.33333333333333337,0.6666666666666667,0.6441329682921273,0.29166666666666663,0.25,0.2308612440191388
247
+ 245,0.05813953488372092,0.33333333333333337,0.6666666666666667,0.6441329682921273,0.29166666666666663,0.25,0.32935153583617754
248
+ 246,0.18604651162790697,0.33333333333333337,0.3777777777777778,0.3204386473717349,0.20833333333333334,0.5,0.22894424673784106
249
+ 247,0.21511627906976744,0.33333333333333337,0.3777777777777778,0.3204386473717349,0.20833333333333334,0.5,0.1993801652892562
250
+ 248,0.3895348837209302,0.4666666666666667,0.5444444444444445,0.49821483761300134,0.21874999999999997,0.5,0.11233993015133878
251
+ 249,0.41860465116279066,0.4666666666666667,0.5444444444444445,0.49821483761300134,0.21874999999999997,0.5,0.1047205642973413
252
+ 250,0.11046511627906976,0.33333333333333337,0.6666666666666667,0.6441329682921273,0.21874999999999997,0.5,0.3725868725868727
253
+ 251,0.1395348837209302,0.4666666666666667,0.6666666666666667,0.6441329682921273,0.21874999999999997,0.5,0.30015552099533443
254
+ 252,0.4767441860465116,0.4666666666666667,0.4888888888888889,0.4513566870207979,0.29166666666666663,1.0,0.18442427138079315
255
+ 253,0.5058139534883721,0.4666666666666667,0.4888888888888889,0.4513566870207979,0.29166666666666663,1.0,0.17403065825067626
256
+ 254,0.3023255813953488,0.4666666666666667,0.577777777777778,0.49841605068637795,0.21874999999999997,0.75,0.21556217423678334
257
+ 255,0.3313953488372093,0.4666666666666667,0.577777777777778,0.49841605068637795,0.21874999999999997,0.75,0.19720708446866486
258
+ 256,0.36046511627906974,0.4666666666666667,0.577777777777778,0.49841605068637795,0.21874999999999997,0.75,0.1817325800376648
259
+ 257,0.3895348837209302,0.4666666666666667,0.577777777777778,0.49841605068637795,0.21874999999999997,0.75,0.16850989522700816
260
+ 258,0.3023255813953488,0.4666666666666667,0.628888888888889,0.6018959100625856,0.29166666666666663,0.5,0.14370811615785556
261
+ 259,0.3313953488372093,0.4666666666666667,0.628888888888889,0.6018959100625856,0.29166666666666663,0.5,0.13147138964577657
262
+ 260,0.5930232558139534,0.7333333333333334,0.6377777777777778,0.5696937697993665,0.21874999999999997,1.0,0.14886232163517163
263
+ 261,0.6511627906976744,0.7333333333333334,0.6377777777777778,0.5696937697993665,0.21874999999999997,1.0,0.1357720717551882
264
+ 262,0.18604651162790697,0.4666666666666667,0.5555555555555556,0.5347353853620784,0.29166666666666663,1.0,0.4578884934756821
265
+ 263,0.21511627906976744,0.4666666666666667,0.5555555555555556,0.5347353853620784,0.29166666666666663,1.0,0.3987603305785124
266
+ 264,0.12790697674418605,0.4666666666666667,0.5555555555555556,0.5347353853620784,0.29166666666666663,0.5,0.32546374367622255
267
+ 265,0.1569767441860465,0.4666666666666667,0.5555555555555556,0.5347353853620784,0.29166666666666663,0.5,0.26880222841225626
268
+ 266,0.2441860465116279,0.4666666666666667,0.4888888888888889,0.4513566870207979,0.29166666666666663,1.0,0.35315645013723695
269
+ 267,0.27325581395348836,0.4666666666666667,0.4888888888888889,0.4513566870207979,0.29166666666666663,1.0,0.3169129720853859
270
+ 268,0.4767441860465116,0.7333333333333334,0.6000000000000001,0.5248152059134108,0.21874999999999997,1.0,0.18442427138079315
271
+ 269,0.5348837209302325,0.7333333333333334,0.6000000000000001,0.5248152059134108,0.21874999999999997,1.0,0.16474605206999574
272
+ 270,0.06976744186046512,0.2,0.6666666666666667,0.6587574635399687,0.026041666666666664,0.0,0.0
273
+ 271,0.05813953488372092,0.2,0.6666666666666667,0.6587574635399687,0.026041666666666664,0.0,0.0
274
+ 272,0.5348837209302325,0.7333333333333334,0.5111111111111111,0.41587986831480217,0.21874999999999997,1.0,0.16474605206999574
275
+ 273,0.7093023255813953,0.7333333333333334,0.6666666666666667,0.6001304428846514,0.21874999999999997,1.0,0.12479793081150987
276
+ 274,0.5930232558139534,0.4666666666666667,0.6222222222222222,0.566344623240713,0.21874999999999997,1.0,0.14886232163517163
277
+ 275,0.2441860465116279,0.4666666666666667,0.8444444444444446,0.8404572792801066,0.21874999999999997,0.5,0.17657822506861848
278
+ 276,0.2441860465116279,0.4666666666666667,0.8444444444444446,0.8404572792801066,0.21874999999999997,0.5,0.17657822506861848
279
+ 277,0.41860465116279066,0.7333333333333334,0.8444444444444446,0.8039969016745492,0.21874999999999997,0.75,0.15708084644601195
280
+ 278,0.36046511627906974,0.7333333333333334,0.8,0.8050308217147675,0.21874999999999997,0.75,0.1817325800376648
281
+ 279,0.21511627906976744,0.4666666666666667,0.6666666666666667,0.6197733612822898,0.21874999999999997,0.5,0.1993801652892562
282
+ 280,0.21511627906976744,0.4666666666666667,0.6666666666666667,0.6197733612822898,0.21874999999999997,0.5,0.1993801652892562
283
+ 281,0.3895348837209302,0.7333333333333334,0.577777777777778,0.5056229417275859,0.21874999999999997,0.75,0.16850989522700816
284
+ 282,0.3023255813953488,0.4666666666666667,0.6666666666666667,0.6197733612822898,0.21874999999999997,0.5,0.14370811615785556
285
+ 283,0.2441860465116279,0.4666666666666667,0.6666666666666667,0.6197733612822898,0.29166666666666663,0.5,0.17657822506861848
286
+ 284,0.36046511627906974,0.7333333333333334,0.577777777777778,0.5056229417275859,0.21874999999999997,0.75,0.1817325800376648
287
+ 285,0.3023255813953488,0.4666666666666667,0.8888888888888891,0.8869170514901732,0.21874999999999997,0.5,0.14370811615785556
288
+ 286,0.36046511627906974,0.7333333333333334,0.8888888888888891,0.8869170514901732,0.21874999999999997,0.5,0.1211550533584432
289
+ 287,0.2441860465116279,0.4666666666666667,0.6888888888888889,0.652615614051475,0.21874999999999997,0.5,0.17657822506861848
290
+ 288,0.18604651162790697,0.2,0.6666666666666667,0.6197733612822898,0.21874999999999997,0.5,0.22894424673784106
291
+ 289,0.21511627906976744,0.2,0.6888888888888889,0.652615614051475,0.0,0.5,0.1993801652892562
292
+ 290,0.2441860465116279,0.33333333333333337,0.6888888888888889,0.652615614051475,0.0,0.5,0.17657822506861848
293
+ 291,0.18604651162790697,0.2,0.6666666666666667,0.6197733612822898,0.21874999999999997,0.5,0.22894424673784106
294
+ 292,0.21511627906976744,0.2,0.6888888888888889,0.652615614051475,0.0,0.5,0.1993801652892562
295
+ 293,0.2441860465116279,0.33333333333333337,0.6888888888888889,0.652615614051475,0.0,0.5,0.17657822506861848
296
+ 294,0.18604651162790697,0.2,0.6666666666666667,0.6197733612822898,0.21874999999999997,0.5,0.22894424673784106
297
+ 295,0.21511627906976744,0.4666666666666667,0.6666666666666667,0.6257810904473846,0.21874999999999997,0.5,0.1993801652892562
298
+ 296,0.2441860465116279,0.4666666666666667,0.6666666666666667,0.6257810904473846,0.21874999999999997,0.5,0.17657822506861848
299
+ 297,0.36046511627906974,0.4666666666666667,0.9777777777777779,0.9937745275733267,0.21874999999999997,0.75,0.1817325800376648
300
+ 298,0.41860465116279066,0.7333333333333334,0.9777777777777779,0.9937745275733267,0.21874999999999997,0.75,0.15708084644601195
301
+ 299,0.2441860465116279,0.4666666666666667,0.6666666666666667,0.6197733612822898,0.29166666666666663,0.5,0.17657822506861848
302
+ 300,0.27325581395348836,0.4666666666666667,0.6666666666666667,0.6197733612822898,0.29166666666666663,0.5,0.15845648604269294
303
+ 301,0.3023255813953488,0.4666666666666667,0.6666666666666667,0.6197733612822898,0.29166666666666663,0.5,0.14370811615785556
304
+ 302,0.36046511627906974,0.7333333333333334,0.6666666666666667,0.6197733612822898,0.29166666666666663,0.5,0.1211550533584432
305
+ 303,0.27325581395348836,0.4666666666666667,0.5555555555555556,0.5137315911234355,0.29166666666666663,0.75,0.23768472906403942
306
+ 304,0.3023255813953488,0.4666666666666667,0.5555555555555556,0.5137315911234355,0.29166666666666663,0.75,0.21556217423678334
307
+ 305,0.6511627906976744,0.7333333333333334,0.6666666666666667,0.596270983844646,0.21874999999999997,1.0,0.1357720717551882
308
+ 306,0.7093023255813953,1.0,0.6666666666666667,0.596270983844646,0.21874999999999997,1.0,0.12479793081150987
309
+ 307,0.5930232558139534,0.7333333333333334,0.6666666666666667,0.6040126715945091,0.29166666666666663,1.0,0.14886232163517163
310
+ 308,0.6511627906976744,1.0,0.6666666666666667,0.6040126715945091,0.29166666666666663,1.0,0.1357720717551882
311
+ 309,0.5348837209302325,0.7333333333333334,0.6666666666666667,0.596270983844646,0.21874999999999997,1.0,0.16474605206999574
312
+ 310,0.5930232558139534,1.0,0.6666666666666667,0.596270983844646,0.21874999999999997,1.0,0.14886232163517163
313
+ 311,0.4767441860465116,0.7333333333333334,0.6222222222222222,0.5587345952703995,0.21874999999999997,1.0,0.18442427138079315
314
+ 312,0.5348837209302325,1.0,0.6222222222222222,0.5587345952703995,0.21874999999999997,1.0,0.16474605206999574
315
+ 313,0.4767441860465116,0.7333333333333334,0.6666666666666667,0.6197733612822898,0.21874999999999997,1.0,0.18442427138079315
316
+ 314,0.5348837209302325,1.0,0.6666666666666667,0.6197733612822898,0.21874999999999997,1.0,0.16474605206999574
317
+ 315,0.41860465116279066,0.4666666666666667,0.6222222222222222,0.5957100365154728,0.21874999999999997,1.0,0.2094411285946826
318
+ 316,0.4767441860465116,0.4666666666666667,0.5111111111111111,0.41587986831480217,0.21874999999999997,1.0,0.18442427138079315
319
+ 317,0.5348837209302325,0.7333333333333334,0.5111111111111111,0.41587986831480217,0.21874999999999997,1.0,0.16474605206999574
320
+ 318,0.5930232558139534,0.7333333333333334,0.56,0.42351681365914606,0.21874999999999997,1.0,0.14886232163517163
321
+ 319,0.2441860465116279,0.4666666666666667,0.6666666666666667,0.6197733612822898,0.29166666666666663,0.5,0.17657822506861848
322
+ 320,0.27325581395348836,0.4666666666666667,0.6666666666666667,0.6197733612822898,0.29166666666666663,0.5,0.15845648604269294
323
+ 321,0.3023255813953488,0.7333333333333334,0.577777777777778,0.5129158851991362,0.21874999999999997,0.75,0.21556217423678334
324
+ 322,0.36046511627906974,1.0,0.6000000000000001,0.5321787684989925,0.29166666666666663,1.0,0.2423101067168864
325
+ 323,0.21511627906976744,0.4666666666666667,0.5555555555555556,0.48620151617834795,0.29166666666666663,0.75,0.2990702479338843
326
+ 324,0.2441860465116279,0.7333333333333334,0.5555555555555556,0.48620151617834795,0.29166666666666663,0.75,0.26486733760292774
327
+ 325,0.3023255813953488,1.0,0.5555555555555556,0.48620151617834795,0.21874999999999997,0.75,0.21556217423678334
328
+ 326,0.3313953488372093,1.0,0.6000000000000001,0.5396302542199245,0.21874999999999997,1.0,0.26294277929155313
329
+ 327,0.18604651162790697,0.4666666666666667,0.5555555555555556,0.5425521383315735,0.21874999999999997,0.5,0.22894424673784106
330
+ 328,0.21511627906976744,0.7333333333333334,0.5555555555555556,0.5425521383315735,0.21874999999999997,0.5,0.1993801652892562
331
+ 329,0.27325581395348836,0.7333333333333334,0.5555555555555556,0.48620151617834795,0.21874999999999997,0.75,0.23768472906403942
332
+ 330,0.3023255813953488,0.7333333333333334,0.5555555555555556,0.48620151617834795,0.21874999999999997,0.75,0.21556217423678334
333
+ 331,0.1569767441860465,0.4666666666666667,0.5555555555555556,0.5425521383315735,0.29166666666666663,1.0,0.5376044568245125
334
+ 332,0.18604651162790697,0.7333333333333334,0.5555555555555556,0.5425521383315735,0.29166666666666663,1.0,0.4578884934756821
335
+ 333,0.2441860465116279,0.7333333333333334,0.5555555555555556,0.5137315911234355,0.21874999999999997,0.5,0.17657822506861848
336
+ 334,0.1569767441860465,0.4666666666666667,0.5111111111111111,0.48100820960354485,0.29166666666666663,1.0,0.5376044568245125
337
+ 335,0.18604651162790697,0.7333333333333334,0.5111111111111111,0.48100820960354485,0.29166666666666663,1.0,0.4578884934756821
338
+ 336,0.21511627906976744,0.4666666666666667,0.5555555555555556,0.5137315911234355,0.29166666666666663,0.5,0.1993801652892562
339
+ 337,0.2441860465116279,0.7333333333333334,0.5555555555555556,0.5137315911234355,0.29166666666666663,0.5,0.17657822506861848
340
+ 338,0.3023255813953488,0.7333333333333334,0.5555555555555556,0.5137315911234355,0.21874999999999997,1.0,0.2874162323157111
341
+ 339,0.12790697674418605,0.4666666666666667,0.5111111111111111,0.48100820960354485,0.29166666666666663,0.75,0.4881956155143339
342
+ 340,0.1569767441860465,0.7333333333333334,0.5111111111111111,0.48100820960354485,0.29166666666666663,0.75,0.4032033426183844
343
+ 341,0.18604651162790697,0.4666666666666667,0.5222222222222221,0.47274236842741657,0.29166666666666663,0.5,0.22894424673784106
344
+ 342,0.21511627906976744,0.7333333333333334,0.5222222222222221,0.47274236842741657,0.29166666666666663,0.5,0.1993801652892562
345
+ 343,0.3023255813953488,0.7333333333333334,0.5555555555555556,0.5137315911234355,0.21874999999999997,1.0,0.2874162323157111
346
+ 344,0.12790697674418605,0.4666666666666667,0.4444444444444445,0.39749983988070725,0.20833333333333334,0.75,0.4881956155143339
347
+ 345,0.1569767441860465,0.4666666666666667,0.4444444444444445,0.39749983988070725,0.20833333333333334,0.75,0.4032033426183844
348
+ 346,0.2441860465116279,0.7333333333333334,0.4444444444444445,0.3771008488033727,0.20833333333333334,0.75,0.26486733760292774
349
+ 347,0.09883720930232558,0.4666666666666667,0.45,0.40971076425554376,0.29166666666666663,0.5,0.4123931623931625
350
+ 348,0.12790697674418605,0.7333333333333334,0.45,0.40971076425554376,0.29166666666666663,0.5,0.32546374367622255
351
+ 349,0.2441860465116279,0.7333333333333334,0.45,0.39239298188611826,0.20833333333333334,0.75,0.26486733760292774
352
+ 350,0.06976744186046512,0.33333333333333337,0.6666666666666667,0.6482795477373995,0.026041666666666664,0.5,0.5626822157434402
353
+ 351,0.0872093023255814,0.4666666666666667,0.6666666666666667,0.6482795477373995,0.026041666666666664,0.5,0.4617224880382776
354
+ 352,0.09883720930232558,0.4666666666666667,0.6666666666666667,0.6482795477373995,0.21874999999999997,0.25,0.20619658119658124
355
+ 353,0.0813953488372093,0.33333333333333337,0.6666666666666667,0.6482795477373995,0.026041666666666664,0.75,0.736641221374046
356
+ 354,0.06976744186046512,0.33333333333333337,0.6666666666666667,0.6608723905450411,0.026041666666666664,0.25,0.2813411078717201
357
+ 355,0.06395348837209303,0.33333333333333337,0.6666666666666667,0.6608723905450411,0.026041666666666664,0.25,0.3034591194968554
358
+ 356,0.0813953488372093,0.33333333333333337,0.6666666666666667,0.6608723905450411,0.20833333333333334,0.0,0.0
359
+ 357,0.05813953488372092,0.2,0.4533333333333333,0.39652343432702475,0.041666666666666664,0.5,0.6587030716723551
360
+ 358,0.05232558139534883,0.2,0.4444444444444445,0.38550889448460723,0.020833333333333336,0.5,0.7201492537313433
361
+ 359,0.040697674418604654,0.2,0.4444444444444445,0.38550889448460723,0.026041666666666664,0.25,0.44266055045871555
362
+ 360,0.03488372093023255,0.2,0.4444444444444445,0.38550889448460723,0.026041666666666664,0.25,0.5
363
+ 361,0.02906976744186046,0.2,0.4444444444444445,0.38550889448460723,0.026041666666666664,0.25,0.5744047619047619
364
+ 362,0.06976744186046512,0.2,0.6888888888888889,0.652615614051475,0.21874999999999997,0.5,0.5626822157434402
365
+ 363,0.0872093023255814,0.33333333333333337,0.6888888888888889,0.652615614051475,0.21874999999999997,0.5,0.4617224880382776
366
+ 364,0.06976744186046512,0.4666666666666667,0.6666666666666667,0.6157980087494344,0.5208333333333334,0.5,0.5626822157434402
367
+ 365,0.0872093023255814,0.7333333333333334,0.6666666666666667,0.6157980087494344,0.5208333333333334,0.5,0.4617224880382776
368
+ 366,0.06976744186046512,0.33333333333333337,0.6666666666666667,0.6420691169142074,0.29166666666666663,0.5,0.5626822157434402
369
+ 367,0.0872093023255814,0.4666666666666667,0.6666666666666667,0.6420691169142074,0.29166666666666663,0.5,0.4617224880382776
370
+ 368,0.09883720930232558,0.4666666666666667,0.6666666666666667,0.6420691169142074,0.29166666666666663,0.75,0.6185897435897436
371
+ 369,0.06976744186046512,0.33333333333333337,0.6666666666666667,0.6608723905450411,0.29166666666666663,0.75,0.8440233236151605
372
+ 370,0.0872093023255814,0.4666666666666667,0.6666666666666667,0.6608723905450411,0.29166666666666663,0.75,0.6925837320574163
373
+ 371,0.12790697674418605,0.4666666666666667,0.5555555555555556,0.5366804560854366,0.29166666666666663,0.5,0.32546374367622255
374
+ 372,0.1453488372093023,0.7333333333333334,0.5555555555555556,0.5366804560854366,0.29166666666666663,0.5,0.2889221556886228
375
+ 373,0.11627906976744186,0.4666666666666667,0.5111111111111111,0.48100820960354485,0.29166666666666663,0.75,0.5331491712707183
376
+ 374,0.12790697674418605,0.4666666666666667,0.5111111111111111,0.48100820960354485,0.29166666666666663,0.75,0.4881956155143339
377
+ 375,0.06976744186046512,0.33333333333333337,0.6666666666666667,0.6608723905450411,0.20833333333333334,0.5,0.5626822157434402
378
+ 376,0.11627906976744186,0.4666666666666667,0.45,0.40971076425554376,0.20833333333333334,0.75,0.5331491712707183
379
+ 377,0.12790697674418605,0.4666666666666667,0.45,0.40971076425554376,0.20833333333333334,0.75,0.4881956155143339
380
+ 378,0.06976744186046512,0.4666666666666667,0.6666666666666667,0.6157980087494344,0.5208333333333334,0.5,0.5626822157434402
381
+ 379,0.0872093023255814,0.7333333333333334,0.6666666666666667,0.6157980087494344,0.5208333333333334,0.5,0.4617224880382776
382
+ 380,0.10465116279069768,0.4666666666666667,0.6666666666666667,0.6197733612822898,0.29166666666666663,0.75,0.5872210953346857
383
+ 381,0.12790697674418605,0.7333333333333334,0.6666666666666667,0.6197733612822898,0.29166666666666663,0.75,0.4881956155143339
384
+ 382,0.06976744186046512,0.33333333333333337,0.6666666666666667,0.6420691169142074,0.29166666666666663,0.5,0.5626822157434402
385
+ 383,0.0872093023255814,0.4666666666666667,0.6666666666666667,0.6420691169142074,0.29166666666666663,0.5,0.4617224880382776
386
+ 384,0.09883720930232558,0.4666666666666667,0.6666666666666667,0.6420691169142074,0.29166666666666663,0.75,0.6185897435897436
387
+ 385,0.11627906976744186,0.7333333333333334,0.6666666666666667,0.6420691169142074,0.29166666666666663,0.75,0.5331491712707183
388
+ 386,0.06976744186046512,0.33333333333333337,0.6666666666666667,0.6608723905450411,0.29166666666666663,0.75,0.8440233236151605
389
+ 387,0.0872093023255814,0.4666666666666667,0.6666666666666667,0.6608723905450411,0.29166666666666663,0.75,0.6925837320574163
390
+ 388,0.12790697674418605,0.4666666666666667,0.5555555555555556,0.5366804560854366,0.29166666666666663,0.5,0.32546374367622255
391
+ 389,0.1453488372093023,0.7333333333333334,0.5555555555555556,0.5366804560854366,0.29166666666666663,0.5,0.2889221556886228
392
+ 390,0.11627906976744186,0.4666666666666667,0.5111111111111111,0.48100820960354485,0.29166666666666663,0.75,0.5331491712707183
393
+ 391,0.12790697674418605,0.4666666666666667,0.5111111111111111,0.48100820960354485,0.29166666666666663,0.75,0.4881956155143339
394
+ 392,0.06976744186046512,0.33333333333333337,0.6666666666666667,0.6608723905450411,0.20833333333333334,0.5,0.5626822157434402
395
+ 393,0.11627906976744186,0.4666666666666667,0.45,0.40971076425554376,0.20833333333333334,0.75,0.5331491712707183
396
+ 394,0.2273255813953488,0.7333333333333334,1.0,1.0,0.21874999999999997,1.0,0.3782459578637923
397
+ 395,0.24476744186046512,1.0,1.0,1.0,0.21874999999999997,1.0,0.35235052487448654
398
+ 396,0.175,0.4666666666666667,0.7777777777777779,0.7360084477296727,0.21874999999999997,1.0,0.4852294154619736
399
+ 397,0.1866279069767442,0.7333333333333334,0.7777777777777779,0.7360084477296727,0.21874999999999997,1.0,0.4565345949142519
400
+ 398,0.19825581395348835,1.0,0.7777777777777779,0.7360084477296727,0.21874999999999997,1.0,0.4310441094360693
401
+ 399,0.16337209302325578,0.4666666666666667,0.7777777777777779,0.7360084477296727,0.21874999999999997,0.75,0.3883299798792757
402
+ 400,0.175,0.4666666666666667,0.7777777777777779,0.7360084477296727,0.21874999999999997,0.75,0.3639220615964802
403
+ 401,0.15174418604651163,0.7333333333333334,0.8888888888888891,0.856408694482538,0.21874999999999997,0.75,0.41624730409777133
404
+ 402,0.16337209302325578,0.7333333333333334,0.8888888888888891,0.856408694482538,0.21874999999999997,0.75,0.3883299798792757
405
+ 403,0.14011627906976742,0.4666666666666667,0.8444444444444446,0.8334883134485964,0.21874999999999997,0.5,0.29899302865995353
406
+ 404,0.15174418604651163,0.4666666666666667,0.8444444444444446,0.8334883134485964,0.21874999999999997,0.5,0.27749820273184755
407
+ 405,0.11104651162790698,0.33333333333333337,0.7777777777777779,0.7756071805702218,0.20833333333333334,0.75,0.5561959654178674
408
+ 406,0.12267441860465116,0.4666666666666667,0.7777777777777779,0.7756071805702218,0.20833333333333334,0.75,0.5074496056091149
409
+ 407,0.0994186046511628,0.4666666666666667,0.6666666666666667,0.6608723905450411,0.21874999999999997,0.5,0.41020191285866103
410
+ 408,0.11104651162790698,0.4666666666666667,0.6666666666666667,0.6608723905450411,0.21874999999999997,0.5,0.3707973102785783
411
+ 409,0.08197674418604652,0.33333333333333337,0.6666666666666667,0.640011519631372,0.21874999999999997,0.5,0.48798988621997474
412
+ 410,0.0936046511627907,0.4666666666666667,0.6666666666666667,0.640011519631372,0.21874999999999997,0.5,0.43322109988776664
413
+ 411,0.12848837209302327,0.4666666666666667,0.7111111111111112,0.6732020993238665,0.21874999999999997,0.75,0.48614609571788403
414
+ 412,0.14011627906976742,0.7333333333333334,0.7111111111111112,0.6732020993238665,0.21874999999999997,0.75,0.4484895429899303
415
+ 413,0.16337209302325578,0.7333333333333334,0.7777777777777779,0.7360084477296727,0.21874999999999997,0.75,0.3883299798792757
416
+ 414,0.175,1.0,0.7777777777777779,0.7360084477296727,0.21874999999999997,0.75,0.3639220615964802
417
+ 415,0.0994186046511628,0.4666666666666667,0.6888888888888889,0.646487730303078,0.29166666666666663,0.75,0.6153028692879915
418
+ 416,0.11104651162790698,0.7333333333333334,0.6888888888888889,0.646487730303078,0.29166666666666663,0.75,0.5561959654178674
419
+ 417,0.15174418604651163,0.7333333333333334,0.7777777777777779,0.7360084477296727,0.21874999999999997,0.75,0.41624730409777133
420
+ 418,0.16337209302325578,1.0,0.7777777777777779,0.7360084477296727,0.21874999999999997,0.75,0.3883299798792757
421
+ 419,0.07034883720930232,0.33333333333333337,0.6666666666666667,0.640011519631372,0.21874999999999997,0.5,0.5586107091172214
422
+ 420,0.08197674418604652,0.4666666666666667,0.6666666666666667,0.640011519631372,0.21874999999999997,0.5,0.48798988621997474
423
+ 421,0.11104651162790698,0.4666666666666667,0.7111111111111112,0.6732020993238665,0.29166666666666663,0.75,0.5561959654178674
424
+ 422,0.12267441860465116,0.7333333333333334,0.7111111111111112,0.6732020993238665,0.29166666666666663,0.75,0.5074496056091149
425
+ 423,0.0936046511627907,0.4666666666666667,0.6666666666666667,0.640011519631372,0.21874999999999997,0.75,0.6498316498316499
426
+ 424,0.10523255813953487,0.4666666666666667,0.6666666666666667,0.640011519631372,0.21874999999999997,0.75,0.584258324924319
427
+ 425,0.05872093023255813,0.33333333333333337,0.6666666666666667,0.6608723905450411,0.21874999999999997,0.5,0.6531302876480543
428
+ 426,0.04709302325581395,0.33333333333333337,0.6666666666666667,0.6608723905450411,0.21874999999999997,0.25,0.3930753564154787
429
+ 427,0.07616279069767441,0.4666666666666667,0.6666666666666667,0.640011519631372,0.21874999999999997,0.25,0.2604588394062079
430
+ 428,0.08779069767441859,0.4666666666666667,0.7111111111111112,0.6942497840069117,0.21874999999999997,0.75,0.6884661117717005
431
+ 429,0.04709302325581395,0.33333333333333337,0.6666666666666667,0.640011519631372,0.21874999999999997,0.25,0.3930753564154787
432
+ 430,0.05872093023255813,0.4666666666666667,0.6666666666666667,0.640011519631372,0.21874999999999997,0.25,0.3265651438240271
433
+ 431,0.02965116279069767,0.2,0.6666666666666667,0.6608723905450411,0.21874999999999997,0.0,0.0
434
+ 432,0.05290697674418604,0.33333333333333337,0.6666666666666667,0.640011519631372,0.21874999999999997,0.25,0.35674676524953797
435
+ 433,0.06453488372093023,0.4666666666666667,0.6666666666666667,0.640011519631372,0.21874999999999997,0.25,0.3010920436817473
436
+ 434,0.04709302325581395,0.33333333333333337,0.6666666666666667,0.640011519631372,0.21874999999999997,0.5,0.7861507128309574
437
+ 435,0.05872093023255813,0.4666666666666667,0.6666666666666667,0.640011519631372,0.21874999999999997,0.5,0.6531302876480543
438
+ 436,0.04127906976744186,0.33333333333333337,0.6666666666666667,0.640011519631372,0.21874999999999997,0.25,0.4376417233560091
439
+ 437,0.05290697674418604,0.33333333333333337,0.6666666666666667,0.6157980087494344,0.29166666666666663,0.25,0.35674676524953797
440
+ 438,0.06453488372093023,0.4666666666666667,0.6666666666666667,0.6157980087494344,0.29166666666666663,0.25,0.3010920436817473
441
+ 439,0.07616279069767441,0.33333333333333337,0.7111111111111112,0.6942497840069117,0.21874999999999997,0.5,0.5209176788124158
442
+ 440,0.08197674418604652,0.33333333333333337,0.7111111111111112,0.6942497840069117,0.21874999999999997,0.75,0.7319848293299621
443
+ 441,0.0936046511627907,0.4666666666666667,0.7111111111111112,0.6942497840069117,0.21874999999999997,0.75,0.6498316498316499
444
+ 442,0.05290697674418604,0.33333333333333337,0.6666666666666667,0.6608723905450411,0.21874999999999997,0.5,0.7134935304990759
445
+ 443,0.20988372093023255,0.4666666666666667,0.7111111111111112,0.6527734641903224,0.21874999999999997,1.0,0.40824960338445265
446
+ 444,0.24476744186046512,0.7333333333333334,0.7111111111111112,0.6527734641903224,0.21874999999999997,1.0,0.35235052487448654
447
+ 445,0.14593023255813953,0.4666666666666667,0.6666666666666667,0.6197733612822898,0.29166666666666663,0.75,0.43176733780760623
448
+ 446,0.175,0.7333333333333334,0.6666666666666667,0.6197733612822898,0.29166666666666663,0.75,0.3639220615964802
449
+ 447,0.15755813953488373,0.4666666666666667,0.6888888888888889,0.646487730303078,0.21874999999999997,1.0,0.535739070090215
450
+ 448,0.1866279069767442,0.7333333333333334,0.6888888888888889,0.646487730303078,0.21874999999999997,1.0,0.4565345949142519
451
+ 449,0.41860465116279066,0.7333333333333334,0.9111111111111112,0.9063673350268542,0.21874999999999997,1.0,0.2094411285946826
452
+ 450,0.4767441860465116,1.0,0.9111111111111112,0.9063673350268542,0.21874999999999997,1.0,0.18442427138079315
453
+ 451,0.5348837209302325,1.0,0.9111111111111112,0.9063673350268542,0.21874999999999997,1.0,0.16474605206999574
454
+ 452,0.36046511627906974,0.7333333333333334,0.7555555555555555,0.8037496762367755,0.21874999999999997,1.0,0.2423101067168864
455
+ 453,0.41860465116279066,1.0,0.7555555555555555,0.8037496762367755,0.21874999999999997,1.0,0.2094411285946826
456
+ 454,0.32325,0.7333333333333334,0.6666666666666667,0.6257810904473846,0.21874999999999997,1.0,0.26936966799839496
457
+ 455,0.41381976744186044,0.7333333333333334,0.6666666666666667,0.6257810904473846,0.21874999999999997,1.0,0.21180569845123942
458
+ 456,0.4767441860465116,0.7333333333333334,0.6666666666666667,0.6257810904473846,0.21874999999999997,1.0,0.18442427138079315
459
+ 457,0.3023255813953488,0.7333333333333334,0.6666666666666667,0.6257810904473846,0.21874999999999997,0.75,0.21556217423678334
460
+ 458,0.36046511627906974,0.7333333333333334,0.6666666666666667,0.6257810904473846,0.21874999999999997,0.75,0.1817325800376648
461
+ 459,0.41860465116279066,0.7333333333333334,0.6666666666666667,0.6138191928526935,0.21874999999999997,1.0,0.2094411285946826
462
+ 460,0.4767441860465116,0.7333333333333334,0.6666666666666667,0.6138191928526935,0.21874999999999997,1.0,0.18442427138079315
463
+ 461,0.36046511627906974,0.7333333333333334,0.5800000000000001,0.5814239604710008,0.21874999999999997,1.0,0.2423101067168864
464
+ 462,0.41860465116279066,0.7333333333333334,0.5800000000000001,0.5814239604710008,0.21874999999999997,1.0,0.2094411285946826
465
+ 463,0.17203488372093023,0.4666666666666667,0.6911111111111112,0.6552990664118838,0.9999999999999999,0.75,0.36984988821462794
466
+ 464,0.18604651162790697,0.7333333333333334,0.6911111111111112,0.6552990664118838,0.9999999999999999,0.75,0.34341637010676157
467
+ 465,0.20348837209302323,1.0,0.6911111111111112,0.6552990664118838,0.9999999999999999,0.75,0.31535947712418305
468
+ 466,0.1569767441860465,0.4666666666666667,0.7777777777777779,0.7599537084678358,0.5208333333333334,0.5,0.26880222841225626
469
+ 467,0.17441860465116277,0.7333333333333334,0.7777777777777779,0.7599537084678358,0.5208333333333334,0.5,0.24337957124842372
470
+ 468,0.12790697674418605,0.33333333333333337,0.6666666666666667,0.6257810904473846,0.5208333333333334,0.75,0.4881956155143339
471
+ 469,0.1453488372093023,0.4666666666666667,0.6666666666666667,0.6257810904473846,0.5208333333333334,0.75,0.4333832335329342
472
+ 470,0.11627906976744186,0.33333333333333337,0.6666666666666667,0.6257810904473846,0.21874999999999997,0.5,0.3554327808471455
473
+ 471,0.13372093023255816,0.4666666666666667,0.6666666666666667,0.6257810904473846,0.21874999999999997,0.5,0.31229773462783167
474
+ 472,0.09883720930232558,0.2,0.6666666666666667,0.6257810904473846,0.21874999999999997,0.5,0.4123931623931625
475
+ 473,0.11627906976744186,0.33333333333333337,0.6666666666666667,0.6257810904473846,0.21874999999999997,0.5,0.3554327808471455
476
+ 474,0.06976744186046512,0.2,0.6666666666666667,0.6608723905450411,0.21874999999999997,0.25,0.2813411078717201
477
+ 475,0.0872093023255814,0.33333333333333337,0.6666666666666667,0.6608723905450411,0.21874999999999997,0.25,0.2308612440191388
478
+ 476,0.2441860465116279,0.4666666666666667,0.6888888888888889,0.652615614051475,0.21874999999999997,1.0,0.35315645013723695
479
+ 477,0.27325581395348836,0.7333333333333334,0.6888888888888889,0.652615614051475,0.21874999999999997,1.0,0.3169129720853859
480
+ 478,0.3023255813953488,1.0,0.6888888888888889,0.652615614051475,0.21874999999999997,1.0,0.2874162323157111
481
+ 479,0.06976744186046512,0.2,0.6666666666666667,0.6608723905450411,0.20833333333333334,0.0,0.0
482
+ 480,0.0872093023255814,0.33333333333333337,0.6666666666666667,0.6608723905450411,0.20833333333333334,0.0,0.0
483
+ 481,0.09883720930232558,0.33333333333333337,0.6666666666666667,0.6001304428846514,0.29166666666666663,0.5,0.4123931623931625
484
+ 482,0.040697674418604654,0.06666666666666667,0.6666666666666667,0.6566490240410467,0.026041666666666664,0.0,0.0
485
+ 483,0.06976744186046512,0.2,0.6666666666666667,0.6608723905450411,0.20833333333333334,0.0,0.0
486
+ 484,0.05813953488372092,0.2,0.45555555555555555,0.4494799960613478,0.026041666666666664,0.5,0.6587030716723551
487
+ 485,0.040697674418604654,0.13333333333333336,0.4444444444444445,0.4596626109934925,0.026041666666666664,0.0,0.0
488
+ 486,0.0813953488372093,0.2,0.45555555555555555,0.4346809473525419,0.041666666666666664,0.75,0.736641221374046
489
+ 487,0.09883720930232558,0.33333333333333337,0.45555555555555555,0.4346809473525419,0.041666666666666664,0.75,0.6185897435897436
490
+ 488,0.20348837209302323,0.33333333333333337,0.4444444444444445,0.40446976119299416,0.20833333333333334,1.0,0.42047930283224405
491
+ 489,0.2325581395348837,0.4666666666666667,0.4444444444444445,0.40446976119299416,0.20833333333333334,1.0,0.37008628954937683
492
+ 490,0.12790697674418605,0.33333333333333337,0.3,0.22240234791359914,0.041666666666666664,0.75,0.4881956155143339
493
+ 491,0.2441860465116279,0.4666666666666667,0.6666666666666667,0.6197733612822898,0.21874999999999997,0.75,0.26486733760292774
494
+ 492,0.27325581395348836,0.7333333333333334,0.6666666666666667,0.6197733612822898,0.21874999999999997,0.75,0.23768472906403942
495
+ 493,0.27325581395348836,0.4666666666666667,0.5555555555555556,0.48620151617834795,0.21874999999999997,0.75,0.23768472906403942
496
+ 494,0.3023255813953488,0.7333333333333334,0.5555555555555556,0.48620151617834795,0.21874999999999997,0.75,0.21556217423678334
497
+ 495,0.5348837209302325,0.4666666666666667,0.3333333333333333,0.21905782597046453,0.21874999999999997,1.0,0.16474605206999574
498
+ 496,0.5930232558139534,0.7333333333333334,0.3333333333333333,0.21905782597046453,0.21874999999999997,1.0,0.14886232163517163
499
+ 497,0.12790697674418605,0.4666666666666667,0.6666666666666667,0.6608723905450411,0.21874999999999997,0.5,0.32546374367622255
500
+ 498,0.1569767441860465,0.7333333333333334,0.6666666666666667,0.6608723905450411,0.21874999999999997,0.5,0.26880222841225626
501
+ 499,0.06976744186046512,0.2,0.6666666666666667,0.6001304428846514,0.21874999999999997,0.25,0.2813411078717201
502
+ 500,0.09883720930232558,0.33333333333333337,0.6666666666666667,0.6001304428846514,0.21874999999999997,0.25,0.20619658119658124
503
+ 501,0.12790697674418605,0.33333333333333337,0.3333333333333333,0.27842309046110525,0.20833333333333334,0.5,0.32546374367622255
504
+ 502,0.1569767441860465,0.4666666666666667,0.3333333333333333,0.27842309046110525,0.20833333333333334,0.5,0.26880222841225626
505
+ 503,0.18604651162790697,0.33333333333333337,0.6666666666666667,0.6197733612822898,0.29166666666666663,0.5,0.22894424673784106
506
+ 504,0.21511627906976744,0.4666666666666667,0.6666666666666667,0.6197733612822898,0.29166666666666663,0.5,0.1993801652892562
507
+ 505,0.06976744186046512,0.2,0.6666666666666667,0.6608723905450411,0.20833333333333334,0.0,0.0
508
+ 506,0.0872093023255814,0.33333333333333337,0.6666666666666667,0.6608723905450411,0.20833333333333334,0.0,0.0
509
+ 507,0.09883720930232558,0.2,0.6666666666666667,0.640011519631372,0.21874999999999997,0.5,0.4123931623931625
510
+ 508,0.11627906976744186,0.33333333333333337,0.6666666666666667,0.640011519631372,0.21874999999999997,0.5,0.3554327808471455
511
+ 509,0.040697674418604654,0.13333333333333336,0.6666666666666667,0.6608723905450411,0.026041666666666664,0.5,0.8853211009174311
512
+ 510,0.05813953488372092,0.2,0.6666666666666667,0.6608723905450411,0.026041666666666664,0.5,0.6587030716723551
513
+ 511,0.14011627906976742,0.4666666666666667,0.6666666666666667,0.6040126715945091,0.21874999999999997,0.5,0.29899302865995353
514
+ 512,0.16918604651162789,0.4666666666666667,0.6666666666666667,0.6040126715945091,0.21874999999999997,0.5,0.25048669695003245
515
+ 513,0.12848837209302327,0.4666666666666667,0.5555555555555556,0.48620151617834795,0.29166666666666663,0.75,0.48614609571788403
516
+ 514,0.15755813953488373,0.7333333333333334,0.5555555555555556,0.48620151617834795,0.29166666666666663,0.75,0.4018043025676613
517
+ 515,0.1866279069767442,0.4666666666666667,0.5133333333333334,0.48941558870116153,0.21874999999999997,0.5,0.22826729745712596
518
+ 516,0.21569767441860466,0.7333333333333334,0.5133333333333334,0.48941558870116153,0.21874999999999997,0.5,0.19886656362699637
519
+ 517,0.11104651162790698,0.4666666666666667,0.6666666666666667,0.6629938350447362,0.21874999999999997,0.5,0.3707973102785783
520
+ 518,0.14011627906976742,0.4666666666666667,0.6666666666666667,0.6629938350447362,0.21874999999999997,0.5,0.29899302865995353
521
+ 519,0.07034883720930232,0.2,0.6666666666666667,0.6157980087494344,0.21874999999999997,0.0,0.0
522
+ 520,0.0994186046511628,0.4666666666666667,0.6666666666666667,0.6157980087494344,0.21874999999999997,0.0,0.0
523
+ 521,0.0994186046511628,0.33333333333333337,0.6666666666666667,0.6608723905450411,0.21874999999999997,0.5,0.41020191285866103
524
+ 522,0.12848837209302327,0.4666666666666667,0.6666666666666667,0.6608723905450411,0.21874999999999997,0.5,0.32409739714525604
525
+ 523,0.21569767441860466,0.4666666666666667,0.6000000000000001,0.5396302542199245,0.21874999999999997,0.75,0.2982998454404946
526
+ 524,0.24476744186046512,0.7333333333333334,0.6000000000000001,0.5396302542199245,0.21874999999999997,0.75,0.2642628936558649
527
+ 525,0.6511627906976744,0.7333333333333334,0.4444444444444445,0.32165648960102855,0.21874999999999997,1.0,0.1357720717551882
528
+ 526,0.5348837209302325,0.4666666666666667,0.39999999999999997,0.2992009330328296,0.21874999999999997,0.75,0.12355953905249682
529
+ 527,0.14011627906976742,0.4666666666666667,0.6666666666666667,0.6257810904473846,0.21874999999999997,0.5,0.29899302865995353
530
+ 528,0.16918604651162789,0.7333333333333334,0.6666666666666667,0.6257810904473846,0.21874999999999997,0.5,0.25048669695003245
531
+ 529,0.12848837209302327,0.4666666666666667,0.5111111111111111,0.46811794330273737,0.21874999999999997,0.5,0.32409739714525604
532
+ 530,0.15755813953488373,0.7333333333333334,0.5111111111111111,0.46811794330273737,0.21874999999999997,0.5,0.2678695350451075
533
+ 531,0.04127906976744186,0.2,0.6666666666666667,0.6608723905450411,0.026041666666666664,0.0,0.0
534
+ 532,0.05872093023255813,0.2,0.6666666666666667,0.6608723905450411,0.026041666666666664,0.0,0.0
535
+ 533,0.21569767441860466,0.4666666666666667,0.6000000000000001,0.5396302542199245,0.21874999999999997,0.75,0.2982998454404946
536
+ 534,0.24476744186046512,0.7333333333333334,0.6000000000000001,0.5396302542199245,0.21874999999999997,0.75,0.2642628936558649
537
+ 535,0.8255813953488372,0.7333333333333334,0.6666666666666667,0.5810568844405675,0.9999999999999999,1.0,0.10743111605900361
538
+ 536,0.12848837209302327,0.33333333333333337,0.6666666666666667,0.6001304428846514,0.21874999999999997,0.5,0.32409739714525604
539
+ 537,0.15755813953488373,0.4666666666666667,0.6666666666666667,0.6001304428846514,0.21874999999999997,0.5,0.2678695350451075
540
+ 538,0.8255813953488372,0.7333333333333334,0.6666666666666667,0.5810568844405675,0.9999999999999999,1.0,0.10743111605900361
541
+ 539,0.36046511627906974,0.4666666666666667,0.5333333333333334,0.48640544265942287,0.21874999999999997,1.0,0.2423101067168864
542
+ 540,0.3895348837209302,0.7333333333333334,0.5333333333333334,0.48640544265942287,0.21874999999999997,1.0,0.22467986030267756
543
+ 541,0.2441860465116279,0.33333333333333337,0.44888888888888895,0.42979506184464533,0.29166666666666663,0.5,0.17657822506861848
544
+ 542,0.27325581395348836,0.4666666666666667,0.44888888888888895,0.42979506184464533,0.29166666666666663,0.5,0.15845648604269294
545
+ 543,0.18604651162790697,0.33333333333333337,0.6666666666666667,0.640011519631372,0.21874999999999997,0.5,0.22894424673784106
546
+ 544,0.21511627906976744,0.4666666666666667,0.6666666666666667,0.640011519631372,0.21874999999999997,0.5,0.1993801652892562
547
+ 545,0.1569767441860465,0.2,0.6666666666666667,0.6608723905450411,0.21874999999999997,0.0,0.0
548
+ 546,0.18604651162790697,0.33333333333333337,0.6666666666666667,0.6608723905450411,0.21874999999999997,0.0,0.0
549
+ 547,0.12790697674418605,0.2,0.6666666666666667,0.6823851636747624,0.21874999999999997,0.5,0.32546374367622255
550
+ 548,0.11627906976744186,0.2,0.6666666666666667,0.6608723905450411,0.21874999999999997,0.5,0.3554327808471455
551
+ 549,0.06976744186046512,0.13333333333333336,0.6666666666666667,0.6608723905450411,0.041666666666666664,0.5,0.5626822157434402
552
+ 550,0.05813953488372092,0.06666666666666667,0.44888888888888895,0.3910161644058159,0.041666666666666664,0.5,0.6587030716723551
553
+ 551,0.06976744186046512,0.2,0.44888888888888895,0.3910161644058159,0.041666666666666664,0.5,0.5626822157434402
554
+ 552,0.09883720930232558,0.2,0.6666666666666667,0.6608723905450411,0.21874999999999997,0.5,0.4123931623931625
555
+ 553,0.36046511627906974,0.4666666666666667,0.46666666666666673,0.4130452440906507,0.21874999999999997,1.0,0.2423101067168864
556
+ 554,0.4767441860465116,0.4666666666666667,0.5244444444444445,0.46644907362964383,0.21874999999999997,1.0,0.18442427138079315
557
+ 555,0.7093023255813953,0.4666666666666667,0.4444444444444445,0.32165648960102855,0.16666666666666666,1.0,0.12479793081150987
558
+ 556,0.41860465116279066,0.4666666666666667,0.4888888888888889,0.44058159369669414,0.29166666666666663,0.75,0.15708084644601195
559
+ 557,0.2441860465116279,0.4666666666666667,0.5111111111111111,0.45550235543147544,0.21874999999999997,0.75,0.26486733760292774
560
+ 558,0.3023255813953488,0.4666666666666667,0.4444444444444445,0.34944938904812206,0.21874999999999997,0.75,0.21556217423678334
561
+ 559,0.3313953488372093,0.4666666666666667,0.46666666666666673,0.4130452440906507,0.21874999999999997,0.75,0.19720708446866486
562
+ 560,0.5348837209302325,0.4666666666666667,0.5466666666666666,0.47551576857003264,0.21874999999999997,1.0,0.16474605206999574
563
+ 561,0.6511627906976744,0.4666666666666667,0.6000000000000001,0.5321787684989925,0.21874999999999997,1.0,0.1357720717551882
564
+ 562,0.2441860465116279,0.4666666666666667,0.4444444444444445,0.3574358544064822,0.21874999999999997,0.75,0.26486733760292774
565
+ 563,0.3023255813953488,0.4666666666666667,0.5555555555555556,0.47201689545934533,0.21874999999999997,0.75,0.21556217423678334
566
+ 564,0.18604651162790697,0.4666666666666667,0.5555555555555556,0.4916084724269334,0.5208333333333334,0.5,0.22894424673784106
567
+ 565,0.5348837209302325,0.4666666666666667,0.6255555555555556,0.5761372217798177,0.20833333333333334,1.0,0.16474605206999574
568
+ 566,0.5930232558139534,0.4666666666666667,0.6255555555555556,0.5761372217798177,0.20833333333333334,1.0,0.14886232163517163
569
+ 567,0.7093023255813953,0.4666666666666667,0.6888888888888889,0.64041447850489,0.20833333333333334,1.0,0.12479793081150987
570
+ 568,0.5930232558139534,0.7333333333333334,0.6111111111111112,0.5529874387303189,0.21874999999999997,1.0,0.14886232163517163
571
+ 569,0.7093023255813953,0.7333333333333334,0.6666666666666667,0.596270983844646,0.21874999999999997,1.0,0.12479793081150987
572
+ 570,0.8255813953488372,0.7333333333333334,0.7111111111111112,0.6487596267887168,0.21874999999999997,1.0,0.10743111605900361
573
+ 571,0.2441860465116279,0.4666666666666667,0.5555555555555556,0.48620151617834795,0.21874999999999997,0.75,0.26486733760292774
574
+ 572,0.3023255813953488,0.4666666666666667,0.5555555555555556,0.47201689545934533,0.21874999999999997,0.75,0.21556217423678334
575
+ 573,0.36046511627906974,0.7333333333333334,0.5555555555555556,0.47201689545934533,0.21874999999999997,0.75,0.1817325800376648
576
+ 574,0.5348837209302325,0.7333333333333334,0.6444444444444446,0.5738089322318158,0.21874999999999997,1.0,0.16474605206999574
577
+ 575,0.5930232558139534,0.7333333333333334,0.6777777777777778,0.6132911982110689,0.21874999999999997,1.0,0.14886232163517163
578
+ 576,0.6511627906976744,0.7333333333333334,0.6777777777777778,0.6132911982110689,0.21874999999999997,1.0,0.1357720717551882
579
+ 577,0.7093023255813953,1.0,0.7111111111111112,0.6527734641903224,0.21874999999999997,1.0,0.12479793081150987
580
+ 578,0.4767441860465116,0.7333333333333334,0.6444444444444446,0.5930589922615013,0.21874999999999997,1.0,0.18442427138079315
581
+ 579,0.5348837209302325,0.7333333333333334,0.6666666666666667,0.6001304428846514,0.21874999999999997,1.0,0.16474605206999574
582
+ 580,0.5930232558139534,0.7333333333333334,0.6666666666666667,0.6001304428846514,0.21874999999999997,1.0,0.14886232163517163
583
+ 581,0.2441860465116279,0.4666666666666667,0.5555555555555556,0.48620151617834795,0.21874999999999997,1.0,0.35315645013723695
584
+ 582,0.3023255813953488,0.4666666666666667,0.5555555555555556,0.47201689545934533,0.21874999999999997,1.0,0.2874162323157111
585
+ 583,0.26162790697674415,0.4666666666666667,0.577777777777778,0.5129158851991362,0.21874999999999997,1.0,0.33047945205479456
586
+ 584,0.3023255813953488,0.4666666666666667,0.577777777777778,0.5129158851991362,0.21874999999999997,1.0,0.2874162323157111
587
+ 585,0.3313953488372093,0.4666666666666667,0.577777777777778,0.49841605068637795,0.21874999999999997,1.0,0.26294277929155313
588
+ 586,0.37790697674418605,0.4666666666666667,0.577777777777778,0.49841605068637795,0.21874999999999997,1.0,0.2314148681055156
589
+ 587,0.0872093023255814,0.2,0.6666666666666667,0.6482795477373995,0.21874999999999997,0.0,0.0
590
+ 588,0.05232558139534883,0.2,0.6777777777777778,0.6703749651790285,0.20833333333333334,0.5,0.7201492537313433
591
+ 589,0.06395348837209303,0.2,0.6777777777777778,0.6703749651790285,0.20833333333333334,0.5,0.6069182389937108
592
+ 590,0.03488372093023255,0.13333333333333336,0.6666666666666667,0.6566490240410467,0.21874999999999997,0.0,0.0
593
+ 591,0.046511627906976744,0.2,0.6666666666666667,0.6566490240410467,0.21874999999999997,0.0,0.0
594
+ 592,0.05232558139534883,0.2,0.6777777777777778,0.6746405653480627,0.21874999999999997,0.0,0.0
595
+ 593,0.06395348837209303,0.33333333333333337,0.6777777777777778,0.6746405653480627,0.21874999999999997,0.0,0.0
596
+ 594,0.023255813953488372,0.06666666666666667,0.6666666666666667,0.6608723905450411,0.026041666666666664,0.0,0.0
597
+ 595,0.03488372093023255,0.13333333333333336,0.6666666666666667,0.6608723905450411,0.026041666666666664,0.0,0.0
598
+ 596,0.09302325581395347,0.33333333333333337,0.6666666666666667,0.6441329682921273,0.20833333333333334,0.0,0.0
599
+ 597,0.8837209302325582,0.7333333333333334,0.6666666666666667,0.6608723905450411,0.020833333333333336,1.0,0.10044236273744471
600
+ 598,0.5348837209302325,0.4666666666666667,0.6666666666666667,0.7511555040074784,0.020833333333333336,1.0,0.16474605206999574
601
+ 599,0.2441860465116279,0.33333333333333337,0.6666666666666667,0.7756071805702218,0.020833333333333336,0.5,0.17657822506861848
602
+ 600,0.9418604651162791,0.7333333333333334,0.6666666666666667,0.6608723905450411,0.20833333333333334,1.0,0.09430735401905692
603
+ 601,0.5930232558139534,0.4666666666666667,0.6666666666666667,0.7511555040074784,0.20833333333333334,1.0,0.14886232163517163
604
+ 602,0.3023255813953488,0.33333333333333337,0.6666666666666667,0.7511555040074784,0.20833333333333334,0.5,0.14370811615785556
605
+ 603,0.9999999999999999,0.7333333333333334,0.6666666666666667,0.6608723905450411,0.20833333333333334,1.0,0.08887865530739122
606
+ 604,0.6511627906976744,0.4666666666666667,0.6666666666666667,0.7511555040074784,0.20833333333333334,1.0,0.1357720717551882
607
+ 605,0.36046511627906974,0.33333333333333337,0.6666666666666667,0.7511555040074784,0.20833333333333334,0.75,0.1817325800376648
608
+ 606,0.18604651162790697,0.2,0.22222222222222227,0.24290994116759712,0.021875,0.5,0.22894424673784106
609
+ 607,0.2325581395348837,0.2,0.3777777777777778,0.3878035902851109,0.021875,0.5,0.18504314477468842
610
+ 608,0.41860465116279066,0.33333333333333337,0.17777777777777776,0.1632857222253098,0.021875,1.0,0.2094411285946826
611
+ 609,0.4767441860465116,0.33333333333333337,0.3777777777777778,0.3352441293307187,0.021875,1.0,0.18442427138079315
612
+ 610,0.1569767441860465,0.33333333333333337,0.25333333333333335,0.253049557586571,0.021875,0.75,0.4032033426183844
613
+ 611,0.2441860465116279,0.33333333333333337,0.4188888888888889,0.40560598835030826,0.021875,0.75,0.26486733760292774
614
+ 612,0.36046511627906974,0.4666666666666667,0.46222222222222226,0.5011615628299895,0.021875,0.75,0.1817325800376648
615
+ 613,0.21511627906976744,0.33333333333333337,0.5955555555555556,0.6052784985959314,0.021875,0.75,0.2990702479338843
616
+ 614,0.36046511627906974,0.4666666666666667,0.580888888888889,0.5744340681098206,0.21874999999999997,0.5,0.1211550533584432
617
+ 615,0.4767441860465116,0.7333333333333334,0.6673333333333333,0.6185829594436585,0.21874999999999997,0.5,0.09221213569039657
618
+ 616,0.21511627906976744,0.33333333333333337,0.5355555555555556,0.5780376339432549,0.021875,0.5,0.1993801652892562
619
+ 617,0.3023255813953488,0.4666666666666667,0.5233333333333334,0.5213330316287024,0.21874999999999997,0.5,0.14370811615785556
620
+ 618,0.4767441860465116,0.7333333333333334,0.6666666666666667,0.6197733612822898,0.21874999999999997,0.5,0.09221213569039657
621
+ 619,0.2441860465116279,0.4666666666666667,0.53,0.5707021309744318,0.29166666666666663,0.5,0.17657822506861848
622
+ 620,0.36046511627906974,0.4666666666666667,0.5722222222222222,0.6048003883230575,0.21874999999999997,0.5,0.1211550533584432
623
+ 621,0.5348837209302325,0.7333333333333334,0.6777777777777778,0.6331305457926839,0.21874999999999997,0.5,0.08237302603499787
624
+ 622,0.27325581395348836,0.4666666666666667,0.53,0.5707021309744318,0.29166666666666663,0.5,0.15845648604269294
625
+ 623,0.41860465116279066,0.4666666666666667,0.577777777777778,0.5909388042439785,0.21874999999999997,0.5,0.1047205642973413
626
+ 624,0.5930232558139534,0.7333333333333334,0.6777777777777778,0.6331305457926839,0.21874999999999997,0.5,0.07443116081758581
627
+ 625,0.7093023255813953,1.0,0.7222222222222223,0.6659342195167404,0.21874999999999997,0.5,0.06239896540575494
628
+ 626,0.02906976744186046,0.2,0.6666666666666667,0.640011519631372,0.026041666666666664,0.0,0.0
629
+ 627,0.011627906976744186,0.13333333333333336,0.6666666666666667,0.6566490240410467,0.0,0.0,0.0
630
+ 628,0.2441860465116279,0.4666666666666667,0.7111111111111112,0.6527734641903224,0.21874999999999997,0.75,0.26486733760292774
631
+ 629,0.06976744186046512,0.33333333333333337,0.6666666666666667,0.640011519631372,0.21874999999999997,0.5,0.5626822157434402
632
+ 630,0.0872093023255814,0.33333333333333337,0.6666666666666667,0.640011519631372,0.21874999999999997,0.5,0.4617224880382776
633
+ 631,0.0058139534883720895,0.13333333333333336,0.6666666666666667,0.6566490240410467,0.0,0.0,0.0
634
+ 632,0.11046511627906976,0.4666666666666667,0.7111111111111112,0.6527734641903224,0.21874999999999997,0.5,0.3725868725868727
635
+ 633,0.05813953488372092,0.2,0.6666666666666667,0.640011519631372,0.21874999999999997,0.25,0.32935153583617754
636
+ 634,0.5348837209302325,0.4666666666666667,0.5111111111111111,0.39947660805289,0.21874999999999997,0.75,0.12355953905249682
637
+ 635,0.1569767441860465,0.4666666666666667,0.8888888888888891,0.8633455494130071,0.21874999999999997,0.75,0.4032033426183844
638
+ 636,0.040697674418604654,0.2,0.6666666666666667,0.640011519631372,0.21874999999999997,0.25,0.44266055045871555
639
+ 637,0.011627906976744186,0.13333333333333336,0.6666666666666667,0.6566490240410467,0.0,0.0,0.0
640
+ 638,0.5930232558139534,0.7333333333333334,0.7111111111111112,0.6329369634084752,0.5208333333333334,1.0,0.14886232163517163
641
+ 639,0.05813953488372092,0.2,0.6666666666666667,0.640011519631372,0.21874999999999997,0.25,0.32935153583617754
642
+ 640,0.1453488372093023,0.4666666666666667,0.7111111111111112,0.6527734641903224,0.21874999999999997,0.75,0.4333832335329342
643
+ 641,0.12790697674418605,0.4666666666666667,0.8888888888888891,0.8633455494130071,0.21874999999999997,0.5,0.32546374367622255
644
+ 642,0.6511627906976744,0.7333333333333334,0.7111111111111112,0.6329369634084752,0.5208333333333334,1.0,0.1357720717551882
645
+ 643,0.4767441860465116,0.7333333333333334,0.7111111111111112,0.6527734641903224,0.29166666666666663,0.75,0.13831820353559485
646
+ 644,0.2441860465116279,0.4666666666666667,0.6666666666666667,0.6197733612822898,0.21874999999999997,0.75,0.26486733760292774
647
+ 645,0.1569767441860465,0.33333333333333337,0.6666666666666667,0.6197733612822898,0.21874999999999997,0.5,0.26880222841225626
648
+ 646,0.5930232558139534,0.7333333333333334,0.8888888888888891,0.8404572792801064,0.29166666666666663,0.75,0.11164674122637873
649
+ 647,0.11046511627906976,0.4666666666666667,0.7111111111111112,0.6527734641903224,0.21874999999999997,0.5,0.3725868725868727
650
+ 648,0.06976744186046512,0.33333333333333337,0.6666666666666667,0.640011519631372,0.21874999999999997,0.25,0.2813411078717201
651
+ 649,0.05813953488372092,0.2,0.6666666666666667,0.640011519631372,0.21874999999999997,0.25,0.32935153583617754
652
+ 650,0.040697674418604654,0.2,0.6666666666666667,0.640011519631372,0.21874999999999997,0.25,0.44266055045871555
653
+ 651,0.011627906976744186,0.13333333333333336,0.6666666666666667,0.6566490240410467,0.0,0.0,0.0
654
+ 652,0.0058139534883720895,0.13333333333333336,0.6666666666666667,0.6566490240410467,0.0,0.0,0.0
655
+ 653,0.5930232558139534,0.7333333333333334,0.7111111111111112,0.6329369634084752,0.5208333333333334,1.0,0.14886232163517163
656
+ 654,0.4767441860465116,0.7333333333333334,0.7111111111111112,0.6329369634084752,0.5208333333333334,0.75,0.13831820353559485
657
+ 655,0.21511627906976744,0.4666666666666667,0.6666666666666667,0.6197733612822898,0.21874999999999997,0.5,0.1993801652892562
658
+ 656,0.563953488372093,0.7333333333333334,0.7111111111111112,0.6527734641903224,0.5208333333333334,0.75,0.11730145867098865
659
+ 657,0.2441860465116279,0.4666666666666667,0.6666666666666667,0.6197733612822898,0.21874999999999997,0.75,0.26486733760292774
660
+ 658,0.1569767441860465,0.33333333333333337,0.6666666666666667,0.6197733612822898,0.21874999999999997,0.5,0.26880222841225626
661
+ 659,0.1569767441860465,0.33333333333333337,0.6666666666666667,0.6197733612822898,0.21874999999999997,0.5,0.26880222841225626
662
+ 660,0.36046511627906974,0.4666666666666667,0.8888888888888891,0.8404572792801064,0.21874999999999997,1.0,0.2423101067168864
663
+ 661,0.1453488372093023,0.4666666666666667,0.8888888888888891,0.8633455494130071,0.21874999999999997,0.5,0.2889221556886228
664
+ 662,0.0813953488372093,0.33333333333333337,0.6666666666666667,0.6040126715945091,0.21874999999999997,0.25,0.24554707379134863
665
+ 663,0.05813953488372092,0.2,0.6666666666666667,0.640011519631372,0.21874999999999997,0.0,0.0
666
+ 664,0.12209302325581396,0.4666666666666667,0.7111111111111112,0.6568109820485744,0.21874999999999997,0.75,0.5096830985915494
667
+ 665,0.11046511627906976,0.4666666666666667,0.6666666666666667,0.6001304428846514,0.21874999999999997,0.5,0.3725868725868727
668
+ 666,0.17441860465116277,0.7333333333333334,0.7333333333333334,0.6588770028924291,0.5208333333333334,1.0,0.48675914249684743
669
+ 667,0.21511627906976744,0.7333333333333334,0.7777777777777779,0.710757081860337,0.5208333333333334,0.75,0.2990702479338843
670
+ 668,0.1569767441860465,0.4666666666666667,0.7111111111111112,0.6527734641903224,0.5208333333333334,0.5,0.26880222841225626
671
+ 669,0.11627906976744186,0.4666666666666667,0.6666666666666667,0.6040126715945091,0.21874999999999997,0.5,0.3554327808471455
672
+ 670,0.1395348837209302,0.4666666666666667,0.7111111111111112,0.6527734641903224,0.5208333333333334,0.75,0.4502332814930017
673
+ 671,0.18604651162790697,0.7333333333333334,0.7333333333333334,0.6790949748431581,0.5208333333333334,1.0,0.4578884934756821
674
+ 672,0.21511627906976744,0.7333333333333334,0.7777777777777779,0.710757081860337,0.5208333333333334,1.0,0.3987603305785124
675
+ 673,0.06976744186046512,0.4666666666666667,0.6666666666666667,0.6040126715945091,0.21874999999999997,0.25,0.2813411078717201
676
+ 674,0.046511627906976744,0.2,0.6666666666666667,0.640011519631372,0.026041666666666664,0.0,0.0
677
+ 675,0.0872093023255814,0.4666666666666667,0.6666666666666667,0.6040126715945091,0.5208333333333334,0.5,0.4617224880382776
678
+ 676,0.1569767441860465,0.7333333333333334,0.6666666666666667,0.6040126715945091,0.5208333333333334,0.75,0.4032033426183844
679
+ 677,0.17441860465116277,0.7333333333333334,0.6666666666666667,0.6040126715945091,0.5208333333333334,0.75,0.3650693568726356
680
+ 678,0.18604651162790697,0.4666666666666667,0.5555555555555556,0.48620151617834795,0.5208333333333334,0.75,0.34341637010676157
681
+ 679,0.11627906976744186,0.4666666666666667,0.6666666666666667,0.6040126715945091,0.5208333333333334,0.5,0.3554327808471455
682
+ 680,0.1453488372093023,0.7333333333333334,0.6666666666666667,0.6040126715945091,0.5208333333333334,0.75,0.4333832335329342
683
+ 681,0.06976744186046512,0.4666666666666667,0.6666666666666667,0.6040126715945091,0.21874999999999997,0.25,0.2813411078717201
684
+ 682,0.046511627906976744,0.2,0.6666666666666667,0.640011519631372,0.026041666666666664,0.0,0.0
685
+ 683,0.046511627906976744,0.2,0.6666666666666667,0.640011519631372,0.026041666666666664,0.0,0.0
686
+ 684,0.05813953488372092,0.2,0.8888888888888891,0.8587141985650009,0.041666666666666664,0.5,0.6587030716723551
687
+ 685,0.09302325581395347,0.4666666666666667,0.6666666666666667,0.6040126715945091,0.21874999999999997,0.75,0.6534988713318286
688
+ 686,0.1569767441860465,0.4666666666666667,0.6666666666666667,0.6040126715945091,0.5208333333333334,0.75,0.4032033426183844
689
+ 687,0.17441860465116277,0.7333333333333334,0.6666666666666667,0.6040126715945091,0.5208333333333334,0.75,0.3650693568726356
690
+ 688,0.18604651162790697,0.4666666666666667,0.6666666666666667,0.6257810904473846,0.5208333333333334,0.75,0.34341637010676157
691
+ 689,0.05813953488372092,0.33333333333333337,0.6666666666666667,0.596270983844646,0.026041666666666664,0.25,0.32935153583617754
692
+ 690,0.046511627906976744,0.2,0.8888888888888891,0.8587141985650009,0.026041666666666664,0.0,0.0
693
+ 691,0.06976744186046512,0.4666666666666667,0.6666666666666667,0.640011519631372,0.21874999999999997,0.0,0.0
694
+ 692,0.03488372093023255,0.2,0.6666666666666667,0.640011519631372,0.026041666666666664,0.0,0.0
695
+ 693,0.06976744186046512,0.33333333333333337,0.6666666666666667,0.596270983844646,0.21874999999999997,0.25,0.2813411078717201
696
+ 694,0.046511627906976744,0.2,0.8888888888888891,0.8587141985650009,0.026041666666666664,0.5,0.794238683127572
697
+ 695,0.0813953488372093,0.4666666666666667,0.6666666666666667,0.6040126715945091,0.21874999999999997,0.5,0.49109414758269726
698
+ 696,0.09302325581395347,0.33333333333333337,0.6666666666666667,0.640011519631372,0.21874999999999997,0.75,0.6534988713318286
699
+ 697,0.03488372093023255,0.2,0.6666666666666667,0.640011519631372,0.026041666666666664,0.5,1.0
700
+ 698,0.040697674418604654,0.2,0.6666666666666667,0.596270983844646,0.20833333333333334,0.5,0.8853211009174311
701
+ 699,0.05232558139534883,0.33333333333333337,0.8888888888888891,0.8587141985650009,0.20833333333333334,0.25,0.36007462686567165
702
+ 700,0.05813953488372092,0.33333333333333337,0.8888888888888891,0.8587141985650009,0.20833333333333334,0.25,0.32935153583617754
703
+ 701,0.017441860465116282,0.13333333333333336,0.6666666666666667,0.640011519631372,0.026041666666666664,0.0,0.0
704
+ 702,0.03488372093023255,0.2,0.8888888888888891,0.8587141985650009,0.026041666666666664,0.5,1.0
705
+ 703,0.046511627906976744,0.2,0.7111111111111112,0.6942497840069117,0.026041666666666664,0.5,0.794238683127572
706
+ 704,0.05232558139534883,0.2,0.8888888888888891,0.8587141985650009,0.026041666666666664,0.5,0.7201492537313433
707
+ 705,0.06395348837209303,0.33333333333333337,0.6666666666666667,0.6040126715945091,0.21874999999999997,0.25,0.3034591194968554
708
+ 706,0.0,0.06666666666666667,0.6666666666666667,0.7511555040074784,0.0,0.0,0.0
709
+ 707,0.06976744186046512,0.33333333333333337,0.7111111111111112,0.6568109820485744,0.20833333333333334,0.25,0.2813411078717201
710
+ 708,0.017441860465116282,0.13333333333333336,0.6666666666666667,0.640011519631372,0.026041666666666664,0.0,0.0
711
+ 709,0.0872093023255814,0.33333333333333337,0.7111111111111112,0.6232327759756291,0.29166666666666663,0.25,0.2308612440191388
712
+ 710,0.09883720930232558,0.4666666666666667,0.5555555555555556,0.45987713794618434,0.20833333333333334,0.5,0.4123931623931625
713
+ 711,0.046511627906976744,0.2,0.7111111111111112,0.6568109820485744,0.041666666666666664,0.5,0.794238683127572
714
+ 712,0.11627906976744186,0.4666666666666667,0.5555555555555556,0.45987713794618434,0.29166666666666663,0.5,0.3554327808471455
715
+ 713,0.011627906976744186,0.13333333333333336,0.6666666666666667,0.640011519631372,0.026041666666666664,0.0,0.0
716
+ 714,0.0813953488372093,0.2,0.3888888888888889,0.31666802046949893,0.20833333333333334,0.5,0.49109414758269726
717
+ 715,0.21511627906976744,0.4666666666666667,0.4444444444444445,0.3804486158433742,0.16666666666666666,0.5,0.1993801652892562
718
+ 716,0.3023255813953488,0.4666666666666667,0.4444444444444445,0.3737734639066892,0.21874999999999997,0.75,0.21556217423678334
719
+ 717,0.36046511627906974,0.7333333333333334,0.4444444444444445,0.3737734639066892,0.21874999999999997,0.75,0.1817325800376648
720
+ 718,0.1569767441860465,0.33333333333333337,0.4444444444444445,0.38550889448460723,0.29166666666666663,0.5,0.26880222841225626
721
+ 719,0.1395348837209302,0.33333333333333337,0.5111111111111111,0.4449010210858775,0.16666666666666666,0.5,0.30015552099533443
722
+ 720,0.17441860465116277,0.4666666666666667,0.6666666666666667,0.5462994267399242,0.20833333333333334,0.75,0.3650693568726356
723
+ 721,0.1569767441860465,0.33333333333333337,0.5111111111111111,0.4142178639710843,0.29166666666666663,0.75,0.4032033426183844
724
+ 722,0.27325581395348836,0.4666666666666667,0.4888888888888889,0.42825939158988,0.16666666666666666,0.75,0.23768472906403942
725
+ 723,0.0872093023255814,0.2,0.6666666666666667,0.6257810904473846,0.20833333333333334,0.5,0.4617224880382776
726
+ 724,0.3023255813953488,0.4666666666666667,0.4444444444444445,0.34944938904812206,0.21874999999999997,0.5,0.14370811615785556
727
+ 725,0.27325581395348836,0.4666666666666667,0.5111111111111111,0.45550235543147544,0.5208333333333334,0.75,0.23768472906403942
728
+ 726,0.3313953488372093,0.4666666666666667,0.4444444444444445,0.34944938904812206,0.5208333333333334,0.75,0.19720708446866486
729
+ 727,0.21511627906976744,0.4666666666666667,0.4444444444444445,0.34002111932418155,0.5208333333333334,1.0,0.3987603305785124
730
+ 728,0.17441860465116277,0.33333333333333337,0.5111111111111111,0.43793942521875273,0.29166666666666663,1.0,0.48675914249684743
731
+ 729,0.12790697674418605,0.33333333333333337,0.4444444444444445,0.36882019775367203,0.29166666666666663,0.25,0.16273187183811127
732
+ 730,0.1395348837209302,0.4666666666666667,0.39999999999999997,0.3256289305633491,0.29166666666666663,0.75,0.4502332814930017
733
+ 731,0.0813953488372093,0.33333333333333337,0.6666666666666667,0.6608723905450411,0.026041666666666664,0.0,0.0
734
+ 732,0.4767441860465116,0.4666666666666667,0.577777777777778,0.50200883512556,0.21874999999999997,1.0,0.18442427138079315
735
+ 733,0.5930232558139534,0.4666666666666667,0.577777777777778,0.50200883512556,0.21874999999999997,1.0,0.14886232163517163
736
+ 734,0.7093023255813953,0.7333333333333334,0.577777777777778,0.50200883512556,0.21874999999999997,1.0,0.12479793081150987
737
+ 735,0.27325581395348836,0.4666666666666667,0.6222222222222222,0.572112043239204,0.5208333333333334,0.75,0.23768472906403942
738
+ 736,0.3313953488372093,0.4666666666666667,0.6222222222222222,0.5512143611404436,0.5208333333333334,0.75,0.19720708446866486
739
+ 737,0.21511627906976744,0.4666666666666667,0.5111111111111111,0.43793942521875273,0.29166666666666663,1.0,0.3987603305785124
740
+ 738,0.17441860465116277,0.33333333333333337,0.6222222222222222,0.5456321609162254,0.20833333333333334,0.5,0.24337957124842372
741
+ 739,0.12790697674418605,0.33333333333333337,0.4444444444444445,0.35262967107440635,0.20833333333333334,0.75,0.4881956155143339
742
+ 740,0.2441860465116279,0.4666666666666667,0.6666666666666667,0.5462994267399242,0.29166666666666663,1.0,0.35315645013723695
743
+ 741,0.05813953488372092,0.33333333333333337,0.6666666666666667,0.6566490240410467,0.026041666666666664,0.5,0.6587030716723551
744
+ 742,0.0872093023255814,0.33333333333333337,0.6666666666666667,0.611846248813213,0.026041666666666664,0.25,0.2308612440191388
745
+ 743,0.4767441860465116,0.4666666666666667,0.6222222222222222,0.5456321609162254,0.21874999999999997,1.0,0.18442427138079315
746
+ 744,0.5930232558139534,0.4666666666666667,0.577777777777778,0.49306644213816897,0.21874999999999997,1.0,0.14886232163517163
747
+ 745,0.7093023255813953,0.7333333333333334,0.577777777777778,0.49306644213816897,0.21874999999999997,1.0,0.12479793081150987
748
+ 746,0.27325581395348836,0.4666666666666667,0.6222222222222222,0.572112043239204,0.23958333333333334,0.75,0.23768472906403942
749
+ 747,0.36046511627906974,0.4666666666666667,0.5555555555555556,0.47201689545934533,0.23958333333333334,0.75,0.1817325800376648
750
+ 748,0.41860465116279066,0.7333333333333334,0.5555555555555556,0.47201689545934533,0.23958333333333334,1.0,0.2094411285946826
751
+ 749,0.12790697674418605,0.33333333333333337,0.6888888888888889,0.652615614051475,0.21874999999999997,0.5,0.32546374367622255
752
+ 750,0.11627906976744186,0.33333333333333337,0.4444444444444445,0.35262967107440635,0.21874999999999997,0.25,0.17771639042357276
753
+ 751,0.046511627906976744,0.2,0.7111111111111112,0.6649579023560268,0.026041666666666664,0.5,0.794238683127572
754
+ 752,0.06976744186046512,0.33333333333333337,0.7111111111111112,0.6649579023560268,0.026041666666666664,0.5,0.5626822157434402
755
+ 753,0.5348837209302325,0.4666666666666667,0.6888888888888889,0.6244807390833098,0.21874999999999997,1.0,0.16474605206999574
756
+ 754,0.6511627906976744,0.7333333333333334,0.6888888888888889,0.6244807390833098,0.21874999999999997,1.0,0.1357720717551882
757
+ 755,0.7674418604651162,1.0,0.7666666666666668,0.7164707469449085,0.21874999999999997,1.0,0.11546515106192044
758
+ 756,0.27325581395348836,0.4666666666666667,0.6222222222222222,0.572112043239204,0.7916666666666666,0.75,0.23768472906403942
759
+ 757,0.41860465116279066,0.7333333333333334,0.6222222222222222,0.5512143611404436,0.7916666666666666,1.0,0.2094411285946826
760
+ 758,0.18604651162790697,0.4666666666666667,0.577777777777778,0.5184429960310237,0.29166666666666663,1.0,0.4578884934756821
761
+ 759,0.12790697674418605,0.33333333333333337,0.8444444444444446,0.8152059134107708,0.5208333333333334,0.5,0.32546374367622255
762
+ 760,0.09883720930232558,0.33333333333333337,0.5555555555555556,0.48620151617834795,0.4791666666666666,0.5,0.4123931623931625
763
+ 761,0.040697674418604654,0.2,0.6666666666666667,0.6566490240410467,0.026041666666666664,0.5,0.8853211009174311
764
+ 762,0.06395348837209303,0.33333333333333337,0.7111111111111112,0.6649579023560268,0.21874999999999997,0.5,0.6069182389937108
765
+ 763,0.5930232558139534,0.4666666666666667,0.7111111111111112,0.6507635984723379,0.21874999999999997,1.0,0.14886232163517163
766
+ 764,0.7093023255813953,0.7333333333333334,0.7777777777777779,0.7296121766394226,0.21874999999999997,1.0,0.12479793081150987
767
+ 765,0.8255813953488372,1.0,0.788888888888889,0.7427536063339366,0.21874999999999997,1.0,0.10743111605900361
768
+ 766,0.3023255813953488,0.7333333333333334,0.6666666666666667,0.6197733612822898,0.9999999999999999,0.75,0.21556217423678334
769
+ 767,0.36046511627906974,0.7333333333333334,0.6666666666666667,0.6040126715945091,0.9999999999999999,1.0,0.2423101067168864
770
+ 768,0.18604651162790697,0.4666666666666667,0.577777777777778,0.5184429960310237,0.29166666666666663,1.0,0.4578884934756821
771
+ 769,0.12790697674418605,0.33333333333333337,0.8444444444444446,0.8152059134107708,0.5208333333333334,0.5,0.32546374367622255
772
+ 770,0.09883720930232558,0.33333333333333337,0.5555555555555556,0.48620151617834795,0.4791666666666666,0.5,0.4123931623931625
773
+ 771,0.040697674418604654,0.2,0.6666666666666667,0.6566490240410467,0.026041666666666664,0.5,0.8853211009174311
774
+ 772,0.06395348837209303,0.33333333333333337,0.7111111111111112,0.6649579023560268,0.21874999999999997,0.5,0.6069182389937108
775
+ 773,0.5930232558139534,0.4666666666666667,0.7111111111111112,0.6507635984723379,0.21874999999999997,1.0,0.14886232163517163
776
+ 774,0.7093023255813953,0.7333333333333334,0.7777777777777779,0.7296121766394226,0.21874999999999997,1.0,0.12479793081150987
777
+ 775,0.8255813953488372,1.0,0.788888888888889,0.7427536063339366,0.21874999999999997,1.0,0.10743111605900361
778
+ 776,0.2441860465116279,0.33333333333333337,0.6000000000000001,0.5452775196351141,0.29166666666666663,1.0,0.35315645013723695
779
+ 777,0.06976744186046512,0.2,0.6666666666666667,0.6257810904473846,0.20833333333333334,0.75,0.8440233236151605
780
+ 778,0.0872093023255814,0.33333333333333337,0.7022222222222223,0.668716328213929,0.29166666666666663,0.75,0.6925837320574163
781
+ 779,0.040697674418604654,0.2,0.8888888888888891,0.9286454686436252,0.20833333333333334,0.5,0.8853211009174311
782
+ 780,0.1569767441860465,0.33333333333333337,0.56,0.4969753771477514,0.20833333333333334,1.0,0.5376044568245125
783
+ 781,0.09883720930232558,0.33333333333333337,0.7022222222222223,0.668716328213929,0.20833333333333334,1.0,0.824786324786325
784
+ 782,0.06976744186046512,0.2,0.6666666666666667,0.6608723905450411,0.20833333333333334,0.25,0.2813411078717201
785
+ 783,0.18604651162790697,0.33333333333333337,0.6811111111111112,0.6432235307900434,0.29166666666666663,0.5,0.22894424673784106
786
+ 784,0.11627906976744186,0.33333333333333337,0.6666666666666667,0.640011519631372,0.29166666666666663,0.5,0.3554327808471455
787
+ 785,0.0813953488372093,0.2,0.6666666666666667,0.640011519631372,0.21874999999999997,0.75,0.736641221374046
788
+ 786,0.1569767441860465,0.33333333333333337,0.5555555555555556,0.4916084724269334,0.29166666666666663,1.0,0.5376044568245125
789
+ 787,0.2441860465116279,0.4666666666666667,0.6000000000000001,0.5452775196351141,0.29166666666666663,1.0,0.35315645013723695
790
+ 788,0.12790697674418605,0.33333333333333337,0.6666666666666667,0.6257810904473846,0.5208333333333334,0.5,0.32546374367622255
791
+ 789,0.0813953488372093,0.33333333333333337,0.6666666666666667,0.6758610722901659,0.29166666666666663,0.5,0.49109414758269726
792
+ 790,0.06976744186046512,0.2,0.6666666666666667,0.6441329682921273,0.21874999999999997,0.5,0.5626822157434402
793
+ 791,0.0872093023255814,0.2,0.6666666666666667,0.6758610722901659,0.29166666666666663,0.5,0.4617224880382776
794
+ 792,0.1569767441860465,0.33333333333333337,0.6666666666666667,0.6257810904473846,0.29166666666666663,0.75,0.4032033426183844
795
+ 793,0.2441860465116279,0.4666666666666667,0.7022222222222223,0.668716328213929,0.29166666666666663,1.0,0.35315645013723695
796
+ 794,0.11627906976744186,0.33333333333333337,0.6666666666666667,0.6257810904473846,0.20833333333333334,0.5,0.3554327808471455
797
+ 795,0.1453488372093023,0.33333333333333337,0.6666666666666667,0.6257810904473846,0.5208333333333334,0.75,0.4333832335329342
798
+ 796,0.06976744186046512,0.2,0.6666666666666667,0.6441329682921273,0.21874999999999997,0.25,0.2813411078717201
799
+ 797,0.0813953488372093,0.33333333333333337,0.6666666666666667,0.6020686984555523,0.21874999999999997,0.25,0.24554707379134863
800
+ 798,0.1569767441860465,0.33333333333333337,0.6666666666666667,0.6257810904473846,0.29166666666666663,0.75,0.4032033426183844
801
+ 799,0.18604651162790697,0.4666666666666667,0.6666666666666667,0.6257810904473846,0.5208333333333334,0.75,0.34341637010676157
802
+ 800,0.21511627906976744,0.33333333333333337,0.6666666666666667,0.6257810904473846,0.29166666666666663,1.0,0.3987603305785124
803
+ 801,0.27325581395348836,0.4666666666666667,0.7022222222222223,0.668716328213929,0.5208333333333334,1.0,0.3169129720853859
804
+ 802,0.040697674418604654,0.2,0.6666666666666667,0.6608723905450411,0.21874999999999997,0.25,0.44266055045871555
805
+ 803,0.1453488372093023,0.33333333333333337,0.6666666666666667,0.6257810904473846,0.29166666666666663,0.75,0.4333832335329342
806
+ 804,0.18604651162790697,0.4666666666666667,0.8888888888888891,0.8941263264882873,0.5208333333333334,0.75,0.34341637010676157
807
+ 805,0.0872093023255814,0.33333333333333337,0.6911111111111112,0.6552990664118838,0.21874999999999997,0.5,0.4617224880382776
kmeans_model.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e2564f47a7ac1677c8909e172225d7c7074fa30d2423dff923fdd9b1d9683180
3
+ size 4049
pca_model.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:db1fd77ea83b6275ce94ce2b9ce7d5ef7b6a16c57c7d12da7b333f1b3790728b
3
+ size 940
prediction.py ADDED
@@ -0,0 +1,254 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # prediction.py
2
+
3
+ import pandas as pd
4
+ import numpy as np
5
+ import pickle
6
+ import json
7
+
8
+ from sklearn.preprocessing import MinMaxScaler
9
+ from sklearn.metrics.pairwise import cosine_similarity
10
+ from scipy.spatial.distance import cdist
11
+
12
+ # =========================================================
13
+ # LOAD FILES
14
+ # =========================================================
15
+
16
+ with open("kmeans_model.pkl", "rb") as f:
17
+ kmeans = pickle.load(f)
18
+
19
+ with open("app_metadata.json") as f:
20
+ meta = json.load(f)
21
+
22
+ df = pd.read_csv("df_clean.csv", index_col=0)
23
+ feat_df = pd.read_csv("feat_df_clean.csv", index_col=0)
24
+
25
+ FEATURE_COLS = meta["FEATURE_COLS"]
26
+
27
+ CLUSTER_LABELS = {
28
+ int(k): v
29
+ for k, v in meta["CLUSTER_LABELS"].items()
30
+ }
31
+
32
+ price_min = meta["price_min"]
33
+ price_max = meta["price_max"]
34
+
35
+ # =========================================================
36
+ # PRIORITY WEIGHTS
37
+ # =========================================================
38
+
39
+ PRIORITY_WEIGHTS = {
40
+
41
+ 'gaming': {
42
+ 'cpu_tier_norm': 0.35,
43
+ 'ram_norm': 0.25,
44
+ 'battery_norm': 0.20,
45
+ 'price_to_perf': 0.20,
46
+ 'camera_norm': 0.05,
47
+ 'battery_efficiency': 0.05,
48
+ },
49
+
50
+ 'camera': {
51
+ 'camera_norm': 0.55,
52
+ 'cpu_tier_norm': 0.15,
53
+ 'ram_norm': 0.10,
54
+ 'battery_norm': 0.10,
55
+ 'battery_efficiency': 0.10,
56
+ 'price_to_perf': 0.10,
57
+ },
58
+
59
+ 'battery': {
60
+ 'battery_norm': 0.45,
61
+ 'battery_efficiency': 0.30,
62
+ 'price_to_perf': 0.15,
63
+ 'ram_norm': 0.10,
64
+ 'cpu_tier_norm': 0.05,
65
+ 'camera_norm': 0.05,
66
+ },
67
+
68
+ 'balanced': {
69
+ 'cpu_tier_norm': 0.20,
70
+ 'ram_norm': 0.20,
71
+ 'price_to_perf': 0.20,
72
+ 'battery_norm': 0.15,
73
+ 'camera_norm': 0.15,
74
+ 'battery_efficiency': 0.10,
75
+ },
76
+ }
77
+
78
+ PRIORITY_TO_SEGMENT = {
79
+ 'gaming': 'Gaming / Performance',
80
+ 'camera': 'Camera-focused',
81
+ }
82
+
83
+ # =========================================================
84
+ # PRICE SCALER
85
+ # =========================================================
86
+
87
+ price_scaler = MinMaxScaler()
88
+
89
+ price_scaler.fit([
90
+ [price_min],
91
+ [price_max]
92
+ ])
93
+
94
+ # =========================================================
95
+ # USER VECTOR
96
+ # =========================================================
97
+
98
+ def build_user_vector(
99
+ budget_usd: float,
100
+ priority: str
101
+ ) -> np.ndarray:
102
+
103
+ weights = PRIORITY_WEIGHTS.get(
104
+ priority,
105
+ PRIORITY_WEIGHTS['balanced']
106
+ )
107
+
108
+ max_w = max(weights.values())
109
+
110
+ budget_pos = float(
111
+ np.clip(
112
+ price_scaler.transform([[budget_usd]])[0][0],
113
+ 0.0,
114
+ 1.0
115
+ )
116
+ )
117
+
118
+ vec = np.zeros(len(FEATURE_COLS))
119
+
120
+ for i, feat in enumerate(FEATURE_COLS):
121
+
122
+ if feat == 'price_norm':
123
+
124
+ vec[i] = budget_pos
125
+
126
+ elif feat == 'price_to_perf':
127
+
128
+ w = weights.get(feat, 0.0) / max_w
129
+
130
+ vec[i] = w * (1.0 - budget_pos)
131
+
132
+ else:
133
+
134
+ w = weights.get(feat, 0.0)
135
+
136
+ vec[i] = (
137
+ (w / max_w)
138
+ if w > 0
139
+ else 0.5
140
+ )
141
+
142
+ return vec
143
+
144
+ # =========================================================
145
+ # RECOMMENDATION
146
+ # =========================================================
147
+
148
+ def recommend_phones(
149
+ budget_usd: float,
150
+ priority: str,
151
+ top_n: int = 5
152
+ ):
153
+
154
+ user_vec = build_user_vector(
155
+ budget_usd,
156
+ priority
157
+ ).reshape(1, -1)
158
+
159
+ reverse_lbl = {
160
+ label: cid
161
+ for cid, label in CLUSTER_LABELS.items()
162
+ }
163
+
164
+ if priority in PRIORITY_TO_SEGMENT:
165
+
166
+ best_cluster = reverse_lbl.get(
167
+ PRIORITY_TO_SEGMENT[priority],
168
+ int(
169
+ np.argmin(
170
+ cdist(
171
+ user_vec,
172
+ kmeans.cluster_centers_
173
+ )[0]
174
+ )
175
+ )
176
+ )
177
+
178
+ else:
179
+
180
+ best_cluster = int(
181
+ np.argmin(
182
+ cdist(
183
+ user_vec,
184
+ kmeans.cluster_centers_,
185
+ metric='euclidean'
186
+ )[0]
187
+ )
188
+ )
189
+
190
+ seg_name = CLUSTER_LABELS[best_cluster]
191
+
192
+ in_cluster = df['cluster_kmeans'] == best_cluster
193
+ in_budget = df['price'] <= budget_usd
194
+
195
+ pool = df[in_cluster & in_budget].copy()
196
+
197
+ if pool.empty:
198
+
199
+ pool = df[in_budget].copy()
200
+
201
+ seg_name += " (all clusters)"
202
+
203
+ ALPHA = 0.4
204
+
205
+ pool_X = feat_df.loc[
206
+ pool.index,
207
+ FEATURE_COLS
208
+ ].values
209
+
210
+ cos_sims = cosine_similarity(
211
+ user_vec,
212
+ pool_X
213
+ )[0]
214
+
215
+ proximity = np.clip(
216
+ 1.0 - np.abs(
217
+ budget_usd - pool['price'].values
218
+ ) / (budget_usd + 1e-6),
219
+ 0,
220
+ 1
221
+ )
222
+
223
+ pool['Match Score (%)'] = (
224
+ cos_sims *
225
+ (
226
+ ALPHA * proximity +
227
+ (1.0 - ALPHA)
228
+ ) * 100
229
+ ).round(1)
230
+
231
+ result_cols = [
232
+ 'brand',
233
+ 'model',
234
+ 'price',
235
+ 'ram',
236
+ 'battery_capacity',
237
+ 'main_camera_mp',
238
+ 'Match Score (%)'
239
+ ]
240
+
241
+ result_cols = [
242
+ c for c in result_cols
243
+ if c in pool.columns
244
+ ]
245
+
246
+ result = (
247
+ pool
248
+ .nlargest(top_n, 'Match Score (%)')[result_cols]
249
+ .reset_index(drop=True)
250
+ )
251
+
252
+ result.index += 1
253
+
254
+ return result, seg_name
requirements.txt CHANGED
@@ -1,2 +1,7 @@
1
- pandas
2
- numpy
 
 
 
 
 
 
1
+ streamlit
2
+ pandas
3
+ numpy
4
+ matplotlib
5
+ seaborn
6
+ scikit-learn
7
+ scipy
scaler.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:611c95da54b77681dc3e1faecce0d3da2f4122da53e3bf6a4d0e6b2c8f429e87
3
+ size 521