ComfyKnowledgeGraph / graph_vis /20240808121811.html
jibinmathew's picture
Upload 42 files
eb957df verified
<html>
<head>
<meta charset="utf-8">
<script>function neighbourhoodHighlight(params) {
// console.log("in nieghbourhoodhighlight");
allNodes = nodes.get({ returnType: "Object" });
// originalNodes = JSON.parse(JSON.stringify(allNodes));
// if something is selected:
if (params.nodes.length > 0) {
highlightActive = true;
var i, j;
var selectedNode = params.nodes[0];
var degrees = 2;
// mark all nodes as hard to read.
for (let nodeId in allNodes) {
// nodeColors[nodeId] = allNodes[nodeId].color;
allNodes[nodeId].color = "rgba(200,200,200,0.5)";
if (allNodes[nodeId].hiddenLabel === undefined) {
allNodes[nodeId].hiddenLabel = allNodes[nodeId].label;
allNodes[nodeId].label = undefined;
}
}
var connectedNodes = network.getConnectedNodes(selectedNode);
var allConnectedNodes = [];
// get the second degree nodes
for (i = 1; i < degrees; i++) {
for (j = 0; j < connectedNodes.length; j++) {
allConnectedNodes = allConnectedNodes.concat(
network.getConnectedNodes(connectedNodes[j])
);
}
}
// all second degree nodes get a different color and their label back
for (i = 0; i < allConnectedNodes.length; i++) {
// allNodes[allConnectedNodes[i]].color = "pink";
allNodes[allConnectedNodes[i]].color = "rgba(150,150,150,0.75)";
if (allNodes[allConnectedNodes[i]].hiddenLabel !== undefined) {
allNodes[allConnectedNodes[i]].label =
allNodes[allConnectedNodes[i]].hiddenLabel;
allNodes[allConnectedNodes[i]].hiddenLabel = undefined;
}
}
// all first degree nodes get their own color and their label back
for (i = 0; i < connectedNodes.length; i++) {
// allNodes[connectedNodes[i]].color = undefined;
allNodes[connectedNodes[i]].color = nodeColors[connectedNodes[i]];
if (allNodes[connectedNodes[i]].hiddenLabel !== undefined) {
allNodes[connectedNodes[i]].label =
allNodes[connectedNodes[i]].hiddenLabel;
allNodes[connectedNodes[i]].hiddenLabel = undefined;
}
}
// the main node gets its own color and its label back.
// allNodes[selectedNode].color = undefined;
allNodes[selectedNode].color = nodeColors[selectedNode];
if (allNodes[selectedNode].hiddenLabel !== undefined) {
allNodes[selectedNode].label = allNodes[selectedNode].hiddenLabel;
allNodes[selectedNode].hiddenLabel = undefined;
}
} else if (highlightActive === true) {
// console.log("highlightActive was true");
// reset all nodes
for (let nodeId in allNodes) {
// allNodes[nodeId].color = "purple";
allNodes[nodeId].color = nodeColors[nodeId];
// delete allNodes[nodeId].color;
if (allNodes[nodeId].hiddenLabel !== undefined) {
allNodes[nodeId].label = allNodes[nodeId].hiddenLabel;
allNodes[nodeId].hiddenLabel = undefined;
}
}
highlightActive = false;
}
// transform the object into an array
var updateArray = [];
if (params.nodes.length > 0) {
for (let nodeId in allNodes) {
if (allNodes.hasOwnProperty(nodeId)) {
// console.log(allNodes[nodeId]);
updateArray.push(allNodes[nodeId]);
}
}
nodes.update(updateArray);
} else {
// console.log("Nothing was selected");
for (let nodeId in allNodes) {
if (allNodes.hasOwnProperty(nodeId)) {
// console.log(allNodes[nodeId]);
// allNodes[nodeId].color = {};
updateArray.push(allNodes[nodeId]);
}
}
nodes.update(updateArray);
}
}
function filterHighlight(params) {
allNodes = nodes.get({ returnType: "Object" });
// if something is selected:
if (params.nodes.length > 0) {
filterActive = true;
let selectedNodes = params.nodes;
// hiding all nodes and saving the label
for (let nodeId in allNodes) {
allNodes[nodeId].hidden = true;
if (allNodes[nodeId].savedLabel === undefined) {
allNodes[nodeId].savedLabel = allNodes[nodeId].label;
allNodes[nodeId].label = undefined;
}
}
for (let i=0; i < selectedNodes.length; i++) {
allNodes[selectedNodes[i]].hidden = false;
if (allNodes[selectedNodes[i]].savedLabel !== undefined) {
allNodes[selectedNodes[i]].label = allNodes[selectedNodes[i]].savedLabel;
allNodes[selectedNodes[i]].savedLabel = undefined;
}
}
} else if (filterActive === true) {
// reset all nodes
for (let nodeId in allNodes) {
allNodes[nodeId].hidden = false;
if (allNodes[nodeId].savedLabel !== undefined) {
allNodes[nodeId].label = allNodes[nodeId].savedLabel;
allNodes[nodeId].savedLabel = undefined;
}
}
filterActive = false;
}
// transform the object into an array
var updateArray = [];
if (params.nodes.length > 0) {
for (let nodeId in allNodes) {
if (allNodes.hasOwnProperty(nodeId)) {
updateArray.push(allNodes[nodeId]);
}
}
nodes.update(updateArray);
} else {
for (let nodeId in allNodes) {
if (allNodes.hasOwnProperty(nodeId)) {
updateArray.push(allNodes[nodeId]);
}
}
nodes.update(updateArray);
}
}
function selectNode(nodes) {
network.selectNodes(nodes);
neighbourhoodHighlight({ nodes: nodes });
return nodes;
}
function selectNodes(nodes) {
network.selectNodes(nodes);
filterHighlight({nodes: nodes});
return nodes;
}
function highlightFilter(filter) {
let selectedNodes = []
let selectedProp = filter['property']
if (filter['item'] === 'node') {
let allNodes = nodes.get({ returnType: "Object" });
for (let nodeId in allNodes) {
if (allNodes[nodeId][selectedProp] && filter['value'].includes((allNodes[nodeId][selectedProp]).toString())) {
selectedNodes.push(nodeId)
}
}
}
else if (filter['item'] === 'edge'){
let allEdges = edges.get({returnType: 'object'});
// check if the selected property exists for selected edge and select the nodes connected to the edge
for (let edge in allEdges) {
if (allEdges[edge][selectedProp] && filter['value'].includes((allEdges[edge][selectedProp]).toString())) {
selectedNodes.push(allEdges[edge]['from'])
selectedNodes.push(allEdges[edge]['to'])
}
}
}
selectNodes(selectedNodes)
}</script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/vis-network/9.1.2/dist/dist/vis-network.min.css" integrity="sha512-WgxfT5LWjfszlPHXRmBWHkV2eceiWTOBvrKCNbdgDYTHrT2AeLCGbF4sZlZw3UMN3WtL0tGUoIAKsu8mllg/XA==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/vis-network/9.1.2/dist/vis-network.min.js" integrity="sha512-LnvoEWDFrqGHlHmDD2101OrLcbsfkrzoSpvtSQtxK3RMnRV0eOkhhBN2dXHKRrUU8p2DGRTk35n4O8nWSVe1mQ==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/tom-select/2.0.0-rc.4/css/tom-select.min.css" integrity="sha512-43fHB3GLgZfz8QXl1RPQ8O66oIgv3po9cJ5erMt1c4QISq9dYb195T3vr5ImnJPXuVroKcGBPXBFKETW8jrPNQ==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/tom-select/2.0.0-rc.4/js/tom-select.complete.js" integrity="sha512-jeF9CfnvzDiw9G9xiksVjxR2lib44Gnovvkv+3CgCG6NXCD4gqlA5nDAVW5WjpA+i+/zKsUWV5xNEbW1X/HH0Q==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<center>
<h1></h1>
</center>
<!-- <link rel="stylesheet" href="../node_modules/vis/dist/vis.min.css" type="text/css" />
<script type="text/javascript" src="../node_modules/vis/dist/vis.js"> </script>-->
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta3/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-eOJMYsd53ii+scO/bJGFsiCZc+5NDVN2yr8+0RDqr0Ql0h+rP48ckxlpbzKgwra6"
crossorigin="anonymous"
/>
<script
src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta3/dist/js/bootstrap.bundle.min.js"
integrity="sha384-JEW9xMcG8R+pH31jmWH6WWP0WintQrMb4s7ZOdauHnUtxwoG2vI5DkLtS3qm9Ekf"
crossorigin="anonymous"
></script>
<center>
<h1></h1>
</center>
<style type="text/css">
#mynetwork {
width: 100%;
height: 800px;
background-color: #ffffff;
border: 1px solid lightgray;
position: relative;
float: left;
}
#loadingBar {
position:absolute;
top:0px;
left:0px;
width: 100%;
height: 800px;
background-color:rgba(200,200,200,0.8);
-webkit-transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-ms-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
transition: all 0.5s ease;
opacity:1;
}
#bar {
position:absolute;
top:0px;
left:0px;
width:20px;
height:20px;
margin:auto auto auto auto;
border-radius:11px;
border:2px solid rgba(30,30,30,0.05);
background: rgb(0, 173, 246); /* Old browsers */
box-shadow: 2px 0px 4px rgba(0,0,0,0.4);
}
#border {
position:absolute;
top:10px;
left:10px;
width:500px;
height:23px;
margin:auto auto auto auto;
box-shadow: 0px 0px 4px rgba(0,0,0,0.2);
border-radius:10px;
}
#text {
position:absolute;
top:8px;
left:530px;
width:30px;
height:50px;
margin:auto auto auto auto;
font-size:22px;
color: #000000;
}
div.outerBorder {
position:relative;
top:400px;
width:600px;
height:44px;
margin:auto auto auto auto;
border:8px solid rgba(0,0,0,0.1);
background: rgb(252,252,252); /* Old browsers */
background: -moz-linear-gradient(top, rgba(252,252,252,1) 0%, rgba(237,237,237,1) 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(252,252,252,1)), color-stop(100%,rgba(237,237,237,1))); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, rgba(252,252,252,1) 0%,rgba(237,237,237,1) 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, rgba(252,252,252,1) 0%,rgba(237,237,237,1) 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, rgba(252,252,252,1) 0%,rgba(237,237,237,1) 100%); /* IE10+ */
background: linear-gradient(to bottom, rgba(252,252,252,1) 0%,rgba(237,237,237,1) 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fcfcfc', endColorstr='#ededed',GradientType=0 ); /* IE6-9 */
border-radius:72px;
box-shadow: 0px 0px 10px rgba(0,0,0,0.2);
}
</style>
</head>
<body>
<div class="card" style="width: 100%">
<div id="select-menu" class="card-header">
<div class="row no-gutters">
<div class="col-10 pb-2">
<select
class="form-select"
aria-label="Default select example"
onchange="selectNode([value]);"
id="select-node"
placeholder="Select node..."
>
<option selected>Select a Node by ID</option>
<option value="Apple iPhone 15 Pro Max 256Gb Natural Titanium">Apple iPhone 15 Pro Max 256Gb Natural Titanium</option>
<option value="6,7"">6,7"</option>
<option value="2796х1290">2796х1290</option>
<option value="Super Retina XDR">Super Retina XDR</option>
<option value="120 Гц">120 Гц</option>
<option value="Ceramic Shield">Ceramic Shield</option>
<option value="3G, 4G, 5G">3G, 4G, 5G</option>
<option value="1 SIM + e-SIM">1 SIM + e-SIM</option>
<option value="Nano-SIM">Nano-SIM</option>
<option value="Є">Є</option>
<option value="Apple iOS 17">Apple iOS 17</option>
<option value="Apple A17 Pro Bionic">Apple A17 Pro Bionic</option>
<option value="6 ядер">6 ядер</option>
<option value="256 ГБ">256 ГБ</option>
<option value="48+12+12 Мп">48+12+12 Мп</option>
<option value="3840 x 2160 4K UHD">3840 x 2160 4K UHD</option>
<option value="12 Мп">12 Мп</option>
<option value="True Tone">True Tone</option>
<option value="Матрична/оптична">Матрична/оптична</option>
<option value="5х оптичний
25х цифровий">5х оптичний
25х цифровий</option>
<option value="802.11aс (Wi-Fi 5)">802.11aс (Wi-Fi 5)</option>
<option value="Версія 5.3">Версія 5.3</option>
<option value="GPS
Beidou
Galileo
QZSS
ГЛОНАСС">GPS
Beidou
Galileo
QZSS
ГЛОНАСС</option>
<option value="Так">Так</option>
<option value="USB Type-C">USB Type-C</option>
<option value="20 Вт">20 Вт</option>
<option value="Захист від пилу та вологи">Захист від пилу та вологи</option>
<option value="IP68">IP68</option>
<option value="Розпізнавання обличчя">Розпізнавання обличчя</option>
<option value="Смартфон
Кабель Type-C
Інструкція
Гарантійний талон">Смартфон
Кабель Type-C
Інструкція
Гарантійний талон</option>
<option value="Скло
Титан">Скло
Титан</option>
<option value="159,9 мм">159,9 мм</option>
<option value="76,7 мм">76,7 мм</option>
<option value="8,25 мм">8,25 мм</option>
<option value="221 г">221 г</option>
<option value="Сріблястий">Сріблястий</option>
<option value="1 рік">1 рік</option>
<option value="Китай">Китай</option>
<option value="Apple">Apple</option>
<option value="54 999 ₴">54 999 ₴</option>
<option value="Apple iPhone 15 Pro Max 256Gb Blue Titanium">Apple iPhone 15 Pro Max 256Gb Blue Titanium</option>
<option value="Samsung Galaxy S24+ 12/512Gb Onyx Black (SM-S926BZKGEUC)">Samsung Galaxy S24+ 12/512Gb Onyx Black (SM-S926BZKGEUC)</option>
<option value="Apple iPhone 13 128Gb Green">Apple iPhone 13 128Gb Green</option>
<option value="Apple iPhone 13 128Gb Blue">Apple iPhone 13 128Gb Blue</option>
<option value="Apple iPhone 13 128Gb Pink">Apple iPhone 13 128Gb Pink</option>
<option value="Apple iPhone 15 Pro 128Gb Blue Titanium">Apple iPhone 15 Pro 128Gb Blue Titanium</option>
<option value="Apple iPhone 15 128Gb Black">Apple iPhone 15 128Gb Black</option>
<option value="Apple iPhone 13 128Gb Starlight">Apple iPhone 13 128Gb Starlight</option>
<option value="Apple iPhone 15 Pro 128Gb Natural Titanium">Apple iPhone 15 Pro 128Gb Natural Titanium</option>
<option value="Apple iPhone 13 128Gb Midnight">Apple iPhone 13 128Gb Midnight</option>
<option value="Samsung Galaxy A55 5G 8/256Gb Awesome Navy (SM-A556BZKCEUC)">Samsung Galaxy A55 5G 8/256Gb Awesome Navy (SM-A556BZKCEUC)</option>
<option value="Samsung Galaxy A35 5G 8/256Gb Awesome Lilac (SM-A356BLVGEUC)">Samsung Galaxy A35 5G 8/256Gb Awesome Lilac (SM-A356BLVGEUC)</option>
<option value="Samsung Galaxy S23FE 8/256Gb Graphite (SM-S711BZAGSEK)">Samsung Galaxy S23FE 8/256Gb Graphite (SM-S711BZAGSEK)</option>
<option value="Samsung Galaxy S23 8/256Gb Black (SM-S911BZKGSEK)">Samsung Galaxy S23 8/256Gb Black (SM-S911BZKGSEK)</option>
<option value="Samsung Galaxy S24 Ultra 12/256Gb Titanium Gray (SM-S928BZTGEUC)">Samsung Galaxy S24 Ultra 12/256Gb Titanium Gray (SM-S928BZTGEUC)</option>
<option value="Samsung Galaxy S24 8/256Gb Onyx Black (SM-S921BZKGEUC)">Samsung Galaxy S24 8/256Gb Onyx Black (SM-S921BZKGEUC)</option>
<option value="Samsung Galaxy A35 5G 6/128Gb Awesome Navy (SM-A356BZKBEUC)">Samsung Galaxy A35 5G 6/128Gb Awesome Navy (SM-A356BZKBEUC)</option>
<option value="Samsung Galaxy A25 5G 6/128Gb Black (SM-A256BZKDEUC)">Samsung Galaxy A25 5G 6/128Gb Black (SM-A256BZKDEUC)</option>
<option value="Samsung Galaxy A15 4/128Gb Black (SM-A155FZKDEUC)">Samsung Galaxy A15 4/128Gb Black (SM-A155FZKDEUC)</option>
<option value="6,6"">6,6"</option>
<option value="2340x1080">2340x1080</option>
<option value="Super Amoled">Super Amoled</option>
<option value="SIM + SIM/microSD">SIM + SIM/microSD</option>
<option value="Exynos 1480">Exynos 1480</option>
<option value="8 ядер">8 ядер</option>
<option value="Xclipse 530 GPU">Xclipse 530 GPU</option>
<option value="8 ГБ">8 ГБ</option>
<option value="microSD 1 ТБ">microSD 1 ТБ</option>
<option value="50+12+5 Мп">50+12+5 Мп</option>
<option value="32 Мп">32 Мп</option>
<option value="Оптична">Оптична</option>
<option value="10х цифровий">10х цифровий</option>
<option value="802.11ax (Wi-Fi 6)">802.11ax (Wi-Fi 6)</option>
<option value="5000 мАг">5000 мАг</option>
<option value="25 Вт">25 Вт</option>
<option value="До 25 г">До 25 г</option>
<option value="Сканер відбитків пальців">Сканер відбитків пальців</option>
<option value="Метал">Метал</option>
<option value="161,1 мм">161,1 мм</option>
<option value="77,4 мм">77,4 мм</option>
<option value="8,2 мм">8,2 мм</option>
<option value="213 г">213 г</option>
<option value="Темно-синій">Темно-синій</option>
<option value="Індія">Індія</option>
<option value="Samsung">Samsung</option>
<option value="19 899 ₴">19 899 ₴</option>
<option value="Corning Gorilla Glass Victus+">Corning Gorilla Glass Victus+</option>
<option value="2G GSM, 3G WCDMA, 4G LTE FDD, 4G LTE TDD, 5G Sub6 FDD, 5G Sub6 TDD">2G GSM, 3G WCDMA, 4G LTE FDD, 4G LTE TDD, 5G Sub6 FDD, 5G Sub6 TDD</option>
<option value="Exynos 1380">Exynos 1380</option>
<option value="4 х 2,4 ГГц + 4 х 2,0 ГГц">4 х 2,4 ГГц + 4 х 2,0 ГГц</option>
<option value="ARM Mali-G68 MP5">ARM Mali-G68 MP5</option>
<option value="50+8+5 Мп">50+8+5 Мп</option>
<option value="13 Мп">13 Мп</option>
<option value="GPS
Beidou
Galileo
QZSS">GPS
Beidou
Galileo
QZSS</option>
<option value="IP67">IP67</option>
<option value="Пластик
Скло">Пластик
Скло</option>
<option value="161,7 мм">161,7 мм</option>
<option value="78 мм">78 мм</option>
<option value="209 г">209 г</option>
<option value="Ліловий">Ліловий</option>
<option value="В'єтнам">В'єтнам</option>
<option value="14 999 ₴">14 999 ₴</option>
<option value="Синій">Синій</option>
<option value="6,1''">6,1''</option>
<option value="2532х1170">2532х1170</option>
<option value="2G, 3G, 4G, 5G">2G, 3G, 4G, 5G</option>
<option value="1 SIM">1 SIM</option>
<option value="Apple iOS 15">Apple iOS 15</option>
<option value="Apple A15 Bionic">Apple A15 Bionic</option>
<option value="128 ГБ">128 ГБ</option>
<option value="12+12 Мп">12+12 Мп</option>
<option value="2х оптичний
5х цифровий">2х оптичний
5х цифровий</option>
<option value="Версія 5.0">Версія 5.0</option>
<option value="Lightning">Lightning</option>
<option value="3265 мАг">3265 мАг</option>
<option value="Смартфон
Кабель Lightning
Інструкція
Гарантійний талон">Смартфон
Кабель Lightning
Інструкція
Гарантійний талон</option>
<option value="Метал
Скло">Метал
Скло</option>
<option value="146,7 мм">146,7 мм</option>
<option value="71,5 мм">71,5 мм</option>
<option value="7,65 мм">7,65 мм</option>
<option value="174 г">174 г</option>
<option value="8х2х18 см">8х2х18 см</option>
<option value="0,332 кг">0,332 кг</option>
<option value="Зелений">Зелений</option>
<option value="26 999 ₴">26 999 ₴</option>
<option value="6,4''">6,4''</option>
<option value="Dynamic Amoled 2x">Dynamic Amoled 2x</option>
<option value="Corning Gorilla Glass 5">Corning Gorilla Glass 5</option>
<option value="2 SIM">2 SIM</option>
<option value="Exynos 2200">Exynos 2200</option>
<option value="1 х 2,8 ГГц + 3 х 2,5 ГГц + 4 х 1,8 ГГц">1 х 2,8 ГГц + 3 х 2,5 ГГц + 4 х 1,8 ГГц</option>
<option value="Xclipse GPU">Xclipse GPU</option>
<option value="50+12+8 Мп">50+12+8 Мп</option>
<option value="7680 x 4320 8K UHD">7680 x 4320 8K UHD</option>
<option value="10 Мп">10 Мп</option>
<option value="3х оптичний
30х цифровий">3х оптичний
30х цифровий</option>
<option value="4500 мАг">4500 мАг</option>
<option value="До 39 г">До 39 г</option>
<option value="158 мм">158 мм</option>
<option value="76,5 мм">76,5 мм</option>
<option value="Графіт">Графіт</option>
<option value="23 199 ₴">23 199 ₴</option>
<option value="Corning Gorilla Glass Victus 2">Corning Gorilla Glass Victus 2</option>
<option value="Android 13">Android 13</option>
<option value="Qualcomm Snapdragon 8 Gen 2">Qualcomm Snapdragon 8 Gen 2</option>
<option value="Qualcomm Adreno 740">Qualcomm Adreno 740</option>
<option value="50+10+12 Мп">50+10+12 Мп</option>
<option value="3900 мАг">3900 мАг</option>
<option value="До 35 г">До 35 г</option>
<option value="Метал
Пластик
Скло">Метал
Пластик
Скло</option>
<option value="146,3 мм">146,3 мм</option>
<option value="70,9 мм">70,9 мм</option>
<option value="7,6 мм">7,6 мм</option>
<option value="168 г">168 г</option>
<option value="Чорний">Чорний</option>
<option value="28 999 ₴">28 999 ₴</option>
<option value="6,5''">6,5''</option>
<option value="90 Гц">90 Гц</option>
<option value="3G, 4G">3G, 4G</option>
<option value="Android 14">Android 14</option>
<option value="MediaTek Helio G99">MediaTek Helio G99</option>
<option value="2 x 2,2 ГГц + 6 x 2,0 ГГц">2 x 2,2 ГГц + 6 x 2,0 ГГц</option>
<option value="ARM Mali-G57 MC2">ARM Mali-G57 MC2</option>
<option value="4 ГБ">4 ГБ</option>
<option value="50+5+2 Мп">50+5+2 Мп</option>
<option value="1920 x 1080 Full HD">1920 x 1080 Full HD</option>
<option value="15 Вт">15 Вт</option>
<option value="До 51 г">До 51 г</option>
<option value="160,1 мм">160,1 мм</option>
<option value="76,8 мм">76,8 мм</option>
<option value="8,4 мм">8,4 мм</option>
<option value="200 г">200 г</option>
<option value="6 599 ₴">6 599 ₴</option>
<option value="3120x1440">3120x1440</option>
<option value="Exynos 2400">Exynos 2400</option>
<option value="10 ядер">10 ядер</option>
<option value="12 ГБ">12 ГБ</option>
<option value="512 ГБ">512 ГБ</option>
<option value="2х оптичний
3х оптичний
30х цифровий">2х оптичний
3х оптичний
30х цифровий</option>
<option value="4900 мАг">4900 мАг</option>
<option value="45 Вт">45 Вт</option>
<option value="Сканер відбитків пальців під екраном">Сканер відбитків пальців під екраном</option>
<option value="158,5 мм">158,5 мм</option>
<option value="75,6 мм">75,6 мм</option>
<option value="7,7 мм">7,7 мм</option>
<option value="197 г">197 г</option>
<option value="45 899 ₴">45 899 ₴</option>
<option value="Рожевий">Рожевий</option>
<option value="2556х1179">2556х1179</option>
<option value="3х оптичний
15х цифровий">3х оптичний
15х цифровий</option>
<option value="GPS
A-GPS
Beidou
Galileo
QZSS
ГЛОНАСС">GPS
A-GPS
Beidou
Galileo
QZSS
ГЛОНАСС</option>
<option value="146,6 мм">146,6 мм</option>
<option value="70,6 мм">70,6 мм</option>
<option value="187 г">187 г</option>
<option value="45 999 ₴">45 999 ₴</option>
<option value="6,8"">6,8"</option>
<option value="Qualcomm Snapdragon 8 Gen 3">Qualcomm Snapdragon 8 Gen 3</option>
<option value="200+50+10+12 Мп">200+50+10+12 Мп</option>
<option value="3х оптичний
5х оптичний
100х цифровий">3х оптичний
5х оптичний
100х цифровий</option>
<option value="802.11be (Wi-Fi 7)">802.11be (Wi-Fi 7)</option>
<option value="Смартфон
Кабель Type-C
Стілус
Інструкція
Гарантійний талон">Смартфон
Кабель Type-C
Стілус
Інструкція
Гарантійний талон</option>
<option value="Титан">Титан</option>
<option value="162,3 мм">162,3 мм</option>
<option value="79 мм">79 мм</option>
<option value="8,6 мм">8,6 мм</option>
<option value="233 г">233 г</option>
<option value="Сірий">Сірий</option>
<option value="52 999 ₴">52 999 ₴</option>
<option value="Apple A16 Bionic">Apple A16 Bionic</option>
<option value="2х оптичний
10х цифровий">2х оптичний
10х цифровий</option>
<option value="147,6 мм">147,6 мм</option>
<option value="71,6 мм">71,6 мм</option>
<option value="7,8 мм">7,8 мм</option>
<option value="171 г">171 г</option>
<option value="39 499 ₴">39 499 ₴</option>
<option value="6,2''">6,2''</option>
<option value="4000 мАг">4000 мАг</option>
<option value="147 мм">147 мм</option>
<option value="167 г">167 г</option>
<option value="35 999 ₴">35 999 ₴</option>
<option value="Білий">Білий</option>
<option value="6 ГБ">6 ГБ</option>
<option value="13 499 ₴">13 499 ₴</option>
<option value="Exynos 1280">Exynos 1280</option>
<option value="2 х 2,4 ГГц + 6 х 2 ГГц">2 х 2,4 ГГц + 6 х 2 ГГц</option>
<option value="ARM Mali-G68">ARM Mali-G68</option>
<option value="50+8+2 Мп">50+8+2 Мп</option>
<option value="До 38 г">До 38 г</option>
<option value="Пластик">Пластик</option>
<option value="161 мм">161 мм</option>
<option value="8,3 мм">8,3 мм</option>
<option value="10 199 ₴">10 199 ₴</option>
</select>
</div>
<div class="col-2 pb-2">
<button type="button" class="btn btn-primary btn-block" onclick="neighbourhoodHighlight({nodes: []});">Reset Selection</button>
</div>
</div>
</div>
<div id="mynetwork" class="card-body"></div>
</div>
<div id="loadingBar">
<div class="outerBorder">
<div id="text">0%</div>
<div id="border">
<div id="bar"></div>
</div>
</div>
</div>
<script type="text/javascript">
// initialize global variables.
var edges;
var nodes;
var allNodes;
var allEdges;
var nodeColors;
var originalNodes;
var network;
var container;
var options, data;
var filter = {
item : '',
property : '',
value : []
};
new TomSelect("#select-node",{
create: false,
sortField: {
field: "text",
direction: "asc"
}
});
// This method is responsible for drawing the graph, returns the drawn network
function drawGraph() {
var container = document.getElementById('mynetwork');
// parsing and collecting nodes and edges from the python
nodes = new vis.DataSet([{"color": "#97c2fc", "id": "Apple iPhone 15 Pro Max 256Gb Natural Titanium", "label": "Apple iPhone 15 Pro Max 256Gb Natural Titanium", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "6,7\"", "label": "6,7\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "2796\u04451290", "label": "2796\u04451290", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Super Retina XDR", "label": "Super Retina XDR", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "120 \u0413\u0446", "label": "120 \u0413\u0446", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Ceramic Shield", "label": "Ceramic Shield", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "3G, 4G, 5G", "label": "3G, 4G, 5G", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "1 SIM + e-SIM", "label": "1 SIM + e-SIM", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Nano-SIM", "label": "Nano-SIM", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "\u0404", "label": "\u0404", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Apple iOS 17", "label": "Apple iOS 17", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Apple A17 Pro Bionic", "label": "Apple A17 Pro Bionic", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "6 \u044f\u0434\u0435\u0440", "label": "6 \u044f\u0434\u0435\u0440", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "256 \u0413\u0411", "label": "256 \u0413\u0411", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "48+12+12 \u041c\u043f", "label": "48+12+12 \u041c\u043f", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "3840 x 2160 4K UHD", "label": "3840 x 2160 4K UHD", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "12 \u041c\u043f", "label": "12 \u041c\u043f", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "True Tone", "label": "True Tone", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "\u041c\u0430\u0442\u0440\u0438\u0447\u043d\u0430/\u043e\u043f\u0442\u0438\u0447\u043d\u0430", "label": "\u041c\u0430\u0442\u0440\u0438\u0447\u043d\u0430/\u043e\u043f\u0442\u0438\u0447\u043d\u0430", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "5\u0445 \u043e\u043f\u0442\u0438\u0447\u043d\u0438\u0439\n25\u0445 \u0446\u0438\u0444\u0440\u043e\u0432\u0438\u0439", "label": "5\u0445 \u043e\u043f\u0442\u0438\u0447\u043d\u0438\u0439\n25\u0445 \u0446\u0438\u0444\u0440\u043e\u0432\u0438\u0439", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "802.11a\u0441 (Wi-Fi 5)", "label": "802.11a\u0441 (Wi-Fi 5)", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "\u0412\u0435\u0440\u0441\u0456\u044f 5.3", "label": "\u0412\u0435\u0440\u0441\u0456\u044f 5.3", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "GPS\nBeidou\nGalileo\nQZSS\n\u0413\u041b\u041e\u041d\u0410\u0421\u0421", "label": "GPS\nBeidou\nGalileo\nQZSS\n\u0413\u041b\u041e\u041d\u0410\u0421\u0421", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "\u0422\u0430\u043a", "label": "\u0422\u0430\u043a", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "USB Type-C", "label": "USB Type-C", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "20 \u0412\u0442", "label": "20 \u0412\u0442", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "\u0417\u0430\u0445\u0438\u0441\u0442 \u0432\u0456\u0434 \u043f\u0438\u043b\u0443 \u0442\u0430 \u0432\u043e\u043b\u043e\u0433\u0438", "label": "\u0417\u0430\u0445\u0438\u0441\u0442 \u0432\u0456\u0434 \u043f\u0438\u043b\u0443 \u0442\u0430 \u0432\u043e\u043b\u043e\u0433\u0438", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "IP68", "label": "IP68", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "\u0420\u043e\u0437\u043f\u0456\u0437\u043d\u0430\u0432\u0430\u043d\u043d\u044f \u043e\u0431\u043b\u0438\u0447\u0447\u044f", "label": "\u0420\u043e\u0437\u043f\u0456\u0437\u043d\u0430\u0432\u0430\u043d\u043d\u044f \u043e\u0431\u043b\u0438\u0447\u0447\u044f", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "\u0421\u043c\u0430\u0440\u0442\u0444\u043e\u043d\n\u041a\u0430\u0431\u0435\u043b\u044c Type-C\n\u0406\u043d\u0441\u0442\u0440\u0443\u043a\u0446\u0456\u044f\n\u0413\u0430\u0440\u0430\u043d\u0442\u0456\u0439\u043d\u0438\u0439 \u0442\u0430\u043b\u043e\u043d", "label": "\u0421\u043c\u0430\u0440\u0442\u0444\u043e\u043d\n\u041a\u0430\u0431\u0435\u043b\u044c Type-C\n\u0406\u043d\u0441\u0442\u0440\u0443\u043a\u0446\u0456\u044f\n\u0413\u0430\u0440\u0430\u043d\u0442\u0456\u0439\u043d\u0438\u0439 \u0442\u0430\u043b\u043e\u043d", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "\u0421\u043a\u043b\u043e\n\u0422\u0438\u0442\u0430\u043d", "label": "\u0421\u043a\u043b\u043e\n\u0422\u0438\u0442\u0430\u043d", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "159,9 \u043c\u043c", "label": "159,9 \u043c\u043c", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "76,7 \u043c\u043c", "label": "76,7 \u043c\u043c", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "8,25 \u043c\u043c", "label": "8,25 \u043c\u043c", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "221 \u0433", "label": "221 \u0433", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "\u0421\u0440\u0456\u0431\u043b\u044f\u0441\u0442\u0438\u0439", "label": "\u0421\u0440\u0456\u0431\u043b\u044f\u0441\u0442\u0438\u0439", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "1 \u0440\u0456\u043a", "label": "1 \u0440\u0456\u043a", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "\u041a\u0438\u0442\u0430\u0439", "label": "\u041a\u0438\u0442\u0430\u0439", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Apple", "label": "Apple", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "54 999 \u20b4", "label": "54 999 \u20b4", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Apple iPhone 15 Pro Max 256Gb Blue Titanium", "label": "Apple iPhone 15 Pro Max 256Gb Blue Titanium", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Samsung Galaxy S24+ 12/512Gb Onyx Black (SM-S926BZKGEUC)", "label": "Samsung Galaxy S24+ 12/512Gb Onyx Black (SM-S926BZKGEUC)", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Apple iPhone 13 128Gb Green", "label": "Apple iPhone 13 128Gb Green", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Apple iPhone 13 128Gb Blue", "label": "Apple iPhone 13 128Gb Blue", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Apple iPhone 13 128Gb Pink", "label": "Apple iPhone 13 128Gb Pink", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Apple iPhone 15 Pro 128Gb Blue Titanium", "label": "Apple iPhone 15 Pro 128Gb Blue Titanium", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Apple iPhone 15 128Gb Black", "label": "Apple iPhone 15 128Gb Black", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Apple iPhone 13 128Gb Starlight", "label": "Apple iPhone 13 128Gb Starlight", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Apple iPhone 15 Pro 128Gb Natural Titanium", "label": "Apple iPhone 15 Pro 128Gb Natural Titanium", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Apple iPhone 13 128Gb Midnight", "label": "Apple iPhone 13 128Gb Midnight", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Samsung Galaxy A55 5G 8/256Gb Awesome Navy (SM-A556BZKCEUC)", "label": "Samsung Galaxy A55 5G 8/256Gb Awesome Navy (SM-A556BZKCEUC)", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Samsung Galaxy A35 5G 8/256Gb Awesome Lilac (SM-A356BLVGEUC)", "label": "Samsung Galaxy A35 5G 8/256Gb Awesome Lilac (SM-A356BLVGEUC)", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Samsung Galaxy S23FE 8/256Gb Graphite (SM-S711BZAGSEK)", "label": "Samsung Galaxy S23FE 8/256Gb Graphite (SM-S711BZAGSEK)", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Samsung Galaxy S23 8/256Gb Black (SM-S911BZKGSEK)", "label": "Samsung Galaxy S23 8/256Gb Black (SM-S911BZKGSEK)", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Samsung Galaxy S24 Ultra 12/256Gb Titanium Gray (SM-S928BZTGEUC)", "label": "Samsung Galaxy S24 Ultra 12/256Gb Titanium Gray (SM-S928BZTGEUC)", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Samsung Galaxy S24 8/256Gb Onyx Black (SM-S921BZKGEUC)", "label": "Samsung Galaxy S24 8/256Gb Onyx Black (SM-S921BZKGEUC)", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Samsung Galaxy A35 5G 6/128Gb Awesome Navy (SM-A356BZKBEUC)", "label": "Samsung Galaxy A35 5G 6/128Gb Awesome Navy (SM-A356BZKBEUC)", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Samsung Galaxy A25 5G 6/128Gb Black (SM-A256BZKDEUC)", "label": "Samsung Galaxy A25 5G 6/128Gb Black (SM-A256BZKDEUC)", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Samsung Galaxy A15 4/128Gb Black (SM-A155FZKDEUC)", "label": "Samsung Galaxy A15 4/128Gb Black (SM-A155FZKDEUC)", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "6,6\"", "label": "6,6\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "2340x1080", "label": "2340x1080", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Super Amoled", "label": "Super Amoled", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "SIM + SIM/microSD", "label": "SIM + SIM/microSD", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Exynos 1480", "label": "Exynos 1480", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "8 \u044f\u0434\u0435\u0440", "label": "8 \u044f\u0434\u0435\u0440", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Xclipse 530 GPU", "label": "Xclipse 530 GPU", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "8 \u0413\u0411", "label": "8 \u0413\u0411", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "microSD 1 \u0422\u0411", "label": "microSD 1 \u0422\u0411", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "50+12+5 \u041c\u043f", "label": "50+12+5 \u041c\u043f", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "32 \u041c\u043f", "label": "32 \u041c\u043f", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "\u041e\u043f\u0442\u0438\u0447\u043d\u0430", "label": "\u041e\u043f\u0442\u0438\u0447\u043d\u0430", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "10\u0445 \u0446\u0438\u0444\u0440\u043e\u0432\u0438\u0439", "label": "10\u0445 \u0446\u0438\u0444\u0440\u043e\u0432\u0438\u0439", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "802.11ax (Wi-Fi 6)", "label": "802.11ax (Wi-Fi 6)", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "5000 \u043c\u0410\u0433", "label": "5000 \u043c\u0410\u0433", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "25 \u0412\u0442", "label": "25 \u0412\u0442", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "\u0414\u043e 25 \u0433", "label": "\u0414\u043e 25 \u0433", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "\u0421\u043a\u0430\u043d\u0435\u0440 \u0432\u0456\u0434\u0431\u0438\u0442\u043a\u0456\u0432 \u043f\u0430\u043b\u044c\u0446\u0456\u0432", "label": "\u0421\u043a\u0430\u043d\u0435\u0440 \u0432\u0456\u0434\u0431\u0438\u0442\u043a\u0456\u0432 \u043f\u0430\u043b\u044c\u0446\u0456\u0432", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "\u041c\u0435\u0442\u0430\u043b", "label": "\u041c\u0435\u0442\u0430\u043b", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "161,1 \u043c\u043c", "label": "161,1 \u043c\u043c", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "77,4 \u043c\u043c", "label": "77,4 \u043c\u043c", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "8,2 \u043c\u043c", "label": "8,2 \u043c\u043c", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "213 \u0433", "label": "213 \u0433", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "\u0422\u0435\u043c\u043d\u043e-\u0441\u0438\u043d\u0456\u0439", "label": "\u0422\u0435\u043c\u043d\u043e-\u0441\u0438\u043d\u0456\u0439", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "\u0406\u043d\u0434\u0456\u044f", "label": "\u0406\u043d\u0434\u0456\u044f", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Samsung", "label": "Samsung", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "19 899 \u20b4", "label": "19 899 \u20b4", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Corning Gorilla Glass Victus+", "label": "Corning Gorilla Glass Victus+", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "2G GSM, 3G WCDMA, 4G LTE FDD, 4G LTE TDD, 5G Sub6 FDD, 5G Sub6 TDD", "label": "2G GSM, 3G WCDMA, 4G LTE FDD, 4G LTE TDD, 5G Sub6 FDD, 5G Sub6 TDD", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Exynos 1380", "label": "Exynos 1380", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "4 \u0445 2,4 \u0413\u0413\u0446 + 4 \u0445 2,0 \u0413\u0413\u0446", "label": "4 \u0445 2,4 \u0413\u0413\u0446 + 4 \u0445 2,0 \u0413\u0413\u0446", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "ARM Mali-G68 MP5", "label": "ARM Mali-G68 MP5", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "50+8+5 \u041c\u043f", "label": "50+8+5 \u041c\u043f", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "13 \u041c\u043f", "label": "13 \u041c\u043f", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "GPS\nBeidou\nGalileo\nQZSS", "label": "GPS\nBeidou\nGalileo\nQZSS", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "IP67", "label": "IP67", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "\u041f\u043b\u0430\u0441\u0442\u0438\u043a\n\u0421\u043a\u043b\u043e", "label": "\u041f\u043b\u0430\u0441\u0442\u0438\u043a\n\u0421\u043a\u043b\u043e", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "161,7 \u043c\u043c", "label": "161,7 \u043c\u043c", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "78 \u043c\u043c", "label": "78 \u043c\u043c", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "209 \u0433", "label": "209 \u0433", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "\u041b\u0456\u043b\u043e\u0432\u0438\u0439", "label": "\u041b\u0456\u043b\u043e\u0432\u0438\u0439", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "\u0412\u0027\u0454\u0442\u043d\u0430\u043c", "label": "\u0412\u0027\u0454\u0442\u043d\u0430\u043c", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "14 999 \u20b4", "label": "14 999 \u20b4", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "\u0421\u0438\u043d\u0456\u0439", "label": "\u0421\u0438\u043d\u0456\u0439", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "6,1\u0027\u0027", "label": "6,1\u0027\u0027", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "2532\u04451170", "label": "2532\u04451170", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "2G, 3G, 4G, 5G", "label": "2G, 3G, 4G, 5G", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "1 SIM", "label": "1 SIM", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Apple iOS 15", "label": "Apple iOS 15", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Apple A15 Bionic", "label": "Apple A15 Bionic", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "128 \u0413\u0411", "label": "128 \u0413\u0411", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "12+12 \u041c\u043f", "label": "12+12 \u041c\u043f", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "2\u0445 \u043e\u043f\u0442\u0438\u0447\u043d\u0438\u0439\n5\u0445 \u0446\u0438\u0444\u0440\u043e\u0432\u0438\u0439", "label": "2\u0445 \u043e\u043f\u0442\u0438\u0447\u043d\u0438\u0439\n5\u0445 \u0446\u0438\u0444\u0440\u043e\u0432\u0438\u0439", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "\u0412\u0435\u0440\u0441\u0456\u044f 5.0", "label": "\u0412\u0435\u0440\u0441\u0456\u044f 5.0", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Lightning", "label": "Lightning", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "3265 \u043c\u0410\u0433", "label": "3265 \u043c\u0410\u0433", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "\u0421\u043c\u0430\u0440\u0442\u0444\u043e\u043d\n\u041a\u0430\u0431\u0435\u043b\u044c Lightning\n\u0406\u043d\u0441\u0442\u0440\u0443\u043a\u0446\u0456\u044f\n\u0413\u0430\u0440\u0430\u043d\u0442\u0456\u0439\u043d\u0438\u0439 \u0442\u0430\u043b\u043e\u043d", "label": "\u0421\u043c\u0430\u0440\u0442\u0444\u043e\u043d\n\u041a\u0430\u0431\u0435\u043b\u044c Lightning\n\u0406\u043d\u0441\u0442\u0440\u0443\u043a\u0446\u0456\u044f\n\u0413\u0430\u0440\u0430\u043d\u0442\u0456\u0439\u043d\u0438\u0439 \u0442\u0430\u043b\u043e\u043d", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "\u041c\u0435\u0442\u0430\u043b\n\u0421\u043a\u043b\u043e", "label": "\u041c\u0435\u0442\u0430\u043b\n\u0421\u043a\u043b\u043e", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "146,7 \u043c\u043c", "label": "146,7 \u043c\u043c", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "71,5 \u043c\u043c", "label": "71,5 \u043c\u043c", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "7,65 \u043c\u043c", "label": "7,65 \u043c\u043c", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "174 \u0433", "label": "174 \u0433", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "8\u04452\u044518 \u0441\u043c", "label": "8\u04452\u044518 \u0441\u043c", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "0,332 \u043a\u0433", "label": "0,332 \u043a\u0433", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "\u0417\u0435\u043b\u0435\u043d\u0438\u0439", "label": "\u0417\u0435\u043b\u0435\u043d\u0438\u0439", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "26 999 \u20b4", "label": "26 999 \u20b4", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "6,4\u0027\u0027", "label": "6,4\u0027\u0027", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Dynamic Amoled 2x", "label": "Dynamic Amoled 2x", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Corning Gorilla Glass 5", "label": "Corning Gorilla Glass 5", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "2 SIM", "label": "2 SIM", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Exynos 2200", "label": "Exynos 2200", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "1 \u0445 2,8 \u0413\u0413\u0446 + 3 \u0445 2,5 \u0413\u0413\u0446 + 4 \u0445 1,8 \u0413\u0413\u0446", "label": "1 \u0445 2,8 \u0413\u0413\u0446 + 3 \u0445 2,5 \u0413\u0413\u0446 + 4 \u0445 1,8 \u0413\u0413\u0446", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Xclipse GPU", "label": "Xclipse GPU", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "50+12+8 \u041c\u043f", "label": "50+12+8 \u041c\u043f", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "7680 x 4320 8K UHD", "label": "7680 x 4320 8K UHD", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "10 \u041c\u043f", "label": "10 \u041c\u043f", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "3\u0445 \u043e\u043f\u0442\u0438\u0447\u043d\u0438\u0439\n30\u0445 \u0446\u0438\u0444\u0440\u043e\u0432\u0438\u0439", "label": "3\u0445 \u043e\u043f\u0442\u0438\u0447\u043d\u0438\u0439\n30\u0445 \u0446\u0438\u0444\u0440\u043e\u0432\u0438\u0439", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "4500 \u043c\u0410\u0433", "label": "4500 \u043c\u0410\u0433", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "\u0414\u043e 39 \u0433", "label": "\u0414\u043e 39 \u0433", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "158 \u043c\u043c", "label": "158 \u043c\u043c", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "76,5 \u043c\u043c", "label": "76,5 \u043c\u043c", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "\u0413\u0440\u0430\u0444\u0456\u0442", "label": "\u0413\u0440\u0430\u0444\u0456\u0442", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "23 199 \u20b4", "label": "23 199 \u20b4", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Corning Gorilla Glass Victus 2", "label": "Corning Gorilla Glass Victus 2", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Android 13", "label": "Android 13", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Qualcomm Snapdragon 8 Gen 2", "label": "Qualcomm Snapdragon 8 Gen 2", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Qualcomm Adreno 740", "label": "Qualcomm Adreno 740", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "50+10+12 \u041c\u043f", "label": "50+10+12 \u041c\u043f", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "3900 \u043c\u0410\u0433", "label": "3900 \u043c\u0410\u0433", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "\u0414\u043e 35 \u0433", "label": "\u0414\u043e 35 \u0433", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "\u041c\u0435\u0442\u0430\u043b\n\u041f\u043b\u0430\u0441\u0442\u0438\u043a\n\u0421\u043a\u043b\u043e", "label": "\u041c\u0435\u0442\u0430\u043b\n\u041f\u043b\u0430\u0441\u0442\u0438\u043a\n\u0421\u043a\u043b\u043e", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "146,3 \u043c\u043c", "label": "146,3 \u043c\u043c", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "70,9 \u043c\u043c", "label": "70,9 \u043c\u043c", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "7,6 \u043c\u043c", "label": "7,6 \u043c\u043c", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "168 \u0433", "label": "168 \u0433", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "\u0427\u043e\u0440\u043d\u0438\u0439", "label": "\u0427\u043e\u0440\u043d\u0438\u0439", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "28 999 \u20b4", "label": "28 999 \u20b4", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "6,5\u0027\u0027", "label": "6,5\u0027\u0027", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "90 \u0413\u0446", "label": "90 \u0413\u0446", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "3G, 4G", "label": "3G, 4G", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Android 14", "label": "Android 14", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "MediaTek Helio G99", "label": "MediaTek Helio G99", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "2 x 2,2 \u0413\u0413\u0446 + 6 x 2,0 \u0413\u0413\u0446", "label": "2 x 2,2 \u0413\u0413\u0446 + 6 x 2,0 \u0413\u0413\u0446", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "ARM Mali-G57 MC2", "label": "ARM Mali-G57 MC2", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "4 \u0413\u0411", "label": "4 \u0413\u0411", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "50+5+2 \u041c\u043f", "label": "50+5+2 \u041c\u043f", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "1920 x 1080 Full HD", "label": "1920 x 1080 Full HD", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "15 \u0412\u0442", "label": "15 \u0412\u0442", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "\u0414\u043e 51 \u0433", "label": "\u0414\u043e 51 \u0433", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "160,1 \u043c\u043c", "label": "160,1 \u043c\u043c", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "76,8 \u043c\u043c", "label": "76,8 \u043c\u043c", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "8,4 \u043c\u043c", "label": "8,4 \u043c\u043c", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "200 \u0433", "label": "200 \u0433", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "6 599 \u20b4", "label": "6 599 \u20b4", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "3120x1440", "label": "3120x1440", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Exynos 2400", "label": "Exynos 2400", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "10 \u044f\u0434\u0435\u0440", "label": "10 \u044f\u0434\u0435\u0440", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "12 \u0413\u0411", "label": "12 \u0413\u0411", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "512 \u0413\u0411", "label": "512 \u0413\u0411", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "2\u0445 \u043e\u043f\u0442\u0438\u0447\u043d\u0438\u0439\n3\u0445 \u043e\u043f\u0442\u0438\u0447\u043d\u0438\u0439\n30\u0445 \u0446\u0438\u0444\u0440\u043e\u0432\u0438\u0439", "label": "2\u0445 \u043e\u043f\u0442\u0438\u0447\u043d\u0438\u0439\n3\u0445 \u043e\u043f\u0442\u0438\u0447\u043d\u0438\u0439\n30\u0445 \u0446\u0438\u0444\u0440\u043e\u0432\u0438\u0439", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "4900 \u043c\u0410\u0433", "label": "4900 \u043c\u0410\u0433", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "45 \u0412\u0442", "label": "45 \u0412\u0442", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "\u0421\u043a\u0430\u043d\u0435\u0440 \u0432\u0456\u0434\u0431\u0438\u0442\u043a\u0456\u0432 \u043f\u0430\u043b\u044c\u0446\u0456\u0432 \u043f\u0456\u0434 \u0435\u043a\u0440\u0430\u043d\u043e\u043c", "label": "\u0421\u043a\u0430\u043d\u0435\u0440 \u0432\u0456\u0434\u0431\u0438\u0442\u043a\u0456\u0432 \u043f\u0430\u043b\u044c\u0446\u0456\u0432 \u043f\u0456\u0434 \u0435\u043a\u0440\u0430\u043d\u043e\u043c", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "158,5 \u043c\u043c", "label": "158,5 \u043c\u043c", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "75,6 \u043c\u043c", "label": "75,6 \u043c\u043c", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "7,7 \u043c\u043c", "label": "7,7 \u043c\u043c", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "197 \u0433", "label": "197 \u0433", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "45 899 \u20b4", "label": "45 899 \u20b4", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "\u0420\u043e\u0436\u0435\u0432\u0438\u0439", "label": "\u0420\u043e\u0436\u0435\u0432\u0438\u0439", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "2556\u04451179", "label": "2556\u04451179", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "3\u0445 \u043e\u043f\u0442\u0438\u0447\u043d\u0438\u0439\n15\u0445 \u0446\u0438\u0444\u0440\u043e\u0432\u0438\u0439", "label": "3\u0445 \u043e\u043f\u0442\u0438\u0447\u043d\u0438\u0439\n15\u0445 \u0446\u0438\u0444\u0440\u043e\u0432\u0438\u0439", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "GPS\nA-GPS\nBeidou\nGalileo\nQZSS\n\u0413\u041b\u041e\u041d\u0410\u0421\u0421", "label": "GPS\nA-GPS\nBeidou\nGalileo\nQZSS\n\u0413\u041b\u041e\u041d\u0410\u0421\u0421", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "146,6 \u043c\u043c", "label": "146,6 \u043c\u043c", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "70,6 \u043c\u043c", "label": "70,6 \u043c\u043c", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "187 \u0433", "label": "187 \u0433", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "45 999 \u20b4", "label": "45 999 \u20b4", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "6,8\"", "label": "6,8\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Qualcomm Snapdragon 8 Gen 3", "label": "Qualcomm Snapdragon 8 Gen 3", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "200+50+10+12 \u041c\u043f", "label": "200+50+10+12 \u041c\u043f", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "3\u0445 \u043e\u043f\u0442\u0438\u0447\u043d\u0438\u0439\n5\u0445 \u043e\u043f\u0442\u0438\u0447\u043d\u0438\u0439\n100\u0445 \u0446\u0438\u0444\u0440\u043e\u0432\u0438\u0439", "label": "3\u0445 \u043e\u043f\u0442\u0438\u0447\u043d\u0438\u0439\n5\u0445 \u043e\u043f\u0442\u0438\u0447\u043d\u0438\u0439\n100\u0445 \u0446\u0438\u0444\u0440\u043e\u0432\u0438\u0439", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "802.11be (Wi-Fi 7)", "label": "802.11be (Wi-Fi 7)", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "\u0421\u043c\u0430\u0440\u0442\u0444\u043e\u043d\n\u041a\u0430\u0431\u0435\u043b\u044c Type-C\n\u0421\u0442\u0456\u043b\u0443\u0441\n\u0406\u043d\u0441\u0442\u0440\u0443\u043a\u0446\u0456\u044f\n\u0413\u0430\u0440\u0430\u043d\u0442\u0456\u0439\u043d\u0438\u0439 \u0442\u0430\u043b\u043e\u043d", "label": "\u0421\u043c\u0430\u0440\u0442\u0444\u043e\u043d\n\u041a\u0430\u0431\u0435\u043b\u044c Type-C\n\u0421\u0442\u0456\u043b\u0443\u0441\n\u0406\u043d\u0441\u0442\u0440\u0443\u043a\u0446\u0456\u044f\n\u0413\u0430\u0440\u0430\u043d\u0442\u0456\u0439\u043d\u0438\u0439 \u0442\u0430\u043b\u043e\u043d", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "\u0422\u0438\u0442\u0430\u043d", "label": "\u0422\u0438\u0442\u0430\u043d", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "162,3 \u043c\u043c", "label": "162,3 \u043c\u043c", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "79 \u043c\u043c", "label": "79 \u043c\u043c", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "8,6 \u043c\u043c", "label": "8,6 \u043c\u043c", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "233 \u0433", "label": "233 \u0433", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "\u0421\u0456\u0440\u0438\u0439", "label": "\u0421\u0456\u0440\u0438\u0439", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "52 999 \u20b4", "label": "52 999 \u20b4", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Apple A16 Bionic", "label": "Apple A16 Bionic", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "2\u0445 \u043e\u043f\u0442\u0438\u0447\u043d\u0438\u0439\n10\u0445 \u0446\u0438\u0444\u0440\u043e\u0432\u0438\u0439", "label": "2\u0445 \u043e\u043f\u0442\u0438\u0447\u043d\u0438\u0439\n10\u0445 \u0446\u0438\u0444\u0440\u043e\u0432\u0438\u0439", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "147,6 \u043c\u043c", "label": "147,6 \u043c\u043c", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "71,6 \u043c\u043c", "label": "71,6 \u043c\u043c", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "7,8 \u043c\u043c", "label": "7,8 \u043c\u043c", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "171 \u0433", "label": "171 \u0433", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "39 499 \u20b4", "label": "39 499 \u20b4", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "6,2\u0027\u0027", "label": "6,2\u0027\u0027", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "4000 \u043c\u0410\u0433", "label": "4000 \u043c\u0410\u0433", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "147 \u043c\u043c", "label": "147 \u043c\u043c", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "167 \u0433", "label": "167 \u0433", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "35 999 \u20b4", "label": "35 999 \u20b4", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "\u0411\u0456\u043b\u0438\u0439", "label": "\u0411\u0456\u043b\u0438\u0439", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "6 \u0413\u0411", "label": "6 \u0413\u0411", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "13 499 \u20b4", "label": "13 499 \u20b4", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Exynos 1280", "label": "Exynos 1280", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "2 \u0445 2,4 \u0413\u0413\u0446 + 6 \u0445 2 \u0413\u0413\u0446", "label": "2 \u0445 2,4 \u0413\u0413\u0446 + 6 \u0445 2 \u0413\u0413\u0446", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "ARM Mali-G68", "label": "ARM Mali-G68", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "50+8+2 \u041c\u043f", "label": "50+8+2 \u041c\u043f", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "\u0414\u043e 38 \u0433", "label": "\u0414\u043e 38 \u0433", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "\u041f\u043b\u0430\u0441\u0442\u0438\u043a", "label": "\u041f\u043b\u0430\u0441\u0442\u0438\u043a", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "161 \u043c\u043c", "label": "161 \u043c\u043c", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "8,3 \u043c\u043c", "label": "8,3 \u043c\u043c", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "10 199 \u20b4", "label": "10 199 \u20b4", "shape": "dot", "size": 10}]);
edges = new vis.DataSet([{"from": "Apple iPhone 15 Pro Max 256Gb Natural Titanium", "label": "\u0414\u0456\u0430\u0433\u043e\u043d\u0430\u043b\u044c \u0434\u0438\u0441\u043f\u043b\u0435\u044f", "title": "\u0414\u0456\u0430\u0433\u043e\u043d\u0430\u043b\u044c \u0434\u0438\u0441\u043f\u043b\u0435\u044f", "to": "6,7\"", "width": 1}, {"from": "Apple iPhone 15 Pro Max 256Gb Natural Titanium", "label": "\u0420\u043e\u0437\u0434\u0456\u043b\u044c\u043d\u0430 \u0437\u0434\u0430\u0442\u043d\u0456\u0441\u0442\u044c \u0435\u043a\u0440\u0430\u043d\u0443", "title": "\u0420\u043e\u0437\u0434\u0456\u043b\u044c\u043d\u0430 \u0437\u0434\u0430\u0442\u043d\u0456\u0441\u0442\u044c \u0435\u043a\u0440\u0430\u043d\u0443", "to": "2796\u04451290", "width": 1}, {"from": "Apple iPhone 15 Pro Max 256Gb Natural Titanium", "label": "\u0422\u0438\u043f \u0435\u043a\u0440\u0430\u043d\u0443", "title": "\u0422\u0438\u043f \u0435\u043a\u0440\u0430\u043d\u0443", "to": "Super Retina XDR", "width": 1}, {"from": "Apple iPhone 15 Pro Max 256Gb Natural Titanium", "label": "\u0427\u0430\u0441\u0442\u043e\u0442\u0430 \u043e\u043d\u043e\u0432\u043b\u0435\u043d\u043d\u044f \u0435\u043a\u0440\u0430\u043d\u0443", "title": "\u0427\u0430\u0441\u0442\u043e\u0442\u0430 \u043e\u043d\u043e\u0432\u043b\u0435\u043d\u043d\u044f \u0435\u043a\u0440\u0430\u043d\u0443", "to": "120 \u0413\u0446", "width": 1}, {"from": "Apple iPhone 15 Pro Max 256Gb Natural Titanium", "label": "\u0422\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0456\u044f \u0437\u0430\u0445\u0438\u0441\u043d\u043e\u0433\u043e \u0441\u043a\u043b\u0430", "title": "\u0422\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0456\u044f \u0437\u0430\u0445\u0438\u0441\u043d\u043e\u0433\u043e \u0441\u043a\u043b\u0430", "to": "Ceramic Shield", "width": 1}, {"from": "Apple iPhone 15 Pro Max 256Gb Natural Titanium", "label": "\u0421\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u0438 \u0437\u0432\u0027\u044f\u0437\u043a\u0443", "title": "\u0421\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u0438 \u0437\u0432\u0027\u044f\u0437\u043a\u0443", "to": "3G, 4G, 5G", "width": 1}, {"from": "Apple iPhone 15 Pro Max 256Gb Natural Titanium", "label": "\u041a\u0456\u043b\u044c\u043a\u0456\u0441\u0442\u044c SIM-\u043a\u0430\u0440\u0442", "title": "\u041a\u0456\u043b\u044c\u043a\u0456\u0441\u0442\u044c SIM-\u043a\u0430\u0440\u0442", "to": "1 SIM + e-SIM", "width": 1}, {"from": "Apple iPhone 15 Pro Max 256Gb Natural Titanium", "label": "\u0420\u043e\u0437\u043c\u0456\u0440 SIM-\u043a\u0430\u0440\u0442\u0438", "title": "\u0420\u043e\u0437\u043c\u0456\u0440 SIM-\u043a\u0430\u0440\u0442\u0438", "to": "Nano-SIM", "width": 1}, {"from": "Apple iPhone 15 Pro Max 256Gb Natural Titanium", "label": "\u0411\u0435\u0437\u0434\u0440\u043e\u0442\u043e\u0432\u0430 \u0437\u0430\u0440\u044f\u0434\u043a\u0430", "title": "\u0411\u0435\u0437\u0434\u0440\u043e\u0442\u043e\u0432\u0430 \u0437\u0430\u0440\u044f\u0434\u043a\u0430", "to": "\u0404", "width": 1}, {"from": "Apple iPhone 15 Pro Max 256Gb Natural Titanium", "label": "\u041e\u043f\u0435\u0440\u0430\u0446\u0456\u0439\u043d\u0430 \u0441\u0438\u0441\u0442\u0435\u043c\u0430", "title": "\u041e\u043f\u0435\u0440\u0430\u0446\u0456\u0439\u043d\u0430 \u0441\u0438\u0441\u0442\u0435\u043c\u0430", "to": "Apple iOS 17", "width": 1}, {"from": "Apple iPhone 15 Pro Max 256Gb Natural Titanium", "label": "\u041c\u043e\u0434\u0435\u043b\u044c \u043f\u0440\u043e\u0446\u0435\u0441\u043e\u0440\u0430", "title": "\u041c\u043e\u0434\u0435\u043b\u044c \u043f\u0440\u043e\u0446\u0435\u0441\u043e\u0440\u0430", "to": "Apple A17 Pro Bionic", "width": 1}, {"from": "Apple iPhone 15 Pro Max 256Gb Natural Titanium", "label": "\u041a\u0456\u043b\u044c\u043a\u0456\u0441\u0442\u044c \u044f\u0434\u0435\u0440", "title": "\u041a\u0456\u043b\u044c\u043a\u0456\u0441\u0442\u044c \u044f\u0434\u0435\u0440", "to": "6 \u044f\u0434\u0435\u0440", "width": 1}, {"from": "Apple iPhone 15 Pro Max 256Gb Natural Titanium", "label": "\u0412\u0431\u0443\u0434\u043e\u0432\u0430\u043d\u0430 \u043f\u0430\u043c\u0027\u044f\u0442\u044c", "title": "\u0412\u0431\u0443\u0434\u043e\u0432\u0430\u043d\u0430 \u043f\u0430\u043c\u0027\u044f\u0442\u044c", "to": "256 \u0413\u0411", "width": 1}, {"from": "Apple iPhone 15 Pro Max 256Gb Natural Titanium", "label": "\u041e\u0441\u043d\u043e\u0432\u043d\u0430 \u043a\u0430\u043c\u0435\u0440\u0430", "title": "\u041e\u0441\u043d\u043e\u0432\u043d\u0430 \u043a\u0430\u043c\u0435\u0440\u0430", "to": "48+12+12 \u041c\u043f", "width": 1}, {"from": "Apple iPhone 15 Pro Max 256Gb Natural Titanium", "label": "\u0420\u043e\u0437\u0434\u0456\u043b\u044c\u043d\u0430 \u0437\u0434\u0430\u0442\u043d\u0456\u0441\u0442\u044c \u0432\u0456\u0434\u0435\u043e", "title": "\u0420\u043e\u0437\u0434\u0456\u043b\u044c\u043d\u0430 \u0437\u0434\u0430\u0442\u043d\u0456\u0441\u0442\u044c \u0432\u0456\u0434\u0435\u043e", "to": "3840 x 2160 4K UHD", "width": 1}, {"from": "Apple iPhone 15 Pro Max 256Gb Natural Titanium", "label": "\u0424\u0440\u043e\u043d\u0442\u0430\u043b\u044c\u043d\u0430 \u043a\u0430\u043c\u0435\u0440\u0430", "title": "\u0424\u0440\u043e\u043d\u0442\u0430\u043b\u044c\u043d\u0430 \u043a\u0430\u043c\u0435\u0440\u0430", "to": "12 \u041c\u043f", "width": 1}, {"from": "Apple iPhone 15 Pro Max 256Gb Natural Titanium", "label": "\u0421\u043f\u0430\u043b\u0430\u0445", "title": "\u0421\u043f\u0430\u043b\u0430\u0445", "to": "True Tone", "width": 1}, {"from": "Apple iPhone 15 Pro Max 256Gb Natural Titanium", "label": "\u0421\u0442\u0430\u0431\u0456\u043b\u0456\u0437\u0430\u0446\u0456\u044f", "title": "\u0421\u0442\u0430\u0431\u0456\u043b\u0456\u0437\u0430\u0446\u0456\u044f", "to": "\u041c\u0430\u0442\u0440\u0438\u0447\u043d\u0430/\u043e\u043f\u0442\u0438\u0447\u043d\u0430", "width": 1}, {"from": "Apple iPhone 15 Pro Max 256Gb Natural Titanium", "label": "\u0417\u0443\u043c", "title": "\u0417\u0443\u043c", "to": "5\u0445 \u043e\u043f\u0442\u0438\u0447\u043d\u0438\u0439\n25\u0445 \u0446\u0438\u0444\u0440\u043e\u0432\u0438\u0439", "width": 1}, {"from": "Apple iPhone 15 Pro Max 256Gb Natural Titanium", "label": "\u0421\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u0438 Wi-Fi", "title": "\u0421\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u0438 Wi-Fi", "to": "802.11a\u0441 (Wi-Fi 5)", "width": 1}, {"from": "Apple iPhone 15 Pro Max 256Gb Natural Titanium", "label": "Bluetooth", "title": "Bluetooth", "to": "\u0412\u0435\u0440\u0441\u0456\u044f 5.3", "width": 1}, {"from": "Apple iPhone 15 Pro Max 256Gb Natural Titanium", "label": "\u041d\u0430\u0432\u0456\u0433\u0430\u0446\u0456\u0439\u043d\u0430 \u0441\u0438\u0441\u0442\u0435\u043c\u0430", "title": "\u041d\u0430\u0432\u0456\u0433\u0430\u0446\u0456\u0439\u043d\u0430 \u0441\u0438\u0441\u0442\u0435\u043c\u0430", "to": "GPS\nBeidou\nGalileo\nQZSS\n\u0413\u041b\u041e\u041d\u0410\u0421\u0421", "width": 1}, {"from": "Apple iPhone 15 Pro Max 256Gb Natural Titanium", "label": "NFC", "title": "NFC", "to": "\u0422\u0430\u043a", "width": 1}, {"from": "Apple iPhone 15 Pro Max 256Gb Natural Titanium", "label": "\u0406\u043d\u0442\u0435\u0440\u0444\u0435\u0439\u0441 USB", "title": "\u0406\u043d\u0442\u0435\u0440\u0444\u0435\u0439\u0441 USB", "to": "USB Type-C", "width": 1}, {"from": "Apple iPhone 15 Pro Max 256Gb Natural Titanium", "label": "\u041f\u043e\u0442\u0443\u0436\u043d\u0456\u0441\u0442\u044c \u0437\u0430\u0440\u044f\u0434\u043a\u0438", "title": "\u041f\u043e\u0442\u0443\u0436\u043d\u0456\u0441\u0442\u044c \u0437\u0430\u0440\u044f\u0434\u043a\u0438", "to": "20 \u0412\u0442", "width": 1}, {"from": "Apple iPhone 15 Pro Max 256Gb Natural Titanium", "label": "\u0417\u0430\u0445\u0438\u0441\u0442 \u043a\u043e\u0440\u043f\u0443\u0441\u0443", "title": "\u0417\u0430\u0445\u0438\u0441\u0442 \u043a\u043e\u0440\u043f\u0443\u0441\u0443", "to": "\u0417\u0430\u0445\u0438\u0441\u0442 \u0432\u0456\u0434 \u043f\u0438\u043b\u0443 \u0442\u0430 \u0432\u043e\u043b\u043e\u0433\u0438", "width": 1}, {"from": "Apple iPhone 15 Pro Max 256Gb Natural Titanium", "label": "\u041a\u043b\u0430\u0441 \u0437\u0430\u0445\u0438\u0441\u0442\u0443", "title": "\u041a\u043b\u0430\u0441 \u0437\u0430\u0445\u0438\u0441\u0442\u0443", "to": "IP68", "width": 1}, {"from": "Apple iPhone 15 Pro Max 256Gb Natural Titanium", "label": "\u0411\u0456\u043e\u043c\u0435\u0442\u0440\u0438\u0447\u043d\u0438\u0439 \u0437\u0430\u0445\u0438\u0441\u0442", "title": "\u0411\u0456\u043e\u043c\u0435\u0442\u0440\u0438\u0447\u043d\u0438\u0439 \u0437\u0430\u0445\u0438\u0441\u0442", "to": "\u0420\u043e\u0437\u043f\u0456\u0437\u043d\u0430\u0432\u0430\u043d\u043d\u044f \u043e\u0431\u043b\u0438\u0447\u0447\u044f", "width": 1}, {"from": "Apple iPhone 15 Pro Max 256Gb Natural Titanium", "label": "\u041a\u043e\u043c\u043f\u043b\u0435\u043a\u0442\u0430\u0446\u0456\u044f", "title": "\u041a\u043e\u043c\u043f\u043b\u0435\u043a\u0442\u0430\u0446\u0456\u044f", "to": "\u0421\u043c\u0430\u0440\u0442\u0444\u043e\u043d\n\u041a\u0430\u0431\u0435\u043b\u044c Type-C\n\u0406\u043d\u0441\u0442\u0440\u0443\u043a\u0446\u0456\u044f\n\u0413\u0430\u0440\u0430\u043d\u0442\u0456\u0439\u043d\u0438\u0439 \u0442\u0430\u043b\u043e\u043d", "width": 1}, {"from": "Apple iPhone 15 Pro Max 256Gb Natural Titanium", "label": "\u041c\u0430\u0442\u0435\u0440\u0456\u0430\u043b \u043a\u043e\u0440\u043f\u0443\u0441\u0443", "title": "\u041c\u0430\u0442\u0435\u0440\u0456\u0430\u043b \u043a\u043e\u0440\u043f\u0443\u0441\u0443", "to": "\u0421\u043a\u043b\u043e\n\u0422\u0438\u0442\u0430\u043d", "width": 1}, {"from": "Apple iPhone 15 Pro Max 256Gb Natural Titanium", "label": "\u0412\u0438\u0441\u043e\u0442\u0430", "title": "\u0412\u0438\u0441\u043e\u0442\u0430", "to": "159,9 \u043c\u043c", "width": 1}, {"from": "Apple iPhone 15 Pro Max 256Gb Natural Titanium", "label": "\u0428\u0438\u0440\u0438\u043d\u0430", "title": "\u0428\u0438\u0440\u0438\u043d\u0430", "to": "76,7 \u043c\u043c", "width": 1}, {"from": "Apple iPhone 15 Pro Max 256Gb Natural Titanium", "label": "\u0413\u043b\u0438\u0431\u0438\u043d\u0430", "title": "\u0413\u043b\u0438\u0431\u0438\u043d\u0430", "to": "8,25 \u043c\u043c", "width": 1}, {"from": "Apple iPhone 15 Pro Max 256Gb Natural Titanium", "label": "\u0412\u0430\u0433\u0430", "title": "\u0412\u0430\u0433\u0430", "to": "221 \u0433", "width": 1}, {"from": "Apple iPhone 15 Pro Max 256Gb Natural Titanium", "label": "\u041a\u043e\u043b\u0456\u0440 \u0432\u0438\u0440\u043e\u0431\u043d\u0438\u043a\u0430", "title": "\u041a\u043e\u043b\u0456\u0440 \u0432\u0438\u0440\u043e\u0431\u043d\u0438\u043a\u0430", "to": "\u0421\u0440\u0456\u0431\u043b\u044f\u0441\u0442\u0438\u0439", "width": 1}, {"from": "Apple iPhone 15 Pro Max 256Gb Natural Titanium", "label": "\u0413\u0430\u0440\u0430\u043d\u0442\u0456\u0439\u043d\u0438\u0439 \u0442\u0435\u0440\u043c\u0456\u043d", "title": "\u0413\u0430\u0440\u0430\u043d\u0442\u0456\u0439\u043d\u0438\u0439 \u0442\u0435\u0440\u043c\u0456\u043d", "to": "1 \u0440\u0456\u043a", "width": 1}, {"from": "Apple iPhone 15 Pro Max 256Gb Natural Titanium", "label": "\u041a\u0440\u0430\u0457\u043d\u0430 \u0432\u0438\u0440\u043e\u0431\u043d\u0438\u0446\u0442\u0432\u0430", "title": "\u041a\u0440\u0430\u0457\u043d\u0430 \u0432\u0438\u0440\u043e\u0431\u043d\u0438\u0446\u0442\u0432\u0430", "to": "\u041a\u0438\u0442\u0430\u0439", "width": 1}, {"from": "Apple iPhone 15 Pro Max 256Gb Natural Titanium", "label": "\u0411\u0440\u0435\u043d\u0434", "title": "\u0411\u0440\u0435\u043d\u0434", "to": "Apple", "width": 1}, {"from": "Apple iPhone 15 Pro Max 256Gb Natural Titanium", "label": "\u0426\u0456\u043d\u0430", "title": "\u0426\u0456\u043d\u0430", "to": "54 999 \u20b4", "width": 1}, {"from": "6,7\"", "label": "\u0414\u0456\u0430\u0433\u043e\u043d\u0430\u043b\u044c \u0434\u0438\u0441\u043f\u043b\u0435\u044f", "title": "\u0414\u0456\u0430\u0433\u043e\u043d\u0430\u043b\u044c \u0434\u0438\u0441\u043f\u043b\u0435\u044f", "to": "Apple iPhone 15 Pro Max 256Gb Blue Titanium", "width": 1}, {"from": "6,7\"", "label": "\u0414\u0456\u0430\u0433\u043e\u043d\u0430\u043b\u044c \u0434\u0438\u0441\u043f\u043b\u0435\u044f", "title": "\u0414\u0456\u0430\u0433\u043e\u043d\u0430\u043b\u044c \u0434\u0438\u0441\u043f\u043b\u0435\u044f", "to": "Samsung Galaxy S24+ 12/512Gb Onyx Black (SM-S926BZKGEUC)", "width": 1}, {"from": "2796\u04451290", "label": "\u0420\u043e\u0437\u0434\u0456\u043b\u044c\u043d\u0430 \u0437\u0434\u0430\u0442\u043d\u0456\u0441\u0442\u044c \u0435\u043a\u0440\u0430\u043d\u0443", "title": "\u0420\u043e\u0437\u0434\u0456\u043b\u044c\u043d\u0430 \u0437\u0434\u0430\u0442\u043d\u0456\u0441\u0442\u044c \u0435\u043a\u0440\u0430\u043d\u0443", "to": "Apple iPhone 15 Pro Max 256Gb Blue Titanium", "width": 1}, {"from": "Super Retina XDR", "label": "\u0422\u0438\u043f \u0435\u043a\u0440\u0430\u043d\u0443", "title": "\u0422\u0438\u043f \u0435\u043a\u0440\u0430\u043d\u0443", "to": "Apple iPhone 15 Pro Max 256Gb Blue Titanium", "width": 1}, {"from": "Super Retina XDR", "label": "\u0422\u0438\u043f \u0435\u043a\u0440\u0430\u043d\u0443", "title": "\u0422\u0438\u043f \u0435\u043a\u0440\u0430\u043d\u0443", "to": "Apple iPhone 13 128Gb Green", "width": 1}, {"from": "Super Retina XDR", "label": "\u0422\u0438\u043f \u0435\u043a\u0440\u0430\u043d\u0443", "title": "\u0422\u0438\u043f \u0435\u043a\u0440\u0430\u043d\u0443", "to": "Apple iPhone 13 128Gb Blue", "width": 1}, {"from": "Super Retina XDR", "label": "\u0422\u0438\u043f \u0435\u043a\u0440\u0430\u043d\u0443", "title": "\u0422\u0438\u043f \u0435\u043a\u0440\u0430\u043d\u0443", "to": "Apple iPhone 13 128Gb Pink", "width": 1}, {"from": "Super Retina XDR", "label": "\u0422\u0438\u043f \u0435\u043a\u0440\u0430\u043d\u0443", "title": "\u0422\u0438\u043f \u0435\u043a\u0440\u0430\u043d\u0443", "to": "Apple iPhone 15 Pro 128Gb Blue Titanium", "width": 1}, {"from": "Super Retina XDR", "label": "\u0422\u0438\u043f \u0435\u043a\u0440\u0430\u043d\u0443", "title": "\u0422\u0438\u043f \u0435\u043a\u0440\u0430\u043d\u0443", "to": "Apple iPhone 15 128Gb Black", "width": 1}, {"from": "Super Retina XDR", "label": "\u0422\u0438\u043f \u0435\u043a\u0440\u0430\u043d\u0443", "title": "\u0422\u0438\u043f \u0435\u043a\u0440\u0430\u043d\u0443", "to": "Apple iPhone 13 128Gb Starlight", "width": 1}, {"from": "Super Retina XDR", "label": "\u0422\u0438\u043f \u0435\u043a\u0440\u0430\u043d\u0443", "title": "\u0422\u0438\u043f \u0435\u043a\u0440\u0430\u043d\u0443", "to": "Apple iPhone 15 Pro 128Gb Natural Titanium", "width": 1}, {"from": "Super Retina XDR", "label": "\u0422\u0438\u043f \u0435\u043a\u0440\u0430\u043d\u0443", "title": "\u0422\u0438\u043f \u0435\u043a\u0440\u0430\u043d\u0443", "to": "Apple iPhone 13 128Gb Midnight", "width": 1}, {"from": "120 \u0413\u0446", "label": "\u0427\u0430\u0441\u0442\u043e\u0442\u0430 \u043e\u043d\u043e\u0432\u043b\u0435\u043d\u043d\u044f \u0435\u043a\u0440\u0430\u043d\u0443", "title": "\u0427\u0430\u0441\u0442\u043e\u0442\u0430 \u043e\u043d\u043e\u0432\u043b\u0435\u043d\u043d\u044f \u0435\u043a\u0440\u0430\u043d\u0443", "to": "Samsung Galaxy A55 5G 8/256Gb Awesome Navy (SM-A556BZKCEUC)", "width": 1}, {"from": "120 \u0413\u0446", "label": "\u0427\u0430\u0441\u0442\u043e\u0442\u0430 \u043e\u043d\u043e\u0432\u043b\u0435\u043d\u043d\u044f \u0435\u043a\u0440\u0430\u043d\u0443", "title": "\u0427\u0430\u0441\u0442\u043e\u0442\u0430 \u043e\u043d\u043e\u0432\u043b\u0435\u043d\u043d\u044f \u0435\u043a\u0440\u0430\u043d\u0443", "to": "Samsung Galaxy A35 5G 8/256Gb Awesome Lilac (SM-A356BLVGEUC)", "width": 1}, {"from": "120 \u0413\u0446", "label": "\u0427\u0430\u0441\u0442\u043e\u0442\u0430 \u043e\u043d\u043e\u0432\u043b\u0435\u043d\u043d\u044f \u0435\u043a\u0440\u0430\u043d\u0443", "title": "\u0427\u0430\u0441\u0442\u043e\u0442\u0430 \u043e\u043d\u043e\u0432\u043b\u0435\u043d\u043d\u044f \u0435\u043a\u0440\u0430\u043d\u0443", "to": "Apple iPhone 15 Pro Max 256Gb Blue Titanium", "width": 1}, {"from": "120 \u0413\u0446", "label": "\u0427\u0430\u0441\u0442\u043e\u0442\u0430 \u043e\u043d\u043e\u0432\u043b\u0435\u043d\u043d\u044f \u0435\u043a\u0440\u0430\u043d\u0443", "title": "\u0427\u0430\u0441\u0442\u043e\u0442\u0430 \u043e\u043d\u043e\u0432\u043b\u0435\u043d\u043d\u044f \u0435\u043a\u0440\u0430\u043d\u0443", "to": "Samsung Galaxy S23FE 8/256Gb Graphite (SM-S711BZAGSEK)", "width": 1}, {"from": "120 \u0413\u0446", "label": "\u0427\u0430\u0441\u0442\u043e\u0442\u0430 \u043e\u043d\u043e\u0432\u043b\u0435\u043d\u043d\u044f \u0435\u043a\u0440\u0430\u043d\u0443", "title": "\u0427\u0430\u0441\u0442\u043e\u0442\u0430 \u043e\u043d\u043e\u0432\u043b\u0435\u043d\u043d\u044f \u0435\u043a\u0440\u0430\u043d\u0443", "to": "Samsung Galaxy S23 8/256Gb Black (SM-S911BZKGSEK)", "width": 1}, {"from": "120 \u0413\u0446", "label": "\u0427\u0430\u0441\u0442\u043e\u0442\u0430 \u043e\u043d\u043e\u0432\u043b\u0435\u043d\u043d\u044f \u0435\u043a\u0440\u0430\u043d\u0443", "title": "\u0427\u0430\u0441\u0442\u043e\u0442\u0430 \u043e\u043d\u043e\u0432\u043b\u0435\u043d\u043d\u044f \u0435\u043a\u0440\u0430\u043d\u0443", "to": "Samsung Galaxy S24+ 12/512Gb Onyx Black (SM-S926BZKGEUC)", "width": 1}, {"from": "120 \u0413\u0446", "label": "\u0427\u0430\u0441\u0442\u043e\u0442\u0430 \u043e\u043d\u043e\u0432\u043b\u0435\u043d\u043d\u044f \u0435\u043a\u0440\u0430\u043d\u0443", "title": "\u0427\u0430\u0441\u0442\u043e\u0442\u0430 \u043e\u043d\u043e\u0432\u043b\u0435\u043d\u043d\u044f \u0435\u043a\u0440\u0430\u043d\u0443", "to": "Apple iPhone 15 Pro 128Gb Blue Titanium", "width": 1}, {"from": "120 \u0413\u0446", "label": "\u0427\u0430\u0441\u0442\u043e\u0442\u0430 \u043e\u043d\u043e\u0432\u043b\u0435\u043d\u043d\u044f \u0435\u043a\u0440\u0430\u043d\u0443", "title": "\u0427\u0430\u0441\u0442\u043e\u0442\u0430 \u043e\u043d\u043e\u0432\u043b\u0435\u043d\u043d\u044f \u0435\u043a\u0440\u0430\u043d\u0443", "to": "Samsung Galaxy S24 Ultra 12/256Gb Titanium Gray (SM-S928BZTGEUC)", "width": 1}, {"from": "120 \u0413\u0446", "label": "\u0427\u0430\u0441\u0442\u043e\u0442\u0430 \u043e\u043d\u043e\u0432\u043b\u0435\u043d\u043d\u044f \u0435\u043a\u0440\u0430\u043d\u0443", "title": "\u0427\u0430\u0441\u0442\u043e\u0442\u0430 \u043e\u043d\u043e\u0432\u043b\u0435\u043d\u043d\u044f \u0435\u043a\u0440\u0430\u043d\u0443", "to": "Samsung Galaxy S24 8/256Gb Onyx Black (SM-S921BZKGEUC)", "width": 1}, {"from": "120 \u0413\u0446", "label": "\u0427\u0430\u0441\u0442\u043e\u0442\u0430 \u043e\u043d\u043e\u0432\u043b\u0435\u043d\u043d\u044f \u0435\u043a\u0440\u0430\u043d\u0443", "title": "\u0427\u0430\u0441\u0442\u043e\u0442\u0430 \u043e\u043d\u043e\u0432\u043b\u0435\u043d\u043d\u044f \u0435\u043a\u0440\u0430\u043d\u0443", "to": "Samsung Galaxy A35 5G 6/128Gb Awesome Navy (SM-A356BZKBEUC)", "width": 1}, {"from": "120 \u0413\u0446", "label": "\u0427\u0430\u0441\u0442\u043e\u0442\u0430 \u043e\u043d\u043e\u0432\u043b\u0435\u043d\u043d\u044f \u0435\u043a\u0440\u0430\u043d\u0443", "title": "\u0427\u0430\u0441\u0442\u043e\u0442\u0430 \u043e\u043d\u043e\u0432\u043b\u0435\u043d\u043d\u044f \u0435\u043a\u0440\u0430\u043d\u0443", "to": "Apple iPhone 15 Pro 128Gb Natural Titanium", "width": 1}, {"from": "120 \u0413\u0446", "label": "\u0427\u0430\u0441\u0442\u043e\u0442\u0430 \u043e\u043d\u043e\u0432\u043b\u0435\u043d\u043d\u044f \u0435\u043a\u0440\u0430\u043d\u0443", "title": "\u0427\u0430\u0441\u0442\u043e\u0442\u0430 \u043e\u043d\u043e\u0432\u043b\u0435\u043d\u043d\u044f \u0435\u043a\u0440\u0430\u043d\u0443", "to": "Samsung Galaxy A25 5G 6/128Gb Black (SM-A256BZKDEUC)", "width": 1}, {"from": "Ceramic Shield", "label": "\u0422\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0456\u044f \u0437\u0430\u0445\u0438\u0441\u043d\u043e\u0433\u043e \u0441\u043a\u043b\u0430", "title": "\u0422\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0456\u044f \u0437\u0430\u0445\u0438\u0441\u043d\u043e\u0433\u043e \u0441\u043a\u043b\u0430", "to": "Apple iPhone 15 Pro Max 256Gb Blue Titanium", "width": 1}, {"from": "Ceramic Shield", "label": "\u0422\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0456\u044f \u0437\u0430\u0445\u0438\u0441\u043d\u043e\u0433\u043e \u0441\u043a\u043b\u0430", "title": "\u0422\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0456\u044f \u0437\u0430\u0445\u0438\u0441\u043d\u043e\u0433\u043e \u0441\u043a\u043b\u0430", "to": "Apple iPhone 13 128Gb Green", "width": 1}, {"from": "Ceramic Shield", "label": "\u0422\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0456\u044f \u0437\u0430\u0445\u0438\u0441\u043d\u043e\u0433\u043e \u0441\u043a\u043b\u0430", "title": "\u0422\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0456\u044f \u0437\u0430\u0445\u0438\u0441\u043d\u043e\u0433\u043e \u0441\u043a\u043b\u0430", "to": "Apple iPhone 13 128Gb Blue", "width": 1}, {"from": "Ceramic Shield", "label": "\u0422\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0456\u044f \u0437\u0430\u0445\u0438\u0441\u043d\u043e\u0433\u043e \u0441\u043a\u043b\u0430", "title": "\u0422\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0456\u044f \u0437\u0430\u0445\u0438\u0441\u043d\u043e\u0433\u043e \u0441\u043a\u043b\u0430", "to": "Apple iPhone 13 128Gb Pink", "width": 1}, {"from": "Ceramic Shield", "label": "\u0422\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0456\u044f \u0437\u0430\u0445\u0438\u0441\u043d\u043e\u0433\u043e \u0441\u043a\u043b\u0430", "title": "\u0422\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0456\u044f \u0437\u0430\u0445\u0438\u0441\u043d\u043e\u0433\u043e \u0441\u043a\u043b\u0430", "to": "Apple iPhone 15 Pro 128Gb Blue Titanium", "width": 1}, {"from": "Ceramic Shield", "label": "\u0422\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0456\u044f \u0437\u0430\u0445\u0438\u0441\u043d\u043e\u0433\u043e \u0441\u043a\u043b\u0430", "title": "\u0422\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0456\u044f \u0437\u0430\u0445\u0438\u0441\u043d\u043e\u0433\u043e \u0441\u043a\u043b\u0430", "to": "Apple iPhone 15 128Gb Black", "width": 1}, {"from": "Ceramic Shield", "label": "\u0422\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0456\u044f \u0437\u0430\u0445\u0438\u0441\u043d\u043e\u0433\u043e \u0441\u043a\u043b\u0430", "title": "\u0422\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0456\u044f \u0437\u0430\u0445\u0438\u0441\u043d\u043e\u0433\u043e \u0441\u043a\u043b\u0430", "to": "Apple iPhone 13 128Gb Starlight", "width": 1}, {"from": "Ceramic Shield", "label": "\u0422\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0456\u044f \u0437\u0430\u0445\u0438\u0441\u043d\u043e\u0433\u043e \u0441\u043a\u043b\u0430", "title": "\u0422\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0456\u044f \u0437\u0430\u0445\u0438\u0441\u043d\u043e\u0433\u043e \u0441\u043a\u043b\u0430", "to": "Apple iPhone 15 Pro 128Gb Natural Titanium", "width": 1}, {"from": "Ceramic Shield", "label": "\u0422\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0456\u044f \u0437\u0430\u0445\u0438\u0441\u043d\u043e\u0433\u043e \u0441\u043a\u043b\u0430", "title": "\u0422\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0456\u044f \u0437\u0430\u0445\u0438\u0441\u043d\u043e\u0433\u043e \u0441\u043a\u043b\u0430", "to": "Apple iPhone 13 128Gb Midnight", "width": 1}, {"from": "3G, 4G, 5G", "label": "\u0421\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u0438 \u0437\u0432\u0027\u044f\u0437\u043a\u0443", "title": "\u0421\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u0438 \u0437\u0432\u0027\u044f\u0437\u043a\u0443", "to": "Samsung Galaxy A55 5G 8/256Gb Awesome Navy (SM-A556BZKCEUC)", "width": 1}, {"from": "3G, 4G, 5G", "label": "\u0421\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u0438 \u0437\u0432\u0027\u044f\u0437\u043a\u0443", "title": "\u0421\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u0438 \u0437\u0432\u0027\u044f\u0437\u043a\u0443", "to": "Apple iPhone 15 Pro Max 256Gb Blue Titanium", "width": 1}, {"from": "3G, 4G, 5G", "label": "\u0421\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u0438 \u0437\u0432\u0027\u044f\u0437\u043a\u0443", "title": "\u0421\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u0438 \u0437\u0432\u0027\u044f\u0437\u043a\u0443", "to": "Samsung Galaxy S23FE 8/256Gb Graphite (SM-S711BZAGSEK)", "width": 1}, {"from": "3G, 4G, 5G", "label": "\u0421\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u0438 \u0437\u0432\u0027\u044f\u0437\u043a\u0443", "title": "\u0421\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u0438 \u0437\u0432\u0027\u044f\u0437\u043a\u0443", "to": "Samsung Galaxy S24+ 12/512Gb Onyx Black (SM-S926BZKGEUC)", "width": 1}, {"from": "3G, 4G, 5G", "label": "\u0421\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u0438 \u0437\u0432\u0027\u044f\u0437\u043a\u0443", "title": "\u0421\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u0438 \u0437\u0432\u0027\u044f\u0437\u043a\u0443", "to": "Apple iPhone 15 Pro 128Gb Blue Titanium", "width": 1}, {"from": "3G, 4G, 5G", "label": "\u0421\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u0438 \u0437\u0432\u0027\u044f\u0437\u043a\u0443", "title": "\u0421\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u0438 \u0437\u0432\u0027\u044f\u0437\u043a\u0443", "to": "Samsung Galaxy S24 Ultra 12/256Gb Titanium Gray (SM-S928BZTGEUC)", "width": 1}, {"from": "3G, 4G, 5G", "label": "\u0421\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u0438 \u0437\u0432\u0027\u044f\u0437\u043a\u0443", "title": "\u0421\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u0438 \u0437\u0432\u0027\u044f\u0437\u043a\u0443", "to": "Apple iPhone 15 128Gb Black", "width": 1}, {"from": "3G, 4G, 5G", "label": "\u0421\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u0438 \u0437\u0432\u0027\u044f\u0437\u043a\u0443", "title": "\u0421\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u0438 \u0437\u0432\u0027\u044f\u0437\u043a\u0443", "to": "Samsung Galaxy S24 8/256Gb Onyx Black (SM-S921BZKGEUC)", "width": 1}, {"from": "3G, 4G, 5G", "label": "\u0421\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u0438 \u0437\u0432\u0027\u044f\u0437\u043a\u0443", "title": "\u0421\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u0438 \u0437\u0432\u0027\u044f\u0437\u043a\u0443", "to": "Apple iPhone 15 Pro 128Gb Natural Titanium", "width": 1}, {"from": "3G, 4G, 5G", "label": "\u0421\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u0438 \u0437\u0432\u0027\u044f\u0437\u043a\u0443", "title": "\u0421\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u0438 \u0437\u0432\u0027\u044f\u0437\u043a\u0443", "to": "Samsung Galaxy A25 5G 6/128Gb Black (SM-A256BZKDEUC)", "width": 1}, {"from": "1 SIM + e-SIM", "label": "\u041a\u0456\u043b\u044c\u043a\u0456\u0441\u0442\u044c SIM-\u043a\u0430\u0440\u0442", "title": "\u041a\u0456\u043b\u044c\u043a\u0456\u0441\u0442\u044c SIM-\u043a\u0430\u0440\u0442", "to": "Apple iPhone 15 Pro Max 256Gb Blue Titanium", "width": 1}, {"from": "1 SIM + e-SIM", "label": "\u041a\u0456\u043b\u044c\u043a\u0456\u0441\u0442\u044c SIM-\u043a\u0430\u0440\u0442", "title": "\u041a\u0456\u043b\u044c\u043a\u0456\u0441\u0442\u044c SIM-\u043a\u0430\u0440\u0442", "to": "Apple iPhone 15 Pro 128Gb Blue Titanium", "width": 1}, {"from": "1 SIM + e-SIM", "label": "\u041a\u0456\u043b\u044c\u043a\u0456\u0441\u0442\u044c SIM-\u043a\u0430\u0440\u0442", "title": "\u041a\u0456\u043b\u044c\u043a\u0456\u0441\u0442\u044c SIM-\u043a\u0430\u0440\u0442", "to": "Apple iPhone 15 128Gb Black", "width": 1}, {"from": "1 SIM + e-SIM", "label": "\u041a\u0456\u043b\u044c\u043a\u0456\u0441\u0442\u044c SIM-\u043a\u0430\u0440\u0442", "title": "\u041a\u0456\u043b\u044c\u043a\u0456\u0441\u0442\u044c SIM-\u043a\u0430\u0440\u0442", "to": "Apple iPhone 15 Pro 128Gb Natural Titanium", "width": 1}, {"from": "Nano-SIM", "label": "\u0420\u043e\u0437\u043c\u0456\u0440 SIM-\u043a\u0430\u0440\u0442\u0438", "title": "\u0420\u043e\u0437\u043c\u0456\u0440 SIM-\u043a\u0430\u0440\u0442\u0438", "to": "Samsung Galaxy A55 5G 8/256Gb Awesome Navy (SM-A556BZKCEUC)", "width": 1}, {"from": "Nano-SIM", "label": "\u0420\u043e\u0437\u043c\u0456\u0440 SIM-\u043a\u0430\u0440\u0442\u0438", "title": "\u0420\u043e\u0437\u043c\u0456\u0440 SIM-\u043a\u0430\u0440\u0442\u0438", "to": "Samsung Galaxy A35 5G 8/256Gb Awesome Lilac (SM-A356BLVGEUC)", "width": 1}, {"from": "Nano-SIM", "label": "\u0420\u043e\u0437\u043c\u0456\u0440 SIM-\u043a\u0430\u0440\u0442\u0438", "title": "\u0420\u043e\u0437\u043c\u0456\u0440 SIM-\u043a\u0430\u0440\u0442\u0438", "to": "Apple iPhone 15 Pro Max 256Gb Blue Titanium", "width": 1}, {"from": "Nano-SIM", "label": "\u0420\u043e\u0437\u043c\u0456\u0440 SIM-\u043a\u0430\u0440\u0442\u0438", "title": "\u0420\u043e\u0437\u043c\u0456\u0440 SIM-\u043a\u0430\u0440\u0442\u0438", "to": "Apple iPhone 13 128Gb Green", "width": 1}, {"from": "Nano-SIM", "label": "\u0420\u043e\u0437\u043c\u0456\u0440 SIM-\u043a\u0430\u0440\u0442\u0438", "title": "\u0420\u043e\u0437\u043c\u0456\u0440 SIM-\u043a\u0430\u0440\u0442\u0438", "to": "Samsung Galaxy S23FE 8/256Gb Graphite (SM-S711BZAGSEK)", "width": 1}, {"from": "Nano-SIM", "label": "\u0420\u043e\u0437\u043c\u0456\u0440 SIM-\u043a\u0430\u0440\u0442\u0438", "title": "\u0420\u043e\u0437\u043c\u0456\u0440 SIM-\u043a\u0430\u0440\u0442\u0438", "to": "Samsung Galaxy S23 8/256Gb Black (SM-S911BZKGSEK)", "width": 1}, {"from": "Nano-SIM", "label": "\u0420\u043e\u0437\u043c\u0456\u0440 SIM-\u043a\u0430\u0440\u0442\u0438", "title": "\u0420\u043e\u0437\u043c\u0456\u0440 SIM-\u043a\u0430\u0440\u0442\u0438", "to": "Apple iPhone 13 128Gb Blue", "width": 1}, {"from": "Nano-SIM", "label": "\u0420\u043e\u0437\u043c\u0456\u0440 SIM-\u043a\u0430\u0440\u0442\u0438", "title": "\u0420\u043e\u0437\u043c\u0456\u0440 SIM-\u043a\u0430\u0440\u0442\u0438", "to": "Samsung Galaxy A15 4/128Gb Black (SM-A155FZKDEUC)", "width": 1}, {"from": "Nano-SIM", "label": "\u0420\u043e\u0437\u043c\u0456\u0440 SIM-\u043a\u0430\u0440\u0442\u0438", "title": "\u0420\u043e\u0437\u043c\u0456\u0440 SIM-\u043a\u0430\u0440\u0442\u0438", "to": "Samsung Galaxy S24+ 12/512Gb Onyx Black (SM-S926BZKGEUC)", "width": 1}, {"from": "Nano-SIM", "label": "\u0420\u043e\u0437\u043c\u0456\u0440 SIM-\u043a\u0430\u0440\u0442\u0438", "title": "\u0420\u043e\u0437\u043c\u0456\u0440 SIM-\u043a\u0430\u0440\u0442\u0438", "to": "Apple iPhone 13 128Gb Pink", "width": 1}, {"from": "Nano-SIM", "label": "\u0420\u043e\u0437\u043c\u0456\u0440 SIM-\u043a\u0430\u0440\u0442\u0438", "title": "\u0420\u043e\u0437\u043c\u0456\u0440 SIM-\u043a\u0430\u0440\u0442\u0438", "to": "Apple iPhone 15 Pro 128Gb Blue Titanium", "width": 1}, {"from": "Nano-SIM", "label": "\u0420\u043e\u0437\u043c\u0456\u0440 SIM-\u043a\u0430\u0440\u0442\u0438", "title": "\u0420\u043e\u0437\u043c\u0456\u0440 SIM-\u043a\u0430\u0440\u0442\u0438", "to": "Samsung Galaxy S24 Ultra 12/256Gb Titanium Gray (SM-S928BZTGEUC)", "width": 1}, {"from": "Nano-SIM", "label": "\u0420\u043e\u0437\u043c\u0456\u0440 SIM-\u043a\u0430\u0440\u0442\u0438", "title": "\u0420\u043e\u0437\u043c\u0456\u0440 SIM-\u043a\u0430\u0440\u0442\u0438", "to": "Apple iPhone 15 128Gb Black", "width": 1}, {"from": "Nano-SIM", "label": "\u0420\u043e\u0437\u043c\u0456\u0440 SIM-\u043a\u0430\u0440\u0442\u0438", "title": "\u0420\u043e\u0437\u043c\u0456\u0440 SIM-\u043a\u0430\u0440\u0442\u0438", "to": "Samsung Galaxy S24 8/256Gb Onyx Black (SM-S921BZKGEUC)", "width": 1}, {"from": "Nano-SIM", "label": "\u0420\u043e\u0437\u043c\u0456\u0440 SIM-\u043a\u0430\u0440\u0442\u0438", "title": "\u0420\u043e\u0437\u043c\u0456\u0440 SIM-\u043a\u0430\u0440\u0442\u0438", "to": "Apple iPhone 13 128Gb Starlight", "width": 1}, {"from": "Nano-SIM", "label": "\u0420\u043e\u0437\u043c\u0456\u0440 SIM-\u043a\u0430\u0440\u0442\u0438", "title": "\u0420\u043e\u0437\u043c\u0456\u0440 SIM-\u043a\u0430\u0440\u0442\u0438", "to": "Samsung Galaxy A35 5G 6/128Gb Awesome Navy (SM-A356BZKBEUC)", "width": 1}, {"from": "Nano-SIM", "label": "\u0420\u043e\u0437\u043c\u0456\u0440 SIM-\u043a\u0430\u0440\u0442\u0438", "title": "\u0420\u043e\u0437\u043c\u0456\u0440 SIM-\u043a\u0430\u0440\u0442\u0438", "to": "Apple iPhone 15 Pro 128Gb Natural Titanium", "width": 1}, {"from": "Nano-SIM", "label": "\u0420\u043e\u0437\u043c\u0456\u0440 SIM-\u043a\u0430\u0440\u0442\u0438", "title": "\u0420\u043e\u0437\u043c\u0456\u0440 SIM-\u043a\u0430\u0440\u0442\u0438", "to": "Samsung Galaxy A25 5G 6/128Gb Black (SM-A256BZKDEUC)", "width": 1}, {"from": "Nano-SIM", "label": "\u0420\u043e\u0437\u043c\u0456\u0440 SIM-\u043a\u0430\u0440\u0442\u0438", "title": "\u0420\u043e\u0437\u043c\u0456\u0440 SIM-\u043a\u0430\u0440\u0442\u0438", "to": "Apple iPhone 13 128Gb Midnight", "width": 1}, {"from": "\u0404", "label": "\u0428\u0432\u0438\u0434\u043a\u0430 \u0437\u0430\u0440\u044f\u0434\u043a\u0430", "title": "\u0428\u0432\u0438\u0434\u043a\u0430 \u0437\u0430\u0440\u044f\u0434\u043a\u0430", "to": "Samsung Galaxy A55 5G 8/256Gb Awesome Navy (SM-A556BZKCEUC)", "width": 1}, {"from": "\u0404", "label": "\u0428\u0432\u0438\u0434\u043a\u0430 \u0437\u0430\u0440\u044f\u0434\u043a\u0430", "title": "\u0428\u0432\u0438\u0434\u043a\u0430 \u0437\u0430\u0440\u044f\u0434\u043a\u0430", "to": "Samsung Galaxy A35 5G 8/256Gb Awesome Lilac (SM-A356BLVGEUC)", "width": 1}, {"from": "\u0404", "label": "\u0411\u0435\u0437\u0434\u0440\u043e\u0442\u043e\u0432\u0430 \u0437\u0430\u0440\u044f\u0434\u043a\u0430", "title": "\u0411\u0435\u0437\u0434\u0440\u043e\u0442\u043e\u0432\u0430 \u0437\u0430\u0440\u044f\u0434\u043a\u0430", "to": "Apple iPhone 15 Pro Max 256Gb Blue Titanium", "width": 1}, {"from": "\u0404", "label": "\u0411\u0435\u0437\u0434\u0440\u043e\u0442\u043e\u0432\u0430 \u0437\u0430\u0440\u044f\u0434\u043a\u0430", "title": "\u0411\u0435\u0437\u0434\u0440\u043e\u0442\u043e\u0432\u0430 \u0437\u0430\u0440\u044f\u0434\u043a\u0430", "to": "Apple iPhone 13 128Gb Green", "width": 1}, {"from": "\u0404", "label": "\u0411\u0435\u0437\u0434\u0440\u043e\u0442\u043e\u0432\u0430 \u0437\u0430\u0440\u044f\u0434\u043a\u0430", "title": "\u0411\u0435\u0437\u0434\u0440\u043e\u0442\u043e\u0432\u0430 \u0437\u0430\u0440\u044f\u0434\u043a\u0430", "to": "Samsung Galaxy S23FE 8/256Gb Graphite (SM-S711BZAGSEK)", "width": 1}, {"from": "\u0404", "label": "\u0411\u0435\u0437\u0434\u0440\u043e\u0442\u043e\u0432\u0430 \u0437\u0430\u0440\u044f\u0434\u043a\u0430", "title": "\u0411\u0435\u0437\u0434\u0440\u043e\u0442\u043e\u0432\u0430 \u0437\u0430\u0440\u044f\u0434\u043a\u0430", "to": "Samsung Galaxy S23 8/256Gb Black (SM-S911BZKGSEK)", "width": 1}, {"from": "\u0404", "label": "\u0411\u0435\u0437\u0434\u0440\u043e\u0442\u043e\u0432\u0430 \u0437\u0430\u0440\u044f\u0434\u043a\u0430", "title": "\u0411\u0435\u0437\u0434\u0440\u043e\u0442\u043e\u0432\u0430 \u0437\u0430\u0440\u044f\u0434\u043a\u0430", "to": "Apple iPhone 13 128Gb Blue", "width": 1}, {"from": "\u0404", "label": "\u0428\u0432\u0438\u0434\u043a\u0430 \u0437\u0430\u0440\u044f\u0434\u043a\u0430", "title": "\u0428\u0432\u0438\u0434\u043a\u0430 \u0437\u0430\u0440\u044f\u0434\u043a\u0430", "to": "Samsung Galaxy A15 4/128Gb Black (SM-A155FZKDEUC)", "width": 1}, {"from": "\u0404", "label": "\u0411\u0435\u0437\u0434\u0440\u043e\u0442\u043e\u0432\u0430 \u0437\u0430\u0440\u044f\u0434\u043a\u0430", "title": "\u0411\u0435\u0437\u0434\u0440\u043e\u0442\u043e\u0432\u0430 \u0437\u0430\u0440\u044f\u0434\u043a\u0430", "to": "Samsung Galaxy S24+ 12/512Gb Onyx Black (SM-S926BZKGEUC)", "width": 1}, {"from": "\u0404", "label": "\u0411\u0435\u0437\u0434\u0440\u043e\u0442\u043e\u0432\u0430 \u0437\u0430\u0440\u044f\u0434\u043a\u0430", "title": "\u0411\u0435\u0437\u0434\u0440\u043e\u0442\u043e\u0432\u0430 \u0437\u0430\u0440\u044f\u0434\u043a\u0430", "to": "Apple iPhone 13 128Gb Pink", "width": 1}, {"from": "\u0404", "label": "\u0411\u0435\u0437\u0434\u0440\u043e\u0442\u043e\u0432\u0430 \u0437\u0430\u0440\u044f\u0434\u043a\u0430", "title": "\u0411\u0435\u0437\u0434\u0440\u043e\u0442\u043e\u0432\u0430 \u0437\u0430\u0440\u044f\u0434\u043a\u0430", "to": "Apple iPhone 15 Pro 128Gb Blue Titanium", "width": 1}, {"from": "\u0404", "label": "\u0411\u0435\u0437\u0434\u0440\u043e\u0442\u043e\u0432\u0430 \u0437\u0430\u0440\u044f\u0434\u043a\u0430", "title": "\u0411\u0435\u0437\u0434\u0440\u043e\u0442\u043e\u0432\u0430 \u0437\u0430\u0440\u044f\u0434\u043a\u0430", "to": "Samsung Galaxy S24 Ultra 12/256Gb Titanium Gray (SM-S928BZTGEUC)", "width": 1}, {"from": "\u0404", "label": "\u0411\u0435\u0437\u0434\u0440\u043e\u0442\u043e\u0432\u0430 \u0437\u0430\u0440\u044f\u0434\u043a\u0430", "title": "\u0411\u0435\u0437\u0434\u0440\u043e\u0442\u043e\u0432\u0430 \u0437\u0430\u0440\u044f\u0434\u043a\u0430", "to": "Apple iPhone 15 128Gb Black", "width": 1}, {"from": "\u0404", "label": "\u0411\u0435\u0437\u0434\u0440\u043e\u0442\u043e\u0432\u0430 \u0437\u0430\u0440\u044f\u0434\u043a\u0430", "title": "\u0411\u0435\u0437\u0434\u0440\u043e\u0442\u043e\u0432\u0430 \u0437\u0430\u0440\u044f\u0434\u043a\u0430", "to": "Samsung Galaxy S24 8/256Gb Onyx Black (SM-S921BZKGEUC)", "width": 1}, {"from": "\u0404", "label": "\u0411\u0435\u0437\u0434\u0440\u043e\u0442\u043e\u0432\u0430 \u0437\u0430\u0440\u044f\u0434\u043a\u0430", "title": "\u0411\u0435\u0437\u0434\u0440\u043e\u0442\u043e\u0432\u0430 \u0437\u0430\u0440\u044f\u0434\u043a\u0430", "to": "Apple iPhone 13 128Gb Starlight", "width": 1}, {"from": "\u0404", "label": "\u0428\u0432\u0438\u0434\u043a\u0430 \u0437\u0430\u0440\u044f\u0434\u043a\u0430", "title": "\u0428\u0432\u0438\u0434\u043a\u0430 \u0437\u0430\u0440\u044f\u0434\u043a\u0430", "to": "Samsung Galaxy A35 5G 6/128Gb Awesome Navy (SM-A356BZKBEUC)", "width": 1}, {"from": "\u0404", "label": "\u0411\u0435\u0437\u0434\u0440\u043e\u0442\u043e\u0432\u0430 \u0437\u0430\u0440\u044f\u0434\u043a\u0430", "title": "\u0411\u0435\u0437\u0434\u0440\u043e\u0442\u043e\u0432\u0430 \u0437\u0430\u0440\u044f\u0434\u043a\u0430", "to": "Apple iPhone 15 Pro 128Gb Natural Titanium", "width": 1}, {"from": "\u0404", "label": "\u0428\u0432\u0438\u0434\u043a\u0430 \u0437\u0430\u0440\u044f\u0434\u043a\u0430", "title": "\u0428\u0432\u0438\u0434\u043a\u0430 \u0437\u0430\u0440\u044f\u0434\u043a\u0430", "to": "Samsung Galaxy A25 5G 6/128Gb Black (SM-A256BZKDEUC)", "width": 1}, {"from": "\u0404", "label": "\u0411\u0435\u0437\u0434\u0440\u043e\u0442\u043e\u0432\u0430 \u0437\u0430\u0440\u044f\u0434\u043a\u0430", "title": "\u0411\u0435\u0437\u0434\u0440\u043e\u0442\u043e\u0432\u0430 \u0437\u0430\u0440\u044f\u0434\u043a\u0430", "to": "Apple iPhone 13 128Gb Midnight", "width": 1}, {"from": "Apple iOS 17", "label": "\u041e\u043f\u0435\u0440\u0430\u0446\u0456\u0439\u043d\u0430 \u0441\u0438\u0441\u0442\u0435\u043c\u0430", "title": "\u041e\u043f\u0435\u0440\u0430\u0446\u0456\u0439\u043d\u0430 \u0441\u0438\u0441\u0442\u0435\u043c\u0430", "to": "Apple iPhone 15 Pro Max 256Gb Blue Titanium", "width": 1}, {"from": "Apple iOS 17", "label": "\u041e\u043f\u0435\u0440\u0430\u0446\u0456\u0439\u043d\u0430 \u0441\u0438\u0441\u0442\u0435\u043c\u0430", "title": "\u041e\u043f\u0435\u0440\u0430\u0446\u0456\u0439\u043d\u0430 \u0441\u0438\u0441\u0442\u0435\u043c\u0430", "to": "Apple iPhone 15 Pro 128Gb Blue Titanium", "width": 1}, {"from": "Apple iOS 17", "label": "\u041e\u043f\u0435\u0440\u0430\u0446\u0456\u0439\u043d\u0430 \u0441\u0438\u0441\u0442\u0435\u043c\u0430", "title": "\u041e\u043f\u0435\u0440\u0430\u0446\u0456\u0439\u043d\u0430 \u0441\u0438\u0441\u0442\u0435\u043c\u0430", "to": "Apple iPhone 15 128Gb Black", "width": 1}, {"from": "Apple iOS 17", "label": "\u041e\u043f\u0435\u0440\u0430\u0446\u0456\u0439\u043d\u0430 \u0441\u0438\u0441\u0442\u0435\u043c\u0430", "title": "\u041e\u043f\u0435\u0440\u0430\u0446\u0456\u0439\u043d\u0430 \u0441\u0438\u0441\u0442\u0435\u043c\u0430", "to": "Apple iPhone 15 Pro 128Gb Natural Titanium", "width": 1}, {"from": "Apple A17 Pro Bionic", "label": "\u041c\u043e\u0434\u0435\u043b\u044c \u043f\u0440\u043e\u0446\u0435\u0441\u043e\u0440\u0430", "title": "\u041c\u043e\u0434\u0435\u043b\u044c \u043f\u0440\u043e\u0446\u0435\u0441\u043e\u0440\u0430", "to": "Apple iPhone 15 Pro Max 256Gb Blue Titanium", "width": 1}, {"from": "Apple A17 Pro Bionic", "label": "\u041c\u043e\u0434\u0435\u043b\u044c \u043f\u0440\u043e\u0446\u0435\u0441\u043e\u0440\u0430", "title": "\u041c\u043e\u0434\u0435\u043b\u044c \u043f\u0440\u043e\u0446\u0435\u0441\u043e\u0440\u0430", "to": "Apple iPhone 15 Pro 128Gb Blue Titanium", "width": 1}, {"from": "Apple A17 Pro Bionic", "label": "\u041c\u043e\u0434\u0435\u043b\u044c \u043f\u0440\u043e\u0446\u0435\u0441\u043e\u0440\u0430", "title": "\u041c\u043e\u0434\u0435\u043b\u044c \u043f\u0440\u043e\u0446\u0435\u0441\u043e\u0440\u0430", "to": "Apple iPhone 15 Pro 128Gb Natural Titanium", "width": 1}, {"from": "6 \u044f\u0434\u0435\u0440", "label": "\u041a\u0456\u043b\u044c\u043a\u0456\u0441\u0442\u044c \u044f\u0434\u0435\u0440", "title": "\u041a\u0456\u043b\u044c\u043a\u0456\u0441\u0442\u044c \u044f\u0434\u0435\u0440", "to": "Apple iPhone 15 Pro Max 256Gb Blue Titanium", "width": 1}, {"from": "6 \u044f\u0434\u0435\u0440", "label": "\u041a\u0456\u043b\u044c\u043a\u0456\u0441\u0442\u044c \u044f\u0434\u0435\u0440", "title": "\u041a\u0456\u043b\u044c\u043a\u0456\u0441\u0442\u044c \u044f\u0434\u0435\u0440", "to": "Apple iPhone 13 128Gb Green", "width": 1}, {"from": "6 \u044f\u0434\u0435\u0440", "label": "\u041a\u0456\u043b\u044c\u043a\u0456\u0441\u0442\u044c \u044f\u0434\u0435\u0440", "title": "\u041a\u0456\u043b\u044c\u043a\u0456\u0441\u0442\u044c \u044f\u0434\u0435\u0440", "to": "Apple iPhone 13 128Gb Blue", "width": 1}, {"from": "6 \u044f\u0434\u0435\u0440", "label": "\u041a\u0456\u043b\u044c\u043a\u0456\u0441\u0442\u044c \u044f\u0434\u0435\u0440", "title": "\u041a\u0456\u043b\u044c\u043a\u0456\u0441\u0442\u044c \u044f\u0434\u0435\u0440", "to": "Apple iPhone 13 128Gb Pink", "width": 1}, {"from": "6 \u044f\u0434\u0435\u0440", "label": "\u041a\u0456\u043b\u044c\u043a\u0456\u0441\u0442\u044c \u044f\u0434\u0435\u0440", "title": "\u041a\u0456\u043b\u044c\u043a\u0456\u0441\u0442\u044c \u044f\u0434\u0435\u0440", "to": "Apple iPhone 15 Pro 128Gb Blue Titanium", "width": 1}, {"from": "6 \u044f\u0434\u0435\u0440", "label": "\u041a\u0456\u043b\u044c\u043a\u0456\u0441\u0442\u044c \u044f\u0434\u0435\u0440", "title": "\u041a\u0456\u043b\u044c\u043a\u0456\u0441\u0442\u044c \u044f\u0434\u0435\u0440", "to": "Apple iPhone 15 128Gb Black", "width": 1}, {"from": "6 \u044f\u0434\u0435\u0440", "label": "\u041a\u0456\u043b\u044c\u043a\u0456\u0441\u0442\u044c \u044f\u0434\u0435\u0440", "title": "\u041a\u0456\u043b\u044c\u043a\u0456\u0441\u0442\u044c \u044f\u0434\u0435\u0440", "to": "Apple iPhone 13 128Gb Starlight", "width": 1}, {"from": "6 \u044f\u0434\u0435\u0440", "label": "\u041a\u0456\u043b\u044c\u043a\u0456\u0441\u0442\u044c \u044f\u0434\u0435\u0440", "title": "\u041a\u0456\u043b\u044c\u043a\u0456\u0441\u0442\u044c \u044f\u0434\u0435\u0440", "to": "Apple iPhone 15 Pro 128Gb Natural Titanium", "width": 1}, {"from": "6 \u044f\u0434\u0435\u0440", "label": "\u041a\u0456\u043b\u044c\u043a\u0456\u0441\u0442\u044c \u044f\u0434\u0435\u0440", "title": "\u041a\u0456\u043b\u044c\u043a\u0456\u0441\u0442\u044c \u044f\u0434\u0435\u0440", "to": "Apple iPhone 13 128Gb Midnight", "width": 1}, {"from": "256 \u0413\u0411", "label": "\u0412\u0431\u0443\u0434\u043e\u0432\u0430\u043d\u0430 \u043f\u0430\u043c\u0027\u044f\u0442\u044c", "title": "\u0412\u0431\u0443\u0434\u043e\u0432\u0430\u043d\u0430 \u043f\u0430\u043c\u0027\u044f\u0442\u044c", "to": "Samsung Galaxy A55 5G 8/256Gb Awesome Navy (SM-A556BZKCEUC)", "width": 1}, {"from": "256 \u0413\u0411", "label": "\u0412\u0431\u0443\u0434\u043e\u0432\u0430\u043d\u0430 \u043f\u0430\u043c\u0027\u044f\u0442\u044c", "title": "\u0412\u0431\u0443\u0434\u043e\u0432\u0430\u043d\u0430 \u043f\u0430\u043c\u0027\u044f\u0442\u044c", "to": "Samsung Galaxy A35 5G 8/256Gb Awesome Lilac (SM-A356BLVGEUC)", "width": 1}, {"from": "256 \u0413\u0411", "label": "\u0412\u0431\u0443\u0434\u043e\u0432\u0430\u043d\u0430 \u043f\u0430\u043c\u0027\u044f\u0442\u044c", "title": "\u0412\u0431\u0443\u0434\u043e\u0432\u0430\u043d\u0430 \u043f\u0430\u043c\u0027\u044f\u0442\u044c", "to": "Apple iPhone 15 Pro Max 256Gb Blue Titanium", "width": 1}, {"from": "256 \u0413\u0411", "label": "\u0412\u0431\u0443\u0434\u043e\u0432\u0430\u043d\u0430 \u043f\u0430\u043c\u0027\u044f\u0442\u044c", "title": "\u0412\u0431\u0443\u0434\u043e\u0432\u0430\u043d\u0430 \u043f\u0430\u043c\u0027\u044f\u0442\u044c", "to": "Samsung Galaxy S23FE 8/256Gb Graphite (SM-S711BZAGSEK)", "width": 1}, {"from": "256 \u0413\u0411", "label": "\u0412\u0431\u0443\u0434\u043e\u0432\u0430\u043d\u0430 \u043f\u0430\u043c\u0027\u044f\u0442\u044c", "title": "\u0412\u0431\u0443\u0434\u043e\u0432\u0430\u043d\u0430 \u043f\u0430\u043c\u0027\u044f\u0442\u044c", "to": "Samsung Galaxy S23 8/256Gb Black (SM-S911BZKGSEK)", "width": 1}, {"from": "256 \u0413\u0411", "label": "\u0412\u0431\u0443\u0434\u043e\u0432\u0430\u043d\u0430 \u043f\u0430\u043c\u0027\u044f\u0442\u044c", "title": "\u0412\u0431\u0443\u0434\u043e\u0432\u0430\u043d\u0430 \u043f\u0430\u043c\u0027\u044f\u0442\u044c", "to": "Samsung Galaxy S24 Ultra 12/256Gb Titanium Gray (SM-S928BZTGEUC)", "width": 1}, {"from": "256 \u0413\u0411", "label": "\u0412\u0431\u0443\u0434\u043e\u0432\u0430\u043d\u0430 \u043f\u0430\u043c\u0027\u044f\u0442\u044c", "title": "\u0412\u0431\u0443\u0434\u043e\u0432\u0430\u043d\u0430 \u043f\u0430\u043c\u0027\u044f\u0442\u044c", "to": "Samsung Galaxy S24 8/256Gb Onyx Black (SM-S921BZKGEUC)", "width": 1}, {"from": "48+12+12 \u041c\u043f", "label": "\u041e\u0441\u043d\u043e\u0432\u043d\u0430 \u043a\u0430\u043c\u0435\u0440\u0430", "title": "\u041e\u0441\u043d\u043e\u0432\u043d\u0430 \u043a\u0430\u043c\u0435\u0440\u0430", "to": "Apple iPhone 15 Pro Max 256Gb Blue Titanium", "width": 1}, {"from": "48+12+12 \u041c\u043f", "label": "\u041e\u0441\u043d\u043e\u0432\u043d\u0430 \u043a\u0430\u043c\u0435\u0440\u0430", "title": "\u041e\u0441\u043d\u043e\u0432\u043d\u0430 \u043a\u0430\u043c\u0435\u0440\u0430", "to": "Apple iPhone 15 Pro 128Gb Blue Titanium", "width": 1}, {"from": "48+12+12 \u041c\u043f", "label": "\u041e\u0441\u043d\u043e\u0432\u043d\u0430 \u043a\u0430\u043c\u0435\u0440\u0430", "title": "\u041e\u0441\u043d\u043e\u0432\u043d\u0430 \u043a\u0430\u043c\u0435\u0440\u0430", "to": "Apple iPhone 15 128Gb Black", "width": 1}, {"from": "48+12+12 \u041c\u043f", "label": "\u041e\u0441\u043d\u043e\u0432\u043d\u0430 \u043a\u0430\u043c\u0435\u0440\u0430", "title": "\u041e\u0441\u043d\u043e\u0432\u043d\u0430 \u043a\u0430\u043c\u0435\u0440\u0430", "to": "Apple iPhone 15 Pro 128Gb Natural Titanium", "width": 1}, {"from": "3840 x 2160 4K UHD", "label": "\u0420\u043e\u0437\u0434\u0456\u043b\u044c\u043d\u0430 \u0437\u0434\u0430\u0442\u043d\u0456\u0441\u0442\u044c \u0432\u0456\u0434\u0435\u043e", "title": "\u0420\u043e\u0437\u0434\u0456\u043b\u044c\u043d\u0430 \u0437\u0434\u0430\u0442\u043d\u0456\u0441\u0442\u044c \u0432\u0456\u0434\u0435\u043e", "to": "Samsung Galaxy A55 5G 8/256Gb Awesome Navy (SM-A556BZKCEUC)", "width": 1}, {"from": "3840 x 2160 4K UHD", "label": "\u0420\u043e\u0437\u0434\u0456\u043b\u044c\u043d\u0430 \u0437\u0434\u0430\u0442\u043d\u0456\u0441\u0442\u044c \u0432\u0456\u0434\u0435\u043e", "title": "\u0420\u043e\u0437\u0434\u0456\u043b\u044c\u043d\u0430 \u0437\u0434\u0430\u0442\u043d\u0456\u0441\u0442\u044c \u0432\u0456\u0434\u0435\u043e", "to": "Samsung Galaxy A35 5G 8/256Gb Awesome Lilac (SM-A356BLVGEUC)", "width": 1}, {"from": "3840 x 2160 4K UHD", "label": "\u0420\u043e\u0437\u0434\u0456\u043b\u044c\u043d\u0430 \u0437\u0434\u0430\u0442\u043d\u0456\u0441\u0442\u044c \u0432\u0456\u0434\u0435\u043e", "title": "\u0420\u043e\u0437\u0434\u0456\u043b\u044c\u043d\u0430 \u0437\u0434\u0430\u0442\u043d\u0456\u0441\u0442\u044c \u0432\u0456\u0434\u0435\u043e", "to": "Apple iPhone 15 Pro Max 256Gb Blue Titanium", "width": 1}, {"from": "3840 x 2160 4K UHD", "label": "\u0420\u043e\u0437\u0434\u0456\u043b\u044c\u043d\u0430 \u0437\u0434\u0430\u0442\u043d\u0456\u0441\u0442\u044c \u0432\u0456\u0434\u0435\u043e", "title": "\u0420\u043e\u0437\u0434\u0456\u043b\u044c\u043d\u0430 \u0437\u0434\u0430\u0442\u043d\u0456\u0441\u0442\u044c \u0432\u0456\u0434\u0435\u043e", "to": "Apple iPhone 13 128Gb Green", "width": 1}, {"from": "3840 x 2160 4K UHD", "label": "\u0420\u043e\u0437\u0434\u0456\u043b\u044c\u043d\u0430 \u0437\u0434\u0430\u0442\u043d\u0456\u0441\u0442\u044c \u0432\u0456\u0434\u0435\u043e", "title": "\u0420\u043e\u0437\u0434\u0456\u043b\u044c\u043d\u0430 \u0437\u0434\u0430\u0442\u043d\u0456\u0441\u0442\u044c \u0432\u0456\u0434\u0435\u043e", "to": "Apple iPhone 13 128Gb Blue", "width": 1}, {"from": "3840 x 2160 4K UHD", "label": "\u0420\u043e\u0437\u0434\u0456\u043b\u044c\u043d\u0430 \u0437\u0434\u0430\u0442\u043d\u0456\u0441\u0442\u044c \u0432\u0456\u0434\u0435\u043e", "title": "\u0420\u043e\u0437\u0434\u0456\u043b\u044c\u043d\u0430 \u0437\u0434\u0430\u0442\u043d\u0456\u0441\u0442\u044c \u0432\u0456\u0434\u0435\u043e", "to": "Apple iPhone 13 128Gb Pink", "width": 1}, {"from": "3840 x 2160 4K UHD", "label": "\u0420\u043e\u0437\u0434\u0456\u043b\u044c\u043d\u0430 \u0437\u0434\u0430\u0442\u043d\u0456\u0441\u0442\u044c \u0432\u0456\u0434\u0435\u043e", "title": "\u0420\u043e\u0437\u0434\u0456\u043b\u044c\u043d\u0430 \u0437\u0434\u0430\u0442\u043d\u0456\u0441\u0442\u044c \u0432\u0456\u0434\u0435\u043e", "to": "Apple iPhone 15 Pro 128Gb Blue Titanium", "width": 1}, {"from": "3840 x 2160 4K UHD", "label": "\u0420\u043e\u0437\u0434\u0456\u043b\u044c\u043d\u0430 \u0437\u0434\u0430\u0442\u043d\u0456\u0441\u0442\u044c \u0432\u0456\u0434\u0435\u043e", "title": "\u0420\u043e\u0437\u0434\u0456\u043b\u044c\u043d\u0430 \u0437\u0434\u0430\u0442\u043d\u0456\u0441\u0442\u044c \u0432\u0456\u0434\u0435\u043e", "to": "Apple iPhone 15 128Gb Black", "width": 1}, {"from": "3840 x 2160 4K UHD", "label": "\u0420\u043e\u0437\u0434\u0456\u043b\u044c\u043d\u0430 \u0437\u0434\u0430\u0442\u043d\u0456\u0441\u0442\u044c \u0432\u0456\u0434\u0435\u043e", "title": "\u0420\u043e\u0437\u0434\u0456\u043b\u044c\u043d\u0430 \u0437\u0434\u0430\u0442\u043d\u0456\u0441\u0442\u044c \u0432\u0456\u0434\u0435\u043e", "to": "Apple iPhone 13 128Gb Starlight", "width": 1}, {"from": "3840 x 2160 4K UHD", "label": "\u0420\u043e\u0437\u0434\u0456\u043b\u044c\u043d\u0430 \u0437\u0434\u0430\u0442\u043d\u0456\u0441\u0442\u044c \u0432\u0456\u0434\u0435\u043e", "title": "\u0420\u043e\u0437\u0434\u0456\u043b\u044c\u043d\u0430 \u0437\u0434\u0430\u0442\u043d\u0456\u0441\u0442\u044c \u0432\u0456\u0434\u0435\u043e", "to": "Samsung Galaxy A35 5G 6/128Gb Awesome Navy (SM-A356BZKBEUC)", "width": 1}, {"from": "3840 x 2160 4K UHD", "label": "\u0420\u043e\u0437\u0434\u0456\u043b\u044c\u043d\u0430 \u0437\u0434\u0430\u0442\u043d\u0456\u0441\u0442\u044c \u0432\u0456\u0434\u0435\u043e", "title": "\u0420\u043e\u0437\u0434\u0456\u043b\u044c\u043d\u0430 \u0437\u0434\u0430\u0442\u043d\u0456\u0441\u0442\u044c \u0432\u0456\u0434\u0435\u043e", "to": "Apple iPhone 15 Pro 128Gb Natural Titanium", "width": 1}, {"from": "3840 x 2160 4K UHD", "label": "\u0420\u043e\u0437\u0434\u0456\u043b\u044c\u043d\u0430 \u0437\u0434\u0430\u0442\u043d\u0456\u0441\u0442\u044c \u0432\u0456\u0434\u0435\u043e", "title": "\u0420\u043e\u0437\u0434\u0456\u043b\u044c\u043d\u0430 \u0437\u0434\u0430\u0442\u043d\u0456\u0441\u0442\u044c \u0432\u0456\u0434\u0435\u043e", "to": "Samsung Galaxy A25 5G 6/128Gb Black (SM-A256BZKDEUC)", "width": 1}, {"from": "3840 x 2160 4K UHD", "label": "\u0420\u043e\u0437\u0434\u0456\u043b\u044c\u043d\u0430 \u0437\u0434\u0430\u0442\u043d\u0456\u0441\u0442\u044c \u0432\u0456\u0434\u0435\u043e", "title": "\u0420\u043e\u0437\u0434\u0456\u043b\u044c\u043d\u0430 \u0437\u0434\u0430\u0442\u043d\u0456\u0441\u0442\u044c \u0432\u0456\u0434\u0435\u043e", "to": "Apple iPhone 13 128Gb Midnight", "width": 1}, {"from": "12 \u041c\u043f", "label": "\u0424\u0440\u043e\u043d\u0442\u0430\u043b\u044c\u043d\u0430 \u043a\u0430\u043c\u0435\u0440\u0430", "title": "\u0424\u0440\u043e\u043d\u0442\u0430\u043b\u044c\u043d\u0430 \u043a\u0430\u043c\u0435\u0440\u0430", "to": "Apple iPhone 15 Pro Max 256Gb Blue Titanium", "width": 1}, {"from": "12 \u041c\u043f", "label": "\u0424\u0440\u043e\u043d\u0442\u0430\u043b\u044c\u043d\u0430 \u043a\u0430\u043c\u0435\u0440\u0430", "title": "\u0424\u0440\u043e\u043d\u0442\u0430\u043b\u044c\u043d\u0430 \u043a\u0430\u043c\u0435\u0440\u0430", "to": "Apple iPhone 13 128Gb Green", "width": 1}, {"from": "12 \u041c\u043f", "label": "\u0424\u0440\u043e\u043d\u0442\u0430\u043b\u044c\u043d\u0430 \u043a\u0430\u043c\u0435\u0440\u0430", "title": "\u0424\u0440\u043e\u043d\u0442\u0430\u043b\u044c\u043d\u0430 \u043a\u0430\u043c\u0435\u0440\u0430", "to": "Samsung Galaxy S23 8/256Gb Black (SM-S911BZKGSEK)", "width": 1}, {"from": "12 \u041c\u043f", "label": "\u0424\u0440\u043e\u043d\u0442\u0430\u043b\u044c\u043d\u0430 \u043a\u0430\u043c\u0435\u0440\u0430", "title": "\u0424\u0440\u043e\u043d\u0442\u0430\u043b\u044c\u043d\u0430 \u043a\u0430\u043c\u0435\u0440\u0430", "to": "Apple iPhone 13 128Gb Blue", "width": 1}, {"from": "12 \u041c\u043f", "label": "\u0424\u0440\u043e\u043d\u0442\u0430\u043b\u044c\u043d\u0430 \u043a\u0430\u043c\u0435\u0440\u0430", "title": "\u0424\u0440\u043e\u043d\u0442\u0430\u043b\u044c\u043d\u0430 \u043a\u0430\u043c\u0435\u0440\u0430", "to": "Samsung Galaxy S24+ 12/512Gb Onyx Black (SM-S926BZKGEUC)", "width": 1}, {"from": "12 \u041c\u043f", "label": "\u0424\u0440\u043e\u043d\u0442\u0430\u043b\u044c\u043d\u0430 \u043a\u0430\u043c\u0435\u0440\u0430", "title": "\u0424\u0440\u043e\u043d\u0442\u0430\u043b\u044c\u043d\u0430 \u043a\u0430\u043c\u0435\u0440\u0430", "to": "Apple iPhone 13 128Gb Pink", "width": 1}, {"from": "12 \u041c\u043f", "label": "\u0424\u0440\u043e\u043d\u0442\u0430\u043b\u044c\u043d\u0430 \u043a\u0430\u043c\u0435\u0440\u0430", "title": "\u0424\u0440\u043e\u043d\u0442\u0430\u043b\u044c\u043d\u0430 \u043a\u0430\u043c\u0435\u0440\u0430", "to": "Apple iPhone 15 Pro 128Gb Blue Titanium", "width": 1}, {"from": "12 \u041c\u043f", "label": "\u0424\u0440\u043e\u043d\u0442\u0430\u043b\u044c\u043d\u0430 \u043a\u0430\u043c\u0435\u0440\u0430", "title": "\u0424\u0440\u043e\u043d\u0442\u0430\u043b\u044c\u043d\u0430 \u043a\u0430\u043c\u0435\u0440\u0430", "to": "Samsung Galaxy S24 Ultra 12/256Gb Titanium Gray (SM-S928BZTGEUC)", "width": 1}, {"from": "12 \u041c\u043f", "label": "\u0424\u0440\u043e\u043d\u0442\u0430\u043b\u044c\u043d\u0430 \u043a\u0430\u043c\u0435\u0440\u0430", "title": "\u0424\u0440\u043e\u043d\u0442\u0430\u043b\u044c\u043d\u0430 \u043a\u0430\u043c\u0435\u0440\u0430", "to": "Apple iPhone 15 128Gb Black", "width": 1}, {"from": "12 \u041c\u043f", "label": "\u0424\u0440\u043e\u043d\u0442\u0430\u043b\u044c\u043d\u0430 \u043a\u0430\u043c\u0435\u0440\u0430", "title": "\u0424\u0440\u043e\u043d\u0442\u0430\u043b\u044c\u043d\u0430 \u043a\u0430\u043c\u0435\u0440\u0430", "to": "Samsung Galaxy S24 8/256Gb Onyx Black (SM-S921BZKGEUC)", "width": 1}, {"from": "12 \u041c\u043f", "label": "\u0424\u0440\u043e\u043d\u0442\u0430\u043b\u044c\u043d\u0430 \u043a\u0430\u043c\u0435\u0440\u0430", "title": "\u0424\u0440\u043e\u043d\u0442\u0430\u043b\u044c\u043d\u0430 \u043a\u0430\u043c\u0435\u0440\u0430", "to": "Apple iPhone 13 128Gb Starlight", "width": 1}, {"from": "12 \u041c\u043f", "label": "\u0424\u0440\u043e\u043d\u0442\u0430\u043b\u044c\u043d\u0430 \u043a\u0430\u043c\u0435\u0440\u0430", "title": "\u0424\u0440\u043e\u043d\u0442\u0430\u043b\u044c\u043d\u0430 \u043a\u0430\u043c\u0435\u0440\u0430", "to": "Apple iPhone 15 Pro 128Gb Natural Titanium", "width": 1}, {"from": "12 \u041c\u043f", "label": "\u0424\u0440\u043e\u043d\u0442\u0430\u043b\u044c\u043d\u0430 \u043a\u0430\u043c\u0435\u0440\u0430", "title": "\u0424\u0440\u043e\u043d\u0442\u0430\u043b\u044c\u043d\u0430 \u043a\u0430\u043c\u0435\u0440\u0430", "to": "Apple iPhone 13 128Gb Midnight", "width": 1}, {"from": "True Tone", "label": "\u0421\u043f\u0430\u043b\u0430\u0445", "title": "\u0421\u043f\u0430\u043b\u0430\u0445", "to": "Apple iPhone 15 Pro Max 256Gb Blue Titanium", "width": 1}, {"from": "True Tone", "label": "\u0421\u043f\u0430\u043b\u0430\u0445", "title": "\u0421\u043f\u0430\u043b\u0430\u0445", "to": "Apple iPhone 13 128Gb Green", "width": 1}, {"from": "True Tone", "label": "\u0421\u043f\u0430\u043b\u0430\u0445", "title": "\u0421\u043f\u0430\u043b\u0430\u0445", "to": "Apple iPhone 13 128Gb Blue", "width": 1}, {"from": "True Tone", "label": "\u0421\u043f\u0430\u043b\u0430\u0445", "title": "\u0421\u043f\u0430\u043b\u0430\u0445", "to": "Apple iPhone 13 128Gb Pink", "width": 1}, {"from": "True Tone", "label": "\u0421\u043f\u0430\u043b\u0430\u0445", "title": "\u0421\u043f\u0430\u043b\u0430\u0445", "to": "Apple iPhone 15 Pro 128Gb Blue Titanium", "width": 1}, {"from": "True Tone", "label": "\u0421\u043f\u0430\u043b\u0430\u0445", "title": "\u0421\u043f\u0430\u043b\u0430\u0445", "to": "Apple iPhone 15 128Gb Black", "width": 1}, {"from": "True Tone", "label": "\u0421\u043f\u0430\u043b\u0430\u0445", "title": "\u0421\u043f\u0430\u043b\u0430\u0445", "to": "Apple iPhone 13 128Gb Starlight", "width": 1}, {"from": "True Tone", "label": "\u0421\u043f\u0430\u043b\u0430\u0445", "title": "\u0421\u043f\u0430\u043b\u0430\u0445", "to": "Apple iPhone 15 Pro 128Gb Natural Titanium", "width": 1}, {"from": "True Tone", "label": "\u0421\u043f\u0430\u043b\u0430\u0445", "title": "\u0421\u043f\u0430\u043b\u0430\u0445", "to": "Apple iPhone 13 128Gb Midnight", "width": 1}, {"from": "\u041c\u0430\u0442\u0440\u0438\u0447\u043d\u0430/\u043e\u043f\u0442\u0438\u0447\u043d\u0430", "label": "\u0421\u0442\u0430\u0431\u0456\u043b\u0456\u0437\u0430\u0446\u0456\u044f", "title": "\u0421\u0442\u0430\u0431\u0456\u043b\u0456\u0437\u0430\u0446\u0456\u044f", "to": "Apple iPhone 15 Pro Max 256Gb Blue Titanium", "width": 1}, {"from": "\u041c\u0430\u0442\u0440\u0438\u0447\u043d\u0430/\u043e\u043f\u0442\u0438\u0447\u043d\u0430", "label": "\u0421\u0442\u0430\u0431\u0456\u043b\u0456\u0437\u0430\u0446\u0456\u044f", "title": "\u0421\u0442\u0430\u0431\u0456\u043b\u0456\u0437\u0430\u0446\u0456\u044f", "to": "Apple iPhone 15 Pro 128Gb Blue Titanium", "width": 1}, {"from": "\u041c\u0430\u0442\u0440\u0438\u0447\u043d\u0430/\u043e\u043f\u0442\u0438\u0447\u043d\u0430", "label": "\u0421\u0442\u0430\u0431\u0456\u043b\u0456\u0437\u0430\u0446\u0456\u044f", "title": "\u0421\u0442\u0430\u0431\u0456\u043b\u0456\u0437\u0430\u0446\u0456\u044f", "to": "Apple iPhone 15 128Gb Black", "width": 1}, {"from": "\u041c\u0430\u0442\u0440\u0438\u0447\u043d\u0430/\u043e\u043f\u0442\u0438\u0447\u043d\u0430", "label": "\u0421\u0442\u0430\u0431\u0456\u043b\u0456\u0437\u0430\u0446\u0456\u044f", "title": "\u0421\u0442\u0430\u0431\u0456\u043b\u0456\u0437\u0430\u0446\u0456\u044f", "to": "Apple iPhone 15 Pro 128Gb Natural Titanium", "width": 1}, {"from": "5\u0445 \u043e\u043f\u0442\u0438\u0447\u043d\u0438\u0439\n25\u0445 \u0446\u0438\u0444\u0440\u043e\u0432\u0438\u0439", "label": "\u0417\u0443\u043c", "title": "\u0417\u0443\u043c", "to": "Apple iPhone 15 Pro Max 256Gb Blue Titanium", "width": 1}, {"from": "802.11a\u0441 (Wi-Fi 5)", "label": "\u0421\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u0438 Wi-Fi", "title": "\u0421\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u0438 Wi-Fi", "to": "Apple iPhone 15 Pro Max 256Gb Blue Titanium", "width": 1}, {"from": "802.11a\u0441 (Wi-Fi 5)", "label": "\u0421\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u0438 Wi-Fi", "title": "\u0421\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u0438 Wi-Fi", "to": "Apple iPhone 13 128Gb Green", "width": 1}, {"from": "802.11a\u0441 (Wi-Fi 5)", "label": "\u0421\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u0438 Wi-Fi", "title": "\u0421\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u0438 Wi-Fi", "to": "Samsung Galaxy S23FE 8/256Gb Graphite (SM-S711BZAGSEK)", "width": 1}, {"from": "802.11a\u0441 (Wi-Fi 5)", "label": "\u0421\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u0438 Wi-Fi", "title": "\u0421\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u0438 Wi-Fi", "to": "Samsung Galaxy S23 8/256Gb Black (SM-S911BZKGSEK)", "width": 1}, {"from": "802.11a\u0441 (Wi-Fi 5)", "label": "\u0421\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u0438 Wi-Fi", "title": "\u0421\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u0438 Wi-Fi", "to": "Apple iPhone 13 128Gb Blue", "width": 1}, {"from": "802.11a\u0441 (Wi-Fi 5)", "label": "\u0421\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u0438 Wi-Fi", "title": "\u0421\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u0438 Wi-Fi", "to": "Samsung Galaxy A15 4/128Gb Black (SM-A155FZKDEUC)", "width": 1}, {"from": "802.11a\u0441 (Wi-Fi 5)", "label": "\u0421\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u0438 Wi-Fi", "title": "\u0421\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u0438 Wi-Fi", "to": "Samsung Galaxy S24+ 12/512Gb Onyx Black (SM-S926BZKGEUC)", "width": 1}, {"from": "802.11a\u0441 (Wi-Fi 5)", "label": "\u0421\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u0438 Wi-Fi", "title": "\u0421\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u0438 Wi-Fi", "to": "Apple iPhone 13 128Gb Pink", "width": 1}, {"from": "802.11a\u0441 (Wi-Fi 5)", "label": "\u0421\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u0438 Wi-Fi", "title": "\u0421\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u0438 Wi-Fi", "to": "Apple iPhone 15 Pro 128Gb Blue Titanium", "width": 1}, {"from": "802.11a\u0441 (Wi-Fi 5)", "label": "\u0421\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u0438 Wi-Fi", "title": "\u0421\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u0438 Wi-Fi", "to": "Apple iPhone 15 128Gb Black", "width": 1}, {"from": "802.11a\u0441 (Wi-Fi 5)", "label": "\u0421\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u0438 Wi-Fi", "title": "\u0421\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u0438 Wi-Fi", "to": "Samsung Galaxy S24 8/256Gb Onyx Black (SM-S921BZKGEUC)", "width": 1}, {"from": "802.11a\u0441 (Wi-Fi 5)", "label": "\u0421\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u0438 Wi-Fi", "title": "\u0421\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u0438 Wi-Fi", "to": "Apple iPhone 13 128Gb Starlight", "width": 1}, {"from": "802.11a\u0441 (Wi-Fi 5)", "label": "\u0421\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u0438 Wi-Fi", "title": "\u0421\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u0438 Wi-Fi", "to": "Apple iPhone 15 Pro 128Gb Natural Titanium", "width": 1}, {"from": "802.11a\u0441 (Wi-Fi 5)", "label": "\u0421\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u0438 Wi-Fi", "title": "\u0421\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u0438 Wi-Fi", "to": "Samsung Galaxy A25 5G 6/128Gb Black (SM-A256BZKDEUC)", "width": 1}, {"from": "802.11a\u0441 (Wi-Fi 5)", "label": "\u0421\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u0438 Wi-Fi", "title": "\u0421\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u0438 Wi-Fi", "to": "Apple iPhone 13 128Gb Midnight", "width": 1}, {"from": "\u0412\u0435\u0440\u0441\u0456\u044f 5.3", "label": "Bluetooth", "title": "Bluetooth", "to": "Samsung Galaxy A55 5G 8/256Gb Awesome Navy (SM-A556BZKCEUC)", "width": 1}, {"from": "\u0412\u0435\u0440\u0441\u0456\u044f 5.3", "label": "Bluetooth", "title": "Bluetooth", "to": "Samsung Galaxy A35 5G 8/256Gb Awesome Lilac (SM-A356BLVGEUC)", "width": 1}, {"from": "\u0412\u0435\u0440\u0441\u0456\u044f 5.3", "label": "Bluetooth", "title": "Bluetooth", "to": "Apple iPhone 15 Pro Max 256Gb Blue Titanium", "width": 1}, {"from": "\u0412\u0435\u0440\u0441\u0456\u044f 5.3", "label": "Bluetooth", "title": "Bluetooth", "to": "Samsung Galaxy S23FE 8/256Gb Graphite (SM-S711BZAGSEK)", "width": 1}, {"from": "\u0412\u0435\u0440\u0441\u0456\u044f 5.3", "label": "Bluetooth", "title": "Bluetooth", "to": "Samsung Galaxy S23 8/256Gb Black (SM-S911BZKGSEK)", "width": 1}, {"from": "\u0412\u0435\u0440\u0441\u0456\u044f 5.3", "label": "Bluetooth", "title": "Bluetooth", "to": "Samsung Galaxy A15 4/128Gb Black (SM-A155FZKDEUC)", "width": 1}, {"from": "\u0412\u0435\u0440\u0441\u0456\u044f 5.3", "label": "Bluetooth", "title": "Bluetooth", "to": "Samsung Galaxy S24+ 12/512Gb Onyx Black (SM-S926BZKGEUC)", "width": 1}, {"from": "\u0412\u0435\u0440\u0441\u0456\u044f 5.3", "label": "Bluetooth", "title": "Bluetooth", "to": "Apple iPhone 15 Pro 128Gb Blue Titanium", "width": 1}, {"from": "\u0412\u0435\u0440\u0441\u0456\u044f 5.3", "label": "Bluetooth", "title": "Bluetooth", "to": "Samsung Galaxy S24 Ultra 12/256Gb Titanium Gray (SM-S928BZTGEUC)", "width": 1}, {"from": "\u0412\u0435\u0440\u0441\u0456\u044f 5.3", "label": "Bluetooth", "title": "Bluetooth", "to": "Apple iPhone 15 128Gb Black", "width": 1}, {"from": "\u0412\u0435\u0440\u0441\u0456\u044f 5.3", "label": "Bluetooth", "title": "Bluetooth", "to": "Samsung Galaxy S24 8/256Gb Onyx Black (SM-S921BZKGEUC)", "width": 1}, {"from": "\u0412\u0435\u0440\u0441\u0456\u044f 5.3", "label": "Bluetooth", "title": "Bluetooth", "to": "Samsung Galaxy A35 5G 6/128Gb Awesome Navy (SM-A356BZKBEUC)", "width": 1}, {"from": "\u0412\u0435\u0440\u0441\u0456\u044f 5.3", "label": "Bluetooth", "title": "Bluetooth", "to": "Apple iPhone 15 Pro 128Gb Natural Titanium", "width": 1}, {"from": "\u0412\u0435\u0440\u0441\u0456\u044f 5.3", "label": "Bluetooth", "title": "Bluetooth", "to": "Samsung Galaxy A25 5G 6/128Gb Black (SM-A256BZKDEUC)", "width": 1}, {"from": "GPS\nBeidou\nGalileo\nQZSS\n\u0413\u041b\u041e\u041d\u0410\u0421\u0421", "label": "\u041d\u0430\u0432\u0456\u0433\u0430\u0446\u0456\u0439\u043d\u0430 \u0441\u0438\u0441\u0442\u0435\u043c\u0430", "title": "\u041d\u0430\u0432\u0456\u0433\u0430\u0446\u0456\u0439\u043d\u0430 \u0441\u0438\u0441\u0442\u0435\u043c\u0430", "to": "Samsung Galaxy A55 5G 8/256Gb Awesome Navy (SM-A556BZKCEUC)", "width": 1}, {"from": "GPS\nBeidou\nGalileo\nQZSS\n\u0413\u041b\u041e\u041d\u0410\u0421\u0421", "label": "\u041d\u0430\u0432\u0456\u0433\u0430\u0446\u0456\u0439\u043d\u0430 \u0441\u0438\u0441\u0442\u0435\u043c\u0430", "title": "\u041d\u0430\u0432\u0456\u0433\u0430\u0446\u0456\u0439\u043d\u0430 \u0441\u0438\u0441\u0442\u0435\u043c\u0430", "to": "Apple iPhone 15 Pro Max 256Gb Blue Titanium", "width": 1}, {"from": "GPS\nBeidou\nGalileo\nQZSS\n\u0413\u041b\u041e\u041d\u0410\u0421\u0421", "label": "\u041d\u0430\u0432\u0456\u0433\u0430\u0446\u0456\u0439\u043d\u0430 \u0441\u0438\u0441\u0442\u0435\u043c\u0430", "title": "\u041d\u0430\u0432\u0456\u0433\u0430\u0446\u0456\u0439\u043d\u0430 \u0441\u0438\u0441\u0442\u0435\u043c\u0430", "to": "Apple iPhone 13 128Gb Green", "width": 1}, {"from": "GPS\nBeidou\nGalileo\nQZSS\n\u0413\u041b\u041e\u041d\u0410\u0421\u0421", "label": "\u041d\u0430\u0432\u0456\u0433\u0430\u0446\u0456\u0439\u043d\u0430 \u0441\u0438\u0441\u0442\u0435\u043c\u0430", "title": "\u041d\u0430\u0432\u0456\u0433\u0430\u0446\u0456\u0439\u043d\u0430 \u0441\u0438\u0441\u0442\u0435\u043c\u0430", "to": "Samsung Galaxy S23FE 8/256Gb Graphite (SM-S711BZAGSEK)", "width": 1}, {"from": "GPS\nBeidou\nGalileo\nQZSS\n\u0413\u041b\u041e\u041d\u0410\u0421\u0421", "label": "\u041d\u0430\u0432\u0456\u0433\u0430\u0446\u0456\u0439\u043d\u0430 \u0441\u0438\u0441\u0442\u0435\u043c\u0430", "title": "\u041d\u0430\u0432\u0456\u0433\u0430\u0446\u0456\u0439\u043d\u0430 \u0441\u0438\u0441\u0442\u0435\u043c\u0430", "to": "Samsung Galaxy S23 8/256Gb Black (SM-S911BZKGSEK)", "width": 1}, {"from": "GPS\nBeidou\nGalileo\nQZSS\n\u0413\u041b\u041e\u041d\u0410\u0421\u0421", "label": "\u041d\u0430\u0432\u0456\u0433\u0430\u0446\u0456\u0439\u043d\u0430 \u0441\u0438\u0441\u0442\u0435\u043c\u0430", "title": "\u041d\u0430\u0432\u0456\u0433\u0430\u0446\u0456\u0439\u043d\u0430 \u0441\u0438\u0441\u0442\u0435\u043c\u0430", "to": "Apple iPhone 13 128Gb Blue", "width": 1}, {"from": "GPS\nBeidou\nGalileo\nQZSS\n\u0413\u041b\u041e\u041d\u0410\u0421\u0421", "label": "\u041d\u0430\u0432\u0456\u0433\u0430\u0446\u0456\u0439\u043d\u0430 \u0441\u0438\u0441\u0442\u0435\u043c\u0430", "title": "\u041d\u0430\u0432\u0456\u0433\u0430\u0446\u0456\u0439\u043d\u0430 \u0441\u0438\u0441\u0442\u0435\u043c\u0430", "to": "Samsung Galaxy A15 4/128Gb Black (SM-A155FZKDEUC)", "width": 1}, {"from": "GPS\nBeidou\nGalileo\nQZSS\n\u0413\u041b\u041e\u041d\u0410\u0421\u0421", "label": "\u041d\u0430\u0432\u0456\u0433\u0430\u0446\u0456\u0439\u043d\u0430 \u0441\u0438\u0441\u0442\u0435\u043c\u0430", "title": "\u041d\u0430\u0432\u0456\u0433\u0430\u0446\u0456\u0439\u043d\u0430 \u0441\u0438\u0441\u0442\u0435\u043c\u0430", "to": "Apple iPhone 13 128Gb Pink", "width": 1}, {"from": "GPS\nBeidou\nGalileo\nQZSS\n\u0413\u041b\u041e\u041d\u0410\u0421\u0421", "label": "\u041d\u0430\u0432\u0456\u0433\u0430\u0446\u0456\u0439\u043d\u0430 \u0441\u0438\u0441\u0442\u0435\u043c\u0430", "title": "\u041d\u0430\u0432\u0456\u0433\u0430\u0446\u0456\u0439\u043d\u0430 \u0441\u0438\u0441\u0442\u0435\u043c\u0430", "to": "Apple iPhone 15 128Gb Black", "width": 1}, {"from": "GPS\nBeidou\nGalileo\nQZSS\n\u0413\u041b\u041e\u041d\u0410\u0421\u0421", "label": "\u041d\u0430\u0432\u0456\u0433\u0430\u0446\u0456\u0439\u043d\u0430 \u0441\u0438\u0441\u0442\u0435\u043c\u0430", "title": "\u041d\u0430\u0432\u0456\u0433\u0430\u0446\u0456\u0439\u043d\u0430 \u0441\u0438\u0441\u0442\u0435\u043c\u0430", "to": "Apple iPhone 13 128Gb Starlight", "width": 1}, {"from": "GPS\nBeidou\nGalileo\nQZSS\n\u0413\u041b\u041e\u041d\u0410\u0421\u0421", "label": "\u041d\u0430\u0432\u0456\u0433\u0430\u0446\u0456\u0439\u043d\u0430 \u0441\u0438\u0441\u0442\u0435\u043c\u0430", "title": "\u041d\u0430\u0432\u0456\u0433\u0430\u0446\u0456\u0439\u043d\u0430 \u0441\u0438\u0441\u0442\u0435\u043c\u0430", "to": "Samsung Galaxy A25 5G 6/128Gb Black (SM-A256BZKDEUC)", "width": 1}, {"from": "GPS\nBeidou\nGalileo\nQZSS\n\u0413\u041b\u041e\u041d\u0410\u0421\u0421", "label": "\u041d\u0430\u0432\u0456\u0433\u0430\u0446\u0456\u0439\u043d\u0430 \u0441\u0438\u0441\u0442\u0435\u043c\u0430", "title": "\u041d\u0430\u0432\u0456\u0433\u0430\u0446\u0456\u0439\u043d\u0430 \u0441\u0438\u0441\u0442\u0435\u043c\u0430", "to": "Apple iPhone 13 128Gb Midnight", "width": 1}, {"from": "\u0422\u0430\u043a", "label": "NFC", "title": "NFC", "to": "Samsung Galaxy A55 5G 8/256Gb Awesome Navy (SM-A556BZKCEUC)", "width": 1}, {"from": "\u0422\u0430\u043a", "label": "NFC", "title": "NFC", "to": "Samsung Galaxy A35 5G 8/256Gb Awesome Lilac (SM-A356BLVGEUC)", "width": 1}, {"from": "\u0422\u0430\u043a", "label": "NFC", "title": "NFC", "to": "Apple iPhone 15 Pro Max 256Gb Blue Titanium", "width": 1}, {"from": "\u0422\u0430\u043a", "label": "NFC", "title": "NFC", "to": "Apple iPhone 13 128Gb Green", "width": 1}, {"from": "\u0422\u0430\u043a", "label": "NFC", "title": "NFC", "to": "Samsung Galaxy S23FE 8/256Gb Graphite (SM-S711BZAGSEK)", "width": 1}, {"from": "\u0422\u0430\u043a", "label": "NFC", "title": "NFC", "to": "Samsung Galaxy S23 8/256Gb Black (SM-S911BZKGSEK)", "width": 1}, {"from": "\u0422\u0430\u043a", "label": "NFC", "title": "NFC", "to": "Apple iPhone 13 128Gb Blue", "width": 1}, {"from": "\u0422\u0430\u043a", "label": "\u0420\u043e\u0437\u0027\u0454\u043c 3,5 \u043c\u043c", "title": "\u0420\u043e\u0437\u0027\u0454\u043c 3,5 \u043c\u043c", "to": "Samsung Galaxy A15 4/128Gb Black (SM-A155FZKDEUC)", "width": 1}, {"from": "\u0422\u0430\u043a", "label": "NFC", "title": "NFC", "to": "Samsung Galaxy S24+ 12/512Gb Onyx Black (SM-S926BZKGEUC)", "width": 1}, {"from": "\u0422\u0430\u043a", "label": "NFC", "title": "NFC", "to": "Apple iPhone 13 128Gb Pink", "width": 1}, {"from": "\u0422\u0430\u043a", "label": "NFC", "title": "NFC", "to": "Apple iPhone 15 Pro 128Gb Blue Titanium", "width": 1}, {"from": "\u0422\u0430\u043a", "label": "NFC", "title": "NFC", "to": "Samsung Galaxy S24 Ultra 12/256Gb Titanium Gray (SM-S928BZTGEUC)", "width": 1}, {"from": "\u0422\u0430\u043a", "label": "NFC", "title": "NFC", "to": "Apple iPhone 15 128Gb Black", "width": 1}, {"from": "\u0422\u0430\u043a", "label": "NFC", "title": "NFC", "to": "Samsung Galaxy S24 8/256Gb Onyx Black (SM-S921BZKGEUC)", "width": 1}, {"from": "\u0422\u0430\u043a", "label": "NFC", "title": "NFC", "to": "Apple iPhone 13 128Gb Starlight", "width": 1}, {"from": "\u0422\u0430\u043a", "label": "NFC", "title": "NFC", "to": "Samsung Galaxy A35 5G 6/128Gb Awesome Navy (SM-A356BZKBEUC)", "width": 1}, {"from": "\u0422\u0430\u043a", "label": "NFC", "title": "NFC", "to": "Apple iPhone 15 Pro 128Gb Natural Titanium", "width": 1}, {"from": "\u0422\u0430\u043a", "label": "\u0420\u043e\u0437\u0027\u0454\u043c 3,5 \u043c\u043c", "title": "\u0420\u043e\u0437\u0027\u0454\u043c 3,5 \u043c\u043c", "to": "Samsung Galaxy A25 5G 6/128Gb Black (SM-A256BZKDEUC)", "width": 1}, {"from": "\u0422\u0430\u043a", "label": "NFC", "title": "NFC", "to": "Apple iPhone 13 128Gb Midnight", "width": 1}, {"from": "USB Type-C", "label": "\u0406\u043d\u0442\u0435\u0440\u0444\u0435\u0439\u0441 USB", "title": "\u0406\u043d\u0442\u0435\u0440\u0444\u0435\u0439\u0441 USB", "to": "Samsung Galaxy A55 5G 8/256Gb Awesome Navy (SM-A556BZKCEUC)", "width": 1}, {"from": "USB Type-C", "label": "\u0406\u043d\u0442\u0435\u0440\u0444\u0435\u0439\u0441 USB", "title": "\u0406\u043d\u0442\u0435\u0440\u0444\u0435\u0439\u0441 USB", "to": "Samsung Galaxy A35 5G 8/256Gb Awesome Lilac (SM-A356BLVGEUC)", "width": 1}, {"from": "USB Type-C", "label": "\u0406\u043d\u0442\u0435\u0440\u0444\u0435\u0439\u0441 USB", "title": "\u0406\u043d\u0442\u0435\u0440\u0444\u0435\u0439\u0441 USB", "to": "Apple iPhone 15 Pro Max 256Gb Blue Titanium", "width": 1}, {"from": "USB Type-C", "label": "\u0406\u043d\u0442\u0435\u0440\u0444\u0435\u0439\u0441 USB", "title": "\u0406\u043d\u0442\u0435\u0440\u0444\u0435\u0439\u0441 USB", "to": "Samsung Galaxy S23FE 8/256Gb Graphite (SM-S711BZAGSEK)", "width": 1}, {"from": "USB Type-C", "label": "\u0406\u043d\u0442\u0435\u0440\u0444\u0435\u0439\u0441 USB", "title": "\u0406\u043d\u0442\u0435\u0440\u0444\u0435\u0439\u0441 USB", "to": "Samsung Galaxy S23 8/256Gb Black (SM-S911BZKGSEK)", "width": 1}, {"from": "USB Type-C", "label": "\u0406\u043d\u0442\u0435\u0440\u0444\u0435\u0439\u0441 USB", "title": "\u0406\u043d\u0442\u0435\u0440\u0444\u0435\u0439\u0441 USB", "to": "Samsung Galaxy A15 4/128Gb Black (SM-A155FZKDEUC)", "width": 1}, {"from": "USB Type-C", "label": "\u0406\u043d\u0442\u0435\u0440\u0444\u0435\u0439\u0441 USB", "title": "\u0406\u043d\u0442\u0435\u0440\u0444\u0435\u0439\u0441 USB", "to": "Samsung Galaxy S24+ 12/512Gb Onyx Black (SM-S926BZKGEUC)", "width": 1}, {"from": "USB Type-C", "label": "\u0406\u043d\u0442\u0435\u0440\u0444\u0435\u0439\u0441 USB", "title": "\u0406\u043d\u0442\u0435\u0440\u0444\u0435\u0439\u0441 USB", "to": "Apple iPhone 15 Pro 128Gb Blue Titanium", "width": 1}, {"from": "USB Type-C", "label": "\u0406\u043d\u0442\u0435\u0440\u0444\u0435\u0439\u0441 USB", "title": "\u0406\u043d\u0442\u0435\u0440\u0444\u0435\u0439\u0441 USB", "to": "Samsung Galaxy S24 Ultra 12/256Gb Titanium Gray (SM-S928BZTGEUC)", "width": 1}, {"from": "USB Type-C", "label": "\u0406\u043d\u0442\u0435\u0440\u0444\u0435\u0439\u0441 USB", "title": "\u0406\u043d\u0442\u0435\u0440\u0444\u0435\u0439\u0441 USB", "to": "Apple iPhone 15 128Gb Black", "width": 1}, {"from": "USB Type-C", "label": "\u0406\u043d\u0442\u0435\u0440\u0444\u0435\u0439\u0441 USB", "title": "\u0406\u043d\u0442\u0435\u0440\u0444\u0435\u0439\u0441 USB", "to": "Samsung Galaxy S24 8/256Gb Onyx Black (SM-S921BZKGEUC)", "width": 1}, {"from": "USB Type-C", "label": "\u0406\u043d\u0442\u0435\u0440\u0444\u0435\u0439\u0441 USB", "title": "\u0406\u043d\u0442\u0435\u0440\u0444\u0435\u0439\u0441 USB", "to": "Samsung Galaxy A35 5G 6/128Gb Awesome Navy (SM-A356BZKBEUC)", "width": 1}, {"from": "USB Type-C", "label": "\u0406\u043d\u0442\u0435\u0440\u0444\u0435\u0439\u0441 USB", "title": "\u0406\u043d\u0442\u0435\u0440\u0444\u0435\u0439\u0441 USB", "to": "Apple iPhone 15 Pro 128Gb Natural Titanium", "width": 1}, {"from": "USB Type-C", "label": "\u0406\u043d\u0442\u0435\u0440\u0444\u0435\u0439\u0441 USB", "title": "\u0406\u043d\u0442\u0435\u0440\u0444\u0435\u0439\u0441 USB", "to": "Samsung Galaxy A25 5G 6/128Gb Black (SM-A256BZKDEUC)", "width": 1}, {"from": "20 \u0412\u0442", "label": "\u041f\u043e\u0442\u0443\u0436\u043d\u0456\u0441\u0442\u044c \u0437\u0430\u0440\u044f\u0434\u043a\u0438", "title": "\u041f\u043e\u0442\u0443\u0436\u043d\u0456\u0441\u0442\u044c \u0437\u0430\u0440\u044f\u0434\u043a\u0438", "to": "Apple iPhone 15 Pro Max 256Gb Blue Titanium", "width": 1}, {"from": "20 \u0412\u0442", "label": "\u041f\u043e\u0442\u0443\u0436\u043d\u0456\u0441\u0442\u044c \u0437\u0430\u0440\u044f\u0434\u043a\u0438", "title": "\u041f\u043e\u0442\u0443\u0436\u043d\u0456\u0441\u0442\u044c \u0437\u0430\u0440\u044f\u0434\u043a\u0438", "to": "Apple iPhone 13 128Gb Green", "width": 1}, {"from": "20 \u0412\u0442", "label": "\u041f\u043e\u0442\u0443\u0436\u043d\u0456\u0441\u0442\u044c \u0437\u0430\u0440\u044f\u0434\u043a\u0438", "title": "\u041f\u043e\u0442\u0443\u0436\u043d\u0456\u0441\u0442\u044c \u0437\u0430\u0440\u044f\u0434\u043a\u0438", "to": "Apple iPhone 13 128Gb Blue", "width": 1}, {"from": "20 \u0412\u0442", "label": "\u041f\u043e\u0442\u0443\u0436\u043d\u0456\u0441\u0442\u044c \u0437\u0430\u0440\u044f\u0434\u043a\u0438", "title": "\u041f\u043e\u0442\u0443\u0436\u043d\u0456\u0441\u0442\u044c \u0437\u0430\u0440\u044f\u0434\u043a\u0438", "to": "Apple iPhone 13 128Gb Pink", "width": 1}, {"from": "20 \u0412\u0442", "label": "\u041f\u043e\u0442\u0443\u0436\u043d\u0456\u0441\u0442\u044c \u0437\u0430\u0440\u044f\u0434\u043a\u0438", "title": "\u041f\u043e\u0442\u0443\u0436\u043d\u0456\u0441\u0442\u044c \u0437\u0430\u0440\u044f\u0434\u043a\u0438", "to": "Apple iPhone 15 Pro 128Gb Blue Titanium", "width": 1}, {"from": "20 \u0412\u0442", "label": "\u041f\u043e\u0442\u0443\u0436\u043d\u0456\u0441\u0442\u044c \u0437\u0430\u0440\u044f\u0434\u043a\u0438", "title": "\u041f\u043e\u0442\u0443\u0436\u043d\u0456\u0441\u0442\u044c \u0437\u0430\u0440\u044f\u0434\u043a\u0438", "to": "Apple iPhone 15 128Gb Black", "width": 1}, {"from": "20 \u0412\u0442", "label": "\u041f\u043e\u0442\u0443\u0436\u043d\u0456\u0441\u0442\u044c \u0437\u0430\u0440\u044f\u0434\u043a\u0438", "title": "\u041f\u043e\u0442\u0443\u0436\u043d\u0456\u0441\u0442\u044c \u0437\u0430\u0440\u044f\u0434\u043a\u0438", "to": "Apple iPhone 13 128Gb Starlight", "width": 1}, {"from": "20 \u0412\u0442", "label": "\u041f\u043e\u0442\u0443\u0436\u043d\u0456\u0441\u0442\u044c \u0437\u0430\u0440\u044f\u0434\u043a\u0438", "title": "\u041f\u043e\u0442\u0443\u0436\u043d\u0456\u0441\u0442\u044c \u0437\u0430\u0440\u044f\u0434\u043a\u0438", "to": "Apple iPhone 15 Pro 128Gb Natural Titanium", "width": 1}, {"from": "20 \u0412\u0442", "label": "\u041f\u043e\u0442\u0443\u0436\u043d\u0456\u0441\u0442\u044c \u0437\u0430\u0440\u044f\u0434\u043a\u0438", "title": "\u041f\u043e\u0442\u0443\u0436\u043d\u0456\u0441\u0442\u044c \u0437\u0430\u0440\u044f\u0434\u043a\u0438", "to": "Apple iPhone 13 128Gb Midnight", "width": 1}, {"from": "\u0417\u0430\u0445\u0438\u0441\u0442 \u0432\u0456\u0434 \u043f\u0438\u043b\u0443 \u0442\u0430 \u0432\u043e\u043b\u043e\u0433\u0438", "label": "\u0417\u0430\u0445\u0438\u0441\u0442 \u043a\u043e\u0440\u043f\u0443\u0441\u0443", "title": "\u0417\u0430\u0445\u0438\u0441\u0442 \u043a\u043e\u0440\u043f\u0443\u0441\u0443", "to": "Samsung Galaxy A35 5G 8/256Gb Awesome Lilac (SM-A356BLVGEUC)", "width": 1}, {"from": "\u0417\u0430\u0445\u0438\u0441\u0442 \u0432\u0456\u0434 \u043f\u0438\u043b\u0443 \u0442\u0430 \u0432\u043e\u043b\u043e\u0433\u0438", "label": "\u0417\u0430\u0445\u0438\u0441\u0442 \u043a\u043e\u0440\u043f\u0443\u0441\u0443", "title": "\u0417\u0430\u0445\u0438\u0441\u0442 \u043a\u043e\u0440\u043f\u0443\u0441\u0443", "to": "Apple iPhone 15 Pro Max 256Gb Blue Titanium", "width": 1}, {"from": "\u0417\u0430\u0445\u0438\u0441\u0442 \u0432\u0456\u0434 \u043f\u0438\u043b\u0443 \u0442\u0430 \u0432\u043e\u043b\u043e\u0433\u0438", "label": "\u0417\u0430\u0445\u0438\u0441\u0442 \u043a\u043e\u0440\u043f\u0443\u0441\u0443", "title": "\u0417\u0430\u0445\u0438\u0441\u0442 \u043a\u043e\u0440\u043f\u0443\u0441\u0443", "to": "Apple iPhone 13 128Gb Green", "width": 1}, {"from": "\u0417\u0430\u0445\u0438\u0441\u0442 \u0432\u0456\u0434 \u043f\u0438\u043b\u0443 \u0442\u0430 \u0432\u043e\u043b\u043e\u0433\u0438", "label": "\u0417\u0430\u0445\u0438\u0441\u0442 \u043a\u043e\u0440\u043f\u0443\u0441\u0443", "title": "\u0417\u0430\u0445\u0438\u0441\u0442 \u043a\u043e\u0440\u043f\u0443\u0441\u0443", "to": "Samsung Galaxy S23FE 8/256Gb Graphite (SM-S711BZAGSEK)", "width": 1}, {"from": "\u0417\u0430\u0445\u0438\u0441\u0442 \u0432\u0456\u0434 \u043f\u0438\u043b\u0443 \u0442\u0430 \u0432\u043e\u043b\u043e\u0433\u0438", "label": "\u0417\u0430\u0445\u0438\u0441\u0442 \u043a\u043e\u0440\u043f\u0443\u0441\u0443", "title": "\u0417\u0430\u0445\u0438\u0441\u0442 \u043a\u043e\u0440\u043f\u0443\u0441\u0443", "to": "Samsung Galaxy S23 8/256Gb Black (SM-S911BZKGSEK)", "width": 1}, {"from": "\u0417\u0430\u0445\u0438\u0441\u0442 \u0432\u0456\u0434 \u043f\u0438\u043b\u0443 \u0442\u0430 \u0432\u043e\u043b\u043e\u0433\u0438", "label": "\u0417\u0430\u0445\u0438\u0441\u0442 \u043a\u043e\u0440\u043f\u0443\u0441\u0443", "title": "\u0417\u0430\u0445\u0438\u0441\u0442 \u043a\u043e\u0440\u043f\u0443\u0441\u0443", "to": "Apple iPhone 13 128Gb Blue", "width": 1}, {"from": "\u0417\u0430\u0445\u0438\u0441\u0442 \u0432\u0456\u0434 \u043f\u0438\u043b\u0443 \u0442\u0430 \u0432\u043e\u043b\u043e\u0433\u0438", "label": "\u0417\u0430\u0445\u0438\u0441\u0442 \u043a\u043e\u0440\u043f\u0443\u0441\u0443", "title": "\u0417\u0430\u0445\u0438\u0441\u0442 \u043a\u043e\u0440\u043f\u0443\u0441\u0443", "to": "Samsung Galaxy S24+ 12/512Gb Onyx Black (SM-S926BZKGEUC)", "width": 1}, {"from": "\u0417\u0430\u0445\u0438\u0441\u0442 \u0432\u0456\u0434 \u043f\u0438\u043b\u0443 \u0442\u0430 \u0432\u043e\u043b\u043e\u0433\u0438", "label": "\u0417\u0430\u0445\u0438\u0441\u0442 \u043a\u043e\u0440\u043f\u0443\u0441\u0443", "title": "\u0417\u0430\u0445\u0438\u0441\u0442 \u043a\u043e\u0440\u043f\u0443\u0441\u0443", "to": "Apple iPhone 13 128Gb Pink", "width": 1}, {"from": "\u0417\u0430\u0445\u0438\u0441\u0442 \u0432\u0456\u0434 \u043f\u0438\u043b\u0443 \u0442\u0430 \u0432\u043e\u043b\u043e\u0433\u0438", "label": "\u0417\u0430\u0445\u0438\u0441\u0442 \u043a\u043e\u0440\u043f\u0443\u0441\u0443", "title": "\u0417\u0430\u0445\u0438\u0441\u0442 \u043a\u043e\u0440\u043f\u0443\u0441\u0443", "to": "Apple iPhone 15 Pro 128Gb Blue Titanium", "width": 1}, {"from": "\u0417\u0430\u0445\u0438\u0441\u0442 \u0432\u0456\u0434 \u043f\u0438\u043b\u0443 \u0442\u0430 \u0432\u043e\u043b\u043e\u0433\u0438", "label": "\u0417\u0430\u0445\u0438\u0441\u0442 \u043a\u043e\u0440\u043f\u0443\u0441\u0443", "title": "\u0417\u0430\u0445\u0438\u0441\u0442 \u043a\u043e\u0440\u043f\u0443\u0441\u0443", "to": "Samsung Galaxy S24 Ultra 12/256Gb Titanium Gray (SM-S928BZTGEUC)", "width": 1}, {"from": "\u0417\u0430\u0445\u0438\u0441\u0442 \u0432\u0456\u0434 \u043f\u0438\u043b\u0443 \u0442\u0430 \u0432\u043e\u043b\u043e\u0433\u0438", "label": "\u0417\u0430\u0445\u0438\u0441\u0442 \u043a\u043e\u0440\u043f\u0443\u0441\u0443", "title": "\u0417\u0430\u0445\u0438\u0441\u0442 \u043a\u043e\u0440\u043f\u0443\u0441\u0443", "to": "Apple iPhone 15 128Gb Black", "width": 1}, {"from": "\u0417\u0430\u0445\u0438\u0441\u0442 \u0432\u0456\u0434 \u043f\u0438\u043b\u0443 \u0442\u0430 \u0432\u043e\u043b\u043e\u0433\u0438", "label": "\u0417\u0430\u0445\u0438\u0441\u0442 \u043a\u043e\u0440\u043f\u0443\u0441\u0443", "title": "\u0417\u0430\u0445\u0438\u0441\u0442 \u043a\u043e\u0440\u043f\u0443\u0441\u0443", "to": "Samsung Galaxy S24 8/256Gb Onyx Black (SM-S921BZKGEUC)", "width": 1}, {"from": "\u0417\u0430\u0445\u0438\u0441\u0442 \u0432\u0456\u0434 \u043f\u0438\u043b\u0443 \u0442\u0430 \u0432\u043e\u043b\u043e\u0433\u0438", "label": "\u0417\u0430\u0445\u0438\u0441\u0442 \u043a\u043e\u0440\u043f\u0443\u0441\u0443", "title": "\u0417\u0430\u0445\u0438\u0441\u0442 \u043a\u043e\u0440\u043f\u0443\u0441\u0443", "to": "Apple iPhone 13 128Gb Starlight", "width": 1}, {"from": "\u0417\u0430\u0445\u0438\u0441\u0442 \u0432\u0456\u0434 \u043f\u0438\u043b\u0443 \u0442\u0430 \u0432\u043e\u043b\u043e\u0433\u0438", "label": "\u0417\u0430\u0445\u0438\u0441\u0442 \u043a\u043e\u0440\u043f\u0443\u0441\u0443", "title": "\u0417\u0430\u0445\u0438\u0441\u0442 \u043a\u043e\u0440\u043f\u0443\u0441\u0443", "to": "Samsung Galaxy A35 5G 6/128Gb Awesome Navy (SM-A356BZKBEUC)", "width": 1}, {"from": "\u0417\u0430\u0445\u0438\u0441\u0442 \u0432\u0456\u0434 \u043f\u0438\u043b\u0443 \u0442\u0430 \u0432\u043e\u043b\u043e\u0433\u0438", "label": "\u0417\u0430\u0445\u0438\u0441\u0442 \u043a\u043e\u0440\u043f\u0443\u0441\u0443", "title": "\u0417\u0430\u0445\u0438\u0441\u0442 \u043a\u043e\u0440\u043f\u0443\u0441\u0443", "to": "Apple iPhone 15 Pro 128Gb Natural Titanium", "width": 1}, {"from": "\u0417\u0430\u0445\u0438\u0441\u0442 \u0432\u0456\u0434 \u043f\u0438\u043b\u0443 \u0442\u0430 \u0432\u043e\u043b\u043e\u0433\u0438", "label": "\u0417\u0430\u0445\u0438\u0441\u0442 \u043a\u043e\u0440\u043f\u0443\u0441\u0443", "title": "\u0417\u0430\u0445\u0438\u0441\u0442 \u043a\u043e\u0440\u043f\u0443\u0441\u0443", "to": "Apple iPhone 13 128Gb Midnight", "width": 1}, {"from": "IP68", "label": "\u041a\u043b\u0430\u0441 \u0437\u0430\u0445\u0438\u0441\u0442\u0443", "title": "\u041a\u043b\u0430\u0441 \u0437\u0430\u0445\u0438\u0441\u0442\u0443", "to": "Apple iPhone 15 Pro Max 256Gb Blue Titanium", "width": 1}, {"from": "IP68", "label": "\u041a\u043b\u0430\u0441 \u0437\u0430\u0445\u0438\u0441\u0442\u0443", "title": "\u041a\u043b\u0430\u0441 \u0437\u0430\u0445\u0438\u0441\u0442\u0443", "to": "Apple iPhone 13 128Gb Green", "width": 1}, {"from": "IP68", "label": "\u041a\u043b\u0430\u0441 \u0437\u0430\u0445\u0438\u0441\u0442\u0443", "title": "\u041a\u043b\u0430\u0441 \u0437\u0430\u0445\u0438\u0441\u0442\u0443", "to": "Samsung Galaxy S23FE 8/256Gb Graphite (SM-S711BZAGSEK)", "width": 1}, {"from": "IP68", "label": "\u041a\u043b\u0430\u0441 \u0437\u0430\u0445\u0438\u0441\u0442\u0443", "title": "\u041a\u043b\u0430\u0441 \u0437\u0430\u0445\u0438\u0441\u0442\u0443", "to": "Samsung Galaxy S23 8/256Gb Black (SM-S911BZKGSEK)", "width": 1}, {"from": "IP68", "label": "\u041a\u043b\u0430\u0441 \u0437\u0430\u0445\u0438\u0441\u0442\u0443", "title": "\u041a\u043b\u0430\u0441 \u0437\u0430\u0445\u0438\u0441\u0442\u0443", "to": "Apple iPhone 13 128Gb Blue", "width": 1}, {"from": "IP68", "label": "\u041a\u043b\u0430\u0441 \u0437\u0430\u0445\u0438\u0441\u0442\u0443", "title": "\u041a\u043b\u0430\u0441 \u0437\u0430\u0445\u0438\u0441\u0442\u0443", "to": "Samsung Galaxy S24+ 12/512Gb Onyx Black (SM-S926BZKGEUC)", "width": 1}, {"from": "IP68", "label": "\u041a\u043b\u0430\u0441 \u0437\u0430\u0445\u0438\u0441\u0442\u0443", "title": "\u041a\u043b\u0430\u0441 \u0437\u0430\u0445\u0438\u0441\u0442\u0443", "to": "Apple iPhone 13 128Gb Pink", "width": 1}, {"from": "IP68", "label": "\u041a\u043b\u0430\u0441 \u0437\u0430\u0445\u0438\u0441\u0442\u0443", "title": "\u041a\u043b\u0430\u0441 \u0437\u0430\u0445\u0438\u0441\u0442\u0443", "to": "Apple iPhone 15 Pro 128Gb Blue Titanium", "width": 1}, {"from": "IP68", "label": "\u041a\u043b\u0430\u0441 \u0437\u0430\u0445\u0438\u0441\u0442\u0443", "title": "\u041a\u043b\u0430\u0441 \u0437\u0430\u0445\u0438\u0441\u0442\u0443", "to": "Samsung Galaxy S24 Ultra 12/256Gb Titanium Gray (SM-S928BZTGEUC)", "width": 1}, {"from": "IP68", "label": "\u041a\u043b\u0430\u0441 \u0437\u0430\u0445\u0438\u0441\u0442\u0443", "title": "\u041a\u043b\u0430\u0441 \u0437\u0430\u0445\u0438\u0441\u0442\u0443", "to": "Apple iPhone 15 128Gb Black", "width": 1}, {"from": "IP68", "label": "\u041a\u043b\u0430\u0441 \u0437\u0430\u0445\u0438\u0441\u0442\u0443", "title": "\u041a\u043b\u0430\u0441 \u0437\u0430\u0445\u0438\u0441\u0442\u0443", "to": "Samsung Galaxy S24 8/256Gb Onyx Black (SM-S921BZKGEUC)", "width": 1}, {"from": "IP68", "label": "\u041a\u043b\u0430\u0441 \u0437\u0430\u0445\u0438\u0441\u0442\u0443", "title": "\u041a\u043b\u0430\u0441 \u0437\u0430\u0445\u0438\u0441\u0442\u0443", "to": "Apple iPhone 13 128Gb Starlight", "width": 1}, {"from": "IP68", "label": "\u041a\u043b\u0430\u0441 \u0437\u0430\u0445\u0438\u0441\u0442\u0443", "title": "\u041a\u043b\u0430\u0441 \u0437\u0430\u0445\u0438\u0441\u0442\u0443", "to": "Apple iPhone 15 Pro 128Gb Natural Titanium", "width": 1}, {"from": "IP68", "label": "\u041a\u043b\u0430\u0441 \u0437\u0430\u0445\u0438\u0441\u0442\u0443", "title": "\u041a\u043b\u0430\u0441 \u0437\u0430\u0445\u0438\u0441\u0442\u0443", "to": "Apple iPhone 13 128Gb Midnight", "width": 1}, {"from": "\u0420\u043e\u0437\u043f\u0456\u0437\u043d\u0430\u0432\u0430\u043d\u043d\u044f \u043e\u0431\u043b\u0438\u0447\u0447\u044f", "label": "\u0411\u0456\u043e\u043c\u0435\u0442\u0440\u0438\u0447\u043d\u0438\u0439 \u0437\u0430\u0445\u0438\u0441\u0442", "title": "\u0411\u0456\u043e\u043c\u0435\u0442\u0440\u0438\u0447\u043d\u0438\u0439 \u0437\u0430\u0445\u0438\u0441\u0442", "to": "Apple iPhone 15 Pro Max 256Gb Blue Titanium", "width": 1}, {"from": "\u0420\u043e\u0437\u043f\u0456\u0437\u043d\u0430\u0432\u0430\u043d\u043d\u044f \u043e\u0431\u043b\u0438\u0447\u0447\u044f", "label": "\u0411\u0456\u043e\u043c\u0435\u0442\u0440\u0438\u0447\u043d\u0438\u0439 \u0437\u0430\u0445\u0438\u0441\u0442", "title": "\u0411\u0456\u043e\u043c\u0435\u0442\u0440\u0438\u0447\u043d\u0438\u0439 \u0437\u0430\u0445\u0438\u0441\u0442", "to": "Apple iPhone 13 128Gb Green", "width": 1}, {"from": "\u0420\u043e\u0437\u043f\u0456\u0437\u043d\u0430\u0432\u0430\u043d\u043d\u044f \u043e\u0431\u043b\u0438\u0447\u0447\u044f", "label": "\u0411\u0456\u043e\u043c\u0435\u0442\u0440\u0438\u0447\u043d\u0438\u0439 \u0437\u0430\u0445\u0438\u0441\u0442", "title": "\u0411\u0456\u043e\u043c\u0435\u0442\u0440\u0438\u0447\u043d\u0438\u0439 \u0437\u0430\u0445\u0438\u0441\u0442", "to": "Apple iPhone 13 128Gb Blue", "width": 1}, {"from": "\u0420\u043e\u0437\u043f\u0456\u0437\u043d\u0430\u0432\u0430\u043d\u043d\u044f \u043e\u0431\u043b\u0438\u0447\u0447\u044f", "label": "\u0411\u0456\u043e\u043c\u0435\u0442\u0440\u0438\u0447\u043d\u0438\u0439 \u0437\u0430\u0445\u0438\u0441\u0442", "title": "\u0411\u0456\u043e\u043c\u0435\u0442\u0440\u0438\u0447\u043d\u0438\u0439 \u0437\u0430\u0445\u0438\u0441\u0442", "to": "Apple iPhone 13 128Gb Pink", "width": 1}, {"from": "\u0420\u043e\u0437\u043f\u0456\u0437\u043d\u0430\u0432\u0430\u043d\u043d\u044f \u043e\u0431\u043b\u0438\u0447\u0447\u044f", "label": "\u0411\u0456\u043e\u043c\u0435\u0442\u0440\u0438\u0447\u043d\u0438\u0439 \u0437\u0430\u0445\u0438\u0441\u0442", "title": "\u0411\u0456\u043e\u043c\u0435\u0442\u0440\u0438\u0447\u043d\u0438\u0439 \u0437\u0430\u0445\u0438\u0441\u0442", "to": "Apple iPhone 15 Pro 128Gb Blue Titanium", "width": 1}, {"from": "\u0420\u043e\u0437\u043f\u0456\u0437\u043d\u0430\u0432\u0430\u043d\u043d\u044f \u043e\u0431\u043b\u0438\u0447\u0447\u044f", "label": "\u0411\u0456\u043e\u043c\u0435\u0442\u0440\u0438\u0447\u043d\u0438\u0439 \u0437\u0430\u0445\u0438\u0441\u0442", "title": "\u0411\u0456\u043e\u043c\u0435\u0442\u0440\u0438\u0447\u043d\u0438\u0439 \u0437\u0430\u0445\u0438\u0441\u0442", "to": "Apple iPhone 15 128Gb Black", "width": 1}, {"from": "\u0420\u043e\u0437\u043f\u0456\u0437\u043d\u0430\u0432\u0430\u043d\u043d\u044f \u043e\u0431\u043b\u0438\u0447\u0447\u044f", "label": "\u0411\u0456\u043e\u043c\u0435\u0442\u0440\u0438\u0447\u043d\u0438\u0439 \u0437\u0430\u0445\u0438\u0441\u0442", "title": "\u0411\u0456\u043e\u043c\u0435\u0442\u0440\u0438\u0447\u043d\u0438\u0439 \u0437\u0430\u0445\u0438\u0441\u0442", "to": "Apple iPhone 13 128Gb Starlight", "width": 1}, {"from": "\u0420\u043e\u0437\u043f\u0456\u0437\u043d\u0430\u0432\u0430\u043d\u043d\u044f \u043e\u0431\u043b\u0438\u0447\u0447\u044f", "label": "\u0411\u0456\u043e\u043c\u0435\u0442\u0440\u0438\u0447\u043d\u0438\u0439 \u0437\u0430\u0445\u0438\u0441\u0442", "title": "\u0411\u0456\u043e\u043c\u0435\u0442\u0440\u0438\u0447\u043d\u0438\u0439 \u0437\u0430\u0445\u0438\u0441\u0442", "to": "Apple iPhone 15 Pro 128Gb Natural Titanium", "width": 1}, {"from": "\u0420\u043e\u0437\u043f\u0456\u0437\u043d\u0430\u0432\u0430\u043d\u043d\u044f \u043e\u0431\u043b\u0438\u0447\u0447\u044f", "label": "\u0411\u0456\u043e\u043c\u0435\u0442\u0440\u0438\u0447\u043d\u0438\u0439 \u0437\u0430\u0445\u0438\u0441\u0442", "title": "\u0411\u0456\u043e\u043c\u0435\u0442\u0440\u0438\u0447\u043d\u0438\u0439 \u0437\u0430\u0445\u0438\u0441\u0442", "to": "Apple iPhone 13 128Gb Midnight", "width": 1}, {"from": "\u0421\u043c\u0430\u0440\u0442\u0444\u043e\u043d\n\u041a\u0430\u0431\u0435\u043b\u044c Type-C\n\u0406\u043d\u0441\u0442\u0440\u0443\u043a\u0446\u0456\u044f\n\u0413\u0430\u0440\u0430\u043d\u0442\u0456\u0439\u043d\u0438\u0439 \u0442\u0430\u043b\u043e\u043d", "label": "\u041a\u043e\u043c\u043f\u043b\u0435\u043a\u0442\u0430\u0446\u0456\u044f", "title": "\u041a\u043e\u043c\u043f\u043b\u0435\u043a\u0442\u0430\u0446\u0456\u044f", "to": "Samsung Galaxy A55 5G 8/256Gb Awesome Navy (SM-A556BZKCEUC)", "width": 1}, {"from": "\u0421\u043c\u0430\u0440\u0442\u0444\u043e\u043d\n\u041a\u0430\u0431\u0435\u043b\u044c Type-C\n\u0406\u043d\u0441\u0442\u0440\u0443\u043a\u0446\u0456\u044f\n\u0413\u0430\u0440\u0430\u043d\u0442\u0456\u0439\u043d\u0438\u0439 \u0442\u0430\u043b\u043e\u043d", "label": "\u041a\u043e\u043c\u043f\u043b\u0435\u043a\u0442\u0430\u0446\u0456\u044f", "title": "\u041a\u043e\u043c\u043f\u043b\u0435\u043a\u0442\u0430\u0446\u0456\u044f", "to": "Samsung Galaxy A35 5G 8/256Gb Awesome Lilac (SM-A356BLVGEUC)", "width": 1}, {"from": "\u0421\u043c\u0430\u0440\u0442\u0444\u043e\u043d\n\u041a\u0430\u0431\u0435\u043b\u044c Type-C\n\u0406\u043d\u0441\u0442\u0440\u0443\u043a\u0446\u0456\u044f\n\u0413\u0430\u0440\u0430\u043d\u0442\u0456\u0439\u043d\u0438\u0439 \u0442\u0430\u043b\u043e\u043d", "label": "\u041a\u043e\u043c\u043f\u043b\u0435\u043a\u0442\u0430\u0446\u0456\u044f", "title": "\u041a\u043e\u043c\u043f\u043b\u0435\u043a\u0442\u0430\u0446\u0456\u044f", "to": "Apple iPhone 15 Pro Max 256Gb Blue Titanium", "width": 1}, {"from": "\u0421\u043c\u0430\u0440\u0442\u0444\u043e\u043d\n\u041a\u0430\u0431\u0435\u043b\u044c Type-C\n\u0406\u043d\u0441\u0442\u0440\u0443\u043a\u0446\u0456\u044f\n\u0413\u0430\u0440\u0430\u043d\u0442\u0456\u0439\u043d\u0438\u0439 \u0442\u0430\u043b\u043e\u043d", "label": "\u041a\u043e\u043c\u043f\u043b\u0435\u043a\u0442\u0430\u0446\u0456\u044f", "title": "\u041a\u043e\u043c\u043f\u043b\u0435\u043a\u0442\u0430\u0446\u0456\u044f", "to": "Samsung Galaxy S23FE 8/256Gb Graphite (SM-S711BZAGSEK)", "width": 1}, {"from": "\u0421\u043c\u0430\u0440\u0442\u0444\u043e\u043d\n\u041a\u0430\u0431\u0435\u043b\u044c Type-C\n\u0406\u043d\u0441\u0442\u0440\u0443\u043a\u0446\u0456\u044f\n\u0413\u0430\u0440\u0430\u043d\u0442\u0456\u0439\u043d\u0438\u0439 \u0442\u0430\u043b\u043e\u043d", "label": "\u041a\u043e\u043c\u043f\u043b\u0435\u043a\u0442\u0430\u0446\u0456\u044f", "title": "\u041a\u043e\u043c\u043f\u043b\u0435\u043a\u0442\u0430\u0446\u0456\u044f", "to": "Samsung Galaxy S23 8/256Gb Black (SM-S911BZKGSEK)", "width": 1}, {"from": "\u0421\u043c\u0430\u0440\u0442\u0444\u043e\u043d\n\u041a\u0430\u0431\u0435\u043b\u044c Type-C\n\u0406\u043d\u0441\u0442\u0440\u0443\u043a\u0446\u0456\u044f\n\u0413\u0430\u0440\u0430\u043d\u0442\u0456\u0439\u043d\u0438\u0439 \u0442\u0430\u043b\u043e\u043d", "label": "\u041a\u043e\u043c\u043f\u043b\u0435\u043a\u0442\u0430\u0446\u0456\u044f", "title": "\u041a\u043e\u043c\u043f\u043b\u0435\u043a\u0442\u0430\u0446\u0456\u044f", "to": "Samsung Galaxy A15 4/128Gb Black (SM-A155FZKDEUC)", "width": 1}, {"from": "\u0421\u043c\u0430\u0440\u0442\u0444\u043e\u043d\n\u041a\u0430\u0431\u0435\u043b\u044c Type-C\n\u0406\u043d\u0441\u0442\u0440\u0443\u043a\u0446\u0456\u044f\n\u0413\u0430\u0440\u0430\u043d\u0442\u0456\u0439\u043d\u0438\u0439 \u0442\u0430\u043b\u043e\u043d", "label": "\u041a\u043e\u043c\u043f\u043b\u0435\u043a\u0442\u0430\u0446\u0456\u044f", "title": "\u041a\u043e\u043c\u043f\u043b\u0435\u043a\u0442\u0430\u0446\u0456\u044f", "to": "Samsung Galaxy S24+ 12/512Gb Onyx Black (SM-S926BZKGEUC)", "width": 1}, {"from": "\u0421\u043c\u0430\u0440\u0442\u0444\u043e\u043d\n\u041a\u0430\u0431\u0435\u043b\u044c Type-C\n\u0406\u043d\u0441\u0442\u0440\u0443\u043a\u0446\u0456\u044f\n\u0413\u0430\u0440\u0430\u043d\u0442\u0456\u0439\u043d\u0438\u0439 \u0442\u0430\u043b\u043e\u043d", "label": "\u041a\u043e\u043c\u043f\u043b\u0435\u043a\u0442\u0430\u0446\u0456\u044f", "title": "\u041a\u043e\u043c\u043f\u043b\u0435\u043a\u0442\u0430\u0446\u0456\u044f", "to": "Apple iPhone 15 Pro 128Gb Blue Titanium", "width": 1}, {"from": "\u0421\u043c\u0430\u0440\u0442\u0444\u043e\u043d\n\u041a\u0430\u0431\u0435\u043b\u044c Type-C\n\u0406\u043d\u0441\u0442\u0440\u0443\u043a\u0446\u0456\u044f\n\u0413\u0430\u0440\u0430\u043d\u0442\u0456\u0439\u043d\u0438\u0439 \u0442\u0430\u043b\u043e\u043d", "label": "\u041a\u043e\u043c\u043f\u043b\u0435\u043a\u0442\u0430\u0446\u0456\u044f", "title": "\u041a\u043e\u043c\u043f\u043b\u0435\u043a\u0442\u0430\u0446\u0456\u044f", "to": "Apple iPhone 15 128Gb Black", "width": 1}, {"from": "\u0421\u043c\u0430\u0440\u0442\u0444\u043e\u043d\n\u041a\u0430\u0431\u0435\u043b\u044c Type-C\n\u0406\u043d\u0441\u0442\u0440\u0443\u043a\u0446\u0456\u044f\n\u0413\u0430\u0440\u0430\u043d\u0442\u0456\u0439\u043d\u0438\u0439 \u0442\u0430\u043b\u043e\u043d", "label": "\u041a\u043e\u043c\u043f\u043b\u0435\u043a\u0442\u0430\u0446\u0456\u044f", "title": "\u041a\u043e\u043c\u043f\u043b\u0435\u043a\u0442\u0430\u0446\u0456\u044f", "to": "Samsung Galaxy S24 8/256Gb Onyx Black (SM-S921BZKGEUC)", "width": 1}, {"from": "\u0421\u043c\u0430\u0440\u0442\u0444\u043e\u043d\n\u041a\u0430\u0431\u0435\u043b\u044c Type-C\n\u0406\u043d\u0441\u0442\u0440\u0443\u043a\u0446\u0456\u044f\n\u0413\u0430\u0440\u0430\u043d\u0442\u0456\u0439\u043d\u0438\u0439 \u0442\u0430\u043b\u043e\u043d", "label": "\u041a\u043e\u043c\u043f\u043b\u0435\u043a\u0442\u0430\u0446\u0456\u044f", "title": "\u041a\u043e\u043c\u043f\u043b\u0435\u043a\u0442\u0430\u0446\u0456\u044f", "to": "Samsung Galaxy A35 5G 6/128Gb Awesome Navy (SM-A356BZKBEUC)", "width": 1}, {"from": "\u0421\u043c\u0430\u0440\u0442\u0444\u043e\u043d\n\u041a\u0430\u0431\u0435\u043b\u044c Type-C\n\u0406\u043d\u0441\u0442\u0440\u0443\u043a\u0446\u0456\u044f\n\u0413\u0430\u0440\u0430\u043d\u0442\u0456\u0439\u043d\u0438\u0439 \u0442\u0430\u043b\u043e\u043d", "label": "\u041a\u043e\u043c\u043f\u043b\u0435\u043a\u0442\u0430\u0446\u0456\u044f", "title": "\u041a\u043e\u043c\u043f\u043b\u0435\u043a\u0442\u0430\u0446\u0456\u044f", "to": "Apple iPhone 15 Pro 128Gb Natural Titanium", "width": 1}, {"from": "\u0421\u043c\u0430\u0440\u0442\u0444\u043e\u043d\n\u041a\u0430\u0431\u0435\u043b\u044c Type-C\n\u0406\u043d\u0441\u0442\u0440\u0443\u043a\u0446\u0456\u044f\n\u0413\u0430\u0440\u0430\u043d\u0442\u0456\u0439\u043d\u0438\u0439 \u0442\u0430\u043b\u043e\u043d", "label": "\u041a\u043e\u043c\u043f\u043b\u0435\u043a\u0442\u0430\u0446\u0456\u044f", "title": "\u041a\u043e\u043c\u043f\u043b\u0435\u043a\u0442\u0430\u0446\u0456\u044f", "to": "Samsung Galaxy A25 5G 6/128Gb Black (SM-A256BZKDEUC)", "width": 1}, {"from": "\u0421\u043a\u043b\u043e\n\u0422\u0438\u0442\u0430\u043d", "label": "\u041c\u0430\u0442\u0435\u0440\u0456\u0430\u043b \u043a\u043e\u0440\u043f\u0443\u0441\u0443", "title": "\u041c\u0430\u0442\u0435\u0440\u0456\u0430\u043b \u043a\u043e\u0440\u043f\u0443\u0441\u0443", "to": "Apple iPhone 15 Pro Max 256Gb Blue Titanium", "width": 1}, {"from": "\u0421\u043a\u043b\u043e\n\u0422\u0438\u0442\u0430\u043d", "label": "\u041c\u0430\u0442\u0435\u0440\u0456\u0430\u043b \u043a\u043e\u0440\u043f\u0443\u0441\u0443", "title": "\u041c\u0430\u0442\u0435\u0440\u0456\u0430\u043b \u043a\u043e\u0440\u043f\u0443\u0441\u0443", "to": "Apple iPhone 15 Pro 128Gb Blue Titanium", "width": 1}, {"from": "\u0421\u043a\u043b\u043e\n\u0422\u0438\u0442\u0430\u043d", "label": "\u041c\u0430\u0442\u0435\u0440\u0456\u0430\u043b \u043a\u043e\u0440\u043f\u0443\u0441\u0443", "title": "\u041c\u0430\u0442\u0435\u0440\u0456\u0430\u043b \u043a\u043e\u0440\u043f\u0443\u0441\u0443", "to": "Apple iPhone 15 Pro 128Gb Natural Titanium", "width": 1}, {"from": "159,9 \u043c\u043c", "label": "\u0412\u0438\u0441\u043e\u0442\u0430", "title": "\u0412\u0438\u0441\u043e\u0442\u0430", "to": "Apple iPhone 15 Pro Max 256Gb Blue Titanium", "width": 1}, {"from": "76,7 \u043c\u043c", "label": "\u0428\u0438\u0440\u0438\u043d\u0430", "title": "\u0428\u0438\u0440\u0438\u043d\u0430", "to": "Apple iPhone 15 Pro Max 256Gb Blue Titanium", "width": 1}, {"from": "8,25 \u043c\u043c", "label": "\u0413\u043b\u0438\u0431\u0438\u043d\u0430", "title": "\u0413\u043b\u0438\u0431\u0438\u043d\u0430", "to": "Apple iPhone 15 Pro Max 256Gb Blue Titanium", "width": 1}, {"from": "8,25 \u043c\u043c", "label": "\u0413\u043b\u0438\u0431\u0438\u043d\u0430", "title": "\u0413\u043b\u0438\u0431\u0438\u043d\u0430", "to": "Apple iPhone 15 Pro 128Gb Blue Titanium", "width": 1}, {"from": "8,25 \u043c\u043c", "label": "\u0413\u043b\u0438\u0431\u0438\u043d\u0430", "title": "\u0413\u043b\u0438\u0431\u0438\u043d\u0430", "to": "Apple iPhone 15 Pro 128Gb Natural Titanium", "width": 1}, {"from": "221 \u0433", "label": "\u0412\u0430\u0433\u0430", "title": "\u0412\u0430\u0433\u0430", "to": "Apple iPhone 15 Pro Max 256Gb Blue Titanium", "width": 1}, {"from": "\u0421\u0440\u0456\u0431\u043b\u044f\u0441\u0442\u0438\u0439", "label": "\u041a\u043e\u043b\u0456\u0440 \u0432\u0438\u0440\u043e\u0431\u043d\u0438\u043a\u0430", "title": "\u041a\u043e\u043b\u0456\u0440 \u0432\u0438\u0440\u043e\u0431\u043d\u0438\u043a\u0430", "to": "Apple iPhone 15 Pro 128Gb Natural Titanium", "width": 1}, {"from": "1 \u0440\u0456\u043a", "label": "\u0413\u0430\u0440\u0430\u043d\u0442\u0456\u0439\u043d\u0438\u0439 \u0442\u0435\u0440\u043c\u0456\u043d", "title": "\u0413\u0430\u0440\u0430\u043d\u0442\u0456\u0439\u043d\u0438\u0439 \u0442\u0435\u0440\u043c\u0456\u043d", "to": "Samsung Galaxy A55 5G 8/256Gb Awesome Navy (SM-A556BZKCEUC)", "width": 1}, {"from": "1 \u0440\u0456\u043a", "label": "\u0413\u0430\u0440\u0430\u043d\u0442\u0456\u0439\u043d\u0438\u0439 \u0442\u0435\u0440\u043c\u0456\u043d", "title": "\u0413\u0430\u0440\u0430\u043d\u0442\u0456\u0439\u043d\u0438\u0439 \u0442\u0435\u0440\u043c\u0456\u043d", "to": "Samsung Galaxy A35 5G 8/256Gb Awesome Lilac (SM-A356BLVGEUC)", "width": 1}, {"from": "1 \u0440\u0456\u043a", "label": "\u0413\u0430\u0440\u0430\u043d\u0442\u0456\u0439\u043d\u0438\u0439 \u0442\u0435\u0440\u043c\u0456\u043d", "title": "\u0413\u0430\u0440\u0430\u043d\u0442\u0456\u0439\u043d\u0438\u0439 \u0442\u0435\u0440\u043c\u0456\u043d", "to": "Apple iPhone 15 Pro Max 256Gb Blue Titanium", "width": 1}, {"from": "1 \u0440\u0456\u043a", "label": "\u0413\u0430\u0440\u0430\u043d\u0442\u0456\u0439\u043d\u0438\u0439 \u0442\u0435\u0440\u043c\u0456\u043d", "title": "\u0413\u0430\u0440\u0430\u043d\u0442\u0456\u0439\u043d\u0438\u0439 \u0442\u0435\u0440\u043c\u0456\u043d", "to": "Apple iPhone 13 128Gb Green", "width": 1}, {"from": "1 \u0440\u0456\u043a", "label": "\u0413\u0430\u0440\u0430\u043d\u0442\u0456\u0439\u043d\u0438\u0439 \u0442\u0435\u0440\u043c\u0456\u043d", "title": "\u0413\u0430\u0440\u0430\u043d\u0442\u0456\u0439\u043d\u0438\u0439 \u0442\u0435\u0440\u043c\u0456\u043d", "to": "Samsung Galaxy S23FE 8/256Gb Graphite (SM-S711BZAGSEK)", "width": 1}, {"from": "1 \u0440\u0456\u043a", "label": "\u0413\u0430\u0440\u0430\u043d\u0442\u0456\u0439\u043d\u0438\u0439 \u0442\u0435\u0440\u043c\u0456\u043d", "title": "\u0413\u0430\u0440\u0430\u043d\u0442\u0456\u0439\u043d\u0438\u0439 \u0442\u0435\u0440\u043c\u0456\u043d", "to": "Samsung Galaxy S23 8/256Gb Black (SM-S911BZKGSEK)", "width": 1}, {"from": "1 \u0440\u0456\u043a", "label": "\u0413\u0430\u0440\u0430\u043d\u0442\u0456\u0439\u043d\u0438\u0439 \u0442\u0435\u0440\u043c\u0456\u043d", "title": "\u0413\u0430\u0440\u0430\u043d\u0442\u0456\u0439\u043d\u0438\u0439 \u0442\u0435\u0440\u043c\u0456\u043d", "to": "Apple iPhone 13 128Gb Blue", "width": 1}, {"from": "1 \u0440\u0456\u043a", "label": "\u0413\u0430\u0440\u0430\u043d\u0442\u0456\u0439\u043d\u0438\u0439 \u0442\u0435\u0440\u043c\u0456\u043d", "title": "\u0413\u0430\u0440\u0430\u043d\u0442\u0456\u0439\u043d\u0438\u0439 \u0442\u0435\u0440\u043c\u0456\u043d", "to": "Samsung Galaxy A15 4/128Gb Black (SM-A155FZKDEUC)", "width": 1}, {"from": "1 \u0440\u0456\u043a", "label": "\u0413\u0430\u0440\u0430\u043d\u0442\u0456\u0439\u043d\u0438\u0439 \u0442\u0435\u0440\u043c\u0456\u043d", "title": "\u0413\u0430\u0440\u0430\u043d\u0442\u0456\u0439\u043d\u0438\u0439 \u0442\u0435\u0440\u043c\u0456\u043d", "to": "Samsung Galaxy S24+ 12/512Gb Onyx Black (SM-S926BZKGEUC)", "width": 1}, {"from": "1 \u0440\u0456\u043a", "label": "\u0413\u0430\u0440\u0430\u043d\u0442\u0456\u0439\u043d\u0438\u0439 \u0442\u0435\u0440\u043c\u0456\u043d", "title": "\u0413\u0430\u0440\u0430\u043d\u0442\u0456\u0439\u043d\u0438\u0439 \u0442\u0435\u0440\u043c\u0456\u043d", "to": "Apple iPhone 13 128Gb Pink", "width": 1}, {"from": "1 \u0440\u0456\u043a", "label": "\u0413\u0430\u0440\u0430\u043d\u0442\u0456\u0439\u043d\u0438\u0439 \u0442\u0435\u0440\u043c\u0456\u043d", "title": "\u0413\u0430\u0440\u0430\u043d\u0442\u0456\u0439\u043d\u0438\u0439 \u0442\u0435\u0440\u043c\u0456\u043d", "to": "Apple iPhone 15 Pro 128Gb Blue Titanium", "width": 1}, {"from": "1 \u0440\u0456\u043a", "label": "\u0413\u0430\u0440\u0430\u043d\u0442\u0456\u0439\u043d\u0438\u0439 \u0442\u0435\u0440\u043c\u0456\u043d", "title": "\u0413\u0430\u0440\u0430\u043d\u0442\u0456\u0439\u043d\u0438\u0439 \u0442\u0435\u0440\u043c\u0456\u043d", "to": "Samsung Galaxy S24 Ultra 12/256Gb Titanium Gray (SM-S928BZTGEUC)", "width": 1}, {"from": "1 \u0440\u0456\u043a", "label": "\u0413\u0430\u0440\u0430\u043d\u0442\u0456\u0439\u043d\u0438\u0439 \u0442\u0435\u0440\u043c\u0456\u043d", "title": "\u0413\u0430\u0440\u0430\u043d\u0442\u0456\u0439\u043d\u0438\u0439 \u0442\u0435\u0440\u043c\u0456\u043d", "to": "Apple iPhone 15 128Gb Black", "width": 1}, {"from": "1 \u0440\u0456\u043a", "label": "\u0413\u0430\u0440\u0430\u043d\u0442\u0456\u0439\u043d\u0438\u0439 \u0442\u0435\u0440\u043c\u0456\u043d", "title": "\u0413\u0430\u0440\u0430\u043d\u0442\u0456\u0439\u043d\u0438\u0439 \u0442\u0435\u0440\u043c\u0456\u043d", "to": "Samsung Galaxy S24 8/256Gb Onyx Black (SM-S921BZKGEUC)", "width": 1}, {"from": "1 \u0440\u0456\u043a", "label": "\u0413\u0430\u0440\u0430\u043d\u0442\u0456\u0439\u043d\u0438\u0439 \u0442\u0435\u0440\u043c\u0456\u043d", "title": "\u0413\u0430\u0440\u0430\u043d\u0442\u0456\u0439\u043d\u0438\u0439 \u0442\u0435\u0440\u043c\u0456\u043d", "to": "Apple iPhone 13 128Gb Starlight", "width": 1}, {"from": "1 \u0440\u0456\u043a", "label": "\u0413\u0430\u0440\u0430\u043d\u0442\u0456\u0439\u043d\u0438\u0439 \u0442\u0435\u0440\u043c\u0456\u043d", "title": "\u0413\u0430\u0440\u0430\u043d\u0442\u0456\u0439\u043d\u0438\u0439 \u0442\u0435\u0440\u043c\u0456\u043d", "to": "Samsung Galaxy A35 5G 6/128Gb Awesome Navy (SM-A356BZKBEUC)", "width": 1}, {"from": "1 \u0440\u0456\u043a", "label": "\u0413\u0430\u0440\u0430\u043d\u0442\u0456\u0439\u043d\u0438\u0439 \u0442\u0435\u0440\u043c\u0456\u043d", "title": "\u0413\u0430\u0440\u0430\u043d\u0442\u0456\u0439\u043d\u0438\u0439 \u0442\u0435\u0440\u043c\u0456\u043d", "to": "Apple iPhone 15 Pro 128Gb Natural Titanium", "width": 1}, {"from": "1 \u0440\u0456\u043a", "label": "\u0413\u0430\u0440\u0430\u043d\u0442\u0456\u0439\u043d\u0438\u0439 \u0442\u0435\u0440\u043c\u0456\u043d", "title": "\u0413\u0430\u0440\u0430\u043d\u0442\u0456\u0439\u043d\u0438\u0439 \u0442\u0435\u0440\u043c\u0456\u043d", "to": "Samsung Galaxy A25 5G 6/128Gb Black (SM-A256BZKDEUC)", "width": 1}, {"from": "1 \u0440\u0456\u043a", "label": "\u0413\u0430\u0440\u0430\u043d\u0442\u0456\u0439\u043d\u0438\u0439 \u0442\u0435\u0440\u043c\u0456\u043d", "title": "\u0413\u0430\u0440\u0430\u043d\u0442\u0456\u0439\u043d\u0438\u0439 \u0442\u0435\u0440\u043c\u0456\u043d", "to": "Apple iPhone 13 128Gb Midnight", "width": 1}, {"from": "\u041a\u0438\u0442\u0430\u0439", "label": "\u041a\u0440\u0430\u0457\u043d\u0430 \u0432\u0438\u0440\u043e\u0431\u043d\u0438\u0446\u0442\u0432\u0430", "title": "\u041a\u0440\u0430\u0457\u043d\u0430 \u0432\u0438\u0440\u043e\u0431\u043d\u0438\u0446\u0442\u0432\u0430", "to": "Apple iPhone 15 Pro Max 256Gb Blue Titanium", "width": 1}, {"from": "\u041a\u0438\u0442\u0430\u0439", "label": "\u041a\u0440\u0430\u0457\u043d\u0430 \u0432\u0438\u0440\u043e\u0431\u043d\u0438\u0446\u0442\u0432\u0430", "title": "\u041a\u0440\u0430\u0457\u043d\u0430 \u0432\u0438\u0440\u043e\u0431\u043d\u0438\u0446\u0442\u0432\u0430", "to": "Apple iPhone 13 128Gb Green", "width": 1}, {"from": "\u041a\u0438\u0442\u0430\u0439", "label": "\u041a\u0440\u0430\u0457\u043d\u0430 \u0432\u0438\u0440\u043e\u0431\u043d\u0438\u0446\u0442\u0432\u0430", "title": "\u041a\u0440\u0430\u0457\u043d\u0430 \u0432\u0438\u0440\u043e\u0431\u043d\u0438\u0446\u0442\u0432\u0430", "to": "Apple iPhone 13 128Gb Blue", "width": 1}, {"from": "\u041a\u0438\u0442\u0430\u0439", "label": "\u041a\u0440\u0430\u0457\u043d\u0430 \u0432\u0438\u0440\u043e\u0431\u043d\u0438\u0446\u0442\u0432\u0430", "title": "\u041a\u0440\u0430\u0457\u043d\u0430 \u0432\u0438\u0440\u043e\u0431\u043d\u0438\u0446\u0442\u0432\u0430", "to": "Apple iPhone 13 128Gb Pink", "width": 1}, {"from": "\u041a\u0438\u0442\u0430\u0439", "label": "\u041a\u0440\u0430\u0457\u043d\u0430 \u0432\u0438\u0440\u043e\u0431\u043d\u0438\u0446\u0442\u0432\u0430", "title": "\u041a\u0440\u0430\u0457\u043d\u0430 \u0432\u0438\u0440\u043e\u0431\u043d\u0438\u0446\u0442\u0432\u0430", "to": "Apple iPhone 15 Pro 128Gb Blue Titanium", "width": 1}, {"from": "\u041a\u0438\u0442\u0430\u0439", "label": "\u041a\u0440\u0430\u0457\u043d\u0430 \u0432\u0438\u0440\u043e\u0431\u043d\u0438\u0446\u0442\u0432\u0430", "title": "\u041a\u0440\u0430\u0457\u043d\u0430 \u0432\u0438\u0440\u043e\u0431\u043d\u0438\u0446\u0442\u0432\u0430", "to": "Apple iPhone 15 128Gb Black", "width": 1}, {"from": "\u041a\u0438\u0442\u0430\u0439", "label": "\u041a\u0440\u0430\u0457\u043d\u0430 \u0432\u0438\u0440\u043e\u0431\u043d\u0438\u0446\u0442\u0432\u0430", "title": "\u041a\u0440\u0430\u0457\u043d\u0430 \u0432\u0438\u0440\u043e\u0431\u043d\u0438\u0446\u0442\u0432\u0430", "to": "Apple iPhone 13 128Gb Starlight", "width": 1}, {"from": "\u041a\u0438\u0442\u0430\u0439", "label": "\u041a\u0440\u0430\u0457\u043d\u0430 \u0432\u0438\u0440\u043e\u0431\u043d\u0438\u0446\u0442\u0432\u0430", "title": "\u041a\u0440\u0430\u0457\u043d\u0430 \u0432\u0438\u0440\u043e\u0431\u043d\u0438\u0446\u0442\u0432\u0430", "to": "Apple iPhone 15 Pro 128Gb Natural Titanium", "width": 1}, {"from": "\u041a\u0438\u0442\u0430\u0439", "label": "\u041a\u0440\u0430\u0457\u043d\u0430 \u0432\u0438\u0440\u043e\u0431\u043d\u0438\u0446\u0442\u0432\u0430", "title": "\u041a\u0440\u0430\u0457\u043d\u0430 \u0432\u0438\u0440\u043e\u0431\u043d\u0438\u0446\u0442\u0432\u0430", "to": "Apple iPhone 13 128Gb Midnight", "width": 1}, {"from": "Apple", "label": "\u0411\u0440\u0435\u043d\u0434", "title": "\u0411\u0440\u0435\u043d\u0434", "to": "Apple iPhone 15 Pro Max 256Gb Blue Titanium", "width": 1}, {"from": "Apple", "label": "\u0411\u0440\u0435\u043d\u0434", "title": "\u0411\u0440\u0435\u043d\u0434", "to": "Apple iPhone 13 128Gb Green", "width": 1}, {"from": "Apple", "label": "\u0411\u0440\u0435\u043d\u0434", "title": "\u0411\u0440\u0435\u043d\u0434", "to": "Apple iPhone 13 128Gb Blue", "width": 1}, {"from": "Apple", "label": "\u0411\u0440\u0435\u043d\u0434", "title": "\u0411\u0440\u0435\u043d\u0434", "to": "Apple iPhone 13 128Gb Pink", "width": 1}, {"from": "Apple", "label": "\u0411\u0440\u0435\u043d\u0434", "title": "\u0411\u0440\u0435\u043d\u0434", "to": "Apple iPhone 15 Pro 128Gb Blue Titanium", "width": 1}, {"from": "Apple", "label": "\u0411\u0440\u0435\u043d\u0434", "title": "\u0411\u0440\u0435\u043d\u0434", "to": "Apple iPhone 15 128Gb Black", "width": 1}, {"from": "Apple", "label": "\u0411\u0440\u0435\u043d\u0434", "title": "\u0411\u0440\u0435\u043d\u0434", "to": "Apple iPhone 13 128Gb Starlight", "width": 1}, {"from": "Apple", "label": "\u0411\u0440\u0435\u043d\u0434", "title": "\u0411\u0440\u0435\u043d\u0434", "to": "Apple iPhone 15 Pro 128Gb Natural Titanium", "width": 1}, {"from": "Apple", "label": "\u0411\u0440\u0435\u043d\u0434", "title": "\u0411\u0440\u0435\u043d\u0434", "to": "Apple iPhone 13 128Gb Midnight", "width": 1}, {"from": "54 999 \u20b4", "label": "\u0426\u0456\u043d\u0430", "title": "\u0426\u0456\u043d\u0430", "to": "Apple iPhone 15 Pro Max 256Gb Blue Titanium", "width": 1}, {"from": "Samsung Galaxy A55 5G 8/256Gb Awesome Navy (SM-A556BZKCEUC)", "label": "\u0414\u0456\u0430\u0433\u043e\u043d\u0430\u043b\u044c \u0434\u0438\u0441\u043f\u043b\u0435\u044f", "title": "\u0414\u0456\u0430\u0433\u043e\u043d\u0430\u043b\u044c \u0434\u0438\u0441\u043f\u043b\u0435\u044f", "to": "6,6\"", "width": 1}, {"from": "Samsung Galaxy A55 5G 8/256Gb Awesome Navy (SM-A556BZKCEUC)", "label": "\u0420\u043e\u0437\u0434\u0456\u043b\u044c\u043d\u0430 \u0437\u0434\u0430\u0442\u043d\u0456\u0441\u0442\u044c \u0435\u043a\u0440\u0430\u043d\u0443", "title": "\u0420\u043e\u0437\u0434\u0456\u043b\u044c\u043d\u0430 \u0437\u0434\u0430\u0442\u043d\u0456\u0441\u0442\u044c \u0435\u043a\u0440\u0430\u043d\u0443", "to": "2340x1080", "width": 1}, {"from": "Samsung Galaxy A55 5G 8/256Gb Awesome Navy (SM-A556BZKCEUC)", "label": "\u0422\u0438\u043f \u0435\u043a\u0440\u0430\u043d\u0443", "title": "\u0422\u0438\u043f \u0435\u043a\u0440\u0430\u043d\u0443", "to": "Super Amoled", "width": 1}, {"from": "Samsung Galaxy A55 5G 8/256Gb Awesome Navy (SM-A556BZKCEUC)", "label": "\u041a\u0456\u043b\u044c\u043a\u0456\u0441\u0442\u044c SIM-\u043a\u0430\u0440\u0442", "title": "\u041a\u0456\u043b\u044c\u043a\u0456\u0441\u0442\u044c SIM-\u043a\u0430\u0440\u0442", "to": "SIM + SIM/microSD", "width": 1}, {"from": "Samsung Galaxy A55 5G 8/256Gb Awesome Navy (SM-A556BZKCEUC)", "label": "\u041c\u043e\u0434\u0435\u043b\u044c \u043f\u0440\u043e\u0446\u0435\u0441\u043e\u0440\u0430", "title": "\u041c\u043e\u0434\u0435\u043b\u044c \u043f\u0440\u043e\u0446\u0435\u0441\u043e\u0440\u0430", "to": "Exynos 1480", "width": 1}, {"from": "Samsung Galaxy A55 5G 8/256Gb Awesome Navy (SM-A556BZKCEUC)", "label": "\u041a\u0456\u043b\u044c\u043a\u0456\u0441\u0442\u044c \u044f\u0434\u0435\u0440", "title": "\u041a\u0456\u043b\u044c\u043a\u0456\u0441\u0442\u044c \u044f\u0434\u0435\u0440", "to": "8 \u044f\u0434\u0435\u0440", "width": 1}, {"from": "Samsung Galaxy A55 5G 8/256Gb Awesome Navy (SM-A556BZKCEUC)", "label": "\u041c\u043e\u0434\u0435\u043b\u044c \u0433\u0440\u0430\u0444\u0456\u0447\u043d\u043e\u0433\u043e \u043f\u0440\u043e\u0446\u0435\u0441\u043e\u0440\u0430", "title": "\u041c\u043e\u0434\u0435\u043b\u044c \u0433\u0440\u0430\u0444\u0456\u0447\u043d\u043e\u0433\u043e \u043f\u0440\u043e\u0446\u0435\u0441\u043e\u0440\u0430", "to": "Xclipse 530 GPU", "width": 1}, {"from": "Samsung Galaxy A55 5G 8/256Gb Awesome Navy (SM-A556BZKCEUC)", "label": "\u041e\u043f\u0435\u0440\u0430\u0442\u0438\u0432\u043d\u0430 \u043f\u0430\u043c\u0027\u044f\u0442\u044c", "title": "\u041e\u043f\u0435\u0440\u0430\u0442\u0438\u0432\u043d\u0430 \u043f\u0430\u043c\u0027\u044f\u0442\u044c", "to": "8 \u0413\u0411", "width": 1}, {"from": "Samsung Galaxy A55 5G 8/256Gb Awesome Navy (SM-A556BZKCEUC)", "label": "\u0420\u043e\u0437\u0448\u0438\u0440\u0435\u043d\u043d\u044f \u043f\u0430\u043c\u0027\u044f\u0442\u0456", "title": "\u0420\u043e\u0437\u0448\u0438\u0440\u0435\u043d\u043d\u044f \u043f\u0430\u043c\u0027\u044f\u0442\u0456", "to": "microSD 1 \u0422\u0411", "width": 1}, {"from": "Samsung Galaxy A55 5G 8/256Gb Awesome Navy (SM-A556BZKCEUC)", "label": "\u041e\u0441\u043d\u043e\u0432\u043d\u0430 \u043a\u0430\u043c\u0435\u0440\u0430", "title": "\u041e\u0441\u043d\u043e\u0432\u043d\u0430 \u043a\u0430\u043c\u0435\u0440\u0430", "to": "50+12+5 \u041c\u043f", "width": 1}, {"from": "Samsung Galaxy A55 5G 8/256Gb Awesome Navy (SM-A556BZKCEUC)", "label": "\u0424\u0440\u043e\u043d\u0442\u0430\u043b\u044c\u043d\u0430 \u043a\u0430\u043c\u0435\u0440\u0430", "title": "\u0424\u0440\u043e\u043d\u0442\u0430\u043b\u044c\u043d\u0430 \u043a\u0430\u043c\u0435\u0440\u0430", "to": "32 \u041c\u043f", "width": 1}, {"from": "Samsung Galaxy A55 5G 8/256Gb Awesome Navy (SM-A556BZKCEUC)", "label": "\u0421\u0442\u0430\u0431\u0456\u043b\u0456\u0437\u0430\u0446\u0456\u044f", "title": "\u0421\u0442\u0430\u0431\u0456\u043b\u0456\u0437\u0430\u0446\u0456\u044f", "to": "\u041e\u043f\u0442\u0438\u0447\u043d\u0430", "width": 1}, {"from": "Samsung Galaxy A55 5G 8/256Gb Awesome Navy (SM-A556BZKCEUC)", "label": "\u0417\u0443\u043c", "title": "\u0417\u0443\u043c", "to": "10\u0445 \u0446\u0438\u0444\u0440\u043e\u0432\u0438\u0439", "width": 1}, {"from": "Samsung Galaxy A55 5G 8/256Gb Awesome Navy (SM-A556BZKCEUC)", "label": "\u0421\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u0438 Wi-Fi", "title": "\u0421\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u0438 Wi-Fi", "to": "802.11ax (Wi-Fi 6)", "width": 1}, {"from": "Samsung Galaxy A55 5G 8/256Gb Awesome Navy (SM-A556BZKCEUC)", "label": "\u0404\u043c\u043d\u0456\u0441\u0442\u044c \u0430\u043a\u0443\u043c\u0443\u043b\u044f\u0442\u043e\u0440\u0430", "title": "\u0404\u043c\u043d\u0456\u0441\u0442\u044c \u0430\u043a\u0443\u043c\u0443\u043b\u044f\u0442\u043e\u0440\u0430", "to": "5000 \u043c\u0410\u0433", "width": 1}, {"from": "Samsung Galaxy A55 5G 8/256Gb Awesome Navy (SM-A556BZKCEUC)", "label": "\u041f\u043e\u0442\u0443\u0436\u043d\u0456\u0441\u0442\u044c \u0437\u0430\u0440\u044f\u0434\u043a\u0438", "title": "\u041f\u043e\u0442\u0443\u0436\u043d\u0456\u0441\u0442\u044c \u0437\u0430\u0440\u044f\u0434\u043a\u0438", "to": "25 \u0412\u0442", "width": 1}, {"from": "Samsung Galaxy A55 5G 8/256Gb Awesome Navy (SM-A556BZKCEUC)", "label": "\u0427\u0430\u0441 \u0440\u043e\u0431\u043e\u0442\u0438 \u0432 \u0440\u0435\u0436\u0438\u043c\u0456 \u0440\u043e\u0437\u043c\u043e\u0432\u0438", "title": "\u0427\u0430\u0441 \u0440\u043e\u0431\u043e\u0442\u0438 \u0432 \u0440\u0435\u0436\u0438\u043c\u0456 \u0440\u043e\u0437\u043c\u043e\u0432\u0438", "to": "\u0414\u043e 25 \u0433", "width": 1}, {"from": "Samsung Galaxy A55 5G 8/256Gb Awesome Navy (SM-A556BZKCEUC)", "label": "\u0411\u0456\u043e\u043c\u0435\u0442\u0440\u0438\u0447\u043d\u0438\u0439 \u0437\u0430\u0445\u0438\u0441\u0442", "title": "\u0411\u0456\u043e\u043c\u0435\u0442\u0440\u0438\u0447\u043d\u0438\u0439 \u0437\u0430\u0445\u0438\u0441\u0442", "to": "\u0421\u043a\u0430\u043d\u0435\u0440 \u0432\u0456\u0434\u0431\u0438\u0442\u043a\u0456\u0432 \u043f\u0430\u043b\u044c\u0446\u0456\u0432", "width": 1}, {"from": "Samsung Galaxy A55 5G 8/256Gb Awesome Navy (SM-A556BZKCEUC)", "label": "\u041c\u0430\u0442\u0435\u0440\u0456\u0430\u043b \u043a\u043e\u0440\u043f\u0443\u0441\u0443", "title": "\u041c\u0430\u0442\u0435\u0440\u0456\u0430\u043b \u043a\u043e\u0440\u043f\u0443\u0441\u0443", "to": "\u041c\u0435\u0442\u0430\u043b", "width": 1}, {"from": "Samsung Galaxy A55 5G 8/256Gb Awesome Navy (SM-A556BZKCEUC)", "label": "\u0412\u0438\u0441\u043e\u0442\u0430", "title": "\u0412\u0438\u0441\u043e\u0442\u0430", "to": "161,1 \u043c\u043c", "width": 1}, {"from": "Samsung Galaxy A55 5G 8/256Gb Awesome Navy (SM-A556BZKCEUC)", "label": "\u0428\u0438\u0440\u0438\u043d\u0430", "title": "\u0428\u0438\u0440\u0438\u043d\u0430", "to": "77,4 \u043c\u043c", "width": 1}, {"from": "Samsung Galaxy A55 5G 8/256Gb Awesome Navy (SM-A556BZKCEUC)", "label": "\u0413\u043b\u0438\u0431\u0438\u043d\u0430", "title": "\u0413\u043b\u0438\u0431\u0438\u043d\u0430", "to": "8,2 \u043c\u043c", "width": 1}, {"from": "Samsung Galaxy A55 5G 8/256Gb Awesome Navy (SM-A556BZKCEUC)", "label": "\u0412\u0430\u0433\u0430", "title": "\u0412\u0430\u0433\u0430", "to": "213 \u0433", "width": 1}, {"from": "Samsung Galaxy A55 5G 8/256Gb Awesome Navy (SM-A556BZKCEUC)", "label": "\u041a\u043e\u043b\u0456\u0440 \u0432\u0438\u0440\u043e\u0431\u043d\u0438\u043a\u0430", "title": "\u041a\u043e\u043b\u0456\u0440 \u0432\u0438\u0440\u043e\u0431\u043d\u0438\u043a\u0430", "to": "\u0422\u0435\u043c\u043d\u043e-\u0441\u0438\u043d\u0456\u0439", "width": 1}, {"from": "Samsung Galaxy A55 5G 8/256Gb Awesome Navy (SM-A556BZKCEUC)", "label": "\u041a\u0440\u0430\u0457\u043d\u0430 \u0432\u0438\u0440\u043e\u0431\u043d\u0438\u0446\u0442\u0432\u0430", "title": "\u041a\u0440\u0430\u0457\u043d\u0430 \u0432\u0438\u0440\u043e\u0431\u043d\u0438\u0446\u0442\u0432\u0430", "to": "\u0406\u043d\u0434\u0456\u044f", "width": 1}, {"from": "Samsung Galaxy A55 5G 8/256Gb Awesome Navy (SM-A556BZKCEUC)", "label": "\u0411\u0440\u0435\u043d\u0434", "title": "\u0411\u0440\u0435\u043d\u0434", "to": "Samsung", "width": 1}, {"from": "Samsung Galaxy A55 5G 8/256Gb Awesome Navy (SM-A556BZKCEUC)", "label": "\u0426\u0456\u043d\u0430", "title": "\u0426\u0456\u043d\u0430", "to": "19 899 \u20b4", "width": 1}, {"from": "6,6\"", "label": "\u0414\u0456\u0430\u0433\u043e\u043d\u0430\u043b\u044c \u0434\u0438\u0441\u043f\u043b\u0435\u044f", "title": "\u0414\u0456\u0430\u0433\u043e\u043d\u0430\u043b\u044c \u0434\u0438\u0441\u043f\u043b\u0435\u044f", "to": "Samsung Galaxy A35 5G 8/256Gb Awesome Lilac (SM-A356BLVGEUC)", "width": 1}, {"from": "6,6\"", "label": "\u0414\u0456\u0430\u0433\u043e\u043d\u0430\u043b\u044c \u0434\u0438\u0441\u043f\u043b\u0435\u044f", "title": "\u0414\u0456\u0430\u0433\u043e\u043d\u0430\u043b\u044c \u0434\u0438\u0441\u043f\u043b\u0435\u044f", "to": "Samsung Galaxy A35 5G 6/128Gb Awesome Navy (SM-A356BZKBEUC)", "width": 1}, {"from": "2340x1080", "label": "\u0420\u043e\u0437\u0434\u0456\u043b\u044c\u043d\u0430 \u0437\u0434\u0430\u0442\u043d\u0456\u0441\u0442\u044c \u0435\u043a\u0440\u0430\u043d\u0443", "title": "\u0420\u043e\u0437\u0434\u0456\u043b\u044c\u043d\u0430 \u0437\u0434\u0430\u0442\u043d\u0456\u0441\u0442\u044c \u0435\u043a\u0440\u0430\u043d\u0443", "to": "Samsung Galaxy A35 5G 8/256Gb Awesome Lilac (SM-A356BLVGEUC)", "width": 1}, {"from": "2340x1080", "label": "\u0420\u043e\u0437\u0434\u0456\u043b\u044c\u043d\u0430 \u0437\u0434\u0430\u0442\u043d\u0456\u0441\u0442\u044c \u0435\u043a\u0440\u0430\u043d\u0443", "title": "\u0420\u043e\u0437\u0434\u0456\u043b\u044c\u043d\u0430 \u0437\u0434\u0430\u0442\u043d\u0456\u0441\u0442\u044c \u0435\u043a\u0440\u0430\u043d\u0443", "to": "Samsung Galaxy S23FE 8/256Gb Graphite (SM-S711BZAGSEK)", "width": 1}, {"from": "2340x1080", "label": "\u0420\u043e\u0437\u0434\u0456\u043b\u044c\u043d\u0430 \u0437\u0434\u0430\u0442\u043d\u0456\u0441\u0442\u044c \u0435\u043a\u0440\u0430\u043d\u0443", "title": "\u0420\u043e\u0437\u0434\u0456\u043b\u044c\u043d\u0430 \u0437\u0434\u0430\u0442\u043d\u0456\u0441\u0442\u044c \u0435\u043a\u0440\u0430\u043d\u0443", "to": "Samsung Galaxy S23 8/256Gb Black (SM-S911BZKGSEK)", "width": 1}, {"from": "2340x1080", "label": "\u0420\u043e\u0437\u0434\u0456\u043b\u044c\u043d\u0430 \u0437\u0434\u0430\u0442\u043d\u0456\u0441\u0442\u044c \u0435\u043a\u0440\u0430\u043d\u0443", "title": "\u0420\u043e\u0437\u0434\u0456\u043b\u044c\u043d\u0430 \u0437\u0434\u0430\u0442\u043d\u0456\u0441\u0442\u044c \u0435\u043a\u0440\u0430\u043d\u0443", "to": "Samsung Galaxy A15 4/128Gb Black (SM-A155FZKDEUC)", "width": 1}, {"from": "2340x1080", "label": "\u0420\u043e\u0437\u0434\u0456\u043b\u044c\u043d\u0430 \u0437\u0434\u0430\u0442\u043d\u0456\u0441\u0442\u044c \u0435\u043a\u0440\u0430\u043d\u0443", "title": "\u0420\u043e\u0437\u0434\u0456\u043b\u044c\u043d\u0430 \u0437\u0434\u0430\u0442\u043d\u0456\u0441\u0442\u044c \u0435\u043a\u0440\u0430\u043d\u0443", "to": "Samsung Galaxy S24 8/256Gb Onyx Black (SM-S921BZKGEUC)", "width": 1}, {"from": "2340x1080", "label": "\u0420\u043e\u0437\u0434\u0456\u043b\u044c\u043d\u0430 \u0437\u0434\u0430\u0442\u043d\u0456\u0441\u0442\u044c \u0435\u043a\u0440\u0430\u043d\u0443", "title": "\u0420\u043e\u0437\u0434\u0456\u043b\u044c\u043d\u0430 \u0437\u0434\u0430\u0442\u043d\u0456\u0441\u0442\u044c \u0435\u043a\u0440\u0430\u043d\u0443", "to": "Samsung Galaxy A35 5G 6/128Gb Awesome Navy (SM-A356BZKBEUC)", "width": 1}, {"from": "2340x1080", "label": "\u0420\u043e\u0437\u0434\u0456\u043b\u044c\u043d\u0430 \u0437\u0434\u0430\u0442\u043d\u0456\u0441\u0442\u044c \u0435\u043a\u0440\u0430\u043d\u0443", "title": "\u0420\u043e\u0437\u0434\u0456\u043b\u044c\u043d\u0430 \u0437\u0434\u0430\u0442\u043d\u0456\u0441\u0442\u044c \u0435\u043a\u0440\u0430\u043d\u0443", "to": "Samsung Galaxy A25 5G 6/128Gb Black (SM-A256BZKDEUC)", "width": 1}, {"from": "Super Amoled", "label": "\u0422\u0438\u043f \u0435\u043a\u0440\u0430\u043d\u0443", "title": "\u0422\u0438\u043f \u0435\u043a\u0440\u0430\u043d\u0443", "to": "Samsung Galaxy A35 5G 8/256Gb Awesome Lilac (SM-A356BLVGEUC)", "width": 1}, {"from": "Super Amoled", "label": "\u0422\u0438\u043f \u0435\u043a\u0440\u0430\u043d\u0443", "title": "\u0422\u0438\u043f \u0435\u043a\u0440\u0430\u043d\u0443", "to": "Samsung Galaxy A15 4/128Gb Black (SM-A155FZKDEUC)", "width": 1}, {"from": "Super Amoled", "label": "\u0422\u0438\u043f \u0435\u043a\u0440\u0430\u043d\u0443", "title": "\u0422\u0438\u043f \u0435\u043a\u0440\u0430\u043d\u0443", "to": "Samsung Galaxy A35 5G 6/128Gb Awesome Navy (SM-A356BZKBEUC)", "width": 1}, {"from": "Super Amoled", "label": "\u0422\u0438\u043f \u0435\u043a\u0440\u0430\u043d\u0443", "title": "\u0422\u0438\u043f \u0435\u043a\u0440\u0430\u043d\u0443", "to": "Samsung Galaxy A25 5G 6/128Gb Black (SM-A256BZKDEUC)", "width": 1}, {"from": "SIM + SIM/microSD", "label": "\u041a\u0456\u043b\u044c\u043a\u0456\u0441\u0442\u044c SIM-\u043a\u0430\u0440\u0442", "title": "\u041a\u0456\u043b\u044c\u043a\u0456\u0441\u0442\u044c SIM-\u043a\u0430\u0440\u0442", "to": "Samsung Galaxy A35 5G 8/256Gb Awesome Lilac (SM-A356BLVGEUC)", "width": 1}, {"from": "SIM + SIM/microSD", "label": "\u041a\u0456\u043b\u044c\u043a\u0456\u0441\u0442\u044c SIM-\u043a\u0430\u0440\u0442", "title": "\u041a\u0456\u043b\u044c\u043a\u0456\u0441\u0442\u044c SIM-\u043a\u0430\u0440\u0442", "to": "Samsung Galaxy A15 4/128Gb Black (SM-A155FZKDEUC)", "width": 1}, {"from": "SIM + SIM/microSD", "label": "\u041a\u0456\u043b\u044c\u043a\u0456\u0441\u0442\u044c SIM-\u043a\u0430\u0440\u0442", "title": "\u041a\u0456\u043b\u044c\u043a\u0456\u0441\u0442\u044c SIM-\u043a\u0430\u0440\u0442", "to": "Samsung Galaxy A35 5G 6/128Gb Awesome Navy (SM-A356BZKBEUC)", "width": 1}, {"from": "SIM + SIM/microSD", "label": "\u041a\u0456\u043b\u044c\u043a\u0456\u0441\u0442\u044c SIM-\u043a\u0430\u0440\u0442", "title": "\u041a\u0456\u043b\u044c\u043a\u0456\u0441\u0442\u044c SIM-\u043a\u0430\u0440\u0442", "to": "Samsung Galaxy A25 5G 6/128Gb Black (SM-A256BZKDEUC)", "width": 1}, {"from": "8 \u044f\u0434\u0435\u0440", "label": "\u041a\u0456\u043b\u044c\u043a\u0456\u0441\u0442\u044c \u044f\u0434\u0435\u0440", "title": "\u041a\u0456\u043b\u044c\u043a\u0456\u0441\u0442\u044c \u044f\u0434\u0435\u0440", "to": "Samsung Galaxy A35 5G 8/256Gb Awesome Lilac (SM-A356BLVGEUC)", "width": 1}, {"from": "8 \u044f\u0434\u0435\u0440", "label": "\u041a\u0456\u043b\u044c\u043a\u0456\u0441\u0442\u044c \u044f\u0434\u0435\u0440", "title": "\u041a\u0456\u043b\u044c\u043a\u0456\u0441\u0442\u044c \u044f\u0434\u0435\u0440", "to": "Samsung Galaxy S23FE 8/256Gb Graphite (SM-S711BZAGSEK)", "width": 1}, {"from": "8 \u044f\u0434\u0435\u0440", "label": "\u041a\u0456\u043b\u044c\u043a\u0456\u0441\u0442\u044c \u044f\u0434\u0435\u0440", "title": "\u041a\u0456\u043b\u044c\u043a\u0456\u0441\u0442\u044c \u044f\u0434\u0435\u0440", "to": "Samsung Galaxy S23 8/256Gb Black (SM-S911BZKGSEK)", "width": 1}, {"from": "8 \u044f\u0434\u0435\u0440", "label": "\u041a\u0456\u043b\u044c\u043a\u0456\u0441\u0442\u044c \u044f\u0434\u0435\u0440", "title": "\u041a\u0456\u043b\u044c\u043a\u0456\u0441\u0442\u044c \u044f\u0434\u0435\u0440", "to": "Samsung Galaxy A15 4/128Gb Black (SM-A155FZKDEUC)", "width": 1}, {"from": "8 \u044f\u0434\u0435\u0440", "label": "\u041a\u0456\u043b\u044c\u043a\u0456\u0441\u0442\u044c \u044f\u0434\u0435\u0440", "title": "\u041a\u0456\u043b\u044c\u043a\u0456\u0441\u0442\u044c \u044f\u0434\u0435\u0440", "to": "Samsung Galaxy S24 Ultra 12/256Gb Titanium Gray (SM-S928BZTGEUC)", "width": 1}, {"from": "8 \u044f\u0434\u0435\u0440", "label": "\u041a\u0456\u043b\u044c\u043a\u0456\u0441\u0442\u044c \u044f\u0434\u0435\u0440", "title": "\u041a\u0456\u043b\u044c\u043a\u0456\u0441\u0442\u044c \u044f\u0434\u0435\u0440", "to": "Samsung Galaxy A35 5G 6/128Gb Awesome Navy (SM-A356BZKBEUC)", "width": 1}, {"from": "8 \u044f\u0434\u0435\u0440", "label": "\u041a\u0456\u043b\u044c\u043a\u0456\u0441\u0442\u044c \u044f\u0434\u0435\u0440", "title": "\u041a\u0456\u043b\u044c\u043a\u0456\u0441\u0442\u044c \u044f\u0434\u0435\u0440", "to": "Samsung Galaxy A25 5G 6/128Gb Black (SM-A256BZKDEUC)", "width": 1}, {"from": "8 \u0413\u0411", "label": "\u041e\u043f\u0435\u0440\u0430\u0442\u0438\u0432\u043d\u0430 \u043f\u0430\u043c\u0027\u044f\u0442\u044c", "title": "\u041e\u043f\u0435\u0440\u0430\u0442\u0438\u0432\u043d\u0430 \u043f\u0430\u043c\u0027\u044f\u0442\u044c", "to": "Samsung Galaxy A35 5G 8/256Gb Awesome Lilac (SM-A356BLVGEUC)", "width": 1}, {"from": "8 \u0413\u0411", "label": "\u041e\u043f\u0435\u0440\u0430\u0442\u0438\u0432\u043d\u0430 \u043f\u0430\u043c\u0027\u044f\u0442\u044c", "title": "\u041e\u043f\u0435\u0440\u0430\u0442\u0438\u0432\u043d\u0430 \u043f\u0430\u043c\u0027\u044f\u0442\u044c", "to": "Samsung Galaxy S23FE 8/256Gb Graphite (SM-S711BZAGSEK)", "width": 1}, {"from": "8 \u0413\u0411", "label": "\u041e\u043f\u0435\u0440\u0430\u0442\u0438\u0432\u043d\u0430 \u043f\u0430\u043c\u0027\u044f\u0442\u044c", "title": "\u041e\u043f\u0435\u0440\u0430\u0442\u0438\u0432\u043d\u0430 \u043f\u0430\u043c\u0027\u044f\u0442\u044c", "to": "Samsung Galaxy S23 8/256Gb Black (SM-S911BZKGSEK)", "width": 1}, {"from": "8 \u0413\u0411", "label": "\u041e\u043f\u0435\u0440\u0430\u0442\u0438\u0432\u043d\u0430 \u043f\u0430\u043c\u0027\u044f\u0442\u044c", "title": "\u041e\u043f\u0435\u0440\u0430\u0442\u0438\u0432\u043d\u0430 \u043f\u0430\u043c\u0027\u044f\u0442\u044c", "to": "Samsung Galaxy S24 8/256Gb Onyx Black (SM-S921BZKGEUC)", "width": 1}, {"from": "microSD 1 \u0422\u0411", "label": "\u0420\u043e\u0437\u0448\u0438\u0440\u0435\u043d\u043d\u044f \u043f\u0430\u043c\u0027\u044f\u0442\u0456", "title": "\u0420\u043e\u0437\u0448\u0438\u0440\u0435\u043d\u043d\u044f \u043f\u0430\u043c\u0027\u044f\u0442\u0456", "to": "Samsung Galaxy A35 5G 8/256Gb Awesome Lilac (SM-A356BLVGEUC)", "width": 1}, {"from": "microSD 1 \u0422\u0411", "label": "\u0420\u043e\u0437\u0448\u0438\u0440\u0435\u043d\u043d\u044f \u043f\u0430\u043c\u0027\u044f\u0442\u0456", "title": "\u0420\u043e\u0437\u0448\u0438\u0440\u0435\u043d\u043d\u044f \u043f\u0430\u043c\u0027\u044f\u0442\u0456", "to": "Samsung Galaxy A15 4/128Gb Black (SM-A155FZKDEUC)", "width": 1}, {"from": "microSD 1 \u0422\u0411", "label": "\u0420\u043e\u0437\u0448\u0438\u0440\u0435\u043d\u043d\u044f \u043f\u0430\u043c\u0027\u044f\u0442\u0456", "title": "\u0420\u043e\u0437\u0448\u0438\u0440\u0435\u043d\u043d\u044f \u043f\u0430\u043c\u0027\u044f\u0442\u0456", "to": "Samsung Galaxy A35 5G 6/128Gb Awesome Navy (SM-A356BZKBEUC)", "width": 1}, {"from": "microSD 1 \u0422\u0411", "label": "\u0420\u043e\u0437\u0448\u0438\u0440\u0435\u043d\u043d\u044f \u043f\u0430\u043c\u0027\u044f\u0442\u0456", "title": "\u0420\u043e\u0437\u0448\u0438\u0440\u0435\u043d\u043d\u044f \u043f\u0430\u043c\u0027\u044f\u0442\u0456", "to": "Samsung Galaxy A25 5G 6/128Gb Black (SM-A256BZKDEUC)", "width": 1}, {"from": "\u041e\u043f\u0442\u0438\u0447\u043d\u0430", "label": "\u0421\u0442\u0430\u0431\u0456\u043b\u0456\u0437\u0430\u0446\u0456\u044f", "title": "\u0421\u0442\u0430\u0431\u0456\u043b\u0456\u0437\u0430\u0446\u0456\u044f", "to": "Apple iPhone 13 128Gb Green", "width": 1}, {"from": "\u041e\u043f\u0442\u0438\u0447\u043d\u0430", "label": "\u0421\u0442\u0430\u0431\u0456\u043b\u0456\u0437\u0430\u0446\u0456\u044f", "title": "\u0421\u0442\u0430\u0431\u0456\u043b\u0456\u0437\u0430\u0446\u0456\u044f", "to": "Samsung Galaxy S23FE 8/256Gb Graphite (SM-S711BZAGSEK)", "width": 1}, {"from": "\u041e\u043f\u0442\u0438\u0447\u043d\u0430", "label": "\u0421\u0442\u0430\u0431\u0456\u043b\u0456\u0437\u0430\u0446\u0456\u044f", "title": "\u0421\u0442\u0430\u0431\u0456\u043b\u0456\u0437\u0430\u0446\u0456\u044f", "to": "Samsung Galaxy S23 8/256Gb Black (SM-S911BZKGSEK)", "width": 1}, {"from": "\u041e\u043f\u0442\u0438\u0447\u043d\u0430", "label": "\u0421\u0442\u0430\u0431\u0456\u043b\u0456\u0437\u0430\u0446\u0456\u044f", "title": "\u0421\u0442\u0430\u0431\u0456\u043b\u0456\u0437\u0430\u0446\u0456\u044f", "to": "Apple iPhone 13 128Gb Blue", "width": 1}, {"from": "\u041e\u043f\u0442\u0438\u0447\u043d\u0430", "label": "\u0421\u0442\u0430\u0431\u0456\u043b\u0456\u0437\u0430\u0446\u0456\u044f", "title": "\u0421\u0442\u0430\u0431\u0456\u043b\u0456\u0437\u0430\u0446\u0456\u044f", "to": "Samsung Galaxy S24+ 12/512Gb Onyx Black (SM-S926BZKGEUC)", "width": 1}, {"from": "\u041e\u043f\u0442\u0438\u0447\u043d\u0430", "label": "\u0421\u0442\u0430\u0431\u0456\u043b\u0456\u0437\u0430\u0446\u0456\u044f", "title": "\u0421\u0442\u0430\u0431\u0456\u043b\u0456\u0437\u0430\u0446\u0456\u044f", "to": "Apple iPhone 13 128Gb Pink", "width": 1}, {"from": "\u041e\u043f\u0442\u0438\u0447\u043d\u0430", "label": "\u0421\u0442\u0430\u0431\u0456\u043b\u0456\u0437\u0430\u0446\u0456\u044f", "title": "\u0421\u0442\u0430\u0431\u0456\u043b\u0456\u0437\u0430\u0446\u0456\u044f", "to": "Samsung Galaxy S24 Ultra 12/256Gb Titanium Gray (SM-S928BZTGEUC)", "width": 1}, {"from": "\u041e\u043f\u0442\u0438\u0447\u043d\u0430", "label": "\u0421\u0442\u0430\u0431\u0456\u043b\u0456\u0437\u0430\u0446\u0456\u044f", "title": "\u0421\u0442\u0430\u0431\u0456\u043b\u0456\u0437\u0430\u0446\u0456\u044f", "to": "Samsung Galaxy S24 8/256Gb Onyx Black (SM-S921BZKGEUC)", "width": 1}, {"from": "\u041e\u043f\u0442\u0438\u0447\u043d\u0430", "label": "\u0421\u0442\u0430\u0431\u0456\u043b\u0456\u0437\u0430\u0446\u0456\u044f", "title": "\u0421\u0442\u0430\u0431\u0456\u043b\u0456\u0437\u0430\u0446\u0456\u044f", "to": "Apple iPhone 13 128Gb Starlight", "width": 1}, {"from": "\u041e\u043f\u0442\u0438\u0447\u043d\u0430", "label": "\u0421\u0442\u0430\u0431\u0456\u043b\u0456\u0437\u0430\u0446\u0456\u044f", "title": "\u0421\u0442\u0430\u0431\u0456\u043b\u0456\u0437\u0430\u0446\u0456\u044f", "to": "Samsung Galaxy A25 5G 6/128Gb Black (SM-A256BZKDEUC)", "width": 1}, {"from": "\u041e\u043f\u0442\u0438\u0447\u043d\u0430", "label": "\u0421\u0442\u0430\u0431\u0456\u043b\u0456\u0437\u0430\u0446\u0456\u044f", "title": "\u0421\u0442\u0430\u0431\u0456\u043b\u0456\u0437\u0430\u0446\u0456\u044f", "to": "Apple iPhone 13 128Gb Midnight", "width": 1}, {"from": "10\u0445 \u0446\u0438\u0444\u0440\u043e\u0432\u0438\u0439", "label": "\u0417\u0443\u043c", "title": "\u0417\u0443\u043c", "to": "Samsung Galaxy A35 5G 8/256Gb Awesome Lilac (SM-A356BLVGEUC)", "width": 1}, {"from": "10\u0445 \u0446\u0438\u0444\u0440\u043e\u0432\u0438\u0439", "label": "\u0417\u0443\u043c", "title": "\u0417\u0443\u043c", "to": "Samsung Galaxy A15 4/128Gb Black (SM-A155FZKDEUC)", "width": 1}, {"from": "10\u0445 \u0446\u0438\u0444\u0440\u043e\u0432\u0438\u0439", "label": "\u0417\u0443\u043c", "title": "\u0417\u0443\u043c", "to": "Samsung Galaxy A35 5G 6/128Gb Awesome Navy (SM-A356BZKBEUC)", "width": 1}, {"from": "10\u0445 \u0446\u0438\u0444\u0440\u043e\u0432\u0438\u0439", "label": "\u0417\u0443\u043c", "title": "\u0417\u0443\u043c", "to": "Samsung Galaxy A25 5G 6/128Gb Black (SM-A256BZKDEUC)", "width": 1}, {"from": "802.11ax (Wi-Fi 6)", "label": "\u0421\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u0438 Wi-Fi", "title": "\u0421\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u0438 Wi-Fi", "to": "Samsung Galaxy A35 5G 8/256Gb Awesome Lilac (SM-A356BLVGEUC)", "width": 1}, {"from": "802.11ax (Wi-Fi 6)", "label": "\u0421\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u0438 Wi-Fi", "title": "\u0421\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u0438 Wi-Fi", "to": "Samsung Galaxy A35 5G 6/128Gb Awesome Navy (SM-A356BZKBEUC)", "width": 1}, {"from": "5000 \u043c\u0410\u0433", "label": "\u0404\u043c\u043d\u0456\u0441\u0442\u044c \u0430\u043a\u0443\u043c\u0443\u043b\u044f\u0442\u043e\u0440\u0430", "title": "\u0404\u043c\u043d\u0456\u0441\u0442\u044c \u0430\u043a\u0443\u043c\u0443\u043b\u044f\u0442\u043e\u0440\u0430", "to": "Samsung Galaxy A35 5G 8/256Gb Awesome Lilac (SM-A356BLVGEUC)", "width": 1}, {"from": "5000 \u043c\u0410\u0433", "label": "\u0404\u043c\u043d\u0456\u0441\u0442\u044c \u0430\u043a\u0443\u043c\u0443\u043b\u044f\u0442\u043e\u0440\u0430", "title": "\u0404\u043c\u043d\u0456\u0441\u0442\u044c \u0430\u043a\u0443\u043c\u0443\u043b\u044f\u0442\u043e\u0440\u0430", "to": "Samsung Galaxy A15 4/128Gb Black (SM-A155FZKDEUC)", "width": 1}, {"from": "5000 \u043c\u0410\u0433", "label": "\u0404\u043c\u043d\u0456\u0441\u0442\u044c \u0430\u043a\u0443\u043c\u0443\u043b\u044f\u0442\u043e\u0440\u0430", "title": "\u0404\u043c\u043d\u0456\u0441\u0442\u044c \u0430\u043a\u0443\u043c\u0443\u043b\u044f\u0442\u043e\u0440\u0430", "to": "Samsung Galaxy S24 Ultra 12/256Gb Titanium Gray (SM-S928BZTGEUC)", "width": 1}, {"from": "5000 \u043c\u0410\u0433", "label": "\u0404\u043c\u043d\u0456\u0441\u0442\u044c \u0430\u043a\u0443\u043c\u0443\u043b\u044f\u0442\u043e\u0440\u0430", "title": "\u0404\u043c\u043d\u0456\u0441\u0442\u044c \u0430\u043a\u0443\u043c\u0443\u043b\u044f\u0442\u043e\u0440\u0430", "to": "Samsung Galaxy A35 5G 6/128Gb Awesome Navy (SM-A356BZKBEUC)", "width": 1}, {"from": "5000 \u043c\u0410\u0433", "label": "\u0404\u043c\u043d\u0456\u0441\u0442\u044c \u0430\u043a\u0443\u043c\u0443\u043b\u044f\u0442\u043e\u0440\u0430", "title": "\u0404\u043c\u043d\u0456\u0441\u0442\u044c \u0430\u043a\u0443\u043c\u0443\u043b\u044f\u0442\u043e\u0440\u0430", "to": "Samsung Galaxy A25 5G 6/128Gb Black (SM-A256BZKDEUC)", "width": 1}, {"from": "25 \u0412\u0442", "label": "\u041f\u043e\u0442\u0443\u0436\u043d\u0456\u0441\u0442\u044c \u0437\u0430\u0440\u044f\u0434\u043a\u0438", "title": "\u041f\u043e\u0442\u0443\u0436\u043d\u0456\u0441\u0442\u044c \u0437\u0430\u0440\u044f\u0434\u043a\u0438", "to": "Samsung Galaxy A35 5G 8/256Gb Awesome Lilac (SM-A356BLVGEUC)", "width": 1}, {"from": "25 \u0412\u0442", "label": "\u041f\u043e\u0442\u0443\u0436\u043d\u0456\u0441\u0442\u044c \u0437\u0430\u0440\u044f\u0434\u043a\u0438", "title": "\u041f\u043e\u0442\u0443\u0436\u043d\u0456\u0441\u0442\u044c \u0437\u0430\u0440\u044f\u0434\u043a\u0438", "to": "Samsung Galaxy S23 8/256Gb Black (SM-S911BZKGSEK)", "width": 1}, {"from": "25 \u0412\u0442", "label": "\u041f\u043e\u0442\u0443\u0436\u043d\u0456\u0441\u0442\u044c \u0437\u0430\u0440\u044f\u0434\u043a\u0438", "title": "\u041f\u043e\u0442\u0443\u0436\u043d\u0456\u0441\u0442\u044c \u0437\u0430\u0440\u044f\u0434\u043a\u0438", "to": "Samsung Galaxy S24 8/256Gb Onyx Black (SM-S921BZKGEUC)", "width": 1}, {"from": "25 \u0412\u0442", "label": "\u041f\u043e\u0442\u0443\u0436\u043d\u0456\u0441\u0442\u044c \u0437\u0430\u0440\u044f\u0434\u043a\u0438", "title": "\u041f\u043e\u0442\u0443\u0436\u043d\u0456\u0441\u0442\u044c \u0437\u0430\u0440\u044f\u0434\u043a\u0438", "to": "Samsung Galaxy A35 5G 6/128Gb Awesome Navy (SM-A356BZKBEUC)", "width": 1}, {"from": "\u0421\u043a\u0430\u043d\u0435\u0440 \u0432\u0456\u0434\u0431\u0438\u0442\u043a\u0456\u0432 \u043f\u0430\u043b\u044c\u0446\u0456\u0432", "label": "\u0411\u0456\u043e\u043c\u0435\u0442\u0440\u0438\u0447\u043d\u0438\u0439 \u0437\u0430\u0445\u0438\u0441\u0442", "title": "\u0411\u0456\u043e\u043c\u0435\u0442\u0440\u0438\u0447\u043d\u0438\u0439 \u0437\u0430\u0445\u0438\u0441\u0442", "to": "Samsung Galaxy A35 5G 8/256Gb Awesome Lilac (SM-A356BLVGEUC)", "width": 1}, {"from": "\u0421\u043a\u0430\u043d\u0435\u0440 \u0432\u0456\u0434\u0431\u0438\u0442\u043a\u0456\u0432 \u043f\u0430\u043b\u044c\u0446\u0456\u0432", "label": "\u0411\u0456\u043e\u043c\u0435\u0442\u0440\u0438\u0447\u043d\u0438\u0439 \u0437\u0430\u0445\u0438\u0441\u0442", "title": "\u0411\u0456\u043e\u043c\u0435\u0442\u0440\u0438\u0447\u043d\u0438\u0439 \u0437\u0430\u0445\u0438\u0441\u0442", "to": "Samsung Galaxy S23FE 8/256Gb Graphite (SM-S711BZAGSEK)", "width": 1}, {"from": "\u0421\u043a\u0430\u043d\u0435\u0440 \u0432\u0456\u0434\u0431\u0438\u0442\u043a\u0456\u0432 \u043f\u0430\u043b\u044c\u0446\u0456\u0432", "label": "\u0411\u0456\u043e\u043c\u0435\u0442\u0440\u0438\u0447\u043d\u0438\u0439 \u0437\u0430\u0445\u0438\u0441\u0442", "title": "\u0411\u0456\u043e\u043c\u0435\u0442\u0440\u0438\u0447\u043d\u0438\u0439 \u0437\u0430\u0445\u0438\u0441\u0442", "to": "Samsung Galaxy S23 8/256Gb Black (SM-S911BZKGSEK)", "width": 1}, {"from": "\u0421\u043a\u0430\u043d\u0435\u0440 \u0432\u0456\u0434\u0431\u0438\u0442\u043a\u0456\u0432 \u043f\u0430\u043b\u044c\u0446\u0456\u0432", "label": "\u0411\u0456\u043e\u043c\u0435\u0442\u0440\u0438\u0447\u043d\u0438\u0439 \u0437\u0430\u0445\u0438\u0441\u0442", "title": "\u0411\u0456\u043e\u043c\u0435\u0442\u0440\u0438\u0447\u043d\u0438\u0439 \u0437\u0430\u0445\u0438\u0441\u0442", "to": "Samsung Galaxy A15 4/128Gb Black (SM-A155FZKDEUC)", "width": 1}, {"from": "\u0421\u043a\u0430\u043d\u0435\u0440 \u0432\u0456\u0434\u0431\u0438\u0442\u043a\u0456\u0432 \u043f\u0430\u043b\u044c\u0446\u0456\u0432", "label": "\u0411\u0456\u043e\u043c\u0435\u0442\u0440\u0438\u0447\u043d\u0438\u0439 \u0437\u0430\u0445\u0438\u0441\u0442", "title": "\u0411\u0456\u043e\u043c\u0435\u0442\u0440\u0438\u0447\u043d\u0438\u0439 \u0437\u0430\u0445\u0438\u0441\u0442", "to": "Samsung Galaxy A35 5G 6/128Gb Awesome Navy (SM-A356BZKBEUC)", "width": 1}, {"from": "\u0421\u043a\u0430\u043d\u0435\u0440 \u0432\u0456\u0434\u0431\u0438\u0442\u043a\u0456\u0432 \u043f\u0430\u043b\u044c\u0446\u0456\u0432", "label": "\u0411\u0456\u043e\u043c\u0435\u0442\u0440\u0438\u0447\u043d\u0438\u0439 \u0437\u0430\u0445\u0438\u0441\u0442", "title": "\u0411\u0456\u043e\u043c\u0435\u0442\u0440\u0438\u0447\u043d\u0438\u0439 \u0437\u0430\u0445\u0438\u0441\u0442", "to": "Samsung Galaxy A25 5G 6/128Gb Black (SM-A256BZKDEUC)", "width": 1}, {"from": "\u041c\u0435\u0442\u0430\u043b", "label": "\u041c\u0430\u0442\u0435\u0440\u0456\u0430\u043b \u043a\u043e\u0440\u043f\u0443\u0441\u0443", "title": "\u041c\u0430\u0442\u0435\u0440\u0456\u0430\u043b \u043a\u043e\u0440\u043f\u0443\u0441\u0443", "to": "Samsung Galaxy S23FE 8/256Gb Graphite (SM-S711BZAGSEK)", "width": 1}, {"from": "\u041c\u0435\u0442\u0430\u043b", "label": "\u041c\u0430\u0442\u0435\u0440\u0456\u0430\u043b \u043a\u043e\u0440\u043f\u0443\u0441\u0443", "title": "\u041c\u0430\u0442\u0435\u0440\u0456\u0430\u043b \u043a\u043e\u0440\u043f\u0443\u0441\u0443", "to": "Samsung Galaxy S24+ 12/512Gb Onyx Black (SM-S926BZKGEUC)", "width": 1}, {"from": "\u041c\u0435\u0442\u0430\u043b", "label": "\u041c\u0430\u0442\u0435\u0440\u0456\u0430\u043b \u043a\u043e\u0440\u043f\u0443\u0441\u0443", "title": "\u041c\u0430\u0442\u0435\u0440\u0456\u0430\u043b \u043a\u043e\u0440\u043f\u0443\u0441\u0443", "to": "Samsung Galaxy S24 8/256Gb Onyx Black (SM-S921BZKGEUC)", "width": 1}, {"from": "8,2 \u043c\u043c", "label": "\u0413\u043b\u0438\u0431\u0438\u043d\u0430", "title": "\u0413\u043b\u0438\u0431\u0438\u043d\u0430", "to": "Samsung Galaxy A35 5G 8/256Gb Awesome Lilac (SM-A356BLVGEUC)", "width": 1}, {"from": "8,2 \u043c\u043c", "label": "\u0413\u043b\u0438\u0431\u0438\u043d\u0430", "title": "\u0413\u043b\u0438\u0431\u0438\u043d\u0430", "to": "Samsung Galaxy S23FE 8/256Gb Graphite (SM-S711BZAGSEK)", "width": 1}, {"from": "8,2 \u043c\u043c", "label": "\u0413\u043b\u0438\u0431\u0438\u043d\u0430", "title": "\u0413\u043b\u0438\u0431\u0438\u043d\u0430", "to": "Samsung Galaxy A35 5G 6/128Gb Awesome Navy (SM-A356BZKBEUC)", "width": 1}, {"from": "Samsung", "label": "\u0411\u0440\u0435\u043d\u0434", "title": "\u0411\u0440\u0435\u043d\u0434", "to": "Samsung Galaxy A35 5G 8/256Gb Awesome Lilac (SM-A356BLVGEUC)", "width": 1}, {"from": "Samsung", "label": "\u0411\u0440\u0435\u043d\u0434", "title": "\u0411\u0440\u0435\u043d\u0434", "to": "Samsung Galaxy S23FE 8/256Gb Graphite (SM-S711BZAGSEK)", "width": 1}, {"from": "Samsung", "label": "\u0411\u0440\u0435\u043d\u0434", "title": "\u0411\u0440\u0435\u043d\u0434", "to": "Samsung Galaxy S23 8/256Gb Black (SM-S911BZKGSEK)", "width": 1}, {"from": "Samsung", "label": "\u0411\u0440\u0435\u043d\u0434", "title": "\u0411\u0440\u0435\u043d\u0434", "to": "Samsung Galaxy A15 4/128Gb Black (SM-A155FZKDEUC)", "width": 1}, {"from": "Samsung", "label": "\u0411\u0440\u0435\u043d\u0434", "title": "\u0411\u0440\u0435\u043d\u0434", "to": "Samsung Galaxy S24+ 12/512Gb Onyx Black (SM-S926BZKGEUC)", "width": 1}, {"from": "Samsung", "label": "\u0411\u0440\u0435\u043d\u0434", "title": "\u0411\u0440\u0435\u043d\u0434", "to": "Samsung Galaxy S24 Ultra 12/256Gb Titanium Gray (SM-S928BZTGEUC)", "width": 1}, {"from": "Samsung", "label": "\u0411\u0440\u0435\u043d\u0434", "title": "\u0411\u0440\u0435\u043d\u0434", "to": "Samsung Galaxy S24 8/256Gb Onyx Black (SM-S921BZKGEUC)", "width": 1}, {"from": "Samsung", "label": "\u0411\u0440\u0435\u043d\u0434", "title": "\u0411\u0440\u0435\u043d\u0434", "to": "Samsung Galaxy A35 5G 6/128Gb Awesome Navy (SM-A356BZKBEUC)", "width": 1}, {"from": "Samsung", "label": "\u0411\u0440\u0435\u043d\u0434", "title": "\u0411\u0440\u0435\u043d\u0434", "to": "Samsung Galaxy A25 5G 6/128Gb Black (SM-A256BZKDEUC)", "width": 1}, {"from": "Samsung Galaxy A35 5G 8/256Gb Awesome Lilac (SM-A356BLVGEUC)", "label": "\u0422\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0456\u044f \u0437\u0430\u0445\u0438\u0441\u043d\u043e\u0433\u043e \u0441\u043a\u043b\u0430", "title": "\u0422\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0456\u044f \u0437\u0430\u0445\u0438\u0441\u043d\u043e\u0433\u043e \u0441\u043a\u043b\u0430", "to": "Corning Gorilla Glass Victus+", "width": 1}, {"from": "Samsung Galaxy A35 5G 8/256Gb Awesome Lilac (SM-A356BLVGEUC)", "label": "\u0421\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u0438 \u0437\u0432\u0027\u044f\u0437\u043a\u0443", "title": "\u0421\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u0438 \u0437\u0432\u0027\u044f\u0437\u043a\u0443", "to": "2G GSM, 3G WCDMA, 4G LTE FDD, 4G LTE TDD, 5G Sub6 FDD, 5G Sub6 TDD", "width": 1}, {"from": "Samsung Galaxy A35 5G 8/256Gb Awesome Lilac (SM-A356BLVGEUC)", "label": "\u041c\u043e\u0434\u0435\u043b\u044c \u043f\u0440\u043e\u0446\u0435\u0441\u043e\u0440\u0430", "title": "\u041c\u043e\u0434\u0435\u043b\u044c \u043f\u0440\u043e\u0446\u0435\u0441\u043e\u0440\u0430", "to": "Exynos 1380", "width": 1}, {"from": "Samsung Galaxy A35 5G 8/256Gb Awesome Lilac (SM-A356BLVGEUC)", "label": "\u0427\u0430\u0441\u0442\u043e\u0442\u0430 \u043f\u0440\u043e\u0446\u0435\u0441\u0441\u043e\u0440\u0430", "title": "\u0427\u0430\u0441\u0442\u043e\u0442\u0430 \u043f\u0440\u043e\u0446\u0435\u0441\u0441\u043e\u0440\u0430", "to": "4 \u0445 2,4 \u0413\u0413\u0446 + 4 \u0445 2,0 \u0413\u0413\u0446", "width": 1}, {"from": "Samsung Galaxy A35 5G 8/256Gb Awesome Lilac (SM-A356BLVGEUC)", "label": "\u041c\u043e\u0434\u0435\u043b\u044c \u0433\u0440\u0430\u0444\u0456\u0447\u043d\u043e\u0433\u043e \u043f\u0440\u043e\u0446\u0435\u0441\u043e\u0440\u0430", "title": "\u041c\u043e\u0434\u0435\u043b\u044c \u0433\u0440\u0430\u0444\u0456\u0447\u043d\u043e\u0433\u043e \u043f\u0440\u043e\u0446\u0435\u0441\u043e\u0440\u0430", "to": "ARM Mali-G68 MP5", "width": 1}, {"from": "Samsung Galaxy A35 5G 8/256Gb Awesome Lilac (SM-A356BLVGEUC)", "label": "\u041e\u0441\u043d\u043e\u0432\u043d\u0430 \u043a\u0430\u043c\u0435\u0440\u0430", "title": "\u041e\u0441\u043d\u043e\u0432\u043d\u0430 \u043a\u0430\u043c\u0435\u0440\u0430", "to": "50+8+5 \u041c\u043f", "width": 1}, {"from": "Samsung Galaxy A35 5G 8/256Gb Awesome Lilac (SM-A356BLVGEUC)", "label": "\u0424\u0440\u043e\u043d\u0442\u0430\u043b\u044c\u043d\u0430 \u043a\u0430\u043c\u0435\u0440\u0430", "title": "\u0424\u0440\u043e\u043d\u0442\u0430\u043b\u044c\u043d\u0430 \u043a\u0430\u043c\u0435\u0440\u0430", "to": "13 \u041c\u043f", "width": 1}, {"from": "Samsung Galaxy A35 5G 8/256Gb Awesome Lilac (SM-A356BLVGEUC)", "label": "\u041d\u0430\u0432\u0456\u0433\u0430\u0446\u0456\u0439\u043d\u0430 \u0441\u0438\u0441\u0442\u0435\u043c\u0430", "title": "\u041d\u0430\u0432\u0456\u0433\u0430\u0446\u0456\u0439\u043d\u0430 \u0441\u0438\u0441\u0442\u0435\u043c\u0430", "to": "GPS\nBeidou\nGalileo\nQZSS", "width": 1}, {"from": "Samsung Galaxy A35 5G 8/256Gb Awesome Lilac (SM-A356BLVGEUC)", "label": "\u041a\u043b\u0430\u0441 \u0437\u0430\u0445\u0438\u0441\u0442\u0443", "title": "\u041a\u043b\u0430\u0441 \u0437\u0430\u0445\u0438\u0441\u0442\u0443", "to": "IP67", "width": 1}, {"from": "Samsung Galaxy A35 5G 8/256Gb Awesome Lilac (SM-A356BLVGEUC)", "label": "\u041c\u0430\u0442\u0435\u0440\u0456\u0430\u043b \u043a\u043e\u0440\u043f\u0443\u0441\u0443", "title": "\u041c\u0430\u0442\u0435\u0440\u0456\u0430\u043b \u043a\u043e\u0440\u043f\u0443\u0441\u0443", "to": "\u041f\u043b\u0430\u0441\u0442\u0438\u043a\n\u0421\u043a\u043b\u043e", "width": 1}, {"from": "Samsung Galaxy A35 5G 8/256Gb Awesome Lilac (SM-A356BLVGEUC)", "label": "\u0412\u0438\u0441\u043e\u0442\u0430", "title": "\u0412\u0438\u0441\u043e\u0442\u0430", "to": "161,7 \u043c\u043c", "width": 1}, {"from": "Samsung Galaxy A35 5G 8/256Gb Awesome Lilac (SM-A356BLVGEUC)", "label": "\u0428\u0438\u0440\u0438\u043d\u0430", "title": "\u0428\u0438\u0440\u0438\u043d\u0430", "to": "78 \u043c\u043c", "width": 1}, {"from": "Samsung Galaxy A35 5G 8/256Gb Awesome Lilac (SM-A356BLVGEUC)", "label": "\u0412\u0430\u0433\u0430", "title": "\u0412\u0430\u0433\u0430", "to": "209 \u0433", "width": 1}, {"from": "Samsung Galaxy A35 5G 8/256Gb Awesome Lilac (SM-A356BLVGEUC)", "label": "\u041a\u043e\u043b\u0456\u0440 \u0432\u0438\u0440\u043e\u0431\u043d\u0438\u043a\u0430", "title": "\u041a\u043e\u043b\u0456\u0440 \u0432\u0438\u0440\u043e\u0431\u043d\u0438\u043a\u0430", "to": "\u041b\u0456\u043b\u043e\u0432\u0438\u0439", "width": 1}, {"from": "Samsung Galaxy A35 5G 8/256Gb Awesome Lilac (SM-A356BLVGEUC)", "label": "\u041a\u0440\u0430\u0457\u043d\u0430 \u0432\u0438\u0440\u043e\u0431\u043d\u0438\u0446\u0442\u0432\u0430", "title": "\u041a\u0440\u0430\u0457\u043d\u0430 \u0432\u0438\u0440\u043e\u0431\u043d\u0438\u0446\u0442\u0432\u0430", "to": "\u0412\u0027\u0454\u0442\u043d\u0430\u043c", "width": 1}, {"from": "Samsung Galaxy A35 5G 8/256Gb Awesome Lilac (SM-A356BLVGEUC)", "label": "\u0426\u0456\u043d\u0430", "title": "\u0426\u0456\u043d\u0430", "to": "14 999 \u20b4", "width": 1}, {"from": "Corning Gorilla Glass Victus+", "label": "\u0422\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0456\u044f \u0437\u0430\u0445\u0438\u0441\u043d\u043e\u0433\u043e \u0441\u043a\u043b\u0430", "title": "\u0422\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0456\u044f \u0437\u0430\u0445\u0438\u0441\u043d\u043e\u0433\u043e \u0441\u043a\u043b\u0430", "to": "Samsung Galaxy A35 5G 6/128Gb Awesome Navy (SM-A356BZKBEUC)", "width": 1}, {"from": "2G GSM, 3G WCDMA, 4G LTE FDD, 4G LTE TDD, 5G Sub6 FDD, 5G Sub6 TDD", "label": "\u0421\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u0438 \u0437\u0432\u0027\u044f\u0437\u043a\u0443", "title": "\u0421\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u0438 \u0437\u0432\u0027\u044f\u0437\u043a\u0443", "to": "Samsung Galaxy A35 5G 6/128Gb Awesome Navy (SM-A356BZKBEUC)", "width": 1}, {"from": "Exynos 1380", "label": "\u041c\u043e\u0434\u0435\u043b\u044c \u043f\u0440\u043e\u0446\u0435\u0441\u043e\u0440\u0430", "title": "\u041c\u043e\u0434\u0435\u043b\u044c \u043f\u0440\u043e\u0446\u0435\u0441\u043e\u0440\u0430", "to": "Samsung Galaxy A35 5G 6/128Gb Awesome Navy (SM-A356BZKBEUC)", "width": 1}, {"from": "4 \u0445 2,4 \u0413\u0413\u0446 + 4 \u0445 2,0 \u0413\u0413\u0446", "label": "\u0427\u0430\u0441\u0442\u043e\u0442\u0430 \u043f\u0440\u043e\u0446\u0435\u0441\u0441\u043e\u0440\u0430", "title": "\u0427\u0430\u0441\u0442\u043e\u0442\u0430 \u043f\u0440\u043e\u0446\u0435\u0441\u0441\u043e\u0440\u0430", "to": "Samsung Galaxy A35 5G 6/128Gb Awesome Navy (SM-A356BZKBEUC)", "width": 1}, {"from": "ARM Mali-G68 MP5", "label": "\u041c\u043e\u0434\u0435\u043b\u044c \u0433\u0440\u0430\u0444\u0456\u0447\u043d\u043e\u0433\u043e \u043f\u0440\u043e\u0446\u0435\u0441\u043e\u0440\u0430", "title": "\u041c\u043e\u0434\u0435\u043b\u044c \u0433\u0440\u0430\u0444\u0456\u0447\u043d\u043e\u0433\u043e \u043f\u0440\u043e\u0446\u0435\u0441\u043e\u0440\u0430", "to": "Samsung Galaxy A35 5G 6/128Gb Awesome Navy (SM-A356BZKBEUC)", "width": 1}, {"from": "50+8+5 \u041c\u043f", "label": "\u041e\u0441\u043d\u043e\u0432\u043d\u0430 \u043a\u0430\u043c\u0435\u0440\u0430", "title": "\u041e\u0441\u043d\u043e\u0432\u043d\u0430 \u043a\u0430\u043c\u0435\u0440\u0430", "to": "Samsung Galaxy A35 5G 6/128Gb Awesome Navy (SM-A356BZKBEUC)", "width": 1}, {"from": "13 \u041c\u043f", "label": "\u0424\u0440\u043e\u043d\u0442\u0430\u043b\u044c\u043d\u0430 \u043a\u0430\u043c\u0435\u0440\u0430", "title": "\u0424\u0440\u043e\u043d\u0442\u0430\u043b\u044c\u043d\u0430 \u043a\u0430\u043c\u0435\u0440\u0430", "to": "Samsung Galaxy A15 4/128Gb Black (SM-A155FZKDEUC)", "width": 1}, {"from": "13 \u041c\u043f", "label": "\u0424\u0440\u043e\u043d\u0442\u0430\u043b\u044c\u043d\u0430 \u043a\u0430\u043c\u0435\u0440\u0430", "title": "\u0424\u0440\u043e\u043d\u0442\u0430\u043b\u044c\u043d\u0430 \u043a\u0430\u043c\u0435\u0440\u0430", "to": "Samsung Galaxy A35 5G 6/128Gb Awesome Navy (SM-A356BZKBEUC)", "width": 1}, {"from": "13 \u041c\u043f", "label": "\u0424\u0440\u043e\u043d\u0442\u0430\u043b\u044c\u043d\u0430 \u043a\u0430\u043c\u0435\u0440\u0430", "title": "\u0424\u0440\u043e\u043d\u0442\u0430\u043b\u044c\u043d\u0430 \u043a\u0430\u043c\u0435\u0440\u0430", "to": "Samsung Galaxy A25 5G 6/128Gb Black (SM-A256BZKDEUC)", "width": 1}, {"from": "GPS\nBeidou\nGalileo\nQZSS", "label": "\u041d\u0430\u0432\u0456\u0433\u0430\u0446\u0456\u0439\u043d\u0430 \u0441\u0438\u0441\u0442\u0435\u043c\u0430", "title": "\u041d\u0430\u0432\u0456\u0433\u0430\u0446\u0456\u0439\u043d\u0430 \u0441\u0438\u0441\u0442\u0435\u043c\u0430", "to": "Samsung Galaxy S24+ 12/512Gb Onyx Black (SM-S926BZKGEUC)", "width": 1}, {"from": "GPS\nBeidou\nGalileo\nQZSS", "label": "\u041d\u0430\u0432\u0456\u0433\u0430\u0446\u0456\u0439\u043d\u0430 \u0441\u0438\u0441\u0442\u0435\u043c\u0430", "title": "\u041d\u0430\u0432\u0456\u0433\u0430\u0446\u0456\u0439\u043d\u0430 \u0441\u0438\u0441\u0442\u0435\u043c\u0430", "to": "Samsung Galaxy S24 Ultra 12/256Gb Titanium Gray (SM-S928BZTGEUC)", "width": 1}, {"from": "GPS\nBeidou\nGalileo\nQZSS", "label": "\u041d\u0430\u0432\u0456\u0433\u0430\u0446\u0456\u0439\u043d\u0430 \u0441\u0438\u0441\u0442\u0435\u043c\u0430", "title": "\u041d\u0430\u0432\u0456\u0433\u0430\u0446\u0456\u0439\u043d\u0430 \u0441\u0438\u0441\u0442\u0435\u043c\u0430", "to": "Samsung Galaxy S24 8/256Gb Onyx Black (SM-S921BZKGEUC)", "width": 1}, {"from": "GPS\nBeidou\nGalileo\nQZSS", "label": "\u041d\u0430\u0432\u0456\u0433\u0430\u0446\u0456\u0439\u043d\u0430 \u0441\u0438\u0441\u0442\u0435\u043c\u0430", "title": "\u041d\u0430\u0432\u0456\u0433\u0430\u0446\u0456\u0439\u043d\u0430 \u0441\u0438\u0441\u0442\u0435\u043c\u0430", "to": "Samsung Galaxy A35 5G 6/128Gb Awesome Navy (SM-A356BZKBEUC)", "width": 1}, {"from": "IP67", "label": "\u041a\u043b\u0430\u0441 \u0437\u0430\u0445\u0438\u0441\u0442\u0443", "title": "\u041a\u043b\u0430\u0441 \u0437\u0430\u0445\u0438\u0441\u0442\u0443", "to": "Samsung Galaxy A35 5G 6/128Gb Awesome Navy (SM-A356BZKBEUC)", "width": 1}, {"from": "\u041f\u043b\u0430\u0441\u0442\u0438\u043a\n\u0421\u043a\u043b\u043e", "label": "\u041c\u0430\u0442\u0435\u0440\u0456\u0430\u043b \u043a\u043e\u0440\u043f\u0443\u0441\u0443", "title": "\u041c\u0430\u0442\u0435\u0440\u0456\u0430\u043b \u043a\u043e\u0440\u043f\u0443\u0441\u0443", "to": "Samsung Galaxy A15 4/128Gb Black (SM-A155FZKDEUC)", "width": 1}, {"from": "\u041f\u043b\u0430\u0441\u0442\u0438\u043a\n\u0421\u043a\u043b\u043e", "label": "\u041c\u0430\u0442\u0435\u0440\u0456\u0430\u043b \u043a\u043e\u0440\u043f\u0443\u0441\u0443", "title": "\u041c\u0430\u0442\u0435\u0440\u0456\u0430\u043b \u043a\u043e\u0440\u043f\u0443\u0441\u0443", "to": "Samsung Galaxy A35 5G 6/128Gb Awesome Navy (SM-A356BZKBEUC)", "width": 1}, {"from": "161,7 \u043c\u043c", "label": "\u0412\u0438\u0441\u043e\u0442\u0430", "title": "\u0412\u0438\u0441\u043e\u0442\u0430", "to": "Samsung Galaxy A35 5G 6/128Gb Awesome Navy (SM-A356BZKBEUC)", "width": 1}, {"from": "78 \u043c\u043c", "label": "\u0428\u0438\u0440\u0438\u043d\u0430", "title": "\u0428\u0438\u0440\u0438\u043d\u0430", "to": "Samsung Galaxy A35 5G 6/128Gb Awesome Navy (SM-A356BZKBEUC)", "width": 1}, {"from": "209 \u0433", "label": "\u0412\u0430\u0433\u0430", "title": "\u0412\u0430\u0433\u0430", "to": "Samsung Galaxy S23FE 8/256Gb Graphite (SM-S711BZAGSEK)", "width": 1}, {"from": "209 \u0433", "label": "\u0412\u0430\u0433\u0430", "title": "\u0412\u0430\u0433\u0430", "to": "Samsung Galaxy A35 5G 6/128Gb Awesome Navy (SM-A356BZKBEUC)", "width": 1}, {"from": "\u0412\u0027\u0454\u0442\u043d\u0430\u043c", "label": "\u041a\u0440\u0430\u0457\u043d\u0430 \u0432\u0438\u0440\u043e\u0431\u043d\u0438\u0446\u0442\u0432\u0430", "title": "\u041a\u0440\u0430\u0457\u043d\u0430 \u0432\u0438\u0440\u043e\u0431\u043d\u0438\u0446\u0442\u0432\u0430", "to": "Samsung Galaxy S23FE 8/256Gb Graphite (SM-S711BZAGSEK)", "width": 1}, {"from": "\u0412\u0027\u0454\u0442\u043d\u0430\u043c", "label": "\u041a\u0440\u0430\u0457\u043d\u0430 \u0432\u0438\u0440\u043e\u0431\u043d\u0438\u0446\u0442\u0432\u0430", "title": "\u041a\u0440\u0430\u0457\u043d\u0430 \u0432\u0438\u0440\u043e\u0431\u043d\u0438\u0446\u0442\u0432\u0430", "to": "Samsung Galaxy S23 8/256Gb Black (SM-S911BZKGSEK)", "width": 1}, {"from": "\u0412\u0027\u0454\u0442\u043d\u0430\u043c", "label": "\u041a\u0440\u0430\u0457\u043d\u0430 \u0432\u0438\u0440\u043e\u0431\u043d\u0438\u0446\u0442\u0432\u0430", "title": "\u041a\u0440\u0430\u0457\u043d\u0430 \u0432\u0438\u0440\u043e\u0431\u043d\u0438\u0446\u0442\u0432\u0430", "to": "Samsung Galaxy A15 4/128Gb Black (SM-A155FZKDEUC)", "width": 1}, {"from": "\u0412\u0027\u0454\u0442\u043d\u0430\u043c", "label": "\u041a\u0440\u0430\u0457\u043d\u0430 \u0432\u0438\u0440\u043e\u0431\u043d\u0438\u0446\u0442\u0432\u0430", "title": "\u041a\u0440\u0430\u0457\u043d\u0430 \u0432\u0438\u0440\u043e\u0431\u043d\u0438\u0446\u0442\u0432\u0430", "to": "Samsung Galaxy S24+ 12/512Gb Onyx Black (SM-S926BZKGEUC)", "width": 1}, {"from": "\u0412\u0027\u0454\u0442\u043d\u0430\u043c", "label": "\u041a\u0440\u0430\u0457\u043d\u0430 \u0432\u0438\u0440\u043e\u0431\u043d\u0438\u0446\u0442\u0432\u0430", "title": "\u041a\u0440\u0430\u0457\u043d\u0430 \u0432\u0438\u0440\u043e\u0431\u043d\u0438\u0446\u0442\u0432\u0430", "to": "Samsung Galaxy S24 Ultra 12/256Gb Titanium Gray (SM-S928BZTGEUC)", "width": 1}, {"from": "\u0412\u0027\u0454\u0442\u043d\u0430\u043c", "label": "\u041a\u0440\u0430\u0457\u043d\u0430 \u0432\u0438\u0440\u043e\u0431\u043d\u0438\u0446\u0442\u0432\u0430", "title": "\u041a\u0440\u0430\u0457\u043d\u0430 \u0432\u0438\u0440\u043e\u0431\u043d\u0438\u0446\u0442\u0432\u0430", "to": "Samsung Galaxy S24 8/256Gb Onyx Black (SM-S921BZKGEUC)", "width": 1}, {"from": "\u0412\u0027\u0454\u0442\u043d\u0430\u043c", "label": "\u041a\u0440\u0430\u0457\u043d\u0430 \u0432\u0438\u0440\u043e\u0431\u043d\u0438\u0446\u0442\u0432\u0430", "title": "\u041a\u0440\u0430\u0457\u043d\u0430 \u0432\u0438\u0440\u043e\u0431\u043d\u0438\u0446\u0442\u0432\u0430", "to": "Samsung Galaxy A35 5G 6/128Gb Awesome Navy (SM-A356BZKBEUC)", "width": 1}, {"from": "\u0412\u0027\u0454\u0442\u043d\u0430\u043c", "label": "\u041a\u0440\u0430\u0457\u043d\u0430 \u0432\u0438\u0440\u043e\u0431\u043d\u0438\u0446\u0442\u0432\u0430", "title": "\u041a\u0440\u0430\u0457\u043d\u0430 \u0432\u0438\u0440\u043e\u0431\u043d\u0438\u0446\u0442\u0432\u0430", "to": "Samsung Galaxy A25 5G 6/128Gb Black (SM-A256BZKDEUC)", "width": 1}, {"from": "Apple iPhone 15 Pro Max 256Gb Blue Titanium", "label": "\u041a\u043e\u043b\u0456\u0440 \u0432\u0438\u0440\u043e\u0431\u043d\u0438\u043a\u0430", "title": "\u041a\u043e\u043b\u0456\u0440 \u0432\u0438\u0440\u043e\u0431\u043d\u0438\u043a\u0430", "to": "\u0421\u0438\u043d\u0456\u0439", "width": 1}, {"from": "\u0421\u0438\u043d\u0456\u0439", "label": "\u041a\u043e\u043b\u0456\u0440 \u0432\u0438\u0440\u043e\u0431\u043d\u0438\u043a\u0430", "title": "\u041a\u043e\u043b\u0456\u0440 \u0432\u0438\u0440\u043e\u0431\u043d\u0438\u043a\u0430", "to": "Apple iPhone 13 128Gb Blue", "width": 1}, {"from": "\u0421\u0438\u043d\u0456\u0439", "label": "\u041a\u043e\u043b\u0456\u0440 \u0432\u0438\u0440\u043e\u0431\u043d\u0438\u043a\u0430", "title": "\u041a\u043e\u043b\u0456\u0440 \u0432\u0438\u0440\u043e\u0431\u043d\u0438\u043a\u0430", "to": "Apple iPhone 15 Pro 128Gb Blue Titanium", "width": 1}, {"from": "\u0421\u0438\u043d\u0456\u0439", "label": "\u041a\u043e\u043b\u0456\u0440 \u0432\u0438\u0440\u043e\u0431\u043d\u0438\u043a\u0430", "title": "\u041a\u043e\u043b\u0456\u0440 \u0432\u0438\u0440\u043e\u0431\u043d\u0438\u043a\u0430", "to": "Samsung Galaxy A35 5G 6/128Gb Awesome Navy (SM-A356BZKBEUC)", "width": 1}, {"from": "Apple iPhone 13 128Gb Green", "label": "\u0414\u0456\u0430\u0433\u043e\u043d\u0430\u043b\u044c \u0434\u0438\u0441\u043f\u043b\u0435\u044f", "title": "\u0414\u0456\u0430\u0433\u043e\u043d\u0430\u043b\u044c \u0434\u0438\u0441\u043f\u043b\u0435\u044f", "to": "6,1\u0027\u0027", "width": 1}, {"from": "Apple iPhone 13 128Gb Green", "label": "\u0420\u043e\u0437\u0434\u0456\u043b\u044c\u043d\u0430 \u0437\u0434\u0430\u0442\u043d\u0456\u0441\u0442\u044c \u0435\u043a\u0440\u0430\u043d\u0443", "title": "\u0420\u043e\u0437\u0434\u0456\u043b\u044c\u043d\u0430 \u0437\u0434\u0430\u0442\u043d\u0456\u0441\u0442\u044c \u0435\u043a\u0440\u0430\u043d\u0443", "to": "2532\u04451170", "width": 1}, {"from": "Apple iPhone 13 128Gb Green", "label": "\u0421\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u0438 \u0437\u0432\u0027\u044f\u0437\u043a\u0443", "title": "\u0421\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u0438 \u0437\u0432\u0027\u044f\u0437\u043a\u0443", "to": "2G, 3G, 4G, 5G", "width": 1}, {"from": "Apple iPhone 13 128Gb Green", "label": "\u041a\u0456\u043b\u044c\u043a\u0456\u0441\u0442\u044c SIM-\u043a\u0430\u0440\u0442", "title": "\u041a\u0456\u043b\u044c\u043a\u0456\u0441\u0442\u044c SIM-\u043a\u0430\u0440\u0442", "to": "1 SIM", "width": 1}, {"from": "Apple iPhone 13 128Gb Green", "label": "\u041e\u043f\u0435\u0440\u0430\u0446\u0456\u0439\u043d\u0430 \u0441\u0438\u0441\u0442\u0435\u043c\u0430", "title": "\u041e\u043f\u0435\u0440\u0430\u0446\u0456\u0439\u043d\u0430 \u0441\u0438\u0441\u0442\u0435\u043c\u0430", "to": "Apple iOS 15", "width": 1}, {"from": "Apple iPhone 13 128Gb Green", "label": "\u041c\u043e\u0434\u0435\u043b\u044c \u043f\u0440\u043e\u0446\u0435\u0441\u043e\u0440\u0430", "title": "\u041c\u043e\u0434\u0435\u043b\u044c \u043f\u0440\u043e\u0446\u0435\u0441\u043e\u0440\u0430", "to": "Apple A15 Bionic", "width": 1}, {"from": "Apple iPhone 13 128Gb Green", "label": "\u0412\u0431\u0443\u0434\u043e\u0432\u0430\u043d\u0430 \u043f\u0430\u043c\u0027\u044f\u0442\u044c", "title": "\u0412\u0431\u0443\u0434\u043e\u0432\u0430\u043d\u0430 \u043f\u0430\u043c\u0027\u044f\u0442\u044c", "to": "128 \u0413\u0411", "width": 1}, {"from": "Apple iPhone 13 128Gb Green", "label": "\u041e\u0441\u043d\u043e\u0432\u043d\u0430 \u043a\u0430\u043c\u0435\u0440\u0430", "title": "\u041e\u0441\u043d\u043e\u0432\u043d\u0430 \u043a\u0430\u043c\u0435\u0440\u0430", "to": "12+12 \u041c\u043f", "width": 1}, {"from": "Apple iPhone 13 128Gb Green", "label": "\u0417\u0443\u043c", "title": "\u0417\u0443\u043c", "to": "2\u0445 \u043e\u043f\u0442\u0438\u0447\u043d\u0438\u0439\n5\u0445 \u0446\u0438\u0444\u0440\u043e\u0432\u0438\u0439", "width": 1}, {"from": "Apple iPhone 13 128Gb Green", "label": "Bluetooth", "title": "Bluetooth", "to": "\u0412\u0435\u0440\u0441\u0456\u044f 5.0", "width": 1}, {"from": "Apple iPhone 13 128Gb Green", "label": "\u0406\u043d\u0442\u0435\u0440\u0444\u0435\u0439\u0441 USB", "title": "\u0406\u043d\u0442\u0435\u0440\u0444\u0435\u0439\u0441 USB", "to": "Lightning", "width": 1}, {"from": "Apple iPhone 13 128Gb Green", "label": "\u0404\u043c\u043d\u0456\u0441\u0442\u044c \u0430\u043a\u0443\u043c\u0443\u043b\u044f\u0442\u043e\u0440\u0430", "title": "\u0404\u043c\u043d\u0456\u0441\u0442\u044c \u0430\u043a\u0443\u043c\u0443\u043b\u044f\u0442\u043e\u0440\u0430", "to": "3265 \u043c\u0410\u0433", "width": 1}, {"from": "Apple iPhone 13 128Gb Green", "label": "\u041a\u043e\u043c\u043f\u043b\u0435\u043a\u0442\u0430\u0446\u0456\u044f", "title": "\u041a\u043e\u043c\u043f\u043b\u0435\u043a\u0442\u0430\u0446\u0456\u044f", "to": "\u0421\u043c\u0430\u0440\u0442\u0444\u043e\u043d\n\u041a\u0430\u0431\u0435\u043b\u044c Lightning\n\u0406\u043d\u0441\u0442\u0440\u0443\u043a\u0446\u0456\u044f\n\u0413\u0430\u0440\u0430\u043d\u0442\u0456\u0439\u043d\u0438\u0439 \u0442\u0430\u043b\u043e\u043d", "width": 1}, {"from": "Apple iPhone 13 128Gb Green", "label": "\u041c\u0430\u0442\u0435\u0440\u0456\u0430\u043b \u043a\u043e\u0440\u043f\u0443\u0441\u0443", "title": "\u041c\u0430\u0442\u0435\u0440\u0456\u0430\u043b \u043a\u043e\u0440\u043f\u0443\u0441\u0443", "to": "\u041c\u0435\u0442\u0430\u043b\n\u0421\u043a\u043b\u043e", "width": 1}, {"from": "Apple iPhone 13 128Gb Green", "label": "\u0412\u0438\u0441\u043e\u0442\u0430", "title": "\u0412\u0438\u0441\u043e\u0442\u0430", "to": "146,7 \u043c\u043c", "width": 1}, {"from": "Apple iPhone 13 128Gb Green", "label": "\u0428\u0438\u0440\u0438\u043d\u0430", "title": "\u0428\u0438\u0440\u0438\u043d\u0430", "to": "71,5 \u043c\u043c", "width": 1}, {"from": "Apple iPhone 13 128Gb Green", "label": "\u0413\u043b\u0438\u0431\u0438\u043d\u0430", "title": "\u0413\u043b\u0438\u0431\u0438\u043d\u0430", "to": "7,65 \u043c\u043c", "width": 1}, {"from": "Apple iPhone 13 128Gb Green", "label": "\u0412\u0430\u0433\u0430", "title": "\u0412\u0430\u0433\u0430", "to": "174 \u0433", "width": 1}, {"from": "Apple iPhone 13 128Gb Green", "label": "\u0413\u0430\u0431\u0430\u0440\u0438\u0442\u0438 \u0443\u043f\u0430\u043a\u043e\u0432\u043a\u0438 (\u0412\u0445\u0428\u0445\u0413)", "title": "\u0413\u0430\u0431\u0430\u0440\u0438\u0442\u0438 \u0443\u043f\u0430\u043a\u043e\u0432\u043a\u0438 (\u0412\u0445\u0428\u0445\u0413)", "to": "8\u04452\u044518 \u0441\u043c", "width": 1}, {"from": "Apple iPhone 13 128Gb Green", "label": "\u0412\u0430\u0433\u0430 \u0432 \u0443\u043f\u0430\u043a\u043e\u0432\u0446\u0456, \u043a\u0433", "title": "\u0412\u0430\u0433\u0430 \u0432 \u0443\u043f\u0430\u043a\u043e\u0432\u0446\u0456, \u043a\u0433", "to": "0,332 \u043a\u0433", "width": 1}, {"from": "Apple iPhone 13 128Gb Green", "label": "\u041a\u043e\u043b\u0456\u0440 \u0432\u0438\u0440\u043e\u0431\u043d\u0438\u043a\u0430", "title": "\u041a\u043e\u043b\u0456\u0440 \u0432\u0438\u0440\u043e\u0431\u043d\u0438\u043a\u0430", "to": "\u0417\u0435\u043b\u0435\u043d\u0438\u0439", "width": 1}, {"from": "Apple iPhone 13 128Gb Green", "label": "\u0426\u0456\u043d\u0430", "title": "\u0426\u0456\u043d\u0430", "to": "26 999 \u20b4", "width": 1}, {"from": "6,1\u0027\u0027", "label": "\u0414\u0456\u0430\u0433\u043e\u043d\u0430\u043b\u044c \u0434\u0438\u0441\u043f\u043b\u0435\u044f", "title": "\u0414\u0456\u0430\u0433\u043e\u043d\u0430\u043b\u044c \u0434\u0438\u0441\u043f\u043b\u0435\u044f", "to": "Samsung Galaxy S23 8/256Gb Black (SM-S911BZKGSEK)", "width": 1}, {"from": "6,1\u0027\u0027", "label": "\u0414\u0456\u0430\u0433\u043e\u043d\u0430\u043b\u044c \u0434\u0438\u0441\u043f\u043b\u0435\u044f", "title": "\u0414\u0456\u0430\u0433\u043e\u043d\u0430\u043b\u044c \u0434\u0438\u0441\u043f\u043b\u0435\u044f", "to": "Apple iPhone 13 128Gb Blue", "width": 1}, {"from": "6,1\u0027\u0027", "label": "\u0414\u0456\u0430\u0433\u043e\u043d\u0430\u043b\u044c \u0434\u0438\u0441\u043f\u043b\u0435\u044f", "title": "\u0414\u0456\u0430\u0433\u043e\u043d\u0430\u043b\u044c \u0434\u0438\u0441\u043f\u043b\u0435\u044f", "to": "Apple iPhone 13 128Gb Pink", "width": 1}, {"from": "6,1\u0027\u0027", "label": "\u0414\u0456\u0430\u0433\u043e\u043d\u0430\u043b\u044c \u0434\u0438\u0441\u043f\u043b\u0435\u044f", "title": "\u0414\u0456\u0430\u0433\u043e\u043d\u0430\u043b\u044c \u0434\u0438\u0441\u043f\u043b\u0435\u044f", "to": "Apple iPhone 15 Pro 128Gb Blue Titanium", "width": 1}, {"from": "6,1\u0027\u0027", "label": "\u0414\u0456\u0430\u0433\u043e\u043d\u0430\u043b\u044c \u0434\u0438\u0441\u043f\u043b\u0435\u044f", "title": "\u0414\u0456\u0430\u0433\u043e\u043d\u0430\u043b\u044c \u0434\u0438\u0441\u043f\u043b\u0435\u044f", "to": "Apple iPhone 15 128Gb Black", "width": 1}, {"from": "6,1\u0027\u0027", "label": "\u0414\u0456\u0430\u0433\u043e\u043d\u0430\u043b\u044c \u0434\u0438\u0441\u043f\u043b\u0435\u044f", "title": "\u0414\u0456\u0430\u0433\u043e\u043d\u0430\u043b\u044c \u0434\u0438\u0441\u043f\u043b\u0435\u044f", "to": "Apple iPhone 13 128Gb Starlight", "width": 1}, {"from": "6,1\u0027\u0027", "label": "\u0414\u0456\u0430\u0433\u043e\u043d\u0430\u043b\u044c \u0434\u0438\u0441\u043f\u043b\u0435\u044f", "title": "\u0414\u0456\u0430\u0433\u043e\u043d\u0430\u043b\u044c \u0434\u0438\u0441\u043f\u043b\u0435\u044f", "to": "Apple iPhone 15 Pro 128Gb Natural Titanium", "width": 1}, {"from": "6,1\u0027\u0027", "label": "\u0414\u0456\u0430\u0433\u043e\u043d\u0430\u043b\u044c \u0434\u0438\u0441\u043f\u043b\u0435\u044f", "title": "\u0414\u0456\u0430\u0433\u043e\u043d\u0430\u043b\u044c \u0434\u0438\u0441\u043f\u043b\u0435\u044f", "to": "Apple iPhone 13 128Gb Midnight", "width": 1}, {"from": "2532\u04451170", "label": "\u0420\u043e\u0437\u0434\u0456\u043b\u044c\u043d\u0430 \u0437\u0434\u0430\u0442\u043d\u0456\u0441\u0442\u044c \u0435\u043a\u0440\u0430\u043d\u0443", "title": "\u0420\u043e\u0437\u0434\u0456\u043b\u044c\u043d\u0430 \u0437\u0434\u0430\u0442\u043d\u0456\u0441\u0442\u044c \u0435\u043a\u0440\u0430\u043d\u0443", "to": "Apple iPhone 13 128Gb Blue", "width": 1}, {"from": "2532\u04451170", "label": "\u0420\u043e\u0437\u0434\u0456\u043b\u044c\u043d\u0430 \u0437\u0434\u0430\u0442\u043d\u0456\u0441\u0442\u044c \u0435\u043a\u0440\u0430\u043d\u0443", "title": "\u0420\u043e\u0437\u0434\u0456\u043b\u044c\u043d\u0430 \u0437\u0434\u0430\u0442\u043d\u0456\u0441\u0442\u044c \u0435\u043a\u0440\u0430\u043d\u0443", "to": "Apple iPhone 13 128Gb Pink", "width": 1}, {"from": "2532\u04451170", "label": "\u0420\u043e\u0437\u0434\u0456\u043b\u044c\u043d\u0430 \u0437\u0434\u0430\u0442\u043d\u0456\u0441\u0442\u044c \u0435\u043a\u0440\u0430\u043d\u0443", "title": "\u0420\u043e\u0437\u0434\u0456\u043b\u044c\u043d\u0430 \u0437\u0434\u0430\u0442\u043d\u0456\u0441\u0442\u044c \u0435\u043a\u0440\u0430\u043d\u0443", "to": "Apple iPhone 13 128Gb Starlight", "width": 1}, {"from": "2532\u04451170", "label": "\u0420\u043e\u0437\u0434\u0456\u043b\u044c\u043d\u0430 \u0437\u0434\u0430\u0442\u043d\u0456\u0441\u0442\u044c \u0435\u043a\u0440\u0430\u043d\u0443", "title": "\u0420\u043e\u0437\u0434\u0456\u043b\u044c\u043d\u0430 \u0437\u0434\u0430\u0442\u043d\u0456\u0441\u0442\u044c \u0435\u043a\u0440\u0430\u043d\u0443", "to": "Apple iPhone 13 128Gb Midnight", "width": 1}, {"from": "2G, 3G, 4G, 5G", "label": "\u0421\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u0438 \u0437\u0432\u0027\u044f\u0437\u043a\u0443", "title": "\u0421\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u0438 \u0437\u0432\u0027\u044f\u0437\u043a\u0443", "to": "Samsung Galaxy S23 8/256Gb Black (SM-S911BZKGSEK)", "width": 1}, {"from": "2G, 3G, 4G, 5G", "label": "\u0421\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u0438 \u0437\u0432\u0027\u044f\u0437\u043a\u0443", "title": "\u0421\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u0438 \u0437\u0432\u0027\u044f\u0437\u043a\u0443", "to": "Apple iPhone 13 128Gb Blue", "width": 1}, {"from": "2G, 3G, 4G, 5G", "label": "\u0421\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u0438 \u0437\u0432\u0027\u044f\u0437\u043a\u0443", "title": "\u0421\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u0438 \u0437\u0432\u0027\u044f\u0437\u043a\u0443", "to": "Apple iPhone 13 128Gb Pink", "width": 1}, {"from": "2G, 3G, 4G, 5G", "label": "\u0421\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u0438 \u0437\u0432\u0027\u044f\u0437\u043a\u0443", "title": "\u0421\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u0438 \u0437\u0432\u0027\u044f\u0437\u043a\u0443", "to": "Apple iPhone 13 128Gb Starlight", "width": 1}, {"from": "2G, 3G, 4G, 5G", "label": "\u0421\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u0438 \u0437\u0432\u0027\u044f\u0437\u043a\u0443", "title": "\u0421\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u0438 \u0437\u0432\u0027\u044f\u0437\u043a\u0443", "to": "Apple iPhone 13 128Gb Midnight", "width": 1}, {"from": "1 SIM", "label": "\u041a\u0456\u043b\u044c\u043a\u0456\u0441\u0442\u044c SIM-\u043a\u0430\u0440\u0442", "title": "\u041a\u0456\u043b\u044c\u043a\u0456\u0441\u0442\u044c SIM-\u043a\u0430\u0440\u0442", "to": "Apple iPhone 13 128Gb Blue", "width": 1}, {"from": "1 SIM", "label": "\u041a\u0456\u043b\u044c\u043a\u0456\u0441\u0442\u044c SIM-\u043a\u0430\u0440\u0442", "title": "\u041a\u0456\u043b\u044c\u043a\u0456\u0441\u0442\u044c SIM-\u043a\u0430\u0440\u0442", "to": "Apple iPhone 13 128Gb Pink", "width": 1}, {"from": "1 SIM", "label": "\u041a\u0456\u043b\u044c\u043a\u0456\u0441\u0442\u044c SIM-\u043a\u0430\u0440\u0442", "title": "\u041a\u0456\u043b\u044c\u043a\u0456\u0441\u0442\u044c SIM-\u043a\u0430\u0440\u0442", "to": "Apple iPhone 13 128Gb Starlight", "width": 1}, {"from": "1 SIM", "label": "\u041a\u0456\u043b\u044c\u043a\u0456\u0441\u0442\u044c SIM-\u043a\u0430\u0440\u0442", "title": "\u041a\u0456\u043b\u044c\u043a\u0456\u0441\u0442\u044c SIM-\u043a\u0430\u0440\u0442", "to": "Apple iPhone 13 128Gb Midnight", "width": 1}, {"from": "Apple iOS 15", "label": "\u041e\u043f\u0435\u0440\u0430\u0446\u0456\u0439\u043d\u0430 \u0441\u0438\u0441\u0442\u0435\u043c\u0430", "title": "\u041e\u043f\u0435\u0440\u0430\u0446\u0456\u0439\u043d\u0430 \u0441\u0438\u0441\u0442\u0435\u043c\u0430", "to": "Apple iPhone 13 128Gb Blue", "width": 1}, {"from": "Apple iOS 15", "label": "\u041e\u043f\u0435\u0440\u0430\u0446\u0456\u0439\u043d\u0430 \u0441\u0438\u0441\u0442\u0435\u043c\u0430", "title": "\u041e\u043f\u0435\u0440\u0430\u0446\u0456\u0439\u043d\u0430 \u0441\u0438\u0441\u0442\u0435\u043c\u0430", "to": "Apple iPhone 13 128Gb Pink", "width": 1}, {"from": "Apple iOS 15", "label": "\u041e\u043f\u0435\u0440\u0430\u0446\u0456\u0439\u043d\u0430 \u0441\u0438\u0441\u0442\u0435\u043c\u0430", "title": "\u041e\u043f\u0435\u0440\u0430\u0446\u0456\u0439\u043d\u0430 \u0441\u0438\u0441\u0442\u0435\u043c\u0430", "to": "Apple iPhone 13 128Gb Starlight", "width": 1}, {"from": "Apple iOS 15", "label": "\u041e\u043f\u0435\u0440\u0430\u0446\u0456\u0439\u043d\u0430 \u0441\u0438\u0441\u0442\u0435\u043c\u0430", "title": "\u041e\u043f\u0435\u0440\u0430\u0446\u0456\u0439\u043d\u0430 \u0441\u0438\u0441\u0442\u0435\u043c\u0430", "to": "Apple iPhone 13 128Gb Midnight", "width": 1}, {"from": "Apple A15 Bionic", "label": "\u041c\u043e\u0434\u0435\u043b\u044c \u043f\u0440\u043e\u0446\u0435\u0441\u043e\u0440\u0430", "title": "\u041c\u043e\u0434\u0435\u043b\u044c \u043f\u0440\u043e\u0446\u0435\u0441\u043e\u0440\u0430", "to": "Apple iPhone 13 128Gb Blue", "width": 1}, {"from": "Apple A15 Bionic", "label": "\u041c\u043e\u0434\u0435\u043b\u044c \u043f\u0440\u043e\u0446\u0435\u0441\u043e\u0440\u0430", "title": "\u041c\u043e\u0434\u0435\u043b\u044c \u043f\u0440\u043e\u0446\u0435\u0441\u043e\u0440\u0430", "to": "Apple iPhone 13 128Gb Pink", "width": 1}, {"from": "Apple A15 Bionic", "label": "\u041c\u043e\u0434\u0435\u043b\u044c \u043f\u0440\u043e\u0446\u0435\u0441\u043e\u0440\u0430", "title": "\u041c\u043e\u0434\u0435\u043b\u044c \u043f\u0440\u043e\u0446\u0435\u0441\u043e\u0440\u0430", "to": "Apple iPhone 13 128Gb Starlight", "width": 1}, {"from": "Apple A15 Bionic", "label": "\u041c\u043e\u0434\u0435\u043b\u044c \u043f\u0440\u043e\u0446\u0435\u0441\u043e\u0440\u0430", "title": "\u041c\u043e\u0434\u0435\u043b\u044c \u043f\u0440\u043e\u0446\u0435\u0441\u043e\u0440\u0430", "to": "Apple iPhone 13 128Gb Midnight", "width": 1}, {"from": "128 \u0413\u0411", "label": "\u0412\u0431\u0443\u0434\u043e\u0432\u0430\u043d\u0430 \u043f\u0430\u043c\u0027\u044f\u0442\u044c", "title": "\u0412\u0431\u0443\u0434\u043e\u0432\u0430\u043d\u0430 \u043f\u0430\u043c\u0027\u044f\u0442\u044c", "to": "Apple iPhone 13 128Gb Blue", "width": 1}, {"from": "128 \u0413\u0411", "label": "\u0412\u0431\u0443\u0434\u043e\u0432\u0430\u043d\u0430 \u043f\u0430\u043c\u0027\u044f\u0442\u044c", "title": "\u0412\u0431\u0443\u0434\u043e\u0432\u0430\u043d\u0430 \u043f\u0430\u043c\u0027\u044f\u0442\u044c", "to": "Samsung Galaxy A15 4/128Gb Black (SM-A155FZKDEUC)", "width": 1}, {"from": "128 \u0413\u0411", "label": "\u0412\u0431\u0443\u0434\u043e\u0432\u0430\u043d\u0430 \u043f\u0430\u043c\u0027\u044f\u0442\u044c", "title": "\u0412\u0431\u0443\u0434\u043e\u0432\u0430\u043d\u0430 \u043f\u0430\u043c\u0027\u044f\u0442\u044c", "to": "Apple iPhone 13 128Gb Pink", "width": 1}, {"from": "128 \u0413\u0411", "label": "\u0412\u0431\u0443\u0434\u043e\u0432\u0430\u043d\u0430 \u043f\u0430\u043c\u0027\u044f\u0442\u044c", "title": "\u0412\u0431\u0443\u0434\u043e\u0432\u0430\u043d\u0430 \u043f\u0430\u043c\u0027\u044f\u0442\u044c", "to": "Apple iPhone 15 Pro 128Gb Blue Titanium", "width": 1}, {"from": "128 \u0413\u0411", "label": "\u0412\u0431\u0443\u0434\u043e\u0432\u0430\u043d\u0430 \u043f\u0430\u043c\u0027\u044f\u0442\u044c", "title": "\u0412\u0431\u0443\u0434\u043e\u0432\u0430\u043d\u0430 \u043f\u0430\u043c\u0027\u044f\u0442\u044c", "to": "Apple iPhone 15 128Gb Black", "width": 1}, {"from": "128 \u0413\u0411", "label": "\u0412\u0431\u0443\u0434\u043e\u0432\u0430\u043d\u0430 \u043f\u0430\u043c\u0027\u044f\u0442\u044c", "title": "\u0412\u0431\u0443\u0434\u043e\u0432\u0430\u043d\u0430 \u043f\u0430\u043c\u0027\u044f\u0442\u044c", "to": "Apple iPhone 13 128Gb Starlight", "width": 1}, {"from": "128 \u0413\u0411", "label": "\u0412\u0431\u0443\u0434\u043e\u0432\u0430\u043d\u0430 \u043f\u0430\u043c\u0027\u044f\u0442\u044c", "title": "\u0412\u0431\u0443\u0434\u043e\u0432\u0430\u043d\u0430 \u043f\u0430\u043c\u0027\u044f\u0442\u044c", "to": "Samsung Galaxy A35 5G 6/128Gb Awesome Navy (SM-A356BZKBEUC)", "width": 1}, {"from": "128 \u0413\u0411", "label": "\u0412\u0431\u0443\u0434\u043e\u0432\u0430\u043d\u0430 \u043f\u0430\u043c\u0027\u044f\u0442\u044c", "title": "\u0412\u0431\u0443\u0434\u043e\u0432\u0430\u043d\u0430 \u043f\u0430\u043c\u0027\u044f\u0442\u044c", "to": "Apple iPhone 15 Pro 128Gb Natural Titanium", "width": 1}, {"from": "128 \u0413\u0411", "label": "\u0412\u0431\u0443\u0434\u043e\u0432\u0430\u043d\u0430 \u043f\u0430\u043c\u0027\u044f\u0442\u044c", "title": "\u0412\u0431\u0443\u0434\u043e\u0432\u0430\u043d\u0430 \u043f\u0430\u043c\u0027\u044f\u0442\u044c", "to": "Samsung Galaxy A25 5G 6/128Gb Black (SM-A256BZKDEUC)", "width": 1}, {"from": "128 \u0413\u0411", "label": "\u0412\u0431\u0443\u0434\u043e\u0432\u0430\u043d\u0430 \u043f\u0430\u043c\u0027\u044f\u0442\u044c", "title": "\u0412\u0431\u0443\u0434\u043e\u0432\u0430\u043d\u0430 \u043f\u0430\u043c\u0027\u044f\u0442\u044c", "to": "Apple iPhone 13 128Gb Midnight", "width": 1}, {"from": "12+12 \u041c\u043f", "label": "\u041e\u0441\u043d\u043e\u0432\u043d\u0430 \u043a\u0430\u043c\u0435\u0440\u0430", "title": "\u041e\u0441\u043d\u043e\u0432\u043d\u0430 \u043a\u0430\u043c\u0435\u0440\u0430", "to": "Apple iPhone 13 128Gb Blue", "width": 1}, {"from": "12+12 \u041c\u043f", "label": "\u041e\u0441\u043d\u043e\u0432\u043d\u0430 \u043a\u0430\u043c\u0435\u0440\u0430", "title": "\u041e\u0441\u043d\u043e\u0432\u043d\u0430 \u043a\u0430\u043c\u0435\u0440\u0430", "to": "Apple iPhone 13 128Gb Pink", "width": 1}, {"from": "12+12 \u041c\u043f", "label": "\u041e\u0441\u043d\u043e\u0432\u043d\u0430 \u043a\u0430\u043c\u0435\u0440\u0430", "title": "\u041e\u0441\u043d\u043e\u0432\u043d\u0430 \u043a\u0430\u043c\u0435\u0440\u0430", "to": "Apple iPhone 13 128Gb Starlight", "width": 1}, {"from": "12+12 \u041c\u043f", "label": "\u041e\u0441\u043d\u043e\u0432\u043d\u0430 \u043a\u0430\u043c\u0435\u0440\u0430", "title": "\u041e\u0441\u043d\u043e\u0432\u043d\u0430 \u043a\u0430\u043c\u0435\u0440\u0430", "to": "Apple iPhone 13 128Gb Midnight", "width": 1}, {"from": "2\u0445 \u043e\u043f\u0442\u0438\u0447\u043d\u0438\u0439\n5\u0445 \u0446\u0438\u0444\u0440\u043e\u0432\u0438\u0439", "label": "\u0417\u0443\u043c", "title": "\u0417\u0443\u043c", "to": "Apple iPhone 13 128Gb Blue", "width": 1}, {"from": "2\u0445 \u043e\u043f\u0442\u0438\u0447\u043d\u0438\u0439\n5\u0445 \u0446\u0438\u0444\u0440\u043e\u0432\u0438\u0439", "label": "\u0417\u0443\u043c", "title": "\u0417\u0443\u043c", "to": "Apple iPhone 13 128Gb Pink", "width": 1}, {"from": "2\u0445 \u043e\u043f\u0442\u0438\u0447\u043d\u0438\u0439\n5\u0445 \u0446\u0438\u0444\u0440\u043e\u0432\u0438\u0439", "label": "\u0417\u0443\u043c", "title": "\u0417\u0443\u043c", "to": "Apple iPhone 13 128Gb Starlight", "width": 1}, {"from": "2\u0445 \u043e\u043f\u0442\u0438\u0447\u043d\u0438\u0439\n5\u0445 \u0446\u0438\u0444\u0440\u043e\u0432\u0438\u0439", "label": "\u0417\u0443\u043c", "title": "\u0417\u0443\u043c", "to": "Apple iPhone 13 128Gb Midnight", "width": 1}, {"from": "\u0412\u0435\u0440\u0441\u0456\u044f 5.0", "label": "Bluetooth", "title": "Bluetooth", "to": "Apple iPhone 13 128Gb Blue", "width": 1}, {"from": "\u0412\u0435\u0440\u0441\u0456\u044f 5.0", "label": "Bluetooth", "title": "Bluetooth", "to": "Apple iPhone 13 128Gb Pink", "width": 1}, {"from": "\u0412\u0435\u0440\u0441\u0456\u044f 5.0", "label": "Bluetooth", "title": "Bluetooth", "to": "Apple iPhone 13 128Gb Starlight", "width": 1}, {"from": "\u0412\u0435\u0440\u0441\u0456\u044f 5.0", "label": "Bluetooth", "title": "Bluetooth", "to": "Apple iPhone 13 128Gb Midnight", "width": 1}, {"from": "Lightning", "label": "\u0406\u043d\u0442\u0435\u0440\u0444\u0435\u0439\u0441 USB", "title": "\u0406\u043d\u0442\u0435\u0440\u0444\u0435\u0439\u0441 USB", "to": "Apple iPhone 13 128Gb Blue", "width": 1}, {"from": "Lightning", "label": "\u0406\u043d\u0442\u0435\u0440\u0444\u0435\u0439\u0441 USB", "title": "\u0406\u043d\u0442\u0435\u0440\u0444\u0435\u0439\u0441 USB", "to": "Apple iPhone 13 128Gb Pink", "width": 1}, {"from": "Lightning", "label": "\u0406\u043d\u0442\u0435\u0440\u0444\u0435\u0439\u0441 USB", "title": "\u0406\u043d\u0442\u0435\u0440\u0444\u0435\u0439\u0441 USB", "to": "Apple iPhone 13 128Gb Starlight", "width": 1}, {"from": "Lightning", "label": "\u0406\u043d\u0442\u0435\u0440\u0444\u0435\u0439\u0441 USB", "title": "\u0406\u043d\u0442\u0435\u0440\u0444\u0435\u0439\u0441 USB", "to": "Apple iPhone 13 128Gb Midnight", "width": 1}, {"from": "3265 \u043c\u0410\u0433", "label": "\u0404\u043c\u043d\u0456\u0441\u0442\u044c \u0430\u043a\u0443\u043c\u0443\u043b\u044f\u0442\u043e\u0440\u0430", "title": "\u0404\u043c\u043d\u0456\u0441\u0442\u044c \u0430\u043a\u0443\u043c\u0443\u043b\u044f\u0442\u043e\u0440\u0430", "to": "Apple iPhone 13 128Gb Blue", "width": 1}, {"from": "3265 \u043c\u0410\u0433", "label": "\u0404\u043c\u043d\u0456\u0441\u0442\u044c \u0430\u043a\u0443\u043c\u0443\u043b\u044f\u0442\u043e\u0440\u0430", "title": "\u0404\u043c\u043d\u0456\u0441\u0442\u044c \u0430\u043a\u0443\u043c\u0443\u043b\u044f\u0442\u043e\u0440\u0430", "to": "Apple iPhone 13 128Gb Pink", "width": 1}, {"from": "3265 \u043c\u0410\u0433", "label": "\u0404\u043c\u043d\u0456\u0441\u0442\u044c \u0430\u043a\u0443\u043c\u0443\u043b\u044f\u0442\u043e\u0440\u0430", "title": "\u0404\u043c\u043d\u0456\u0441\u0442\u044c \u0430\u043a\u0443\u043c\u0443\u043b\u044f\u0442\u043e\u0440\u0430", "to": "Apple iPhone 13 128Gb Starlight", "width": 1}, {"from": "3265 \u043c\u0410\u0433", "label": "\u0404\u043c\u043d\u0456\u0441\u0442\u044c \u0430\u043a\u0443\u043c\u0443\u043b\u044f\u0442\u043e\u0440\u0430", "title": "\u0404\u043c\u043d\u0456\u0441\u0442\u044c \u0430\u043a\u0443\u043c\u0443\u043b\u044f\u0442\u043e\u0440\u0430", "to": "Apple iPhone 13 128Gb Midnight", "width": 1}, {"from": "\u0421\u043c\u0430\u0440\u0442\u0444\u043e\u043d\n\u041a\u0430\u0431\u0435\u043b\u044c Lightning\n\u0406\u043d\u0441\u0442\u0440\u0443\u043a\u0446\u0456\u044f\n\u0413\u0430\u0440\u0430\u043d\u0442\u0456\u0439\u043d\u0438\u0439 \u0442\u0430\u043b\u043e\u043d", "label": "\u041a\u043e\u043c\u043f\u043b\u0435\u043a\u0442\u0430\u0446\u0456\u044f", "title": "\u041a\u043e\u043c\u043f\u043b\u0435\u043a\u0442\u0430\u0446\u0456\u044f", "to": "Apple iPhone 13 128Gb Blue", "width": 1}, {"from": "\u0421\u043c\u0430\u0440\u0442\u0444\u043e\u043d\n\u041a\u0430\u0431\u0435\u043b\u044c Lightning\n\u0406\u043d\u0441\u0442\u0440\u0443\u043a\u0446\u0456\u044f\n\u0413\u0430\u0440\u0430\u043d\u0442\u0456\u0439\u043d\u0438\u0439 \u0442\u0430\u043b\u043e\u043d", "label": "\u041a\u043e\u043c\u043f\u043b\u0435\u043a\u0442\u0430\u0446\u0456\u044f", "title": "\u041a\u043e\u043c\u043f\u043b\u0435\u043a\u0442\u0430\u0446\u0456\u044f", "to": "Apple iPhone 13 128Gb Pink", "width": 1}, {"from": "\u0421\u043c\u0430\u0440\u0442\u0444\u043e\u043d\n\u041a\u0430\u0431\u0435\u043b\u044c Lightning\n\u0406\u043d\u0441\u0442\u0440\u0443\u043a\u0446\u0456\u044f\n\u0413\u0430\u0440\u0430\u043d\u0442\u0456\u0439\u043d\u0438\u0439 \u0442\u0430\u043b\u043e\u043d", "label": "\u041a\u043e\u043c\u043f\u043b\u0435\u043a\u0442\u0430\u0446\u0456\u044f", "title": "\u041a\u043e\u043c\u043f\u043b\u0435\u043a\u0442\u0430\u0446\u0456\u044f", "to": "Apple iPhone 13 128Gb Starlight", "width": 1}, {"from": "\u0421\u043c\u0430\u0440\u0442\u0444\u043e\u043d\n\u041a\u0430\u0431\u0435\u043b\u044c Lightning\n\u0406\u043d\u0441\u0442\u0440\u0443\u043a\u0446\u0456\u044f\n\u0413\u0430\u0440\u0430\u043d\u0442\u0456\u0439\u043d\u0438\u0439 \u0442\u0430\u043b\u043e\u043d", "label": "\u041a\u043e\u043c\u043f\u043b\u0435\u043a\u0442\u0430\u0446\u0456\u044f", "title": "\u041a\u043e\u043c\u043f\u043b\u0435\u043a\u0442\u0430\u0446\u0456\u044f", "to": "Apple iPhone 13 128Gb Midnight", "width": 1}, {"from": "\u041c\u0435\u0442\u0430\u043b\n\u0421\u043a\u043b\u043e", "label": "\u041c\u0430\u0442\u0435\u0440\u0456\u0430\u043b \u043a\u043e\u0440\u043f\u0443\u0441\u0443", "title": "\u041c\u0430\u0442\u0435\u0440\u0456\u0430\u043b \u043a\u043e\u0440\u043f\u0443\u0441\u0443", "to": "Apple iPhone 13 128Gb Blue", "width": 1}, {"from": "\u041c\u0435\u0442\u0430\u043b\n\u0421\u043a\u043b\u043e", "label": "\u041c\u0430\u0442\u0435\u0440\u0456\u0430\u043b \u043a\u043e\u0440\u043f\u0443\u0441\u0443", "title": "\u041c\u0430\u0442\u0435\u0440\u0456\u0430\u043b \u043a\u043e\u0440\u043f\u0443\u0441\u0443", "to": "Apple iPhone 13 128Gb Pink", "width": 1}, {"from": "\u041c\u0435\u0442\u0430\u043b\n\u0421\u043a\u043b\u043e", "label": "\u041c\u0430\u0442\u0435\u0440\u0456\u0430\u043b \u043a\u043e\u0440\u043f\u0443\u0441\u0443", "title": "\u041c\u0430\u0442\u0435\u0440\u0456\u0430\u043b \u043a\u043e\u0440\u043f\u0443\u0441\u0443", "to": "Apple iPhone 15 128Gb Black", "width": 1}, {"from": "\u041c\u0435\u0442\u0430\u043b\n\u0421\u043a\u043b\u043e", "label": "\u041c\u0430\u0442\u0435\u0440\u0456\u0430\u043b \u043a\u043e\u0440\u043f\u0443\u0441\u0443", "title": "\u041c\u0430\u0442\u0435\u0440\u0456\u0430\u043b \u043a\u043e\u0440\u043f\u0443\u0441\u0443", "to": "Apple iPhone 13 128Gb Starlight", "width": 1}, {"from": "\u041c\u0435\u0442\u0430\u043b\n\u0421\u043a\u043b\u043e", "label": "\u041c\u0430\u0442\u0435\u0440\u0456\u0430\u043b \u043a\u043e\u0440\u043f\u0443\u0441\u0443", "title": "\u041c\u0430\u0442\u0435\u0440\u0456\u0430\u043b \u043a\u043e\u0440\u043f\u0443\u0441\u0443", "to": "Apple iPhone 13 128Gb Midnight", "width": 1}, {"from": "146,7 \u043c\u043c", "label": "\u0412\u0438\u0441\u043e\u0442\u0430", "title": "\u0412\u0438\u0441\u043e\u0442\u0430", "to": "Apple iPhone 13 128Gb Blue", "width": 1}, {"from": "146,7 \u043c\u043c", "label": "\u0412\u0438\u0441\u043e\u0442\u0430", "title": "\u0412\u0438\u0441\u043e\u0442\u0430", "to": "Apple iPhone 13 128Gb Pink", "width": 1}, {"from": "146,7 \u043c\u043c", "label": "\u0412\u0438\u0441\u043e\u0442\u0430", "title": "\u0412\u0438\u0441\u043e\u0442\u0430", "to": "Apple iPhone 13 128Gb Starlight", "width": 1}, {"from": "146,7 \u043c\u043c", "label": "\u0412\u0438\u0441\u043e\u0442\u0430", "title": "\u0412\u0438\u0441\u043e\u0442\u0430", "to": "Apple iPhone 13 128Gb Midnight", "width": 1}, {"from": "71,5 \u043c\u043c", "label": "\u0428\u0438\u0440\u0438\u043d\u0430", "title": "\u0428\u0438\u0440\u0438\u043d\u0430", "to": "Apple iPhone 13 128Gb Blue", "width": 1}, {"from": "71,5 \u043c\u043c", "label": "\u0428\u0438\u0440\u0438\u043d\u0430", "title": "\u0428\u0438\u0440\u0438\u043d\u0430", "to": "Apple iPhone 13 128Gb Pink", "width": 1}, {"from": "71,5 \u043c\u043c", "label": "\u0428\u0438\u0440\u0438\u043d\u0430", "title": "\u0428\u0438\u0440\u0438\u043d\u0430", "to": "Apple iPhone 13 128Gb Starlight", "width": 1}, {"from": "71,5 \u043c\u043c", "label": "\u0428\u0438\u0440\u0438\u043d\u0430", "title": "\u0428\u0438\u0440\u0438\u043d\u0430", "to": "Apple iPhone 13 128Gb Midnight", "width": 1}, {"from": "7,65 \u043c\u043c", "label": "\u0413\u043b\u0438\u0431\u0438\u043d\u0430", "title": "\u0413\u043b\u0438\u0431\u0438\u043d\u0430", "to": "Apple iPhone 13 128Gb Blue", "width": 1}, {"from": "7,65 \u043c\u043c", "label": "\u0413\u043b\u0438\u0431\u0438\u043d\u0430", "title": "\u0413\u043b\u0438\u0431\u0438\u043d\u0430", "to": "Apple iPhone 13 128Gb Pink", "width": 1}, {"from": "7,65 \u043c\u043c", "label": "\u0413\u043b\u0438\u0431\u0438\u043d\u0430", "title": "\u0413\u043b\u0438\u0431\u0438\u043d\u0430", "to": "Apple iPhone 13 128Gb Starlight", "width": 1}, {"from": "7,65 \u043c\u043c", "label": "\u0413\u043b\u0438\u0431\u0438\u043d\u0430", "title": "\u0413\u043b\u0438\u0431\u0438\u043d\u0430", "to": "Apple iPhone 13 128Gb Midnight", "width": 1}, {"from": "174 \u0433", "label": "\u0412\u0430\u0433\u0430", "title": "\u0412\u0430\u0433\u0430", "to": "Apple iPhone 13 128Gb Blue", "width": 1}, {"from": "174 \u0433", "label": "\u0412\u0430\u0433\u0430", "title": "\u0412\u0430\u0433\u0430", "to": "Apple iPhone 13 128Gb Pink", "width": 1}, {"from": "174 \u0433", "label": "\u0412\u0430\u0433\u0430", "title": "\u0412\u0430\u0433\u0430", "to": "Apple iPhone 13 128Gb Starlight", "width": 1}, {"from": "174 \u0433", "label": "\u0412\u0430\u0433\u0430", "title": "\u0412\u0430\u0433\u0430", "to": "Apple iPhone 13 128Gb Midnight", "width": 1}, {"from": "8\u04452\u044518 \u0441\u043c", "label": "\u0413\u0430\u0431\u0430\u0440\u0438\u0442\u0438 \u0443\u043f\u0430\u043a\u043e\u0432\u043a\u0438 (\u0412\u0445\u0428\u0445\u0413)", "title": "\u0413\u0430\u0431\u0430\u0440\u0438\u0442\u0438 \u0443\u043f\u0430\u043a\u043e\u0432\u043a\u0438 (\u0412\u0445\u0428\u0445\u0413)", "to": "Apple iPhone 13 128Gb Blue", "width": 1}, {"from": "8\u04452\u044518 \u0441\u043c", "label": "\u0413\u0430\u0431\u0430\u0440\u0438\u0442\u0438 \u0443\u043f\u0430\u043a\u043e\u0432\u043a\u0438 (\u0412\u0445\u0428\u0445\u0413)", "title": "\u0413\u0430\u0431\u0430\u0440\u0438\u0442\u0438 \u0443\u043f\u0430\u043a\u043e\u0432\u043a\u0438 (\u0412\u0445\u0428\u0445\u0413)", "to": "Apple iPhone 13 128Gb Pink", "width": 1}, {"from": "8\u04452\u044518 \u0441\u043c", "label": "\u0413\u0430\u0431\u0430\u0440\u0438\u0442\u0438 \u0443\u043f\u0430\u043a\u043e\u0432\u043a\u0438 (\u0412\u0445\u0428\u0445\u0413)", "title": "\u0413\u0430\u0431\u0430\u0440\u0438\u0442\u0438 \u0443\u043f\u0430\u043a\u043e\u0432\u043a\u0438 (\u0412\u0445\u0428\u0445\u0413)", "to": "Apple iPhone 13 128Gb Starlight", "width": 1}, {"from": "8\u04452\u044518 \u0441\u043c", "label": "\u0413\u0430\u0431\u0430\u0440\u0438\u0442\u0438 \u0443\u043f\u0430\u043a\u043e\u0432\u043a\u0438 (\u0412\u0445\u0428\u0445\u0413)", "title": "\u0413\u0430\u0431\u0430\u0440\u0438\u0442\u0438 \u0443\u043f\u0430\u043a\u043e\u0432\u043a\u0438 (\u0412\u0445\u0428\u0445\u0413)", "to": "Apple iPhone 13 128Gb Midnight", "width": 1}, {"from": "0,332 \u043a\u0433", "label": "\u0412\u0430\u0433\u0430 \u0432 \u0443\u043f\u0430\u043a\u043e\u0432\u0446\u0456, \u043a\u0433", "title": "\u0412\u0430\u0433\u0430 \u0432 \u0443\u043f\u0430\u043a\u043e\u0432\u0446\u0456, \u043a\u0433", "to": "Apple iPhone 13 128Gb Blue", "width": 1}, {"from": "0,332 \u043a\u0433", "label": "\u0412\u0430\u0433\u0430 \u0432 \u0443\u043f\u0430\u043a\u043e\u0432\u0446\u0456, \u043a\u0433", "title": "\u0412\u0430\u0433\u0430 \u0432 \u0443\u043f\u0430\u043a\u043e\u0432\u0446\u0456, \u043a\u0433", "to": "Apple iPhone 13 128Gb Pink", "width": 1}, {"from": "0,332 \u043a\u0433", "label": "\u0412\u0430\u0433\u0430 \u0432 \u0443\u043f\u0430\u043a\u043e\u0432\u0446\u0456, \u043a\u0433", "title": "\u0412\u0430\u0433\u0430 \u0432 \u0443\u043f\u0430\u043a\u043e\u0432\u0446\u0456, \u043a\u0433", "to": "Apple iPhone 13 128Gb Starlight", "width": 1}, {"from": "0,332 \u043a\u0433", "label": "\u0412\u0430\u0433\u0430 \u0432 \u0443\u043f\u0430\u043a\u043e\u0432\u0446\u0456, \u043a\u0433", "title": "\u0412\u0430\u0433\u0430 \u0432 \u0443\u043f\u0430\u043a\u043e\u0432\u0446\u0456, \u043a\u0433", "to": "Apple iPhone 13 128Gb Midnight", "width": 1}, {"from": "26 999 \u20b4", "label": "\u0426\u0456\u043d\u0430", "title": "\u0426\u0456\u043d\u0430", "to": "Apple iPhone 13 128Gb Blue", "width": 1}, {"from": "26 999 \u20b4", "label": "\u0426\u0456\u043d\u0430", "title": "\u0426\u0456\u043d\u0430", "to": "Apple iPhone 13 128Gb Pink", "width": 1}, {"from": "26 999 \u20b4", "label": "\u0426\u0456\u043d\u0430", "title": "\u0426\u0456\u043d\u0430", "to": "Apple iPhone 13 128Gb Starlight", "width": 1}, {"from": "26 999 \u20b4", "label": "\u0426\u0456\u043d\u0430", "title": "\u0426\u0456\u043d\u0430", "to": "Apple iPhone 13 128Gb Midnight", "width": 1}, {"from": "Samsung Galaxy S23FE 8/256Gb Graphite (SM-S711BZAGSEK)", "label": "\u0414\u0456\u0430\u0433\u043e\u043d\u0430\u043b\u044c \u0434\u0438\u0441\u043f\u043b\u0435\u044f", "title": "\u0414\u0456\u0430\u0433\u043e\u043d\u0430\u043b\u044c \u0434\u0438\u0441\u043f\u043b\u0435\u044f", "to": "6,4\u0027\u0027", "width": 1}, {"from": "Samsung Galaxy S23FE 8/256Gb Graphite (SM-S711BZAGSEK)", "label": "\u0422\u0438\u043f \u0435\u043a\u0440\u0430\u043d\u0443", "title": "\u0422\u0438\u043f \u0435\u043a\u0440\u0430\u043d\u0443", "to": "Dynamic Amoled 2x", "width": 1}, {"from": "Samsung Galaxy S23FE 8/256Gb Graphite (SM-S711BZAGSEK)", "label": "\u0422\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0456\u044f \u0437\u0430\u0445\u0438\u0441\u043d\u043e\u0433\u043e \u0441\u043a\u043b\u0430", "title": "\u0422\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0456\u044f \u0437\u0430\u0445\u0438\u0441\u043d\u043e\u0433\u043e \u0441\u043a\u043b\u0430", "to": "Corning Gorilla Glass 5", "width": 1}, {"from": "Samsung Galaxy S23FE 8/256Gb Graphite (SM-S711BZAGSEK)", "label": "\u041a\u0456\u043b\u044c\u043a\u0456\u0441\u0442\u044c SIM-\u043a\u0430\u0440\u0442", "title": "\u041a\u0456\u043b\u044c\u043a\u0456\u0441\u0442\u044c SIM-\u043a\u0430\u0440\u0442", "to": "2 SIM", "width": 1}, {"from": "Samsung Galaxy S23FE 8/256Gb Graphite (SM-S711BZAGSEK)", "label": "\u041c\u043e\u0434\u0435\u043b\u044c \u043f\u0440\u043e\u0446\u0435\u0441\u043e\u0440\u0430", "title": "\u041c\u043e\u0434\u0435\u043b\u044c \u043f\u0440\u043e\u0446\u0435\u0441\u043e\u0440\u0430", "to": "Exynos 2200", "width": 1}, {"from": "Samsung Galaxy S23FE 8/256Gb Graphite (SM-S711BZAGSEK)", "label": "\u0427\u0430\u0441\u0442\u043e\u0442\u0430 \u043f\u0440\u043e\u0446\u0435\u0441\u0441\u043e\u0440\u0430", "title": "\u0427\u0430\u0441\u0442\u043e\u0442\u0430 \u043f\u0440\u043e\u0446\u0435\u0441\u0441\u043e\u0440\u0430", "to": "1 \u0445 2,8 \u0413\u0413\u0446 + 3 \u0445 2,5 \u0413\u0413\u0446 + 4 \u0445 1,8 \u0413\u0413\u0446", "width": 1}, {"from": "Samsung Galaxy S23FE 8/256Gb Graphite (SM-S711BZAGSEK)", "label": "\u041c\u043e\u0434\u0435\u043b\u044c \u0433\u0440\u0430\u0444\u0456\u0447\u043d\u043e\u0433\u043e \u043f\u0440\u043e\u0446\u0435\u0441\u043e\u0440\u0430", "title": "\u041c\u043e\u0434\u0435\u043b\u044c \u0433\u0440\u0430\u0444\u0456\u0447\u043d\u043e\u0433\u043e \u043f\u0440\u043e\u0446\u0435\u0441\u043e\u0440\u0430", "to": "Xclipse GPU", "width": 1}, {"from": "Samsung Galaxy S23FE 8/256Gb Graphite (SM-S711BZAGSEK)", "label": "\u041e\u0441\u043d\u043e\u0432\u043d\u0430 \u043a\u0430\u043c\u0435\u0440\u0430", "title": "\u041e\u0441\u043d\u043e\u0432\u043d\u0430 \u043a\u0430\u043c\u0435\u0440\u0430", "to": "50+12+8 \u041c\u043f", "width": 1}, {"from": "Samsung Galaxy S23FE 8/256Gb Graphite (SM-S711BZAGSEK)", "label": "\u0420\u043e\u0437\u0434\u0456\u043b\u044c\u043d\u0430 \u0437\u0434\u0430\u0442\u043d\u0456\u0441\u0442\u044c \u0432\u0456\u0434\u0435\u043e", "title": "\u0420\u043e\u0437\u0434\u0456\u043b\u044c\u043d\u0430 \u0437\u0434\u0430\u0442\u043d\u0456\u0441\u0442\u044c \u0432\u0456\u0434\u0435\u043e", "to": "7680 x 4320 8K UHD", "width": 1}, {"from": "Samsung Galaxy S23FE 8/256Gb Graphite (SM-S711BZAGSEK)", "label": "\u0424\u0440\u043e\u043d\u0442\u0430\u043b\u044c\u043d\u0430 \u043a\u0430\u043c\u0435\u0440\u0430", "title": "\u0424\u0440\u043e\u043d\u0442\u0430\u043b\u044c\u043d\u0430 \u043a\u0430\u043c\u0435\u0440\u0430", "to": "10 \u041c\u043f", "width": 1}, {"from": "Samsung Galaxy S23FE 8/256Gb Graphite (SM-S711BZAGSEK)", "label": "\u0417\u0443\u043c", "title": "\u0417\u0443\u043c", "to": "3\u0445 \u043e\u043f\u0442\u0438\u0447\u043d\u0438\u0439\n30\u0445 \u0446\u0438\u0444\u0440\u043e\u0432\u0438\u0439", "width": 1}, {"from": "Samsung Galaxy S23FE 8/256Gb Graphite (SM-S711BZAGSEK)", "label": "\u0404\u043c\u043d\u0456\u0441\u0442\u044c \u0430\u043a\u0443\u043c\u0443\u043b\u044f\u0442\u043e\u0440\u0430", "title": "\u0404\u043c\u043d\u0456\u0441\u0442\u044c \u0430\u043a\u0443\u043c\u0443\u043b\u044f\u0442\u043e\u0440\u0430", "to": "4500 \u043c\u0410\u0433", "width": 1}, {"from": "Samsung Galaxy S23FE 8/256Gb Graphite (SM-S711BZAGSEK)", "label": "\u0427\u0430\u0441 \u0440\u043e\u0431\u043e\u0442\u0438 \u0432 \u0440\u0435\u0436\u0438\u043c\u0456 \u0440\u043e\u0437\u043c\u043e\u0432\u0438", "title": "\u0427\u0430\u0441 \u0440\u043e\u0431\u043e\u0442\u0438 \u0432 \u0440\u0435\u0436\u0438\u043c\u0456 \u0440\u043e\u0437\u043c\u043e\u0432\u0438", "to": "\u0414\u043e 39 \u0433", "width": 1}, {"from": "Samsung Galaxy S23FE 8/256Gb Graphite (SM-S711BZAGSEK)", "label": "\u0412\u0438\u0441\u043e\u0442\u0430", "title": "\u0412\u0438\u0441\u043e\u0442\u0430", "to": "158 \u043c\u043c", "width": 1}, {"from": "Samsung Galaxy S23FE 8/256Gb Graphite (SM-S711BZAGSEK)", "label": "\u0428\u0438\u0440\u0438\u043d\u0430", "title": "\u0428\u0438\u0440\u0438\u043d\u0430", "to": "76,5 \u043c\u043c", "width": 1}, {"from": "Samsung Galaxy S23FE 8/256Gb Graphite (SM-S711BZAGSEK)", "label": "\u041a\u043e\u043b\u0456\u0440 \u0432\u0438\u0440\u043e\u0431\u043d\u0438\u043a\u0430", "title": "\u041a\u043e\u043b\u0456\u0440 \u0432\u0438\u0440\u043e\u0431\u043d\u0438\u043a\u0430", "to": "\u0413\u0440\u0430\u0444\u0456\u0442", "width": 1}, {"from": "Samsung Galaxy S23FE 8/256Gb Graphite (SM-S711BZAGSEK)", "label": "\u0426\u0456\u043d\u0430", "title": "\u0426\u0456\u043d\u0430", "to": "23 199 \u20b4", "width": 1}, {"from": "Dynamic Amoled 2x", "label": "\u0422\u0438\u043f \u0435\u043a\u0440\u0430\u043d\u0443", "title": "\u0422\u0438\u043f \u0435\u043a\u0440\u0430\u043d\u0443", "to": "Samsung Galaxy S23 8/256Gb Black (SM-S911BZKGSEK)", "width": 1}, {"from": "Dynamic Amoled 2x", "label": "\u0422\u0438\u043f \u0435\u043a\u0440\u0430\u043d\u0443", "title": "\u0422\u0438\u043f \u0435\u043a\u0440\u0430\u043d\u0443", "to": "Samsung Galaxy S24+ 12/512Gb Onyx Black (SM-S926BZKGEUC)", "width": 1}, {"from": "Dynamic Amoled 2x", "label": "\u0422\u0438\u043f \u0435\u043a\u0440\u0430\u043d\u0443", "title": "\u0422\u0438\u043f \u0435\u043a\u0440\u0430\u043d\u0443", "to": "Samsung Galaxy S24 Ultra 12/256Gb Titanium Gray (SM-S928BZTGEUC)", "width": 1}, {"from": "Dynamic Amoled 2x", "label": "\u0422\u0438\u043f \u0435\u043a\u0440\u0430\u043d\u0443", "title": "\u0422\u0438\u043f \u0435\u043a\u0440\u0430\u043d\u0443", "to": "Samsung Galaxy S24 8/256Gb Onyx Black (SM-S921BZKGEUC)", "width": 1}, {"from": "2 SIM", "label": "\u041a\u0456\u043b\u044c\u043a\u0456\u0441\u0442\u044c SIM-\u043a\u0430\u0440\u0442", "title": "\u041a\u0456\u043b\u044c\u043a\u0456\u0441\u0442\u044c SIM-\u043a\u0430\u0440\u0442", "to": "Samsung Galaxy S23 8/256Gb Black (SM-S911BZKGSEK)", "width": 1}, {"from": "2 SIM", "label": "\u041a\u0456\u043b\u044c\u043a\u0456\u0441\u0442\u044c SIM-\u043a\u0430\u0440\u0442", "title": "\u041a\u0456\u043b\u044c\u043a\u0456\u0441\u0442\u044c SIM-\u043a\u0430\u0440\u0442", "to": "Samsung Galaxy S24+ 12/512Gb Onyx Black (SM-S926BZKGEUC)", "width": 1}, {"from": "2 SIM", "label": "\u041a\u0456\u043b\u044c\u043a\u0456\u0441\u0442\u044c SIM-\u043a\u0430\u0440\u0442", "title": "\u041a\u0456\u043b\u044c\u043a\u0456\u0441\u0442\u044c SIM-\u043a\u0430\u0440\u0442", "to": "Samsung Galaxy S24 Ultra 12/256Gb Titanium Gray (SM-S928BZTGEUC)", "width": 1}, {"from": "2 SIM", "label": "\u041a\u0456\u043b\u044c\u043a\u0456\u0441\u0442\u044c SIM-\u043a\u0430\u0440\u0442", "title": "\u041a\u0456\u043b\u044c\u043a\u0456\u0441\u0442\u044c SIM-\u043a\u0430\u0440\u0442", "to": "Samsung Galaxy S24 8/256Gb Onyx Black (SM-S921BZKGEUC)", "width": 1}, {"from": "7680 x 4320 8K UHD", "label": "\u0420\u043e\u0437\u0434\u0456\u043b\u044c\u043d\u0430 \u0437\u0434\u0430\u0442\u043d\u0456\u0441\u0442\u044c \u0432\u0456\u0434\u0435\u043e", "title": "\u0420\u043e\u0437\u0434\u0456\u043b\u044c\u043d\u0430 \u0437\u0434\u0430\u0442\u043d\u0456\u0441\u0442\u044c \u0432\u0456\u0434\u0435\u043e", "to": "Samsung Galaxy S23 8/256Gb Black (SM-S911BZKGSEK)", "width": 1}, {"from": "7680 x 4320 8K UHD", "label": "\u0420\u043e\u0437\u0434\u0456\u043b\u044c\u043d\u0430 \u0437\u0434\u0430\u0442\u043d\u0456\u0441\u0442\u044c \u0432\u0456\u0434\u0435\u043e", "title": "\u0420\u043e\u0437\u0434\u0456\u043b\u044c\u043d\u0430 \u0437\u0434\u0430\u0442\u043d\u0456\u0441\u0442\u044c \u0432\u0456\u0434\u0435\u043e", "to": "Samsung Galaxy S24+ 12/512Gb Onyx Black (SM-S926BZKGEUC)", "width": 1}, {"from": "7680 x 4320 8K UHD", "label": "\u0420\u043e\u0437\u0434\u0456\u043b\u044c\u043d\u0430 \u0437\u0434\u0430\u0442\u043d\u0456\u0441\u0442\u044c \u0432\u0456\u0434\u0435\u043e", "title": "\u0420\u043e\u0437\u0434\u0456\u043b\u044c\u043d\u0430 \u0437\u0434\u0430\u0442\u043d\u0456\u0441\u0442\u044c \u0432\u0456\u0434\u0435\u043e", "to": "Samsung Galaxy S24 Ultra 12/256Gb Titanium Gray (SM-S928BZTGEUC)", "width": 1}, {"from": "7680 x 4320 8K UHD", "label": "\u0420\u043e\u0437\u0434\u0456\u043b\u044c\u043d\u0430 \u0437\u0434\u0430\u0442\u043d\u0456\u0441\u0442\u044c \u0432\u0456\u0434\u0435\u043e", "title": "\u0420\u043e\u0437\u0434\u0456\u043b\u044c\u043d\u0430 \u0437\u0434\u0430\u0442\u043d\u0456\u0441\u0442\u044c \u0432\u0456\u0434\u0435\u043e", "to": "Samsung Galaxy S24 8/256Gb Onyx Black (SM-S921BZKGEUC)", "width": 1}, {"from": "3\u0445 \u043e\u043f\u0442\u0438\u0447\u043d\u0438\u0439\n30\u0445 \u0446\u0438\u0444\u0440\u043e\u0432\u0438\u0439", "label": "\u0417\u0443\u043c", "title": "\u0417\u0443\u043c", "to": "Samsung Galaxy S23 8/256Gb Black (SM-S911BZKGSEK)", "width": 1}, {"from": "76,5 \u043c\u043c", "label": "\u0428\u0438\u0440\u0438\u043d\u0430", "title": "\u0428\u0438\u0440\u0438\u043d\u0430", "to": "Samsung Galaxy A25 5G 6/128Gb Black (SM-A256BZKDEUC)", "width": 1}, {"from": "Samsung Galaxy S23 8/256Gb Black (SM-S911BZKGSEK)", "label": "\u0422\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0456\u044f \u0437\u0430\u0445\u0438\u0441\u043d\u043e\u0433\u043e \u0441\u043a\u043b\u0430", "title": "\u0422\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0456\u044f \u0437\u0430\u0445\u0438\u0441\u043d\u043e\u0433\u043e \u0441\u043a\u043b\u0430", "to": "Corning Gorilla Glass Victus 2", "width": 1}, {"from": "Samsung Galaxy S23 8/256Gb Black (SM-S911BZKGSEK)", "label": "\u041e\u043f\u0435\u0440\u0430\u0446\u0456\u0439\u043d\u0430 \u0441\u0438\u0441\u0442\u0435\u043c\u0430", "title": "\u041e\u043f\u0435\u0440\u0430\u0446\u0456\u0439\u043d\u0430 \u0441\u0438\u0441\u0442\u0435\u043c\u0430", "to": "Android 13", "width": 1}, {"from": "Samsung Galaxy S23 8/256Gb Black (SM-S911BZKGSEK)", "label": "\u041c\u043e\u0434\u0435\u043b\u044c \u043f\u0440\u043e\u0446\u0435\u0441\u043e\u0440\u0430", "title": "\u041c\u043e\u0434\u0435\u043b\u044c \u043f\u0440\u043e\u0446\u0435\u0441\u043e\u0440\u0430", "to": "Qualcomm Snapdragon 8 Gen 2", "width": 1}, {"from": "Samsung Galaxy S23 8/256Gb Black (SM-S911BZKGSEK)", "label": "\u041c\u043e\u0434\u0435\u043b\u044c \u0433\u0440\u0430\u0444\u0456\u0447\u043d\u043e\u0433\u043e \u043f\u0440\u043e\u0446\u0435\u0441\u043e\u0440\u0430", "title": "\u041c\u043e\u0434\u0435\u043b\u044c \u0433\u0440\u0430\u0444\u0456\u0447\u043d\u043e\u0433\u043e \u043f\u0440\u043e\u0446\u0435\u0441\u043e\u0440\u0430", "to": "Qualcomm Adreno 740", "width": 1}, {"from": "Samsung Galaxy S23 8/256Gb Black (SM-S911BZKGSEK)", "label": "\u041e\u0441\u043d\u043e\u0432\u043d\u0430 \u043a\u0430\u043c\u0435\u0440\u0430", "title": "\u041e\u0441\u043d\u043e\u0432\u043d\u0430 \u043a\u0430\u043c\u0435\u0440\u0430", "to": "50+10+12 \u041c\u043f", "width": 1}, {"from": "Samsung Galaxy S23 8/256Gb Black (SM-S911BZKGSEK)", "label": "\u0404\u043c\u043d\u0456\u0441\u0442\u044c \u0430\u043a\u0443\u043c\u0443\u043b\u044f\u0442\u043e\u0440\u0430", "title": "\u0404\u043c\u043d\u0456\u0441\u0442\u044c \u0430\u043a\u0443\u043c\u0443\u043b\u044f\u0442\u043e\u0440\u0430", "to": "3900 \u043c\u0410\u0433", "width": 1}, {"from": "Samsung Galaxy S23 8/256Gb Black (SM-S911BZKGSEK)", "label": "\u0427\u0430\u0441 \u0440\u043e\u0431\u043e\u0442\u0438 \u0432 \u0440\u0435\u0436\u0438\u043c\u0456 \u0440\u043e\u0437\u043c\u043e\u0432\u0438", "title": "\u0427\u0430\u0441 \u0440\u043e\u0431\u043e\u0442\u0438 \u0432 \u0440\u0435\u0436\u0438\u043c\u0456 \u0440\u043e\u0437\u043c\u043e\u0432\u0438", "to": "\u0414\u043e 35 \u0433", "width": 1}, {"from": "Samsung Galaxy S23 8/256Gb Black (SM-S911BZKGSEK)", "label": "\u041c\u0430\u0442\u0435\u0440\u0456\u0430\u043b \u043a\u043e\u0440\u043f\u0443\u0441\u0443", "title": "\u041c\u0430\u0442\u0435\u0440\u0456\u0430\u043b \u043a\u043e\u0440\u043f\u0443\u0441\u0443", "to": "\u041c\u0435\u0442\u0430\u043b\n\u041f\u043b\u0430\u0441\u0442\u0438\u043a\n\u0421\u043a\u043b\u043e", "width": 1}, {"from": "Samsung Galaxy S23 8/256Gb Black (SM-S911BZKGSEK)", "label": "\u0412\u0438\u0441\u043e\u0442\u0430", "title": "\u0412\u0438\u0441\u043e\u0442\u0430", "to": "146,3 \u043c\u043c", "width": 1}, {"from": "Samsung Galaxy S23 8/256Gb Black (SM-S911BZKGSEK)", "label": "\u0428\u0438\u0440\u0438\u043d\u0430", "title": "\u0428\u0438\u0440\u0438\u043d\u0430", "to": "70,9 \u043c\u043c", "width": 1}, {"from": "Samsung Galaxy S23 8/256Gb Black (SM-S911BZKGSEK)", "label": "\u0413\u043b\u0438\u0431\u0438\u043d\u0430", "title": "\u0413\u043b\u0438\u0431\u0438\u043d\u0430", "to": "7,6 \u043c\u043c", "width": 1}, {"from": "Samsung Galaxy S23 8/256Gb Black (SM-S911BZKGSEK)", "label": "\u0412\u0430\u0433\u0430", "title": "\u0412\u0430\u0433\u0430", "to": "168 \u0433", "width": 1}, {"from": "Samsung Galaxy S23 8/256Gb Black (SM-S911BZKGSEK)", "label": "\u041a\u043e\u043b\u0456\u0440 \u0432\u0438\u0440\u043e\u0431\u043d\u0438\u043a\u0430", "title": "\u041a\u043e\u043b\u0456\u0440 \u0432\u0438\u0440\u043e\u0431\u043d\u0438\u043a\u0430", "to": "\u0427\u043e\u0440\u043d\u0438\u0439", "width": 1}, {"from": "Samsung Galaxy S23 8/256Gb Black (SM-S911BZKGSEK)", "label": "\u0426\u0456\u043d\u0430", "title": "\u0426\u0456\u043d\u0430", "to": "28 999 \u20b4", "width": 1}, {"from": "50+10+12 \u041c\u043f", "label": "\u041e\u0441\u043d\u043e\u0432\u043d\u0430 \u043a\u0430\u043c\u0435\u0440\u0430", "title": "\u041e\u0441\u043d\u043e\u0432\u043d\u0430 \u043a\u0430\u043c\u0435\u0440\u0430", "to": "Samsung Galaxy S24+ 12/512Gb Onyx Black (SM-S926BZKGEUC)", "width": 1}, {"from": "50+10+12 \u041c\u043f", "label": "\u041e\u0441\u043d\u043e\u0432\u043d\u0430 \u043a\u0430\u043c\u0435\u0440\u0430", "title": "\u041e\u0441\u043d\u043e\u0432\u043d\u0430 \u043a\u0430\u043c\u0435\u0440\u0430", "to": "Samsung Galaxy S24 8/256Gb Onyx Black (SM-S921BZKGEUC)", "width": 1}, {"from": "7,6 \u043c\u043c", "label": "\u0413\u043b\u0438\u0431\u0438\u043d\u0430", "title": "\u0413\u043b\u0438\u0431\u0438\u043d\u0430", "to": "Samsung Galaxy S24 8/256Gb Onyx Black (SM-S921BZKGEUC)", "width": 1}, {"from": "\u0427\u043e\u0440\u043d\u0438\u0439", "label": "\u041a\u043e\u043b\u0456\u0440 \u0432\u0438\u0440\u043e\u0431\u043d\u0438\u043a\u0430", "title": "\u041a\u043e\u043b\u0456\u0440 \u0432\u0438\u0440\u043e\u0431\u043d\u0438\u043a\u0430", "to": "Samsung Galaxy A15 4/128Gb Black (SM-A155FZKDEUC)", "width": 1}, {"from": "\u0427\u043e\u0440\u043d\u0438\u0439", "label": "\u041a\u043e\u043b\u0456\u0440 \u0432\u0438\u0440\u043e\u0431\u043d\u0438\u043a\u0430", "title": "\u041a\u043e\u043b\u0456\u0440 \u0432\u0438\u0440\u043e\u0431\u043d\u0438\u043a\u0430", "to": "Samsung Galaxy S24+ 12/512Gb Onyx Black (SM-S926BZKGEUC)", "width": 1}, {"from": "\u0427\u043e\u0440\u043d\u0438\u0439", "label": "\u041a\u043e\u043b\u0456\u0440 \u0432\u0438\u0440\u043e\u0431\u043d\u0438\u043a\u0430", "title": "\u041a\u043e\u043b\u0456\u0440 \u0432\u0438\u0440\u043e\u0431\u043d\u0438\u043a\u0430", "to": "Apple iPhone 15 128Gb Black", "width": 1}, {"from": "\u0427\u043e\u0440\u043d\u0438\u0439", "label": "\u041a\u043e\u043b\u0456\u0440 \u0432\u0438\u0440\u043e\u0431\u043d\u0438\u043a\u0430", "title": "\u041a\u043e\u043b\u0456\u0440 \u0432\u0438\u0440\u043e\u0431\u043d\u0438\u043a\u0430", "to": "Samsung Galaxy S24 8/256Gb Onyx Black (SM-S921BZKGEUC)", "width": 1}, {"from": "\u0427\u043e\u0440\u043d\u0438\u0439", "label": "\u041a\u043e\u043b\u0456\u0440 \u0432\u0438\u0440\u043e\u0431\u043d\u0438\u043a\u0430", "title": "\u041a\u043e\u043b\u0456\u0440 \u0432\u0438\u0440\u043e\u0431\u043d\u0438\u043a\u0430", "to": "Samsung Galaxy A25 5G 6/128Gb Black (SM-A256BZKDEUC)", "width": 1}, {"from": "\u0427\u043e\u0440\u043d\u0438\u0439", "label": "\u041a\u043e\u043b\u0456\u0440 \u0432\u0438\u0440\u043e\u0431\u043d\u0438\u043a\u0430", "title": "\u041a\u043e\u043b\u0456\u0440 \u0432\u0438\u0440\u043e\u0431\u043d\u0438\u043a\u0430", "to": "Apple iPhone 13 128Gb Midnight", "width": 1}, {"from": "Samsung Galaxy A15 4/128Gb Black (SM-A155FZKDEUC)", "label": "\u0414\u0456\u0430\u0433\u043e\u043d\u0430\u043b\u044c \u0434\u0438\u0441\u043f\u043b\u0435\u044f", "title": "\u0414\u0456\u0430\u0433\u043e\u043d\u0430\u043b\u044c \u0434\u0438\u0441\u043f\u043b\u0435\u044f", "to": "6,5\u0027\u0027", "width": 1}, {"from": "Samsung Galaxy A15 4/128Gb Black (SM-A155FZKDEUC)", "label": "\u0427\u0430\u0441\u0442\u043e\u0442\u0430 \u043e\u043d\u043e\u0432\u043b\u0435\u043d\u043d\u044f \u0435\u043a\u0440\u0430\u043d\u0443", "title": "\u0427\u0430\u0441\u0442\u043e\u0442\u0430 \u043e\u043d\u043e\u0432\u043b\u0435\u043d\u043d\u044f \u0435\u043a\u0440\u0430\u043d\u0443", "to": "90 \u0413\u0446", "width": 1}, {"from": "Samsung Galaxy A15 4/128Gb Black (SM-A155FZKDEUC)", "label": "\u0421\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u0438 \u0437\u0432\u0027\u044f\u0437\u043a\u0443", "title": "\u0421\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u0438 \u0437\u0432\u0027\u044f\u0437\u043a\u0443", "to": "3G, 4G", "width": 1}, {"from": "Samsung Galaxy A15 4/128Gb Black (SM-A155FZKDEUC)", "label": "\u041e\u043f\u0435\u0440\u0430\u0446\u0456\u0439\u043d\u0430 \u0441\u0438\u0441\u0442\u0435\u043c\u0430", "title": "\u041e\u043f\u0435\u0440\u0430\u0446\u0456\u0439\u043d\u0430 \u0441\u0438\u0441\u0442\u0435\u043c\u0430", "to": "Android 14", "width": 1}, {"from": "Samsung Galaxy A15 4/128Gb Black (SM-A155FZKDEUC)", "label": "\u041c\u043e\u0434\u0435\u043b\u044c \u043f\u0440\u043e\u0446\u0435\u0441\u043e\u0440\u0430", "title": "\u041c\u043e\u0434\u0435\u043b\u044c \u043f\u0440\u043e\u0446\u0435\u0441\u043e\u0440\u0430", "to": "MediaTek Helio G99", "width": 1}, {"from": "Samsung Galaxy A15 4/128Gb Black (SM-A155FZKDEUC)", "label": "\u0427\u0430\u0441\u0442\u043e\u0442\u0430 \u043f\u0440\u043e\u0446\u0435\u0441\u0441\u043e\u0440\u0430", "title": "\u0427\u0430\u0441\u0442\u043e\u0442\u0430 \u043f\u0440\u043e\u0446\u0435\u0441\u0441\u043e\u0440\u0430", "to": "2 x 2,2 \u0413\u0413\u0446 + 6 x 2,0 \u0413\u0413\u0446", "width": 1}, {"from": "Samsung Galaxy A15 4/128Gb Black (SM-A155FZKDEUC)", "label": "\u041c\u043e\u0434\u0435\u043b\u044c \u0433\u0440\u0430\u0444\u0456\u0447\u043d\u043e\u0433\u043e \u043f\u0440\u043e\u0446\u0435\u0441\u043e\u0440\u0430", "title": "\u041c\u043e\u0434\u0435\u043b\u044c \u0433\u0440\u0430\u0444\u0456\u0447\u043d\u043e\u0433\u043e \u043f\u0440\u043e\u0446\u0435\u0441\u043e\u0440\u0430", "to": "ARM Mali-G57 MC2", "width": 1}, {"from": "Samsung Galaxy A15 4/128Gb Black (SM-A155FZKDEUC)", "label": "\u041e\u043f\u0435\u0440\u0430\u0442\u0438\u0432\u043d\u0430 \u043f\u0430\u043c\u0027\u044f\u0442\u044c", "title": "\u041e\u043f\u0435\u0440\u0430\u0442\u0438\u0432\u043d\u0430 \u043f\u0430\u043c\u0027\u044f\u0442\u044c", "to": "4 \u0413\u0411", "width": 1}, {"from": "Samsung Galaxy A15 4/128Gb Black (SM-A155FZKDEUC)", "label": "\u041e\u0441\u043d\u043e\u0432\u043d\u0430 \u043a\u0430\u043c\u0435\u0440\u0430", "title": "\u041e\u0441\u043d\u043e\u0432\u043d\u0430 \u043a\u0430\u043c\u0435\u0440\u0430", "to": "50+5+2 \u041c\u043f", "width": 1}, {"from": "Samsung Galaxy A15 4/128Gb Black (SM-A155FZKDEUC)", "label": "\u0420\u043e\u0437\u0434\u0456\u043b\u044c\u043d\u0430 \u0437\u0434\u0430\u0442\u043d\u0456\u0441\u0442\u044c \u0432\u0456\u0434\u0435\u043e", "title": "\u0420\u043e\u0437\u0434\u0456\u043b\u044c\u043d\u0430 \u0437\u0434\u0430\u0442\u043d\u0456\u0441\u0442\u044c \u0432\u0456\u0434\u0435\u043e", "to": "1920 x 1080 Full HD", "width": 1}, {"from": "Samsung Galaxy A15 4/128Gb Black (SM-A155FZKDEUC)", "label": "\u041f\u043e\u0442\u0443\u0436\u043d\u0456\u0441\u0442\u044c \u0437\u0430\u0440\u044f\u0434\u043a\u0438", "title": "\u041f\u043e\u0442\u0443\u0436\u043d\u0456\u0441\u0442\u044c \u0437\u0430\u0440\u044f\u0434\u043a\u0438", "to": "15 \u0412\u0442", "width": 1}, {"from": "Samsung Galaxy A15 4/128Gb Black (SM-A155FZKDEUC)", "label": "\u0427\u0430\u0441 \u0440\u043e\u0431\u043e\u0442\u0438 \u0432 \u0440\u0435\u0436\u0438\u043c\u0456 \u0440\u043e\u0437\u043c\u043e\u0432\u0438", "title": "\u0427\u0430\u0441 \u0440\u043e\u0431\u043e\u0442\u0438 \u0432 \u0440\u0435\u0436\u0438\u043c\u0456 \u0440\u043e\u0437\u043c\u043e\u0432\u0438", "to": "\u0414\u043e 51 \u0433", "width": 1}, {"from": "Samsung Galaxy A15 4/128Gb Black (SM-A155FZKDEUC)", "label": "\u0412\u0438\u0441\u043e\u0442\u0430", "title": "\u0412\u0438\u0441\u043e\u0442\u0430", "to": "160,1 \u043c\u043c", "width": 1}, {"from": "Samsung Galaxy A15 4/128Gb Black (SM-A155FZKDEUC)", "label": "\u0428\u0438\u0440\u0438\u043d\u0430", "title": "\u0428\u0438\u0440\u0438\u043d\u0430", "to": "76,8 \u043c\u043c", "width": 1}, {"from": "Samsung Galaxy A15 4/128Gb Black (SM-A155FZKDEUC)", "label": "\u0413\u043b\u0438\u0431\u0438\u043d\u0430", "title": "\u0413\u043b\u0438\u0431\u0438\u043d\u0430", "to": "8,4 \u043c\u043c", "width": 1}, {"from": "Samsung Galaxy A15 4/128Gb Black (SM-A155FZKDEUC)", "label": "\u0412\u0430\u0433\u0430", "title": "\u0412\u0430\u0433\u0430", "to": "200 \u0433", "width": 1}, {"from": "Samsung Galaxy A15 4/128Gb Black (SM-A155FZKDEUC)", "label": "\u0426\u0456\u043d\u0430", "title": "\u0426\u0456\u043d\u0430", "to": "6 599 \u20b4", "width": 1}, {"from": "6,5\u0027\u0027", "label": "\u0414\u0456\u0430\u0433\u043e\u043d\u0430\u043b\u044c \u0434\u0438\u0441\u043f\u043b\u0435\u044f", "title": "\u0414\u0456\u0430\u0433\u043e\u043d\u0430\u043b\u044c \u0434\u0438\u0441\u043f\u043b\u0435\u044f", "to": "Samsung Galaxy A25 5G 6/128Gb Black (SM-A256BZKDEUC)", "width": 1}, {"from": "Android 14", "label": "\u041e\u043f\u0435\u0440\u0430\u0446\u0456\u0439\u043d\u0430 \u0441\u0438\u0441\u0442\u0435\u043c\u0430", "title": "\u041e\u043f\u0435\u0440\u0430\u0446\u0456\u0439\u043d\u0430 \u0441\u0438\u0441\u0442\u0435\u043c\u0430", "to": "Samsung Galaxy S24+ 12/512Gb Onyx Black (SM-S926BZKGEUC)", "width": 1}, {"from": "Android 14", "label": "\u041e\u043f\u0435\u0440\u0430\u0446\u0456\u0439\u043d\u0430 \u0441\u0438\u0441\u0442\u0435\u043c\u0430", "title": "\u041e\u043f\u0435\u0440\u0430\u0446\u0456\u0439\u043d\u0430 \u0441\u0438\u0441\u0442\u0435\u043c\u0430", "to": "Samsung Galaxy S24 Ultra 12/256Gb Titanium Gray (SM-S928BZTGEUC)", "width": 1}, {"from": "Android 14", "label": "\u041e\u043f\u0435\u0440\u0430\u0446\u0456\u0439\u043d\u0430 \u0441\u0438\u0441\u0442\u0435\u043c\u0430", "title": "\u041e\u043f\u0435\u0440\u0430\u0446\u0456\u0439\u043d\u0430 \u0441\u0438\u0441\u0442\u0435\u043c\u0430", "to": "Samsung Galaxy S24 8/256Gb Onyx Black (SM-S921BZKGEUC)", "width": 1}, {"from": "Android 14", "label": "\u041e\u043f\u0435\u0440\u0430\u0446\u0456\u0439\u043d\u0430 \u0441\u0438\u0441\u0442\u0435\u043c\u0430", "title": "\u041e\u043f\u0435\u0440\u0430\u0446\u0456\u0439\u043d\u0430 \u0441\u0438\u0441\u0442\u0435\u043c\u0430", "to": "Samsung Galaxy A25 5G 6/128Gb Black (SM-A256BZKDEUC)", "width": 1}, {"from": "Samsung Galaxy S24+ 12/512Gb Onyx Black (SM-S926BZKGEUC)", "label": "\u0420\u043e\u0437\u0434\u0456\u043b\u044c\u043d\u0430 \u0437\u0434\u0430\u0442\u043d\u0456\u0441\u0442\u044c \u0435\u043a\u0440\u0430\u043d\u0443", "title": "\u0420\u043e\u0437\u0434\u0456\u043b\u044c\u043d\u0430 \u0437\u0434\u0430\u0442\u043d\u0456\u0441\u0442\u044c \u0435\u043a\u0440\u0430\u043d\u0443", "to": "3120x1440", "width": 1}, {"from": "Samsung Galaxy S24+ 12/512Gb Onyx Black (SM-S926BZKGEUC)", "label": "\u041c\u043e\u0434\u0435\u043b\u044c \u043f\u0440\u043e\u0446\u0435\u0441\u043e\u0440\u0430", "title": "\u041c\u043e\u0434\u0435\u043b\u044c \u043f\u0440\u043e\u0446\u0435\u0441\u043e\u0440\u0430", "to": "Exynos 2400", "width": 1}, {"from": "Samsung Galaxy S24+ 12/512Gb Onyx Black (SM-S926BZKGEUC)", "label": "\u041a\u0456\u043b\u044c\u043a\u0456\u0441\u0442\u044c \u044f\u0434\u0435\u0440", "title": "\u041a\u0456\u043b\u044c\u043a\u0456\u0441\u0442\u044c \u044f\u0434\u0435\u0440", "to": "10 \u044f\u0434\u0435\u0440", "width": 1}, {"from": "Samsung Galaxy S24+ 12/512Gb Onyx Black (SM-S926BZKGEUC)", "label": "\u041e\u043f\u0435\u0440\u0430\u0442\u0438\u0432\u043d\u0430 \u043f\u0430\u043c\u0027\u044f\u0442\u044c", "title": "\u041e\u043f\u0435\u0440\u0430\u0442\u0438\u0432\u043d\u0430 \u043f\u0430\u043c\u0027\u044f\u0442\u044c", "to": "12 \u0413\u0411", "width": 1}, {"from": "Samsung Galaxy S24+ 12/512Gb Onyx Black (SM-S926BZKGEUC)", "label": "\u0412\u0431\u0443\u0434\u043e\u0432\u0430\u043d\u0430 \u043f\u0430\u043c\u0027\u044f\u0442\u044c", "title": "\u0412\u0431\u0443\u0434\u043e\u0432\u0430\u043d\u0430 \u043f\u0430\u043c\u0027\u044f\u0442\u044c", "to": "512 \u0413\u0411", "width": 1}, {"from": "Samsung Galaxy S24+ 12/512Gb Onyx Black (SM-S926BZKGEUC)", "label": "\u0417\u0443\u043c", "title": "\u0417\u0443\u043c", "to": "2\u0445 \u043e\u043f\u0442\u0438\u0447\u043d\u0438\u0439\n3\u0445 \u043e\u043f\u0442\u0438\u0447\u043d\u0438\u0439\n30\u0445 \u0446\u0438\u0444\u0440\u043e\u0432\u0438\u0439", "width": 1}, {"from": "Samsung Galaxy S24+ 12/512Gb Onyx Black (SM-S926BZKGEUC)", "label": "\u0404\u043c\u043d\u0456\u0441\u0442\u044c \u0430\u043a\u0443\u043c\u0443\u043b\u044f\u0442\u043e\u0440\u0430", "title": "\u0404\u043c\u043d\u0456\u0441\u0442\u044c \u0430\u043a\u0443\u043c\u0443\u043b\u044f\u0442\u043e\u0440\u0430", "to": "4900 \u043c\u0410\u0433", "width": 1}, {"from": "Samsung Galaxy S24+ 12/512Gb Onyx Black (SM-S926BZKGEUC)", "label": "\u041f\u043e\u0442\u0443\u0436\u043d\u0456\u0441\u0442\u044c \u0437\u0430\u0440\u044f\u0434\u043a\u0438", "title": "\u041f\u043e\u0442\u0443\u0436\u043d\u0456\u0441\u0442\u044c \u0437\u0430\u0440\u044f\u0434\u043a\u0438", "to": "45 \u0412\u0442", "width": 1}, {"from": "Samsung Galaxy S24+ 12/512Gb Onyx Black (SM-S926BZKGEUC)", "label": "\u0411\u0456\u043e\u043c\u0435\u0442\u0440\u0438\u0447\u043d\u0438\u0439 \u0437\u0430\u0445\u0438\u0441\u0442", "title": "\u0411\u0456\u043e\u043c\u0435\u0442\u0440\u0438\u0447\u043d\u0438\u0439 \u0437\u0430\u0445\u0438\u0441\u0442", "to": "\u0421\u043a\u0430\u043d\u0435\u0440 \u0432\u0456\u0434\u0431\u0438\u0442\u043a\u0456\u0432 \u043f\u0430\u043b\u044c\u0446\u0456\u0432 \u043f\u0456\u0434 \u0435\u043a\u0440\u0430\u043d\u043e\u043c", "width": 1}, {"from": "Samsung Galaxy S24+ 12/512Gb Onyx Black (SM-S926BZKGEUC)", "label": "\u0412\u0438\u0441\u043e\u0442\u0430", "title": "\u0412\u0438\u0441\u043e\u0442\u0430", "to": "158,5 \u043c\u043c", "width": 1}, {"from": "Samsung Galaxy S24+ 12/512Gb Onyx Black (SM-S926BZKGEUC)", "label": "\u0428\u0438\u0440\u0438\u043d\u0430", "title": "\u0428\u0438\u0440\u0438\u043d\u0430", "to": "75,6 \u043c\u043c", "width": 1}, {"from": "Samsung Galaxy S24+ 12/512Gb Onyx Black (SM-S926BZKGEUC)", "label": "\u0413\u043b\u0438\u0431\u0438\u043d\u0430", "title": "\u0413\u043b\u0438\u0431\u0438\u043d\u0430", "to": "7,7 \u043c\u043c", "width": 1}, {"from": "Samsung Galaxy S24+ 12/512Gb Onyx Black (SM-S926BZKGEUC)", "label": "\u0412\u0430\u0433\u0430", "title": "\u0412\u0430\u0433\u0430", "to": "197 \u0433", "width": 1}, {"from": "Samsung Galaxy S24+ 12/512Gb Onyx Black (SM-S926BZKGEUC)", "label": "\u0426\u0456\u043d\u0430", "title": "\u0426\u0456\u043d\u0430", "to": "45 899 \u20b4", "width": 1}, {"from": "3120x1440", "label": "\u0420\u043e\u0437\u0434\u0456\u043b\u044c\u043d\u0430 \u0437\u0434\u0430\u0442\u043d\u0456\u0441\u0442\u044c \u0435\u043a\u0440\u0430\u043d\u0443", "title": "\u0420\u043e\u0437\u0434\u0456\u043b\u044c\u043d\u0430 \u0437\u0434\u0430\u0442\u043d\u0456\u0441\u0442\u044c \u0435\u043a\u0440\u0430\u043d\u0443", "to": "Samsung Galaxy S24 Ultra 12/256Gb Titanium Gray (SM-S928BZTGEUC)", "width": 1}, {"from": "Exynos 2400", "label": "\u041c\u043e\u0434\u0435\u043b\u044c \u043f\u0440\u043e\u0446\u0435\u0441\u043e\u0440\u0430", "title": "\u041c\u043e\u0434\u0435\u043b\u044c \u043f\u0440\u043e\u0446\u0435\u0441\u043e\u0440\u0430", "to": "Samsung Galaxy S24 8/256Gb Onyx Black (SM-S921BZKGEUC)", "width": 1}, {"from": "10 \u044f\u0434\u0435\u0440", "label": "\u041a\u0456\u043b\u044c\u043a\u0456\u0441\u0442\u044c \u044f\u0434\u0435\u0440", "title": "\u041a\u0456\u043b\u044c\u043a\u0456\u0441\u0442\u044c \u044f\u0434\u0435\u0440", "to": "Samsung Galaxy S24 8/256Gb Onyx Black (SM-S921BZKGEUC)", "width": 1}, {"from": "12 \u0413\u0411", "label": "\u041e\u043f\u0435\u0440\u0430\u0442\u0438\u0432\u043d\u0430 \u043f\u0430\u043c\u0027\u044f\u0442\u044c", "title": "\u041e\u043f\u0435\u0440\u0430\u0442\u0438\u0432\u043d\u0430 \u043f\u0430\u043c\u0027\u044f\u0442\u044c", "to": "Samsung Galaxy S24 Ultra 12/256Gb Titanium Gray (SM-S928BZTGEUC)", "width": 1}, {"from": "2\u0445 \u043e\u043f\u0442\u0438\u0447\u043d\u0438\u0439\n3\u0445 \u043e\u043f\u0442\u0438\u0447\u043d\u0438\u0439\n30\u0445 \u0446\u0438\u0444\u0440\u043e\u0432\u0438\u0439", "label": "\u0417\u0443\u043c", "title": "\u0417\u0443\u043c", "to": "Samsung Galaxy S24 8/256Gb Onyx Black (SM-S921BZKGEUC)", "width": 1}, {"from": "45 \u0412\u0442", "label": "\u041f\u043e\u0442\u0443\u0436\u043d\u0456\u0441\u0442\u044c \u0437\u0430\u0440\u044f\u0434\u043a\u0438", "title": "\u041f\u043e\u0442\u0443\u0436\u043d\u0456\u0441\u0442\u044c \u0437\u0430\u0440\u044f\u0434\u043a\u0438", "to": "Samsung Galaxy S24 Ultra 12/256Gb Titanium Gray (SM-S928BZTGEUC)", "width": 1}, {"from": "\u0421\u043a\u0430\u043d\u0435\u0440 \u0432\u0456\u0434\u0431\u0438\u0442\u043a\u0456\u0432 \u043f\u0430\u043b\u044c\u0446\u0456\u0432 \u043f\u0456\u0434 \u0435\u043a\u0440\u0430\u043d\u043e\u043c", "label": "\u0411\u0456\u043e\u043c\u0435\u0442\u0440\u0438\u0447\u043d\u0438\u0439 \u0437\u0430\u0445\u0438\u0441\u0442", "title": "\u0411\u0456\u043e\u043c\u0435\u0442\u0440\u0438\u0447\u043d\u0438\u0439 \u0437\u0430\u0445\u0438\u0441\u0442", "to": "Samsung Galaxy S24 Ultra 12/256Gb Titanium Gray (SM-S928BZTGEUC)", "width": 1}, {"from": "\u0421\u043a\u0430\u043d\u0435\u0440 \u0432\u0456\u0434\u0431\u0438\u0442\u043a\u0456\u0432 \u043f\u0430\u043b\u044c\u0446\u0456\u0432 \u043f\u0456\u0434 \u0435\u043a\u0440\u0430\u043d\u043e\u043c", "label": "\u0411\u0456\u043e\u043c\u0435\u0442\u0440\u0438\u0447\u043d\u0438\u0439 \u0437\u0430\u0445\u0438\u0441\u0442", "title": "\u0411\u0456\u043e\u043c\u0435\u0442\u0440\u0438\u0447\u043d\u0438\u0439 \u0437\u0430\u0445\u0438\u0441\u0442", "to": "Samsung Galaxy S24 8/256Gb Onyx Black (SM-S921BZKGEUC)", "width": 1}, {"from": "Apple iPhone 13 128Gb Pink", "label": "\u041a\u043e\u043b\u0456\u0440 \u0432\u0438\u0440\u043e\u0431\u043d\u0438\u043a\u0430", "title": "\u041a\u043e\u043b\u0456\u0440 \u0432\u0438\u0440\u043e\u0431\u043d\u0438\u043a\u0430", "to": "\u0420\u043e\u0436\u0435\u0432\u0438\u0439", "width": 1}, {"from": "Apple iPhone 15 Pro 128Gb Blue Titanium", "label": "\u0420\u043e\u0437\u0434\u0456\u043b\u044c\u043d\u0430 \u0437\u0434\u0430\u0442\u043d\u0456\u0441\u0442\u044c \u0435\u043a\u0440\u0430\u043d\u0443", "title": "\u0420\u043e\u0437\u0434\u0456\u043b\u044c\u043d\u0430 \u0437\u0434\u0430\u0442\u043d\u0456\u0441\u0442\u044c \u0435\u043a\u0440\u0430\u043d\u0443", "to": "2556\u04451179", "width": 1}, {"from": "Apple iPhone 15 Pro 128Gb Blue Titanium", "label": "\u0417\u0443\u043c", "title": "\u0417\u0443\u043c", "to": "3\u0445 \u043e\u043f\u0442\u0438\u0447\u043d\u0438\u0439\n15\u0445 \u0446\u0438\u0444\u0440\u043e\u0432\u0438\u0439", "width": 1}, {"from": "Apple iPhone 15 Pro 128Gb Blue Titanium", "label": "\u041d\u0430\u0432\u0456\u0433\u0430\u0446\u0456\u0439\u043d\u0430 \u0441\u0438\u0441\u0442\u0435\u043c\u0430", "title": "\u041d\u0430\u0432\u0456\u0433\u0430\u0446\u0456\u0439\u043d\u0430 \u0441\u0438\u0441\u0442\u0435\u043c\u0430", "to": "GPS\nA-GPS\nBeidou\nGalileo\nQZSS\n\u0413\u041b\u041e\u041d\u0410\u0421\u0421", "width": 1}, {"from": "Apple iPhone 15 Pro 128Gb Blue Titanium", "label": "\u0412\u0438\u0441\u043e\u0442\u0430", "title": "\u0412\u0438\u0441\u043e\u0442\u0430", "to": "146,6 \u043c\u043c", "width": 1}, {"from": "Apple iPhone 15 Pro 128Gb Blue Titanium", "label": "\u0428\u0438\u0440\u0438\u043d\u0430", "title": "\u0428\u0438\u0440\u0438\u043d\u0430", "to": "70,6 \u043c\u043c", "width": 1}, {"from": "Apple iPhone 15 Pro 128Gb Blue Titanium", "label": "\u0412\u0430\u0433\u0430", "title": "\u0412\u0430\u0433\u0430", "to": "187 \u0433", "width": 1}, {"from": "Apple iPhone 15 Pro 128Gb Blue Titanium", "label": "\u0426\u0456\u043d\u0430", "title": "\u0426\u0456\u043d\u0430", "to": "45 999 \u20b4", "width": 1}, {"from": "2556\u04451179", "label": "\u0420\u043e\u0437\u0434\u0456\u043b\u044c\u043d\u0430 \u0437\u0434\u0430\u0442\u043d\u0456\u0441\u0442\u044c \u0435\u043a\u0440\u0430\u043d\u0443", "title": "\u0420\u043e\u0437\u0434\u0456\u043b\u044c\u043d\u0430 \u0437\u0434\u0430\u0442\u043d\u0456\u0441\u0442\u044c \u0435\u043a\u0440\u0430\u043d\u0443", "to": "Apple iPhone 15 128Gb Black", "width": 1}, {"from": "2556\u04451179", "label": "\u0420\u043e\u0437\u0434\u0456\u043b\u044c\u043d\u0430 \u0437\u0434\u0430\u0442\u043d\u0456\u0441\u0442\u044c \u0435\u043a\u0440\u0430\u043d\u0443", "title": "\u0420\u043e\u0437\u0434\u0456\u043b\u044c\u043d\u0430 \u0437\u0434\u0430\u0442\u043d\u0456\u0441\u0442\u044c \u0435\u043a\u0440\u0430\u043d\u0443", "to": "Apple iPhone 15 Pro 128Gb Natural Titanium", "width": 1}, {"from": "3\u0445 \u043e\u043f\u0442\u0438\u0447\u043d\u0438\u0439\n15\u0445 \u0446\u0438\u0444\u0440\u043e\u0432\u0438\u0439", "label": "\u0417\u0443\u043c", "title": "\u0417\u0443\u043c", "to": "Apple iPhone 15 Pro 128Gb Natural Titanium", "width": 1}, {"from": "GPS\nA-GPS\nBeidou\nGalileo\nQZSS\n\u0413\u041b\u041e\u041d\u0410\u0421\u0421", "label": "\u041d\u0430\u0432\u0456\u0433\u0430\u0446\u0456\u0439\u043d\u0430 \u0441\u0438\u0441\u0442\u0435\u043c\u0430", "title": "\u041d\u0430\u0432\u0456\u0433\u0430\u0446\u0456\u0439\u043d\u0430 \u0441\u0438\u0441\u0442\u0435\u043c\u0430", "to": "Apple iPhone 15 Pro 128Gb Natural Titanium", "width": 1}, {"from": "146,6 \u043c\u043c", "label": "\u0412\u0438\u0441\u043e\u0442\u0430", "title": "\u0412\u0438\u0441\u043e\u0442\u0430", "to": "Apple iPhone 15 Pro 128Gb Natural Titanium", "width": 1}, {"from": "70,6 \u043c\u043c", "label": "\u0428\u0438\u0440\u0438\u043d\u0430", "title": "\u0428\u0438\u0440\u0438\u043d\u0430", "to": "Samsung Galaxy S24 8/256Gb Onyx Black (SM-S921BZKGEUC)", "width": 1}, {"from": "70,6 \u043c\u043c", "label": "\u0428\u0438\u0440\u0438\u043d\u0430", "title": "\u0428\u0438\u0440\u0438\u043d\u0430", "to": "Apple iPhone 15 Pro 128Gb Natural Titanium", "width": 1}, {"from": "187 \u0433", "label": "\u0412\u0430\u0433\u0430", "title": "\u0412\u0430\u0433\u0430", "to": "Apple iPhone 15 Pro 128Gb Natural Titanium", "width": 1}, {"from": "45 999 \u20b4", "label": "\u0426\u0456\u043d\u0430", "title": "\u0426\u0456\u043d\u0430", "to": "Apple iPhone 15 Pro 128Gb Natural Titanium", "width": 1}, {"from": "Samsung Galaxy S24 Ultra 12/256Gb Titanium Gray (SM-S928BZTGEUC)", "label": "\u0414\u0456\u0430\u0433\u043e\u043d\u0430\u043b\u044c \u0434\u0438\u0441\u043f\u043b\u0435\u044f", "title": "\u0414\u0456\u0430\u0433\u043e\u043d\u0430\u043b\u044c \u0434\u0438\u0441\u043f\u043b\u0435\u044f", "to": "6,8\"", "width": 1}, {"from": "Samsung Galaxy S24 Ultra 12/256Gb Titanium Gray (SM-S928BZTGEUC)", "label": "\u041c\u043e\u0434\u0435\u043b\u044c \u043f\u0440\u043e\u0446\u0435\u0441\u043e\u0440\u0430", "title": "\u041c\u043e\u0434\u0435\u043b\u044c \u043f\u0440\u043e\u0446\u0435\u0441\u043e\u0440\u0430", "to": "Qualcomm Snapdragon 8 Gen 3", "width": 1}, {"from": "Samsung Galaxy S24 Ultra 12/256Gb Titanium Gray (SM-S928BZTGEUC)", "label": "\u041e\u0441\u043d\u043e\u0432\u043d\u0430 \u043a\u0430\u043c\u0435\u0440\u0430", "title": "\u041e\u0441\u043d\u043e\u0432\u043d\u0430 \u043a\u0430\u043c\u0435\u0440\u0430", "to": "200+50+10+12 \u041c\u043f", "width": 1}, {"from": "Samsung Galaxy S24 Ultra 12/256Gb Titanium Gray (SM-S928BZTGEUC)", "label": "\u0417\u0443\u043c", "title": "\u0417\u0443\u043c", "to": "3\u0445 \u043e\u043f\u0442\u0438\u0447\u043d\u0438\u0439\n5\u0445 \u043e\u043f\u0442\u0438\u0447\u043d\u0438\u0439\n100\u0445 \u0446\u0438\u0444\u0440\u043e\u0432\u0438\u0439", "width": 1}, {"from": "Samsung Galaxy S24 Ultra 12/256Gb Titanium Gray (SM-S928BZTGEUC)", "label": "\u0421\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u0438 Wi-Fi", "title": "\u0421\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u0438 Wi-Fi", "to": "802.11be (Wi-Fi 7)", "width": 1}, {"from": "Samsung Galaxy S24 Ultra 12/256Gb Titanium Gray (SM-S928BZTGEUC)", "label": "\u041a\u043e\u043c\u043f\u043b\u0435\u043a\u0442\u0430\u0446\u0456\u044f", "title": "\u041a\u043e\u043c\u043f\u043b\u0435\u043a\u0442\u0430\u0446\u0456\u044f", "to": "\u0421\u043c\u0430\u0440\u0442\u0444\u043e\u043d\n\u041a\u0430\u0431\u0435\u043b\u044c Type-C\n\u0421\u0442\u0456\u043b\u0443\u0441\n\u0406\u043d\u0441\u0442\u0440\u0443\u043a\u0446\u0456\u044f\n\u0413\u0430\u0440\u0430\u043d\u0442\u0456\u0439\u043d\u0438\u0439 \u0442\u0430\u043b\u043e\u043d", "width": 1}, {"from": "Samsung Galaxy S24 Ultra 12/256Gb Titanium Gray (SM-S928BZTGEUC)", "label": "\u041c\u0430\u0442\u0435\u0440\u0456\u0430\u043b \u043a\u043e\u0440\u043f\u0443\u0441\u0443", "title": "\u041c\u0430\u0442\u0435\u0440\u0456\u0430\u043b \u043a\u043e\u0440\u043f\u0443\u0441\u0443", "to": "\u0422\u0438\u0442\u0430\u043d", "width": 1}, {"from": "Samsung Galaxy S24 Ultra 12/256Gb Titanium Gray (SM-S928BZTGEUC)", "label": "\u0412\u0438\u0441\u043e\u0442\u0430", "title": "\u0412\u0438\u0441\u043e\u0442\u0430", "to": "162,3 \u043c\u043c", "width": 1}, {"from": "Samsung Galaxy S24 Ultra 12/256Gb Titanium Gray (SM-S928BZTGEUC)", "label": "\u0428\u0438\u0440\u0438\u043d\u0430", "title": "\u0428\u0438\u0440\u0438\u043d\u0430", "to": "79 \u043c\u043c", "width": 1}, {"from": "Samsung Galaxy S24 Ultra 12/256Gb Titanium Gray (SM-S928BZTGEUC)", "label": "\u0413\u043b\u0438\u0431\u0438\u043d\u0430", "title": "\u0413\u043b\u0438\u0431\u0438\u043d\u0430", "to": "8,6 \u043c\u043c", "width": 1}, {"from": "Samsung Galaxy S24 Ultra 12/256Gb Titanium Gray (SM-S928BZTGEUC)", "label": "\u0412\u0430\u0433\u0430", "title": "\u0412\u0430\u0433\u0430", "to": "233 \u0433", "width": 1}, {"from": "Samsung Galaxy S24 Ultra 12/256Gb Titanium Gray (SM-S928BZTGEUC)", "label": "\u041a\u043e\u043b\u0456\u0440 \u0432\u0438\u0440\u043e\u0431\u043d\u0438\u043a\u0430", "title": "\u041a\u043e\u043b\u0456\u0440 \u0432\u0438\u0440\u043e\u0431\u043d\u0438\u043a\u0430", "to": "\u0421\u0456\u0440\u0438\u0439", "width": 1}, {"from": "Samsung Galaxy S24 Ultra 12/256Gb Titanium Gray (SM-S928BZTGEUC)", "label": "\u0426\u0456\u043d\u0430", "title": "\u0426\u0456\u043d\u0430", "to": "52 999 \u20b4", "width": 1}, {"from": "Apple iPhone 15 128Gb Black", "label": "\u041c\u043e\u0434\u0435\u043b\u044c \u043f\u0440\u043e\u0446\u0435\u0441\u043e\u0440\u0430", "title": "\u041c\u043e\u0434\u0435\u043b\u044c \u043f\u0440\u043e\u0446\u0435\u0441\u043e\u0440\u0430", "to": "Apple A16 Bionic", "width": 1}, {"from": "Apple iPhone 15 128Gb Black", "label": "\u0417\u0443\u043c", "title": "\u0417\u0443\u043c", "to": "2\u0445 \u043e\u043f\u0442\u0438\u0447\u043d\u0438\u0439\n10\u0445 \u0446\u0438\u0444\u0440\u043e\u0432\u0438\u0439", "width": 1}, {"from": "Apple iPhone 15 128Gb Black", "label": "\u0412\u0438\u0441\u043e\u0442\u0430", "title": "\u0412\u0438\u0441\u043e\u0442\u0430", "to": "147,6 \u043c\u043c", "width": 1}, {"from": "Apple iPhone 15 128Gb Black", "label": "\u0428\u0438\u0440\u0438\u043d\u0430", "title": "\u0428\u0438\u0440\u0438\u043d\u0430", "to": "71,6 \u043c\u043c", "width": 1}, {"from": "Apple iPhone 15 128Gb Black", "label": "\u0413\u043b\u0438\u0431\u0438\u043d\u0430", "title": "\u0413\u043b\u0438\u0431\u0438\u043d\u0430", "to": "7,8 \u043c\u043c", "width": 1}, {"from": "Apple iPhone 15 128Gb Black", "label": "\u0412\u0430\u0433\u0430", "title": "\u0412\u0430\u0433\u0430", "to": "171 \u0433", "width": 1}, {"from": "Apple iPhone 15 128Gb Black", "label": "\u0426\u0456\u043d\u0430", "title": "\u0426\u0456\u043d\u0430", "to": "39 499 \u20b4", "width": 1}, {"from": "Samsung Galaxy S24 8/256Gb Onyx Black (SM-S921BZKGEUC)", "label": "\u0414\u0456\u0430\u0433\u043e\u043d\u0430\u043b\u044c \u0434\u0438\u0441\u043f\u043b\u0435\u044f", "title": "\u0414\u0456\u0430\u0433\u043e\u043d\u0430\u043b\u044c \u0434\u0438\u0441\u043f\u043b\u0435\u044f", "to": "6,2\u0027\u0027", "width": 1}, {"from": "Samsung Galaxy S24 8/256Gb Onyx Black (SM-S921BZKGEUC)", "label": "\u0404\u043c\u043d\u0456\u0441\u0442\u044c \u0430\u043a\u0443\u043c\u0443\u043b\u044f\u0442\u043e\u0440\u0430", "title": "\u0404\u043c\u043d\u0456\u0441\u0442\u044c \u0430\u043a\u0443\u043c\u0443\u043b\u044f\u0442\u043e\u0440\u0430", "to": "4000 \u043c\u0410\u0433", "width": 1}, {"from": "Samsung Galaxy S24 8/256Gb Onyx Black (SM-S921BZKGEUC)", "label": "\u0412\u0438\u0441\u043e\u0442\u0430", "title": "\u0412\u0438\u0441\u043e\u0442\u0430", "to": "147 \u043c\u043c", "width": 1}, {"from": "Samsung Galaxy S24 8/256Gb Onyx Black (SM-S921BZKGEUC)", "label": "\u0412\u0430\u0433\u0430", "title": "\u0412\u0430\u0433\u0430", "to": "167 \u0433", "width": 1}, {"from": "Samsung Galaxy S24 8/256Gb Onyx Black (SM-S921BZKGEUC)", "label": "\u0426\u0456\u043d\u0430", "title": "\u0426\u0456\u043d\u0430", "to": "35 999 \u20b4", "width": 1}, {"from": "Apple iPhone 13 128Gb Starlight", "label": "\u041a\u043e\u043b\u0456\u0440 \u0432\u0438\u0440\u043e\u0431\u043d\u0438\u043a\u0430", "title": "\u041a\u043e\u043b\u0456\u0440 \u0432\u0438\u0440\u043e\u0431\u043d\u0438\u043a\u0430", "to": "\u0411\u0456\u043b\u0438\u0439", "width": 1}, {"from": "Samsung Galaxy A35 5G 6/128Gb Awesome Navy (SM-A356BZKBEUC)", "label": "\u041e\u043f\u0435\u0440\u0430\u0442\u0438\u0432\u043d\u0430 \u043f\u0430\u043c\u0027\u044f\u0442\u044c", "title": "\u041e\u043f\u0435\u0440\u0430\u0442\u0438\u0432\u043d\u0430 \u043f\u0430\u043c\u0027\u044f\u0442\u044c", "to": "6 \u0413\u0411", "width": 1}, {"from": "Samsung Galaxy A35 5G 6/128Gb Awesome Navy (SM-A356BZKBEUC)", "label": "\u0426\u0456\u043d\u0430", "title": "\u0426\u0456\u043d\u0430", "to": "13 499 \u20b4", "width": 1}, {"from": "6 \u0413\u0411", "label": "\u041e\u043f\u0435\u0440\u0430\u0442\u0438\u0432\u043d\u0430 \u043f\u0430\u043c\u0027\u044f\u0442\u044c", "title": "\u041e\u043f\u0435\u0440\u0430\u0442\u0438\u0432\u043d\u0430 \u043f\u0430\u043c\u0027\u044f\u0442\u044c", "to": "Samsung Galaxy A25 5G 6/128Gb Black (SM-A256BZKDEUC)", "width": 1}, {"from": "Samsung Galaxy A25 5G 6/128Gb Black (SM-A256BZKDEUC)", "label": "\u041c\u043e\u0434\u0435\u043b\u044c \u043f\u0440\u043e\u0446\u0435\u0441\u043e\u0440\u0430", "title": "\u041c\u043e\u0434\u0435\u043b\u044c \u043f\u0440\u043e\u0446\u0435\u0441\u043e\u0440\u0430", "to": "Exynos 1280", "width": 1}, {"from": "Samsung Galaxy A25 5G 6/128Gb Black (SM-A256BZKDEUC)", "label": "\u0427\u0430\u0441\u0442\u043e\u0442\u0430 \u043f\u0440\u043e\u0446\u0435\u0441\u0441\u043e\u0440\u0430", "title": "\u0427\u0430\u0441\u0442\u043e\u0442\u0430 \u043f\u0440\u043e\u0446\u0435\u0441\u0441\u043e\u0440\u0430", "to": "2 \u0445 2,4 \u0413\u0413\u0446 + 6 \u0445 2 \u0413\u0413\u0446", "width": 1}, {"from": "Samsung Galaxy A25 5G 6/128Gb Black (SM-A256BZKDEUC)", "label": "\u041c\u043e\u0434\u0435\u043b\u044c \u0433\u0440\u0430\u0444\u0456\u0447\u043d\u043e\u0433\u043e \u043f\u0440\u043e\u0446\u0435\u0441\u043e\u0440\u0430", "title": "\u041c\u043e\u0434\u0435\u043b\u044c \u0433\u0440\u0430\u0444\u0456\u0447\u043d\u043e\u0433\u043e \u043f\u0440\u043e\u0446\u0435\u0441\u043e\u0440\u0430", "to": "ARM Mali-G68", "width": 1}, {"from": "Samsung Galaxy A25 5G 6/128Gb Black (SM-A256BZKDEUC)", "label": "\u041e\u0441\u043d\u043e\u0432\u043d\u0430 \u043a\u0430\u043c\u0435\u0440\u0430", "title": "\u041e\u0441\u043d\u043e\u0432\u043d\u0430 \u043a\u0430\u043c\u0435\u0440\u0430", "to": "50+8+2 \u041c\u043f", "width": 1}, {"from": "Samsung Galaxy A25 5G 6/128Gb Black (SM-A256BZKDEUC)", "label": "\u0427\u0430\u0441 \u0440\u043e\u0431\u043e\u0442\u0438 \u0432 \u0440\u0435\u0436\u0438\u043c\u0456 \u0440\u043e\u0437\u043c\u043e\u0432\u0438", "title": "\u0427\u0430\u0441 \u0440\u043e\u0431\u043e\u0442\u0438 \u0432 \u0440\u0435\u0436\u0438\u043c\u0456 \u0440\u043e\u0437\u043c\u043e\u0432\u0438", "to": "\u0414\u043e 38 \u0433", "width": 1}, {"from": "Samsung Galaxy A25 5G 6/128Gb Black (SM-A256BZKDEUC)", "label": "\u041c\u0430\u0442\u0435\u0440\u0456\u0430\u043b \u043a\u043e\u0440\u043f\u0443\u0441\u0443", "title": "\u041c\u0430\u0442\u0435\u0440\u0456\u0430\u043b \u043a\u043e\u0440\u043f\u0443\u0441\u0443", "to": "\u041f\u043b\u0430\u0441\u0442\u0438\u043a", "width": 1}, {"from": "Samsung Galaxy A25 5G 6/128Gb Black (SM-A256BZKDEUC)", "label": "\u0412\u0438\u0441\u043e\u0442\u0430", "title": "\u0412\u0438\u0441\u043e\u0442\u0430", "to": "161 \u043c\u043c", "width": 1}, {"from": "Samsung Galaxy A25 5G 6/128Gb Black (SM-A256BZKDEUC)", "label": "\u0413\u043b\u0438\u0431\u0438\u043d\u0430", "title": "\u0413\u043b\u0438\u0431\u0438\u043d\u0430", "to": "8,3 \u043c\u043c", "width": 1}, {"from": "Samsung Galaxy A25 5G 6/128Gb Black (SM-A256BZKDEUC)", "label": "\u0426\u0456\u043d\u0430", "title": "\u0426\u0456\u043d\u0430", "to": "10 199 \u20b4", "width": 1}]);
nodeColors = {};
allNodes = nodes.get({ returnType: "Object" });
for (nodeId in allNodes) {
nodeColors[nodeId] = allNodes[nodeId].color;
}
allEdges = edges.get({ returnType: "Object" });
// adding nodes and edges to the graph
data = {nodes: nodes, edges: edges};
var options = {
"configure": {
"enabled": false
},
"edges": {
"color": {
"inherit": true
},
"smooth": {
"enabled": true,
"type": "dynamic"
}
},
"interaction": {
"dragNodes": true,
"hideEdgesOnDrag": false,
"hideNodesOnDrag": false
},
"physics": {
"enabled": true,
"forceAtlas2Based": {
"avoidOverlap": 0,
"centralGravity": 0.015,
"damping": 0.4,
"gravitationalConstant": -31,
"springConstant": 0.08,
"springLength": 100
},
"solver": "forceAtlas2Based",
"stabilization": {
"enabled": true,
"fit": true,
"iterations": 1000,
"onlyDynamicEdges": false,
"updateInterval": 50
}
}
};
network = new vis.Network(container, data, options);
network.on("selectNode", neighbourhoodHighlight);
network.on("stabilizationProgress", function(params) {
document.getElementById('loadingBar').removeAttribute("style");
var maxWidth = 496;
var minWidth = 20;
var widthFactor = params.iterations/params.total;
var width = Math.max(minWidth,maxWidth * widthFactor);
document.getElementById('bar').style.width = width + 'px';
document.getElementById('text').innerHTML = Math.round(widthFactor*100) + '%';
});
network.once("stabilizationIterationsDone", function() {
document.getElementById('text').innerHTML = '100%';
document.getElementById('bar').style.width = '496px';
document.getElementById('loadingBar').style.opacity = 0;
// really clean the dom element
setTimeout(function () {document.getElementById('loadingBar').style.display = 'none';}, 500);
});
return network;
}
drawGraph();
</script>
</body>
</html>