diff --git a/Парсер_IKEA/main.py b/Парсер_IKEA/main.py index 74e9138..fb7d810 100644 --- a/Парсер_IKEA/main.py +++ b/Парсер_IKEA/main.py @@ -433,6 +433,15 @@ def extract_data(url: str) -> dict: try: resp = requests.get(url, headers=HEADERS, timeout=15) resp.raise_for_status() + # 🔎 DEBUG: вывести в консоль базовую информацию об ответе + print("\n=== FETCH DEBUG ===") + print("URL: ", url) + print("Final URL: ", resp.url) + print("Status: ", resp.status_code) + print("ContentType:", resp.headers.get("Content-Type")) + print("Length: ", len(resp.text)) + print("Snippet ↓↓↓") + print(resp.text[:1000]) # покажет первые 1000 символов HTML soup = BeautifulSoup(resp.text, "html.parser") target = soup.select_one(CSS_SELECTOR) @@ -510,6 +519,7 @@ def extract_data(url: str) -> dict: return filtered except Exception as e: + print(e) return {"url": url, "error": str(e)} # ───────────────────── ПОСТРОЕНИЕ ВАРИАНТА / POST ───────────────── diff --git a/Парсер_IKEA/main_win.py b/Парсер_IKEA/main_win.py index 40b1c46..7f4dd19 100644 --- a/Парсер_IKEA/main_win.py +++ b/Парсер_IKEA/main_win.py @@ -1,15 +1,21 @@ #!/usr/bin/env python3 # -*- coding: utf-8 -*- -import os, json, re, math, time, html, requests, datetime, http.cookiejar as cookiejar -from collections import Counter -from typing import List, Optional +""" +IKEA Parser — надежный вариант: только Playwright (Chrome, persistent profile), +без requests, без параллельности и ускорителей. По одной вкладке, максимум логов. +""" + +import os, sys, re, json, math, time, html as html_mod, datetime, traceback +from typing import Optional +import logging +from logging.handlers import RotatingFileHandler +from urllib import request as urlrequest +from urllib.error import URLError, HTTPError + from bs4 import BeautifulSoup from openpyxl import Workbook -from requests.adapters import HTTPAdapter -from urllib3.util.retry import Retry -import logging -import socket +from playwright.sync_api import sync_playwright, TimeoutError as PWTimeout # ───────────────────────── ПУТИ / ФАЙЛЫ ─────────────────────────── BASE_DIR = os.path.dirname(os.path.abspath(__file__)) @@ -21,47 +27,19 @@ OUTPUT_FILE = os.path.join(RECORDS_DIR, "records.xlsx") DICT_FILE = os.path.join(BASE_DIR, "dictionary_main.txt") EXCL_FILE = os.path.join(BASE_DIR, "exclusion_materials.txt") POST_LOG = os.path.join(RECORDS_DIR, "post_log.txt") -FETCH_LOG = os.path.join(RECORDS_DIR, "fetch_debug.log") -COOKIES_TXT = os.path.join(BASE_DIR, "cookies.txt") -# ───────────────────────── ЛОГИРОВАНИЕ ──────────────────────────── -logger = logging.getLogger("ikea_parser") -logger.setLevel(logging.DEBUG) -# файл — максимум подробностей -fh = logging.FileHandler(FETCH_LOG, encoding="utf-8") -fh.setLevel(logging.DEBUG) -fh.setFormatter(logging.Formatter("%(asctime)s [%(levelname)s] %(message)s")) -# консоль — INFO -ch = logging.StreamHandler() -ch.setLevel(logging.INFO) -ch.setFormatter(logging.Formatter("%(message)s")) -logger.addHandler(fh) -logger.addHandler(ch) +LOGS_DIR = os.path.join(RECORDS_DIR, "logs") +HTML_DIR = os.path.join(RECORDS_DIR, "html_debug") +JSON_DIR = os.path.join(RECORDS_DIR, "json_debug") +PROFILE_DIR = os.path.join(BASE_DIR, "playwright_profile") +os.makedirs(LOGS_DIR, exist_ok=True) +os.makedirs(HTML_DIR, exist_ok=True) +os.makedirs(JSON_DIR, exist_ok=True) +os.makedirs(PROFILE_DIR, exist_ok=True) -logger.info("=== IKEA parser started ===") -logger.info(f"BASE_DIR={BASE_DIR}") -logger.info(f"Python={os.sys.version}") -try: - logger.info(f"Hostname={socket.gethostname()} IP={socket.gethostbyname(socket.gethostname())}") -except Exception as _e: - logger.info("Hostname/IP: unavailable") +APP_LOG_FILE = os.path.join(LOGS_DIR, "app.log") -# ───────────────────────── НАСТРОЙКИ POST ───────────────────────── -POST_URL = os.getenv("IKEA_POST_URL", "http://localhost:3005/parser/data") -POST_API_KEY = os.getenv("IKEA_POST_API_KEY", "") -POST_TIMEOUT = 20 -BATCH_SIZE = 50 - -# ───────────────────────── НАСТРОЙКИ САЙТА ──────────────────────── -HEADERS = { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) " - "AppleWebKit/537.36 (KHTML, like Gecko) " - "Chrome/124.0.0.0 Safari/537.36", - "Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8", - "Accept-Language": "pl-PL,pl;q=0.9,en;q=0.8,ru;q=0.7", - "Cache-Control": "no-cache", - "Pragma": "no-cache", -} +# ───────────────────────── НАСТРОЙКИ ────────────────────────────── CSS_SELECTOR = ".pip-product__subgrid.product-pip.js-product-pip" BLOCKS = [ @@ -106,45 +84,40 @@ KEEP_COLUMNS = [ "url", ] -# ───────────────────────── HTTP СЕССИЯ ──────────────────────────── -def make_session() -> requests.Session: - s = requests.Session() - s.headers.update(HEADERS) - # игнор системных прокси/mitm переменных окружения Windows - s.trust_env = False - retries = Retry( - total=5, - backoff_factor=0.5, - status_forcelist=(403, 429, 500, 502, 503, 504), - allowed_methods=frozenset(["GET", "POST"]) - ) - s.mount("https://", HTTPAdapter(max_retries=retries)) - s.mount("http://", HTTPAdapter(max_retries=retries)) - return s +UA = os.getenv( + "IKEA_UA", + "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 " + "(KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36" +) +ACCEPT_LANG = os.getenv("IKEA_ACCEPT_LANGUAGE", "pl-PL,pl;q=0.9,en;q=0.8,ru;q=0.7") -SESSION = make_session() +# Playwright запускаем Chrome, persistent profile; по умолчанию не headless — +# так Cloudflare реже блокирует. +HEADLESS = os.getenv("IKEA_HEADLESS", "0") not in {"0", "false", "False", ""} -def load_netscape_cookies(session: requests.Session, path: str): - if os.path.isfile(path): - cj = cookiejar.MozillaCookieJar() - try: - cj.load(path, ignore_discard=True, ignore_expires=True) - session.cookies.update(cj) - logger.info(f"🍪 Cookies loaded: {path} ({len(cj)} pcs)") - except Exception as e: - logger.warning(f"⚠️ Failed to load cookies.txt: {e}") - else: - logger.info("cookies.txt not found — proceeding without external cookies") +# POST/API без requests +POST_URL = os.getenv("IKEA_POST_URL", "http://localhost:3005/parser/data") +POST_API_KEY = os.getenv("IKEA_POST_API_KEY", "") +POST_TIMEOUT = int(os.getenv("IKEA_POST_TIMEOUT", "20")) +BATCH_SIZE = int(os.getenv("IKEA_BATCH_SIZE", "50")) -load_netscape_cookies(SESSION, COOKIES_TXT) +# ───────────────────────── ЛОГИРОВАНИЕ ──────────────────────────── +logger = logging.getLogger("ikea_pw_simple") +logger.setLevel(logging.DEBUG) +_fmt = logging.Formatter("%(asctime)s [%(levelname)s] %(message)s") -# ───────────────────────── УТИЛИТЫ I/O ──────────────────────────── -def ask_bool(prompt: str, default: str = "1") -> bool: - try: - val = input(f"{prompt} (1=yes, 0=no) [{default}]: ").strip() or default - except EOFError: - val = default - return val == "1" +fh = RotatingFileHandler(APP_LOG_FILE, maxBytes=2_000_000, backupCount=3, encoding="utf-8") +fh.setFormatter(_fmt) +fh.setLevel(logging.DEBUG) +logger.addHandler(fh) + +ch = logging.StreamHandler(sys.stdout) +ch.setFormatter(_fmt) +ch.setLevel(logging.INFO) +logger.addHandler(ch) + +def _now_tag(): + return datetime.datetime.now().strftime("%Y%m%d_%H%M%S") def _post_log(msg: str): try: @@ -153,50 +126,30 @@ def _post_log(msg: str): except Exception: pass -def _now_tag(): - return datetime.datetime.now().strftime("%Y%m%d_%H%M%S") - def _save_json_batch(payload: dict, batch_index: int): fname = f"ikea_batch_{_now_tag()}_{batch_index:04d}.json" - fpath = os.path.join(RECORDS_DIR, fname) + fpath = os.path.join(JSON_DIR, fname) with open(fpath, "w", encoding="utf-8") as fh: json.dump(payload, fh, ensure_ascii=False, indent=2) - logger.info(f"💾 JSON saved: {fname}") + logger.debug(f"💾 JSON saved: {fpath}") return fpath -def _safe_name_from_url(url: str) -> str: - return re.sub(r"[^a-zA-Z0-9]+", "_", url)[:80] - -def _dump_meta(prefix: str, url: str, status: int, elapsed: float, text_len: int, final_url: str, headers: dict, note: str = ""): +def _save_html_snapshot(prefix: str, idx: int, content: str): + fname = f"{idx:04d}_{prefix}_{_now_tag()}.html" + fpath = os.path.join(HTML_DIR, fname) try: - base = f"{prefix}_{_now_tag()}_{_safe_name_from_url(url)}" - meta = os.path.join(RECORDS_DIR, base + ".meta.txt") - with open(meta, "w", encoding="utf-8") as fh: - fh.write(f"URL: {url}\n") - fh.write(f"FINAL_URL: {final_url}\n") - fh.write(f"STATUS: {status}\n") - fh.write(f"ELAPSED_SEC: {elapsed:.3f}\n") - fh.write(f"RESP_LEN: {text_len}\n") - fh.write(f"NOTE: {note}\n") - fh.write("HEADERS:\n") - for k, v in headers.items(): - hv = v if isinstance(v, str) else str(v) - fh.write(f" {k}: {hv}\n") - except Exception as e: - logger.debug(f"Meta dump failed: {e}") - -def _save_debug_html(url: str, text: str, prefix: str = "debug", note: str = "", status: Optional[int] = None, elapsed: Optional[float] = None, headers: Optional[dict] = None, final_url: Optional[str] = None): - try: - base = f"{prefix}_{_now_tag()}_{_safe_name_from_url(url)}" - fpath = os.path.join(RECORDS_DIR, base + ".html") with open(fpath, "w", encoding="utf-8") as fh: - fh.write(text) - logger.info(f"🧪 Saved HTML snapshot: {os.path.basename(fpath)}") - # мета рядом - if status is not None and headers is not None and final_url is not None and elapsed is not None: - _dump_meta(prefix, url, status, elapsed, len(text or ""), final_url, headers, note=note) - except Exception as e: - logger.debug(f"HTML dump failed: {e}") + fh.write(content) + logger.debug("🧪 HTML snapshot: %s", fpath) + except Exception: + logger.exception("Failed to save HTML snapshot") + +def ask_bool(prompt: str, default: str = "1") -> bool: + try: + val = input(f"{prompt} (1=yes, 0=no) [{default}]: ").strip() or default + except EOFError: + val = default + return val == "1" # ───────────────────────── СЛОВАРИ / ФИЛЬТРЫ ────────────────────── def load_dictionary(path: str) -> dict: @@ -207,7 +160,6 @@ def load_dictionary(path: str) -> dict: return {k: v for k, v in pairs} DICT = load_dictionary(DICT_FILE) - def translate_token(token: str) -> str: return DICT.get(token, token) @@ -221,8 +173,8 @@ def load_exclusions(path: str) -> set: EXCLUSIONS = load_exclusions(EXCL_FILE) -def materials_from_details_json(details: dict) -> List[str]: - out: List[str] = [] +def materials_from_details_json(details: dict) -> list[str]: + out: list[str] = [] def walk(node): if isinstance(node, dict): for k, v in node.items(): @@ -430,14 +382,14 @@ def format_product_details(raw_details, add_summary_desc="", with_html=False, sk if mats: out.append("Materiały") - for m in mats: - ptype = m.get("productType", "") - for mat in (m.get("materials") or []): - material = mat.get("material", "") - if ptype: - out.append(ptype) - if material: - out.append(material) + for m in mats: + ptype = m.get("productType", "") + for mat in (m.get("materials") or []): + material = mat.get("material", "") + if ptype: + out.append(ptype) + if material: + out.append(material) if care: detailsCareText = mac.get("detailsCareText", "Pielęgnacja") @@ -473,207 +425,160 @@ def build_variant_color_measure(desc: str, type_name: str, measurement: str) -> if t: pattern = r"^\s*" + re.escape(t) + r"[\s,;:\-–—/]*" s = re.sub(pattern, "", s, flags=re.IGNORECASE) - if not re.search(r"[0-9A-Za-zА-Яа-яЁёÀ-ž]", s or ""): s = "" - s = s.strip() meas = (measurement or "").strip() - if not s: return meas if meas else "" - s = s[:1].upper() + s[1:] return f"{s}, {meas}" if meas else s -# ───────────────────── СКРАПИНГ КАРТОЧКИ ────────────────────────── -def extract_data(url: str, force_dump: bool = False) -> dict: +# ───────────────────── Playwright — одна вкладка ────────────────── +def open_browser(): + pw = sync_playwright().start() + # persistent Chrome: Cloudflare к нему относится лояльнее + ctx = pw.chromium.launch_persistent_context( + PROFILE_DIR, + headless=HEADLESS, + channel="chrome", # важное отличие + user_agent=UA, + locale="pl-PL", + java_script_enabled=True, + accept_downloads=False, + viewport={"width": 1366, "height": 864}, + # можно добавить proxy={"server": "..."} при необходимости + ) + page = ctx.new_page() + # базовые заголовки (совпадают с реальным браузером) + page.set_extra_http_headers({"Accept-Language": ACCEPT_LANG}) + return pw, ctx, page + +def close_browser(pw, ctx): try: - logger.debug(f"GET {url}") - t0 = time.time() - resp = SESSION.get(url, timeout=25, allow_redirects=True) - elapsed = time.time() - t0 - status = resp.status_code - final_url = str(getattr(resp, "url", url)) - text_len = len(resp.text or "") - logger.info(f"HTTP {status} {final_url} ({elapsed:.2f}s, {text_len} bytes)") + ctx.close() + pw.stop() + except Exception: + pass - # Всегда сохраняем первые (force_dump=True) или любую «сомнительную» страницу - need_dump = force_dump or status != 200 or ("data-hydration-props" not in resp.text) - if need_dump: - note = "force_dump" if force_dump else ("no_hydration" if "data-hydration-props" not in resp.text else f"status_{status}") - _save_debug_html(url, resp.text, prefix=f"resp{status}", note=note, status=status, elapsed=elapsed, headers=resp.headers, final_url=final_url) +def fetch_page(page, url: str, idx: int) -> tuple[str, Optional[str]]: + """ + Возвращает (full_html, hydration_raw_json_or_None). + Сохраняет снапшот, если не нашли data-hydration-props. + """ + t0 = time.time() + resp = page.goto(url, wait_until="domcontentloaded", timeout=60_000) + status = resp.status if resp else 0 + # ждём селектор, но не слишком долго + try: + page.wait_for_selector(CSS_SELECTOR, timeout=25_000, state="attached") + except PWTimeout: + pass + full_html = page.content() + # прямой атрибут + raw = None + try: + el = page.locator(CSS_SELECTOR).first + raw = el.get_attribute("data-hydration-props") + except Exception: + raw = None + elapsed = time.time() - t0 + logger.info("PW %s status=%s %.2fs len=%s", url, status, elapsed, len(full_html or "")) + # если Cloudflare/403 — сохраним снапшот для диагностики + if not raw: + _save_html_snapshot("no_hydration", idx, full_html or "") + return full_html or "", raw - resp.raise_for_status() +# ───────────────────── Парсинг страницы ─────────────────────────── +def parse_page(url: str, full_html: str, raw_json: Optional[str]) -> dict: + if not full_html: + return {"url": url, "error": "no html"} - soup = BeautifulSoup(resp.text, "html.parser") + soup = BeautifulSoup(full_html, "html.parser") + # Fallback: если не пришёл raw, попробуем из DOM + if not raw_json: target = soup.select_one(CSS_SELECTOR) - if not target: - logger.warning("CSS selector NOT FOUND") - _save_debug_html(url, resp.text, prefix="no_selector", note="css_selector_missing", status=status, elapsed=elapsed, headers=resp.headers, final_url=final_url) - return {"url": url, "error": "CSS selector not found", "http_status": status} - - raw = target.get("data-hydration-props") - if not raw: - logger.warning("data-hydration-props NOT FOUND") - _save_debug_html(url, resp.text, prefix="no_hydration", note="attribute_missing", status=status, elapsed=elapsed, headers=resp.headers, final_url=final_url) - return {"url": url, "error": "data-hydration-props not found", "http_status": status} - - decoded = html.unescape(raw) - try: - full_json = json.loads(decoded) - except Exception as je: - logger.error(f"JSON decode error: {je}") - # сохраним кусок для анализа - sample_name = f"bad_json_{_now_tag()}_{_safe_name_from_url(url)}.txt" - with open(os.path.join(RECORDS_DIR, sample_name), "w", encoding="utf-8") as fh: - fh.write(decoded[:20000]) - return {"url": url, "error": f"json decode error: {je}", "http_status": status} - - result = {"url": url} - for block in BLOCKS: - result.update(flatten_block(block, full_json.get(block, {}))) - - kf_json = _parse_json_value(result.get("keyFacts.keyFacts")) - dim_json = _parse_json_value(result.get("productInformationSection.dimensionProps")) - det_json = _parse_json_value(result.get("productInformationSection.productDetailsProps")) - - result["keyFacts.keyFacts_formatted"] = format_keyfacts(kf_json) - result["productInformationSection.dimensionProps_formatted"] = format_dimensions(dim_json, with_html=False, translated=False) - html_trans = format_dimensions(dim_json, with_html=True, translated=True) - if isinstance(html_trans, str) and html_trans.startswith("strong>"): - html_trans = "<" + html_trans - result["productInformationSection.dimensionProps_formatted_html_translated"] = html_trans - - total_kg = _collect_packaging_total_kg((dim_json or {}).get("packaging") or {}) - result["total brutto"] = _fmt_float(total_kg) - - summary_desc = result.get("productSummary.description", "") or "" - result["productInformationSection.productDetailsProps_formatted"] = format_product_details(det_json, add_summary_desc=summary_desc, with_html=False, skip_assembly=True) - result["productInformationSection.productDetailsProps_formatted_html"] = format_product_details(det_json, add_summary_desc=summary_desc, with_html=True, skip_assembly=True) - - desc = result.get("pipPricePackage.productDescription", "") or "" - tname = result.get("stockcheckSection.typeName", "") or "" - meas = result.get("pipPricePackage.measurementText", "") or "" - result["prductVariantColorMeasure"] = build_variant_color_measure(desc, tname, meas) - - # breadcrumb - breadcrumb = None - for tag in soup.find_all("script", attrs={"type": lambda t: t and "ld+json" in t}): - try: - data = json.loads(tag.string) - except Exception: - continue - if isinstance(data, list): - data = next((d for d in data if isinstance(d, dict) and d.get("@type") == "BreadcrumbList"), None) - if isinstance(data, dict) and data.get("@type") == "BreadcrumbList": - items = data.get("itemListElement", []) - names = [it.get("name", "") for it in items] - breadcrumb = "/".join(names) - break - if breadcrumb: - result["categoryBreadcrumb"] = breadcrumb - - # применяем whitelist - filtered = {k: result.get(k) for k in KEEP_COLUMNS if k != "originalName"} - - # originalName = productName + " " + typeName - pn = (result.get("buyModule.productName") or "").strip() - tn = (result.get("stockcheckSection.typeName") or "").strip() - if pn and tn: - orig_name = f"{pn} {tn}" - else: - orig_name = pn or tn - filtered["originalName"] = orig_name - - return filtered + if target: + raw_json = target.get("data-hydration-props") + if not raw_json: + return {"url": url, "error": "data-hydration-props not found"} + try: + decoded = html_mod.unescape(raw_json) + full_json = json.loads(decoded) except Exception as e: - logger.error(f"Request error for {url}: {e}") - return {"url": url, "error": str(e), "http_status": None} + return {"url": url, "error": f"json decode error: {e}"} -# ───────────────────── ПОСТРОЕНИЕ ВАРИАНТА / POST ───────────────── -def _split_color_size(text: str): - if not text: - return "", "" - parts = [p.strip() for p in text.split(",", 1)] - if len(parts) == 2: - return parts[0], parts[1] - return "", parts[0] + result = {"url": url} + for block in BLOCKS: + result.update(flatten_block(block, full_json.get(block, {}))) -def _ceil_price(v): - try: - return int(math.ceil(float(v))) - except Exception: - return None + kf_json = _parse_json_value(result.get("keyFacts.keyFacts")) + dim_json = _parse_json_value(result.get("productInformationSection.dimensionProps")) + det_json = _parse_json_value(result.get("productInformationSection.productDetailsProps")) -def _ceil_int(v): - try: - return int(math.ceil(float(v))) - except Exception: - return None + result["keyFacts.keyFacts_formatted"] = format_keyfacts(kf_json) + result["productInformationSection.dimensionProps_formatted"] = format_dimensions(dim_json, with_html=False, translated=False) + html_trans = format_dimensions(dim_json, with_html=True, translated=True) + if isinstance(html_trans, str) and html_trans.startswith("strong>"): + html_trans = "<" + html_trans + result["productInformationSection.dimensionProps_formatted_html_translated"] = html_trans -def build_variant(row: dict) -> dict: - visible = row.get("productSummary.visibleItemNo") or "" - sku = visible.replace(" ", "") + total_kg = _collect_packaging_total_kg((dim_json or {}).get("packaging") or {}) + result["total brutto"] = _fmt_float(total_kg) - csm = (row.get("prductVariantColorMeasure") or "").strip() - color, size = _split_color_size(csm) - if not color and not size: - size = (row.get("pipPricePackage.measurementText") or "").strip() + summary_desc = result.get("productSummary.description", "") or "" + result["productInformationSection.productDetailsProps_formatted"] = format_product_details(det_json, add_summary_desc=summary_desc, with_html=False, skip_assembly=True) + result["productInformationSection.productDetailsProps_formatted_html"] = format_product_details(det_json, add_summary_desc=summary_desc, with_html=True, skip_assembly=True) - cost = _ceil_price(row.get("buyModule.productPrice")) - url = row.get("url") or "" + desc = result.get("pipPricePackage.productDescription", "") or "" + tname = result.get("stockcheckSection.typeName", "") or "" + meas = result.get("pipPricePackage.measurementText", "") or "" + result["prductVariantColorMeasure"] = build_variant_color_measure(desc, tname, meas) - name = row.get("originalName") or row.get("buyModule.productName") or "" - desc_html = row.get("productInformationSection.productDetailsProps_formatted_html") or "" - composition_html = row.get("productInformationSection.dimensionProps_formatted_html_translated") or "" + # breadcrumb + breadcrumb = None + for tag in soup.find_all("script", attrs={"type": lambda t: t and "ld+json" in t}): + try: + data = json.loads(tag.string) + except Exception: + continue + if isinstance(data, list): + data = next((d for d in data if isinstance(d, dict) and d.get("@type") == "BreadcrumbList"), None) + if isinstance(data, dict) and data.get("@type") == "BreadcrumbList": + items = data.get("itemListElement", []) + names = [it.get("name", "") for it in items] + breadcrumb = "/".join(names) + break + if breadcrumb: + result["categoryBreadcrumb"] = breadcrumb - imgs = [] - raw_imgs = row.get("productGallery.urls") or "" - if isinstance(raw_imgs, str): - imgs = [x for x in raw_imgs.split("\n") if x.strip()] + filtered = {k: result.get(k) for k in KEEP_COLUMNS if k != "originalName"} + pn = (result.get("buyModule.productName") or "").strip() + tn = (result.get("stockcheckSection.typeName") or "").strip() + filtered["originalName"] = (f"{pn} {tn}".strip() or pn or tn) - in_stock = bool(row.get("availabilityGroup.serverOnlineSellable")) or bool(row.get("buyModule.onlineSellable")) - - weight_kg = _ceil_int(row.get("total brutto")) - - variant = { - "status_id": 1, - "color": color.capitalize() if color else "none", - "sku": sku, - "size": size, - "cost": cost, - "originalUrl": url, - "originalName": name, - "originalDescription": desc_html, - "originalComposition": composition_html, - "images": imgs, - "inStock": in_stock, - "weight": weight_kg if weight_kg is not None else 0, - } - - return { - "category": {"name": "TEST/IKEA"}, # временно по вашему ТЗ - "brand": {"name": "ikea"}, - "variant": variant, - } + return filtered +# ───────────────────── POST (urllib) ────────────────────────────── def post_payload(payload: dict) -> dict: - headers = {"Content-Type": "application/json"} + headers = {"Content-Type": "application/json; charset=utf-8"} if POST_API_KEY: headers["Authorization"] = f"Bearer {POST_API_KEY}" - - body = json.dumps(payload, ensure_ascii=False) - _post_log(f"→ POST {POST_URL}\nHeaders: {headers}\nBody: {body}") - + body = json.dumps(payload, ensure_ascii=False).encode("utf-8") + req = urlrequest.Request(POST_URL, data=body, headers=headers, method="POST") + _post_log(f"→ POST {POST_URL}\nHeaders: {headers}\nBody: {body.decode('utf-8')}") try: - r = SESSION.post(POST_URL, headers=headers, data=body.encode("utf-8"), timeout=POST_TIMEOUT) - text = r.text - _post_log(f"← {r.status_code}\n{text}\n{'-'*60}") - ok = 200 <= r.status_code < 300 - return {"ok": ok, "status": r.status_code, "response": text} - except Exception as e: + with urlrequest.urlopen(req, timeout=POST_TIMEOUT) as resp: + txt = resp.read().decode("utf-8", errors="replace") + code = resp.getcode() + _post_log(f"← {code}\n{txt}\n{'-'*60}") + return {"ok": 200 <= code < 300, "status": code, "response": txt} + except HTTPError as e: + txt = e.read().decode("utf-8", errors="replace") + _post_log(f"← {e.code}\n{txt}\n{'-'*60}") + return {"ok": False, "status": e.code, "response": txt} + except URLError as e: _post_log(f"× ERROR: {e}\n{'-'*60}") return {"ok": False, "status": None, "error": str(e)} @@ -683,39 +588,27 @@ def safe_cell(val): return json.dumps(val, ensure_ascii=False) return "" if val is None else val -def _clean_url(u: str) -> str: - if not isinstance(u, str): - return "" - u = u.strip().replace("\t", " ") - u = u.replace("\ufeff", "").replace("\xa0", "") - u = u.strip("\r\n ") - return u - def main(): - logger.info(f"POST_URL={POST_URL} OUTPUT_FILE={OUTPUT_FILE}") + logger.info("Playwright-only (simple). BASE_DIR=%s", BASE_DIR) + logger.info("Python=%s", sys.version.replace("\n", " ")) + logger.info("POST_URL=%s OUTPUT_FILE=%s", POST_URL, OUTPUT_FILE) + logger.info("HEADLESS=%s UA=%s Accept-Language=%s", HEADLESS, UA, ACCEPT_LANG) + SAVE_JSON = ask_bool("SAVE_JSON (сохранять JSON на диск?)", "1") SEND_JSON = ask_bool("SEND_JSON (отправлять на API?)", "1") - # читаем ссылки (utf-8-sig для BOM) - with open(INPUT_FILE, "r", encoding="utf-8-sig", newline="") as f: - raw_lines = f.readlines() - links = [_clean_url(x) for x in raw_lines if _clean_url(x)] - logger.info(f"Всего ссылок: {len(links)}") - if not links: - logger.warning("Список ссылок пуст — проверьте product_links.txt") + with open(INPUT_FILE, "r", encoding="utf-8") as f: + links = [line.strip() for line in f if line.strip()] + print(f"Всего ссылок: {len(links)}") - # готовим Excel wb = Workbook() ws = wb.active ws.title = "IKEA Products" ws.append(KEEP_COLUMNS) - # батч для JSON/API batch_items = [] batch_index = 1 - STATUS_COUNTER = Counter() - def flush_batch(): nonlocal batch_items, batch_index if not batch_items: @@ -726,68 +619,119 @@ def main(): if SEND_JSON: res = post_payload(payload) ok = res.get("ok") - logger.info(f"POST batch {batch_index}: {'OK' if ok else 'FAIL'} (status={res.get('status')})") + print(f"POST batch {batch_index}: {'OK' if ok else 'FAIL'} (status={res.get('status')})") + logger.info("POST batch %d: %s (status=%s)", batch_index, "OK" if ok else "FAIL", res.get("status")) batch_index += 1 batch_items = [] - for idx, link in enumerate(links, 1): - logger.info(f"[{idx}/{len(links)}] {link}") - force_dump = idx <= 3 # ← Принудительно сохраняем HTML для первых 3 ссылок - row = extract_data(link, force_dump=force_dump) - - st = row.get("http_status") - if st is None and "error" in row: - STATUS_COUNTER["err"] += 1 - else: - STATUS_COUNTER[str(st or 200)] += 1 - - # пишем в Excel - ws.append([safe_cell(row.get(col, "")) for col in KEEP_COLUMNS]) - - # ФИЛЬТРЫ для JSON/API - try: - price = float(row.get("buyModule.productPrice") or 0) - except Exception: - price = 0.0 - - try: - total_kg = float(row.get("total brutto") or 0) - except Exception: - total_kg = 0.0 - - details_json = row.get("productInformationSection.productDetailsProps") or {} - - if not (20 <= price <= 1500): - logger.debug(f"Skip by price: {price}") - elif total_kg > 30: - logger.debug(f"Skip by weight: {total_kg} kg") - elif materials_match_exclusions(details_json, EXCLUSIONS): - logger.debug("Skip by exclusions (materials)") - else: + pw, ctx, page = open_browser() + try: + for idx, url in enumerate(links, 1): + print(f"[{idx}/{len(links)}] {url}") try: - item = build_variant(row) + full_html, raw = fetch_page(page, url, idx) + except Exception: + logger.exception("Fetch error for %s", url) + continue + + row = parse_page(url, full_html, raw) + if row.get("error"): + logger.warning("Extract error [%d] %s: %s", idx, url, row["error"]) + + # Excel + ws.append([safe_cell(row.get(col, "")) for col in KEEP_COLUMNS]) + + # Фильтры для JSON/API + try: + price = float(row.get("buyModule.productPrice") or 0) + except Exception: + price = 0.0 + try: + total_kg = float(row.get("total brutto") or 0) + except Exception: + total_kg = 0.0 + details_json = row.get("productInformationSection.productDetailsProps") or {} + + if not (20 <= price <= 1500): + pass + elif total_kg > 30: + pass + elif materials_match_exclusions(details_json, EXCLUSIONS): + pass + else: + # build variant (минимально как раньше) + def _ceil_price(v): + try: return int(math.ceil(float(v))) + except: return None + def _ceil_int(v): + try: return int(math.ceil(float(v))) + except: return None + + visible = row.get("productSummary.visibleItemNo") or "" + sku = visible.replace(" ", "") + csm = (row.get("prductVariantColorMeasure") or "").strip() + color, size = "", "" + if csm: + parts = [p.strip() for p in csm.split(",", 1)] + if len(parts) == 2: + color, size = parts[0], parts[1] + else: + size = parts[0] + if not color and not size: + size = (row.get("pipPricePackage.measurementText") or "").strip() + + cost = _ceil_price(row.get("buyModule.productPrice")) + name = row.get("originalName") or row.get("buyModule.productName") or "" + desc_html = row.get("productInformationSection.productDetailsProps_formatted_html") or "" + composition_html = row.get("productInformationSection.dimensionProps_formatted_html_translated") or "" + imgs = [] + raw_imgs = row.get("productGallery.urls") or "" + if isinstance(raw_imgs, str): + imgs = [x for x in raw_imgs.split("\n") if x.strip()] + in_stock = bool(row.get("availabilityGroup.serverOnlineSellable")) or bool(row.get("buyModule.onlineSellable")) + weight_kg = _ceil_int(row.get("total brutto")) + + item = { + "category": {"name": "TEST/IKEA"}, + "brand": {"name": "ikea"}, + "variant": { + "status_id": 1, + "color": color.capitalize() if color else "none", + "sku": sku, + "size": size, + "cost": cost, + "originalUrl": url, + "originalName": name, + "originalDescription": desc_html, + "originalComposition": composition_html, + "images": imgs, + "inStock": in_stock, + "weight": weight_kg if weight_kg is not None else 0, + }, + } batch_items.append(item) - except Exception as e: - logger.error(f"build_variant error for {link}: {e}") - _post_log(f"× build_variant error for {link}: {e}") - # авто-сейв Excel каждые 50 строк - if idx % 50 == 0: - wb.save(OUTPUT_FILE) - logger.info(f"💾 autosave: {OUTPUT_FILE}") + if idx % 50 == 0: + wb.save(OUTPUT_FILE) + print(f"💾 autosave: {OUTPUT_FILE}") - # флаш батча при достижении лимита - if len(batch_items) >= BATCH_SIZE: - flush_batch() + if len(batch_items) >= BATCH_SIZE: + flush_batch() - # финал - wb.save(OUTPUT_FILE) - logger.info(f"\n✅ Excel готов: {OUTPUT_FILE}") + wb.save(OUTPUT_FILE) + print(f"\n✅ Excel готов: {OUTPUT_FILE}") + flush_batch() - flush_batch() - - logger.info(f"HTTP stats: {dict(STATUS_COUNTER)}") - logger.info("🎯 Готово.") + finally: + close_browser(pw, ctx) + logger.info("Playwright closed. Bye.") if __name__ == "__main__": - main() + try: + main() + except KeyboardInterrupt: + print("\nInterrupted by user.") + logger.warning("Interrupted by user") + except Exception: + logger.exception("Fatal error") + raise diff --git a/Парсер_IKEA/playwright_profile/BrowserMetrics/BrowserMetrics-68AC941C-159F2.pma b/Парсер_IKEA/playwright_profile/BrowserMetrics/BrowserMetrics-68AC941C-159F2.pma new file mode 100644 index 0000000..42f70e1 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/BrowserMetrics/BrowserMetrics-68AC941C-159F2.pma differ diff --git a/Парсер_IKEA/playwright_profile/ChromeFeatureState b/Парсер_IKEA/playwright_profile/ChromeFeatureState new file mode 100644 index 0000000..882e92a --- /dev/null +++ b/Парсер_IKEA/playwright_profile/ChromeFeatureState @@ -0,0 +1 @@ +{"disable-features":"AcceptCHFrame,AutoExpandDetailsElement,AvoidUnnecessaryBeforeUnloadCheckSync,CertificateTransparencyComponentUpdater,DestroyProfileOnBrowserClose,DialMediaRouteProvider,GlobalMediaControls,HttpsUpgrades,ImprovedCookieControls,LazyFrameLoading,MediaRouter,PaintHolding,PlzDedicatedWorker,Translate","enable-features":"UkmSamplingRate\u003CUkmSamplingRate","force-fieldtrial-params":"UkmSamplingRate.Sampled_NoSeed_Stable:_default_sampling/1000000","force-fieldtrials":"*SeedFileTrial/Default/UkmSamplingRate/Sampled_NoSeed_Stable"} \ No newline at end of file diff --git a/Парсер_IKEA/playwright_profile/Default/Account Web Data b/Парсер_IKEA/playwright_profile/Default/Account Web Data new file mode 100644 index 0000000..ec10bbc Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Account Web Data differ diff --git a/Парсер_IKEA/playwright_profile/Default/Account Web Data-journal b/Парсер_IKEA/playwright_profile/Default/Account Web Data-journal new file mode 100644 index 0000000..e69de29 diff --git a/Парсер_IKEA/playwright_profile/Default/Affiliation Database b/Парсер_IKEA/playwright_profile/Default/Affiliation Database new file mode 100644 index 0000000..49e1ee9 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Affiliation Database differ diff --git a/Парсер_IKEA/playwright_profile/Default/Affiliation Database-journal b/Парсер_IKEA/playwright_profile/Default/Affiliation Database-journal new file mode 100644 index 0000000..e69de29 diff --git a/Парсер_IKEA/playwright_profile/Default/BookmarkMergedSurfaceOrdering b/Парсер_IKEA/playwright_profile/Default/BookmarkMergedSurfaceOrdering new file mode 100644 index 0000000..2c63c08 --- /dev/null +++ b/Парсер_IKEA/playwright_profile/Default/BookmarkMergedSurfaceOrdering @@ -0,0 +1,2 @@ +{ +} diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/01d58077f108d7cc_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/01d58077f108d7cc_0 new file mode 100644 index 0000000..cf80858 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/01d58077f108d7cc_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/01e555e0c3076d41_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/01e555e0c3076d41_0 new file mode 100644 index 0000000..a1e4fa5 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/01e555e0c3076d41_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/024731993b859c7e_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/024731993b859c7e_0 new file mode 100644 index 0000000..6351318 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/024731993b859c7e_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/030cf496a9e016ad_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/030cf496a9e016ad_0 new file mode 100644 index 0000000..fb117ae Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/030cf496a9e016ad_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/0379a045975e9d03_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/0379a045975e9d03_0 new file mode 100644 index 0000000..e7b341c Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/0379a045975e9d03_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/050428a02c760381_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/050428a02c760381_0 new file mode 100644 index 0000000..17e04be Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/050428a02c760381_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/0527e4db3389f333_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/0527e4db3389f333_0 new file mode 100644 index 0000000..27bc8b5 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/0527e4db3389f333_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/052f470e3a8b2681_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/052f470e3a8b2681_0 new file mode 100644 index 0000000..a8c952f Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/052f470e3a8b2681_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/0618c23fa160793f_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/0618c23fa160793f_0 new file mode 100644 index 0000000..aa54d02 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/0618c23fa160793f_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/09d9ec43cdced9df_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/09d9ec43cdced9df_0 new file mode 100644 index 0000000..596ab88 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/09d9ec43cdced9df_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/0b2cde6db0c7f365_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/0b2cde6db0c7f365_0 new file mode 100644 index 0000000..c3127c7 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/0b2cde6db0c7f365_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/0c129442281d6ba1_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/0c129442281d6ba1_0 new file mode 100644 index 0000000..1a6a965 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/0c129442281d6ba1_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/0cf000f7528328fa_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/0cf000f7528328fa_0 new file mode 100644 index 0000000..cbdd5a1 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/0cf000f7528328fa_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/0d4fb27a3b014dff_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/0d4fb27a3b014dff_0 new file mode 100644 index 0000000..fc82491 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/0d4fb27a3b014dff_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/0d660b2e766a433b_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/0d660b2e766a433b_0 new file mode 100644 index 0000000..096f23b Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/0d660b2e766a433b_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/0e151ce8d6717a7f_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/0e151ce8d6717a7f_0 new file mode 100644 index 0000000..4ce6501 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/0e151ce8d6717a7f_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/0e33c00ca642e6fb_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/0e33c00ca642e6fb_0 new file mode 100644 index 0000000..68e93d2 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/0e33c00ca642e6fb_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/0e52f73a87beac8f_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/0e52f73a87beac8f_0 new file mode 100644 index 0000000..613ee5f Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/0e52f73a87beac8f_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/0ed3ca0da1f46a6f_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/0ed3ca0da1f46a6f_0 new file mode 100644 index 0000000..e03f599 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/0ed3ca0da1f46a6f_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/0f82c5f9c9013500_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/0f82c5f9c9013500_0 new file mode 100644 index 0000000..84fded6 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/0f82c5f9c9013500_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/13650d8cec6ea343_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/13650d8cec6ea343_0 new file mode 100644 index 0000000..2866e1a Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/13650d8cec6ea343_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/145418427df85856_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/145418427df85856_0 new file mode 100644 index 0000000..f743f8d Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/145418427df85856_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/159adca60bf346fc_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/159adca60bf346fc_0 new file mode 100644 index 0000000..58c4ad3 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/159adca60bf346fc_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/163b53b0258a29e1_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/163b53b0258a29e1_0 new file mode 100644 index 0000000..9e3ce3f Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/163b53b0258a29e1_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/16b039417c5f765b_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/16b039417c5f765b_0 new file mode 100644 index 0000000..b622a74 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/16b039417c5f765b_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/17f58b307773c5a5_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/17f58b307773c5a5_0 new file mode 100644 index 0000000..b0aca49 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/17f58b307773c5a5_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/18165ad8a37da1a1_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/18165ad8a37da1a1_0 new file mode 100644 index 0000000..ae71b80 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/18165ad8a37da1a1_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/181b79ebb9d0da9e_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/181b79ebb9d0da9e_0 new file mode 100644 index 0000000..f4745c7 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/181b79ebb9d0da9e_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/1952c1e22bcb0919_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/1952c1e22bcb0919_0 new file mode 100644 index 0000000..0470fd9 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/1952c1e22bcb0919_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/1987ff8a9922005a_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/1987ff8a9922005a_0 new file mode 100644 index 0000000..23ad62a Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/1987ff8a9922005a_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/1a5026036a76e50c_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/1a5026036a76e50c_0 new file mode 100644 index 0000000..6ca4bcb Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/1a5026036a76e50c_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/1b37f53859306ea9_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/1b37f53859306ea9_0 new file mode 100644 index 0000000..a8f6c0b Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/1b37f53859306ea9_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/1bcf0fbd259ba217_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/1bcf0fbd259ba217_0 new file mode 100644 index 0000000..9be50ed Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/1bcf0fbd259ba217_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/1c5f37030e0d9d4e_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/1c5f37030e0d9d4e_0 new file mode 100644 index 0000000..c91205a Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/1c5f37030e0d9d4e_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/1c60c3e9852990b0_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/1c60c3e9852990b0_0 new file mode 100644 index 0000000..a3d2bfd Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/1c60c3e9852990b0_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/1c6a8a352795033a_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/1c6a8a352795033a_0 new file mode 100644 index 0000000..0475535 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/1c6a8a352795033a_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/1d9d6e95076d62cf_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/1d9d6e95076d62cf_0 new file mode 100644 index 0000000..3238ca5 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/1d9d6e95076d62cf_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/1f3196b644d5d2ac_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/1f3196b644d5d2ac_0 new file mode 100644 index 0000000..10efaee Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/1f3196b644d5d2ac_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/1f67f64ccc519ee0_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/1f67f64ccc519ee0_0 new file mode 100644 index 0000000..442de7b Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/1f67f64ccc519ee0_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/1f970a85f3a8162c_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/1f970a85f3a8162c_0 new file mode 100644 index 0000000..20b7cd5 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/1f970a85f3a8162c_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/21a885d5c1b6f931_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/21a885d5c1b6f931_0 new file mode 100644 index 0000000..9d1a59a Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/21a885d5c1b6f931_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/2227e8d85c35a8f9_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/2227e8d85c35a8f9_0 new file mode 100644 index 0000000..9e32ed4 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/2227e8d85c35a8f9_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/2230a39a6ad6b5e1_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/2230a39a6ad6b5e1_0 new file mode 100644 index 0000000..cea9716 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/2230a39a6ad6b5e1_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/2240d2204d41a957_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/2240d2204d41a957_0 new file mode 100644 index 0000000..e2c6b3b Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/2240d2204d41a957_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/2248ee1d05bfa747_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/2248ee1d05bfa747_0 new file mode 100644 index 0000000..6f91f96 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/2248ee1d05bfa747_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/23146c0aded0e885_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/23146c0aded0e885_0 new file mode 100644 index 0000000..3af286f Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/23146c0aded0e885_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/231d556b6cb5dd49_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/231d556b6cb5dd49_0 new file mode 100644 index 0000000..bc93eba Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/231d556b6cb5dd49_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/23e3cbce460d05ca_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/23e3cbce460d05ca_0 new file mode 100644 index 0000000..713fed1 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/23e3cbce460d05ca_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/26449aca0f5c0dc0_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/26449aca0f5c0dc0_0 new file mode 100644 index 0000000..4377ff9 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/26449aca0f5c0dc0_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/272426257a2bce77_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/272426257a2bce77_0 new file mode 100644 index 0000000..c319c13 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/272426257a2bce77_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/276a190a4f95b4ff_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/276a190a4f95b4ff_0 new file mode 100644 index 0000000..96a8abe Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/276a190a4f95b4ff_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/27d00575f9b55631_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/27d00575f9b55631_0 new file mode 100644 index 0000000..bec728b Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/27d00575f9b55631_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/282d87d2e2574797_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/282d87d2e2574797_0 new file mode 100644 index 0000000..96965aa Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/282d87d2e2574797_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/28c42b13b75e2045_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/28c42b13b75e2045_0 new file mode 100644 index 0000000..6a7d425 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/28c42b13b75e2045_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/2a4e879b4621c345_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/2a4e879b4621c345_0 new file mode 100644 index 0000000..de45319 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/2a4e879b4621c345_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/2d6e03121cbe7a36_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/2d6e03121cbe7a36_0 new file mode 100644 index 0000000..6adae79 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/2d6e03121cbe7a36_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/2e95a1dade469333_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/2e95a1dade469333_0 new file mode 100644 index 0000000..ffea9f8 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/2e95a1dade469333_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/2eb22f34f21ffa3b_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/2eb22f34f21ffa3b_0 new file mode 100644 index 0000000..726f5aa Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/2eb22f34f21ffa3b_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/2f741c59baf80ba6_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/2f741c59baf80ba6_0 new file mode 100644 index 0000000..a3fb825 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/2f741c59baf80ba6_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/2ffbe67783eace35_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/2ffbe67783eace35_0 new file mode 100644 index 0000000..1af7e32 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/2ffbe67783eace35_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/305e233a3e4719ed_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/305e233a3e4719ed_0 new file mode 100644 index 0000000..acadb8a Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/305e233a3e4719ed_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/307ea94708abe427_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/307ea94708abe427_0 new file mode 100644 index 0000000..914910c Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/307ea94708abe427_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/31bfceeb988841cd_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/31bfceeb988841cd_0 new file mode 100644 index 0000000..3a47cf4 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/31bfceeb988841cd_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/32a4811f967e889c_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/32a4811f967e889c_0 new file mode 100644 index 0000000..f96727c Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/32a4811f967e889c_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/3314a7cd077813be_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/3314a7cd077813be_0 new file mode 100644 index 0000000..18100b4 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/3314a7cd077813be_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/334c8d929c5fbdbb_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/334c8d929c5fbdbb_0 new file mode 100644 index 0000000..6341b70 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/334c8d929c5fbdbb_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/33c268ee65d6f533_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/33c268ee65d6f533_0 new file mode 100644 index 0000000..1a960a7 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/33c268ee65d6f533_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/3495ca3d27947803_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/3495ca3d27947803_0 new file mode 100644 index 0000000..594d412 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/3495ca3d27947803_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/359fb107b0c0bf92_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/359fb107b0c0bf92_0 new file mode 100644 index 0000000..712569e Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/359fb107b0c0bf92_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/3723c5139bbb9c0a_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/3723c5139bbb9c0a_0 new file mode 100644 index 0000000..b1a8d70 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/3723c5139bbb9c0a_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/38ae0619bfef33f5_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/38ae0619bfef33f5_0 new file mode 100644 index 0000000..fac5400 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/38ae0619bfef33f5_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/39f651dbb41b1b6f_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/39f651dbb41b1b6f_0 new file mode 100644 index 0000000..7993607 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/39f651dbb41b1b6f_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/3a2cc5bac0ec7687_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/3a2cc5bac0ec7687_0 new file mode 100644 index 0000000..91fdc6e Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/3a2cc5bac0ec7687_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/3ac05d731257a9cc_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/3ac05d731257a9cc_0 new file mode 100644 index 0000000..c917beb Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/3ac05d731257a9cc_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/3af4118e624a1972_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/3af4118e624a1972_0 new file mode 100644 index 0000000..35559e2 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/3af4118e624a1972_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/3b34c64875b5e001_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/3b34c64875b5e001_0 new file mode 100644 index 0000000..d59eee6 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/3b34c64875b5e001_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/3b6895d8b6f59e9e_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/3b6895d8b6f59e9e_0 new file mode 100644 index 0000000..bcc7099 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/3b6895d8b6f59e9e_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/3c38c2f831b4ca9e_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/3c38c2f831b4ca9e_0 new file mode 100644 index 0000000..74865a1 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/3c38c2f831b4ca9e_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/3c4711ac1d2431e0_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/3c4711ac1d2431e0_0 new file mode 100644 index 0000000..ccd9003 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/3c4711ac1d2431e0_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/3c4afa61915dba92_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/3c4afa61915dba92_0 new file mode 100644 index 0000000..e3efb52 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/3c4afa61915dba92_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/3c81fc6507d80153_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/3c81fc6507d80153_0 new file mode 100644 index 0000000..b2e9a08 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/3c81fc6507d80153_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/3e1c5b9bb9d90615_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/3e1c5b9bb9d90615_0 new file mode 100644 index 0000000..3ead70f Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/3e1c5b9bb9d90615_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/3ed862e8f65deb72_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/3ed862e8f65deb72_0 new file mode 100644 index 0000000..da75dad Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/3ed862e8f65deb72_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/3fe99619123d047b_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/3fe99619123d047b_0 new file mode 100644 index 0000000..ad82c8a Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/3fe99619123d047b_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/4109262420d874f1_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/4109262420d874f1_0 new file mode 100644 index 0000000..38789b8 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/4109262420d874f1_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/41156947b1a4b799_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/41156947b1a4b799_0 new file mode 100644 index 0000000..4cc0f66 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/41156947b1a4b799_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/418db8c288466533_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/418db8c288466533_0 new file mode 100644 index 0000000..9333dc9 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/418db8c288466533_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/41b456c2b59726ea_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/41b456c2b59726ea_0 new file mode 100644 index 0000000..84a1222 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/41b456c2b59726ea_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/41f08fbd18bf5a5e_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/41f08fbd18bf5a5e_0 new file mode 100644 index 0000000..71c44ea Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/41f08fbd18bf5a5e_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/430f3bd3ab0ffae9_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/430f3bd3ab0ffae9_0 new file mode 100644 index 0000000..a83c82a Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/430f3bd3ab0ffae9_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/457c64e048080e99_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/457c64e048080e99_0 new file mode 100644 index 0000000..15277a1 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/457c64e048080e99_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/46649359541f4959_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/46649359541f4959_0 new file mode 100644 index 0000000..2e55c97 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/46649359541f4959_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/46efd35ddfa1c44e_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/46efd35ddfa1c44e_0 new file mode 100644 index 0000000..817a2f2 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/46efd35ddfa1c44e_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/46f3cf903c929c03_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/46f3cf903c929c03_0 new file mode 100644 index 0000000..a169e67 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/46f3cf903c929c03_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/47aa84a8a13a47b3_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/47aa84a8a13a47b3_0 new file mode 100644 index 0000000..0af43a7 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/47aa84a8a13a47b3_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/47bb3423fe16686a_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/47bb3423fe16686a_0 new file mode 100644 index 0000000..e075ec1 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/47bb3423fe16686a_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/4ba409dd77e5eaab_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/4ba409dd77e5eaab_0 new file mode 100644 index 0000000..95eab10 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/4ba409dd77e5eaab_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/4bb5ab4bef8cf83e_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/4bb5ab4bef8cf83e_0 new file mode 100644 index 0000000..0abb5c2 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/4bb5ab4bef8cf83e_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/4c803f91864849e0_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/4c803f91864849e0_0 new file mode 100644 index 0000000..e70f2dd Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/4c803f91864849e0_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/4d5b588041cd16c2_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/4d5b588041cd16c2_0 new file mode 100644 index 0000000..0120789 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/4d5b588041cd16c2_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/4df15056b0d09d1b_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/4df15056b0d09d1b_0 new file mode 100644 index 0000000..d2c268e Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/4df15056b0d09d1b_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/4e92ea6468baae25_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/4e92ea6468baae25_0 new file mode 100644 index 0000000..65b0490 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/4e92ea6468baae25_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/4f1b7186c9f1ee50_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/4f1b7186c9f1ee50_0 new file mode 100644 index 0000000..91f5120 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/4f1b7186c9f1ee50_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/502d5db310dfa1c2_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/502d5db310dfa1c2_0 new file mode 100644 index 0000000..adcbec1 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/502d5db310dfa1c2_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/5050f87aae38fc58_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/5050f87aae38fc58_0 new file mode 100644 index 0000000..a704a80 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/5050f87aae38fc58_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/509ca7b5b52594ff_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/509ca7b5b52594ff_0 new file mode 100644 index 0000000..358fb7d Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/509ca7b5b52594ff_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/51ebf0b1e5d02e53_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/51ebf0b1e5d02e53_0 new file mode 100644 index 0000000..529d79c Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/51ebf0b1e5d02e53_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/5212a376affdfa9e_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/5212a376affdfa9e_0 new file mode 100644 index 0000000..b59c584 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/5212a376affdfa9e_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/5218e9f584ca837c_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/5218e9f584ca837c_0 new file mode 100644 index 0000000..e08489f Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/5218e9f584ca837c_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/52cf8783cf2a1d41_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/52cf8783cf2a1d41_0 new file mode 100644 index 0000000..5a45e73 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/52cf8783cf2a1d41_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/52dc335c54bad61e_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/52dc335c54bad61e_0 new file mode 100644 index 0000000..381a430 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/52dc335c54bad61e_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/533d77edbaabfa34_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/533d77edbaabfa34_0 new file mode 100644 index 0000000..abbb016 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/533d77edbaabfa34_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/538e74edbc622a8c_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/538e74edbc622a8c_0 new file mode 100644 index 0000000..5dfa7ac Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/538e74edbc622a8c_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/5514c4d7d8213b46_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/5514c4d7d8213b46_0 new file mode 100644 index 0000000..4064420 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/5514c4d7d8213b46_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/553fefefcfebc09d_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/553fefefcfebc09d_0 new file mode 100644 index 0000000..eeb7188 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/553fefefcfebc09d_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/55da554cd1a7abc0_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/55da554cd1a7abc0_0 new file mode 100644 index 0000000..f72bfda Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/55da554cd1a7abc0_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/56a136a804c06c4c_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/56a136a804c06c4c_0 new file mode 100644 index 0000000..0afd60d Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/56a136a804c06c4c_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/56c10c4fc1bcdcae_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/56c10c4fc1bcdcae_0 new file mode 100644 index 0000000..dfd9861 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/56c10c4fc1bcdcae_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/56f3a0cedab6c7b0_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/56f3a0cedab6c7b0_0 new file mode 100644 index 0000000..1c420a6 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/56f3a0cedab6c7b0_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/5714468c1de04957_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/5714468c1de04957_0 new file mode 100644 index 0000000..f259e36 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/5714468c1de04957_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/5769c6c26e45cbc3_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/5769c6c26e45cbc3_0 new file mode 100644 index 0000000..c39bcfb Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/5769c6c26e45cbc3_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/57a2b7bef2246f79_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/57a2b7bef2246f79_0 new file mode 100644 index 0000000..f190eba Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/57a2b7bef2246f79_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/582ae2edcb2ff5c1_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/582ae2edcb2ff5c1_0 new file mode 100644 index 0000000..00235ce Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/582ae2edcb2ff5c1_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/5872ec17526e9f5e_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/5872ec17526e9f5e_0 new file mode 100644 index 0000000..f8e09d7 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/5872ec17526e9f5e_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/5894edb01b6f6a10_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/5894edb01b6f6a10_0 new file mode 100644 index 0000000..7c5dddf Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/5894edb01b6f6a10_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/5970bb0c058df445_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/5970bb0c058df445_0 new file mode 100644 index 0000000..d183301 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/5970bb0c058df445_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/5c17fe49a685ab8d_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/5c17fe49a685ab8d_0 new file mode 100644 index 0000000..57b0edb Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/5c17fe49a685ab8d_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/5c90731a190451f8_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/5c90731a190451f8_0 new file mode 100644 index 0000000..b8d2dec Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/5c90731a190451f8_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/5cae20c64ed35888_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/5cae20c64ed35888_0 new file mode 100644 index 0000000..cc9e611 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/5cae20c64ed35888_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/5dfe311e3faa75d9_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/5dfe311e3faa75d9_0 new file mode 100644 index 0000000..a1c098c Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/5dfe311e3faa75d9_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/5e82958bc0c3833b_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/5e82958bc0c3833b_0 new file mode 100644 index 0000000..8153a85 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/5e82958bc0c3833b_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/5ec6eea8e341651f_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/5ec6eea8e341651f_0 new file mode 100644 index 0000000..b8c56ed Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/5ec6eea8e341651f_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/608a080aa825a1e4_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/608a080aa825a1e4_0 new file mode 100644 index 0000000..b0437e9 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/608a080aa825a1e4_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/60a770d1b0d404cb_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/60a770d1b0d404cb_0 new file mode 100644 index 0000000..4fd56b6 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/60a770d1b0d404cb_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/60ae9b1ce084cee3_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/60ae9b1ce084cee3_0 new file mode 100644 index 0000000..b8a90d3 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/60ae9b1ce084cee3_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/6212007340483a15_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/6212007340483a15_0 new file mode 100644 index 0000000..8b63ed9 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/6212007340483a15_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/631b65a3b7ea7534_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/631b65a3b7ea7534_0 new file mode 100644 index 0000000..3150e0d Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/631b65a3b7ea7534_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/640ed71870456b8d_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/640ed71870456b8d_0 new file mode 100644 index 0000000..a0000b3 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/640ed71870456b8d_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/64565efb71b6798b_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/64565efb71b6798b_0 new file mode 100644 index 0000000..ea3acf7 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/64565efb71b6798b_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/64812f641f73ab5d_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/64812f641f73ab5d_0 new file mode 100644 index 0000000..d588278 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/64812f641f73ab5d_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/64f176ce7889e8d7_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/64f176ce7889e8d7_0 new file mode 100644 index 0000000..94fa9ed Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/64f176ce7889e8d7_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/6730495e743e0ee4_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/6730495e743e0ee4_0 new file mode 100644 index 0000000..208fc11 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/6730495e743e0ee4_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/677352192fd80dca_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/677352192fd80dca_0 new file mode 100644 index 0000000..43b451c Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/677352192fd80dca_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/68a5dbd87d23ec03_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/68a5dbd87d23ec03_0 new file mode 100644 index 0000000..c7dc6f6 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/68a5dbd87d23ec03_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/69219bdb6be74e55_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/69219bdb6be74e55_0 new file mode 100644 index 0000000..e344c6b Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/69219bdb6be74e55_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/694808e191f2f450_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/694808e191f2f450_0 new file mode 100644 index 0000000..2cf58af Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/694808e191f2f450_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/696423eed2cf816b_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/696423eed2cf816b_0 new file mode 100644 index 0000000..07c4e5a Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/696423eed2cf816b_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/69d9c833f20be9b4_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/69d9c833f20be9b4_0 new file mode 100644 index 0000000..2c6f2ec Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/69d9c833f20be9b4_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/6a1d6ba2d2e081a8_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/6a1d6ba2d2e081a8_0 new file mode 100644 index 0000000..6fac0c2 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/6a1d6ba2d2e081a8_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/6a3ee45c92566d37_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/6a3ee45c92566d37_0 new file mode 100644 index 0000000..a8ec70b Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/6a3ee45c92566d37_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/6b762d4fa323f701_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/6b762d4fa323f701_0 new file mode 100644 index 0000000..e17aae1 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/6b762d4fa323f701_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/6b88d8f1821d162e_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/6b88d8f1821d162e_0 new file mode 100644 index 0000000..56acbf5 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/6b88d8f1821d162e_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/6b8faebd2674bce1_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/6b8faebd2674bce1_0 new file mode 100644 index 0000000..4bc1ed7 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/6b8faebd2674bce1_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/6c33336a52ff08be_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/6c33336a52ff08be_0 new file mode 100644 index 0000000..7d5305e Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/6c33336a52ff08be_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/6e6f15d8487bc83a_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/6e6f15d8487bc83a_0 new file mode 100644 index 0000000..710896a Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/6e6f15d8487bc83a_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/6f7ef970f17c6e01_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/6f7ef970f17c6e01_0 new file mode 100644 index 0000000..695ab8e Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/6f7ef970f17c6e01_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/70e0228c8063a21d_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/70e0228c8063a21d_0 new file mode 100644 index 0000000..d0e62e7 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/70e0228c8063a21d_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/71c949456c601255_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/71c949456c601255_0 new file mode 100644 index 0000000..8fb4ac1 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/71c949456c601255_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/71fd7780018ce4fd_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/71fd7780018ce4fd_0 new file mode 100644 index 0000000..40417a7 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/71fd7780018ce4fd_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/720ec8e79385d061_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/720ec8e79385d061_0 new file mode 100644 index 0000000..95c44e1 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/720ec8e79385d061_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/72235e90cd981083_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/72235e90cd981083_0 new file mode 100644 index 0000000..248f481 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/72235e90cd981083_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/725b00bcfc7d0e4c_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/725b00bcfc7d0e4c_0 new file mode 100644 index 0000000..7a245ac Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/725b00bcfc7d0e4c_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/729d47ba3f602d55_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/729d47ba3f602d55_0 new file mode 100644 index 0000000..1304a7d Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/729d47ba3f602d55_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/72acd1635374cf2c_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/72acd1635374cf2c_0 new file mode 100644 index 0000000..e9de987 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/72acd1635374cf2c_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/73210326db597c52_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/73210326db597c52_0 new file mode 100644 index 0000000..d369285 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/73210326db597c52_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/73ca0d3dc3b759b3_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/73ca0d3dc3b759b3_0 new file mode 100644 index 0000000..c898860 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/73ca0d3dc3b759b3_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/757ed0cf84acb9d8_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/757ed0cf84acb9d8_0 new file mode 100644 index 0000000..bc11915 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/757ed0cf84acb9d8_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/76716fdf48b2c773_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/76716fdf48b2c773_0 new file mode 100644 index 0000000..5728985 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/76716fdf48b2c773_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/76ea7cfe4f2d450c_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/76ea7cfe4f2d450c_0 new file mode 100644 index 0000000..ae64bc6 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/76ea7cfe4f2d450c_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/76f01c30b4e99f8c_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/76f01c30b4e99f8c_0 new file mode 100644 index 0000000..cf53880 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/76f01c30b4e99f8c_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/779de30b92212d4e_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/779de30b92212d4e_0 new file mode 100644 index 0000000..d380ce2 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/779de30b92212d4e_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/783df673d004ed6e_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/783df673d004ed6e_0 new file mode 100644 index 0000000..b344e11 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/783df673d004ed6e_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/78897b66d4a637e5_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/78897b66d4a637e5_0 new file mode 100644 index 0000000..42c2946 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/78897b66d4a637e5_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/78efdd0437d4c472_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/78efdd0437d4c472_0 new file mode 100644 index 0000000..c290d39 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/78efdd0437d4c472_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/79d1b5634aaee8e6_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/79d1b5634aaee8e6_0 new file mode 100644 index 0000000..0adc690 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/79d1b5634aaee8e6_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/79f0165c428b67b1_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/79f0165c428b67b1_0 new file mode 100644 index 0000000..08e78b1 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/79f0165c428b67b1_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/7a5df5c7d2aba879_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/7a5df5c7d2aba879_0 new file mode 100644 index 0000000..ada9624 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/7a5df5c7d2aba879_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/7abbb245f816dcb4_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/7abbb245f816dcb4_0 new file mode 100644 index 0000000..9270bcf Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/7abbb245f816dcb4_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/7b12dc810f6ce968_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/7b12dc810f6ce968_0 new file mode 100644 index 0000000..ee9b9e3 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/7b12dc810f6ce968_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/7b6ef5a2f1774d5c_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/7b6ef5a2f1774d5c_0 new file mode 100644 index 0000000..d6302ac Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/7b6ef5a2f1774d5c_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/7c36906cb8be8e6e_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/7c36906cb8be8e6e_0 new file mode 100644 index 0000000..c240ac3 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/7c36906cb8be8e6e_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/7c59794f48763bf9_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/7c59794f48763bf9_0 new file mode 100644 index 0000000..2dadce7 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/7c59794f48763bf9_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/7c859d052a5497f0_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/7c859d052a5497f0_0 new file mode 100644 index 0000000..7f9fea9 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/7c859d052a5497f0_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/7ca7eb0bf3c676c2_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/7ca7eb0bf3c676c2_0 new file mode 100644 index 0000000..cc737c3 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/7ca7eb0bf3c676c2_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/7ce85d598ec77683_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/7ce85d598ec77683_0 new file mode 100644 index 0000000..ff3a9b8 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/7ce85d598ec77683_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/7d31a5bc30c1f6c5_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/7d31a5bc30c1f6c5_0 new file mode 100644 index 0000000..e1066c7 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/7d31a5bc30c1f6c5_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/7d3ea70b0b83f967_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/7d3ea70b0b83f967_0 new file mode 100644 index 0000000..3c23fab Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/7d3ea70b0b83f967_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/7d454759d9ec1db9_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/7d454759d9ec1db9_0 new file mode 100644 index 0000000..4b2118a Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/7d454759d9ec1db9_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/7d919a6b2c366c7e_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/7d919a6b2c366c7e_0 new file mode 100644 index 0000000..00a44bb Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/7d919a6b2c366c7e_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/7db87492dde7e2f7_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/7db87492dde7e2f7_0 new file mode 100644 index 0000000..a848a81 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/7db87492dde7e2f7_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/7e6d41703625f58e_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/7e6d41703625f58e_0 new file mode 100644 index 0000000..73a0f64 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/7e6d41703625f58e_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/7ea47ea3d49b6781_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/7ea47ea3d49b6781_0 new file mode 100644 index 0000000..1500068 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/7ea47ea3d49b6781_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/7efa8e96cea88034_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/7efa8e96cea88034_0 new file mode 100644 index 0000000..46599d3 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/7efa8e96cea88034_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/803481236e80844e_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/803481236e80844e_0 new file mode 100644 index 0000000..ba1893c Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/803481236e80844e_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/808a1a9323539a67_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/808a1a9323539a67_0 new file mode 100644 index 0000000..f08ac20 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/808a1a9323539a67_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/81e3066ea8d376b6_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/81e3066ea8d376b6_0 new file mode 100644 index 0000000..91690e1 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/81e3066ea8d376b6_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/8377b169849a9786_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/8377b169849a9786_0 new file mode 100644 index 0000000..a9c8b99 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/8377b169849a9786_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/8422e6d8d5c4b54a_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/8422e6d8d5c4b54a_0 new file mode 100644 index 0000000..0f9b7bb Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/8422e6d8d5c4b54a_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/853bce6fbe0a8790_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/853bce6fbe0a8790_0 new file mode 100644 index 0000000..6794496 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/853bce6fbe0a8790_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/86922f46464ac27b_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/86922f46464ac27b_0 new file mode 100644 index 0000000..401b812 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/86922f46464ac27b_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/86b8bdf6435a6bea_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/86b8bdf6435a6bea_0 new file mode 100644 index 0000000..adf23ef Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/86b8bdf6435a6bea_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/86e3aad23b691156_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/86e3aad23b691156_0 new file mode 100644 index 0000000..f01e1e5 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/86e3aad23b691156_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/8b174165b1e20e51_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/8b174165b1e20e51_0 new file mode 100644 index 0000000..eae1b72 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/8b174165b1e20e51_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/8b8e7425b3cf8788_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/8b8e7425b3cf8788_0 new file mode 100644 index 0000000..85800b6 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/8b8e7425b3cf8788_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/8bd0b249d8ba19f1_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/8bd0b249d8ba19f1_0 new file mode 100644 index 0000000..c2dedf2 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/8bd0b249d8ba19f1_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/8bd13c94630cff30_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/8bd13c94630cff30_0 new file mode 100644 index 0000000..30ef13d Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/8bd13c94630cff30_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/8c59686b42ed8414_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/8c59686b42ed8414_0 new file mode 100644 index 0000000..d42eb56 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/8c59686b42ed8414_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/8dc602e0a3566dd1_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/8dc602e0a3566dd1_0 new file mode 100644 index 0000000..9aeec1a Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/8dc602e0a3566dd1_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/8eb7ddb0c0495f23_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/8eb7ddb0c0495f23_0 new file mode 100644 index 0000000..dedc207 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/8eb7ddb0c0495f23_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/8fc3d2f560e6163d_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/8fc3d2f560e6163d_0 new file mode 100644 index 0000000..6241424 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/8fc3d2f560e6163d_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/901281deed513e49_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/901281deed513e49_0 new file mode 100644 index 0000000..3e58043 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/901281deed513e49_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/92b7b6340153f906_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/92b7b6340153f906_0 new file mode 100644 index 0000000..7883370 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/92b7b6340153f906_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/9368cdc9544108f5_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/9368cdc9544108f5_0 new file mode 100644 index 0000000..d23994c Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/9368cdc9544108f5_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/94f28949eb59ee82_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/94f28949eb59ee82_0 new file mode 100644 index 0000000..87e4df6 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/94f28949eb59ee82_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/9520b6f29fe2c3fa_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/9520b6f29fe2c3fa_0 new file mode 100644 index 0000000..b466d57 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/9520b6f29fe2c3fa_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/9651c620277e110e_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/9651c620277e110e_0 new file mode 100644 index 0000000..b636bf1 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/9651c620277e110e_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/96fcf60fb42cbe4f_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/96fcf60fb42cbe4f_0 new file mode 100644 index 0000000..b5213ae Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/96fcf60fb42cbe4f_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/974cb758d0d4d015_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/974cb758d0d4d015_0 new file mode 100644 index 0000000..3014688 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/974cb758d0d4d015_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/978d359a214ca71c_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/978d359a214ca71c_0 new file mode 100644 index 0000000..254ca65 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/978d359a214ca71c_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/97975788f4e1af23_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/97975788f4e1af23_0 new file mode 100644 index 0000000..4d3db2c Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/97975788f4e1af23_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/980905d0a6c4e294_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/980905d0a6c4e294_0 new file mode 100644 index 0000000..a9c3ddd Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/980905d0a6c4e294_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/98b1d4035204da84_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/98b1d4035204da84_0 new file mode 100644 index 0000000..358df96 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/98b1d4035204da84_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/98bbf90b91dcfa31_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/98bbf90b91dcfa31_0 new file mode 100644 index 0000000..0418303 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/98bbf90b91dcfa31_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/9967893d9e4cec14_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/9967893d9e4cec14_0 new file mode 100644 index 0000000..7218643 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/9967893d9e4cec14_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/9a27aebb10aee6a2_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/9a27aebb10aee6a2_0 new file mode 100644 index 0000000..1728344 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/9a27aebb10aee6a2_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/9a8744e0cff07208_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/9a8744e0cff07208_0 new file mode 100644 index 0000000..04ff6ea Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/9a8744e0cff07208_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/9aed1e1b94c1aced_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/9aed1e1b94c1aced_0 new file mode 100644 index 0000000..6c0c696 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/9aed1e1b94c1aced_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/9b1165083386fa7a_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/9b1165083386fa7a_0 new file mode 100644 index 0000000..5f9b415 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/9b1165083386fa7a_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/9b4b6ff284bf4369_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/9b4b6ff284bf4369_0 new file mode 100644 index 0000000..5846c4d Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/9b4b6ff284bf4369_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/9bf74903c224ebe5_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/9bf74903c224ebe5_0 new file mode 100644 index 0000000..8be5bcd Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/9bf74903c224ebe5_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/9c86c56a9cd17654_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/9c86c56a9cd17654_0 new file mode 100644 index 0000000..77a8f87 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/9c86c56a9cd17654_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/9cd3d59c60c2def0_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/9cd3d59c60c2def0_0 new file mode 100644 index 0000000..c010be4 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/9cd3d59c60c2def0_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/9d186108d1b51669_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/9d186108d1b51669_0 new file mode 100644 index 0000000..e0ba57d Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/9d186108d1b51669_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/9e8ebf75a07e2cef_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/9e8ebf75a07e2cef_0 new file mode 100644 index 0000000..12eecc7 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/9e8ebf75a07e2cef_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/9ebf611c097eae08_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/9ebf611c097eae08_0 new file mode 100644 index 0000000..f898422 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/9ebf611c097eae08_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/9f9cb8f1ba003640_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/9f9cb8f1ba003640_0 new file mode 100644 index 0000000..2e2a4d6 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/9f9cb8f1ba003640_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/a1d4d423cfd76b53_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/a1d4d423cfd76b53_0 new file mode 100644 index 0000000..097f0fe Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/a1d4d423cfd76b53_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/a2822e2e556b6ee7_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/a2822e2e556b6ee7_0 new file mode 100644 index 0000000..905d75e Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/a2822e2e556b6ee7_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/a35584475216ee67_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/a35584475216ee67_0 new file mode 100644 index 0000000..c0e1867 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/a35584475216ee67_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/a50ab70993e280e6_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/a50ab70993e280e6_0 new file mode 100644 index 0000000..8b5e6fb Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/a50ab70993e280e6_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/a5945fa61ec390cd_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/a5945fa61ec390cd_0 new file mode 100644 index 0000000..3ea3a76 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/a5945fa61ec390cd_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/a621681bbd3aa2f4_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/a621681bbd3aa2f4_0 new file mode 100644 index 0000000..458570f Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/a621681bbd3aa2f4_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/a72bf7948e71b56e_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/a72bf7948e71b56e_0 new file mode 100644 index 0000000..85a01c2 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/a72bf7948e71b56e_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/a85e941a1b2fadf3_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/a85e941a1b2fadf3_0 new file mode 100644 index 0000000..f0c9dc5 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/a85e941a1b2fadf3_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/a9307d808bf8d0bc_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/a9307d808bf8d0bc_0 new file mode 100644 index 0000000..7429bbf Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/a9307d808bf8d0bc_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/a94080baa881df35_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/a94080baa881df35_0 new file mode 100644 index 0000000..0c3ed66 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/a94080baa881df35_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/a9e3b7d1b7a166ad_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/a9e3b7d1b7a166ad_0 new file mode 100644 index 0000000..708919f Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/a9e3b7d1b7a166ad_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/aa47c39ac1750cef_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/aa47c39ac1750cef_0 new file mode 100644 index 0000000..d84b1e7 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/aa47c39ac1750cef_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/aa5f317b6929a904_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/aa5f317b6929a904_0 new file mode 100644 index 0000000..af4f598 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/aa5f317b6929a904_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/aae1f3b4a3c55437_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/aae1f3b4a3c55437_0 new file mode 100644 index 0000000..6867dd1 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/aae1f3b4a3c55437_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/abfb3dacc3c9dd14_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/abfb3dacc3c9dd14_0 new file mode 100644 index 0000000..3663f16 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/abfb3dacc3c9dd14_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/acb77e7e59513976_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/acb77e7e59513976_0 new file mode 100644 index 0000000..ed57bf3 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/acb77e7e59513976_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/acf0cbf279f035d0_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/acf0cbf279f035d0_0 new file mode 100644 index 0000000..6c5d36d Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/acf0cbf279f035d0_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/ad26b2e2a9d7779d_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/ad26b2e2a9d7779d_0 new file mode 100644 index 0000000..e6d45e8 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/ad26b2e2a9d7779d_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/ad6094f24a28081b_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/ad6094f24a28081b_0 new file mode 100644 index 0000000..cf10ca1 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/ad6094f24a28081b_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/ad7dffe5c814426d_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/ad7dffe5c814426d_0 new file mode 100644 index 0000000..96d23df Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/ad7dffe5c814426d_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/b0311ff1d69cbfe5_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/b0311ff1d69cbfe5_0 new file mode 100644 index 0000000..4ef9f4b Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/b0311ff1d69cbfe5_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/b0698cff4ca67c01_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/b0698cff4ca67c01_0 new file mode 100644 index 0000000..c6acee7 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/b0698cff4ca67c01_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/b152d1e42a25ea33_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/b152d1e42a25ea33_0 new file mode 100644 index 0000000..9f2c475 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/b152d1e42a25ea33_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/b15a81357df7e71c_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/b15a81357df7e71c_0 new file mode 100644 index 0000000..966394c Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/b15a81357df7e71c_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/b21d722e68585262_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/b21d722e68585262_0 new file mode 100644 index 0000000..1a6f261 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/b21d722e68585262_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/b3144dcb751d7e94_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/b3144dcb751d7e94_0 new file mode 100644 index 0000000..f32d8cc Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/b3144dcb751d7e94_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/b361e63d3abef173_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/b361e63d3abef173_0 new file mode 100644 index 0000000..d80633d Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/b361e63d3abef173_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/b42db7844cf1be9e_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/b42db7844cf1be9e_0 new file mode 100644 index 0000000..a91006c Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/b42db7844cf1be9e_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/b471c062aa03d0f0_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/b471c062aa03d0f0_0 new file mode 100644 index 0000000..891934e Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/b471c062aa03d0f0_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/b6215ee00fc1cb94_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/b6215ee00fc1cb94_0 new file mode 100644 index 0000000..d137d44 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/b6215ee00fc1cb94_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/b7e7d1c1afb15832_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/b7e7d1c1afb15832_0 new file mode 100644 index 0000000..bd61d91 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/b7e7d1c1afb15832_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/b85c3813dc3783bd_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/b85c3813dc3783bd_0 new file mode 100644 index 0000000..4447921 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/b85c3813dc3783bd_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/ba2a70ee94834b6e_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/ba2a70ee94834b6e_0 new file mode 100644 index 0000000..b8c0dbb Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/ba2a70ee94834b6e_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/bb108378c5ed4ef8_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/bb108378c5ed4ef8_0 new file mode 100644 index 0000000..c938c53 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/bb108378c5ed4ef8_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/bb5533d729e8d289_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/bb5533d729e8d289_0 new file mode 100644 index 0000000..9b01cb1 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/bb5533d729e8d289_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/bc57668a622e6dac_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/bc57668a622e6dac_0 new file mode 100644 index 0000000..e95fafa Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/bc57668a622e6dac_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/bccfa969021c584d_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/bccfa969021c584d_0 new file mode 100644 index 0000000..5e335e9 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/bccfa969021c584d_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/bd71d36bd3c66c9f_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/bd71d36bd3c66c9f_0 new file mode 100644 index 0000000..6044711 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/bd71d36bd3c66c9f_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/be51058765d7c204_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/be51058765d7c204_0 new file mode 100644 index 0000000..ba143fc Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/be51058765d7c204_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/beaeb9bcbe5618eb_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/beaeb9bcbe5618eb_0 new file mode 100644 index 0000000..b41178f Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/beaeb9bcbe5618eb_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/bfcba3c1be544916_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/bfcba3c1be544916_0 new file mode 100644 index 0000000..cb33963 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/bfcba3c1be544916_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/c078bdc01c3ea2a1_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/c078bdc01c3ea2a1_0 new file mode 100644 index 0000000..7db937e Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/c078bdc01c3ea2a1_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/c0a1f6b4c04f1db3_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/c0a1f6b4c04f1db3_0 new file mode 100644 index 0000000..a2697d8 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/c0a1f6b4c04f1db3_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/c0b9e20569b6fcac_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/c0b9e20569b6fcac_0 new file mode 100644 index 0000000..7aca42d Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/c0b9e20569b6fcac_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/c18eaf22e815053d_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/c18eaf22e815053d_0 new file mode 100644 index 0000000..941b19a Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/c18eaf22e815053d_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/c1b90f1aae6ec7a0_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/c1b90f1aae6ec7a0_0 new file mode 100644 index 0000000..cc9820f Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/c1b90f1aae6ec7a0_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/c319aeb171d3b0cc_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/c319aeb171d3b0cc_0 new file mode 100644 index 0000000..9d58de0 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/c319aeb171d3b0cc_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/c381de5a9407f54d_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/c381de5a9407f54d_0 new file mode 100644 index 0000000..3942ea5 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/c381de5a9407f54d_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/c47475fd9f3698da_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/c47475fd9f3698da_0 new file mode 100644 index 0000000..d1a5155 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/c47475fd9f3698da_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/c47f78928513bb1f_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/c47f78928513bb1f_0 new file mode 100644 index 0000000..36a505f Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/c47f78928513bb1f_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/c54b7edb0ee371d0_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/c54b7edb0ee371d0_0 new file mode 100644 index 0000000..cf3cae9 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/c54b7edb0ee371d0_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/c6a5fc3b6bfdb05f_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/c6a5fc3b6bfdb05f_0 new file mode 100644 index 0000000..63a18f2 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/c6a5fc3b6bfdb05f_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/c83af35d7690c1cc_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/c83af35d7690c1cc_0 new file mode 100644 index 0000000..ff8b3de Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/c83af35d7690c1cc_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/c9250ac6a52d1d60_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/c9250ac6a52d1d60_0 new file mode 100644 index 0000000..8df0382 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/c9250ac6a52d1d60_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/c9832e8ba1bac53f_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/c9832e8ba1bac53f_0 new file mode 100644 index 0000000..613b9ad Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/c9832e8ba1bac53f_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/c9fa78fd5f47fab0_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/c9fa78fd5f47fab0_0 new file mode 100644 index 0000000..519e51e Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/c9fa78fd5f47fab0_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/ca0b2b7e97d27e3e_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/ca0b2b7e97d27e3e_0 new file mode 100644 index 0000000..7fbd0ea Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/ca0b2b7e97d27e3e_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/ca110dbce5ffdc66_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/ca110dbce5ffdc66_0 new file mode 100644 index 0000000..d5a72b9 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/ca110dbce5ffdc66_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/cbfd7bb18977189e_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/cbfd7bb18977189e_0 new file mode 100644 index 0000000..cd02b1f Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/cbfd7bb18977189e_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/cc0c625e2a89098d_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/cc0c625e2a89098d_0 new file mode 100644 index 0000000..e07524c Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/cc0c625e2a89098d_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/cc0fc05f0b64a4f4_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/cc0fc05f0b64a4f4_0 new file mode 100644 index 0000000..6f2bed9 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/cc0fc05f0b64a4f4_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/cc2773f8597bcb97_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/cc2773f8597bcb97_0 new file mode 100644 index 0000000..e6e5b29 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/cc2773f8597bcb97_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/cde3fb358330b271_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/cde3fb358330b271_0 new file mode 100644 index 0000000..1db4940 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/cde3fb358330b271_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/cece1f4bbfeb5f67_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/cece1f4bbfeb5f67_0 new file mode 100644 index 0000000..3a92bad Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/cece1f4bbfeb5f67_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/cf0edc957e4204a4_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/cf0edc957e4204a4_0 new file mode 100644 index 0000000..c00e77e Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/cf0edc957e4204a4_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/cfdbb4501716a260_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/cfdbb4501716a260_0 new file mode 100644 index 0000000..e23d195 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/cfdbb4501716a260_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/cff057ff58503c29_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/cff057ff58503c29_0 new file mode 100644 index 0000000..7fafdb1 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/cff057ff58503c29_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/d04690e6d9f17774_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/d04690e6d9f17774_0 new file mode 100644 index 0000000..93fb46f Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/d04690e6d9f17774_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/d10a61b1242c2965_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/d10a61b1242c2965_0 new file mode 100644 index 0000000..f368a56 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/d10a61b1242c2965_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/d165fd4194558850_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/d165fd4194558850_0 new file mode 100644 index 0000000..60209f2 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/d165fd4194558850_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/d2ae151ff273f7b1_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/d2ae151ff273f7b1_0 new file mode 100644 index 0000000..1e21ea1 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/d2ae151ff273f7b1_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/d363708ba240a051_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/d363708ba240a051_0 new file mode 100644 index 0000000..103b225 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/d363708ba240a051_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/d4ba9c22caccdd2f_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/d4ba9c22caccdd2f_0 new file mode 100644 index 0000000..19a3292 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/d4ba9c22caccdd2f_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/d4f4a21626d5ba28_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/d4f4a21626d5ba28_0 new file mode 100644 index 0000000..5057f0d Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/d4f4a21626d5ba28_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/d63754f08dc99030_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/d63754f08dc99030_0 new file mode 100644 index 0000000..47dff4c Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/d63754f08dc99030_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/d6d30eba99635e1b_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/d6d30eba99635e1b_0 new file mode 100644 index 0000000..3395e18 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/d6d30eba99635e1b_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/d7f2dad6ccb47276_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/d7f2dad6ccb47276_0 new file mode 100644 index 0000000..e3e03b2 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/d7f2dad6ccb47276_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/d803ea03f4de39ee_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/d803ea03f4de39ee_0 new file mode 100644 index 0000000..c2fd2e9 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/d803ea03f4de39ee_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/d8e16b6c9b8960ad_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/d8e16b6c9b8960ad_0 new file mode 100644 index 0000000..8c4904c Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/d8e16b6c9b8960ad_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/d99bab4068c554b7_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/d99bab4068c554b7_0 new file mode 100644 index 0000000..5e6f068 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/d99bab4068c554b7_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/d9edf6a6bd2418c6_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/d9edf6a6bd2418c6_0 new file mode 100644 index 0000000..74a2ea9 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/d9edf6a6bd2418c6_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/da57c30880784fda_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/da57c30880784fda_0 new file mode 100644 index 0000000..994fd86 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/da57c30880784fda_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/db78b61e8f9186a1_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/db78b61e8f9186a1_0 new file mode 100644 index 0000000..3b9c5ad Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/db78b61e8f9186a1_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/db8b1fa5cadd33e3_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/db8b1fa5cadd33e3_0 new file mode 100644 index 0000000..81b6318 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/db8b1fa5cadd33e3_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/dc876ccca9458835_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/dc876ccca9458835_0 new file mode 100644 index 0000000..9a9fb91 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/dc876ccca9458835_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/dd1df4afbe387747_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/dd1df4afbe387747_0 new file mode 100644 index 0000000..3fb6064 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/dd1df4afbe387747_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/dde57b221f021824_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/dde57b221f021824_0 new file mode 100644 index 0000000..321c635 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/dde57b221f021824_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/de0018407834849b_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/de0018407834849b_0 new file mode 100644 index 0000000..fe559f2 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/de0018407834849b_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/e0938fccbdee41e3_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/e0938fccbdee41e3_0 new file mode 100644 index 0000000..853eb23 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/e0938fccbdee41e3_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/e0978491b51e2e42_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/e0978491b51e2e42_0 new file mode 100644 index 0000000..34e50fb Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/e0978491b51e2e42_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/e1944d10a28bdcd2_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/e1944d10a28bdcd2_0 new file mode 100644 index 0000000..0584d9f Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/e1944d10a28bdcd2_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/e28ba62f09cb5e48_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/e28ba62f09cb5e48_0 new file mode 100644 index 0000000..d5cc5e7 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/e28ba62f09cb5e48_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/e31ad7657406c4dc_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/e31ad7657406c4dc_0 new file mode 100644 index 0000000..34a95c0 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/e31ad7657406c4dc_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/e394f39587c8e4d1_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/e394f39587c8e4d1_0 new file mode 100644 index 0000000..33cfef7 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/e394f39587c8e4d1_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/e3dac45bdb3f40d5_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/e3dac45bdb3f40d5_0 new file mode 100644 index 0000000..8c9cbb7 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/e3dac45bdb3f40d5_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/e436a8d9ae09dafa_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/e436a8d9ae09dafa_0 new file mode 100644 index 0000000..217d2cc Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/e436a8d9ae09dafa_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/e5a73b4f5f7bae7f_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/e5a73b4f5f7bae7f_0 new file mode 100644 index 0000000..fd319a6 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/e5a73b4f5f7bae7f_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/e681a626ad9aebb9_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/e681a626ad9aebb9_0 new file mode 100644 index 0000000..48ed733 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/e681a626ad9aebb9_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/e87b4b81b77b4139_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/e87b4b81b77b4139_0 new file mode 100644 index 0000000..6fbcbe5 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/e87b4b81b77b4139_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/ea60750d574e133f_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/ea60750d574e133f_0 new file mode 100644 index 0000000..80fecf0 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/ea60750d574e133f_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/eb33b04896b1aee8_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/eb33b04896b1aee8_0 new file mode 100644 index 0000000..eaa21fa Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/eb33b04896b1aee8_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/eb5ed4ae8499819d_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/eb5ed4ae8499819d_0 new file mode 100644 index 0000000..7273869 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/eb5ed4ae8499819d_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/eb6b48c0ad8364a6_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/eb6b48c0ad8364a6_0 new file mode 100644 index 0000000..22f2b35 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/eb6b48c0ad8364a6_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/ec02772c2a266878_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/ec02772c2a266878_0 new file mode 100644 index 0000000..824e4e5 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/ec02772c2a266878_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/ec32a842614d32de_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/ec32a842614d32de_0 new file mode 100644 index 0000000..314ccd7 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/ec32a842614d32de_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/ecf1880d0641eff3_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/ecf1880d0641eff3_0 new file mode 100644 index 0000000..d114645 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/ecf1880d0641eff3_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/ed67f065de983bd9_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/ed67f065de983bd9_0 new file mode 100644 index 0000000..6e6ee71 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/ed67f065de983bd9_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/edb35bb2cc17dc10_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/edb35bb2cc17dc10_0 new file mode 100644 index 0000000..7614705 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/edb35bb2cc17dc10_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/edc2a994e2b88b5d_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/edc2a994e2b88b5d_0 new file mode 100644 index 0000000..d5a2d81 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/edc2a994e2b88b5d_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/ef411ef48e7a9669_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/ef411ef48e7a9669_0 new file mode 100644 index 0000000..4e7e9cd Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/ef411ef48e7a9669_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/efac0fe7d8990591_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/efac0fe7d8990591_0 new file mode 100644 index 0000000..df93565 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/efac0fe7d8990591_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/f07e6debbbc0c91a_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/f07e6debbbc0c91a_0 new file mode 100644 index 0000000..9693c8e Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/f07e6debbbc0c91a_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/f204a06b68d40175_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/f204a06b68d40175_0 new file mode 100644 index 0000000..5d025eb Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/f204a06b68d40175_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/f3e978f77a76edfe_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/f3e978f77a76edfe_0 new file mode 100644 index 0000000..eedc215 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/f3e978f77a76edfe_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/f3f0cf9fb6c5a0cf_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/f3f0cf9fb6c5a0cf_0 new file mode 100644 index 0000000..787840b Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/f3f0cf9fb6c5a0cf_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/f51f790901cdcd4b_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/f51f790901cdcd4b_0 new file mode 100644 index 0000000..ec5d72a Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/f51f790901cdcd4b_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/f57d79baa1f2f767_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/f57d79baa1f2f767_0 new file mode 100644 index 0000000..2cf3031 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/f57d79baa1f2f767_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/f712a926734d3440_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/f712a926734d3440_0 new file mode 100644 index 0000000..e59493f Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/f712a926734d3440_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/f7f2c8640d607b7b_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/f7f2c8640d607b7b_0 new file mode 100644 index 0000000..e883bf3 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/f7f2c8640d607b7b_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/f86eb5ee8320e38d_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/f86eb5ee8320e38d_0 new file mode 100644 index 0000000..619f45f Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/f86eb5ee8320e38d_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/f88a272dc31cab4f_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/f88a272dc31cab4f_0 new file mode 100644 index 0000000..e9ccd60 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/f88a272dc31cab4f_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/f9770c3534405b6b_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/f9770c3534405b6b_0 new file mode 100644 index 0000000..87869e5 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/f9770c3534405b6b_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/f9d7db06c5d12ca6_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/f9d7db06c5d12ca6_0 new file mode 100644 index 0000000..2848a9b Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/f9d7db06c5d12ca6_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/fa9c23378d4b5282_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/fa9c23378d4b5282_0 new file mode 100644 index 0000000..615bd6c Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/fa9c23378d4b5282_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/face7ad168094eb2_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/face7ad168094eb2_0 new file mode 100644 index 0000000..a79390e Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/face7ad168094eb2_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/fb4cd845ee88a1d7_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/fb4cd845ee88a1d7_0 new file mode 100644 index 0000000..f8768f8 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/fb4cd845ee88a1d7_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/fc4aa1d1e75a5361_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/fc4aa1d1e75a5361_0 new file mode 100644 index 0000000..a73b03b Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/fc4aa1d1e75a5361_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/fcbe9695fe155115_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/fcbe9695fe155115_0 new file mode 100644 index 0000000..9c77642 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/fcbe9695fe155115_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/fe4cfcc9d59806d8_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/fe4cfcc9d59806d8_0 new file mode 100644 index 0000000..da71009 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/fe4cfcc9d59806d8_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/fe8bfc340f2ecb54_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/fe8bfc340f2ecb54_0 new file mode 100644 index 0000000..6d999d5 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/fe8bfc340f2ecb54_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/feb51ba6bf71e0e4_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/feb51ba6bf71e0e4_0 new file mode 100644 index 0000000..eac608b Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/feb51ba6bf71e0e4_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/fee3312832775921_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/fee3312832775921_0 new file mode 100644 index 0000000..4e5d550 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/fee3312832775921_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/ff05c2fa232a25c0_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/ff05c2fa232a25c0_0 new file mode 100644 index 0000000..4e0686e Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/ff05c2fa232a25c0_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/ff20191cb1fd1e71_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/ff20191cb1fd1e71_0 new file mode 100644 index 0000000..65d13ac Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/ff20191cb1fd1e71_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/ff319db0f6651ac6_0 b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/ff319db0f6651ac6_0 new file mode 100644 index 0000000..1d2dd3d Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/ff319db0f6651ac6_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/index b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/index new file mode 100644 index 0000000..79bd403 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/index differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/index-dir/the-real-index b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/index-dir/the-real-index new file mode 100644 index 0000000..413c70e Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cache/Cache_Data/index-dir/the-real-index differ diff --git a/Парсер_IKEA/playwright_profile/Default/ClientCertificates/LOCK b/Парсер_IKEA/playwright_profile/Default/ClientCertificates/LOCK new file mode 100644 index 0000000..e69de29 diff --git a/Парсер_IKEA/playwright_profile/Default/ClientCertificates/LOG b/Парсер_IKEA/playwright_profile/Default/ClientCertificates/LOG new file mode 100644 index 0000000..e69de29 diff --git a/Парсер_IKEA/playwright_profile/Default/Code Cache/js/02cf8dd94e5e41a8_0 b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/02cf8dd94e5e41a8_0 new file mode 100644 index 0000000..1d86af6 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/02cf8dd94e5e41a8_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Code Cache/js/0393331c56f1d9c9_0 b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/0393331c56f1d9c9_0 new file mode 100644 index 0000000..f64cc7b Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/0393331c56f1d9c9_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Code Cache/js/04958a9ec9ccc95a_0 b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/04958a9ec9ccc95a_0 new file mode 100644 index 0000000..49cf680 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/04958a9ec9ccc95a_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Code Cache/js/07524a3915fb9abb_0 b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/07524a3915fb9abb_0 new file mode 100644 index 0000000..2188f2a Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/07524a3915fb9abb_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Code Cache/js/086928cba388163c_0 b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/086928cba388163c_0 new file mode 100644 index 0000000..85e8f6c Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/086928cba388163c_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Code Cache/js/08d32ed3b1fdb5c9_0 b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/08d32ed3b1fdb5c9_0 new file mode 100644 index 0000000..f652446 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/08d32ed3b1fdb5c9_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Code Cache/js/0bd1c06f73ea8d74_0 b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/0bd1c06f73ea8d74_0 new file mode 100644 index 0000000..f7a19a3 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/0bd1c06f73ea8d74_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Code Cache/js/0bfe84d047989e2e_0 b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/0bfe84d047989e2e_0 new file mode 100644 index 0000000..7c1d8d8 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/0bfe84d047989e2e_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Code Cache/js/0eea8741c6260345_0 b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/0eea8741c6260345_0 new file mode 100644 index 0000000..e572229 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/0eea8741c6260345_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Code Cache/js/108e292709bb8330_0 b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/108e292709bb8330_0 new file mode 100644 index 0000000..7ba1f4a Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/108e292709bb8330_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Code Cache/js/111d9ed3095837ee_0 b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/111d9ed3095837ee_0 new file mode 100644 index 0000000..c9c1b15 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/111d9ed3095837ee_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Code Cache/js/1580e765b77590b6_0 b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/1580e765b77590b6_0 new file mode 100644 index 0000000..8584680 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/1580e765b77590b6_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Code Cache/js/165344272cbac7b9_0 b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/165344272cbac7b9_0 new file mode 100644 index 0000000..30a0059 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/165344272cbac7b9_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Code Cache/js/17a9ad894ec40a11_0 b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/17a9ad894ec40a11_0 new file mode 100644 index 0000000..82658ad Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/17a9ad894ec40a11_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Code Cache/js/189080da845c8923_0 b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/189080da845c8923_0 new file mode 100644 index 0000000..926e2e8 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/189080da845c8923_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Code Cache/js/208b9cc70d736513_0 b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/208b9cc70d736513_0 new file mode 100644 index 0000000..7a9d1e5 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/208b9cc70d736513_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Code Cache/js/2327cf70d7a491c1_0 b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/2327cf70d7a491c1_0 new file mode 100644 index 0000000..bab880e Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/2327cf70d7a491c1_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Code Cache/js/23ed352d416eeb3a_0 b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/23ed352d416eeb3a_0 new file mode 100644 index 0000000..d2a9c71 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/23ed352d416eeb3a_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Code Cache/js/2400f22392f5b7e5_0 b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/2400f22392f5b7e5_0 new file mode 100644 index 0000000..1bc3823 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/2400f22392f5b7e5_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Code Cache/js/249d4d0181d37bc9_0 b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/249d4d0181d37bc9_0 new file mode 100644 index 0000000..ac6100c Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/249d4d0181d37bc9_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Code Cache/js/25437fcdb5535227_0 b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/25437fcdb5535227_0 new file mode 100644 index 0000000..aed1cb6 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/25437fcdb5535227_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Code Cache/js/27f1fded0004fbb2_0 b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/27f1fded0004fbb2_0 new file mode 100644 index 0000000..f320137 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/27f1fded0004fbb2_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Code Cache/js/284b31b53abfb638_0 b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/284b31b53abfb638_0 new file mode 100644 index 0000000..b6114a1 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/284b31b53abfb638_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Code Cache/js/29f5a68480c5580c_0 b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/29f5a68480c5580c_0 new file mode 100644 index 0000000..3dc89af Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/29f5a68480c5580c_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Code Cache/js/2b4d905193b2c3de_0 b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/2b4d905193b2c3de_0 new file mode 100644 index 0000000..249704a Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/2b4d905193b2c3de_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Code Cache/js/2b5f91281851e8db_0 b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/2b5f91281851e8db_0 new file mode 100644 index 0000000..ebffbe6 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/2b5f91281851e8db_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Code Cache/js/2fa92521b2a0dde2_0 b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/2fa92521b2a0dde2_0 new file mode 100644 index 0000000..9ff43e6 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/2fa92521b2a0dde2_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Code Cache/js/32012d07e76c87a2_0 b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/32012d07e76c87a2_0 new file mode 100644 index 0000000..3588dd7 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/32012d07e76c87a2_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Code Cache/js/32ba225e7faa5a75_0 b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/32ba225e7faa5a75_0 new file mode 100644 index 0000000..e3182e0 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/32ba225e7faa5a75_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Code Cache/js/33d83898b42b44d5_0 b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/33d83898b42b44d5_0 new file mode 100644 index 0000000..e916a5b Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/33d83898b42b44d5_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Code Cache/js/3b8cbe110a1dc56c_0 b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/3b8cbe110a1dc56c_0 new file mode 100644 index 0000000..57fa243 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/3b8cbe110a1dc56c_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Code Cache/js/437b4ae76017ee77_0 b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/437b4ae76017ee77_0 new file mode 100644 index 0000000..e52b1dc Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/437b4ae76017ee77_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Code Cache/js/440c530630e57920_0 b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/440c530630e57920_0 new file mode 100644 index 0000000..8b95075 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/440c530630e57920_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Code Cache/js/446158f0f7196f1d_0 b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/446158f0f7196f1d_0 new file mode 100644 index 0000000..855f34a Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/446158f0f7196f1d_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Code Cache/js/452ae296876fb0fd_0 b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/452ae296876fb0fd_0 new file mode 100644 index 0000000..1bb1aac Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/452ae296876fb0fd_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Code Cache/js/4553934c9f42a0f8_0 b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/4553934c9f42a0f8_0 new file mode 100644 index 0000000..193b338 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/4553934c9f42a0f8_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Code Cache/js/45a97fa3d20442ca_0 b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/45a97fa3d20442ca_0 new file mode 100644 index 0000000..a57c9f2 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/45a97fa3d20442ca_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Code Cache/js/4982f9c9801113df_0 b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/4982f9c9801113df_0 new file mode 100644 index 0000000..a3b6b7e Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/4982f9c9801113df_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Code Cache/js/4b6935d034431af5_0 b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/4b6935d034431af5_0 new file mode 100644 index 0000000..cc91514 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/4b6935d034431af5_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Code Cache/js/4ba9489004dda2cd_0 b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/4ba9489004dda2cd_0 new file mode 100644 index 0000000..36b5642 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/4ba9489004dda2cd_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Code Cache/js/4cdfc3fb352553b1_0 b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/4cdfc3fb352553b1_0 new file mode 100644 index 0000000..df7ff91 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/4cdfc3fb352553b1_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Code Cache/js/504bb93ae7d6fca7_0 b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/504bb93ae7d6fca7_0 new file mode 100644 index 0000000..53f2646 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/504bb93ae7d6fca7_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Code Cache/js/513e7a70da658a50_0 b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/513e7a70da658a50_0 new file mode 100644 index 0000000..545c980 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/513e7a70da658a50_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Code Cache/js/5250245e37e12f2f_0 b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/5250245e37e12f2f_0 new file mode 100644 index 0000000..70f756b Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/5250245e37e12f2f_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Code Cache/js/55d9013967e64ccb_0 b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/55d9013967e64ccb_0 new file mode 100644 index 0000000..7c9a80e Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/55d9013967e64ccb_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Code Cache/js/5701c4c46434abe7_0 b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/5701c4c46434abe7_0 new file mode 100644 index 0000000..1248998 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/5701c4c46434abe7_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Code Cache/js/57c7d07dcacfd543_0 b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/57c7d07dcacfd543_0 new file mode 100644 index 0000000..52ce785 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/57c7d07dcacfd543_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Code Cache/js/581db38d402aa7af_0 b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/581db38d402aa7af_0 new file mode 100644 index 0000000..0334534 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/581db38d402aa7af_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Code Cache/js/58b7af718ca9d28e_0 b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/58b7af718ca9d28e_0 new file mode 100644 index 0000000..4a9e95c Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/58b7af718ca9d28e_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Code Cache/js/5ca8c67d369a7021_0 b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/5ca8c67d369a7021_0 new file mode 100644 index 0000000..fceb613 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/5ca8c67d369a7021_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Code Cache/js/5f78d59622210739_0 b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/5f78d59622210739_0 new file mode 100644 index 0000000..aeb6bba Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/5f78d59622210739_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Code Cache/js/5fdb110deb073d17_0 b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/5fdb110deb073d17_0 new file mode 100644 index 0000000..3411172 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/5fdb110deb073d17_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Code Cache/js/60a3e35f16764af3_0 b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/60a3e35f16764af3_0 new file mode 100644 index 0000000..347715f Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/60a3e35f16764af3_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Code Cache/js/61103acf2dad64a6_0 b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/61103acf2dad64a6_0 new file mode 100644 index 0000000..40ffc6e Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/61103acf2dad64a6_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Code Cache/js/64afec25277bd696_0 b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/64afec25277bd696_0 new file mode 100644 index 0000000..5ab7eda Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/64afec25277bd696_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Code Cache/js/66c7bf60627dcb4d_0 b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/66c7bf60627dcb4d_0 new file mode 100644 index 0000000..dee71ba Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/66c7bf60627dcb4d_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Code Cache/js/6949d78b9c1c6038_0 b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/6949d78b9c1c6038_0 new file mode 100644 index 0000000..a125ac8 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/6949d78b9c1c6038_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Code Cache/js/6df7624896f5457e_0 b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/6df7624896f5457e_0 new file mode 100644 index 0000000..84b1f81 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/6df7624896f5457e_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Code Cache/js/72e3ff1f2155823d_0 b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/72e3ff1f2155823d_0 new file mode 100644 index 0000000..9ab630b Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/72e3ff1f2155823d_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Code Cache/js/735e8f525fb29e2c_0 b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/735e8f525fb29e2c_0 new file mode 100644 index 0000000..d40e3a7 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/735e8f525fb29e2c_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Code Cache/js/7373d3ffb2be5e71_0 b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/7373d3ffb2be5e71_0 new file mode 100644 index 0000000..3f51e0d Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/7373d3ffb2be5e71_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Code Cache/js/75246eff538046a1_0 b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/75246eff538046a1_0 new file mode 100644 index 0000000..88accc6 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/75246eff538046a1_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Code Cache/js/79bb059b3026fb4d_0 b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/79bb059b3026fb4d_0 new file mode 100644 index 0000000..1217ebd Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/79bb059b3026fb4d_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Code Cache/js/7ab819ee21c18f3f_0 b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/7ab819ee21c18f3f_0 new file mode 100644 index 0000000..c1b53a2 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/7ab819ee21c18f3f_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Code Cache/js/7b09b2d508edaebd_0 b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/7b09b2d508edaebd_0 new file mode 100644 index 0000000..dc401cf Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/7b09b2d508edaebd_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Code Cache/js/7b6c94e0cc890fce_0 b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/7b6c94e0cc890fce_0 new file mode 100644 index 0000000..396f2f2 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/7b6c94e0cc890fce_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Code Cache/js/7e17e047cb41ff43_0 b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/7e17e047cb41ff43_0 new file mode 100644 index 0000000..7b1454d Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/7e17e047cb41ff43_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Code Cache/js/7e8854274b347585_0 b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/7e8854274b347585_0 new file mode 100644 index 0000000..83697e1 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/7e8854274b347585_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Code Cache/js/82f683e6a9276ac9_0 b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/82f683e6a9276ac9_0 new file mode 100644 index 0000000..24af0d6 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/82f683e6a9276ac9_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Code Cache/js/83a63c666151d4c8_0 b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/83a63c666151d4c8_0 new file mode 100644 index 0000000..92c372d Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/83a63c666151d4c8_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Code Cache/js/86b7de128344d5ad_0 b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/86b7de128344d5ad_0 new file mode 100644 index 0000000..3cd0019 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/86b7de128344d5ad_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Code Cache/js/89a87865ecf03656_0 b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/89a87865ecf03656_0 new file mode 100644 index 0000000..8b48333 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/89a87865ecf03656_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Code Cache/js/945524abc0d78801_0 b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/945524abc0d78801_0 new file mode 100644 index 0000000..27ffef5 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/945524abc0d78801_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Code Cache/js/95b5d7e3d7e0f4e0_0 b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/95b5d7e3d7e0f4e0_0 new file mode 100644 index 0000000..b3dd0a5 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/95b5d7e3d7e0f4e0_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Code Cache/js/995389f06d92e6ec_0 b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/995389f06d92e6ec_0 new file mode 100644 index 0000000..e1cade9 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/995389f06d92e6ec_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Code Cache/js/9cc280a2432405eb_0 b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/9cc280a2432405eb_0 new file mode 100644 index 0000000..968821c Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/9cc280a2432405eb_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Code Cache/js/9d62bff3bdaaf47a_0 b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/9d62bff3bdaaf47a_0 new file mode 100644 index 0000000..a85949c Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/9d62bff3bdaaf47a_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Code Cache/js/9e5139c19e6ba9dc_0 b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/9e5139c19e6ba9dc_0 new file mode 100644 index 0000000..0fc5ff3 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/9e5139c19e6ba9dc_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Code Cache/js/9f18603a192cf918_0 b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/9f18603a192cf918_0 new file mode 100644 index 0000000..e5c99f7 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/9f18603a192cf918_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Code Cache/js/9f5af1de4808d370_0 b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/9f5af1de4808d370_0 new file mode 100644 index 0000000..031a277 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/9f5af1de4808d370_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Code Cache/js/a24a6c864a1963a7_0 b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/a24a6c864a1963a7_0 new file mode 100644 index 0000000..2f259c5 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/a24a6c864a1963a7_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Code Cache/js/a4429f9e40268942_0 b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/a4429f9e40268942_0 new file mode 100644 index 0000000..b19b61a Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/a4429f9e40268942_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Code Cache/js/a4b126d79b30cdbe_0 b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/a4b126d79b30cdbe_0 new file mode 100644 index 0000000..a1f3eab Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/a4b126d79b30cdbe_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Code Cache/js/a57eb93e39d5d2c7_0 b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/a57eb93e39d5d2c7_0 new file mode 100644 index 0000000..e47e1ef Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/a57eb93e39d5d2c7_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Code Cache/js/a71362d454e4b7e4_0 b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/a71362d454e4b7e4_0 new file mode 100644 index 0000000..5a4ece2 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/a71362d454e4b7e4_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Code Cache/js/a7307809b72ff97e_0 b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/a7307809b72ff97e_0 new file mode 100644 index 0000000..bd95dd6 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/a7307809b72ff97e_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Code Cache/js/a7d4581ab322ee69_0 b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/a7d4581ab322ee69_0 new file mode 100644 index 0000000..b78cbe9 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/a7d4581ab322ee69_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Code Cache/js/a7d63f9adffddb15_0 b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/a7d63f9adffddb15_0 new file mode 100644 index 0000000..e06b8fc Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/a7d63f9adffddb15_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Code Cache/js/a8faadea0b45a3a8_0 b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/a8faadea0b45a3a8_0 new file mode 100644 index 0000000..620d42c Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/a8faadea0b45a3a8_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Code Cache/js/a9cabe694a9a48f6_0 b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/a9cabe694a9a48f6_0 new file mode 100644 index 0000000..cbf6981 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/a9cabe694a9a48f6_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Code Cache/js/ab3975aee568be29_0 b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/ab3975aee568be29_0 new file mode 100644 index 0000000..df1cb05 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/ab3975aee568be29_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Code Cache/js/ac6cf0ee9091087e_0 b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/ac6cf0ee9091087e_0 new file mode 100644 index 0000000..3fc5989 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/ac6cf0ee9091087e_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Code Cache/js/ad611b68b3b9d1fe_0 b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/ad611b68b3b9d1fe_0 new file mode 100644 index 0000000..2973e6c Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/ad611b68b3b9d1fe_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Code Cache/js/b0beb05878da6c4a_0 b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/b0beb05878da6c4a_0 new file mode 100644 index 0000000..7710080 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/b0beb05878da6c4a_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Code Cache/js/b5054b5ccab0e5f5_0 b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/b5054b5ccab0e5f5_0 new file mode 100644 index 0000000..6978d1d Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/b5054b5ccab0e5f5_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Code Cache/js/b545139bfafded96_0 b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/b545139bfafded96_0 new file mode 100644 index 0000000..3c8f316 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/b545139bfafded96_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Code Cache/js/bb84125ce620a439_0 b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/bb84125ce620a439_0 new file mode 100644 index 0000000..3f30acb Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/bb84125ce620a439_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Code Cache/js/bbac32035bd923fb_0 b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/bbac32035bd923fb_0 new file mode 100644 index 0000000..347ec13 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/bbac32035bd923fb_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Code Cache/js/bc16df8937157a26_0 b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/bc16df8937157a26_0 new file mode 100644 index 0000000..34b679c Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/bc16df8937157a26_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Code Cache/js/bd44c62928d3d437_0 b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/bd44c62928d3d437_0 new file mode 100644 index 0000000..56c5021 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/bd44c62928d3d437_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Code Cache/js/c2782b0a0ae1844f_0 b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/c2782b0a0ae1844f_0 new file mode 100644 index 0000000..ccc6b41 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/c2782b0a0ae1844f_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Code Cache/js/c5c04dcf27c6bb6c_0 b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/c5c04dcf27c6bb6c_0 new file mode 100644 index 0000000..1200aec Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/c5c04dcf27c6bb6c_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Code Cache/js/c820d28e5b02f6b5_0 b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/c820d28e5b02f6b5_0 new file mode 100644 index 0000000..e16a5c8 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/c820d28e5b02f6b5_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Code Cache/js/c9f6ed3f561c7553_0 b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/c9f6ed3f561c7553_0 new file mode 100644 index 0000000..ae35f01 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/c9f6ed3f561c7553_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Code Cache/js/ccc1d8ca196b42e6_0 b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/ccc1d8ca196b42e6_0 new file mode 100644 index 0000000..f1a5324 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/ccc1d8ca196b42e6_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Code Cache/js/cfba0753d8732f87_0 b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/cfba0753d8732f87_0 new file mode 100644 index 0000000..4206428 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/cfba0753d8732f87_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Code Cache/js/d028784bd2e4b29a_0 b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/d028784bd2e4b29a_0 new file mode 100644 index 0000000..960886f Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/d028784bd2e4b29a_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Code Cache/js/d03f029eaabaac47_0 b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/d03f029eaabaac47_0 new file mode 100644 index 0000000..040a5aa Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/d03f029eaabaac47_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Code Cache/js/d0d43031e275024d_0 b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/d0d43031e275024d_0 new file mode 100644 index 0000000..066ad18 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/d0d43031e275024d_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Code Cache/js/d2d62b1a3d3a1742_0 b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/d2d62b1a3d3a1742_0 new file mode 100644 index 0000000..1a461ac Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/d2d62b1a3d3a1742_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Code Cache/js/d33b53d0f1ff188e_0 b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/d33b53d0f1ff188e_0 new file mode 100644 index 0000000..8a3cd3a Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/d33b53d0f1ff188e_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Code Cache/js/da7ee2c74f598695_0 b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/da7ee2c74f598695_0 new file mode 100644 index 0000000..535075c Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/da7ee2c74f598695_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Code Cache/js/dae91b632f7f56cb_0 b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/dae91b632f7f56cb_0 new file mode 100644 index 0000000..12ce7e2 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/dae91b632f7f56cb_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Code Cache/js/dc122cc92c0fc3f4_0 b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/dc122cc92c0fc3f4_0 new file mode 100644 index 0000000..597f21c Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/dc122cc92c0fc3f4_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Code Cache/js/dc1fe7c83a57a1e8_0 b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/dc1fe7c83a57a1e8_0 new file mode 100644 index 0000000..4be8054 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/dc1fe7c83a57a1e8_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Code Cache/js/df0c01ad72e16b40_0 b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/df0c01ad72e16b40_0 new file mode 100644 index 0000000..f6906a8 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/df0c01ad72e16b40_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Code Cache/js/dfb332a3e17aca44_0 b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/dfb332a3e17aca44_0 new file mode 100644 index 0000000..1d8c043 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/dfb332a3e17aca44_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Code Cache/js/e161dc0c2ad93910_0 b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/e161dc0c2ad93910_0 new file mode 100644 index 0000000..d9bf55f Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/e161dc0c2ad93910_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Code Cache/js/e37fd273fdff4850_0 b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/e37fd273fdff4850_0 new file mode 100644 index 0000000..fbdfd53 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/e37fd273fdff4850_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Code Cache/js/e38212a88a9f0797_0 b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/e38212a88a9f0797_0 new file mode 100644 index 0000000..b1df1e8 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/e38212a88a9f0797_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Code Cache/js/e4afcac6ee40adb7_0 b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/e4afcac6ee40adb7_0 new file mode 100644 index 0000000..a6bd985 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/e4afcac6ee40adb7_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Code Cache/js/e8fe30491f3562ce_0 b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/e8fe30491f3562ce_0 new file mode 100644 index 0000000..bc52b85 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/e8fe30491f3562ce_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Code Cache/js/ee53c15dc2088a98_0 b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/ee53c15dc2088a98_0 new file mode 100644 index 0000000..50c8393 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/ee53c15dc2088a98_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Code Cache/js/f13009d1bf3c56d4_0 b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/f13009d1bf3c56d4_0 new file mode 100644 index 0000000..a3b84d4 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/f13009d1bf3c56d4_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Code Cache/js/f5b79dc173c0ad2f_0 b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/f5b79dc173c0ad2f_0 new file mode 100644 index 0000000..0f937cd Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/f5b79dc173c0ad2f_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Code Cache/js/f5eab9733ab14281_0 b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/f5eab9733ab14281_0 new file mode 100644 index 0000000..bd71aa1 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/f5eab9733ab14281_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Code Cache/js/f6a474e25442af6d_0 b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/f6a474e25442af6d_0 new file mode 100644 index 0000000..da86f81 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/f6a474e25442af6d_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Code Cache/js/f85a9b978f4e20af_0 b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/f85a9b978f4e20af_0 new file mode 100644 index 0000000..46b90c9 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/f85a9b978f4e20af_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Code Cache/js/fd5dbed692b3551b_0 b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/fd5dbed692b3551b_0 new file mode 100644 index 0000000..6674cdb Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/fd5dbed692b3551b_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Code Cache/js/fe03fd28058f523e_0 b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/fe03fd28058f523e_0 new file mode 100644 index 0000000..713842e Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/fe03fd28058f523e_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Code Cache/js/index b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/index new file mode 100644 index 0000000..79bd403 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/index differ diff --git a/Парсер_IKEA/playwright_profile/Default/Code Cache/js/index-dir/the-real-index b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/index-dir/the-real-index new file mode 100644 index 0000000..f5323e4 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Code Cache/js/index-dir/the-real-index differ diff --git a/Парсер_IKEA/playwright_profile/Default/Code Cache/wasm/index b/Парсер_IKEA/playwright_profile/Default/Code Cache/wasm/index new file mode 100644 index 0000000..79bd403 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Code Cache/wasm/index differ diff --git a/Парсер_IKEA/playwright_profile/Default/Code Cache/wasm/index-dir/the-real-index b/Парсер_IKEA/playwright_profile/Default/Code Cache/wasm/index-dir/the-real-index new file mode 100644 index 0000000..83f5a7c Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Code Cache/wasm/index-dir/the-real-index differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cookies b/Парсер_IKEA/playwright_profile/Default/Cookies new file mode 100644 index 0000000..24a4478 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Cookies differ diff --git a/Парсер_IKEA/playwright_profile/Default/Cookies-journal b/Парсер_IKEA/playwright_profile/Default/Cookies-journal new file mode 100644 index 0000000..e69de29 diff --git a/Парсер_IKEA/playwright_profile/Default/DawnGraphiteCache/data_0 b/Парсер_IKEA/playwright_profile/Default/DawnGraphiteCache/data_0 new file mode 100644 index 0000000..d76fb77 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/DawnGraphiteCache/data_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/DawnGraphiteCache/data_1 b/Парсер_IKEA/playwright_profile/Default/DawnGraphiteCache/data_1 new file mode 100644 index 0000000..e2cdc77 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/DawnGraphiteCache/data_1 differ diff --git a/Парсер_IKEA/playwright_profile/Default/DawnGraphiteCache/data_2 b/Парсер_IKEA/playwright_profile/Default/DawnGraphiteCache/data_2 new file mode 100644 index 0000000..c7e2eb9 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/DawnGraphiteCache/data_2 differ diff --git a/Парсер_IKEA/playwright_profile/Default/DawnGraphiteCache/data_3 b/Парсер_IKEA/playwright_profile/Default/DawnGraphiteCache/data_3 new file mode 100644 index 0000000..5eec973 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/DawnGraphiteCache/data_3 differ diff --git a/Парсер_IKEA/playwright_profile/Default/DawnGraphiteCache/index b/Парсер_IKEA/playwright_profile/Default/DawnGraphiteCache/index new file mode 100644 index 0000000..5a09c84 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/DawnGraphiteCache/index differ diff --git a/Парсер_IKEA/playwright_profile/Default/DawnWebGPUCache/data_0 b/Парсер_IKEA/playwright_profile/Default/DawnWebGPUCache/data_0 new file mode 100644 index 0000000..d76fb77 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/DawnWebGPUCache/data_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/DawnWebGPUCache/data_1 b/Парсер_IKEA/playwright_profile/Default/DawnWebGPUCache/data_1 new file mode 100644 index 0000000..47890b6 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/DawnWebGPUCache/data_1 differ diff --git a/Парсер_IKEA/playwright_profile/Default/DawnWebGPUCache/data_2 b/Парсер_IKEA/playwright_profile/Default/DawnWebGPUCache/data_2 new file mode 100644 index 0000000..c7e2eb9 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/DawnWebGPUCache/data_2 differ diff --git a/Парсер_IKEA/playwright_profile/Default/DawnWebGPUCache/data_3 b/Парсер_IKEA/playwright_profile/Default/DawnWebGPUCache/data_3 new file mode 100644 index 0000000..5eec973 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/DawnWebGPUCache/data_3 differ diff --git a/Парсер_IKEA/playwright_profile/Default/DawnWebGPUCache/index b/Парсер_IKEA/playwright_profile/Default/DawnWebGPUCache/index new file mode 100644 index 0000000..81a9d44 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/DawnWebGPUCache/index differ diff --git a/Парсер_IKEA/playwright_profile/Default/Extension Rules/000003.log b/Парсер_IKEA/playwright_profile/Default/Extension Rules/000003.log new file mode 100644 index 0000000..4acb4c8 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Extension Rules/000003.log differ diff --git a/Парсер_IKEA/playwright_profile/Default/Extension Rules/CURRENT b/Парсер_IKEA/playwright_profile/Default/Extension Rules/CURRENT new file mode 100644 index 0000000..7ed683d --- /dev/null +++ b/Парсер_IKEA/playwright_profile/Default/Extension Rules/CURRENT @@ -0,0 +1 @@ +MANIFEST-000001 diff --git a/Парсер_IKEA/playwright_profile/Default/Extension Rules/LOCK b/Парсер_IKEA/playwright_profile/Default/Extension Rules/LOCK new file mode 100644 index 0000000..e69de29 diff --git a/Парсер_IKEA/playwright_profile/Default/Extension Rules/LOG b/Парсер_IKEA/playwright_profile/Default/Extension Rules/LOG new file mode 100644 index 0000000..8809052 --- /dev/null +++ b/Парсер_IKEA/playwright_profile/Default/Extension Rules/LOG @@ -0,0 +1,2 @@ +2025/08/25-19:49:36.793 2835af5 Creating DB /Users/valis/MacOS_Parsers/Парсер_IKEA/playwright_profile/Default/Extension Rules since it was missing. +2025/08/25-19:49:36.798 2835af5 Reusing MANIFEST /Users/valis/MacOS_Parsers/Парсер_IKEA/playwright_profile/Default/Extension Rules/MANIFEST-000001 diff --git a/Парсер_IKEA/playwright_profile/Default/Extension Rules/MANIFEST-000001 b/Парсер_IKEA/playwright_profile/Default/Extension Rules/MANIFEST-000001 new file mode 100644 index 0000000..18e5cab Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Extension Rules/MANIFEST-000001 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Extension Scripts/000003.log b/Парсер_IKEA/playwright_profile/Default/Extension Scripts/000003.log new file mode 100644 index 0000000..4acb4c8 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Extension Scripts/000003.log differ diff --git a/Парсер_IKEA/playwright_profile/Default/Extension Scripts/CURRENT b/Парсер_IKEA/playwright_profile/Default/Extension Scripts/CURRENT new file mode 100644 index 0000000..7ed683d --- /dev/null +++ b/Парсер_IKEA/playwright_profile/Default/Extension Scripts/CURRENT @@ -0,0 +1 @@ +MANIFEST-000001 diff --git a/Парсер_IKEA/playwright_profile/Default/Extension Scripts/LOCK b/Парсер_IKEA/playwright_profile/Default/Extension Scripts/LOCK new file mode 100644 index 0000000..e69de29 diff --git a/Парсер_IKEA/playwright_profile/Default/Extension Scripts/LOG b/Парсер_IKEA/playwright_profile/Default/Extension Scripts/LOG new file mode 100644 index 0000000..e9dfa34 --- /dev/null +++ b/Парсер_IKEA/playwright_profile/Default/Extension Scripts/LOG @@ -0,0 +1,2 @@ +2025/08/25-19:49:36.799 2835af5 Creating DB /Users/valis/MacOS_Parsers/Парсер_IKEA/playwright_profile/Default/Extension Scripts since it was missing. +2025/08/25-19:49:36.802 2835af5 Reusing MANIFEST /Users/valis/MacOS_Parsers/Парсер_IKEA/playwright_profile/Default/Extension Scripts/MANIFEST-000001 diff --git a/Парсер_IKEA/playwright_profile/Default/Extension Scripts/MANIFEST-000001 b/Парсер_IKEA/playwright_profile/Default/Extension Scripts/MANIFEST-000001 new file mode 100644 index 0000000..18e5cab Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Extension Scripts/MANIFEST-000001 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Extension State/000003.log b/Парсер_IKEA/playwright_profile/Default/Extension State/000003.log new file mode 100644 index 0000000..b248f53 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Extension State/000003.log differ diff --git a/Парсер_IKEA/playwright_profile/Default/Extension State/CURRENT b/Парсер_IKEA/playwright_profile/Default/Extension State/CURRENT new file mode 100644 index 0000000..7ed683d --- /dev/null +++ b/Парсер_IKEA/playwright_profile/Default/Extension State/CURRENT @@ -0,0 +1 @@ +MANIFEST-000001 diff --git a/Парсер_IKEA/playwright_profile/Default/Extension State/LOCK b/Парсер_IKEA/playwright_profile/Default/Extension State/LOCK new file mode 100644 index 0000000..e69de29 diff --git a/Парсер_IKEA/playwright_profile/Default/Extension State/LOG b/Парсер_IKEA/playwright_profile/Default/Extension State/LOG new file mode 100644 index 0000000..8d1ca1a --- /dev/null +++ b/Парсер_IKEA/playwright_profile/Default/Extension State/LOG @@ -0,0 +1,2 @@ +2025/08/25-19:49:38.245 2835af5 Creating DB /Users/valis/MacOS_Parsers/Парсер_IKEA/playwright_profile/Default/Extension State since it was missing. +2025/08/25-19:49:38.250 2835af5 Reusing MANIFEST /Users/valis/MacOS_Parsers/Парсер_IKEA/playwright_profile/Default/Extension State/MANIFEST-000001 diff --git a/Парсер_IKEA/playwright_profile/Default/Extension State/MANIFEST-000001 b/Парсер_IKEA/playwright_profile/Default/Extension State/MANIFEST-000001 new file mode 100644 index 0000000..18e5cab Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Extension State/MANIFEST-000001 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Favicons b/Парсер_IKEA/playwright_profile/Default/Favicons new file mode 100644 index 0000000..6608ce1 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Favicons differ diff --git a/Парсер_IKEA/playwright_profile/Default/Favicons-journal b/Парсер_IKEA/playwright_profile/Default/Favicons-journal new file mode 100644 index 0000000..e69de29 diff --git a/Парсер_IKEA/playwright_profile/Default/GPUCache/data_0 b/Парсер_IKEA/playwright_profile/Default/GPUCache/data_0 new file mode 100644 index 0000000..3a37dbd Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/GPUCache/data_0 differ diff --git a/Парсер_IKEA/playwright_profile/Default/GPUCache/data_1 b/Парсер_IKEA/playwright_profile/Default/GPUCache/data_1 new file mode 100644 index 0000000..55700d8 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/GPUCache/data_1 differ diff --git a/Парсер_IKEA/playwright_profile/Default/GPUCache/data_2 b/Парсер_IKEA/playwright_profile/Default/GPUCache/data_2 new file mode 100644 index 0000000..5b8a057 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/GPUCache/data_2 differ diff --git a/Парсер_IKEA/playwright_profile/Default/GPUCache/data_3 b/Парсер_IKEA/playwright_profile/Default/GPUCache/data_3 new file mode 100644 index 0000000..5eec973 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/GPUCache/data_3 differ diff --git a/Парсер_IKEA/playwright_profile/Default/GPUCache/index b/Парсер_IKEA/playwright_profile/Default/GPUCache/index new file mode 100644 index 0000000..f4072a3 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/GPUCache/index differ diff --git a/Парсер_IKEA/playwright_profile/Default/History b/Парсер_IKEA/playwright_profile/Default/History new file mode 100644 index 0000000..c80206b Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/History differ diff --git a/Парсер_IKEA/playwright_profile/Default/History-journal b/Парсер_IKEA/playwright_profile/Default/History-journal new file mode 100644 index 0000000..e69de29 diff --git a/Парсер_IKEA/playwright_profile/Default/LOCK b/Парсер_IKEA/playwright_profile/Default/LOCK new file mode 100644 index 0000000..e69de29 diff --git a/Парсер_IKEA/playwright_profile/Default/LOG b/Парсер_IKEA/playwright_profile/Default/LOG new file mode 100644 index 0000000..e69de29 diff --git a/Парсер_IKEA/playwright_profile/Default/Local Storage/leveldb/000003.log b/Парсер_IKEA/playwright_profile/Default/Local Storage/leveldb/000003.log new file mode 100644 index 0000000..37ea3f1 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Local Storage/leveldb/000003.log differ diff --git a/Парсер_IKEA/playwright_profile/Default/Local Storage/leveldb/CURRENT b/Парсер_IKEA/playwright_profile/Default/Local Storage/leveldb/CURRENT new file mode 100644 index 0000000..7ed683d --- /dev/null +++ b/Парсер_IKEA/playwright_profile/Default/Local Storage/leveldb/CURRENT @@ -0,0 +1 @@ +MANIFEST-000001 diff --git a/Парсер_IKEA/playwright_profile/Default/Local Storage/leveldb/LOCK b/Парсер_IKEA/playwright_profile/Default/Local Storage/leveldb/LOCK new file mode 100644 index 0000000..e69de29 diff --git a/Парсер_IKEA/playwright_profile/Default/Local Storage/leveldb/LOG b/Парсер_IKEA/playwright_profile/Default/Local Storage/leveldb/LOG new file mode 100644 index 0000000..cbea199 --- /dev/null +++ b/Парсер_IKEA/playwright_profile/Default/Local Storage/leveldb/LOG @@ -0,0 +1,2 @@ +2025/08/25-19:49:36.822 2835c4a Creating DB /Users/valis/MacOS_Parsers/Парсер_IKEA/playwright_profile/Default/Local Storage/leveldb since it was missing. +2025/08/25-19:49:36.832 2835c4a Reusing MANIFEST /Users/valis/MacOS_Parsers/Парсер_IKEA/playwright_profile/Default/Local Storage/leveldb/MANIFEST-000001 diff --git a/Парсер_IKEA/playwright_profile/Default/Local Storage/leveldb/MANIFEST-000001 b/Парсер_IKEA/playwright_profile/Default/Local Storage/leveldb/MANIFEST-000001 new file mode 100644 index 0000000..18e5cab Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Local Storage/leveldb/MANIFEST-000001 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Login Data b/Парсер_IKEA/playwright_profile/Default/Login Data new file mode 100644 index 0000000..5a40661 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Login Data differ diff --git a/Парсер_IKEA/playwright_profile/Default/Login Data For Account b/Парсер_IKEA/playwright_profile/Default/Login Data For Account new file mode 100644 index 0000000..5a40661 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Login Data For Account differ diff --git a/Парсер_IKEA/playwright_profile/Default/Login Data For Account-journal b/Парсер_IKEA/playwright_profile/Default/Login Data For Account-journal new file mode 100644 index 0000000..e69de29 diff --git a/Парсер_IKEA/playwright_profile/Default/Login Data-journal b/Парсер_IKEA/playwright_profile/Default/Login Data-journal new file mode 100644 index 0000000..e69de29 diff --git a/Парсер_IKEA/playwright_profile/Default/Network Persistent State b/Парсер_IKEA/playwright_profile/Default/Network Persistent State new file mode 100644 index 0000000..ae192c6 --- /dev/null +++ b/Парсер_IKEA/playwright_profile/Default/Network Persistent State @@ -0,0 +1 @@ +{"net":{"http_server_properties":{"servers":[{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13403206180051278","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"server":"https://accounts.google.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13403206187281607","port":443,"protocol_str":"quic"}],"anonymization":["MAAAACsAAABodHRwczovL29wdGltaXphdGlvbmd1aWRlLXBhLmdvb2dsZWFwaXMuY29tAA==",false,0],"server":"https://optimizationguide-pa.googleapis.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13403206214960281","port":443,"protocol_str":"quic"}],"anonymization":["FAAAABAAAABodHRwczovL2lrZWEuY29t",false,0],"server":"https://content-autofill.googleapis.com","supports_spdy":true},{"anonymization":["FAAAABAAAABodHRwczovL2lrZWEuY29t",false,0],"server":"https://privacyportal-eu.onetrust.com","supports_spdy":true},{"anonymization":["FAAAABAAAABodHRwczovL2lrZWEuY29t",false,0],"server":"https://csp-reporting.cloudflare.com","supports_spdy":true},{"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"network_stats":{"srtt":80122},"server":"https://www.google.com"},{"anonymization":["FAAAABAAAABodHRwczovL2lrZWEuY29t",false,0],"server":"https://api.ingka.ikea.com","supports_spdy":true},{"anonymization":["FAAAABAAAABodHRwczovL2lrZWEuY29t",false,0],"server":"https://geolocation.onetrust.com","supports_spdy":true},{"anonymization":["FAAAABAAAABodHRwczovL2lrZWEuY29t",false,0],"server":"https://cdn.cookielaw.org","supports_spdy":true},{"anonymization":["FAAAABAAAABodHRwczovL2lrZWEuY29t",false,0],"server":"https://accounts.ikea.com","supports_spdy":true},{"anonymization":["FAAAABAAAABodHRwczovL2lrZWEuY29t",false,0],"server":"https://web-api.ikea.com","supports_spdy":true},{"anonymization":["FAAAABAAAABodHRwczovL2lrZWEuY29t",false,0],"server":"https://www.ikea.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13400700680535773","port":443,"protocol_str":"quic"}],"anonymization":["FAAAABAAAABodHRwczovL2lrZWEuY29t",false,0],"network_stats":{"srtt":65155},"server":"https://api.salesitem.ingka.com"}],"supports_quic":{"address":"10.8.1.3","used_quic":true},"version":5},"network_qualities":{"CAASABiAgICA+P////8B":"4G"}}} \ No newline at end of file diff --git a/Парсер_IKEA/playwright_profile/Default/PersistentOriginTrials/LOCK b/Парсер_IKEA/playwright_profile/Default/PersistentOriginTrials/LOCK new file mode 100644 index 0000000..e69de29 diff --git a/Парсер_IKEA/playwright_profile/Default/PersistentOriginTrials/LOG b/Парсер_IKEA/playwright_profile/Default/PersistentOriginTrials/LOG new file mode 100644 index 0000000..e69de29 diff --git a/Парсер_IKEA/playwright_profile/Default/Preferences b/Парсер_IKEA/playwright_profile/Default/Preferences new file mode 100644 index 0000000..513bc7a --- /dev/null +++ b/Парсер_IKEA/playwright_profile/Default/Preferences @@ -0,0 +1 @@ +{"accessibility":{"captions":{"headless_caption_enabled":false,"live_caption_language":"ru-RU"}},"account_tracker_service_last_update":"13400614178160075","ack_existing_ntp_extensions":true,"alternate_error_pages":{"backup":true},"apps":{"shortcuts_arch":"arm64","shortcuts_version":7},"autocomplete":{"retention_policy_last_version":139},"autofill":{"last_version_deduped":139},"bookmark":{"storage_computation_last_update":"13400614178155243"},"browser":{"window_placement":{"bottom":1037,"left":22,"maximized":false,"right":1390,"top":47,"work_area_bottom":2089,"work_area_left":0,"work_area_right":3840,"work_area_top":25}},"commerce_daily_metrics_last_update_time":"13400614178162269","countryid_at_install":16985,"default_search_provider":{"guid":""},"domain_diversity":{"last_reporting_timestamp":"13400614178160985"},"enterprise_profile_guid":"e78731f4-f56f-4d2f-86b1-4ab086d26cfa","extensions":{"alerts":{"initialized":true},"chrome_url_overrides":{},"last_chrome_version":"139.0.7258.139"},"gaia_cookie":{"changed_time":1756140580.061514,"hash":"2jmj7l5rSw0yVb/vlWAYkK/YBwk=","last_list_accounts_binary_data":"","periodic_report_time_2":"13400614176678735"},"gcm":{"product_category_for_subtypes":"com.chrome.macosx"},"google":{"services":{"signin_scoped_device_id":"2af4fedf-6d9c-438b-aa67-88366fb46df8"}},"https_upgrade_navigations":{"2025-08-25":20},"intl":{"selected_languages":"ru-RU,ru,en-US,en"},"invalidation":{"per_sender_topics_to_handler":{"1013309121859":{}}},"media":{"engagement":{"schema_version":5}},"migrated_user_scripts_toggle":true,"ntp":{"num_personal_suggestions":2},"optimization_guide":{"predictionmodelfetcher":{"last_fetch_attempt":"13400614186677355","last_fetch_success":"13400614187283923"},"previously_registered_optimization_types":{"ABOUT_THIS_SITE":true,"DIGITAL_CREDENTIALS_LOW_FRICTION":true,"LOADING_PREDICTOR":true,"MERCHANT_TRUST_SIGNALS_V2":true,"PRICE_TRACKING":true,"SAVED_TAB_GROUP":true,"V8_COMPILE_HINTS":true}},"password_manager":{"account_store_migrated_to_os_crypt_async":true,"autofillable_credentials_account_store_login_database":false,"autofillable_credentials_profile_store_login_database":false,"profile_store_migrated_to_os_crypt_async":true},"privacy_sandbox":{"first_party_sets_data_access_allowed_initialized":true},"profile":{"avatar_index":26,"background_password_check":{"check_fri_weight":9,"check_interval":"2592000000000","check_mon_weight":6,"check_sat_weight":6,"check_sun_weight":6,"check_thu_weight":9,"check_tue_weight":9,"check_wed_weight":9,"next_check_time":"13401833613968353"},"content_settings":{"exceptions":{"3pcd_heuristics_grants":{},"3pcd_support":{},"abusive_notification_permissions":{},"access_to_get_all_screens_media_in_session":{},"anti_abuse":{},"app_banner":{},"ar":{},"are_suspicious_notifications_allowlisted_by_user":{},"auto_picture_in_picture":{},"auto_select_certificate":{},"automatic_downloads":{},"automatic_fullscreen":{},"autoplay":{},"background_sync":{},"bluetooth_chooser_data":{},"bluetooth_guard":{},"bluetooth_scanning":{},"camera_pan_tilt_zoom":{},"captured_surface_control":{},"client_hints":{},"clipboard":{},"controlled_frame":{},"cookie_controls_metadata":{"https://[*.]ikea.com,*":{"last_modified":"13400614278965793","setting":{}}},"cookies":{},"direct_sockets":{},"direct_sockets_private_network_access":{},"display_media_system_audio":{},"disruptive_notification_permissions":{},"durable_storage":{},"fedcm_idp_registration":{},"fedcm_idp_signin":{"https://accounts.google.com:443,*":{"last_modified":"13400614180066366","setting":{"chosen-objects":[{"idp-origin":"https://accounts.google.com","idp-signin-status":false}]}}},"fedcm_share":{},"file_system_access_chooser_data":{},"file_system_access_extended_permission":{},"file_system_access_restore_permission":{},"file_system_last_picked_directory":{},"file_system_read_guard":{},"file_system_write_guard":{},"formfill_metadata":{},"geolocation":{},"hand_tracking":{},"hid_chooser_data":{},"hid_guard":{},"http_allowed":{},"https_enforced":{},"idle_detection":{},"images":{},"important_site_info":{},"initialized_translations":{},"intent_picker_auto_display":{},"javascript":{},"javascript_jit":{},"javascript_optimizer":{},"keyboard_lock":{},"legacy_cookie_access":{},"legacy_cookie_scope":{},"local_fonts":{},"local_network_access":{},"media_engagement":{"https://www.ikea.com:443,*":{"expiration":"13408390283405470","last_modified":"13400614283405806","lifetime":"7776000000000","setting":{"hasHighScore":false,"lastMediaPlaybackTime":0.0,"mediaPlaybacks":0,"visits":1}}},"media_stream_camera":{},"media_stream_mic":{},"midi_sysex":{},"mixed_script":{},"nfc_devices":{},"notification_interactions":{},"notification_permission_review":{},"notifications":{},"ondevice_languages_downloaded":{},"password_protection":{},"payment_handler":{},"permission_autoblocking_data":{},"permission_autorevocation_data":{},"pointer_lock":{},"popups":{},"private_network_chooser_data":{},"private_network_guard":{},"protocol_handler":{},"reduced_accept_language":{},"safe_browsing_url_check_data":{},"sensors":{},"serial_chooser_data":{},"serial_guard":{},"site_engagement":{"https://www.ikea.com:443,*":{"last_modified":"13400614278966879","setting":{"lastEngagementTime":1.3400614278966866e+16,"lastShortcutLaunchTime":0.0,"pointsAddedToday":15.0,"rawScore":15.0}}},"sound":{},"speaker_selection":{},"ssl_cert_decisions":{},"storage_access":{},"storage_access_header_origin_trial":{},"subresource_filter":{},"subresource_filter_data":{},"suspicious_notification_ids":{},"third_party_storage_partitioning":{},"top_level_3pcd_origin_trial":{},"top_level_3pcd_support":{},"top_level_storage_access":{},"tracking_protection":{},"unused_site_permissions":{},"usb_chooser_data":{},"usb_guard":{},"vr":{},"web_app_installation":{},"webid_api":{},"webid_auto_reauthn":{},"window_placement":{}},"pref_version":1},"created_by_version":"139.0.7258.139","creation_time":"13400614176481313","exit_type":"Normal","family_member_role":"not_in_family","isolated_web_app":{"install":{"pending_initialization_count":0}},"last_engagement_time":"13400614278966866","last_time_obsolete_http_credentials_removed":1756140636.693519,"last_time_password_store_metrics_reported":1756140606.694669,"managed":{"locally_parent_approved_extensions":{},"locally_parent_approved_extensions_migration_state":1},"managed_user_id":"","name":"Настройки Chrome","password_hash_data_list":[],"were_old_google_logins_removed":true},"safebrowsing":{"event_timestamps":{},"hash_real_time_ohttp_expiration_time":"13400873380059929","hash_real_time_ohttp_key":"2AAgETtEl5cjzDpksr9J2MiGvUsUaS87sxbZ6vEn9Mxqv18ABAABAAI=","metrics_last_log_time":"13400614176","scout_reporting_enabled_when_deprecated":false},"safety_hub":{"unused_site_permissions_revocation":{"migration_completed":true}},"saved_tab_groups":{"did_enable_shared_tab_groups_in_last_session":false,"specifics_to_data_migration":true},"segmentation_platform":{"client_result_prefs":"ClIKDXNob3BwaW5nX3VzZXISQQo2DQAAAAAQ9PSogZr55hcaJAocChoNAAAAPxIMU2hvcHBpbmdVc2VyGgVPdGhlchIEEAIYBCADEJKFqYGa+eYX","device_switcher_util":{"result":{"labels":["NotSynced"]}},"last_db_compaction_time":"13400467199000000","uma_in_sql_start_time":"13400614176784391"},"sessions":{"event_log":[{"crashed":false,"time":"13400614176695061","type":0},{"did_schedule_command":true,"first_session_service":true,"tab_count":2,"time":"13400614283383170","type":2,"window_count":1}],"session_data_status":5},"settings":{"force_google_safesearch":false},"signin":{"allowed":true,"cookie_clear_on_exit_migration_notice_complete":true},"site_search_settings":{"overridden_keywords":[]},"spellcheck":{"dictionaries":["ru"]},"sync":{"data_type_status_for_sync_to_signin":{"app_list":false,"app_settings":false,"apps":false,"arc_package":false,"autofill":false,"autofill_profiles":false,"autofill_valuable":false,"autofill_wallet":false,"autofill_wallet_credential":false,"autofill_wallet_metadata":false,"autofill_wallet_offer":false,"autofill_wallet_usage":false,"bookmarks":false,"collaboration_group":false,"contact_info":false,"cookies":false,"device_info":false,"dictionary":false,"extension_settings":false,"extensions":false,"history":false,"history_delete_directives":false,"incoming_password_sharing_invitation":false,"managed_user_settings":false,"nigori":false,"os_preferences":false,"os_priority_preferences":false,"outgoing_password_sharing_invitation":false,"passwords":false,"plus_address":false,"plus_address_setting":false,"power_bookmark":false,"preferences":false,"printers":false,"printers_authorization_servers":false,"priority_preferences":false,"product_comparison":false,"reading_list":false,"saved_tab_group":false,"search_engines":false,"security_events":false,"send_tab_to_self":false,"sessions":false,"shared_tab_group_account_data":false,"shared_tab_group_data":false,"sharing_message":false,"themes":false,"user_consent":false,"user_events":false,"web_apps":false,"webapks":false,"webauthn_credential":false,"wifi_configurations":false,"workspace_desk":false},"encryption_bootstrap_token_per_account_migration_done":true,"feature_status_for_sync_to_signin":5,"passwords_per_account_pref_migration_done":true},"syncing_theme_prefs_migrated_to_non_syncing":true,"toolbar":{"pinned_cast_migration_complete":true,"pinned_chrome_labs_migration_complete":true},"translate_ignored_count_for_language":{"pl":1},"translate_site_blacklist":[],"translate_site_blocklist_with_time":{}} \ No newline at end of file diff --git a/Парсер_IKEA/playwright_profile/Default/README b/Парсер_IKEA/playwright_profile/Default/README new file mode 100644 index 0000000..98d9d27 --- /dev/null +++ b/Парсер_IKEA/playwright_profile/Default/README @@ -0,0 +1 @@ +Google Chrome settings and storage represent user-selected preferences and information and MUST not be extracted, overwritten or modified except through Google Chrome defined APIs. \ No newline at end of file diff --git a/Парсер_IKEA/playwright_profile/Default/Reporting and NEL b/Парсер_IKEA/playwright_profile/Default/Reporting and NEL new file mode 100644 index 0000000..6ca2ef8 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Reporting and NEL differ diff --git a/Парсер_IKEA/playwright_profile/Default/Reporting and NEL-journal b/Парсер_IKEA/playwright_profile/Default/Reporting and NEL-journal new file mode 100644 index 0000000..e69de29 diff --git a/Парсер_IKEA/playwright_profile/Default/Safe Browsing Cookies b/Парсер_IKEA/playwright_profile/Default/Safe Browsing Cookies new file mode 100644 index 0000000..90d4767 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Safe Browsing Cookies differ diff --git a/Парсер_IKEA/playwright_profile/Default/Safe Browsing Cookies-journal b/Парсер_IKEA/playwright_profile/Default/Safe Browsing Cookies-journal new file mode 100644 index 0000000..e69de29 diff --git a/Парсер_IKEA/playwright_profile/Default/Secure Preferences b/Парсер_IKEA/playwright_profile/Default/Secure Preferences new file mode 100644 index 0000000..bc61eac --- /dev/null +++ b/Парсер_IKEA/playwright_profile/Default/Secure Preferences @@ -0,0 +1 @@ +{"extensions":{"settings":{"ahfgeienlihckogmohjhadlkjgocpleb":{"account_extension_type":0,"active_permissions":{"api":["management","system.display","system.storage","webstorePrivate","system.cpu","system.memory","system.network"],"explicit_host":[],"manifest_permissions":[],"scriptable_host":[]},"app_launcher_ordinal":"t","commands":{},"content_settings":[],"creation_flags":1,"disable_reasons":[],"events":[],"first_install_time":"13400614176792479","from_webstore":false,"incognito_content_settings":[],"incognito_preferences":{},"last_update_time":"13400614176792479","location":5,"manifest":{"app":{"launch":{"web_url":"https://chrome.google.com/webstore"},"urls":["https://chrome.google.com/webstore"]},"description":"Широкий выбор приложений, игр, расширений и тем для Google Chrome.","icons":{"128":"webstore_icon_128.png","16":"webstore_icon_16.png"},"key":"MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCtl3tO0osjuzRsf6xtD2SKxPlTfuoy7AWoObysitBPvH5fE1NaAA1/2JkPWkVDhdLBWLaIBPYeXbzlHp3y4Vv/4XG+aN5qFE3z+1RU/NqkzVYHtIpVScf3DjTYtKVL66mzVGijSoAIwbFCC3LpGdaoe6Q1rSRDp76wR6jjFzsYwQIDAQAB","name":"Интернет-магазин Chrome","permissions":["webstorePrivate","management","system.cpu","system.display","system.memory","system.network","system.storage"],"version":"0.2"},"needs_sync":true,"page_ordinal":"n","path":"/Applications/Google Chrome.app/Contents/Frameworks/Google Chrome Framework.framework/Versions/139.0.7258.139/Resources/web_store","preferences":{},"regular_only_preferences":{},"was_installed_by_default":false,"was_installed_by_oem":false},"mhjfbmdgcfjbbpaeojofohoefgiehjai":{"account_extension_type":0,"active_permissions":{"api":["contentSettings","fileSystem","fileSystem.write","metricsPrivate","tabs","resourcesPrivate","pdfViewerPrivate"],"explicit_host":["chrome://resources/*","chrome://webui-test/*"],"manifest_permissions":[],"scriptable_host":[]},"commands":{},"content_settings":[],"creation_flags":1,"disable_reasons":[],"events":[],"first_install_time":"13400614176794712","from_webstore":false,"incognito_content_settings":[],"incognito_preferences":{},"last_update_time":"13400614176794712","location":5,"manifest":{"content_security_policy":"script-src 'self' 'wasm-eval' blob: filesystem: chrome://resources chrome://webui-test; object-src * blob: externalfile: file: filesystem: data:","description":"","incognito":"split","key":"MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDN6hM0rsDYGbzQPQfOygqlRtQgKUXMfnSjhIBL7LnReAVBEd7ZmKtyN2qmSasMl4HZpMhVe2rPWVVwBDl6iyNE/Kok6E6v6V3vCLGsOpQAuuNVye/3QxzIldzG/jQAdWZiyXReRVapOhZtLjGfywCvlWq7Sl/e3sbc0vWybSDI2QIDAQAB","manifest_version":2,"mime_types":["application/pdf"],"mime_types_handler":"index.html","name":"Chrome PDF Viewer","offline_enabled":true,"permissions":["chrome://resources/","chrome://webui-test/","contentSettings","metricsPrivate","pdfViewerPrivate","resourcesPrivate","tabs",{"fileSystem":["write"]}],"version":"1"},"path":"/Applications/Google Chrome.app/Contents/Frameworks/Google Chrome Framework.framework/Versions/139.0.7258.139/Resources/pdf","preferences":{},"regular_only_preferences":{},"was_installed_by_default":false,"was_installed_by_oem":false}}},"pinned_tabs":[],"protection":{"macs":{"account_values":{"browser":{"show_home_button":"9C4058927F6C2C959DC56A1650AB40947EC81635394C8FD293CB78F8197A9E61"},"extensions":{"ui":{"developer_mode":"036C74295924DD87EB09B9455BC1CE2271E6DB7B935C151237065C66A238541B"}},"homepage":"2E7DC317C9D30E0CFC776F4C8D98290A2AD31E4BF9B62CF62ED76DF36D6608F4","homepage_is_newtabpage":"4885474D35892BE6D7956956EA654A1B2F966CF7009749035460C3FDEB9EB880","session":{"restore_on_startup":"A627024A0EEB978BB81CEFF27AB2D9E350242F9D42B4784B4AF3E081D88B7F65","startup_urls":"631603AE77C49D65EE629B29C9862FA5E78972E86A134230E2BE651D13BB1BDA"}},"browser":{"show_home_button":"279F56DA39970C332FD8546FDE5AAF565AFA6744BC398BA8285D61D865A8AF78"},"default_search_provider_data":{"template_url_data":"CEBC5C2A51C37FD91EE31A90A1B110A3417686A10DACDD1E0B56B3D5ECBCE0AC"},"enterprise_signin":{"policy_recovery_token":"25E7BE21A715333F86EF539DF59DF6F068547856CA397125E0704B0EC9832AAB"},"extensions":{"settings":{"ahfgeienlihckogmohjhadlkjgocpleb":"BFDFFBDD92BBAF4DE864415A3DB3B4C151F76C9B654F58CF0946B62ED5B994E8","mhjfbmdgcfjbbpaeojofohoefgiehjai":"F147C0F3F351E9B1630CFAB6AE70EBBB1C16DF32EB5AC850339D5D8B7D77836B"},"ui":{"developer_mode":"A1327CDE6EE191563A545A346616253996D75D548A977487909E5261DA6DD13D"}},"google":{"services":{"account_id":"AB51CDFD0D1F4325F1FB5EEACA1B2711FEFC830F1D56A008AC941D4C0040E421","last_signed_in_username":"F6548CCAE04622E22C7955A306415D70C992336992F937A177CD44D7AEF0BCF2","last_username":"737ABDA2472419A1D0B9BC0E11ABA70E68C87E2EB3AA8D431BADD496666EF4D1"}},"homepage":"F99AF519E86827517852752B92010599C50690FA8699B5EC87AB3047D14E3985","homepage_is_newtabpage":"58326095502BC693EBA1B40FF07BF715A75F2AAF40C8811D5E8B67A0C920D937","media":{"storage_id_salt":"A5718BAFB88BA4587195CA8E889019752AC23D5A9158E2DC2C7EF45405427E78"},"pinned_tabs":"33EB46E4502627AAC73375E47B602A95985F0CAEE00820562CFA4C0209E5B392","prefs":{"preference_reset_time":"1B28042DC3E6731CA536BC94639E1BD6C372EA718A3B76C8602AB32958CEDF7D"},"safebrowsing":{"incidents_sent":"16E7760AF5F7A266176270171F49193B419E27400C90B34770824DDCB9C2EFCF"},"schedule_to_flush_to_disk":"4C72979C4ABA6E3E853E5091B22DB659271822DCC57E81B010265A09B2F145B2","search_provider_overrides":"EE8054E2436B637D56E62E55DC5511A42FAA92076746F2C44DCC9B2D8CE1BF44","session":{"restore_on_startup":"4EF7CD3DCD45B65C51133210F7B847CD1851DB1F7C089CC08F3BD589C93ADC65","startup_urls":"55CE4794961E202F6D17D48A04596EE845B760DCF524CB1DEEC096D4B6441955"}},"super_mac":"49EFD0C335D655AF7BA87EA4DEB2EA68EB860BCC7147F713CB8DC125DA8E3CA7"}} \ No newline at end of file diff --git a/Парсер_IKEA/playwright_profile/Default/Segmentation Platform/SegmentInfoDB/LOCK b/Парсер_IKEA/playwright_profile/Default/Segmentation Platform/SegmentInfoDB/LOCK new file mode 100644 index 0000000..e69de29 diff --git a/Парсер_IKEA/playwright_profile/Default/Segmentation Platform/SegmentInfoDB/LOG b/Парсер_IKEA/playwright_profile/Default/Segmentation Platform/SegmentInfoDB/LOG new file mode 100644 index 0000000..e69de29 diff --git a/Парсер_IKEA/playwright_profile/Default/Segmentation Platform/SignalDB/LOCK b/Парсер_IKEA/playwright_profile/Default/Segmentation Platform/SignalDB/LOCK new file mode 100644 index 0000000..e69de29 diff --git a/Парсер_IKEA/playwright_profile/Default/Segmentation Platform/SignalDB/LOG b/Парсер_IKEA/playwright_profile/Default/Segmentation Platform/SignalDB/LOG new file mode 100644 index 0000000..e69de29 diff --git a/Парсер_IKEA/playwright_profile/Default/Segmentation Platform/SignalStorageConfigDB/LOCK b/Парсер_IKEA/playwright_profile/Default/Segmentation Platform/SignalStorageConfigDB/LOCK new file mode 100644 index 0000000..e69de29 diff --git a/Парсер_IKEA/playwright_profile/Default/Segmentation Platform/SignalStorageConfigDB/LOG b/Парсер_IKEA/playwright_profile/Default/Segmentation Platform/SignalStorageConfigDB/LOG new file mode 100644 index 0000000..e69de29 diff --git a/Парсер_IKEA/playwright_profile/Default/ServerCertificate b/Парсер_IKEA/playwright_profile/Default/ServerCertificate new file mode 100644 index 0000000..f7fedcf Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/ServerCertificate differ diff --git a/Парсер_IKEA/playwright_profile/Default/ServerCertificate-journal b/Парсер_IKEA/playwright_profile/Default/ServerCertificate-journal new file mode 100644 index 0000000..e69de29 diff --git a/Парсер_IKEA/playwright_profile/Default/Session Storage/000004.log b/Парсер_IKEA/playwright_profile/Default/Session Storage/000004.log new file mode 100644 index 0000000..b1e36d5 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Session Storage/000004.log differ diff --git a/Парсер_IKEA/playwright_profile/Default/Session Storage/000005.ldb b/Парсер_IKEA/playwright_profile/Default/Session Storage/000005.ldb new file mode 100644 index 0000000..d772410 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Session Storage/000005.ldb differ diff --git a/Парсер_IKEA/playwright_profile/Default/Session Storage/CURRENT b/Парсер_IKEA/playwright_profile/Default/Session Storage/CURRENT new file mode 100644 index 0000000..7ed683d --- /dev/null +++ b/Парсер_IKEA/playwright_profile/Default/Session Storage/CURRENT @@ -0,0 +1 @@ +MANIFEST-000001 diff --git a/Парсер_IKEA/playwright_profile/Default/Session Storage/LOCK b/Парсер_IKEA/playwright_profile/Default/Session Storage/LOCK new file mode 100644 index 0000000..e69de29 diff --git a/Парсер_IKEA/playwright_profile/Default/Session Storage/LOG b/Парсер_IKEA/playwright_profile/Default/Session Storage/LOG new file mode 100644 index 0000000..5e27d0f --- /dev/null +++ b/Парсер_IKEA/playwright_profile/Default/Session Storage/LOG @@ -0,0 +1,5 @@ +2025/08/25-19:49:37.345 2835c4a Creating DB /Users/valis/MacOS_Parsers/Парсер_IKEA/playwright_profile/Default/Session Storage since it was missing. +2025/08/25-19:49:37.362 2835c4a Reusing MANIFEST /Users/valis/MacOS_Parsers/Парсер_IKEA/playwright_profile/Default/Session Storage/MANIFEST-000001 +2025/08/25-19:51:23.422 2835c4d Level-0 table #5: started +2025/08/25-19:51:23.428 2835c4d Level-0 table #5: 131697 bytes OK +2025/08/25-19:51:23.433 2835c4d Delete type=0 #3 diff --git a/Парсер_IKEA/playwright_profile/Default/Session Storage/MANIFEST-000001 b/Парсер_IKEA/playwright_profile/Default/Session Storage/MANIFEST-000001 new file mode 100644 index 0000000..25eac9d Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Session Storage/MANIFEST-000001 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Sessions/Session_13400614179196509 b/Парсер_IKEA/playwright_profile/Default/Sessions/Session_13400614179196509 new file mode 100644 index 0000000..295168e Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Sessions/Session_13400614179196509 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Sessions/Tabs_13400614283470839 b/Парсер_IKEA/playwright_profile/Default/Sessions/Tabs_13400614283470839 new file mode 100644 index 0000000..c2c773b Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Sessions/Tabs_13400614283470839 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Shared Dictionary/cache/index b/Парсер_IKEA/playwright_profile/Default/Shared Dictionary/cache/index new file mode 100644 index 0000000..79bd403 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Shared Dictionary/cache/index differ diff --git a/Парсер_IKEA/playwright_profile/Default/Shared Dictionary/cache/index-dir/the-real-index b/Парсер_IKEA/playwright_profile/Default/Shared Dictionary/cache/index-dir/the-real-index new file mode 100644 index 0000000..1fc56d6 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Shared Dictionary/cache/index-dir/the-real-index differ diff --git a/Парсер_IKEA/playwright_profile/Default/Shared Dictionary/db b/Парсер_IKEA/playwright_profile/Default/Shared Dictionary/db new file mode 100644 index 0000000..9b8637b Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Shared Dictionary/db differ diff --git a/Парсер_IKEA/playwright_profile/Default/Shared Dictionary/db-journal b/Парсер_IKEA/playwright_profile/Default/Shared Dictionary/db-journal new file mode 100644 index 0000000..e69de29 diff --git a/Парсер_IKEA/playwright_profile/Default/SharedStorage b/Парсер_IKEA/playwright_profile/Default/SharedStorage new file mode 100644 index 0000000..373b1a0 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/SharedStorage differ diff --git a/Парсер_IKEA/playwright_profile/Default/Site Characteristics Database/000003.log b/Парсер_IKEA/playwright_profile/Default/Site Characteristics Database/000003.log new file mode 100644 index 0000000..46580fb Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Site Characteristics Database/000003.log differ diff --git a/Парсер_IKEA/playwright_profile/Default/Site Characteristics Database/CURRENT b/Парсер_IKEA/playwright_profile/Default/Site Characteristics Database/CURRENT new file mode 100644 index 0000000..7ed683d --- /dev/null +++ b/Парсер_IKEA/playwright_profile/Default/Site Characteristics Database/CURRENT @@ -0,0 +1 @@ +MANIFEST-000001 diff --git a/Парсер_IKEA/playwright_profile/Default/Site Characteristics Database/LOCK b/Парсер_IKEA/playwright_profile/Default/Site Characteristics Database/LOCK new file mode 100644 index 0000000..e69de29 diff --git a/Парсер_IKEA/playwright_profile/Default/Site Characteristics Database/LOG b/Парсер_IKEA/playwright_profile/Default/Site Characteristics Database/LOG new file mode 100644 index 0000000..b9fc462 --- /dev/null +++ b/Парсер_IKEA/playwright_profile/Default/Site Characteristics Database/LOG @@ -0,0 +1,2 @@ +2025/08/25-19:49:36.677 2835bc1 Creating DB /Users/valis/MacOS_Parsers/Парсер_IKEA/playwright_profile/Default/Site Characteristics Database since it was missing. +2025/08/25-19:49:36.710 2835bc1 Reusing MANIFEST /Users/valis/MacOS_Parsers/Парсер_IKEA/playwright_profile/Default/Site Characteristics Database/MANIFEST-000001 diff --git a/Парсер_IKEA/playwright_profile/Default/Site Characteristics Database/MANIFEST-000001 b/Парсер_IKEA/playwright_profile/Default/Site Characteristics Database/MANIFEST-000001 new file mode 100644 index 0000000..18e5cab Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Site Characteristics Database/MANIFEST-000001 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Sync Data/LevelDB/000003.log b/Парсер_IKEA/playwright_profile/Default/Sync Data/LevelDB/000003.log new file mode 100644 index 0000000..3c85b66 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Sync Data/LevelDB/000003.log differ diff --git a/Парсер_IKEA/playwright_profile/Default/Sync Data/LevelDB/CURRENT b/Парсер_IKEA/playwright_profile/Default/Sync Data/LevelDB/CURRENT new file mode 100644 index 0000000..7ed683d --- /dev/null +++ b/Парсер_IKEA/playwright_profile/Default/Sync Data/LevelDB/CURRENT @@ -0,0 +1 @@ +MANIFEST-000001 diff --git a/Парсер_IKEA/playwright_profile/Default/Sync Data/LevelDB/LOCK b/Парсер_IKEA/playwright_profile/Default/Sync Data/LevelDB/LOCK new file mode 100644 index 0000000..e69de29 diff --git a/Парсер_IKEA/playwright_profile/Default/Sync Data/LevelDB/LOG b/Парсер_IKEA/playwright_profile/Default/Sync Data/LevelDB/LOG new file mode 100644 index 0000000..0d10d0f --- /dev/null +++ b/Парсер_IKEA/playwright_profile/Default/Sync Data/LevelDB/LOG @@ -0,0 +1,2 @@ +2025/08/25-19:49:36.658 2835af5 Creating DB /Users/valis/MacOS_Parsers/Парсер_IKEA/playwright_profile/Default/Sync Data/LevelDB since it was missing. +2025/08/25-19:49:36.710 2835af5 Reusing MANIFEST /Users/valis/MacOS_Parsers/Парсер_IKEA/playwright_profile/Default/Sync Data/LevelDB/MANIFEST-000001 diff --git a/Парсер_IKEA/playwright_profile/Default/Sync Data/LevelDB/MANIFEST-000001 b/Парсер_IKEA/playwright_profile/Default/Sync Data/LevelDB/MANIFEST-000001 new file mode 100644 index 0000000..18e5cab Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Sync Data/LevelDB/MANIFEST-000001 differ diff --git a/Парсер_IKEA/playwright_profile/Default/Top Sites b/Парсер_IKEA/playwright_profile/Default/Top Sites new file mode 100644 index 0000000..b66f268 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Top Sites differ diff --git a/Парсер_IKEA/playwright_profile/Default/Top Sites-journal b/Парсер_IKEA/playwright_profile/Default/Top Sites-journal new file mode 100644 index 0000000..e69de29 diff --git a/Парсер_IKEA/playwright_profile/Default/TransportSecurity b/Парсер_IKEA/playwright_profile/Default/TransportSecurity new file mode 100644 index 0000000..fdce62c --- /dev/null +++ b/Парсер_IKEA/playwright_profile/Default/TransportSecurity @@ -0,0 +1 @@ +{"sts":[{"expiry":1787676680.754679,"host":"IChu9sC6avGu0RXZqH7oDEAzClkMFFIx4Ju2k25r1PA=","mode":"force-https","sts_include_subdomains":true,"sts_observed":1756140680.754681},{"expiry":1787676617.928269,"host":"I+doNotEelGEqjXL/S353b991Lk9LirRN8J3+K3eqT8=","mode":"force-https","sts_include_subdomains":true,"sts_observed":1756140617.928274},{"expiry":1787676679.263465,"host":"Q2i8+5A3kREMoy37yPuUYKheqKsz3RQ2ENTog6mvPhc=","mode":"force-https","sts_include_subdomains":true,"sts_observed":1756140679.263472},{"expiry":1787676594.811263,"host":"eMIhdBIeGO0Ugn/hljmbZogTnAA6ZNUajhwz+oVcsH0=","mode":"force-https","sts_include_subdomains":true,"sts_observed":1756140594.811269},{"expiry":1756227079.852395,"host":"0ofNl1cceTdeEL9sdmeeEkPtYIyXkweyZqM35TXJk+E=","mode":"force-https","sts_include_subdomains":false,"sts_observed":1756140679.852399},{"expiry":1771908680.535856,"host":"1O6KIHZYegqXJfa/Em9fr4nSllEv9RDGXe9XCsj6TsM=","mode":"force-https","sts_include_subdomains":true,"sts_observed":1756140680.535862},{"expiry":1787676580.055034,"host":"8/RrMmQlCD2Gsp14wUCE1P8r7B2C5+yE0+g79IPyRsc=","mode":"force-https","sts_include_subdomains":true,"sts_observed":1756140580.055071},{"expiry":1771692680.749514,"host":"+7tJVZTQDrwDgX3Ke7Kd0UuN+hdq/vXAuFXK2D8z4Js=","mode":"force-https","sts_include_subdomains":true,"sts_observed":1756140680.749518}],"version":2} \ No newline at end of file diff --git a/Парсер_IKEA/playwright_profile/Default/Trust Tokens b/Парсер_IKEA/playwright_profile/Default/Trust Tokens new file mode 100644 index 0000000..c3dac60 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Trust Tokens differ diff --git a/Парсер_IKEA/playwright_profile/Default/Trust Tokens-journal b/Парсер_IKEA/playwright_profile/Default/Trust Tokens-journal new file mode 100644 index 0000000..e69de29 diff --git a/Парсер_IKEA/playwright_profile/Default/Web Data b/Парсер_IKEA/playwright_profile/Default/Web Data new file mode 100644 index 0000000..f467120 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/Web Data differ diff --git a/Парсер_IKEA/playwright_profile/Default/Web Data-journal b/Парсер_IKEA/playwright_profile/Default/Web Data-journal new file mode 100644 index 0000000..e69de29 diff --git a/Парсер_IKEA/playwright_profile/Default/WebStorage/QuotaManager b/Парсер_IKEA/playwright_profile/Default/WebStorage/QuotaManager new file mode 100644 index 0000000..aefbf70 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/WebStorage/QuotaManager differ diff --git a/Парсер_IKEA/playwright_profile/Default/WebStorage/QuotaManager-journal b/Парсер_IKEA/playwright_profile/Default/WebStorage/QuotaManager-journal new file mode 100644 index 0000000..e69de29 diff --git a/Парсер_IKEA/playwright_profile/Default/chrome_cart_db/LOCK b/Парсер_IKEA/playwright_profile/Default/chrome_cart_db/LOCK new file mode 100644 index 0000000..e69de29 diff --git a/Парсер_IKEA/playwright_profile/Default/chrome_cart_db/LOG b/Парсер_IKEA/playwright_profile/Default/chrome_cart_db/LOG new file mode 100644 index 0000000..e69de29 diff --git a/Парсер_IKEA/playwright_profile/Default/commerce_subscription_db/LOCK b/Парсер_IKEA/playwright_profile/Default/commerce_subscription_db/LOCK new file mode 100644 index 0000000..e69de29 diff --git a/Парсер_IKEA/playwright_profile/Default/commerce_subscription_db/LOG b/Парсер_IKEA/playwright_profile/Default/commerce_subscription_db/LOG new file mode 100644 index 0000000..e69de29 diff --git a/Парсер_IKEA/playwright_profile/Default/discount_infos_db/LOCK b/Парсер_IKEA/playwright_profile/Default/discount_infos_db/LOCK new file mode 100644 index 0000000..e69de29 diff --git a/Парсер_IKEA/playwright_profile/Default/discount_infos_db/LOG b/Парсер_IKEA/playwright_profile/Default/discount_infos_db/LOG new file mode 100644 index 0000000..e69de29 diff --git a/Парсер_IKEA/playwright_profile/Default/discounts_db/LOCK b/Парсер_IKEA/playwright_profile/Default/discounts_db/LOCK new file mode 100644 index 0000000..e69de29 diff --git a/Парсер_IKEA/playwright_profile/Default/discounts_db/LOG b/Парсер_IKEA/playwright_profile/Default/discounts_db/LOG new file mode 100644 index 0000000..e69de29 diff --git a/Парсер_IKEA/playwright_profile/Default/parcel_tracking_db/LOCK b/Парсер_IKEA/playwright_profile/Default/parcel_tracking_db/LOCK new file mode 100644 index 0000000..e69de29 diff --git a/Парсер_IKEA/playwright_profile/Default/parcel_tracking_db/LOG b/Парсер_IKEA/playwright_profile/Default/parcel_tracking_db/LOG new file mode 100644 index 0000000..e69de29 diff --git a/Парсер_IKEA/playwright_profile/Default/shared_proto_db/000003.log b/Парсер_IKEA/playwright_profile/Default/shared_proto_db/000003.log new file mode 100644 index 0000000..eab0bc5 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/shared_proto_db/000003.log differ diff --git a/Парсер_IKEA/playwright_profile/Default/shared_proto_db/CURRENT b/Парсер_IKEA/playwright_profile/Default/shared_proto_db/CURRENT new file mode 100644 index 0000000..7ed683d --- /dev/null +++ b/Парсер_IKEA/playwright_profile/Default/shared_proto_db/CURRENT @@ -0,0 +1 @@ +MANIFEST-000001 diff --git a/Парсер_IKEA/playwright_profile/Default/shared_proto_db/LOCK b/Парсер_IKEA/playwright_profile/Default/shared_proto_db/LOCK new file mode 100644 index 0000000..e69de29 diff --git a/Парсер_IKEA/playwright_profile/Default/shared_proto_db/LOG b/Парсер_IKEA/playwright_profile/Default/shared_proto_db/LOG new file mode 100644 index 0000000..1015cdb --- /dev/null +++ b/Парсер_IKEA/playwright_profile/Default/shared_proto_db/LOG @@ -0,0 +1,2 @@ +2025/08/25-19:49:38.161 2835af5 Creating DB /Users/valis/MacOS_Parsers/Парсер_IKEA/playwright_profile/Default/shared_proto_db since it was missing. +2025/08/25-19:49:38.164 2835af5 Reusing MANIFEST /Users/valis/MacOS_Parsers/Парсер_IKEA/playwright_profile/Default/shared_proto_db/MANIFEST-000001 diff --git a/Парсер_IKEA/playwright_profile/Default/shared_proto_db/MANIFEST-000001 b/Парсер_IKEA/playwright_profile/Default/shared_proto_db/MANIFEST-000001 new file mode 100644 index 0000000..18e5cab Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/shared_proto_db/MANIFEST-000001 differ diff --git a/Парсер_IKEA/playwright_profile/Default/shared_proto_db/metadata/000003.log b/Парсер_IKEA/playwright_profile/Default/shared_proto_db/metadata/000003.log new file mode 100644 index 0000000..a1a9583 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/shared_proto_db/metadata/000003.log differ diff --git a/Парсер_IKEA/playwright_profile/Default/shared_proto_db/metadata/CURRENT b/Парсер_IKEA/playwright_profile/Default/shared_proto_db/metadata/CURRENT new file mode 100644 index 0000000..7ed683d --- /dev/null +++ b/Парсер_IKEA/playwright_profile/Default/shared_proto_db/metadata/CURRENT @@ -0,0 +1 @@ +MANIFEST-000001 diff --git a/Парсер_IKEA/playwright_profile/Default/shared_proto_db/metadata/LOCK b/Парсер_IKEA/playwright_profile/Default/shared_proto_db/metadata/LOCK new file mode 100644 index 0000000..e69de29 diff --git a/Парсер_IKEA/playwright_profile/Default/shared_proto_db/metadata/LOG b/Парсер_IKEA/playwright_profile/Default/shared_proto_db/metadata/LOG new file mode 100644 index 0000000..e3ca163 --- /dev/null +++ b/Парсер_IKEA/playwright_profile/Default/shared_proto_db/metadata/LOG @@ -0,0 +1,2 @@ +2025/08/25-19:49:38.155 2835af5 Creating DB /Users/valis/MacOS_Parsers/Парсер_IKEA/playwright_profile/Default/shared_proto_db/metadata since it was missing. +2025/08/25-19:49:38.158 2835af5 Reusing MANIFEST /Users/valis/MacOS_Parsers/Парсер_IKEA/playwright_profile/Default/shared_proto_db/metadata/MANIFEST-000001 diff --git a/Парсер_IKEA/playwright_profile/Default/shared_proto_db/metadata/MANIFEST-000001 b/Парсер_IKEA/playwright_profile/Default/shared_proto_db/metadata/MANIFEST-000001 new file mode 100644 index 0000000..18e5cab Binary files /dev/null and b/Парсер_IKEA/playwright_profile/Default/shared_proto_db/metadata/MANIFEST-000001 differ diff --git a/Парсер_IKEA/playwright_profile/Default/trusted_vault.pb b/Парсер_IKEA/playwright_profile/Default/trusted_vault.pb new file mode 100644 index 0000000..0aac903 --- /dev/null +++ b/Парсер_IKEA/playwright_profile/Default/trusted_vault.pb @@ -0,0 +1,2 @@ + + 0ba4067c95d8d92744702afdd1697107 \ No newline at end of file diff --git a/Парсер_IKEA/playwright_profile/GrShaderCache/data_0 b/Парсер_IKEA/playwright_profile/GrShaderCache/data_0 new file mode 100644 index 0000000..48106c5 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/GrShaderCache/data_0 differ diff --git a/Парсер_IKEA/playwright_profile/GrShaderCache/data_1 b/Парсер_IKEA/playwright_profile/GrShaderCache/data_1 new file mode 100644 index 0000000..b5b4fb0 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/GrShaderCache/data_1 differ diff --git a/Парсер_IKEA/playwright_profile/GrShaderCache/data_2 b/Парсер_IKEA/playwright_profile/GrShaderCache/data_2 new file mode 100644 index 0000000..c7e2eb9 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/GrShaderCache/data_2 differ diff --git a/Парсер_IKEA/playwright_profile/GrShaderCache/data_3 b/Парсер_IKEA/playwright_profile/GrShaderCache/data_3 new file mode 100644 index 0000000..5eec973 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/GrShaderCache/data_3 differ diff --git a/Парсер_IKEA/playwright_profile/GrShaderCache/f_000001 b/Парсер_IKEA/playwright_profile/GrShaderCache/f_000001 new file mode 100644 index 0000000..7214892 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/GrShaderCache/f_000001 differ diff --git a/Парсер_IKEA/playwright_profile/GrShaderCache/f_000002 b/Парсер_IKEA/playwright_profile/GrShaderCache/f_000002 new file mode 100644 index 0000000..4d153ce Binary files /dev/null and b/Парсер_IKEA/playwright_profile/GrShaderCache/f_000002 differ diff --git a/Парсер_IKEA/playwright_profile/GrShaderCache/f_000003 b/Парсер_IKEA/playwright_profile/GrShaderCache/f_000003 new file mode 100644 index 0000000..2f4f4d9 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/GrShaderCache/f_000003 differ diff --git a/Парсер_IKEA/playwright_profile/GrShaderCache/f_000004 b/Парсер_IKEA/playwright_profile/GrShaderCache/f_000004 new file mode 100644 index 0000000..c7dcb9d Binary files /dev/null and b/Парсер_IKEA/playwright_profile/GrShaderCache/f_000004 differ diff --git a/Парсер_IKEA/playwright_profile/GrShaderCache/f_000005 b/Парсер_IKEA/playwright_profile/GrShaderCache/f_000005 new file mode 100644 index 0000000..6f69e74 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/GrShaderCache/f_000005 differ diff --git a/Парсер_IKEA/playwright_profile/GrShaderCache/f_000006 b/Парсер_IKEA/playwright_profile/GrShaderCache/f_000006 new file mode 100644 index 0000000..2a08023 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/GrShaderCache/f_000006 differ diff --git a/Парсер_IKEA/playwright_profile/GrShaderCache/f_000007 b/Парсер_IKEA/playwright_profile/GrShaderCache/f_000007 new file mode 100644 index 0000000..2af7ee9 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/GrShaderCache/f_000007 differ diff --git a/Парсер_IKEA/playwright_profile/GrShaderCache/f_000008 b/Парсер_IKEA/playwright_profile/GrShaderCache/f_000008 new file mode 100644 index 0000000..35adff6 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/GrShaderCache/f_000008 differ diff --git a/Парсер_IKEA/playwright_profile/GrShaderCache/f_000009 b/Парсер_IKEA/playwright_profile/GrShaderCache/f_000009 new file mode 100644 index 0000000..b0cbb2e Binary files /dev/null and b/Парсер_IKEA/playwright_profile/GrShaderCache/f_000009 differ diff --git a/Парсер_IKEA/playwright_profile/GrShaderCache/f_00000a b/Парсер_IKEA/playwright_profile/GrShaderCache/f_00000a new file mode 100644 index 0000000..e207475 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/GrShaderCache/f_00000a differ diff --git a/Парсер_IKEA/playwright_profile/GrShaderCache/f_00000b b/Парсер_IKEA/playwright_profile/GrShaderCache/f_00000b new file mode 100644 index 0000000..a82f0c5 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/GrShaderCache/f_00000b differ diff --git a/Парсер_IKEA/playwright_profile/GrShaderCache/f_00000c b/Парсер_IKEA/playwright_profile/GrShaderCache/f_00000c new file mode 100644 index 0000000..2831409 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/GrShaderCache/f_00000c differ diff --git a/Парсер_IKEA/playwright_profile/GrShaderCache/f_00000d b/Парсер_IKEA/playwright_profile/GrShaderCache/f_00000d new file mode 100644 index 0000000..0b8f155 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/GrShaderCache/f_00000d differ diff --git a/Парсер_IKEA/playwright_profile/GrShaderCache/f_00000e b/Парсер_IKEA/playwright_profile/GrShaderCache/f_00000e new file mode 100644 index 0000000..bbe3b6e Binary files /dev/null and b/Парсер_IKEA/playwright_profile/GrShaderCache/f_00000e differ diff --git a/Парсер_IKEA/playwright_profile/GrShaderCache/f_00000f b/Парсер_IKEA/playwright_profile/GrShaderCache/f_00000f new file mode 100644 index 0000000..b0e7537 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/GrShaderCache/f_00000f differ diff --git a/Парсер_IKEA/playwright_profile/GrShaderCache/f_000010 b/Парсер_IKEA/playwright_profile/GrShaderCache/f_000010 new file mode 100644 index 0000000..45115e8 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/GrShaderCache/f_000010 differ diff --git a/Парсер_IKEA/playwright_profile/GrShaderCache/f_000011 b/Парсер_IKEA/playwright_profile/GrShaderCache/f_000011 new file mode 100644 index 0000000..4de62d1 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/GrShaderCache/f_000011 differ diff --git a/Парсер_IKEA/playwright_profile/GrShaderCache/f_000012 b/Парсер_IKEA/playwright_profile/GrShaderCache/f_000012 new file mode 100644 index 0000000..a82f0c5 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/GrShaderCache/f_000012 differ diff --git a/Парсер_IKEA/playwright_profile/GrShaderCache/f_000013 b/Парсер_IKEA/playwright_profile/GrShaderCache/f_000013 new file mode 100644 index 0000000..37785af Binary files /dev/null and b/Парсер_IKEA/playwright_profile/GrShaderCache/f_000013 differ diff --git a/Парсер_IKEA/playwright_profile/GrShaderCache/f_000014 b/Парсер_IKEA/playwright_profile/GrShaderCache/f_000014 new file mode 100644 index 0000000..ba3e3d1 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/GrShaderCache/f_000014 differ diff --git a/Парсер_IKEA/playwright_profile/GrShaderCache/f_000015 b/Парсер_IKEA/playwright_profile/GrShaderCache/f_000015 new file mode 100644 index 0000000..ac7b872 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/GrShaderCache/f_000015 differ diff --git a/Парсер_IKEA/playwright_profile/GrShaderCache/f_000016 b/Парсер_IKEA/playwright_profile/GrShaderCache/f_000016 new file mode 100644 index 0000000..44652e5 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/GrShaderCache/f_000016 differ diff --git a/Парсер_IKEA/playwright_profile/GrShaderCache/f_000017 b/Парсер_IKEA/playwright_profile/GrShaderCache/f_000017 new file mode 100644 index 0000000..1ab6cd7 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/GrShaderCache/f_000017 differ diff --git a/Парсер_IKEA/playwright_profile/GrShaderCache/f_000018 b/Парсер_IKEA/playwright_profile/GrShaderCache/f_000018 new file mode 100644 index 0000000..b6db723 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/GrShaderCache/f_000018 differ diff --git a/Парсер_IKEA/playwright_profile/GrShaderCache/f_000019 b/Парсер_IKEA/playwright_profile/GrShaderCache/f_000019 new file mode 100644 index 0000000..5d48e4c Binary files /dev/null and b/Парсер_IKEA/playwright_profile/GrShaderCache/f_000019 differ diff --git a/Парсер_IKEA/playwright_profile/GrShaderCache/f_00001a b/Парсер_IKEA/playwright_profile/GrShaderCache/f_00001a new file mode 100644 index 0000000..ed575df Binary files /dev/null and b/Парсер_IKEA/playwright_profile/GrShaderCache/f_00001a differ diff --git a/Парсер_IKEA/playwright_profile/GrShaderCache/f_00001b b/Парсер_IKEA/playwright_profile/GrShaderCache/f_00001b new file mode 100644 index 0000000..9128718 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/GrShaderCache/f_00001b differ diff --git a/Парсер_IKEA/playwright_profile/GrShaderCache/f_00001c b/Парсер_IKEA/playwright_profile/GrShaderCache/f_00001c new file mode 100644 index 0000000..50f5d66 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/GrShaderCache/f_00001c differ diff --git a/Парсер_IKEA/playwright_profile/GrShaderCache/f_00001d b/Парсер_IKEA/playwright_profile/GrShaderCache/f_00001d new file mode 100644 index 0000000..1359361 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/GrShaderCache/f_00001d differ diff --git a/Парсер_IKEA/playwright_profile/GrShaderCache/f_00001e b/Парсер_IKEA/playwright_profile/GrShaderCache/f_00001e new file mode 100644 index 0000000..52446a1 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/GrShaderCache/f_00001e differ diff --git a/Парсер_IKEA/playwright_profile/GrShaderCache/f_00001f b/Парсер_IKEA/playwright_profile/GrShaderCache/f_00001f new file mode 100644 index 0000000..d96e04e Binary files /dev/null and b/Парсер_IKEA/playwright_profile/GrShaderCache/f_00001f differ diff --git a/Парсер_IKEA/playwright_profile/GrShaderCache/f_000020 b/Парсер_IKEA/playwright_profile/GrShaderCache/f_000020 new file mode 100644 index 0000000..c12523f Binary files /dev/null and b/Парсер_IKEA/playwright_profile/GrShaderCache/f_000020 differ diff --git a/Парсер_IKEA/playwright_profile/GrShaderCache/f_000021 b/Парсер_IKEA/playwright_profile/GrShaderCache/f_000021 new file mode 100644 index 0000000..f80dc80 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/GrShaderCache/f_000021 differ diff --git a/Парсер_IKEA/playwright_profile/GrShaderCache/f_000022 b/Парсер_IKEA/playwright_profile/GrShaderCache/f_000022 new file mode 100644 index 0000000..8075bff Binary files /dev/null and b/Парсер_IKEA/playwright_profile/GrShaderCache/f_000022 differ diff --git a/Парсер_IKEA/playwright_profile/GrShaderCache/f_000023 b/Парсер_IKEA/playwright_profile/GrShaderCache/f_000023 new file mode 100644 index 0000000..c918a6c Binary files /dev/null and b/Парсер_IKEA/playwright_profile/GrShaderCache/f_000023 differ diff --git a/Парсер_IKEA/playwright_profile/GrShaderCache/f_000024 b/Парсер_IKEA/playwright_profile/GrShaderCache/f_000024 new file mode 100644 index 0000000..ed8e52e Binary files /dev/null and b/Парсер_IKEA/playwright_profile/GrShaderCache/f_000024 differ diff --git a/Парсер_IKEA/playwright_profile/GrShaderCache/f_000025 b/Парсер_IKEA/playwright_profile/GrShaderCache/f_000025 new file mode 100644 index 0000000..eed9899 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/GrShaderCache/f_000025 differ diff --git a/Парсер_IKEA/playwright_profile/GrShaderCache/f_000026 b/Парсер_IKEA/playwright_profile/GrShaderCache/f_000026 new file mode 100644 index 0000000..35adff6 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/GrShaderCache/f_000026 differ diff --git a/Парсер_IKEA/playwright_profile/GrShaderCache/index b/Парсер_IKEA/playwright_profile/GrShaderCache/index new file mode 100644 index 0000000..fb89d43 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/GrShaderCache/index differ diff --git a/Парсер_IKEA/playwright_profile/GraphiteDawnCache/data_0 b/Парсер_IKEA/playwright_profile/GraphiteDawnCache/data_0 new file mode 100644 index 0000000..d76fb77 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/GraphiteDawnCache/data_0 differ diff --git a/Парсер_IKEA/playwright_profile/GraphiteDawnCache/data_1 b/Парсер_IKEA/playwright_profile/GraphiteDawnCache/data_1 new file mode 100644 index 0000000..6aaae1b Binary files /dev/null and b/Парсер_IKEA/playwright_profile/GraphiteDawnCache/data_1 differ diff --git a/Парсер_IKEA/playwright_profile/GraphiteDawnCache/data_2 b/Парсер_IKEA/playwright_profile/GraphiteDawnCache/data_2 new file mode 100644 index 0000000..c7e2eb9 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/GraphiteDawnCache/data_2 differ diff --git a/Парсер_IKEA/playwright_profile/GraphiteDawnCache/data_3 b/Парсер_IKEA/playwright_profile/GraphiteDawnCache/data_3 new file mode 100644 index 0000000..5eec973 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/GraphiteDawnCache/data_3 differ diff --git a/Парсер_IKEA/playwright_profile/GraphiteDawnCache/index b/Парсер_IKEA/playwright_profile/GraphiteDawnCache/index new file mode 100644 index 0000000..3adab33 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/GraphiteDawnCache/index differ diff --git a/Парсер_IKEA/playwright_profile/Last Version b/Парсер_IKEA/playwright_profile/Last Version new file mode 100644 index 0000000..7fa34b1 --- /dev/null +++ b/Парсер_IKEA/playwright_profile/Last Version @@ -0,0 +1 @@ +139.0.7258.139 \ No newline at end of file diff --git a/Парсер_IKEA/playwright_profile/Local State b/Парсер_IKEA/playwright_profile/Local State new file mode 100644 index 0000000..dad78f5 --- /dev/null +++ b/Парсер_IKEA/playwright_profile/Local State @@ -0,0 +1 @@ +{"accessibility":{"captions":{"soda_registered_language_packs":["ru-RU"]}},"autofill":{"ablation_seed":"q5nR1xJxb+Y="},"breadcrumbs":{"enabled":false,"enabled_time":"13400614176476042"},"hardware_acceleration_mode_previous":true,"legacy":{"profile":{"name":{"migrated":true}}},"local":{"password_hash_data_list":[]},"management":{"platform":{"enterprise_mdm_mac":0}},"network_time":{"network_time_mapping":{"local":1.756140578854345e+12,"network":1.75614057884e+12,"ticks":565279615676.0,"uncertainty":10082294.0}},"optimization_guide":{"model_cache_key_mapping":{"15DC3E7836E4D434CA":"4F40902F3B6AE19A","20DC3E7836E4D434CA":"4F40902F3B6AE19A","25DC3E7836E4D434CA":"4F40902F3B6AE19A","26DC3E7836E4D434CA":"4F40902F3B6AE19A","2DC3E7836E4D434CA":"4F40902F3B6AE19A","45DC3E7836E4D434CA":"4F40902F3B6AE19A","9DC3E7836E4D434CA":"4F40902F3B6AE19A"},"model_execution":{"last_usage_by_feature":{}},"model_store_metadata":{},"on_device":{"last_version":"139.0.7258.139","model_crash_count":0}},"performance_intervention":{"last_daily_sample":"13400614177350141"},"policy":{"last_statistics_update":"13400614176455157"},"privacy_budget":{"meta_experiment_activation_salt":0.6655723031629135},"profile":{"info_cache":{"Default":{"active_time":1756140577.327447,"avatar_icon":"chrome://theme/IDR_PROFILE_AVATAR_26","background_apps":false,"default_avatar_fill_color":-2890755,"default_avatar_stroke_color":-16166200,"force_signin_profile_locked":false,"gaia_id":"","is_consented_primary_account":false,"is_ephemeral":false,"is_using_default_avatar":true,"is_using_default_name":true,"managed_user_id":"","metrics_bucket_index":1,"name":"Настройки Chrome","profile_color_seed":-16033840,"profile_highlight_color":-2890755,"signin.with_credential_provider":false,"user_name":""}},"last_active_profiles":["Default"],"metrics":{"next_bucket_index":2},"profile_counts_reported":"13400614176480733","profiles_order":["Default"]},"profile_network_context_service":{"http_cache_finch_experiment_groups":"None None None None"},"session_id_generator_last_value":"1620748284","signin":{"active_accounts_last_emitted":"13400614173288602"},"subresource_filter":{"ruleset_version":{"checksum":0,"content":"","format":0}},"tab_stats":{"discards_external":0,"discards_frozen":0,"discards_proactive":0,"discards_suggested":0,"discards_urgent":0,"last_daily_sample":"13400614176424553","max_tabs_per_window":2,"reloads_external":0,"reloads_frozen":0,"reloads_proactive":0,"reloads_suggested":0,"reloads_urgent":0,"total_tab_count_max":2,"window_count_max":1},"ukm":{"persisted_logs":[]},"uninstall_metrics":{"installation_date2":"1756140573"},"user_experience_metrics":{"client_id2":"ed68bd6e-168f-47c0-9816-8afdc0799ca3","client_id_timestamp":"1756140576","limited_entropy_randomization_source":"7B745D3CE9F5BFF97D8D44A0F7D5234D","log_record_id":1,"low_entropy_source3":236,"pseudo_low_entropy_source":5558,"session_id":0,"stability":{"browser_last_live_timestamp":"13400614283465600","exited_cleanly":true,"saved_system_profile":"CNeNjsUGEhExMzkuMC43MjU4LjEzOS02NBiAkbLFBiICcnUqEgoITWFjIE9TIFgSBjE1LjUuMDJgCgVhcm02NBCAgAEiDk1hY0Jvb2tQcm8xOCwzKAMwgDw44CFCCggAEAAaADIAOgBlAAAAQGoYCgxHZW51aW5lSW50ZWwQwI0IGAggACgCggEAigEAqgEGeDg2XzY0sAEBSgoNQZDythWAjX3KSgoNkrdXsxUwrvLcSgoNBQ7w9BWAjX3KUARaAGIER0dST2oICAAQADgAQACAAYCRssUGmAEA+AHsAYAC////////////AYgCAZICJGVkNjhiZDZlLTE2OGYtNDdjMC05ODE2LThhZmRjMDc5OWNhM6gCtiuyAogBZB450p7LUD034q1+xYgAKn7IsGwLj70v2MAtsf5bz4dGdDQ67motfyp+LMUZDNsJTLRUE0n9H/9UH43yymV+G2N3Hn15S6ppHgxGjeP7Ti5v2UFhTvrLmMhARP61EIfS1sYKphv1BfE5C92iJ0SDSS28C5tj623dU5++z0Lg4+uEi7j/TPMNXfECFl65KP9a0LQ=","saved_system_profile_hash":"2B86E3A3DE37EEB3DC79F2292D077F706E2083E3","stats_buildtime":"1755547351","stats_version":"139.0.7258.139-64"}},"variations_google_groups":{"Default":[]},"was":{"restarted":false}} \ No newline at end of file diff --git a/Парсер_IKEA/playwright_profile/ShaderCache/data_0 b/Парсер_IKEA/playwright_profile/ShaderCache/data_0 new file mode 100644 index 0000000..d76fb77 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/ShaderCache/data_0 differ diff --git a/Парсер_IKEA/playwright_profile/ShaderCache/data_1 b/Парсер_IKEA/playwright_profile/ShaderCache/data_1 new file mode 100644 index 0000000..09a69eb Binary files /dev/null and b/Парсер_IKEA/playwright_profile/ShaderCache/data_1 differ diff --git a/Парсер_IKEA/playwright_profile/ShaderCache/data_2 b/Парсер_IKEA/playwright_profile/ShaderCache/data_2 new file mode 100644 index 0000000..c7e2eb9 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/ShaderCache/data_2 differ diff --git a/Парсер_IKEA/playwright_profile/ShaderCache/data_3 b/Парсер_IKEA/playwright_profile/ShaderCache/data_3 new file mode 100644 index 0000000..5eec973 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/ShaderCache/data_3 differ diff --git a/Парсер_IKEA/playwright_profile/ShaderCache/index b/Парсер_IKEA/playwright_profile/ShaderCache/index new file mode 100644 index 0000000..01277f9 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/ShaderCache/index differ diff --git a/Парсер_IKEA/playwright_profile/Variations b/Парсер_IKEA/playwright_profile/Variations new file mode 100644 index 0000000..18056c3 --- /dev/null +++ b/Парсер_IKEA/playwright_profile/Variations @@ -0,0 +1 @@ +{"user_experience_metrics.stability.exited_cleanly":true,"variations_crash_streak":0} \ No newline at end of file diff --git a/Парсер_IKEA/playwright_profile/component_crx_cache/metadata.json b/Парсер_IKEA/playwright_profile/component_crx_cache/metadata.json new file mode 100644 index 0000000..4d15610 --- /dev/null +++ b/Парсер_IKEA/playwright_profile/component_crx_cache/metadata.json @@ -0,0 +1 @@ +{"hashes":{}} \ No newline at end of file diff --git a/Парсер_IKEA/playwright_profile/first_party_sets.db b/Парсер_IKEA/playwright_profile/first_party_sets.db new file mode 100644 index 0000000..bcb1222 Binary files /dev/null and b/Парсер_IKEA/playwright_profile/first_party_sets.db differ diff --git a/Парсер_IKEA/playwright_profile/first_party_sets.db-journal b/Парсер_IKEA/playwright_profile/first_party_sets.db-journal new file mode 100644 index 0000000..e69de29 diff --git a/Парсер_IKEA/playwright_profile/segmentation_platform/ukm_db b/Парсер_IKEA/playwright_profile/segmentation_platform/ukm_db new file mode 100644 index 0000000..48ba0de Binary files /dev/null and b/Парсер_IKEA/playwright_profile/segmentation_platform/ukm_db differ diff --git a/Парсер_IKEA/playwright_profile/segmentation_platform/ukm_db-wal b/Парсер_IKEA/playwright_profile/segmentation_platform/ukm_db-wal new file mode 100644 index 0000000..e69de29 diff --git a/Парсер_IKEA/playwright_profile/storage_state.json b/Парсер_IKEA/playwright_profile/storage_state.json new file mode 100644 index 0000000..96984ae --- /dev/null +++ b/Парсер_IKEA/playwright_profile/storage_state.json @@ -0,0 +1 @@ +{"cookies": [{"name": "ikea_geo", "value": "DE", "domain": "www.ikea.com", "path": "/pl/pl/", "expires": -1, "httpOnly": false, "secure": true, "sameSite": "Lax"}, {"name": "ikexp_id", "value": "8a171c3a-9ccc-455d-8730-98744078722b", "domain": ".ikea.com", "path": "/", "expires": 1787668381.020154, "httpOnly": false, "secure": true, "sameSite": "Lax"}, {"name": "ikea_cookieconsent_pl", "value": "%7B%221%22%3Atrue%2C%22showBanner%22%3Atrue%7D", "domain": ".ikea.com", "path": "/", "expires": 1787676479, "httpOnly": false, "secure": true, "sameSite": "None"}, {"name": "optimizelyOptOut", "value": "true", "domain": ".ikea.com", "path": "/", "expires": 1790700479.641664, "httpOnly": false, "secure": true, "sameSite": "None"}, {"name": "_cfuvid", "value": "VPATTcNWhgX3HH3q32m5tz2ja9UWCJjNJXPdw_mO5vM-1756132381907-0.0.1.1-604800000", "domain": ".web-api.ikea.com", "path": "/", "expires": -1, "httpOnly": true, "secure": true, "sameSite": "None"}, {"name": "_cfuvid", "value": "D4MdDytW4EGz.qB2KSXJfW1ePWTCS5Gc97BJGl292Bk-1756132381929-0.0.1.1-604800000", "domain": ".accounts.ikea.com", "path": "/", "expires": -1, "httpOnly": true, "secure": true, "sameSite": "None"}, {"name": "__cf_bm", "value": "snVaCkv1LeJd96uO57EGAmFA_i.qV1fuVYIZW_3K3gA-1756140451-1.0.1.1-FdaYPd040WOyZhX3rVFdJZm_LCdrOInNTb9YomhbmGI2TRk_6YF2MFhfnTdxC7zXWKLD5OzGPOj0zz3gz1kYkYnQBVy1Q95yohwRTfhVRnM", "domain": ".www.ikea.com", "path": "/", "expires": 1756142251.79135, "httpOnly": true, "secure": true, "sameSite": "None"}, {"name": "__cf_bm", "value": "y49DQSN_iDyMQhqHdbxRYKcVPPd2rvuU2jwaPELRPVM-1756140452-1.0.1.1-qzVQu9mOvx6QVWZ6nhkNAaG.ohvP_7oi3FnRkz.8Dmn6xgGkZs_rGJSPVulBaoSeGrAuNYAxSZZOEqHwEGFXiOcsXcBALLI4m_PLsRmapfQ", "domain": ".web-api.ikea.com", "path": "/", "expires": 1756142252.793439, "httpOnly": true, "secure": true, "sameSite": "None"}, {"name": "__cf_bm", "value": "f4vleGmq0AYWK7.KMUXtiWuEy07Cu1ACHw109uelvhI-1756140453-1.0.1.1-ntAK_EJA3TOUe77kT6WJcmdgWOqr44AOZ0eBGLIgM1tRminXEaHSCzXtSxmtVKNq6Z3xUxCxI_Gp8FNiPstecf.Kg7arcNoytWvV4uh2.Zw", "domain": ".accounts.ikea.com", "path": "/", "expires": 1756142253.621924, "httpOnly": true, "secure": true, "sameSite": "None"}], "origins": [{"origin": "https://www.ikea.com", "localStorage": [{"name": "expt-hasVisited", "value": "true"}, {"name": "--ikea-pip", "value": "{\"ptps\":\"\"}"}, {"name": "--abtest-fragment", "value": "{\"lastVisit\":1756140479023}"}, {"name": "expt-experimentsConfig", "value": "{\"lastVisit\":1756140480460}"}]}]} \ No newline at end of file