commit 3e3369828d3c4f5a37826425f9d79987b03b4152 Author: aidmc44 Date: Fri Jul 31 17:07:55 2026 -0700 init diff --git a/book-download.py b/book-download.py new file mode 100644 index 0000000..a1d1bd5 --- /dev/null +++ b/book-download.py @@ -0,0 +1,261 @@ +import argparse +import random +import re +import subprocess +from pathlib import Path +from playwright.sync_api import sync_playwright + +DOWNLOAD_DIR = Path(__file__).parent / "downloads" +PROFILE_DIR = Path(__file__).parent / "chrome-profile" +SCRIPT_DIR = Path(__file__).parent + +MIN_DELAY = 2.0 +MAX_DELAY = 5.0 + + +def normalize_title(title: str) -> str: + """Normalize a title for comparison by keeping only lowercase alphanumeric.""" + title = re.sub(r"-(epub|pdf)$", "", title, flags=re.IGNORECASE) + return re.sub(r"[^a-z0-9]", "", title.lower()) + + +def title_exists(title: str, existing_books: set[str]) -> bool: + """Check if title matches any existing book (handles truncated filenames).""" + normalized = normalize_title(title) + for existing in existing_books: + # Check if either starts with the other (handles truncation) + if normalized.startswith(existing) or existing.startswith(normalized): + return True + return False + + +def auto_scroll(page): + page.evaluate(""" + async () => { + await new Promise((resolve) => { + let totalHeight = 0; + const distance = 500; + const timer = setInterval(() => { + window.scrollBy(0, distance); + totalHeight += distance; + if (totalHeight >= document.body.scrollHeight) { + clearInterval(timer); + resolve(); + } + }, 300); + setTimeout(() => { + clearInterval(timer); + resolve(); + }, 60000); + }); + } + """) + page.wait_for_timeout(2000) + + +def get_existing_books(): + """Get set of normalized book names already downloaded.""" + if not DOWNLOAD_DIR.exists(): + return set() + return {normalize_title(f.stem) for f in DOWNLOAD_DIR.iterdir() if f.is_file()} + + +def run_knock(acsm_path: Path): + """Run knock on an ACSM file via WSL.""" + print(f" Running knock on {acsm_path.name}...") + try: + # Convert to WSL relative path from script directory + relative_acsm = acsm_path.relative_to(SCRIPT_DIR) + wsl_relative_path = str(relative_acsm).replace("\\", "/") + + result = subprocess.run( + ["wsl", "--", "./knock", wsl_relative_path], + capture_output=True, + text=True, + timeout=120, + cwd=SCRIPT_DIR, + ) + if result.returncode == 0: + print(f" ✓ knock completed successfully") + else: + print(f" ✗ knock failed: {result.stderr}") + except subprocess.TimeoutExpired: + print(" ✗ knock timed out") + except Exception as e: + print(f" ✗ knock error: {e}") + + +def run_knock_all(): + """Run knock on all .acsm files in downloads folder.""" + if not DOWNLOAD_DIR.exists(): + print("Downloads folder doesn't exist") + return + + acsm_files = list(DOWNLOAD_DIR.glob("*.acsm")) + if not acsm_files: + print("No .acsm files found in downloads folder") + return + + print(f"Found {len(acsm_files)} .acsm files") + + for i, acsm_path in enumerate(acsm_files, 1): + print(f"\n[{i}/{len(acsm_files)}] {acsm_path.name}") + run_knock(acsm_path) + + print("\nDone!") + + +def get_book_title(page, menu_button) -> str | None: + """Extract book title from the DOM near the menu button.""" + return page.evaluate(""" + (btn) => { + let parent = btn; + for (let i = 0; i < 10; i++) { + if (!parent.parentElement) break; + parent = parent.parentElement; + + const title = parent.querySelector('[class*="title"]') + || parent.querySelector('h3') + || parent.querySelector('h4') + || parent.querySelector('[role="heading"]'); + if (title && title.textContent.trim()) { + return title.textContent.trim(); + } + } + return null; + } + """, menu_button) + + +def download_books(): + """Main download logic.""" + DOWNLOAD_DIR.mkdir(exist_ok=True) + existing_books = get_existing_books() + print(f"Found {len(existing_books)} existing books in downloads folder") + + with sync_playwright() as p: + browser = p.chromium.launch_persistent_context( + user_data_dir=str(PROFILE_DIR), + channel="chrome", + headless=False, + accept_downloads=True, + viewport={"width": 1280, "height": 800}, + args=["--disable-blink-features=AutomationControlled"], + ignore_default_args=["--enable-automation"], + ) + + page = browser.new_page() + page.goto("https://play.google.com/books") + + input("Press Enter once your library is visible...") + + print("Scrolling to load all books...") + auto_scroll(page) + + more_options = page.query_selector_all('button[aria-label="More Options"]') + total_books = len(more_options) + print(f"Found {total_books} books in library") + + downloaded = 0 + skipped = 0 + + for i in range(total_books): + try: + more_options = page.query_selector_all('button[aria-label="More Options"]') + + if i >= len(more_options): + print(f"\n[{i + 1}/{total_books}] ✗ Could not find menu button") + continue + + menu_button = more_options[i] + book_title = get_book_title(page, menu_button) + + if book_title: + print(f"\n[{i + 1}/{total_books}] {book_title}") + + if title_exists(book_title, existing_books): + print(f" â�­ Skipping (already exists)") + skipped += 1 + continue + else: + print(f"\n[{i + 1}/{total_books}] (Unknown title)") + + menu_button.click() + page.wait_for_timeout(1000) + + export_button = page.get_by_text("Export", exact=True) + if export_button: + export_button.click() + page.wait_for_timeout(1000) + + export_options = [ + ("Export ACSM for EPUB", True), + ("Export as EPUB", False), + ("Export as PDF", False), + ] + + clicked = False + + for option_text, is_acsm in export_options: + option_button = page.get_by_text(option_text, exact=True) + if option_button and option_button.is_visible(): + with page.expect_download(timeout=30000) as download_info: + option_button.click() + + download = download_info.value + filename = download.suggested_filename + save_path = DOWNLOAD_DIR / filename + + download.save_as(save_path) + print(f" ✓ Downloaded: {filename}") + + existing_books.add(normalize_title(Path(filename).stem)) + downloaded += 1 + + if is_acsm: + run_knock(save_path) + + clicked = True + break + + if not clicked: + print(" ✗ No export option available") + page.keyboard.press("Escape") + else: + print(" ✗ No Export option in menu") + page.keyboard.press("Escape") + + except Exception as e: + print(f" ✗ Error: {e}") + page.keyboard.press("Escape") + page.wait_for_timeout(500) + page.keyboard.press("Escape") + + delay = random.uniform(MIN_DELAY, MAX_DELAY) + page.wait_for_timeout(int(delay * 1000)) + + print(f"\n{'=' * 40}") + print(f"Done!") + print(f" Downloaded: {downloaded}") + print(f" Skipped (already existed): {skipped}") + print(f" Files saved to: {DOWNLOAD_DIR}") + browser.close() + + +def main(): + parser = argparse.ArgumentParser(description="Google Play Books downloader") + parser.add_argument( + "--knock", + action="store_true", + help="Run knock on all .acsm files in downloads folder", + ) + args = parser.parse_args() + + if args.knock: + run_knock_all() + else: + download_books() + + +if __name__ == "__main__": + main() \ No newline at end of file diff --git a/chrome-profile/BrowserMetrics-spare.pma b/chrome-profile/BrowserMetrics-spare.pma new file mode 100644 index 0000000..98fc2c0 Binary files /dev/null and b/chrome-profile/BrowserMetrics-spare.pma differ diff --git a/chrome-profile/Crashpad/metadata b/chrome-profile/Crashpad/metadata new file mode 100644 index 0000000..e69de29 diff --git a/chrome-profile/Crashpad/settings.dat b/chrome-profile/Crashpad/settings.dat new file mode 100644 index 0000000..caad4de Binary files /dev/null and b/chrome-profile/Crashpad/settings.dat differ diff --git a/chrome-profile/Default/Account Web Data b/chrome-profile/Default/Account Web Data new file mode 100644 index 0000000..bd7f64f Binary files /dev/null and b/chrome-profile/Default/Account Web Data differ diff --git a/chrome-profile/Default/Account Web Data-journal b/chrome-profile/Default/Account Web Data-journal new file mode 100644 index 0000000..e69de29 diff --git a/chrome-profile/Default/Accounts/Avatar Images/101290994956840422522 b/chrome-profile/Default/Accounts/Avatar Images/101290994956840422522 new file mode 100644 index 0000000..3cce0e2 Binary files /dev/null and b/chrome-profile/Default/Accounts/Avatar Images/101290994956840422522 differ diff --git a/chrome-profile/Default/Affiliation Database b/chrome-profile/Default/Affiliation Database new file mode 100644 index 0000000..a7fecdb Binary files /dev/null and b/chrome-profile/Default/Affiliation Database differ diff --git a/chrome-profile/Default/Affiliation Database-journal b/chrome-profile/Default/Affiliation Database-journal new file mode 100644 index 0000000..e69de29 diff --git a/chrome-profile/Default/AutofillAiModelCache/LOCK b/chrome-profile/Default/AutofillAiModelCache/LOCK new file mode 100644 index 0000000..e69de29 diff --git a/chrome-profile/Default/AutofillAiModelCache/LOG b/chrome-profile/Default/AutofillAiModelCache/LOG new file mode 100644 index 0000000..e69de29 diff --git a/chrome-profile/Default/AutofillAiModelCache/LOG.old b/chrome-profile/Default/AutofillAiModelCache/LOG.old new file mode 100644 index 0000000..e69de29 diff --git a/chrome-profile/Default/AutofillStrikeDatabase/LOCK b/chrome-profile/Default/AutofillStrikeDatabase/LOCK new file mode 100644 index 0000000..e69de29 diff --git a/chrome-profile/Default/AutofillStrikeDatabase/LOG b/chrome-profile/Default/AutofillStrikeDatabase/LOG new file mode 100644 index 0000000..e69de29 diff --git a/chrome-profile/Default/AutofillStrikeDatabase/LOG.old b/chrome-profile/Default/AutofillStrikeDatabase/LOG.old new file mode 100644 index 0000000..e69de29 diff --git a/chrome-profile/Default/BookmarkMergedSurfaceOrdering b/chrome-profile/Default/BookmarkMergedSurfaceOrdering new file mode 100644 index 0000000..2c63c08 --- /dev/null +++ b/chrome-profile/Default/BookmarkMergedSurfaceOrdering @@ -0,0 +1,2 @@ +{ +} diff --git a/chrome-profile/Default/BudgetDatabase/LOCK b/chrome-profile/Default/BudgetDatabase/LOCK new file mode 100644 index 0000000..e69de29 diff --git a/chrome-profile/Default/BudgetDatabase/LOG b/chrome-profile/Default/BudgetDatabase/LOG new file mode 100644 index 0000000..e69de29 diff --git a/chrome-profile/Default/BudgetDatabase/LOG.old b/chrome-profile/Default/BudgetDatabase/LOG.old new file mode 100644 index 0000000..e69de29 diff --git a/chrome-profile/Default/Cache/Cache_Data/data_0 b/chrome-profile/Default/Cache/Cache_Data/data_0 new file mode 100644 index 0000000..ac62344 Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/data_0 differ diff --git a/chrome-profile/Default/Cache/Cache_Data/data_1 b/chrome-profile/Default/Cache/Cache_Data/data_1 new file mode 100644 index 0000000..fdb573a Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/data_1 differ diff --git a/chrome-profile/Default/Cache/Cache_Data/data_2 b/chrome-profile/Default/Cache/Cache_Data/data_2 new file mode 100644 index 0000000..69421fd Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/data_2 differ diff --git a/chrome-profile/Default/Cache/Cache_Data/data_3 b/chrome-profile/Default/Cache/Cache_Data/data_3 new file mode 100644 index 0000000..c4cd91d Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/data_3 differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_000001 b/chrome-profile/Default/Cache/Cache_Data/f_000001 new file mode 100644 index 0000000..210c05b Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_000001 differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_000003 b/chrome-profile/Default/Cache/Cache_Data/f_000003 new file mode 100644 index 0000000..3572d7a Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_000003 differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_000004 b/chrome-profile/Default/Cache/Cache_Data/f_000004 new file mode 100644 index 0000000..c030100 Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_000004 differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_000005 b/chrome-profile/Default/Cache/Cache_Data/f_000005 new file mode 100644 index 0000000..7c16c79 Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_000005 differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_000006 b/chrome-profile/Default/Cache/Cache_Data/f_000006 new file mode 100644 index 0000000..b3dd23f Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_000006 differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_000007 b/chrome-profile/Default/Cache/Cache_Data/f_000007 new file mode 100644 index 0000000..afe6d95 Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_000007 differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_000008 b/chrome-profile/Default/Cache/Cache_Data/f_000008 new file mode 100644 index 0000000..1d8f15e Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_000008 differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_000009 b/chrome-profile/Default/Cache/Cache_Data/f_000009 new file mode 100644 index 0000000..832edc6 Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_000009 differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_00000a b/chrome-profile/Default/Cache/Cache_Data/f_00000a new file mode 100644 index 0000000..54f3720 Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_00000a differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_00000b b/chrome-profile/Default/Cache/Cache_Data/f_00000b new file mode 100644 index 0000000..691f7a3 Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_00000b differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_00000c b/chrome-profile/Default/Cache/Cache_Data/f_00000c new file mode 100644 index 0000000..dfb4b04 Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_00000c differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_00000d b/chrome-profile/Default/Cache/Cache_Data/f_00000d new file mode 100644 index 0000000..8b14225 Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_00000d differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_00000e b/chrome-profile/Default/Cache/Cache_Data/f_00000e new file mode 100644 index 0000000..8d735ad Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_00000e differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_00000f b/chrome-profile/Default/Cache/Cache_Data/f_00000f new file mode 100644 index 0000000..b92162c Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_00000f differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_000010 b/chrome-profile/Default/Cache/Cache_Data/f_000010 new file mode 100644 index 0000000..90f28cf Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_000010 differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_000011 b/chrome-profile/Default/Cache/Cache_Data/f_000011 new file mode 100644 index 0000000..87d3c04 Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_000011 differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_000012 b/chrome-profile/Default/Cache/Cache_Data/f_000012 new file mode 100644 index 0000000..d326752 Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_000012 differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_000013 b/chrome-profile/Default/Cache/Cache_Data/f_000013 new file mode 100644 index 0000000..76431ef Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_000013 differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_000014 b/chrome-profile/Default/Cache/Cache_Data/f_000014 new file mode 100644 index 0000000..78174aa Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_000014 differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_000015 b/chrome-profile/Default/Cache/Cache_Data/f_000015 new file mode 100644 index 0000000..1f95693 Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_000015 differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_000016 b/chrome-profile/Default/Cache/Cache_Data/f_000016 new file mode 100644 index 0000000..cbecd0c Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_000016 differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_000017 b/chrome-profile/Default/Cache/Cache_Data/f_000017 new file mode 100644 index 0000000..93d2d50 Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_000017 differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_000018 b/chrome-profile/Default/Cache/Cache_Data/f_000018 new file mode 100644 index 0000000..002d4e8 Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_000018 differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_00001a b/chrome-profile/Default/Cache/Cache_Data/f_00001a new file mode 100644 index 0000000..f951fe1 Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_00001a differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_00001b b/chrome-profile/Default/Cache/Cache_Data/f_00001b new file mode 100644 index 0000000..b13cefc Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_00001b differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_00001c b/chrome-profile/Default/Cache/Cache_Data/f_00001c new file mode 100644 index 0000000..25a5207 Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_00001c differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_00001d b/chrome-profile/Default/Cache/Cache_Data/f_00001d new file mode 100644 index 0000000..dfa5b41 Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_00001d differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_00001e b/chrome-profile/Default/Cache/Cache_Data/f_00001e new file mode 100644 index 0000000..826a0a7 Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_00001e differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_00001f b/chrome-profile/Default/Cache/Cache_Data/f_00001f new file mode 100644 index 0000000..e427d86 Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_00001f differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_000020 b/chrome-profile/Default/Cache/Cache_Data/f_000020 new file mode 100644 index 0000000..832edc6 Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_000020 differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_000021 b/chrome-profile/Default/Cache/Cache_Data/f_000021 new file mode 100644 index 0000000..c476788 Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_000021 differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_000022 b/chrome-profile/Default/Cache/Cache_Data/f_000022 new file mode 100644 index 0000000..1167584 Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_000022 differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_000023 b/chrome-profile/Default/Cache/Cache_Data/f_000023 new file mode 100644 index 0000000..5aa7220 Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_000023 differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_000024 b/chrome-profile/Default/Cache/Cache_Data/f_000024 new file mode 100644 index 0000000..a07cdf9 Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_000024 differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_000025 b/chrome-profile/Default/Cache/Cache_Data/f_000025 new file mode 100644 index 0000000..67e52f4 Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_000025 differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_000026 b/chrome-profile/Default/Cache/Cache_Data/f_000026 new file mode 100644 index 0000000..25f584a Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_000026 differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_000027 b/chrome-profile/Default/Cache/Cache_Data/f_000027 new file mode 100644 index 0000000..fc6bdd3 Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_000027 differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_000028 b/chrome-profile/Default/Cache/Cache_Data/f_000028 new file mode 100644 index 0000000..8bb1890 Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_000028 differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_00002a b/chrome-profile/Default/Cache/Cache_Data/f_00002a new file mode 100644 index 0000000..7818658 Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_00002a differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_00002b b/chrome-profile/Default/Cache/Cache_Data/f_00002b new file mode 100644 index 0000000..e80e648 Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_00002b differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_00002c b/chrome-profile/Default/Cache/Cache_Data/f_00002c new file mode 100644 index 0000000..71fddc3 Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_00002c differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_00002d b/chrome-profile/Default/Cache/Cache_Data/f_00002d new file mode 100644 index 0000000..afe6d95 Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_00002d differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_00002e b/chrome-profile/Default/Cache/Cache_Data/f_00002e new file mode 100644 index 0000000..b613774 Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_00002e differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_00002f b/chrome-profile/Default/Cache/Cache_Data/f_00002f new file mode 100644 index 0000000..2b47dcb Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_00002f differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_000030 b/chrome-profile/Default/Cache/Cache_Data/f_000030 new file mode 100644 index 0000000..679e663 Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_000030 differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_000031 b/chrome-profile/Default/Cache/Cache_Data/f_000031 new file mode 100644 index 0000000..1d8f15e Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_000031 differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_000032 b/chrome-profile/Default/Cache/Cache_Data/f_000032 new file mode 100644 index 0000000..7c2e5ab Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_000032 differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_000033 b/chrome-profile/Default/Cache/Cache_Data/f_000033 new file mode 100644 index 0000000..429ea60 Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_000033 differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_000034 b/chrome-profile/Default/Cache/Cache_Data/f_000034 new file mode 100644 index 0000000..a84b263 Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_000034 differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_000035 b/chrome-profile/Default/Cache/Cache_Data/f_000035 new file mode 100644 index 0000000..a30a96c Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_000035 differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_000036 b/chrome-profile/Default/Cache/Cache_Data/f_000036 new file mode 100644 index 0000000..929516e Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_000036 differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_000037 b/chrome-profile/Default/Cache/Cache_Data/f_000037 new file mode 100644 index 0000000..99a5993 Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_000037 differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_000038 b/chrome-profile/Default/Cache/Cache_Data/f_000038 new file mode 100644 index 0000000..3640a04 Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_000038 differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_000039 b/chrome-profile/Default/Cache/Cache_Data/f_000039 new file mode 100644 index 0000000..ed14410 Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_000039 differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_00003a b/chrome-profile/Default/Cache/Cache_Data/f_00003a new file mode 100644 index 0000000..95ae315 Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_00003a differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_00003b b/chrome-profile/Default/Cache/Cache_Data/f_00003b new file mode 100644 index 0000000..4e0e020 Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_00003b differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_00003c b/chrome-profile/Default/Cache/Cache_Data/f_00003c new file mode 100644 index 0000000..7d59cfb Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_00003c differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_00003d b/chrome-profile/Default/Cache/Cache_Data/f_00003d new file mode 100644 index 0000000..44ac53d Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_00003d differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_00003e b/chrome-profile/Default/Cache/Cache_Data/f_00003e new file mode 100644 index 0000000..ca0fde1 Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_00003e differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_00003f b/chrome-profile/Default/Cache/Cache_Data/f_00003f new file mode 100644 index 0000000..ed2f275 Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_00003f differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_000040 b/chrome-profile/Default/Cache/Cache_Data/f_000040 new file mode 100644 index 0000000..49dfe60 Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_000040 differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_000041 b/chrome-profile/Default/Cache/Cache_Data/f_000041 new file mode 100644 index 0000000..7833828 Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_000041 differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_000042 b/chrome-profile/Default/Cache/Cache_Data/f_000042 new file mode 100644 index 0000000..add754b Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_000042 differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_000043 b/chrome-profile/Default/Cache/Cache_Data/f_000043 new file mode 100644 index 0000000..0a2282f Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_000043 differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_000044 b/chrome-profile/Default/Cache/Cache_Data/f_000044 new file mode 100644 index 0000000..0e01c7f Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_000044 differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_000045 b/chrome-profile/Default/Cache/Cache_Data/f_000045 new file mode 100644 index 0000000..f77b047 Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_000045 differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_000066 b/chrome-profile/Default/Cache/Cache_Data/f_000066 new file mode 100644 index 0000000..a7a4fb3 Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_000066 differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_000068 b/chrome-profile/Default/Cache/Cache_Data/f_000068 new file mode 100644 index 0000000..2b47dcb Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_000068 differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_000069 b/chrome-profile/Default/Cache/Cache_Data/f_000069 new file mode 100644 index 0000000..d4f5f2c Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_000069 differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_00006a b/chrome-profile/Default/Cache/Cache_Data/f_00006a new file mode 100644 index 0000000..7c2e5ab Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_00006a differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_000072 b/chrome-profile/Default/Cache/Cache_Data/f_000072 new file mode 100644 index 0000000..6da0287 Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_000072 differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_000073 b/chrome-profile/Default/Cache/Cache_Data/f_000073 new file mode 100644 index 0000000..828acee Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_000073 differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_000074 b/chrome-profile/Default/Cache/Cache_Data/f_000074 new file mode 100644 index 0000000..29d24c1 Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_000074 differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_000076 b/chrome-profile/Default/Cache/Cache_Data/f_000076 new file mode 100644 index 0000000..cf38aed Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_000076 differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_000079 b/chrome-profile/Default/Cache/Cache_Data/f_000079 new file mode 100644 index 0000000..262c0ef Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_000079 differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_00007a b/chrome-profile/Default/Cache/Cache_Data/f_00007a new file mode 100644 index 0000000..04fc96f Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_00007a differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_00007b b/chrome-profile/Default/Cache/Cache_Data/f_00007b new file mode 100644 index 0000000..0add9ec Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_00007b differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_00007f b/chrome-profile/Default/Cache/Cache_Data/f_00007f new file mode 100644 index 0000000..8e085a9 Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_00007f differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_000083 b/chrome-profile/Default/Cache/Cache_Data/f_000083 new file mode 100644 index 0000000..9871c12 Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_000083 differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_000084 b/chrome-profile/Default/Cache/Cache_Data/f_000084 new file mode 100644 index 0000000..cf38aed Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_000084 differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_00008b b/chrome-profile/Default/Cache/Cache_Data/f_00008b new file mode 100644 index 0000000..b0df210 Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_00008b differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_0000ad b/chrome-profile/Default/Cache/Cache_Data/f_0000ad new file mode 100644 index 0000000..ba1d479 Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_0000ad differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_0000b1 b/chrome-profile/Default/Cache/Cache_Data/f_0000b1 new file mode 100644 index 0000000..6f03a22 Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_0000b1 differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_0000b2 b/chrome-profile/Default/Cache/Cache_Data/f_0000b2 new file mode 100644 index 0000000..20c9a72 Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_0000b2 differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_0000b3 b/chrome-profile/Default/Cache/Cache_Data/f_0000b3 new file mode 100644 index 0000000..7833828 Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_0000b3 differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_0000b4 b/chrome-profile/Default/Cache/Cache_Data/f_0000b4 new file mode 100644 index 0000000..9009854 Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_0000b4 differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_0000b6 b/chrome-profile/Default/Cache/Cache_Data/f_0000b6 new file mode 100644 index 0000000..3687f22 Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_0000b6 differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_0000b7 b/chrome-profile/Default/Cache/Cache_Data/f_0000b7 new file mode 100644 index 0000000..a52f96d Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_0000b7 differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_0000bc b/chrome-profile/Default/Cache/Cache_Data/f_0000bc new file mode 100644 index 0000000..0375938 Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_0000bc differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_0000dd b/chrome-profile/Default/Cache/Cache_Data/f_0000dd new file mode 100644 index 0000000..b41693c Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_0000dd differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_0000de b/chrome-profile/Default/Cache/Cache_Data/f_0000de new file mode 100644 index 0000000..e21ddb6 Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_0000de differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_0000e0 b/chrome-profile/Default/Cache/Cache_Data/f_0000e0 new file mode 100644 index 0000000..173dd96 Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_0000e0 differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_0000e1 b/chrome-profile/Default/Cache/Cache_Data/f_0000e1 new file mode 100644 index 0000000..a5a14b0 Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_0000e1 differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_0000e2 b/chrome-profile/Default/Cache/Cache_Data/f_0000e2 new file mode 100644 index 0000000..e65be0c Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_0000e2 differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_0000e6 b/chrome-profile/Default/Cache/Cache_Data/f_0000e6 new file mode 100644 index 0000000..0658e42 Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_0000e6 differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_0000e7 b/chrome-profile/Default/Cache/Cache_Data/f_0000e7 new file mode 100644 index 0000000..7833828 Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_0000e7 differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_0000e8 b/chrome-profile/Default/Cache/Cache_Data/f_0000e8 new file mode 100644 index 0000000..9b0f141 Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_0000e8 differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_0000e9 b/chrome-profile/Default/Cache/Cache_Data/f_0000e9 new file mode 100644 index 0000000..7ca6c41 Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_0000e9 differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_0000eb b/chrome-profile/Default/Cache/Cache_Data/f_0000eb new file mode 100644 index 0000000..6b95e90 Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_0000eb differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_0000ec b/chrome-profile/Default/Cache/Cache_Data/f_0000ec new file mode 100644 index 0000000..057ad58 Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_0000ec differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_0000ed b/chrome-profile/Default/Cache/Cache_Data/f_0000ed new file mode 100644 index 0000000..e69a883 Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_0000ed differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_0000ee b/chrome-profile/Default/Cache/Cache_Data/f_0000ee new file mode 100644 index 0000000..9287b88 Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_0000ee differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_000118 b/chrome-profile/Default/Cache/Cache_Data/f_000118 new file mode 100644 index 0000000..85d40bc Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_000118 differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_00011b b/chrome-profile/Default/Cache/Cache_Data/f_00011b new file mode 100644 index 0000000..4df3351 Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_00011b differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_00011c b/chrome-profile/Default/Cache/Cache_Data/f_00011c new file mode 100644 index 0000000..91eec1d Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_00011c differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_00011d b/chrome-profile/Default/Cache/Cache_Data/f_00011d new file mode 100644 index 0000000..badaf10 Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_00011d differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_00011e b/chrome-profile/Default/Cache/Cache_Data/f_00011e new file mode 100644 index 0000000..fcdc2f2 Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_00011e differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_00011f b/chrome-profile/Default/Cache/Cache_Data/f_00011f new file mode 100644 index 0000000..ab01fc4 Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_00011f differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_000120 b/chrome-profile/Default/Cache/Cache_Data/f_000120 new file mode 100644 index 0000000..2d0a822 Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_000120 differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_000122 b/chrome-profile/Default/Cache/Cache_Data/f_000122 new file mode 100644 index 0000000..767461d Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_000122 differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_000123 b/chrome-profile/Default/Cache/Cache_Data/f_000123 new file mode 100644 index 0000000..2e3a355 Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_000123 differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_000124 b/chrome-profile/Default/Cache/Cache_Data/f_000124 new file mode 100644 index 0000000..3797b22 Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_000124 differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_000151 b/chrome-profile/Default/Cache/Cache_Data/f_000151 new file mode 100644 index 0000000..77b4a07 Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_000151 differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_000153 b/chrome-profile/Default/Cache/Cache_Data/f_000153 new file mode 100644 index 0000000..17e8137 Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_000153 differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_000154 b/chrome-profile/Default/Cache/Cache_Data/f_000154 new file mode 100644 index 0000000..defdb8a Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_000154 differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_000155 b/chrome-profile/Default/Cache/Cache_Data/f_000155 new file mode 100644 index 0000000..fcdc2f2 Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_000155 differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_000156 b/chrome-profile/Default/Cache/Cache_Data/f_000156 new file mode 100644 index 0000000..a1c3f94 Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_000156 differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_000157 b/chrome-profile/Default/Cache/Cache_Data/f_000157 new file mode 100644 index 0000000..cfc1d1b Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_000157 differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_000158 b/chrome-profile/Default/Cache/Cache_Data/f_000158 new file mode 100644 index 0000000..8aaca51 Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_000158 differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_000159 b/chrome-profile/Default/Cache/Cache_Data/f_000159 new file mode 100644 index 0000000..45c49cd Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_000159 differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_000185 b/chrome-profile/Default/Cache/Cache_Data/f_000185 new file mode 100644 index 0000000..a175fc1 Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_000185 differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_000189 b/chrome-profile/Default/Cache/Cache_Data/f_000189 new file mode 100644 index 0000000..a66c2fe Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_000189 differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_00018a b/chrome-profile/Default/Cache/Cache_Data/f_00018a new file mode 100644 index 0000000..899c9e5 Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_00018a differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_00018b b/chrome-profile/Default/Cache/Cache_Data/f_00018b new file mode 100644 index 0000000..f9f0420 Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_00018b differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_00018c b/chrome-profile/Default/Cache/Cache_Data/f_00018c new file mode 100644 index 0000000..72c3c98 Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_00018c differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_00018d b/chrome-profile/Default/Cache/Cache_Data/f_00018d new file mode 100644 index 0000000..9e7c6cd Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_00018d differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_00018f b/chrome-profile/Default/Cache/Cache_Data/f_00018f new file mode 100644 index 0000000..b72c79c Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_00018f differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_000190 b/chrome-profile/Default/Cache/Cache_Data/f_000190 new file mode 100644 index 0000000..9a53eac Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_000190 differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_000191 b/chrome-profile/Default/Cache/Cache_Data/f_000191 new file mode 100644 index 0000000..07a4f98 Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_000191 differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_000192 b/chrome-profile/Default/Cache/Cache_Data/f_000192 new file mode 100644 index 0000000..b05e228 Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_000192 differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_000193 b/chrome-profile/Default/Cache/Cache_Data/f_000193 new file mode 100644 index 0000000..11e4e1b Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_000193 differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_0001c2 b/chrome-profile/Default/Cache/Cache_Data/f_0001c2 new file mode 100644 index 0000000..c707f30 Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_0001c2 differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_0001c4 b/chrome-profile/Default/Cache/Cache_Data/f_0001c4 new file mode 100644 index 0000000..d0734fd Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_0001c4 differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_0001c5 b/chrome-profile/Default/Cache/Cache_Data/f_0001c5 new file mode 100644 index 0000000..7c16c79 Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_0001c5 differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_0001c6 b/chrome-profile/Default/Cache/Cache_Data/f_0001c6 new file mode 100644 index 0000000..6f5e04b Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_0001c6 differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_0001c7 b/chrome-profile/Default/Cache/Cache_Data/f_0001c7 new file mode 100644 index 0000000..8ba5a02 Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_0001c7 differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_0001c8 b/chrome-profile/Default/Cache/Cache_Data/f_0001c8 new file mode 100644 index 0000000..e8f23fc Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_0001c8 differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_0001c9 b/chrome-profile/Default/Cache/Cache_Data/f_0001c9 new file mode 100644 index 0000000..8cd065f Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_0001c9 differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_0001ca b/chrome-profile/Default/Cache/Cache_Data/f_0001ca new file mode 100644 index 0000000..9cb21e3 Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_0001ca differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_0001cb b/chrome-profile/Default/Cache/Cache_Data/f_0001cb new file mode 100644 index 0000000..68fcc95 Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_0001cb differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_0001cc b/chrome-profile/Default/Cache/Cache_Data/f_0001cc new file mode 100644 index 0000000..9198b03 Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_0001cc differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_0001cd b/chrome-profile/Default/Cache/Cache_Data/f_0001cd new file mode 100644 index 0000000..7e24c5c Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_0001cd differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_0001ce b/chrome-profile/Default/Cache/Cache_Data/f_0001ce new file mode 100644 index 0000000..d8180bf Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_0001ce differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_0001cf b/chrome-profile/Default/Cache/Cache_Data/f_0001cf new file mode 100644 index 0000000..86574a5 Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_0001cf differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_0001d0 b/chrome-profile/Default/Cache/Cache_Data/f_0001d0 new file mode 100644 index 0000000..800f1ef Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_0001d0 differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_0001d1 b/chrome-profile/Default/Cache/Cache_Data/f_0001d1 new file mode 100644 index 0000000..5edc753 Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_0001d1 differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_0001d2 b/chrome-profile/Default/Cache/Cache_Data/f_0001d2 new file mode 100644 index 0000000..55c0b83 Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_0001d2 differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_0001d3 b/chrome-profile/Default/Cache/Cache_Data/f_0001d3 new file mode 100644 index 0000000..1c94a58 Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_0001d3 differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_0001d4 b/chrome-profile/Default/Cache/Cache_Data/f_0001d4 new file mode 100644 index 0000000..a6c08f9 Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_0001d4 differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_0001d5 b/chrome-profile/Default/Cache/Cache_Data/f_0001d5 new file mode 100644 index 0000000..3c32010 Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_0001d5 differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_0001d6 b/chrome-profile/Default/Cache/Cache_Data/f_0001d6 new file mode 100644 index 0000000..f5b03ef Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_0001d6 differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_0001d7 b/chrome-profile/Default/Cache/Cache_Data/f_0001d7 new file mode 100644 index 0000000..62aad81 Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_0001d7 differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_0001d8 b/chrome-profile/Default/Cache/Cache_Data/f_0001d8 new file mode 100644 index 0000000..9efb512 Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_0001d8 differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_0001d9 b/chrome-profile/Default/Cache/Cache_Data/f_0001d9 new file mode 100644 index 0000000..fcdcb25 Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_0001d9 differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_0001da b/chrome-profile/Default/Cache/Cache_Data/f_0001da new file mode 100644 index 0000000..99fd8a4 Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_0001da differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_0001db b/chrome-profile/Default/Cache/Cache_Data/f_0001db new file mode 100644 index 0000000..461b85e Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_0001db differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_0001dc b/chrome-profile/Default/Cache/Cache_Data/f_0001dc new file mode 100644 index 0000000..f65ba29 Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_0001dc differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_0001dd b/chrome-profile/Default/Cache/Cache_Data/f_0001dd new file mode 100644 index 0000000..daced04 Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_0001dd differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_0001de b/chrome-profile/Default/Cache/Cache_Data/f_0001de new file mode 100644 index 0000000..444fb41 Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_0001de differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_0001df b/chrome-profile/Default/Cache/Cache_Data/f_0001df new file mode 100644 index 0000000..9f08046 Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_0001df differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_0001e0 b/chrome-profile/Default/Cache/Cache_Data/f_0001e0 new file mode 100644 index 0000000..2449ee4 Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_0001e0 differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_0001e1 b/chrome-profile/Default/Cache/Cache_Data/f_0001e1 new file mode 100644 index 0000000..e82b355 Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_0001e1 differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_0001e2 b/chrome-profile/Default/Cache/Cache_Data/f_0001e2 new file mode 100644 index 0000000..ef9d4c6 Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_0001e2 differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_0001e3 b/chrome-profile/Default/Cache/Cache_Data/f_0001e3 new file mode 100644 index 0000000..4cfb262 Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_0001e3 differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_0001e4 b/chrome-profile/Default/Cache/Cache_Data/f_0001e4 new file mode 100644 index 0000000..936e860 Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_0001e4 differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_0001e5 b/chrome-profile/Default/Cache/Cache_Data/f_0001e5 new file mode 100644 index 0000000..81654bf Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_0001e5 differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_0001e6 b/chrome-profile/Default/Cache/Cache_Data/f_0001e6 new file mode 100644 index 0000000..77686fa Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_0001e6 differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_0001e7 b/chrome-profile/Default/Cache/Cache_Data/f_0001e7 new file mode 100644 index 0000000..9dcfe50 Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_0001e7 differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_0001e8 b/chrome-profile/Default/Cache/Cache_Data/f_0001e8 new file mode 100644 index 0000000..ff8d440 Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_0001e8 differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_0001e9 b/chrome-profile/Default/Cache/Cache_Data/f_0001e9 new file mode 100644 index 0000000..733bf29 Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_0001e9 differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_0001ea b/chrome-profile/Default/Cache/Cache_Data/f_0001ea new file mode 100644 index 0000000..d16567d Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_0001ea differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_0001eb b/chrome-profile/Default/Cache/Cache_Data/f_0001eb new file mode 100644 index 0000000..4352c47 Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_0001eb differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_0001ec b/chrome-profile/Default/Cache/Cache_Data/f_0001ec new file mode 100644 index 0000000..e62f1f3 Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_0001ec differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_0001ed b/chrome-profile/Default/Cache/Cache_Data/f_0001ed new file mode 100644 index 0000000..03f08b3 Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_0001ed differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_0001ee b/chrome-profile/Default/Cache/Cache_Data/f_0001ee new file mode 100644 index 0000000..5c684bf Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_0001ee differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_0001ef b/chrome-profile/Default/Cache/Cache_Data/f_0001ef new file mode 100644 index 0000000..07d5c6e Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_0001ef differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_0001f0 b/chrome-profile/Default/Cache/Cache_Data/f_0001f0 new file mode 100644 index 0000000..130dd9e Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_0001f0 differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_0001f1 b/chrome-profile/Default/Cache/Cache_Data/f_0001f1 new file mode 100644 index 0000000..3e0f67e Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_0001f1 differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_0001f2 b/chrome-profile/Default/Cache/Cache_Data/f_0001f2 new file mode 100644 index 0000000..c3e3c43 Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_0001f2 differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_0001f3 b/chrome-profile/Default/Cache/Cache_Data/f_0001f3 new file mode 100644 index 0000000..074f8a5 Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_0001f3 differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_0001f4 b/chrome-profile/Default/Cache/Cache_Data/f_0001f4 new file mode 100644 index 0000000..d45278b Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_0001f4 differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_0001f5 b/chrome-profile/Default/Cache/Cache_Data/f_0001f5 new file mode 100644 index 0000000..df2b246 Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_0001f5 differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_0001f6 b/chrome-profile/Default/Cache/Cache_Data/f_0001f6 new file mode 100644 index 0000000..faaa16b Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_0001f6 differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_0001f7 b/chrome-profile/Default/Cache/Cache_Data/f_0001f7 new file mode 100644 index 0000000..6de5599 Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_0001f7 differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_0001f8 b/chrome-profile/Default/Cache/Cache_Data/f_0001f8 new file mode 100644 index 0000000..ca1c20f Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_0001f8 differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_0001f9 b/chrome-profile/Default/Cache/Cache_Data/f_0001f9 new file mode 100644 index 0000000..118f515 Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_0001f9 differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_0001fa b/chrome-profile/Default/Cache/Cache_Data/f_0001fa new file mode 100644 index 0000000..e8c5abb Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_0001fa differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_0001fb b/chrome-profile/Default/Cache/Cache_Data/f_0001fb new file mode 100644 index 0000000..7091a27 Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_0001fb differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_0001fc b/chrome-profile/Default/Cache/Cache_Data/f_0001fc new file mode 100644 index 0000000..beda2f1 Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_0001fc differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_0001fd b/chrome-profile/Default/Cache/Cache_Data/f_0001fd new file mode 100644 index 0000000..e0447eb Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_0001fd differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_0001fe b/chrome-profile/Default/Cache/Cache_Data/f_0001fe new file mode 100644 index 0000000..42f4859 Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_0001fe differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_0001ff b/chrome-profile/Default/Cache/Cache_Data/f_0001ff new file mode 100644 index 0000000..6e2a1a6 Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_0001ff differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_000200 b/chrome-profile/Default/Cache/Cache_Data/f_000200 new file mode 100644 index 0000000..6d6a955 Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_000200 differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_000201 b/chrome-profile/Default/Cache/Cache_Data/f_000201 new file mode 100644 index 0000000..06ae475 Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_000201 differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_000202 b/chrome-profile/Default/Cache/Cache_Data/f_000202 new file mode 100644 index 0000000..64e841c Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_000202 differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_000203 b/chrome-profile/Default/Cache/Cache_Data/f_000203 new file mode 100644 index 0000000..211c39c Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_000203 differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_000204 b/chrome-profile/Default/Cache/Cache_Data/f_000204 new file mode 100644 index 0000000..af70837 Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_000204 differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_000205 b/chrome-profile/Default/Cache/Cache_Data/f_000205 new file mode 100644 index 0000000..72b2077 Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_000205 differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_000206 b/chrome-profile/Default/Cache/Cache_Data/f_000206 new file mode 100644 index 0000000..a9fde43 Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_000206 differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_000207 b/chrome-profile/Default/Cache/Cache_Data/f_000207 new file mode 100644 index 0000000..de2e432 Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_000207 differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_000208 b/chrome-profile/Default/Cache/Cache_Data/f_000208 new file mode 100644 index 0000000..5dfeee5 Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_000208 differ diff --git a/chrome-profile/Default/Cache/Cache_Data/f_000209 b/chrome-profile/Default/Cache/Cache_Data/f_000209 new file mode 100644 index 0000000..74ecef1 Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/f_000209 differ diff --git a/chrome-profile/Default/Cache/Cache_Data/index b/chrome-profile/Default/Cache/Cache_Data/index new file mode 100644 index 0000000..fdff253 Binary files /dev/null and b/chrome-profile/Default/Cache/Cache_Data/index differ diff --git a/chrome-profile/Default/Cache/No_Vary_Search/journal.baj b/chrome-profile/Default/Cache/No_Vary_Search/journal.baj new file mode 100644 index 0000000..54fe66e --- /dev/null +++ b/chrome-profile/Default/Cache/No_Vary_Search/journal.baj @@ -0,0 +1 @@ +$F~ \ No newline at end of file diff --git a/chrome-profile/Default/Cache/No_Vary_Search/snapshot.baf b/chrome-profile/Default/Cache/No_Vary_Search/snapshot.baf new file mode 100644 index 0000000..8912405 Binary files /dev/null and b/chrome-profile/Default/Cache/No_Vary_Search/snapshot.baf differ diff --git a/chrome-profile/Default/ClientCertificates/LOCK b/chrome-profile/Default/ClientCertificates/LOCK new file mode 100644 index 0000000..e69de29 diff --git a/chrome-profile/Default/ClientCertificates/LOG b/chrome-profile/Default/ClientCertificates/LOG new file mode 100644 index 0000000..e69de29 diff --git a/chrome-profile/Default/ClientCertificates/LOG.old b/chrome-profile/Default/ClientCertificates/LOG.old new file mode 100644 index 0000000..e69de29 diff --git a/chrome-profile/Default/Code Cache/js/0086caac92df1e6e_0 b/chrome-profile/Default/Code Cache/js/0086caac92df1e6e_0 new file mode 100644 index 0000000..f845275 Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/0086caac92df1e6e_0 differ diff --git a/chrome-profile/Default/Code Cache/js/0129d010461b751b_0 b/chrome-profile/Default/Code Cache/js/0129d010461b751b_0 new file mode 100644 index 0000000..37062bd Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/0129d010461b751b_0 differ diff --git a/chrome-profile/Default/Code Cache/js/03508eca3f9c355f_0 b/chrome-profile/Default/Code Cache/js/03508eca3f9c355f_0 new file mode 100644 index 0000000..c3e1f89 Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/03508eca3f9c355f_0 differ diff --git a/chrome-profile/Default/Code Cache/js/03c73addaa6db496_0 b/chrome-profile/Default/Code Cache/js/03c73addaa6db496_0 new file mode 100644 index 0000000..ff50632 Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/03c73addaa6db496_0 differ diff --git a/chrome-profile/Default/Code Cache/js/04328e6e64721a3b_0 b/chrome-profile/Default/Code Cache/js/04328e6e64721a3b_0 new file mode 100644 index 0000000..f53b806 Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/04328e6e64721a3b_0 differ diff --git a/chrome-profile/Default/Code Cache/js/06b1c1481629d639_0 b/chrome-profile/Default/Code Cache/js/06b1c1481629d639_0 new file mode 100644 index 0000000..1f13ff9 Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/06b1c1481629d639_0 differ diff --git a/chrome-profile/Default/Code Cache/js/0802f12950629361_0 b/chrome-profile/Default/Code Cache/js/0802f12950629361_0 new file mode 100644 index 0000000..1396282 Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/0802f12950629361_0 differ diff --git a/chrome-profile/Default/Code Cache/js/08e3be8840843c23_0 b/chrome-profile/Default/Code Cache/js/08e3be8840843c23_0 new file mode 100644 index 0000000..85efb79 Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/08e3be8840843c23_0 differ diff --git a/chrome-profile/Default/Code Cache/js/09397df900d8fcec_0 b/chrome-profile/Default/Code Cache/js/09397df900d8fcec_0 new file mode 100644 index 0000000..3582558 Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/09397df900d8fcec_0 differ diff --git a/chrome-profile/Default/Code Cache/js/09c2afbb60b69346_0 b/chrome-profile/Default/Code Cache/js/09c2afbb60b69346_0 new file mode 100644 index 0000000..166a393 Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/09c2afbb60b69346_0 differ diff --git a/chrome-profile/Default/Code Cache/js/0b7e5e34508acb89_0 b/chrome-profile/Default/Code Cache/js/0b7e5e34508acb89_0 new file mode 100644 index 0000000..3beefe7 Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/0b7e5e34508acb89_0 differ diff --git a/chrome-profile/Default/Code Cache/js/0c4531bd90a7d783_0 b/chrome-profile/Default/Code Cache/js/0c4531bd90a7d783_0 new file mode 100644 index 0000000..b085374 Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/0c4531bd90a7d783_0 differ diff --git a/chrome-profile/Default/Code Cache/js/0c811c39fef4949b_0 b/chrome-profile/Default/Code Cache/js/0c811c39fef4949b_0 new file mode 100644 index 0000000..50b53d5 Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/0c811c39fef4949b_0 differ diff --git a/chrome-profile/Default/Code Cache/js/0d2c0c0ab8aebfd9_0 b/chrome-profile/Default/Code Cache/js/0d2c0c0ab8aebfd9_0 new file mode 100644 index 0000000..cebe47c Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/0d2c0c0ab8aebfd9_0 differ diff --git a/chrome-profile/Default/Code Cache/js/0d31690ed0498e59_0 b/chrome-profile/Default/Code Cache/js/0d31690ed0498e59_0 new file mode 100644 index 0000000..17de0c8 Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/0d31690ed0498e59_0 differ diff --git a/chrome-profile/Default/Code Cache/js/0fa1e25acaa8bf05_0 b/chrome-profile/Default/Code Cache/js/0fa1e25acaa8bf05_0 new file mode 100644 index 0000000..2c45f37 Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/0fa1e25acaa8bf05_0 differ diff --git a/chrome-profile/Default/Code Cache/js/14d2a957df2e8c9a_0 b/chrome-profile/Default/Code Cache/js/14d2a957df2e8c9a_0 new file mode 100644 index 0000000..ee3b588 Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/14d2a957df2e8c9a_0 differ diff --git a/chrome-profile/Default/Code Cache/js/157ac5dc69855318_0 b/chrome-profile/Default/Code Cache/js/157ac5dc69855318_0 new file mode 100644 index 0000000..605d391 Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/157ac5dc69855318_0 differ diff --git a/chrome-profile/Default/Code Cache/js/1859e1ab65ca907a_0 b/chrome-profile/Default/Code Cache/js/1859e1ab65ca907a_0 new file mode 100644 index 0000000..b7c1c35 Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/1859e1ab65ca907a_0 differ diff --git a/chrome-profile/Default/Code Cache/js/18642ebaeb3ada5f_0 b/chrome-profile/Default/Code Cache/js/18642ebaeb3ada5f_0 new file mode 100644 index 0000000..8efb92a Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/18642ebaeb3ada5f_0 differ diff --git a/chrome-profile/Default/Code Cache/js/18980e57fe155630_0 b/chrome-profile/Default/Code Cache/js/18980e57fe155630_0 new file mode 100644 index 0000000..416d7c2 Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/18980e57fe155630_0 differ diff --git a/chrome-profile/Default/Code Cache/js/1a1f665b591f6744_0 b/chrome-profile/Default/Code Cache/js/1a1f665b591f6744_0 new file mode 100644 index 0000000..5e670c9 Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/1a1f665b591f6744_0 differ diff --git a/chrome-profile/Default/Code Cache/js/1b5d0a7a7169feb3_0 b/chrome-profile/Default/Code Cache/js/1b5d0a7a7169feb3_0 new file mode 100644 index 0000000..e95fff1 Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/1b5d0a7a7169feb3_0 differ diff --git a/chrome-profile/Default/Code Cache/js/1da47062b7d0a448_0 b/chrome-profile/Default/Code Cache/js/1da47062b7d0a448_0 new file mode 100644 index 0000000..7bc3fec Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/1da47062b7d0a448_0 differ diff --git a/chrome-profile/Default/Code Cache/js/1e83fe93ca70e0ea_0 b/chrome-profile/Default/Code Cache/js/1e83fe93ca70e0ea_0 new file mode 100644 index 0000000..33fbc63 Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/1e83fe93ca70e0ea_0 differ diff --git a/chrome-profile/Default/Code Cache/js/20d88a25cfba219d_0 b/chrome-profile/Default/Code Cache/js/20d88a25cfba219d_0 new file mode 100644 index 0000000..65112e4 Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/20d88a25cfba219d_0 differ diff --git a/chrome-profile/Default/Code Cache/js/240231de63460adb_0 b/chrome-profile/Default/Code Cache/js/240231de63460adb_0 new file mode 100644 index 0000000..9cf6c7b Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/240231de63460adb_0 differ diff --git a/chrome-profile/Default/Code Cache/js/25062582aef4eae1_0 b/chrome-profile/Default/Code Cache/js/25062582aef4eae1_0 new file mode 100644 index 0000000..b613eb1 Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/25062582aef4eae1_0 differ diff --git a/chrome-profile/Default/Code Cache/js/25661e3a4f4faf30_0 b/chrome-profile/Default/Code Cache/js/25661e3a4f4faf30_0 new file mode 100644 index 0000000..e36c288 Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/25661e3a4f4faf30_0 differ diff --git a/chrome-profile/Default/Code Cache/js/25f846253926b960_0 b/chrome-profile/Default/Code Cache/js/25f846253926b960_0 new file mode 100644 index 0000000..3620514 Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/25f846253926b960_0 differ diff --git a/chrome-profile/Default/Code Cache/js/263eaffbc3400974_0 b/chrome-profile/Default/Code Cache/js/263eaffbc3400974_0 new file mode 100644 index 0000000..a10d36e Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/263eaffbc3400974_0 differ diff --git a/chrome-profile/Default/Code Cache/js/26bd771dc0bec470_0 b/chrome-profile/Default/Code Cache/js/26bd771dc0bec470_0 new file mode 100644 index 0000000..e807fd7 Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/26bd771dc0bec470_0 differ diff --git a/chrome-profile/Default/Code Cache/js/26dae09efa39f9a6_0 b/chrome-profile/Default/Code Cache/js/26dae09efa39f9a6_0 new file mode 100644 index 0000000..b191acc Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/26dae09efa39f9a6_0 differ diff --git a/chrome-profile/Default/Code Cache/js/27724ab413b186a7_0 b/chrome-profile/Default/Code Cache/js/27724ab413b186a7_0 new file mode 100644 index 0000000..80bc3a5 Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/27724ab413b186a7_0 differ diff --git a/chrome-profile/Default/Code Cache/js/2823e8ce9ce5d0f4_0 b/chrome-profile/Default/Code Cache/js/2823e8ce9ce5d0f4_0 new file mode 100644 index 0000000..7392840 Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/2823e8ce9ce5d0f4_0 differ diff --git a/chrome-profile/Default/Code Cache/js/2a4ff2bcaf2b01c8_0 b/chrome-profile/Default/Code Cache/js/2a4ff2bcaf2b01c8_0 new file mode 100644 index 0000000..8442463 Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/2a4ff2bcaf2b01c8_0 differ diff --git a/chrome-profile/Default/Code Cache/js/2b40b204b060ad39_0 b/chrome-profile/Default/Code Cache/js/2b40b204b060ad39_0 new file mode 100644 index 0000000..86b6977 Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/2b40b204b060ad39_0 differ diff --git a/chrome-profile/Default/Code Cache/js/2bcc1b47ef07d68a_0 b/chrome-profile/Default/Code Cache/js/2bcc1b47ef07d68a_0 new file mode 100644 index 0000000..fbfd41d Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/2bcc1b47ef07d68a_0 differ diff --git a/chrome-profile/Default/Code Cache/js/2d73e72834b81dd4_0 b/chrome-profile/Default/Code Cache/js/2d73e72834b81dd4_0 new file mode 100644 index 0000000..13694fe Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/2d73e72834b81dd4_0 differ diff --git a/chrome-profile/Default/Code Cache/js/2d88c99bdedf678d_0 b/chrome-profile/Default/Code Cache/js/2d88c99bdedf678d_0 new file mode 100644 index 0000000..e44acd4 Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/2d88c99bdedf678d_0 differ diff --git a/chrome-profile/Default/Code Cache/js/2de17186cb0f87cb_0 b/chrome-profile/Default/Code Cache/js/2de17186cb0f87cb_0 new file mode 100644 index 0000000..7a525cd Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/2de17186cb0f87cb_0 differ diff --git a/chrome-profile/Default/Code Cache/js/2f6236c9a829d78b_0 b/chrome-profile/Default/Code Cache/js/2f6236c9a829d78b_0 new file mode 100644 index 0000000..daad330 Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/2f6236c9a829d78b_0 differ diff --git a/chrome-profile/Default/Code Cache/js/2f871c63a02a59a3_0 b/chrome-profile/Default/Code Cache/js/2f871c63a02a59a3_0 new file mode 100644 index 0000000..c47a521 Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/2f871c63a02a59a3_0 differ diff --git a/chrome-profile/Default/Code Cache/js/2f8a5c01199e0aaf_0 b/chrome-profile/Default/Code Cache/js/2f8a5c01199e0aaf_0 new file mode 100644 index 0000000..438bc29 Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/2f8a5c01199e0aaf_0 differ diff --git a/chrome-profile/Default/Code Cache/js/303641c68996cf15_0 b/chrome-profile/Default/Code Cache/js/303641c68996cf15_0 new file mode 100644 index 0000000..77c8f85 Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/303641c68996cf15_0 differ diff --git a/chrome-profile/Default/Code Cache/js/30ea62e77e09b217_0 b/chrome-profile/Default/Code Cache/js/30ea62e77e09b217_0 new file mode 100644 index 0000000..3e79ca8 Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/30ea62e77e09b217_0 differ diff --git a/chrome-profile/Default/Code Cache/js/312f09976d67ec1c_0 b/chrome-profile/Default/Code Cache/js/312f09976d67ec1c_0 new file mode 100644 index 0000000..675b2c6 Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/312f09976d67ec1c_0 differ diff --git a/chrome-profile/Default/Code Cache/js/31cb870594419463_0 b/chrome-profile/Default/Code Cache/js/31cb870594419463_0 new file mode 100644 index 0000000..62cb14e Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/31cb870594419463_0 differ diff --git a/chrome-profile/Default/Code Cache/js/325a250d6f1c536d_0 b/chrome-profile/Default/Code Cache/js/325a250d6f1c536d_0 new file mode 100644 index 0000000..bc04146 Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/325a250d6f1c536d_0 differ diff --git a/chrome-profile/Default/Code Cache/js/32b958353747baf0_0 b/chrome-profile/Default/Code Cache/js/32b958353747baf0_0 new file mode 100644 index 0000000..2d2ce30 Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/32b958353747baf0_0 differ diff --git a/chrome-profile/Default/Code Cache/js/330a2b133c622b6f_0 b/chrome-profile/Default/Code Cache/js/330a2b133c622b6f_0 new file mode 100644 index 0000000..4469e5f Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/330a2b133c622b6f_0 differ diff --git a/chrome-profile/Default/Code Cache/js/335ba12fe2cffbf3_0 b/chrome-profile/Default/Code Cache/js/335ba12fe2cffbf3_0 new file mode 100644 index 0000000..8082ea1 Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/335ba12fe2cffbf3_0 differ diff --git a/chrome-profile/Default/Code Cache/js/343065b098e54ed4_0 b/chrome-profile/Default/Code Cache/js/343065b098e54ed4_0 new file mode 100644 index 0000000..3592855 Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/343065b098e54ed4_0 differ diff --git a/chrome-profile/Default/Code Cache/js/36a9d7ce427686cc_0 b/chrome-profile/Default/Code Cache/js/36a9d7ce427686cc_0 new file mode 100644 index 0000000..7a85cd9 Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/36a9d7ce427686cc_0 differ diff --git a/chrome-profile/Default/Code Cache/js/36dc5dd075ce602b_0 b/chrome-profile/Default/Code Cache/js/36dc5dd075ce602b_0 new file mode 100644 index 0000000..934486e Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/36dc5dd075ce602b_0 differ diff --git a/chrome-profile/Default/Code Cache/js/373a9e862b038fa8_0 b/chrome-profile/Default/Code Cache/js/373a9e862b038fa8_0 new file mode 100644 index 0000000..d4ad07b Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/373a9e862b038fa8_0 differ diff --git a/chrome-profile/Default/Code Cache/js/38dccf8b1300b883_0 b/chrome-profile/Default/Code Cache/js/38dccf8b1300b883_0 new file mode 100644 index 0000000..fb8a7e3 Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/38dccf8b1300b883_0 differ diff --git a/chrome-profile/Default/Code Cache/js/3971e06279b133a1_0 b/chrome-profile/Default/Code Cache/js/3971e06279b133a1_0 new file mode 100644 index 0000000..b4b9a5c Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/3971e06279b133a1_0 differ diff --git a/chrome-profile/Default/Code Cache/js/3a998129b30f1e4a_0 b/chrome-profile/Default/Code Cache/js/3a998129b30f1e4a_0 new file mode 100644 index 0000000..0fa0aac Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/3a998129b30f1e4a_0 differ diff --git a/chrome-profile/Default/Code Cache/js/3d62953e9cf1b041_0 b/chrome-profile/Default/Code Cache/js/3d62953e9cf1b041_0 new file mode 100644 index 0000000..e7133cd Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/3d62953e9cf1b041_0 differ diff --git a/chrome-profile/Default/Code Cache/js/405599ce802db2c4_0 b/chrome-profile/Default/Code Cache/js/405599ce802db2c4_0 new file mode 100644 index 0000000..117a55a Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/405599ce802db2c4_0 differ diff --git a/chrome-profile/Default/Code Cache/js/41802a7d41143928_0 b/chrome-profile/Default/Code Cache/js/41802a7d41143928_0 new file mode 100644 index 0000000..21ff6c5 Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/41802a7d41143928_0 differ diff --git a/chrome-profile/Default/Code Cache/js/4282bea93026f389_0 b/chrome-profile/Default/Code Cache/js/4282bea93026f389_0 new file mode 100644 index 0000000..f931f05 Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/4282bea93026f389_0 differ diff --git a/chrome-profile/Default/Code Cache/js/42c241326cbb56ab_0 b/chrome-profile/Default/Code Cache/js/42c241326cbb56ab_0 new file mode 100644 index 0000000..5c68b24 Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/42c241326cbb56ab_0 differ diff --git a/chrome-profile/Default/Code Cache/js/437fc630d525f2f3_0 b/chrome-profile/Default/Code Cache/js/437fc630d525f2f3_0 new file mode 100644 index 0000000..2b2f594 Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/437fc630d525f2f3_0 differ diff --git a/chrome-profile/Default/Code Cache/js/44b07370fb01ed48_0 b/chrome-profile/Default/Code Cache/js/44b07370fb01ed48_0 new file mode 100644 index 0000000..71ec722 Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/44b07370fb01ed48_0 differ diff --git a/chrome-profile/Default/Code Cache/js/44b609f52e5d87cd_0 b/chrome-profile/Default/Code Cache/js/44b609f52e5d87cd_0 new file mode 100644 index 0000000..d48ca8d Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/44b609f52e5d87cd_0 differ diff --git a/chrome-profile/Default/Code Cache/js/44f68ac70427b6df_0 b/chrome-profile/Default/Code Cache/js/44f68ac70427b6df_0 new file mode 100644 index 0000000..f96172e Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/44f68ac70427b6df_0 differ diff --git a/chrome-profile/Default/Code Cache/js/457beb242f04ee48_0 b/chrome-profile/Default/Code Cache/js/457beb242f04ee48_0 new file mode 100644 index 0000000..1b74b70 Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/457beb242f04ee48_0 differ diff --git a/chrome-profile/Default/Code Cache/js/464049d9273244b0_0 b/chrome-profile/Default/Code Cache/js/464049d9273244b0_0 new file mode 100644 index 0000000..3c7b54f Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/464049d9273244b0_0 differ diff --git a/chrome-profile/Default/Code Cache/js/4690dfd6f4501ecd_0 b/chrome-profile/Default/Code Cache/js/4690dfd6f4501ecd_0 new file mode 100644 index 0000000..b127b3d Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/4690dfd6f4501ecd_0 differ diff --git a/chrome-profile/Default/Code Cache/js/4743fa4c852c04fb_0 b/chrome-profile/Default/Code Cache/js/4743fa4c852c04fb_0 new file mode 100644 index 0000000..956d0d1 Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/4743fa4c852c04fb_0 differ diff --git a/chrome-profile/Default/Code Cache/js/4910fbd2c0d81968_0 b/chrome-profile/Default/Code Cache/js/4910fbd2c0d81968_0 new file mode 100644 index 0000000..f9cca74 Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/4910fbd2c0d81968_0 differ diff --git a/chrome-profile/Default/Code Cache/js/4b135039a538d897_0 b/chrome-profile/Default/Code Cache/js/4b135039a538d897_0 new file mode 100644 index 0000000..ba33294 Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/4b135039a538d897_0 differ diff --git a/chrome-profile/Default/Code Cache/js/4b8ee8b1848751b9_0 b/chrome-profile/Default/Code Cache/js/4b8ee8b1848751b9_0 new file mode 100644 index 0000000..9f201f6 Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/4b8ee8b1848751b9_0 differ diff --git a/chrome-profile/Default/Code Cache/js/4d3e66109733f166_0 b/chrome-profile/Default/Code Cache/js/4d3e66109733f166_0 new file mode 100644 index 0000000..1015534 Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/4d3e66109733f166_0 differ diff --git a/chrome-profile/Default/Code Cache/js/4df04555562dfd4f_0 b/chrome-profile/Default/Code Cache/js/4df04555562dfd4f_0 new file mode 100644 index 0000000..da796f6 Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/4df04555562dfd4f_0 differ diff --git a/chrome-profile/Default/Code Cache/js/5086c7bf52f61130_0 b/chrome-profile/Default/Code Cache/js/5086c7bf52f61130_0 new file mode 100644 index 0000000..1ad0a74 Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/5086c7bf52f61130_0 differ diff --git a/chrome-profile/Default/Code Cache/js/519bce66cf71e191_0 b/chrome-profile/Default/Code Cache/js/519bce66cf71e191_0 new file mode 100644 index 0000000..5361f4d Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/519bce66cf71e191_0 differ diff --git a/chrome-profile/Default/Code Cache/js/524c038696cce455_0 b/chrome-profile/Default/Code Cache/js/524c038696cce455_0 new file mode 100644 index 0000000..a9133af Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/524c038696cce455_0 differ diff --git a/chrome-profile/Default/Code Cache/js/540be4646b29d78e_0 b/chrome-profile/Default/Code Cache/js/540be4646b29d78e_0 new file mode 100644 index 0000000..7b735a7 Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/540be4646b29d78e_0 differ diff --git a/chrome-profile/Default/Code Cache/js/55ef69fa467b8a0a_0 b/chrome-profile/Default/Code Cache/js/55ef69fa467b8a0a_0 new file mode 100644 index 0000000..66a6e34 Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/55ef69fa467b8a0a_0 differ diff --git a/chrome-profile/Default/Code Cache/js/5677f8e6e0c29aae_0 b/chrome-profile/Default/Code Cache/js/5677f8e6e0c29aae_0 new file mode 100644 index 0000000..0eaec0a Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/5677f8e6e0c29aae_0 differ diff --git a/chrome-profile/Default/Code Cache/js/573f6caa17ae02f6_0 b/chrome-profile/Default/Code Cache/js/573f6caa17ae02f6_0 new file mode 100644 index 0000000..546dff3 Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/573f6caa17ae02f6_0 differ diff --git a/chrome-profile/Default/Code Cache/js/57d60f9005548127_0 b/chrome-profile/Default/Code Cache/js/57d60f9005548127_0 new file mode 100644 index 0000000..5cf56f2 Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/57d60f9005548127_0 differ diff --git a/chrome-profile/Default/Code Cache/js/598139d3f034a1c2_0 b/chrome-profile/Default/Code Cache/js/598139d3f034a1c2_0 new file mode 100644 index 0000000..37cfbaf Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/598139d3f034a1c2_0 differ diff --git a/chrome-profile/Default/Code Cache/js/5c457266412834d0_0 b/chrome-profile/Default/Code Cache/js/5c457266412834d0_0 new file mode 100644 index 0000000..f4ec4fa Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/5c457266412834d0_0 differ diff --git a/chrome-profile/Default/Code Cache/js/5c57c99fd5e3feb7_0 b/chrome-profile/Default/Code Cache/js/5c57c99fd5e3feb7_0 new file mode 100644 index 0000000..9a2ba60 Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/5c57c99fd5e3feb7_0 differ diff --git a/chrome-profile/Default/Code Cache/js/5c6e260bd0b44190_0 b/chrome-profile/Default/Code Cache/js/5c6e260bd0b44190_0 new file mode 100644 index 0000000..8577ef9 Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/5c6e260bd0b44190_0 differ diff --git a/chrome-profile/Default/Code Cache/js/5eef66fe97a1b74f_0 b/chrome-profile/Default/Code Cache/js/5eef66fe97a1b74f_0 new file mode 100644 index 0000000..1883a04 Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/5eef66fe97a1b74f_0 differ diff --git a/chrome-profile/Default/Code Cache/js/62b9ccf4936f5581_0 b/chrome-profile/Default/Code Cache/js/62b9ccf4936f5581_0 new file mode 100644 index 0000000..662c0cc Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/62b9ccf4936f5581_0 differ diff --git a/chrome-profile/Default/Code Cache/js/64cc0d94eb67390e_0 b/chrome-profile/Default/Code Cache/js/64cc0d94eb67390e_0 new file mode 100644 index 0000000..5f1764c Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/64cc0d94eb67390e_0 differ diff --git a/chrome-profile/Default/Code Cache/js/64dfbdfdd3a9d5ff_0 b/chrome-profile/Default/Code Cache/js/64dfbdfdd3a9d5ff_0 new file mode 100644 index 0000000..074d885 Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/64dfbdfdd3a9d5ff_0 differ diff --git a/chrome-profile/Default/Code Cache/js/65633912c38bed8a_0 b/chrome-profile/Default/Code Cache/js/65633912c38bed8a_0 new file mode 100644 index 0000000..41b14f8 Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/65633912c38bed8a_0 differ diff --git a/chrome-profile/Default/Code Cache/js/656e299b2c55a178_0 b/chrome-profile/Default/Code Cache/js/656e299b2c55a178_0 new file mode 100644 index 0000000..f9933e9 Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/656e299b2c55a178_0 differ diff --git a/chrome-profile/Default/Code Cache/js/65c3e245ef54c91e_0 b/chrome-profile/Default/Code Cache/js/65c3e245ef54c91e_0 new file mode 100644 index 0000000..1d0453c Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/65c3e245ef54c91e_0 differ diff --git a/chrome-profile/Default/Code Cache/js/66bd542aa104b3c0_0 b/chrome-profile/Default/Code Cache/js/66bd542aa104b3c0_0 new file mode 100644 index 0000000..d226774 Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/66bd542aa104b3c0_0 differ diff --git a/chrome-profile/Default/Code Cache/js/674223804a4a01f1_0 b/chrome-profile/Default/Code Cache/js/674223804a4a01f1_0 new file mode 100644 index 0000000..f88d819 Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/674223804a4a01f1_0 differ diff --git a/chrome-profile/Default/Code Cache/js/6a31f00c22cf651a_0 b/chrome-profile/Default/Code Cache/js/6a31f00c22cf651a_0 new file mode 100644 index 0000000..8b8a0b5 Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/6a31f00c22cf651a_0 differ diff --git a/chrome-profile/Default/Code Cache/js/6bf3d062e7effe78_0 b/chrome-profile/Default/Code Cache/js/6bf3d062e7effe78_0 new file mode 100644 index 0000000..4e98011 Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/6bf3d062e7effe78_0 differ diff --git a/chrome-profile/Default/Code Cache/js/6d41d7ccf8056653_0 b/chrome-profile/Default/Code Cache/js/6d41d7ccf8056653_0 new file mode 100644 index 0000000..0da09a4 Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/6d41d7ccf8056653_0 differ diff --git a/chrome-profile/Default/Code Cache/js/6e6cc0fc5ee3154e_0 b/chrome-profile/Default/Code Cache/js/6e6cc0fc5ee3154e_0 new file mode 100644 index 0000000..a6926ce Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/6e6cc0fc5ee3154e_0 differ diff --git a/chrome-profile/Default/Code Cache/js/70c6a8420f7521df_0 b/chrome-profile/Default/Code Cache/js/70c6a8420f7521df_0 new file mode 100644 index 0000000..73a3ef2 Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/70c6a8420f7521df_0 differ diff --git a/chrome-profile/Default/Code Cache/js/7263932eb504dfad_0 b/chrome-profile/Default/Code Cache/js/7263932eb504dfad_0 new file mode 100644 index 0000000..729ec30 Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/7263932eb504dfad_0 differ diff --git a/chrome-profile/Default/Code Cache/js/7295db94c9aab3d1_0 b/chrome-profile/Default/Code Cache/js/7295db94c9aab3d1_0 new file mode 100644 index 0000000..9449acb Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/7295db94c9aab3d1_0 differ diff --git a/chrome-profile/Default/Code Cache/js/736b8dbf662d95f1_0 b/chrome-profile/Default/Code Cache/js/736b8dbf662d95f1_0 new file mode 100644 index 0000000..f39e30a Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/736b8dbf662d95f1_0 differ diff --git a/chrome-profile/Default/Code Cache/js/74f4296271f48eb3_0 b/chrome-profile/Default/Code Cache/js/74f4296271f48eb3_0 new file mode 100644 index 0000000..e320000 Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/74f4296271f48eb3_0 differ diff --git a/chrome-profile/Default/Code Cache/js/783c3c984c3fa267_0 b/chrome-profile/Default/Code Cache/js/783c3c984c3fa267_0 new file mode 100644 index 0000000..3181d45 Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/783c3c984c3fa267_0 differ diff --git a/chrome-profile/Default/Code Cache/js/78b1c2d052484bc6_0 b/chrome-profile/Default/Code Cache/js/78b1c2d052484bc6_0 new file mode 100644 index 0000000..550aa32 Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/78b1c2d052484bc6_0 differ diff --git a/chrome-profile/Default/Code Cache/js/794a39abba49e988_0 b/chrome-profile/Default/Code Cache/js/794a39abba49e988_0 new file mode 100644 index 0000000..e8f7889 Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/794a39abba49e988_0 differ diff --git a/chrome-profile/Default/Code Cache/js/7aafd0e75aadb777_0 b/chrome-profile/Default/Code Cache/js/7aafd0e75aadb777_0 new file mode 100644 index 0000000..bd4b11c Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/7aafd0e75aadb777_0 differ diff --git a/chrome-profile/Default/Code Cache/js/7c3b9be4285380cc_0 b/chrome-profile/Default/Code Cache/js/7c3b9be4285380cc_0 new file mode 100644 index 0000000..28aebbf Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/7c3b9be4285380cc_0 differ diff --git a/chrome-profile/Default/Code Cache/js/7c48f12945b5d3e8_0 b/chrome-profile/Default/Code Cache/js/7c48f12945b5d3e8_0 new file mode 100644 index 0000000..9a126f5 Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/7c48f12945b5d3e8_0 differ diff --git a/chrome-profile/Default/Code Cache/js/7e29041f266bf10f_0 b/chrome-profile/Default/Code Cache/js/7e29041f266bf10f_0 new file mode 100644 index 0000000..edc6f8b Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/7e29041f266bf10f_0 differ diff --git a/chrome-profile/Default/Code Cache/js/80482f20f60b8e6f_0 b/chrome-profile/Default/Code Cache/js/80482f20f60b8e6f_0 new file mode 100644 index 0000000..b074dc4 Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/80482f20f60b8e6f_0 differ diff --git a/chrome-profile/Default/Code Cache/js/804d077dfa18d680_0 b/chrome-profile/Default/Code Cache/js/804d077dfa18d680_0 new file mode 100644 index 0000000..02e9126 Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/804d077dfa18d680_0 differ diff --git a/chrome-profile/Default/Code Cache/js/80a0c7dc6f513ec7_0 b/chrome-profile/Default/Code Cache/js/80a0c7dc6f513ec7_0 new file mode 100644 index 0000000..d7edfb8 Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/80a0c7dc6f513ec7_0 differ diff --git a/chrome-profile/Default/Code Cache/js/80b50b2dd1fe26d0_0 b/chrome-profile/Default/Code Cache/js/80b50b2dd1fe26d0_0 new file mode 100644 index 0000000..bf14254 Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/80b50b2dd1fe26d0_0 differ diff --git a/chrome-profile/Default/Code Cache/js/80c625969b33ff29_0 b/chrome-profile/Default/Code Cache/js/80c625969b33ff29_0 new file mode 100644 index 0000000..c7a62b3 Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/80c625969b33ff29_0 differ diff --git a/chrome-profile/Default/Code Cache/js/81d59fc1dd069d32_0 b/chrome-profile/Default/Code Cache/js/81d59fc1dd069d32_0 new file mode 100644 index 0000000..f12dff8 Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/81d59fc1dd069d32_0 differ diff --git a/chrome-profile/Default/Code Cache/js/820df757ce069f41_0 b/chrome-profile/Default/Code Cache/js/820df757ce069f41_0 new file mode 100644 index 0000000..906cdac Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/820df757ce069f41_0 differ diff --git a/chrome-profile/Default/Code Cache/js/8231ebfe6b01394c_0 b/chrome-profile/Default/Code Cache/js/8231ebfe6b01394c_0 new file mode 100644 index 0000000..dbfdea8 Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/8231ebfe6b01394c_0 differ diff --git a/chrome-profile/Default/Code Cache/js/85648ee1cf9f2a26_0 b/chrome-profile/Default/Code Cache/js/85648ee1cf9f2a26_0 new file mode 100644 index 0000000..3652e96 Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/85648ee1cf9f2a26_0 differ diff --git a/chrome-profile/Default/Code Cache/js/858b6627d803230c_0 b/chrome-profile/Default/Code Cache/js/858b6627d803230c_0 new file mode 100644 index 0000000..c3dd875 Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/858b6627d803230c_0 differ diff --git a/chrome-profile/Default/Code Cache/js/8608e95a98fcfbe9_0 b/chrome-profile/Default/Code Cache/js/8608e95a98fcfbe9_0 new file mode 100644 index 0000000..0cd3310 Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/8608e95a98fcfbe9_0 differ diff --git a/chrome-profile/Default/Code Cache/js/864845da6429fb08_0 b/chrome-profile/Default/Code Cache/js/864845da6429fb08_0 new file mode 100644 index 0000000..b73565d Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/864845da6429fb08_0 differ diff --git a/chrome-profile/Default/Code Cache/js/864c5586c70d9046_0 b/chrome-profile/Default/Code Cache/js/864c5586c70d9046_0 new file mode 100644 index 0000000..11a34de Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/864c5586c70d9046_0 differ diff --git a/chrome-profile/Default/Code Cache/js/88a5dd3968c9b381_0 b/chrome-profile/Default/Code Cache/js/88a5dd3968c9b381_0 new file mode 100644 index 0000000..5b99c4e Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/88a5dd3968c9b381_0 differ diff --git a/chrome-profile/Default/Code Cache/js/8ae4a295f556b97d_0 b/chrome-profile/Default/Code Cache/js/8ae4a295f556b97d_0 new file mode 100644 index 0000000..4fefd5a Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/8ae4a295f556b97d_0 differ diff --git a/chrome-profile/Default/Code Cache/js/8b70fc0383dac593_0 b/chrome-profile/Default/Code Cache/js/8b70fc0383dac593_0 new file mode 100644 index 0000000..9f26f27 Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/8b70fc0383dac593_0 differ diff --git a/chrome-profile/Default/Code Cache/js/8ccb93f9790d7f44_0 b/chrome-profile/Default/Code Cache/js/8ccb93f9790d7f44_0 new file mode 100644 index 0000000..ab10dca Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/8ccb93f9790d7f44_0 differ diff --git a/chrome-profile/Default/Code Cache/js/8d122dbfe150130d_0 b/chrome-profile/Default/Code Cache/js/8d122dbfe150130d_0 new file mode 100644 index 0000000..7b4f58a Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/8d122dbfe150130d_0 differ diff --git a/chrome-profile/Default/Code Cache/js/8e6f7fddf7264c32_0 b/chrome-profile/Default/Code Cache/js/8e6f7fddf7264c32_0 new file mode 100644 index 0000000..bf01a2c Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/8e6f7fddf7264c32_0 differ diff --git a/chrome-profile/Default/Code Cache/js/8e871f5bed806e18_0 b/chrome-profile/Default/Code Cache/js/8e871f5bed806e18_0 new file mode 100644 index 0000000..146ac0c Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/8e871f5bed806e18_0 differ diff --git a/chrome-profile/Default/Code Cache/js/90164d9a53d1a954_0 b/chrome-profile/Default/Code Cache/js/90164d9a53d1a954_0 new file mode 100644 index 0000000..7bf4d9b Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/90164d9a53d1a954_0 differ diff --git a/chrome-profile/Default/Code Cache/js/90341285df37a1d1_0 b/chrome-profile/Default/Code Cache/js/90341285df37a1d1_0 new file mode 100644 index 0000000..072ff23 Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/90341285df37a1d1_0 differ diff --git a/chrome-profile/Default/Code Cache/js/90557113d8f5d078_0 b/chrome-profile/Default/Code Cache/js/90557113d8f5d078_0 new file mode 100644 index 0000000..d3641fb Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/90557113d8f5d078_0 differ diff --git a/chrome-profile/Default/Code Cache/js/908b5c803dff56eb_0 b/chrome-profile/Default/Code Cache/js/908b5c803dff56eb_0 new file mode 100644 index 0000000..3cfe1e4 Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/908b5c803dff56eb_0 differ diff --git a/chrome-profile/Default/Code Cache/js/90bf612229467934_0 b/chrome-profile/Default/Code Cache/js/90bf612229467934_0 new file mode 100644 index 0000000..230ceb3 Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/90bf612229467934_0 differ diff --git a/chrome-profile/Default/Code Cache/js/91723a3adf0ca0c7_0 b/chrome-profile/Default/Code Cache/js/91723a3adf0ca0c7_0 new file mode 100644 index 0000000..c27f5ad Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/91723a3adf0ca0c7_0 differ diff --git a/chrome-profile/Default/Code Cache/js/91a41debe071b18b_0 b/chrome-profile/Default/Code Cache/js/91a41debe071b18b_0 new file mode 100644 index 0000000..775b9e6 Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/91a41debe071b18b_0 differ diff --git a/chrome-profile/Default/Code Cache/js/9342a65258aeb679_0 b/chrome-profile/Default/Code Cache/js/9342a65258aeb679_0 new file mode 100644 index 0000000..c65419f Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/9342a65258aeb679_0 differ diff --git a/chrome-profile/Default/Code Cache/js/955205fb759c891e_0 b/chrome-profile/Default/Code Cache/js/955205fb759c891e_0 new file mode 100644 index 0000000..f8b4b9b Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/955205fb759c891e_0 differ diff --git a/chrome-profile/Default/Code Cache/js/99aba9e53e010b47_0 b/chrome-profile/Default/Code Cache/js/99aba9e53e010b47_0 new file mode 100644 index 0000000..ae977e9 Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/99aba9e53e010b47_0 differ diff --git a/chrome-profile/Default/Code Cache/js/99e583df7f914fc3_0 b/chrome-profile/Default/Code Cache/js/99e583df7f914fc3_0 new file mode 100644 index 0000000..2127ef3 Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/99e583df7f914fc3_0 differ diff --git a/chrome-profile/Default/Code Cache/js/99e9c96990da6b80_0 b/chrome-profile/Default/Code Cache/js/99e9c96990da6b80_0 new file mode 100644 index 0000000..905eafc Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/99e9c96990da6b80_0 differ diff --git a/chrome-profile/Default/Code Cache/js/9a111071aaf778f7_0 b/chrome-profile/Default/Code Cache/js/9a111071aaf778f7_0 new file mode 100644 index 0000000..019bd01 Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/9a111071aaf778f7_0 differ diff --git a/chrome-profile/Default/Code Cache/js/9a31468045c98e50_0 b/chrome-profile/Default/Code Cache/js/9a31468045c98e50_0 new file mode 100644 index 0000000..04d5df0 Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/9a31468045c98e50_0 differ diff --git a/chrome-profile/Default/Code Cache/js/9a37e0ab5b70117c_0 b/chrome-profile/Default/Code Cache/js/9a37e0ab5b70117c_0 new file mode 100644 index 0000000..1760bf2 Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/9a37e0ab5b70117c_0 differ diff --git a/chrome-profile/Default/Code Cache/js/9c04fd1f8315c5c6_0 b/chrome-profile/Default/Code Cache/js/9c04fd1f8315c5c6_0 new file mode 100644 index 0000000..24258fd Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/9c04fd1f8315c5c6_0 differ diff --git a/chrome-profile/Default/Code Cache/js/9c68cecaeb198315_0 b/chrome-profile/Default/Code Cache/js/9c68cecaeb198315_0 new file mode 100644 index 0000000..2570f19 Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/9c68cecaeb198315_0 differ diff --git a/chrome-profile/Default/Code Cache/js/9c8de2d0f13968ea_0 b/chrome-profile/Default/Code Cache/js/9c8de2d0f13968ea_0 new file mode 100644 index 0000000..96d07a4 Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/9c8de2d0f13968ea_0 differ diff --git a/chrome-profile/Default/Code Cache/js/9cd6b5ec6e7dc5e7_0 b/chrome-profile/Default/Code Cache/js/9cd6b5ec6e7dc5e7_0 new file mode 100644 index 0000000..4c1d1ad Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/9cd6b5ec6e7dc5e7_0 differ diff --git a/chrome-profile/Default/Code Cache/js/9d197a55fd012887_0 b/chrome-profile/Default/Code Cache/js/9d197a55fd012887_0 new file mode 100644 index 0000000..40ef908 Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/9d197a55fd012887_0 differ diff --git a/chrome-profile/Default/Code Cache/js/9d75325470521224_0 b/chrome-profile/Default/Code Cache/js/9d75325470521224_0 new file mode 100644 index 0000000..4bfcf61 Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/9d75325470521224_0 differ diff --git a/chrome-profile/Default/Code Cache/js/9e84abd223b5fba0_0 b/chrome-profile/Default/Code Cache/js/9e84abd223b5fba0_0 new file mode 100644 index 0000000..861e19d Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/9e84abd223b5fba0_0 differ diff --git a/chrome-profile/Default/Code Cache/js/9f6a0c1f803ec5a8_0 b/chrome-profile/Default/Code Cache/js/9f6a0c1f803ec5a8_0 new file mode 100644 index 0000000..da1add6 Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/9f6a0c1f803ec5a8_0 differ diff --git a/chrome-profile/Default/Code Cache/js/a0e65b643d767fc5_0 b/chrome-profile/Default/Code Cache/js/a0e65b643d767fc5_0 new file mode 100644 index 0000000..4c24d0a Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/a0e65b643d767fc5_0 differ diff --git a/chrome-profile/Default/Code Cache/js/a11d4439668a396b_0 b/chrome-profile/Default/Code Cache/js/a11d4439668a396b_0 new file mode 100644 index 0000000..dda93ea Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/a11d4439668a396b_0 differ diff --git a/chrome-profile/Default/Code Cache/js/a5904201d0720566_0 b/chrome-profile/Default/Code Cache/js/a5904201d0720566_0 new file mode 100644 index 0000000..c4c248c Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/a5904201d0720566_0 differ diff --git a/chrome-profile/Default/Code Cache/js/a7624df715f30b3d_0 b/chrome-profile/Default/Code Cache/js/a7624df715f30b3d_0 new file mode 100644 index 0000000..1243b3d Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/a7624df715f30b3d_0 differ diff --git a/chrome-profile/Default/Code Cache/js/a795e511d40aa76b_0 b/chrome-profile/Default/Code Cache/js/a795e511d40aa76b_0 new file mode 100644 index 0000000..4a88111 Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/a795e511d40aa76b_0 differ diff --git a/chrome-profile/Default/Code Cache/js/a8414deb2af55ede_0 b/chrome-profile/Default/Code Cache/js/a8414deb2af55ede_0 new file mode 100644 index 0000000..3e8c4ed Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/a8414deb2af55ede_0 differ diff --git a/chrome-profile/Default/Code Cache/js/aac493e82cc9f356_0 b/chrome-profile/Default/Code Cache/js/aac493e82cc9f356_0 new file mode 100644 index 0000000..2cf9eab Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/aac493e82cc9f356_0 differ diff --git a/chrome-profile/Default/Code Cache/js/ac07585252077499_0 b/chrome-profile/Default/Code Cache/js/ac07585252077499_0 new file mode 100644 index 0000000..8dafb13 Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/ac07585252077499_0 differ diff --git a/chrome-profile/Default/Code Cache/js/ac2ef4bb2eda44c0_0 b/chrome-profile/Default/Code Cache/js/ac2ef4bb2eda44c0_0 new file mode 100644 index 0000000..8f60a69 Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/ac2ef4bb2eda44c0_0 differ diff --git a/chrome-profile/Default/Code Cache/js/aece6837d9b15204_0 b/chrome-profile/Default/Code Cache/js/aece6837d9b15204_0 new file mode 100644 index 0000000..c0938b2 Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/aece6837d9b15204_0 differ diff --git a/chrome-profile/Default/Code Cache/js/af232fdacdb7e225_0 b/chrome-profile/Default/Code Cache/js/af232fdacdb7e225_0 new file mode 100644 index 0000000..5962e1e Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/af232fdacdb7e225_0 differ diff --git a/chrome-profile/Default/Code Cache/js/afcecf37a765c72b_0 b/chrome-profile/Default/Code Cache/js/afcecf37a765c72b_0 new file mode 100644 index 0000000..6693982 Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/afcecf37a765c72b_0 differ diff --git a/chrome-profile/Default/Code Cache/js/b78828201f085df3_0 b/chrome-profile/Default/Code Cache/js/b78828201f085df3_0 new file mode 100644 index 0000000..55612e2 Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/b78828201f085df3_0 differ diff --git a/chrome-profile/Default/Code Cache/js/b7b665f9a42a3562_0 b/chrome-profile/Default/Code Cache/js/b7b665f9a42a3562_0 new file mode 100644 index 0000000..cded653 Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/b7b665f9a42a3562_0 differ diff --git a/chrome-profile/Default/Code Cache/js/b9c9c95227b3205e_0 b/chrome-profile/Default/Code Cache/js/b9c9c95227b3205e_0 new file mode 100644 index 0000000..f152508 Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/b9c9c95227b3205e_0 differ diff --git a/chrome-profile/Default/Code Cache/js/ba30c452a26cec3b_0 b/chrome-profile/Default/Code Cache/js/ba30c452a26cec3b_0 new file mode 100644 index 0000000..25f8170 Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/ba30c452a26cec3b_0 differ diff --git a/chrome-profile/Default/Code Cache/js/bbeed921570d9951_0 b/chrome-profile/Default/Code Cache/js/bbeed921570d9951_0 new file mode 100644 index 0000000..c58a78b Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/bbeed921570d9951_0 differ diff --git a/chrome-profile/Default/Code Cache/js/bcd45a083a2c7bdd_0 b/chrome-profile/Default/Code Cache/js/bcd45a083a2c7bdd_0 new file mode 100644 index 0000000..d6bbd1c Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/bcd45a083a2c7bdd_0 differ diff --git a/chrome-profile/Default/Code Cache/js/bd44fd4efcc1f2d6_0 b/chrome-profile/Default/Code Cache/js/bd44fd4efcc1f2d6_0 new file mode 100644 index 0000000..9ffb167 Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/bd44fd4efcc1f2d6_0 differ diff --git a/chrome-profile/Default/Code Cache/js/be0d1f83e99d78c6_0 b/chrome-profile/Default/Code Cache/js/be0d1f83e99d78c6_0 new file mode 100644 index 0000000..08b9065 Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/be0d1f83e99d78c6_0 differ diff --git a/chrome-profile/Default/Code Cache/js/bef53c6bd541819b_0 b/chrome-profile/Default/Code Cache/js/bef53c6bd541819b_0 new file mode 100644 index 0000000..fe8ae8b Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/bef53c6bd541819b_0 differ diff --git a/chrome-profile/Default/Code Cache/js/bfd979114951de82_0 b/chrome-profile/Default/Code Cache/js/bfd979114951de82_0 new file mode 100644 index 0000000..fdbd701 Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/bfd979114951de82_0 differ diff --git a/chrome-profile/Default/Code Cache/js/bfdb1c9cee1ed6fe_0 b/chrome-profile/Default/Code Cache/js/bfdb1c9cee1ed6fe_0 new file mode 100644 index 0000000..1b0c71d Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/bfdb1c9cee1ed6fe_0 differ diff --git a/chrome-profile/Default/Code Cache/js/c0e8dff2a8dfce7e_0 b/chrome-profile/Default/Code Cache/js/c0e8dff2a8dfce7e_0 new file mode 100644 index 0000000..b718b00 Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/c0e8dff2a8dfce7e_0 differ diff --git a/chrome-profile/Default/Code Cache/js/c0ef307e632589c5_0 b/chrome-profile/Default/Code Cache/js/c0ef307e632589c5_0 new file mode 100644 index 0000000..d19b67f Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/c0ef307e632589c5_0 differ diff --git a/chrome-profile/Default/Code Cache/js/c13b7797014e5220_0 b/chrome-profile/Default/Code Cache/js/c13b7797014e5220_0 new file mode 100644 index 0000000..11a8419 Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/c13b7797014e5220_0 differ diff --git a/chrome-profile/Default/Code Cache/js/c13e31891867963d_0 b/chrome-profile/Default/Code Cache/js/c13e31891867963d_0 new file mode 100644 index 0000000..e8cef67 Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/c13e31891867963d_0 differ diff --git a/chrome-profile/Default/Code Cache/js/c28f6e7207063d8a_0 b/chrome-profile/Default/Code Cache/js/c28f6e7207063d8a_0 new file mode 100644 index 0000000..db079de Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/c28f6e7207063d8a_0 differ diff --git a/chrome-profile/Default/Code Cache/js/c2b343d4561d287f_0 b/chrome-profile/Default/Code Cache/js/c2b343d4561d287f_0 new file mode 100644 index 0000000..9f4fc64 Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/c2b343d4561d287f_0 differ diff --git a/chrome-profile/Default/Code Cache/js/c4208192dd4efe34_0 b/chrome-profile/Default/Code Cache/js/c4208192dd4efe34_0 new file mode 100644 index 0000000..4e0bb5f Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/c4208192dd4efe34_0 differ diff --git a/chrome-profile/Default/Code Cache/js/c42d6107a8e3e6ee_0 b/chrome-profile/Default/Code Cache/js/c42d6107a8e3e6ee_0 new file mode 100644 index 0000000..2247b17 Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/c42d6107a8e3e6ee_0 differ diff --git a/chrome-profile/Default/Code Cache/js/c4dd909650d451cd_0 b/chrome-profile/Default/Code Cache/js/c4dd909650d451cd_0 new file mode 100644 index 0000000..b3908bf Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/c4dd909650d451cd_0 differ diff --git a/chrome-profile/Default/Code Cache/js/c863c9d36861d754_0 b/chrome-profile/Default/Code Cache/js/c863c9d36861d754_0 new file mode 100644 index 0000000..5270b04 Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/c863c9d36861d754_0 differ diff --git a/chrome-profile/Default/Code Cache/js/c86fda00e3163b86_0 b/chrome-profile/Default/Code Cache/js/c86fda00e3163b86_0 new file mode 100644 index 0000000..e423acd Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/c86fda00e3163b86_0 differ diff --git a/chrome-profile/Default/Code Cache/js/cc7a1543625a4e27_0 b/chrome-profile/Default/Code Cache/js/cc7a1543625a4e27_0 new file mode 100644 index 0000000..ce3d20b Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/cc7a1543625a4e27_0 differ diff --git a/chrome-profile/Default/Code Cache/js/cca0b5fcd95e7791_0 b/chrome-profile/Default/Code Cache/js/cca0b5fcd95e7791_0 new file mode 100644 index 0000000..d0805f5 Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/cca0b5fcd95e7791_0 differ diff --git a/chrome-profile/Default/Code Cache/js/cd27d4220ae97133_0 b/chrome-profile/Default/Code Cache/js/cd27d4220ae97133_0 new file mode 100644 index 0000000..69bcce4 Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/cd27d4220ae97133_0 differ diff --git a/chrome-profile/Default/Code Cache/js/ce36e67d5307f8f9_0 b/chrome-profile/Default/Code Cache/js/ce36e67d5307f8f9_0 new file mode 100644 index 0000000..b0f844f Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/ce36e67d5307f8f9_0 differ diff --git a/chrome-profile/Default/Code Cache/js/cfb0158b901472f0_0 b/chrome-profile/Default/Code Cache/js/cfb0158b901472f0_0 new file mode 100644 index 0000000..e845b88 Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/cfb0158b901472f0_0 differ diff --git a/chrome-profile/Default/Code Cache/js/d0b052800a490420_0 b/chrome-profile/Default/Code Cache/js/d0b052800a490420_0 new file mode 100644 index 0000000..0005c53 Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/d0b052800a490420_0 differ diff --git a/chrome-profile/Default/Code Cache/js/d11b1554805c7b39_0 b/chrome-profile/Default/Code Cache/js/d11b1554805c7b39_0 new file mode 100644 index 0000000..3ff29da Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/d11b1554805c7b39_0 differ diff --git a/chrome-profile/Default/Code Cache/js/d12837142dc2a45f_0 b/chrome-profile/Default/Code Cache/js/d12837142dc2a45f_0 new file mode 100644 index 0000000..050e4e8 Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/d12837142dc2a45f_0 differ diff --git a/chrome-profile/Default/Code Cache/js/d207ffe4104263c4_0 b/chrome-profile/Default/Code Cache/js/d207ffe4104263c4_0 new file mode 100644 index 0000000..58e40a4 Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/d207ffe4104263c4_0 differ diff --git a/chrome-profile/Default/Code Cache/js/d3304fa021206efb_0 b/chrome-profile/Default/Code Cache/js/d3304fa021206efb_0 new file mode 100644 index 0000000..344db40 Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/d3304fa021206efb_0 differ diff --git a/chrome-profile/Default/Code Cache/js/d4ec51c6c3a07f91_0 b/chrome-profile/Default/Code Cache/js/d4ec51c6c3a07f91_0 new file mode 100644 index 0000000..b865a58 Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/d4ec51c6c3a07f91_0 differ diff --git a/chrome-profile/Default/Code Cache/js/d79162b487a2655b_0 b/chrome-profile/Default/Code Cache/js/d79162b487a2655b_0 new file mode 100644 index 0000000..9b1bc79 Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/d79162b487a2655b_0 differ diff --git a/chrome-profile/Default/Code Cache/js/d7af67dbf0c42899_0 b/chrome-profile/Default/Code Cache/js/d7af67dbf0c42899_0 new file mode 100644 index 0000000..8760799 Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/d7af67dbf0c42899_0 differ diff --git a/chrome-profile/Default/Code Cache/js/d867096fd69f6600_0 b/chrome-profile/Default/Code Cache/js/d867096fd69f6600_0 new file mode 100644 index 0000000..03e647c Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/d867096fd69f6600_0 differ diff --git a/chrome-profile/Default/Code Cache/js/d87a1ed0ef0ab15e_0 b/chrome-profile/Default/Code Cache/js/d87a1ed0ef0ab15e_0 new file mode 100644 index 0000000..029e52f Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/d87a1ed0ef0ab15e_0 differ diff --git a/chrome-profile/Default/Code Cache/js/dad73d30b9aeca97_0 b/chrome-profile/Default/Code Cache/js/dad73d30b9aeca97_0 new file mode 100644 index 0000000..99cf3e9 Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/dad73d30b9aeca97_0 differ diff --git a/chrome-profile/Default/Code Cache/js/dd820c66b0a5e219_0 b/chrome-profile/Default/Code Cache/js/dd820c66b0a5e219_0 new file mode 100644 index 0000000..c93ff0b Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/dd820c66b0a5e219_0 differ diff --git a/chrome-profile/Default/Code Cache/js/dda493ee7f8d5ac8_0 b/chrome-profile/Default/Code Cache/js/dda493ee7f8d5ac8_0 new file mode 100644 index 0000000..37fa0da Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/dda493ee7f8d5ac8_0 differ diff --git a/chrome-profile/Default/Code Cache/js/de3e0076ae7ea8cd_0 b/chrome-profile/Default/Code Cache/js/de3e0076ae7ea8cd_0 new file mode 100644 index 0000000..210b34f Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/de3e0076ae7ea8cd_0 differ diff --git a/chrome-profile/Default/Code Cache/js/deaa3eed7c457573_0 b/chrome-profile/Default/Code Cache/js/deaa3eed7c457573_0 new file mode 100644 index 0000000..680c2ee Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/deaa3eed7c457573_0 differ diff --git a/chrome-profile/Default/Code Cache/js/df77f32a23cf4ffd_0 b/chrome-profile/Default/Code Cache/js/df77f32a23cf4ffd_0 new file mode 100644 index 0000000..7a83c30 Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/df77f32a23cf4ffd_0 differ diff --git a/chrome-profile/Default/Code Cache/js/e4166c4ef4532f53_0 b/chrome-profile/Default/Code Cache/js/e4166c4ef4532f53_0 new file mode 100644 index 0000000..c778fdc Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/e4166c4ef4532f53_0 differ diff --git a/chrome-profile/Default/Code Cache/js/e551fe0dfe498a40_0 b/chrome-profile/Default/Code Cache/js/e551fe0dfe498a40_0 new file mode 100644 index 0000000..26f914a Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/e551fe0dfe498a40_0 differ diff --git a/chrome-profile/Default/Code Cache/js/e743fd21671abb22_0 b/chrome-profile/Default/Code Cache/js/e743fd21671abb22_0 new file mode 100644 index 0000000..180bbc5 Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/e743fd21671abb22_0 differ diff --git a/chrome-profile/Default/Code Cache/js/e7619f2fdcbdf5fb_0 b/chrome-profile/Default/Code Cache/js/e7619f2fdcbdf5fb_0 new file mode 100644 index 0000000..e6f523b Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/e7619f2fdcbdf5fb_0 differ diff --git a/chrome-profile/Default/Code Cache/js/e901216c4e8f9de5_0 b/chrome-profile/Default/Code Cache/js/e901216c4e8f9de5_0 new file mode 100644 index 0000000..d6c381c Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/e901216c4e8f9de5_0 differ diff --git a/chrome-profile/Default/Code Cache/js/e98473a6085f7bcf_0 b/chrome-profile/Default/Code Cache/js/e98473a6085f7bcf_0 new file mode 100644 index 0000000..8a4a9a3 Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/e98473a6085f7bcf_0 differ diff --git a/chrome-profile/Default/Code Cache/js/ea5bbcbc8acb5c72_0 b/chrome-profile/Default/Code Cache/js/ea5bbcbc8acb5c72_0 new file mode 100644 index 0000000..f2b65a7 Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/ea5bbcbc8acb5c72_0 differ diff --git a/chrome-profile/Default/Code Cache/js/eb69f13c190ab91f_0 b/chrome-profile/Default/Code Cache/js/eb69f13c190ab91f_0 new file mode 100644 index 0000000..95e9dae Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/eb69f13c190ab91f_0 differ diff --git a/chrome-profile/Default/Code Cache/js/ebce2948f8bae14a_0 b/chrome-profile/Default/Code Cache/js/ebce2948f8bae14a_0 new file mode 100644 index 0000000..618976e Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/ebce2948f8bae14a_0 differ diff --git a/chrome-profile/Default/Code Cache/js/ed9477471461b2b7_0 b/chrome-profile/Default/Code Cache/js/ed9477471461b2b7_0 new file mode 100644 index 0000000..b5d6da0 Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/ed9477471461b2b7_0 differ diff --git a/chrome-profile/Default/Code Cache/js/edf52170ad2af4f6_0 b/chrome-profile/Default/Code Cache/js/edf52170ad2af4f6_0 new file mode 100644 index 0000000..ef0a06a Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/edf52170ad2af4f6_0 differ diff --git a/chrome-profile/Default/Code Cache/js/ee8acae1eb94fd88_0 b/chrome-profile/Default/Code Cache/js/ee8acae1eb94fd88_0 new file mode 100644 index 0000000..a163110 Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/ee8acae1eb94fd88_0 differ diff --git a/chrome-profile/Default/Code Cache/js/f056c1e786eae2e6_0 b/chrome-profile/Default/Code Cache/js/f056c1e786eae2e6_0 new file mode 100644 index 0000000..e7ea417 Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/f056c1e786eae2e6_0 differ diff --git a/chrome-profile/Default/Code Cache/js/f130091b422e1f89_0 b/chrome-profile/Default/Code Cache/js/f130091b422e1f89_0 new file mode 100644 index 0000000..36081d5 Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/f130091b422e1f89_0 differ diff --git a/chrome-profile/Default/Code Cache/js/f29202d350bc74c1_0 b/chrome-profile/Default/Code Cache/js/f29202d350bc74c1_0 new file mode 100644 index 0000000..cf8c159 Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/f29202d350bc74c1_0 differ diff --git a/chrome-profile/Default/Code Cache/js/f633233e2e6d31e6_0 b/chrome-profile/Default/Code Cache/js/f633233e2e6d31e6_0 new file mode 100644 index 0000000..6f6ec3d Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/f633233e2e6d31e6_0 differ diff --git a/chrome-profile/Default/Code Cache/js/f69510cdaefdd7d1_0 b/chrome-profile/Default/Code Cache/js/f69510cdaefdd7d1_0 new file mode 100644 index 0000000..9530547 Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/f69510cdaefdd7d1_0 differ diff --git a/chrome-profile/Default/Code Cache/js/fafb0021ce862f4b_0 b/chrome-profile/Default/Code Cache/js/fafb0021ce862f4b_0 new file mode 100644 index 0000000..fbfd010 Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/fafb0021ce862f4b_0 differ diff --git a/chrome-profile/Default/Code Cache/js/fb45e11168cae84f_0 b/chrome-profile/Default/Code Cache/js/fb45e11168cae84f_0 new file mode 100644 index 0000000..39ff9a2 Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/fb45e11168cae84f_0 differ diff --git a/chrome-profile/Default/Code Cache/js/fdc8117cd88264d7_0 b/chrome-profile/Default/Code Cache/js/fdc8117cd88264d7_0 new file mode 100644 index 0000000..60ba78f Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/fdc8117cd88264d7_0 differ diff --git a/chrome-profile/Default/Code Cache/js/fe4e100961726b80_0 b/chrome-profile/Default/Code Cache/js/fe4e100961726b80_0 new file mode 100644 index 0000000..b90d8e2 Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/fe4e100961726b80_0 differ diff --git a/chrome-profile/Default/Code Cache/js/index b/chrome-profile/Default/Code Cache/js/index new file mode 100644 index 0000000..79bd403 Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/index differ diff --git a/chrome-profile/Default/Code Cache/js/index-dir/the-real-index b/chrome-profile/Default/Code Cache/js/index-dir/the-real-index new file mode 100644 index 0000000..d1e40f6 Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/index-dir/the-real-index differ diff --git a/chrome-profile/Default/Code Cache/js/index-dir/the-real-index~RF36ff14c0.TMP b/chrome-profile/Default/Code Cache/js/index-dir/the-real-index~RF36ff14c0.TMP new file mode 100644 index 0000000..994fe95 Binary files /dev/null and b/chrome-profile/Default/Code Cache/js/index-dir/the-real-index~RF36ff14c0.TMP differ diff --git a/chrome-profile/Default/Code Cache/wasm/index b/chrome-profile/Default/Code Cache/wasm/index new file mode 100644 index 0000000..79bd403 Binary files /dev/null and b/chrome-profile/Default/Code Cache/wasm/index differ diff --git a/chrome-profile/Default/Code Cache/wasm/index-dir/the-real-index b/chrome-profile/Default/Code Cache/wasm/index-dir/the-real-index new file mode 100644 index 0000000..8a6e039 Binary files /dev/null and b/chrome-profile/Default/Code Cache/wasm/index-dir/the-real-index differ diff --git a/chrome-profile/Default/DIPS b/chrome-profile/Default/DIPS new file mode 100644 index 0000000..4d54420 Binary files /dev/null and b/chrome-profile/Default/DIPS differ diff --git a/chrome-profile/Default/DawnGraphiteCache/data_0 b/chrome-profile/Default/DawnGraphiteCache/data_0 new file mode 100644 index 0000000..d76fb77 Binary files /dev/null and b/chrome-profile/Default/DawnGraphiteCache/data_0 differ diff --git a/chrome-profile/Default/DawnGraphiteCache/data_1 b/chrome-profile/Default/DawnGraphiteCache/data_1 new file mode 100644 index 0000000..87fbb8c Binary files /dev/null and b/chrome-profile/Default/DawnGraphiteCache/data_1 differ diff --git a/chrome-profile/Default/DawnGraphiteCache/data_2 b/chrome-profile/Default/DawnGraphiteCache/data_2 new file mode 100644 index 0000000..c7e2eb9 Binary files /dev/null and b/chrome-profile/Default/DawnGraphiteCache/data_2 differ diff --git a/chrome-profile/Default/DawnGraphiteCache/data_3 b/chrome-profile/Default/DawnGraphiteCache/data_3 new file mode 100644 index 0000000..5eec973 Binary files /dev/null and b/chrome-profile/Default/DawnGraphiteCache/data_3 differ diff --git a/chrome-profile/Default/DawnGraphiteCache/index b/chrome-profile/Default/DawnGraphiteCache/index new file mode 100644 index 0000000..fdf7bb6 Binary files /dev/null and b/chrome-profile/Default/DawnGraphiteCache/index differ diff --git a/chrome-profile/Default/DawnWebGPUCache/data_0 b/chrome-profile/Default/DawnWebGPUCache/data_0 new file mode 100644 index 0000000..d76fb77 Binary files /dev/null and b/chrome-profile/Default/DawnWebGPUCache/data_0 differ diff --git a/chrome-profile/Default/DawnWebGPUCache/data_1 b/chrome-profile/Default/DawnWebGPUCache/data_1 new file mode 100644 index 0000000..9ef759d Binary files /dev/null and b/chrome-profile/Default/DawnWebGPUCache/data_1 differ diff --git a/chrome-profile/Default/DawnWebGPUCache/data_2 b/chrome-profile/Default/DawnWebGPUCache/data_2 new file mode 100644 index 0000000..c7e2eb9 Binary files /dev/null and b/chrome-profile/Default/DawnWebGPUCache/data_2 differ diff --git a/chrome-profile/Default/DawnWebGPUCache/data_3 b/chrome-profile/Default/DawnWebGPUCache/data_3 new file mode 100644 index 0000000..5eec973 Binary files /dev/null and b/chrome-profile/Default/DawnWebGPUCache/data_3 differ diff --git a/chrome-profile/Default/DawnWebGPUCache/index b/chrome-profile/Default/DawnWebGPUCache/index new file mode 100644 index 0000000..04dfe00 Binary files /dev/null and b/chrome-profile/Default/DawnWebGPUCache/index differ diff --git a/chrome-profile/Default/Extension Rules/000003.log b/chrome-profile/Default/Extension Rules/000003.log new file mode 100644 index 0000000..b248f53 Binary files /dev/null and b/chrome-profile/Default/Extension Rules/000003.log differ diff --git a/chrome-profile/Default/Extension Rules/CURRENT b/chrome-profile/Default/Extension Rules/CURRENT new file mode 100644 index 0000000..7ed683d --- /dev/null +++ b/chrome-profile/Default/Extension Rules/CURRENT @@ -0,0 +1 @@ +MANIFEST-000001 diff --git a/chrome-profile/Default/Extension Rules/LOCK b/chrome-profile/Default/Extension Rules/LOCK new file mode 100644 index 0000000..e69de29 diff --git a/chrome-profile/Default/Extension Rules/LOG b/chrome-profile/Default/Extension Rules/LOG new file mode 100644 index 0000000..c1cbcbf --- /dev/null +++ b/chrome-profile/Default/Extension Rules/LOG @@ -0,0 +1,3 @@ +2026/01/02-20:18:04.649 1db4 Reusing MANIFEST G:\temp github\bookdedrm\chrome-profile\Default\Extension Rules/MANIFEST-000001 +2026/01/02-20:18:04.650 1db4 Recovering log #3 +2026/01/02-20:18:04.650 1db4 Reusing old log G:\temp github\bookdedrm\chrome-profile\Default\Extension Rules/000003.log diff --git a/chrome-profile/Default/Extension Rules/LOG.old b/chrome-profile/Default/Extension Rules/LOG.old new file mode 100644 index 0000000..19be74e --- /dev/null +++ b/chrome-profile/Default/Extension Rules/LOG.old @@ -0,0 +1,2 @@ +2026/01/02-20:14:08.097 2368 Creating DB G:\temp github\bookdedrm\chrome-profile\Default\Extension Rules since it was missing. +2026/01/02-20:14:08.484 2368 Reusing MANIFEST G:\temp github\bookdedrm\chrome-profile\Default\Extension Rules/MANIFEST-000001 diff --git a/chrome-profile/Default/Extension Rules/MANIFEST-000001 b/chrome-profile/Default/Extension Rules/MANIFEST-000001 new file mode 100644 index 0000000..18e5cab Binary files /dev/null and b/chrome-profile/Default/Extension Rules/MANIFEST-000001 differ diff --git a/chrome-profile/Default/Extension Scripts/000003.log b/chrome-profile/Default/Extension Scripts/000003.log new file mode 100644 index 0000000..f718767 Binary files /dev/null and b/chrome-profile/Default/Extension Scripts/000003.log differ diff --git a/chrome-profile/Default/Extension Scripts/CURRENT b/chrome-profile/Default/Extension Scripts/CURRENT new file mode 100644 index 0000000..7ed683d --- /dev/null +++ b/chrome-profile/Default/Extension Scripts/CURRENT @@ -0,0 +1 @@ +MANIFEST-000001 diff --git a/chrome-profile/Default/Extension Scripts/LOCK b/chrome-profile/Default/Extension Scripts/LOCK new file mode 100644 index 0000000..e69de29 diff --git a/chrome-profile/Default/Extension Scripts/LOG b/chrome-profile/Default/Extension Scripts/LOG new file mode 100644 index 0000000..4461578 --- /dev/null +++ b/chrome-profile/Default/Extension Scripts/LOG @@ -0,0 +1,3 @@ +2026/01/02-20:18:04.651 1db4 Reusing MANIFEST G:\temp github\bookdedrm\chrome-profile\Default\Extension Scripts/MANIFEST-000001 +2026/01/02-20:18:04.651 1db4 Recovering log #3 +2026/01/02-20:18:04.651 1db4 Reusing old log G:\temp github\bookdedrm\chrome-profile\Default\Extension Scripts/000003.log diff --git a/chrome-profile/Default/Extension Scripts/LOG.old b/chrome-profile/Default/Extension Scripts/LOG.old new file mode 100644 index 0000000..3089193 --- /dev/null +++ b/chrome-profile/Default/Extension Scripts/LOG.old @@ -0,0 +1,2 @@ +2026/01/02-20:14:08.847 2368 Creating DB G:\temp github\bookdedrm\chrome-profile\Default\Extension Scripts since it was missing. +2026/01/02-20:14:09.389 2368 Reusing MANIFEST G:\temp github\bookdedrm\chrome-profile\Default\Extension Scripts/MANIFEST-000001 diff --git a/chrome-profile/Default/Extension Scripts/MANIFEST-000001 b/chrome-profile/Default/Extension Scripts/MANIFEST-000001 new file mode 100644 index 0000000..18e5cab Binary files /dev/null and b/chrome-profile/Default/Extension Scripts/MANIFEST-000001 differ diff --git a/chrome-profile/Default/Extension State/000003.log b/chrome-profile/Default/Extension State/000003.log new file mode 100644 index 0000000..8414c83 Binary files /dev/null and b/chrome-profile/Default/Extension State/000003.log differ diff --git a/chrome-profile/Default/Extension State/CURRENT b/chrome-profile/Default/Extension State/CURRENT new file mode 100644 index 0000000..7ed683d --- /dev/null +++ b/chrome-profile/Default/Extension State/CURRENT @@ -0,0 +1 @@ +MANIFEST-000001 diff --git a/chrome-profile/Default/Extension State/LOCK b/chrome-profile/Default/Extension State/LOCK new file mode 100644 index 0000000..e69de29 diff --git a/chrome-profile/Default/Extension State/LOG b/chrome-profile/Default/Extension State/LOG new file mode 100644 index 0000000..bb35f6c --- /dev/null +++ b/chrome-profile/Default/Extension State/LOG @@ -0,0 +1,3 @@ +2026/07/31-17:04:46.234 14e60 Reusing MANIFEST G:\temp github\bookdedrm\chrome-profile\Default\Extension State/MANIFEST-000001 +2026/07/31-17:04:46.234 14e60 Recovering log #3 +2026/07/31-17:04:46.234 14e60 Reusing old log G:\temp github\bookdedrm\chrome-profile\Default\Extension State/000003.log diff --git a/chrome-profile/Default/Extension State/LOG.old b/chrome-profile/Default/Extension State/LOG.old new file mode 100644 index 0000000..d7e71a1 --- /dev/null +++ b/chrome-profile/Default/Extension State/LOG.old @@ -0,0 +1,3 @@ +2026/07/06-20:37:41.095 8e04 Reusing MANIFEST G:\temp github\bookdedrm\chrome-profile\Default\Extension State/MANIFEST-000001 +2026/07/06-20:37:41.095 8e04 Recovering log #3 +2026/07/06-20:37:41.095 8e04 Reusing old log G:\temp github\bookdedrm\chrome-profile\Default\Extension State/000003.log diff --git a/chrome-profile/Default/Extension State/MANIFEST-000001 b/chrome-profile/Default/Extension State/MANIFEST-000001 new file mode 100644 index 0000000..18e5cab Binary files /dev/null and b/chrome-profile/Default/Extension State/MANIFEST-000001 differ diff --git a/chrome-profile/Default/Favicons b/chrome-profile/Default/Favicons new file mode 100644 index 0000000..1c52403 Binary files /dev/null and b/chrome-profile/Default/Favicons differ diff --git a/chrome-profile/Default/Favicons-journal b/chrome-profile/Default/Favicons-journal new file mode 100644 index 0000000..e69de29 diff --git a/chrome-profile/Default/Feature Engagement Tracker/AvailabilityDB/LOCK b/chrome-profile/Default/Feature Engagement Tracker/AvailabilityDB/LOCK new file mode 100644 index 0000000..e69de29 diff --git a/chrome-profile/Default/Feature Engagement Tracker/AvailabilityDB/LOG b/chrome-profile/Default/Feature Engagement Tracker/AvailabilityDB/LOG new file mode 100644 index 0000000..e69de29 diff --git a/chrome-profile/Default/Feature Engagement Tracker/AvailabilityDB/LOG.old b/chrome-profile/Default/Feature Engagement Tracker/AvailabilityDB/LOG.old new file mode 100644 index 0000000..e69de29 diff --git a/chrome-profile/Default/Feature Engagement Tracker/EventDB/LOCK b/chrome-profile/Default/Feature Engagement Tracker/EventDB/LOCK new file mode 100644 index 0000000..e69de29 diff --git a/chrome-profile/Default/Feature Engagement Tracker/EventDB/LOG b/chrome-profile/Default/Feature Engagement Tracker/EventDB/LOG new file mode 100644 index 0000000..e69de29 diff --git a/chrome-profile/Default/Feature Engagement Tracker/EventDB/LOG.old b/chrome-profile/Default/Feature Engagement Tracker/EventDB/LOG.old new file mode 100644 index 0000000..e69de29 diff --git a/chrome-profile/Default/GCM Store/000003.log b/chrome-profile/Default/GCM Store/000003.log new file mode 100644 index 0000000..f8a33c7 Binary files /dev/null and b/chrome-profile/Default/GCM Store/000003.log differ diff --git a/chrome-profile/Default/GCM Store/CURRENT b/chrome-profile/Default/GCM Store/CURRENT new file mode 100644 index 0000000..7ed683d --- /dev/null +++ b/chrome-profile/Default/GCM Store/CURRENT @@ -0,0 +1 @@ +MANIFEST-000001 diff --git a/chrome-profile/Default/GCM Store/LOCK b/chrome-profile/Default/GCM Store/LOCK new file mode 100644 index 0000000..e69de29 diff --git a/chrome-profile/Default/GCM Store/LOG b/chrome-profile/Default/GCM Store/LOG new file mode 100644 index 0000000..f78d60a --- /dev/null +++ b/chrome-profile/Default/GCM Store/LOG @@ -0,0 +1,3 @@ +2026/07/31-17:04:51.569 14e28 Reusing MANIFEST G:\temp github\bookdedrm\chrome-profile\Default\GCM Store/MANIFEST-000001 +2026/07/31-17:04:51.569 14e28 Recovering log #3 +2026/07/31-17:04:51.618 14e28 Reusing old log G:\temp github\bookdedrm\chrome-profile\Default\GCM Store/000003.log diff --git a/chrome-profile/Default/GCM Store/LOG.old b/chrome-profile/Default/GCM Store/LOG.old new file mode 100644 index 0000000..ee9de22 --- /dev/null +++ b/chrome-profile/Default/GCM Store/LOG.old @@ -0,0 +1,3 @@ +2026/07/06-20:37:47.263 7b5c Reusing MANIFEST G:\temp github\bookdedrm\chrome-profile\Default\GCM Store/MANIFEST-000001 +2026/07/06-20:37:47.263 7b5c Recovering log #3 +2026/07/06-20:37:47.263 7b5c Reusing old log G:\temp github\bookdedrm\chrome-profile\Default\GCM Store/000003.log diff --git a/chrome-profile/Default/GCM Store/MANIFEST-000001 b/chrome-profile/Default/GCM Store/MANIFEST-000001 new file mode 100644 index 0000000..18e5cab Binary files /dev/null and b/chrome-profile/Default/GCM Store/MANIFEST-000001 differ diff --git a/chrome-profile/Default/GPUCache/data_0 b/chrome-profile/Default/GPUCache/data_0 new file mode 100644 index 0000000..0492593 Binary files /dev/null and b/chrome-profile/Default/GPUCache/data_0 differ diff --git a/chrome-profile/Default/GPUCache/data_1 b/chrome-profile/Default/GPUCache/data_1 new file mode 100644 index 0000000..7cfc740 Binary files /dev/null and b/chrome-profile/Default/GPUCache/data_1 differ diff --git a/chrome-profile/Default/GPUCache/data_2 b/chrome-profile/Default/GPUCache/data_2 new file mode 100644 index 0000000..22552e5 Binary files /dev/null and b/chrome-profile/Default/GPUCache/data_2 differ diff --git a/chrome-profile/Default/GPUCache/data_3 b/chrome-profile/Default/GPUCache/data_3 new file mode 100644 index 0000000..5eec973 Binary files /dev/null and b/chrome-profile/Default/GPUCache/data_3 differ diff --git a/chrome-profile/Default/GPUCache/index b/chrome-profile/Default/GPUCache/index new file mode 100644 index 0000000..1da630f Binary files /dev/null and b/chrome-profile/Default/GPUCache/index differ diff --git a/chrome-profile/Default/Google Profile Picture.png b/chrome-profile/Default/Google Profile Picture.png new file mode 100644 index 0000000..3cce0e2 Binary files /dev/null and b/chrome-profile/Default/Google Profile Picture.png differ diff --git a/chrome-profile/Default/History b/chrome-profile/Default/History new file mode 100644 index 0000000..25f59d5 Binary files /dev/null and b/chrome-profile/Default/History differ diff --git a/chrome-profile/Default/History-journal b/chrome-profile/Default/History-journal new file mode 100644 index 0000000..e69de29 diff --git a/chrome-profile/Default/JumpListIconsRecentClosed/a3ea618a-3179-4807-a1f0-376d8add6977.tmp b/chrome-profile/Default/JumpListIconsRecentClosed/a3ea618a-3179-4807-a1f0-376d8add6977.tmp new file mode 100644 index 0000000..4ca3091 Binary files /dev/null and b/chrome-profile/Default/JumpListIconsRecentClosed/a3ea618a-3179-4807-a1f0-376d8add6977.tmp differ diff --git a/chrome-profile/Default/LOCK b/chrome-profile/Default/LOCK new file mode 100644 index 0000000..e69de29 diff --git a/chrome-profile/Default/LOG b/chrome-profile/Default/LOG new file mode 100644 index 0000000..e69de29 diff --git a/chrome-profile/Default/LOG.old b/chrome-profile/Default/LOG.old new file mode 100644 index 0000000..e69de29 diff --git a/chrome-profile/Default/Local Storage/leveldb/000003.log b/chrome-profile/Default/Local Storage/leveldb/000003.log new file mode 100644 index 0000000..ba699a4 Binary files /dev/null and b/chrome-profile/Default/Local Storage/leveldb/000003.log differ diff --git a/chrome-profile/Default/Local Storage/leveldb/CURRENT b/chrome-profile/Default/Local Storage/leveldb/CURRENT new file mode 100644 index 0000000..7ed683d --- /dev/null +++ b/chrome-profile/Default/Local Storage/leveldb/CURRENT @@ -0,0 +1 @@ +MANIFEST-000001 diff --git a/chrome-profile/Default/Local Storage/leveldb/LOCK b/chrome-profile/Default/Local Storage/leveldb/LOCK new file mode 100644 index 0000000..e69de29 diff --git a/chrome-profile/Default/Local Storage/leveldb/LOG b/chrome-profile/Default/Local Storage/leveldb/LOG new file mode 100644 index 0000000..207b5c8 --- /dev/null +++ b/chrome-profile/Default/Local Storage/leveldb/LOG @@ -0,0 +1,3 @@ +2026/07/31-17:04:45.896 14cd8 Reusing MANIFEST G:\temp github\bookdedrm\chrome-profile\Default\Local Storage\leveldb/MANIFEST-000001 +2026/07/31-17:04:45.942 14cd8 Recovering log #3 +2026/07/31-17:04:45.964 14cd8 Reusing old log G:\temp github\bookdedrm\chrome-profile\Default\Local Storage\leveldb/000003.log diff --git a/chrome-profile/Default/Local Storage/leveldb/LOG.old b/chrome-profile/Default/Local Storage/leveldb/LOG.old new file mode 100644 index 0000000..363ee78 --- /dev/null +++ b/chrome-profile/Default/Local Storage/leveldb/LOG.old @@ -0,0 +1,3 @@ +2026/07/06-20:37:40.612 96a8 Reusing MANIFEST G:\temp github\bookdedrm\chrome-profile\Default\Local Storage\leveldb/MANIFEST-000001 +2026/07/06-20:37:40.661 96a8 Recovering log #3 +2026/07/06-20:37:40.875 96a8 Reusing old log G:\temp github\bookdedrm\chrome-profile\Default\Local Storage\leveldb/000003.log diff --git a/chrome-profile/Default/Local Storage/leveldb/MANIFEST-000001 b/chrome-profile/Default/Local Storage/leveldb/MANIFEST-000001 new file mode 100644 index 0000000..18e5cab Binary files /dev/null and b/chrome-profile/Default/Local Storage/leveldb/MANIFEST-000001 differ diff --git a/chrome-profile/Default/Login Data b/chrome-profile/Default/Login Data new file mode 100644 index 0000000..4fc773b Binary files /dev/null and b/chrome-profile/Default/Login Data differ diff --git a/chrome-profile/Default/Login Data For Account b/chrome-profile/Default/Login Data For Account new file mode 100644 index 0000000..4fc773b Binary files /dev/null and b/chrome-profile/Default/Login Data For Account differ diff --git a/chrome-profile/Default/Login Data For Account-journal b/chrome-profile/Default/Login Data For Account-journal new file mode 100644 index 0000000..e69de29 diff --git a/chrome-profile/Default/Login Data-journal b/chrome-profile/Default/Login Data-journal new file mode 100644 index 0000000..e69de29 diff --git a/chrome-profile/Default/MediaDeviceSalts b/chrome-profile/Default/MediaDeviceSalts new file mode 100644 index 0000000..95b0363 Binary files /dev/null and b/chrome-profile/Default/MediaDeviceSalts differ diff --git a/chrome-profile/Default/MediaDeviceSalts-journal b/chrome-profile/Default/MediaDeviceSalts-journal new file mode 100644 index 0000000..e69de29 diff --git a/chrome-profile/Default/Network Action Predictor b/chrome-profile/Default/Network Action Predictor new file mode 100644 index 0000000..0eb950a Binary files /dev/null and b/chrome-profile/Default/Network Action Predictor differ diff --git a/chrome-profile/Default/Network Action Predictor-journal b/chrome-profile/Default/Network Action Predictor-journal new file mode 100644 index 0000000..e69de29 diff --git a/chrome-profile/Default/Network/0db814c6-6a5a-48f4-b397-407a114acacc.tmp b/chrome-profile/Default/Network/0db814c6-6a5a-48f4-b397-407a114acacc.tmp new file mode 100644 index 0000000..fa0193f --- /dev/null +++ b/chrome-profile/Default/Network/0db814c6-6a5a-48f4-b397-407a114acacc.tmp @@ -0,0 +1 @@ +{"sts":[{"expiry":1798949651.27599,"host":"M4bfUnCmQAi4PNb3B8aI/2+SVJhHKsMfMMT7fzi6ij4=","mode":"force-https","sts_include_subdomains":true,"sts_observed":1767413651.275992},{"expiry":1798949651.38719,"host":"nAuqgR4iEWti7SOdT3UHPl6rmZU/DeaIm38P2O2OkgA=","mode":"force-https","sts_include_subdomains":false,"sts_observed":1767413651.387192},{"expiry":1798949650.871692,"host":"5EdUoB7YUY9zZV+2DkgVXgho8WUvp+D+6KpeUOhNQIM=","mode":"force-https","sts_include_subdomains":false,"sts_observed":1767413650.871694},{"expiry":1798949677.742283,"host":"8/RrMmQlCD2Gsp14wUCE1P8r7B2C5+yE0+g79IPyRsc=","mode":"force-https","sts_include_subdomains":true,"sts_observed":1767413677.742285}],"version":2} \ No newline at end of file diff --git a/chrome-profile/Default/Network/2d42d632-ee6a-43fb-813e-e8681bf54797.tmp b/chrome-profile/Default/Network/2d42d632-ee6a-43fb-813e-e8681bf54797.tmp new file mode 100644 index 0000000..e69de29 diff --git a/chrome-profile/Default/Network/9b8b6527-b788-499e-8132-e95e9ae17b8b.tmp b/chrome-profile/Default/Network/9b8b6527-b788-499e-8132-e95e9ae17b8b.tmp new file mode 100644 index 0000000..e69de29 diff --git a/chrome-profile/Default/Network/Cookies b/chrome-profile/Default/Network/Cookies new file mode 100644 index 0000000..822a468 Binary files /dev/null and b/chrome-profile/Default/Network/Cookies differ diff --git a/chrome-profile/Default/Network/Cookies-journal b/chrome-profile/Default/Network/Cookies-journal new file mode 100644 index 0000000..e69de29 diff --git a/chrome-profile/Default/Network/Device Bound Sessions b/chrome-profile/Default/Network/Device Bound Sessions new file mode 100644 index 0000000..afc85b0 Binary files /dev/null and b/chrome-profile/Default/Network/Device Bound Sessions differ diff --git a/chrome-profile/Default/Network/Device Bound Sessions-journal b/chrome-profile/Default/Network/Device Bound Sessions-journal new file mode 100644 index 0000000..e69de29 diff --git a/chrome-profile/Default/Network/Network Persistent State b/chrome-profile/Default/Network/Network Persistent State new file mode 100644 index 0000000..c58c51e --- /dev/null +++ b/chrome-profile/Default/Network/Network Persistent State @@ -0,0 +1 @@ +{"net":{"http_server_properties":{"servers":[{"anonymization":["JAAAAB0AAABodHRwczovL2dvb2dsZXVzZXJjb250ZW50LmNvbQAAAA==",false,0],"server":"https://lh3.googleusercontent.com","supports_spdy":true},{"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",true,0],"server":"https://accounts.youtube.com","supports_spdy":true},{"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"server":"https://signaler-pa.googleapis.com","supports_spdy":true},{"anonymization":["HAAAABUAAABjaHJvbWU6Ly9uZXctdGFiLXBhZ2UAAAA=",true,0],"server":"https://www.gstatic.com","supports_spdy":true},{"anonymization":["HAAAABUAAABjaHJvbWU6Ly9uZXctdGFiLXBhZ2UAAAA=",true,0],"server":"https://apis.google.com","supports_spdy":true},{"anonymization":["HAAAABUAAABjaHJvbWU6Ly9uZXctdGFiLXBhZ2UAAAA=",true,0],"server":"https://lh3.googleusercontent.com","supports_spdy":true},{"anonymization":["IAAAABwAAABodHRwczovL2dvb2dsZXRhZ21hbmFnZXIuY29t",false,0],"server":"https://www.googletagmanager.com","supports_spdy":true},{"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",true,0],"server":"https://www.googletagmanager.com","supports_spdy":true},{"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"server":"https://content-autofill.googleapis.com","supports_spdy":true},{"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"server":"https://clients5.google.com","supports_spdy":true},{"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"network_stats":{"srtt":4932},"server":"https://play-lh.googleusercontent.com"},{"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"server":"https://www.googletagmanager.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13430461062906422","port":443,"protocol_str":"quic"}],"anonymization":["LAAAACgAAABodHRwczovL3NlY3VyaXR5ZG9tYWluLXBhLmdvb2dsZWFwaXMuY29t",false,0],"server":"https://securitydomain-pa.googleapis.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13430461062784378","port":443,"protocol_str":"quic"}],"anonymization":["NAAAAC0AAABodHRwczovL2FjY291bnRjYXBhYmlsaXRpZXMtcGEuZ29vZ2xlYXBpcy5jb20AAAA=",false,0],"server":"https://accountcapabilities-pa.googleapis.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13430461063239966","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"server":"https://fonts.googleapis.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13432608287987716","port":443,"protocol_str":"quic"}],"anonymization":["IAAAABoAAABodHRwczovL3d3dy5nb29nbGVhcGlzLmNvbQAA",false,0],"server":"https://www.googleapis.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13432608288331337","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"server":"https://apis.google.com","supports_spdy":true},{"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"server":"https://csp.withgoogle.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13430461062700442","port":443,"protocol_str":"quic"}],"anonymization":["MAAAACoAAABodHRwczovL29hdXRoYWNjb3VudG1hbmFnZXIuZ29vZ2xlYXBpcy5jb20AAA==",false,0],"network_stats":{"srtt":8656},"server":"https://oauthaccountmanager.googleapis.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13432608288080545","port":443,"protocol_str":"quic"}],"anonymization":["LAAAACgAAABodHRwczovL2tpZHNtYW5hZ2VtZW50LXBhLmdvb2dsZWFwaXMuY29t",false,0],"network_stats":{"srtt":9337},"server":"https://kidsmanagement-pa.googleapis.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13432608288700368","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"network_stats":{"srtt":4684},"server":"https://waa-pa.clients6.google.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13432608288763771","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"network_stats":{"srtt":4476},"server":"https://fonts.gstatic.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13432608289076856","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"network_stats":{"srtt":5005},"server":"https://playbooks-pa.clients6.google.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13432608289262876","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"network_stats":{"srtt":20451},"server":"https://accounts.google.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13432608289480626","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"network_stats":{"srtt":13761},"server":"https://payments.sandbox.google.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13432608289989588","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"network_stats":{"srtt":10968},"server":"https://clients2.google.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13432608292598534","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"network_stats":{"srtt":5116},"server":"https://ogs.google.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13432608292636771","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"network_stats":{"srtt":4349},"server":"https://ssl.gstatic.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13432608292760499","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"network_stats":{"srtt":6908},"server":"https://lh3.googleusercontent.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13432608377021418","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"network_stats":{"srtt":9801},"server":"https://android.clients.google.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13432608399848452","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"network_stats":{"srtt":16041},"server":"https://books.google.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13432608372426182","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"network_stats":{"srtt":5688},"server":"https://play.google.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13432608292771177","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"network_stats":{"srtt":5688},"server":"https://www.gstatic.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13432608288553899","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"network_stats":{"srtt":5688},"server":"https://www.google.com"}],"supports_quic":{"address":"192.168.8.238","used_quic":true},"version":5},"network_qualities":{"CAESABiAgICA+P////8B":"4G"}}} \ No newline at end of file diff --git a/chrome-profile/Default/Network/NetworkDataMigrated b/chrome-profile/Default/Network/NetworkDataMigrated new file mode 100644 index 0000000..e69de29 diff --git a/chrome-profile/Default/Network/Reporting and NEL b/chrome-profile/Default/Network/Reporting and NEL new file mode 100644 index 0000000..4662e0a Binary files /dev/null and b/chrome-profile/Default/Network/Reporting and NEL differ diff --git a/chrome-profile/Default/Network/Reporting and NEL-journal b/chrome-profile/Default/Network/Reporting and NEL-journal new file mode 100644 index 0000000..e69de29 diff --git a/chrome-profile/Default/Network/SCT Auditing Pending Reports b/chrome-profile/Default/Network/SCT Auditing Pending Reports new file mode 100644 index 0000000..0637a08 --- /dev/null +++ b/chrome-profile/Default/Network/SCT Auditing Pending Reports @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/chrome-profile/Default/Network/TransportSecurity b/chrome-profile/Default/Network/TransportSecurity new file mode 100644 index 0000000..48bf9c7 --- /dev/null +++ b/chrome-profile/Default/Network/TransportSecurity @@ -0,0 +1 @@ +{"sts":[{"expiry":1798949970.464858,"host":"EUee8fEWEJXzg9tS5msiIFKED/eSKlh6OyfShJAx5qg=","mode":"force-https","sts_include_subdomains":false,"sts_observed":1767413970.46486},{"expiry":1817078689.480726,"host":"Ig45Nr5YWuc3hVnDuvYyIRqQHuf50bxrCvFIE8QJebw=","mode":"force-https","sts_include_subdomains":true,"sts_observed":1785542689.480727},{"expiry":1799050363.994602,"host":"M4bfUnCmQAi4PNb3B8aI/2+SVJhHKsMfMMT7fzi6ij4=","mode":"force-https","sts_include_subdomains":true,"sts_observed":1767514363.994604},{"expiry":1796429088.7006,"host":"Z030MHuAr75Z3Cp3qskx1ltBQH6qfbi1E7Xhe1zqJEs=","mode":"force-https","sts_include_subdomains":true,"sts_observed":1785542688.700601},{"expiry":1817078687.202179,"host":"nAuqgR4iEWti7SOdT3UHPl6rmZU/DeaIm38P2O2OkgA=","mode":"force-https","sts_include_subdomains":false,"sts_observed":1785542687.202179},{"expiry":1796429089.077093,"host":"0Lpay3a407d8/OHbrfUB+xfUWB1p6mu1VfPyyexV51M=","mode":"force-https","sts_include_subdomains":true,"sts_observed":1785542689.077094},{"expiry":1786147599.84888,"host":"1Tc1bB1XA5SLs+qWqC40vIvrvkHNaCNIN/PU44WZAf0=","mode":"force-https","sts_include_subdomains":false,"sts_observed":1785542799.848881},{"expiry":1814931462.527183,"host":"5EdUoB7YUY9zZV+2DkgVXgho8WUvp+D+6KpeUOhNQIM=","mode":"force-https","sts_include_subdomains":false,"sts_observed":1783395462.527185},{"expiry":1817078689.26306,"host":"8/RrMmQlCD2Gsp14wUCE1P8r7B2C5+yE0+g79IPyRsc=","mode":"force-https","sts_include_subdomains":true,"sts_observed":1785542689.263061},{"expiry":1817078692.599176,"host":"+ccWXqaoHJ9hfuXbleKV6FQUrBlyXAJ31BdqjNQJpHs=","mode":"force-https","sts_include_subdomains":false,"sts_observed":1785542692.599177}],"version":2} \ No newline at end of file diff --git a/chrome-profile/Default/Network/Trust Tokens b/chrome-profile/Default/Network/Trust Tokens new file mode 100644 index 0000000..4444dfd Binary files /dev/null and b/chrome-profile/Default/Network/Trust Tokens differ diff --git a/chrome-profile/Default/Network/Trust Tokens-journal b/chrome-profile/Default/Network/Trust Tokens-journal new file mode 100644 index 0000000..e69de29 diff --git a/chrome-profile/Default/Network/a381b0aa-a12a-4b7f-a7ad-1c8011449311.tmp b/chrome-profile/Default/Network/a381b0aa-a12a-4b7f-a7ad-1c8011449311.tmp new file mode 100644 index 0000000..e69de29 diff --git a/chrome-profile/Default/Network/b2f32cc1-3167-40e9-83a6-624896ede8f4.tmp b/chrome-profile/Default/Network/b2f32cc1-3167-40e9-83a6-624896ede8f4.tmp new file mode 100644 index 0000000..07c634a --- /dev/null +++ b/chrome-profile/Default/Network/b2f32cc1-3167-40e9-83a6-624896ede8f4.tmp @@ -0,0 +1 @@ +{"net":{"http_server_properties":{"servers":[{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13414479251280516","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"server":"https://fonts.googleapis.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13414479251652533","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"server":"https://apis.google.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13414479485935344","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",true,0],"server":"https://www.googletagmanager.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13414479486448328","port":443,"protocol_str":"quic"}],"anonymization":["IAAAABwAAABodHRwczovL2dvb2dsZXRhZ21hbmFnZXIuY29t",false,0],"server":"https://www.googletagmanager.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13414479508773828","port":443,"protocol_str":"quic"}],"anonymization":["NAAAAC0AAABodHRwczovL2FjY291bnRjYXBhYmlsaXRpZXMtcGEuZ29vZ2xlYXBpcy5jb20AAAA=",false,0],"server":"https://accountcapabilities-pa.googleapis.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13414479509449342","port":443,"protocol_str":"quic"}],"anonymization":["LAAAACgAAABodHRwczovL3NlY3VyaXR5ZG9tYWluLXBhLmdvb2dsZWFwaXMuY29t",false,0],"server":"https://securitydomain-pa.googleapis.com","supports_spdy":true},{"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"network_stats":{"srtt":4455},"server":"https://play-lh.googleusercontent.com"},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13414479485936023","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"network_stats":{"srtt":5117},"server":"https://www.googletagmanager.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13414479493196970","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",true,0],"network_stats":{"srtt":9882},"server":"https://accounts.youtube.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13414479501504450","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"network_stats":{"srtt":8164},"server":"https://ssl.gstatic.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13414479508176319","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"network_stats":{"srtt":5799},"server":"https://fonts.gstatic.com"},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13414479508227104","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"network_stats":{"srtt":10217},"server":"https://lh3.googleusercontent.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13414479508388614","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"network_stats":{"srtt":4059},"server":"https://www.gstatic.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13414479508606865","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"network_stats":{"srtt":5259},"server":"https://waa-pa.clients6.google.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13414479507185932","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"network_stats":{"srtt":5379},"server":"https://signaler-pa.googleapis.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13414479508751859","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"network_stats":{"srtt":5379},"server":"https://content-autofill.googleapis.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13414479508838523","port":443,"protocol_str":"quic"}],"anonymization":["IAAAABoAAABodHRwczovL3d3dy5nb29nbGVhcGlzLmNvbQAA",false,0],"network_stats":{"srtt":6888},"server":"https://www.googleapis.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13414479508966921","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"network_stats":{"srtt":10217},"server":"https://accounts.google.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13414479509166451","port":443,"protocol_str":"quic"}],"anonymization":["MAAAACoAAABodHRwczovL29hdXRoYWNjb3VudG1hbmFnZXIuZ29vZ2xlYXBpcy5jb20AAA==",false,0],"network_stats":{"srtt":15858},"server":"https://oauthaccountmanager.googleapis.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13414479509316323","port":443,"protocol_str":"quic"}],"anonymization":["LAAAACgAAABodHRwczovL2tpZHNtYW5hZ2VtZW50LXBhLmdvb2dsZWFwaXMuY29t",false,0],"network_stats":{"srtt":4707},"server":"https://kidsmanagement-pa.googleapis.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13414479543700931","port":443,"protocol_str":"quic"}],"anonymization":["HAAAABUAAABjaHJvbWU6Ly9uZXctdGFiLXBhZ2UAAAA=",true,0],"server":"https://apis.google.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13414479547810023","port":443,"protocol_str":"quic"}],"anonymization":["HAAAABUAAABjaHJvbWU6Ly9uZXctdGFiLXBhZ2UAAAA=",true,0],"server":"https://ogs.google.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13414479547844728","port":443,"protocol_str":"quic"}],"anonymization":["HAAAABUAAABjaHJvbWU6Ly9uZXctdGFiLXBhZ2UAAAA=",true,0],"server":"https://ssl.gstatic.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13414479526081058","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"network_stats":{"srtt":4454},"server":"https://play.google.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13414479553107120","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"network_stats":{"srtt":10350},"server":"https://android.clients.google.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13414479546007363","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABMAAABodHRwczovL2dzdGF0aWMuY29tAA==",false,0],"network_stats":{"srtt":5427},"server":"https://encrypted-tbn0.gstatic.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13414479547891551","port":443,"protocol_str":"quic"}],"anonymization":["HAAAABUAAABjaHJvbWU6Ly9uZXctdGFiLXBhZ2UAAAA=",true,0],"network_stats":{"srtt":4608},"server":"https://fonts.gstatic.com"},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13414479547879407","port":443,"protocol_str":"quic"}],"anonymization":["HAAAABUAAABjaHJvbWU6Ly9uZXctdGFiLXBhZ2UAAAA=",true,0],"network_stats":{"srtt":10106},"server":"https://lh3.googleusercontent.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13414479546023840","port":443,"protocol_str":"quic"}],"anonymization":["JAAAAB0AAABodHRwczovL2dvb2dsZXVzZXJjb250ZW50LmNvbQAAAA==",false,0],"network_stats":{"srtt":9965},"server":"https://lh3.googleusercontent.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13414479544780710","port":443,"protocol_str":"quic"}],"anonymization":["HAAAABUAAABjaHJvbWU6Ly9uZXctdGFiLXBhZ2UAAAA=",true,0],"network_stats":{"srtt":4164},"server":"https://play.google.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13414479549604182","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"network_stats":{"srtt":4854},"server":"https://www.google.com"},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13414479547913840","port":443,"protocol_str":"quic"}],"anonymization":["HAAAABUAAABjaHJvbWU6Ly9uZXctdGFiLXBhZ2UAAAA=",true,0],"network_stats":{"srtt":5721},"server":"https://www.gstatic.com","supports_spdy":true}],"supports_quic":{"address":"192.168.8.239","used_quic":true},"version":5},"network_qualities":{"CAESABiAgICA+P////8B":"4G"}}} \ No newline at end of file diff --git a/chrome-profile/Default/Network/d62cd2ac-e788-4a2e-8978-bbec0885c493.tmp b/chrome-profile/Default/Network/d62cd2ac-e788-4a2e-8978-bbec0885c493.tmp new file mode 100644 index 0000000..e69de29 diff --git a/chrome-profile/Default/Network/f8f8015b-8857-4d46-bd40-96f70f9552da.tmp b/chrome-profile/Default/Network/f8f8015b-8857-4d46-bd40-96f70f9552da.tmp new file mode 100644 index 0000000..d3aaf23 --- /dev/null +++ b/chrome-profile/Default/Network/f8f8015b-8857-4d46-bd40-96f70f9552da.tmp @@ -0,0 +1 @@ +{"net":{"http_server_properties":{"servers":[{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13414479251262080","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"server":"https://www.googletagmanager.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13414479251280516","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"server":"https://fonts.googleapis.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13414479251622616","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"server":"https://lh3.googleusercontent.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13414479251652533","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"server":"https://apis.google.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13414479254890091","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"server":"https://content-autofill.googleapis.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13414479254657212","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"network_stats":{"srtt":4734},"server":"https://fonts.gstatic.com"},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13414479266676364","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",true,0],"network_stats":{"srtt":7052},"server":"https://accounts.youtube.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13414479277742216","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"network_stats":{"srtt":9030},"server":"https://accounts.google.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13414479282095399","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"network_stats":{"srtt":7176},"server":"https://android.clients.google.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13414479309443687","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"network_stats":{"srtt":4799},"server":"https://play.google.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13414479250871567","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"network_stats":{"srtt":9418},"server":"https://www.google.com"},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13414479325069192","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"network_stats":{"srtt":7127},"server":"https://www.gstatic.com","supports_spdy":true}],"supports_quic":{"address":"192.168.8.239","used_quic":true},"version":5},"network_qualities":{"CAESABiAgICA+P////8B":"4G"}}} \ No newline at end of file diff --git a/chrome-profile/Default/PersistentOriginTrials/LOCK b/chrome-profile/Default/PersistentOriginTrials/LOCK new file mode 100644 index 0000000..e69de29 diff --git a/chrome-profile/Default/PersistentOriginTrials/LOG b/chrome-profile/Default/PersistentOriginTrials/LOG new file mode 100644 index 0000000..e69de29 diff --git a/chrome-profile/Default/PersistentOriginTrials/LOG.old b/chrome-profile/Default/PersistentOriginTrials/LOG.old new file mode 100644 index 0000000..e69de29 diff --git a/chrome-profile/Default/Preferences b/chrome-profile/Default/Preferences new file mode 100644 index 0000000..e5f1635 --- /dev/null +++ b/chrome-profile/Default/Preferences @@ -0,0 +1 @@ +{"NewTabPage":{"PrevNavigationTime":"13411887543494132"},"accessibility":{"captions":{"headless_caption_enabled":false}},"account_info":[{"access_point":66,"account_id":"101290994956840422522","accountcapabilities":{"accountcapabilities/g42tslldmfya":1,"accountcapabilities/g44tilldmfya":0,"accountcapabilities/ge2dinbnmnqxa":1,"accountcapabilities/ge2tkmznmnqxa":1,"accountcapabilities/ge2tknznmnqxa":1,"accountcapabilities/ge2tkobnmnqxa":1,"accountcapabilities/ge3dgmjnmnqxa":1,"accountcapabilities/ge3dgobnmnqxa":1,"accountcapabilities/ge4tenznmnqxa":1,"accountcapabilities/ge4tgnznmnqxa":0,"accountcapabilities/geydgnznmnqxa":1,"accountcapabilities/geytcnbnmnqxa":1,"accountcapabilities/gezdcnbnmnqxa":1,"accountcapabilities/gezdsmbnmnqxa":0,"accountcapabilities/geztenjnmnqxa":1,"accountcapabilities/gi2tklldmfya":1,"accountcapabilities/giytmnrnmnqxa":1,"accountcapabilities/gizdqmrnmnqxa":1,"accountcapabilities/gu2dqlldmfya":1,"accountcapabilities/gu4dmlldmfya":0,"accountcapabilities/guydolldmfya":0,"accountcapabilities/guzdslldmfya":0,"accountcapabilities/haytqlldmfya":1,"accountcapabilities/he4tolldmfya":0},"email":"aidenmcdougald@gmail.com","full_name":"Aiden McDougald","gaia":"101290994956840422522","given_name":"Aiden","hd":"NO_HOSTED_DOMAIN","is_supervised_child":0,"is_under_advanced_protection":false,"last_downloaded_image_url_with_size":"https://lh3.googleusercontent.com/a/ACg8ocJfO6nP10lem2HmK86S-g3chbxkFVAhHrzae0bwXHovqM4aMEKf=s256-c-ns","locale":"en","picture_url":"https://lh3.googleusercontent.com/a/ACg8ocJfO6nP10lem2HmK86S-g3chbxkFVAhHrzae0bwXHovqM4aMEKf=s96-c"}],"account_tracker_service_last_update":"13430016286078155","aim_eligibility_service":{"aim_eligibility_response":"CAEQARgAIAAwATqrAwo7CgIEAhIDAQIEGgcIBBIBASgBGggIAhICAQIoASIICAEQCjABQAEiCQgCEAoqAQJAASIGCAQQCkABOAoiHggBEgpBZGQgaW1hZ2VzGggIARAKMAFAASICCF0oASIeCAISCUFkZCBmaWxlcxoJCAIQCioBAkABIgIIXCgDIiAIBBIOQWRkIGZyb20gRHJpdmUaBggEEApAASICCGcoBCptCAQaDUNyZWF0ZSBpbWFnZXMiBkNyZWF0ZSoTRGVzY3JpYmUgeW91ciBpbWFnZTIHCAQSAQEoAToJCgRpbWduEgExSgIIZGolQ3JlYXRlIGltYWdlcywgaWxsdXN0cmF0aW9ucywgYW5kIGFydCqDAQgCEAEaBkNhbnZhcyIGQ2FudmFzKg9DcmVhdGUgYW55dGhpbmcyCAgCEgIBAigBOgcKAnJjEgExQhAIBRIMQXNrIGFueXRoaW5nSgIIYGozQSB3b3Jrc3BhY2UgdG8gY3JlYXRlLCBlZGl0LCBhbmQgc2F2ZSB5b3VyIHByb2dyZXNzOgcKBVRvb2xzSgxBc2sgYW55dGhpbmdCDQoJCgN1ZG0SAjUwEAFIAVABWg53d3cuZ29vZ2xlLmNvbVoKZ29vZ2xlLmNvbWIHL3NlYXJjaGoSCgNkZWISC25vY29icm93c2UxaggKA25jYhIBMWoOCgNkZWISB21vYmlsZTFqCgoDZGViEgNtdDE="},"alternate_error_pages":{"backup":true},"apps":{"shortcuts_arch":"","shortcuts_version":1},"autocomplete":{"retention_policy_last_version":150},"autofill":{"last_version_deduped":150},"bookmark":{"storage_computation_last_update":"13430016285662559"},"bound_session_credentials_bound_session_params":{"https://google.com/":{"gapsts_session":"ChNodHRwczovL2dvb2dsZS5jb20vEg5nYXBzdHNfc2Vzc2lvbhrgA1BDUE04AAAAAgAAAAIAAAB4AAAAgAAAAAAAAAAAAAAAsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHYAIwALAAQEcgAgnf/L82w4OuaZ+5ho3G3LidcVOIS+KAOSLBJBWL+tIq4AEAAQAAMAEAAgTdr3Z9BGHm8BeR557OU8KpY20Vul0mncbICudJRCFxUAIKo4KyZAGfll0g/Rt6J3zYKsCUvFs39YH2oBVLsQFrOuAH4AIEJKC0aBY+B5a790bTbydr0wPx/Sqmckk4Id+RedYS3hABCccLFQnmjrpZty4LqdzmnqGJoNAmdwyKG3u0v1U8WexP5nVzmdws5v8L2sddEj0A+KTNkeR5Do3XmFrbI1mWxkhxgNq+czaO5fHLqC/5nnZE3qMI05FqH2E5EAAAAGACCPzSFpq5JpTgxjPxq3coQrgkG7wgKImB/HrB7dwf3bDgAg5Sn11hEocpVOjtZgURe3V+I3xuGVE6lJ/uHyBMRYAjoAIK8spWlpnENqIQBvHLiidWyYvBx2WjVZxf4cP15yKKfnACDEE6hHsRESscvd1Oyk2qoVoYUsHDu6V0YdJXYF89WvUwAAACAEjpo6zghYP3nzRP94W76p8HrH+jMls9SaId1RlMZYUCIpCicKDV9fSG9zdC1HQVBTVFMSE2FjY291bnRzLmdvb2dsZS5jb20aAS8qCQilnOS1psHpFzIraHR0cHM6Ly9hY2NvdW50cy5nb29nbGUuY29tL1JvdGF0ZUJvdW5kR2Fwcw==","sidts_session":"ChNodHRwczovL2dvb2dsZS5jb20vEg1zaWR0c19zZXNzaW9uGuADUENQTTgAAAACAAAAAgAAAHgAAACAAAAAAAAAAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAjAAsABARyACCd/8vzbDg65pn7mGjcbcuJ1xU4hL4oA5IsEkFYv60irgAQABAAAwAQACC4gPus0VibN8fdT8E4iluAtFMzVJQ6cEpGoGZsjgmkwgAg+qWGYuwhXfwvCbRMYa4eoJQabZHsjKfXsrHJlEGBuuQAfgAggSHaqnOZz9lEULpjNR7Jg3iv6yKeBXYGmxgc13JYrusAENQWF7gmmT/1KbxFKsuDB8hURWx05FWtf0gxhZd0TxYfODytpyvyOJkPQR2uOmjbAoVgUKg5Bm1jHLDqui8kX4v3HxT9FPLHymIgVSgdsBFkl5MuLXxfQuTuJwAAAAYAII/NIWmrkmlODGM/GrdyhCuCQbvCAoiYH8esHt3B/dsOACDlKfXWEShylU6O1mBRF7dX4jfG4ZUTqUn+4fIExFgCOgAgryylaWmcQ2ohAG8cuKJ1bJi8HHZaNVnF/hw/XnIop+cAIMQTqEexERKxy93U7KTaqhWhhSwcO7pXRh0ldgXz1a9TAAAAIASOmjrOCFg/efNE/3hbvqnwesf6MyWz1Joh3VGUxlhQIiQKIgoQX19TZWN1cmUtMVBTSURUUxILLmdvb2dsZS5jb20aAS8iJAoiChBfX1NlY3VyZS0zUFNJRFRTEgsuZ29vZ2xlLmNvbRoBLyIlCiMKEV9fU2VjdXJlLTFQU0lEUlRTEgsuZ29vZ2xlLmNvbRoBLyIlCiMKEV9fU2VjdXJlLTNQU0lEUlRTEgsuZ29vZ2xlLmNvbRoBLyoJCKe1y7WmwekXMi5odHRwczovL2FjY291bnRzLmdvb2dsZS5jb20vUm90YXRlQm91bmRDb29raWVz"}},"browser":{"window_placement":{"bottom":983,"left":274,"maximized":false,"right":1570,"top":49,"work_area_bottom":1032,"work_area_left":0,"work_area_right":1920,"work_area_top":0}},"commerce_daily_metrics_last_update_time":"13430016285662513","countryid_at_install":21843,"device_signals":{"permanent_consent_received":false},"domain_diversity":{"last_reporting_timestamp":"13430016286079239","last_reporting_timestamp_v4":"13430016286079246"},"download_bubble":{"partial_view_impressions":6},"enterprise_profile_guid":"6445668a-386c-43ce-9621-84ac43be5962","extensions":{"alerts":{"initialized":true},"chrome_url_overrides":{},"last_chrome_version":"150.0.7871.182"},"gaia_cookie":{"changed_time":1767413907.986021,"hash":"MhNgF7MTz2eljkV2ov2ubLiwtUc=","last_list_accounts_binary_data":"CroBCAESD0FpZGVuIE1jRG91Z2FsZBoYYWlkZW5tY2RvdWdhbGRAZ21haWwuY29tImJodHRwczovL2xoMy5nb29nbGV1c2VyY29udGVudC5jb20vLURXMkpHcGttUGt3L0FBQUFBQUFBQUFJL0FBQUFBQUFBQUFBL1dNdFdmQmRUZW04L3M0OC1jL3Bob3RvLmpwZygBMAE4AEgBUhUxMDEyOTA5OTQ5NTY4NDA0MjI1MjJ4AYIBBUFpZGVu","periodic_report_time_2":"13430016285480140"},"gcm":{"product_category_for_subtypes":"com.googlechromefortesting.windows"},"glic":{"partition_needs_cookie_sync":true,"previously_not_allowed":false},"google":{"services":{"signin":{"LAST_SIGNIN_ACCESS_POINT":{"time":"2026-01-03T04:18:28.553Z","value":"66"},"REFRESH_TOKEN_RECEIVED":{"time":"2026-01-03T04:18:28.552Z","value":"Successful (101290994956840422522)"}},"signin_scoped_device_id":"c9fa89e7-2a90-4765-8b78-ffba3ee85fd6"}},"history_clusters":{"all_cache":{"all_keywords":{},"all_timestamp":"0"},"short_cache":{"short_keywords":{},"short_timestamp":"0"}},"https_upgrade_navigations":{"2026-01-03":60},"in_product_help":{"recent_session_enabled_time":"13411887247730980","recent_session_start_times":["13430016285562157","13427869060114321"],"session_last_active_time":"13430016285562157","session_number":9,"session_start_time":"13430016285562157"},"intl":{"selected_languages":"en-US,en"},"invalidation":{"per_sender_registered_for_invalidation":{"1013309121859":{},"947318989803":{}}},"media":{"device_id_salt":"23E4A9111977EE493A1076E9E15E067C","engagement":{"schema_version":5}},"migrated_user_scripts_toggle":true,"ntp":{"compose_button":{"shown_count":2},"num_personal_suggestions":2},"password_manager":{"account_store_backup_password_cleaning_last_timestamp":"13430016345483700","account_store_migrated_to_os_crypt_async":true,"profile_store_backup_password_cleaning_last_timestamp":"13430016345484064","profile_store_migrated_to_os_crypt_async":true},"prefs":{"tracked_preferences_reset":["extensions.settings.ahfgeienlihckogmohjhadlkjgocpleb","extensions.settings.mhjfbmdgcfjbbpaeojofohoefgiehjai"]},"privacy_sandbox":{"first_party_sets_data_access_allowed_initialized":true},"profile":{"avatar_index":26,"background_password_check":{"check_fri_weight":9,"check_interval":"864000000000","check_mon_weight":4,"check_sat_weight":4,"check_sun_weight":4,"check_thu_weight":9,"check_tue_weight":9,"check_wed_weight":9,"next_check_time":"13428455510202586"},"content_settings":{"exceptions":{"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":{"https://accounts.google.com:443,*":{"last_modified":"13411887565864440","setting":{"client_hints":[9,10,11,13,14,16,23,25,29]}},"https://play.google.com:443,*":{"last_modified":"13411887566030073","setting":{"client_hints":[9,10,11,13,14,16,23,25,29]}},"https://www.google.com:443,*":{"last_modified":"13411887508161248","setting":{"client_hints":[4,5,9,10,11,13,14,15,16,23,25,29]}}},"clipboard":{},"controlled_frame":{},"cookie_controls_metadata":{"https://[*.]google.com,*":{"last_modified":"13430016287111792","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":"13430016286978469","setting":{"chosen-objects":[{"idp-origin":"https://accounts.google.com","idp-signin-status":true}]}}},"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":{},"geolocation_with_options":{},"hand_tracking":{},"has_migrated_local_network_access":true,"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":{},"local_network_access":{},"loopback_network":{},"media_engagement":{"https://play.google.com:443,*":{"expiration":"13437792410327905","last_modified":"13430016410327909","lifetime":"7776000000000","setting":{"hasHighScore":false,"lastMediaPlaybackTime":0.0,"mediaPlaybacks":0,"visits":25}}},"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_actions_history":{},"permission_autoblocking_data":{},"permission_autorevocation_data":{},"pointer_lock":{},"popups":{},"protected_media_identifier":{},"protocol_handler":{},"reduced_accept_language":{},"safe_browsing_url_check_data":{},"sensors":{},"serial_chooser_data":{},"serial_guard":{},"site_engagement":{"chrome://newtab/,*":{"last_modified":"13430016286153655","setting":{"lastEngagementTime":1.3429799532305e+16,"lastShortcutLaunchTime":0.0,"pointsAddedToday":0.0,"rawScore":4.5}},"https://play.google.com:443,*":{"last_modified":"13430016391021939","setting":{"lastEngagementTime":1.3430016391021928e+16,"lastShortcutLaunchTime":0.0,"pointsAddedToday":6.599999999999999,"rawScore":41.90989935442895}}},"sound":{},"speaker_selection":{},"ssl_cert_decisions":{},"storage_access":{},"storage_access_header_origin_trial":{},"sub_apps_without_prompts":{},"subresource_filter":{},"subresource_filter_data":{},"suspicious_notification_ids":{},"suspicious_notification_show_original":{},"third_party_storage_partitioning":{},"top_level_storage_access":{},"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":"143.0.7499.4","creation_time":"13411887247486271","default_content_setting_values":{"has_migrated_local_network_access":true},"exit_type":"Normal","family_member_role":"not_in_family","last_engagement_time":"13430016391021927","last_time_obsolete_http_credentials_removed":1785542745.483828,"last_time_password_store_metrics_reported":1785542715.482316,"managed":{"custodian_email":"ls4714@gmail.com","custodian_name":"Lorraine Smith","custodian_obfuscated_gaia_id":"117731638384337243700","custodian_profile_image_url":"https://lh3.googleusercontent.com/a/ACg8ocJhtv23bhGQbcs8uIpPYhw3lhIGeFGa3i--ToD0GvPIZM9d0NBItA","custodian_profile_url":"","locally_parent_approved_extensions":{},"locally_parent_approved_extensions_migration_state":1},"managed_user_id":"","name":"Your Chromium","password_hash_data_list":[],"were_old_google_logins_removed":true},"profile_network_context_service":{"http_cache_finch_experiment_groups":"None None None None"},"safebrowsing":{"advanced_protection_last_refresh":"13430016287988164","event_timestamps":{},"hash_real_time_ohttp_expiration_time":"13430275486136794","hash_real_time_ohttp_key":"oAAgDcdidFhViLvgqKbUDGrOUi+MRMcMUDNVqd4GWc04ln4ABAABAAI=","hash_real_time_ohttp_key_fetch_url":"https://safebrowsingohttpgateway.googleapis.com/v1/ohttp/hpkekeyconfig","metrics_last_log_time":"13430016285","scout_reporting_enabled_when_deprecated":false,"unhandled_sync_password_reuses":{}},"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":"ClIKDXNob3BwaW5nX3VzZXISQQo2DQAAAAAQvPmMs/XQ7RcaJAocChoNAAAAPxIMU2hvcHBpbmdVc2VyGgVPdGhlchIEEAIYBCADEIj6jLP10O0XCmQKC3NlYXJjaF91c2VyElUKSg0AAAAAEMf8jLP10O0XGjgKMBouCgoNAACAPxIDTG93Cg0NAACgQBIGTWVkaXVtCgsNAACwQRIESGlnaBIETm9uZRIEEAcYBCACEO/8jLP10O0XCnMKFXBhc3N3b3JkX21hbmFnZXJfdXNlchJaCk8NAAAAABD4+4yz9dDtFxo9CjUKMw0AAAA/EhNQYXNzd29yZE1hbmFnZXJVc2VyGhdOb3RfUGFzc3dvcmRNYW5hZ2VyVXNlchIEEAcYBCABENr8jLP10O0XCmoKGmNocm9tZV9sb3dfdXNlcl9lbmdhZ2VtZW50EkwKQQ0AAIA/ENT4jLP10O0XGi8KJwolDQAAAD8SF0Nocm9tZUxvd1VzZXJFbmdhZ2VtZW50GgVPdGhlchIEEAcYBCACEP/4jLP10O0XCo8BChZjaHJvbWVfdXNlcl9lbmdhZ2VtZW50EnUKag0AAABAEKf8jLP10O0XGlgKUBpOCgsNAACAPxIETm9uZQoNDQAAAEASBk9uZURheQoKDQAAQEASA0xvdwoNDQAAgEASBk1lZGl1bQoMDQAAoEASBVBvd2VyEgdVbmtub3duEgQQARgEIAEQ5fyMs/XQ7RcK5QIKEWNyb3NzX2RldmljZV91c2VyEs8CCsMCDQAAgD8Q5/mMs/XQ7RcasAIKpwIapAIKGQ0AAIA/EhJOb0Nyb3NzRGV2aWNlVXNhZ2UKGA0AAABAEhFDcm9zc0RldmljZU1vYmlsZQoZDQAAQEASEkNyb3NzRGV2aWNlRGVza3RvcAoYDQAAgEASEUNyb3NzRGV2aWNlVGFibGV0CiINAACgQBIbQ3Jvc3NEZXZpY2VNb2JpbGVBbmREZXNrdG9wCiENAADAQBIaQ3Jvc3NEZXZpY2VNb2JpbGVBbmRUYWJsZXQKIg0AAOBAEhtDcm9zc0RldmljZURlc2t0b3BBbmRUYWJsZXQKIA0AAABBEhlDcm9zc0RldmljZUFsbERldmljZVR5cGVzChcNAAAQQRIQQ3Jvc3NEZXZpY2VPdGhlchISTm9Dcm9zc0RldmljZVVzYWdlEgQQBxgEIAIQlPqMs/XQ7RcKYAoRcmVzdW1lX2hlYXZ5X3VzZXISSwpADQAAAAAQs/uMs/XQ7RcaLgomCiQNAAAAPxIWUmVzdW1lSGVhdnlVc2VyU2VnbWVudBoFT3RoZXISBBAOGAQgAhDZ+4yz9dDtFw==","device_switcher_util":{"result":{"labels":["NotSynced"]}},"last_db_compaction_time":"13429929599000000","uma_in_sql_start_time":"13411887247500226"},"sessions":{"event_log":[{"did_schedule_command":true,"first_session_service":true,"tab_count":2,"time":"13411986729156283","type":2,"window_count":1},{"crashed":false,"time":"13411987963382092","type":0},{"did_schedule_command":true,"first_session_service":true,"tab_count":2,"time":"13411988078668014","type":2,"window_count":1},{"crashed":false,"time":"13415667109267010","type":0},{"did_schedule_command":true,"first_session_service":true,"tab_count":2,"time":"13415667130017085","type":2,"window_count":1},{"crashed":false,"time":"13415668310024952","type":0},{"did_schedule_command":true,"first_session_service":true,"tab_count":1,"time":"13415668421885129","type":2,"window_count":1},{"crashed":false,"time":"13418369824035840","type":0},{"did_schedule_command":true,"first_session_service":true,"tab_count":2,"time":"13418369919228739","type":2,"window_count":1},{"crashed":false,"time":"13422789181433378","type":0},{"did_schedule_command":true,"first_session_service":true,"tab_count":2,"time":"13422789212925666","type":2,"window_count":1},{"crashed":false,"time":"13423125360293206","type":0},{"did_schedule_command":true,"first_session_service":true,"tab_count":2,"time":"13423125388183492","type":2,"window_count":1},{"crashed":false,"time":"13423125423985395","type":0},{"did_schedule_command":true,"first_session_service":true,"tab_count":2,"time":"13423125450419042","type":2,"window_count":1},{"crashed":false,"time":"13427869060093963","type":0},{"did_schedule_command":true,"first_session_service":true,"tab_count":2,"time":"13427869090524895","type":2,"window_count":1},{"crashed":false,"time":"13430016285481495","type":0},{"did_schedule_command":true,"first_session_service":true,"tab_count":2,"time":"13430016410316770","type":2,"window_count":1}],"session_data_status":5},"settings":{"force_google_safesearch":false},"signin":{"accounts_metadata_dict":{},"allowed":true,"prefs_themes_search_engines_account_storage_enabled":true,"signin_with_explicit_browser_signin_on":true},"site_search_settings":{"overridden_keywords":[]},"spellcheck":{"dictionaries":["en-US"],"dictionary":""},"syncing_theme_prefs_migrated_to_non_syncing":true,"tab_search":{"pinned_to_tabstrip":true,"pinned_to_tabstrip_migration_complete":true,"pinned_to_tabstrip_migration_complete_2":true},"toolbar":{"pinned_cast_migration_complete":true,"pinned_chrome_labs_migration_complete":true,"tab_search_migration_complete":true},"total_passwords_available_for_account":0,"total_passwords_available_for_profile":0,"translate_site_blacklist":[],"translate_site_blocklist_with_time":{},"web_apps":{"did_migrate_default_chrome_apps":["MigrateDefaultChromeAppToWebAppsGSuite","MigrateDefaultChromeAppToWebAppsNonGSuite"],"last_preinstall_synchronize_version":"150","web_app_ids":{"mdpkiolbdkhdjpekfbkbmhigcaggjagi":{"default_app_startup_update_last_ignore_time":"13411899776134606"}}},"zerosuggest":{"cachedresults":")]}'\n[\"\",[\"abrego garcia\",\"muppet movie with time travel\",\"jasminemanoban7\",\"jam mechanics bandcamp\",\"chicken bake nutrition facts costco\",\"cartesian demon\",\"Why is Windows 11 adopting the Rust programming language?\",\"Why do video game developers struggle with creating effective tutorials?\"],[\"history\",\"history\",\"history\",\"history\",\"history\",\"history\",\"\",\"\"],[],{\"google:clientdata\":{\"bpc\":false,\"tlw\":false},\"google:groupsinfo\":\"ChwIyN8CEhYKEkV4cGxvcmUgaW4gQUkgTW9kZSgX\",\"google:suggestdetail\":[{\"du\":\"/complete/deleteitems?client\\u003dchrome-omni\\u0026delq\\u003dabrego+garcia\\u0026deltok\\u003dAMc44K5OVhfEQAYXt_BHAoRnYuatw4XTBQ\\u0026gs_ri\\u003dchrome-ext-ansg\",\"zl\":40000},{\"du\":\"/complete/deleteitems?client\\u003dchrome-omni\\u0026delq\\u003dmuppet+movie+with+time+travel\\u0026deltok\\u003dAMc44K583C2n_9Zr5PjiK6gxUwjQGPAHTQ\\u0026gs_ri\\u003dchrome-ext-ansg\",\"zl\":40000},{\"du\":\"/complete/deleteitems?client\\u003dchrome-omni\\u0026delq\\u003djasminemanoban7\\u0026deltok\\u003dAMc44K7BW7KPUQtCR25UwEsMkCGQDq2rJg\\u0026gs_ri\\u003dchrome-ext-ansg\",\"zl\":40000},{\"du\":\"/complete/deleteitems?client\\u003dchrome-omni\\u0026delq\\u003djam+mechanics+bandcamp\\u0026deltok\\u003dAMc44K5wKQ7ylFaLQnsY13kxCabxIqtA2A\\u0026gs_ri\\u003dchrome-ext-ansg\",\"zl\":40000},{\"du\":\"/complete/deleteitems?client\\u003dchrome-omni\\u0026delq\\u003dchicken+bake+nutrition+facts+costco\\u0026deltok\\u003dAMc44K7VbRsQ726fvpKxgzDLBJRYcZI50g\\u0026gs_ri\\u003dchrome-ext-ansg\",\"zl\":40000},{\"du\":\"/complete/deleteitems?client\\u003dchrome-omni\\u0026delq\\u003dcartesian+demon\\u0026deltok\\u003dAMc44K4SSYC8CaIZaGNpzDMn8HKnrLlg4w\\u0026gs_ri\\u003dchrome-ext-ansg\",\"zl\":40000},{\"du\":\"/complete/deleteitems?client\\u003dchrome-omni\\u0026delq\\u003dWhy+is+Windows+11+adopting+the+Rust+programming+language?\\u0026ucq\\u003d1\\u0026deltok\\u003dAMc44K5rdD_IzfrLaEjETHd6K5G34XqqTA\\u0026gs_ri\\u003dchrome-ext-ansg\",\"google:suggesttemplate\":\"CAIQAxo7CjlXaHkgaXMgV2luZG93cyAxMSBhZG9wdGluZyB0aGUgUnVzdCBwcm9ncmFtbWluZyBsYW5ndWFnZT8yCQoDdWRtEgI1MDIJCgNhZXASAjI5\",\"zl\":45000},{\"du\":\"/complete/deleteitems?client\\u003dchrome-omni\\u0026delq\\u003dWhy+do+video+game+developers+struggle+with+creating+effective+tutorials?\\u0026ucq\\u003d1\\u0026deltok\\u003dAMc44K5JCWdD8OLvYPsgAGAzdr6Oe-gbVw\\u0026gs_ri\\u003dchrome-ext-ansg\",\"google:suggesttemplate\":\"CAIQAxpKCkhXaHkgZG8gdmlkZW8gZ2FtZSBkZXZlbG9wZXJzIHN0cnVnZ2xlIHdpdGggY3JlYXRpbmcgZWZmZWN0aXZlIHR1dG9yaWFscz8yCQoDdWRtEgI1MDIJCgNhZXASAjI5\",\"zl\":45000}],\"google:suggesteventid\":\"3082173093825608780\",\"google:suggestrelevance\":[605,604,603,602,601,600,551,550],\"google:suggestsubtypes\":[[362,39],[362,39],[362,39],[362,39],[362,39],[362,39],[731,798,752,362,308],[731,798,752,362,308]],\"google:suggesttype\":[\"PERSONALIZED_QUERY\",\"PERSONALIZED_QUERY\",\"PERSONALIZED_QUERY\",\"PERSONALIZED_QUERY\",\"PERSONALIZED_QUERY\",\"PERSONALIZED_QUERY\",\"QUERY\",\"QUERY\"],\"google:verbatimrelevance\":851}]"}} \ No newline at end of file diff --git a/chrome-profile/Default/PreferredApps b/chrome-profile/Default/PreferredApps new file mode 100644 index 0000000..7d3a425 --- /dev/null +++ b/chrome-profile/Default/PreferredApps @@ -0,0 +1 @@ +{"preferred_apps":[],"version":1} \ No newline at end of file diff --git a/chrome-profile/Default/README b/chrome-profile/Default/README new file mode 100644 index 0000000..91b7ac6 --- /dev/null +++ b/chrome-profile/Default/README @@ -0,0 +1 @@ +Google Chrome for Testing settings and storage represent user-selected preferences and information and MUST not be extracted, overwritten or modified except through Google Chrome for Testing defined APIs. \ No newline at end of file diff --git a/chrome-profile/Default/Safe Browsing Network/NetworkDataMigrated b/chrome-profile/Default/Safe Browsing Network/NetworkDataMigrated new file mode 100644 index 0000000..e69de29 diff --git a/chrome-profile/Default/Safe Browsing Network/Safe Browsing Cookies b/chrome-profile/Default/Safe Browsing Network/Safe Browsing Cookies new file mode 100644 index 0000000..903fbb8 Binary files /dev/null and b/chrome-profile/Default/Safe Browsing Network/Safe Browsing Cookies differ diff --git a/chrome-profile/Default/Safe Browsing Network/Safe Browsing Cookies-journal b/chrome-profile/Default/Safe Browsing Network/Safe Browsing Cookies-journal new file mode 100644 index 0000000..e69de29 diff --git a/chrome-profile/Default/Secure Preferences b/chrome-profile/Default/Secure Preferences new file mode 100644 index 0000000..449e9f4 --- /dev/null +++ b/chrome-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":"13411887484489229","from_webstore":false,"incognito_content_settings":[],"incognito_preferences":{},"last_update_time":"13411887484489229","location":5,"manifest":{"app":{"launch":{"web_url":"https://chrome.google.com/webstore"},"urls":["https://chrome.google.com/webstore"]},"description":"Discover great apps, games, extensions and themes for Google Chrome.","icons":{"128":"webstore_icon_128.png","16":"webstore_icon_16.png"},"key":"MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCtl3tO0osjuzRsf6xtD2SKxPlTfuoy7AWoObysitBPvH5fE1NaAA1/2JkPWkVDhdLBWLaIBPYeXbzlHp3y4Vv/4XG+aN5qFE3z+1RU/NqkzVYHtIpVScf3DjTYtKVL66mzVGijSoAIwbFCC3LpGdaoe6Q1rSRDp76wR6jjFzsYwQIDAQAB","name":"Web Store","permissions":["webstorePrivate","management","system.cpu","system.display","system.memory","system.network","system.storage"],"version":"0.2"},"needs_sync":true,"page_ordinal":"n","path":"C:\\Program Files\\Google\\Chrome\\Application\\143.0.7499.170\\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":"13411887484489481","from_webstore":false,"incognito_content_settings":[],"incognito_preferences":{},"last_update_time":"13411887484489481","location":5,"manifest":{"content_security_policy":"script-src 'self' 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","web_accessible_resources":["pdf_embedder.css"]},"path":"C:\\Program Files\\Google\\Chrome\\Application\\143.0.7499.170\\resources\\pdf","preferences":{},"regular_only_preferences":{},"was_installed_by_default":false,"was_installed_by_oem":false}}},"google":{"services":{"account_id":"101290994956840422522","last_signed_in_username":"aidenmcdougald@gmail.com"}},"pinned_tabs":[],"prefs":{"preference_reset_time":"13411887484480713"},"prefs.tracked_preferences_reset":["extensions.settings.ahfgeienlihckogmohjhadlkjgocpleb","extensions.settings.mhjfbmdgcfjbbpaeojofohoefgiehjai"],"protection":{"macs":{"account_values":{"browser":{"show_home_button":"6ABB026F4215A722BA0BADDA8E449B61E0492E971C0170665BB7FF005E8CE58A","show_home_button_encrypted_hash":"djEwkrxFP4odcFtekA4EkVDisvUIPTOJaEG/oU6QjN5HtG5YmYKBlUsapKZvDqVWgYsdODq1IxWH6LFacelP"},"extensions":{"ui":{"developer_mode":"F171B316677C776E0D87FB824E9306658FD0C7619DEFAF81949014BF571E4969","developer_mode_encrypted_hash":"djEwLyIfI/1/1Tzng0QjWy/OEX9w68PcBSyAb/CJbEyK6R+S6bLd/vtvQEFX6U0A1AN8CrNQfndezc6+pjVm"}},"homepage":"70F9CD84C8BDD8ABB882F6DC8B3CC6E11B705C2052665D5BF55AD1B564AFC967","homepage_encrypted_hash":"djEw+K0SxzO+/aJrc1pYAzhe7/w9VD11EAZrfRS3i5GHnKJ4YkG8GzPTYsh1vCa8lQHyOdR/BukG1DkyFaAk","homepage_is_newtabpage":"373E466FA108E8DCC2577CE72460264C29B1FDD563E533A78E560307FB66C274","homepage_is_newtabpage_encrypted_hash":"djEwPMKU6BBA0qUKW5kgOMUixqGYehWYzXvyvV8BTWRJhgBCyplK1Ma6hLpIkXpwWG0y5dnQX/1MKUvGzOFx","session":{"restore_on_startup":"C24F1485AF9A7E94A18FE071BD1D562CD1EC601FFF70781BE72CCC2272A87C31","restore_on_startup_encrypted_hash":"djEwwgl5wtQKxC5Gu1SMZKqYz8HTTRz6Qn/NwAQ28qapdgEAAU+X+sGV5XOOr+Ipx+TxA2iHVC1mA+mTc4QC","startup_urls":"5E565A38285681A10D54A2894E68983B306A77C424C2F0248DA7CE00192CBE4D","startup_urls_encrypted_hash":"djEwIBtQZyInlVvhgN179sZ46p7YRzKcsgQFDHcW/3zf3JlsxoczEqz+WkW/YbSt4Zb8hAygep5lmCEPCiVC"}},"browser":{"show_home_button":"3B4171819A65A1C280D17E9ED5F54C29005696C4A8C34C6965F6565BDD817FAC","show_home_button_encrypted_hash":"djEwSru+YgT+puCANyqqlJLHdzzujbBylz0DmaTi6NYXvvfxSTD+AF3czB3PJd24lNa1FqCfd8+9/r4U9OB/"},"default_search_provider_data":{"template_url_data":"E2D71BBE2206A77E20A737C7242FFDB04D99B5A4E1CAE7E2F3437C24C4DA8DC4","template_url_data_encrypted_hash":"djEwvjRLnzXd6JSahuFuQzVv8ySKzXoEy8WUAYAW/WT3v0FCbTH1nwSFaEVO5beQqmMGV7OMqD2rv/FxD3uY"},"enterprise_signin":{"policy_recovery_token":"F4EB8875A51A4507265B8893736B27171A888B0D36E305203895D5B93147992D","policy_recovery_token_encrypted_hash":"djEwpv587C8wltqcW9pea/mKp1c9seNZ6kuGe5VMjMBM58iSDlsS8VLzhBlkWcrF49wKQyUmEmGIN8V80ROL"},"extensions":{"install":{"initiallist":"7ADDAA8503144FF22ADA342695C75962F31CF24892873C798BB40B50EE516ACD","initiallist_encrypted_hash":"djEwQGiPCc3OiXRQzlSuf19MB6j71yzsXEWmnGfHMdXyAEioe7yLYrgI0w4n45IUdl537INp9F/ibCp7E/Ny","initialprovidername":"0CE64047B29681E66F1A20241AAD7638E84F22305121731CDEAE0E7F6F186B3C","initialprovidername_encrypted_hash":"djEwG6Xkok1t2+RYWlM3exKPhhwtoG9BtZ/5bVGt826Sb4G9Wsjq/6JCtqZ5q2VZ6hdcRQ5xRYysHiiIPpX2"},"settings":{"ahfgeienlihckogmohjhadlkjgocpleb":"485EF750DDBC10DB16188868FF3FB9DF85228B89D695265DD02EB0DC963757F8","mhjfbmdgcfjbbpaeojofohoefgiehjai":"658C9B21992ED6DC9745B0218C51995859062157B41B04D0283E2C6186A3215A"},"settings_encrypted_hash":{"ahfgeienlihckogmohjhadlkjgocpleb":"djEwg3eKf0mnvmN2ogJtp91UZ7PPKCXRtM0sOFZdyyvNgRnYnu58yq4geNlGOBg14JnFsJZLeXQCSMhbcEbG","mhjfbmdgcfjbbpaeojofohoefgiehjai":"djEwY4oo0gUk4tjN1yD1WRnSHXsZ7GiYQhvB5Pcyhj6suvFh53Qu5AfCre41OpCpeCmEnCNhsWxFlnLPjKA3"},"ui":{"developer_mode":"F9B262B5BACFF66E675AC4623B3261851180BDD18D7EFB4C340CBF896F4EA1DA","developer_mode_encrypted_hash":"djEwnNaOivwMQ9RQ+fGmDV2XrBC3CLxjhEdtRJ+y1ebZuYKBbyXB3a+KunptTn4Wgzre0giQDrkfzxgqNWtl"}},"google":{"services":{"account_id":"0D07837FF33CFA525B0E4A8B3A37A3B2E1213DE99A634B0280FE23F23C1C83F8","account_id_encrypted_hash":"djEw5hI+QVIPnJrNomfH89dsnGZMpT4+fyFOV1d0QU+vqAx/7EtQkXdOTGjmoApLJfgFtTVxmNq0CitruonQ","last_signed_in_username":"E72A3276C2BC3E251AE9F1991D49C3A3482DCF2E8C1BE9BCC2A274DD8AA54CC1","last_signed_in_username_encrypted_hash":"djEw2eJc8g6V+i3lvpgEGD9xsE8631YHoL54EfdxdB3D7HFEtmH14YoGZmnsH0pFI6oKEX0u/A5vYB4qd2Au","last_username":"510A89215106CA56286CAA12A7DF744F60D79FE266272B7CDCC8996F4B46C68B","last_username_encrypted_hash":"djEwm4tIDeoZgDuUQd1hcgry3bgi2hUhvO+XBgMAMQY1l85/NJQesfzE126aQaXjv16Viks4Y9A0Jc0G/YDO"}},"homepage":"574B6052125E16712533BF3A695C3B180371B8DFB444BA1894F1E1370B283401","homepage_encrypted_hash":"djEwIRfgtozl2ixMeQpuw6sB/JDS/RzksSV2+Plip9K+iczts//kpi8TTucozA7g3iHN/tsAlrjjfp5j1WRo","homepage_is_newtabpage":"547FE530D674DAAE6A4E66090AE0EFF64FC4F8C28CD7F2804682E3E537F83713","homepage_is_newtabpage_encrypted_hash":"djEwNJGYoc5HU9Y4Fm7GCjuP85H9rwIfY24a0R22GrbjM4VmyfP5QaaN+aAkd4vPy8cxlkqhc2pJwGZ/qZVx","media":{"cdm":{"origin_data":"0D8265164B6A5B77E3241BB0F4CBB4BE2824C225DFFFF6E05E1173FADE9DBA17","origin_data_encrypted_hash":"djEwovdrwNB6Tx51O4z0dAQ+dkLjT++STWqbJjgqcq8NLAXN3h9cMYDwkOMt2ZiS8RZSY9+69/a2+2GnCeWA"},"storage_id_salt":"29929593AC844B038D297B3528ECB47BF23F0C0A226CE80CE4689E3EC745D2BB","storage_id_salt_encrypted_hash":"djEwVszUy1AQNU5gLW1jccVolBBusKxrULuhouwn3GDXObcxyK5uXk3KsFlQm8svUDna3A6HhYWMAddWXLMR"},"pinned_tabs":"6A79D09DA335E850685F6E73C66AE4E92812B96A9BA6A27A17F66E803FEEC42E","pinned_tabs_encrypted_hash":"djEweL/QWwcy2TkVqyGmy4a/OKla2ZSYMpX7zeNf5fLHRncLtS8TQfF7p2DVjg7wq9h3eIRCs2Qpsx+Reo4I","prefs":{"preference_reset_time":"EA16739DBDEBC9026123B22A2B4BB05D9B4553CA35A9D02A76D843D2B64F49AC","preference_reset_time_encrypted_hash":"djEwCmh3ke0BTFv7wTf6Dry6QUDtDZO6JzC79l7baw68xaKxo1f07XDFzzxDr7ROqNjjEeIciPtqRUkOZ1LF"},"safebrowsing":{"incidents_sent":"B565C3C44DF19589981126E4FDE9A9A78B755ECD60E28C172BE2BDF5848044F4","incidents_sent_encrypted_hash":"djEwulbEgARBSDqDWxF/jJCwyNuktgNgWMeyKCshQeHbjcoMiRFYZtI0fP7tMwOSxJR0Cc6v9Qq93zXrhDjA"},"schedule_to_flush_to_disk":"9C3B51B3ABD3D9DED2B88ACD4DB7DF45239359E39BD1ED9868BB44D4BF02AF22","schedule_to_flush_to_disk_encrypted_hash":"djEwu0FzevfhQOC80rrDQ/CzjL/KHAoGvoCvFspfyjlr+vBRsDMz9UZ7Af0OEspnh1Y6LueNOz6379rbq8kj","search_provider_overrides":"B8C90A0071EAB41E2A53E5E9EA4FE709A8CD2A648F2505AAB90DB3532329AE4F","search_provider_overrides_encrypted_hash":"djEwMvIV1PdnOltmD+14QMKubghkPI9lZvG9XtPfd1h9uE8CnYuqUmKnkUJj1aQQWxCM+JEQ8xJE232tnW76","session":{"restore_on_startup":"5817A498493543CD40D684D09F88F27AE1A0980EE255A428B4FA8E63AAF64A40","restore_on_startup_encrypted_hash":"djEw9J2+qRf9lIJSGOHP+DVEcY6NnVbirUZXQcu0X50A2HW1Aq/Qk3AgYN/MwlTDIiv4b4nVEh/jmwPvKAbz","startup_urls":"4EA1BA2964CA14B0C52C70A0CFF0D110D321F93C1B715E35DB3009EAB67E0F90","startup_urls_encrypted_hash":"djEwngBGimHczMMwWYT55AsIh7NljF9BWuWXYXnE5FPNEhgJENAgWmpHx0qAojkJ8H9KcZ4suVBNpttKSq/x"}},"super_encrypted_hash":"djEw6Hg1JcZFM9WXUNOTB+yrykTRoPXA15obOwyv80Cgm5ftYWgFtycLk+x7q4YsuI3N4j6R1KYcZ/uyjBQt","super_mac":"81FE7D874DFA8CBC6B486C8E4618754C4EB0146D6DCFB45365FAC236E370EBD4"},"schedule_to_flush_to_disk":"13430016285662231"} \ No newline at end of file diff --git a/chrome-profile/Default/Segmentation Platform/SegmentInfoDB/LOCK b/chrome-profile/Default/Segmentation Platform/SegmentInfoDB/LOCK new file mode 100644 index 0000000..e69de29 diff --git a/chrome-profile/Default/Segmentation Platform/SegmentInfoDB/LOG b/chrome-profile/Default/Segmentation Platform/SegmentInfoDB/LOG new file mode 100644 index 0000000..e69de29 diff --git a/chrome-profile/Default/Segmentation Platform/SegmentInfoDB/LOG.old b/chrome-profile/Default/Segmentation Platform/SegmentInfoDB/LOG.old new file mode 100644 index 0000000..e69de29 diff --git a/chrome-profile/Default/Segmentation Platform/SignalDB/LOCK b/chrome-profile/Default/Segmentation Platform/SignalDB/LOCK new file mode 100644 index 0000000..e69de29 diff --git a/chrome-profile/Default/Segmentation Platform/SignalDB/LOG b/chrome-profile/Default/Segmentation Platform/SignalDB/LOG new file mode 100644 index 0000000..e69de29 diff --git a/chrome-profile/Default/Segmentation Platform/SignalDB/LOG.old b/chrome-profile/Default/Segmentation Platform/SignalDB/LOG.old new file mode 100644 index 0000000..e69de29 diff --git a/chrome-profile/Default/Segmentation Platform/SignalStorageConfigDB/LOCK b/chrome-profile/Default/Segmentation Platform/SignalStorageConfigDB/LOCK new file mode 100644 index 0000000..e69de29 diff --git a/chrome-profile/Default/Segmentation Platform/SignalStorageConfigDB/LOG b/chrome-profile/Default/Segmentation Platform/SignalStorageConfigDB/LOG new file mode 100644 index 0000000..e69de29 diff --git a/chrome-profile/Default/Segmentation Platform/SignalStorageConfigDB/LOG.old b/chrome-profile/Default/Segmentation Platform/SignalStorageConfigDB/LOG.old new file mode 100644 index 0000000..e69de29 diff --git a/chrome-profile/Default/ServerCertificate b/chrome-profile/Default/ServerCertificate new file mode 100644 index 0000000..9587f64 Binary files /dev/null and b/chrome-profile/Default/ServerCertificate differ diff --git a/chrome-profile/Default/ServerCertificate-journal b/chrome-profile/Default/ServerCertificate-journal new file mode 100644 index 0000000..e69de29 diff --git a/chrome-profile/Default/Service Worker/Database/000003.log b/chrome-profile/Default/Service Worker/Database/000003.log new file mode 100644 index 0000000..1bd4ebc Binary files /dev/null and b/chrome-profile/Default/Service Worker/Database/000003.log differ diff --git a/chrome-profile/Default/Service Worker/Database/CURRENT b/chrome-profile/Default/Service Worker/Database/CURRENT new file mode 100644 index 0000000..7ed683d --- /dev/null +++ b/chrome-profile/Default/Service Worker/Database/CURRENT @@ -0,0 +1 @@ +MANIFEST-000001 diff --git a/chrome-profile/Default/Service Worker/Database/LOCK b/chrome-profile/Default/Service Worker/Database/LOCK new file mode 100644 index 0000000..e69de29 diff --git a/chrome-profile/Default/Service Worker/Database/LOG b/chrome-profile/Default/Service Worker/Database/LOG new file mode 100644 index 0000000..232024c --- /dev/null +++ b/chrome-profile/Default/Service Worker/Database/LOG @@ -0,0 +1,3 @@ +2026/07/31-17:04:45.661 14fe0 Reusing MANIFEST G:\temp github\bookdedrm\chrome-profile\Default\Service Worker\Database/MANIFEST-000001 +2026/07/31-17:04:45.661 14fe0 Recovering log #3 +2026/07/31-17:04:45.787 14fe0 Reusing old log G:\temp github\bookdedrm\chrome-profile\Default\Service Worker\Database/000003.log diff --git a/chrome-profile/Default/Service Worker/Database/LOG.old b/chrome-profile/Default/Service Worker/Database/LOG.old new file mode 100644 index 0000000..94b0196 --- /dev/null +++ b/chrome-profile/Default/Service Worker/Database/LOG.old @@ -0,0 +1,3 @@ +2026/07/06-20:37:40.163 57f8 Reusing MANIFEST G:\temp github\bookdedrm\chrome-profile\Default\Service Worker\Database/MANIFEST-000001 +2026/07/06-20:37:40.166 57f8 Recovering log #3 +2026/07/06-20:37:40.264 57f8 Reusing old log G:\temp github\bookdedrm\chrome-profile\Default\Service Worker\Database/000003.log diff --git a/chrome-profile/Default/Service Worker/Database/MANIFEST-000001 b/chrome-profile/Default/Service Worker/Database/MANIFEST-000001 new file mode 100644 index 0000000..18e5cab Binary files /dev/null and b/chrome-profile/Default/Service Worker/Database/MANIFEST-000001 differ diff --git a/chrome-profile/Default/Service Worker/ScriptCache/2cc80dabc69f58b6_0 b/chrome-profile/Default/Service Worker/ScriptCache/2cc80dabc69f58b6_0 new file mode 100644 index 0000000..6e6960c Binary files /dev/null and b/chrome-profile/Default/Service Worker/ScriptCache/2cc80dabc69f58b6_0 differ diff --git a/chrome-profile/Default/Service Worker/ScriptCache/2cc80dabc69f58b6_1 b/chrome-profile/Default/Service Worker/ScriptCache/2cc80dabc69f58b6_1 new file mode 100644 index 0000000..bceb0f4 Binary files /dev/null and b/chrome-profile/Default/Service Worker/ScriptCache/2cc80dabc69f58b6_1 differ diff --git a/chrome-profile/Default/Service Worker/ScriptCache/index b/chrome-profile/Default/Service Worker/ScriptCache/index new file mode 100644 index 0000000..79bd403 Binary files /dev/null and b/chrome-profile/Default/Service Worker/ScriptCache/index differ diff --git a/chrome-profile/Default/Service Worker/ScriptCache/index-dir/the-real-index b/chrome-profile/Default/Service Worker/ScriptCache/index-dir/the-real-index new file mode 100644 index 0000000..8673835 Binary files /dev/null and b/chrome-profile/Default/Service Worker/ScriptCache/index-dir/the-real-index differ diff --git a/chrome-profile/Default/Session Storage/000003.log b/chrome-profile/Default/Session Storage/000003.log new file mode 100644 index 0000000..94b7c21 Binary files /dev/null and b/chrome-profile/Default/Session Storage/000003.log differ diff --git a/chrome-profile/Default/Session Storage/CURRENT b/chrome-profile/Default/Session Storage/CURRENT new file mode 100644 index 0000000..7ed683d --- /dev/null +++ b/chrome-profile/Default/Session Storage/CURRENT @@ -0,0 +1 @@ +MANIFEST-000001 diff --git a/chrome-profile/Default/Session Storage/LOCK b/chrome-profile/Default/Session Storage/LOCK new file mode 100644 index 0000000..e69de29 diff --git a/chrome-profile/Default/Session Storage/LOG b/chrome-profile/Default/Session Storage/LOG new file mode 100644 index 0000000..75564bc --- /dev/null +++ b/chrome-profile/Default/Session Storage/LOG @@ -0,0 +1,2 @@ +2026/07/31-17:04:45.897 9604 Creating DB G:\temp github\bookdedrm\chrome-profile\Default\Session Storage since it was missing. +2026/07/31-17:04:46.154 9604 Reusing MANIFEST G:\temp github\bookdedrm\chrome-profile\Default\Session Storage/MANIFEST-000001 diff --git a/chrome-profile/Default/Session Storage/MANIFEST-000001 b/chrome-profile/Default/Session Storage/MANIFEST-000001 new file mode 100644 index 0000000..18e5cab Binary files /dev/null and b/chrome-profile/Default/Session Storage/MANIFEST-000001 differ diff --git a/chrome-profile/Default/Sessions/Session_13427869063142932 b/chrome-profile/Default/Sessions/Session_13427869063142932 new file mode 100644 index 0000000..d8c8bc2 Binary files /dev/null and b/chrome-profile/Default/Sessions/Session_13427869063142932 differ diff --git a/chrome-profile/Default/Sessions/Session_13430016288021919 b/chrome-profile/Default/Sessions/Session_13430016288021919 new file mode 100644 index 0000000..c804828 Binary files /dev/null and b/chrome-profile/Default/Sessions/Session_13430016288021919 differ diff --git a/chrome-profile/Default/Sessions/Tabs_13427869063491544 b/chrome-profile/Default/Sessions/Tabs_13427869063491544 new file mode 100644 index 0000000..7006367 Binary files /dev/null and b/chrome-profile/Default/Sessions/Tabs_13427869063491544 differ diff --git a/chrome-profile/Default/Sessions/Tabs_13430016288581109 b/chrome-profile/Default/Sessions/Tabs_13430016288581109 new file mode 100644 index 0000000..039e50b Binary files /dev/null and b/chrome-profile/Default/Sessions/Tabs_13430016288581109 differ diff --git a/chrome-profile/Default/Shared Dictionary/cache/index b/chrome-profile/Default/Shared Dictionary/cache/index new file mode 100644 index 0000000..79bd403 Binary files /dev/null and b/chrome-profile/Default/Shared Dictionary/cache/index differ diff --git a/chrome-profile/Default/Shared Dictionary/cache/index-dir/the-real-index b/chrome-profile/Default/Shared Dictionary/cache/index-dir/the-real-index new file mode 100644 index 0000000..7b0d7fd Binary files /dev/null and b/chrome-profile/Default/Shared Dictionary/cache/index-dir/the-real-index differ diff --git a/chrome-profile/Default/Shared Dictionary/db b/chrome-profile/Default/Shared Dictionary/db new file mode 100644 index 0000000..625714a Binary files /dev/null and b/chrome-profile/Default/Shared Dictionary/db differ diff --git a/chrome-profile/Default/Shared Dictionary/db-journal b/chrome-profile/Default/Shared Dictionary/db-journal new file mode 100644 index 0000000..e69de29 diff --git a/chrome-profile/Default/SharedStorage b/chrome-profile/Default/SharedStorage new file mode 100644 index 0000000..4410bda Binary files /dev/null and b/chrome-profile/Default/SharedStorage differ diff --git a/chrome-profile/Default/Shortcuts b/chrome-profile/Default/Shortcuts new file mode 100644 index 0000000..6dbc636 Binary files /dev/null and b/chrome-profile/Default/Shortcuts differ diff --git a/chrome-profile/Default/Shortcuts-journal b/chrome-profile/Default/Shortcuts-journal new file mode 100644 index 0000000..e69de29 diff --git a/chrome-profile/Default/Site Characteristics Database/000003.log b/chrome-profile/Default/Site Characteristics Database/000003.log new file mode 100644 index 0000000..9e42c36 Binary files /dev/null and b/chrome-profile/Default/Site Characteristics Database/000003.log differ diff --git a/chrome-profile/Default/Site Characteristics Database/CURRENT b/chrome-profile/Default/Site Characteristics Database/CURRENT new file mode 100644 index 0000000..7ed683d --- /dev/null +++ b/chrome-profile/Default/Site Characteristics Database/CURRENT @@ -0,0 +1 @@ +MANIFEST-000001 diff --git a/chrome-profile/Default/Site Characteristics Database/LOCK b/chrome-profile/Default/Site Characteristics Database/LOCK new file mode 100644 index 0000000..e69de29 diff --git a/chrome-profile/Default/Site Characteristics Database/LOG b/chrome-profile/Default/Site Characteristics Database/LOG new file mode 100644 index 0000000..e6e430e --- /dev/null +++ b/chrome-profile/Default/Site Characteristics Database/LOG @@ -0,0 +1,3 @@ +2026/07/31-17:04:45.648 14ff4 Reusing MANIFEST G:\temp github\bookdedrm\chrome-profile\Default\Site Characteristics Database/MANIFEST-000001 +2026/07/31-17:04:45.661 14ff4 Recovering log #3 +2026/07/31-17:04:45.768 14ff4 Reusing old log G:\temp github\bookdedrm\chrome-profile\Default\Site Characteristics Database/000003.log diff --git a/chrome-profile/Default/Site Characteristics Database/LOG.old b/chrome-profile/Default/Site Characteristics Database/LOG.old new file mode 100644 index 0000000..1e7447e --- /dev/null +++ b/chrome-profile/Default/Site Characteristics Database/LOG.old @@ -0,0 +1,3 @@ +2026/07/06-20:37:40.517 77fc Reusing MANIFEST G:\temp github\bookdedrm\chrome-profile\Default\Site Characteristics Database/MANIFEST-000001 +2026/07/06-20:37:40.517 77fc Recovering log #3 +2026/07/06-20:37:40.538 77fc Reusing old log G:\temp github\bookdedrm\chrome-profile\Default\Site Characteristics Database/000003.log diff --git a/chrome-profile/Default/Site Characteristics Database/MANIFEST-000001 b/chrome-profile/Default/Site Characteristics Database/MANIFEST-000001 new file mode 100644 index 0000000..18e5cab Binary files /dev/null and b/chrome-profile/Default/Site Characteristics Database/MANIFEST-000001 differ diff --git a/chrome-profile/Default/Sync Data/LevelDB/000003.log b/chrome-profile/Default/Sync Data/LevelDB/000003.log new file mode 100644 index 0000000..66b1c93 Binary files /dev/null and b/chrome-profile/Default/Sync Data/LevelDB/000003.log differ diff --git a/chrome-profile/Default/Sync Data/LevelDB/CURRENT b/chrome-profile/Default/Sync Data/LevelDB/CURRENT new file mode 100644 index 0000000..7ed683d --- /dev/null +++ b/chrome-profile/Default/Sync Data/LevelDB/CURRENT @@ -0,0 +1 @@ +MANIFEST-000001 diff --git a/chrome-profile/Default/Sync Data/LevelDB/LOCK b/chrome-profile/Default/Sync Data/LevelDB/LOCK new file mode 100644 index 0000000..e69de29 diff --git a/chrome-profile/Default/Sync Data/LevelDB/LOG b/chrome-profile/Default/Sync Data/LevelDB/LOG new file mode 100644 index 0000000..a5122d5 --- /dev/null +++ b/chrome-profile/Default/Sync Data/LevelDB/LOG @@ -0,0 +1,3 @@ +2026/07/31-17:04:45.648 14e58 Reusing MANIFEST G:\temp github\bookdedrm\chrome-profile\Default\Sync Data\LevelDB/MANIFEST-000001 +2026/07/31-17:04:45.661 14e58 Recovering log #3 +2026/07/31-17:04:45.661 14e58 Reusing old log G:\temp github\bookdedrm\chrome-profile\Default\Sync Data\LevelDB/000003.log diff --git a/chrome-profile/Default/Sync Data/LevelDB/LOG.old b/chrome-profile/Default/Sync Data/LevelDB/LOG.old new file mode 100644 index 0000000..764f4fa --- /dev/null +++ b/chrome-profile/Default/Sync Data/LevelDB/LOG.old @@ -0,0 +1,3 @@ +2026/07/06-20:37:40.166 8e04 Reusing MANIFEST G:\temp github\bookdedrm\chrome-profile\Default\Sync Data\LevelDB/MANIFEST-000001 +2026/07/06-20:37:40.254 8e04 Recovering log #3 +2026/07/06-20:37:40.255 8e04 Reusing old log G:\temp github\bookdedrm\chrome-profile\Default\Sync Data\LevelDB/000003.log diff --git a/chrome-profile/Default/Sync Data/LevelDB/MANIFEST-000001 b/chrome-profile/Default/Sync Data/LevelDB/MANIFEST-000001 new file mode 100644 index 0000000..18e5cab Binary files /dev/null and b/chrome-profile/Default/Sync Data/LevelDB/MANIFEST-000001 differ diff --git a/chrome-profile/Default/Top Sites b/chrome-profile/Default/Top Sites new file mode 100644 index 0000000..6774fc5 Binary files /dev/null and b/chrome-profile/Default/Top Sites differ diff --git a/chrome-profile/Default/Top Sites-journal b/chrome-profile/Default/Top Sites-journal new file mode 100644 index 0000000..e69de29 diff --git a/chrome-profile/Default/Web Data b/chrome-profile/Default/Web Data new file mode 100644 index 0000000..196decb Binary files /dev/null and b/chrome-profile/Default/Web Data differ diff --git a/chrome-profile/Default/Web Data-journal b/chrome-profile/Default/Web Data-journal new file mode 100644 index 0000000..e69de29 diff --git a/chrome-profile/Default/WebStorage/QuotaManager b/chrome-profile/Default/WebStorage/QuotaManager new file mode 100644 index 0000000..85dd3b5 Binary files /dev/null and b/chrome-profile/Default/WebStorage/QuotaManager differ diff --git a/chrome-profile/Default/WebStorage/QuotaManager-journal b/chrome-profile/Default/WebStorage/QuotaManager-journal new file mode 100644 index 0000000..c4d8f71 Binary files /dev/null and b/chrome-profile/Default/WebStorage/QuotaManager-journal differ diff --git a/chrome-profile/Default/chrome_cart_db/LOCK b/chrome-profile/Default/chrome_cart_db/LOCK new file mode 100644 index 0000000..e69de29 diff --git a/chrome-profile/Default/chrome_cart_db/LOG b/chrome-profile/Default/chrome_cart_db/LOG new file mode 100644 index 0000000..e69de29 diff --git a/chrome-profile/Default/chrome_cart_db/LOG.old b/chrome-profile/Default/chrome_cart_db/LOG.old new file mode 100644 index 0000000..e69de29 diff --git a/chrome-profile/Default/commerce_subscription_db/LOCK b/chrome-profile/Default/commerce_subscription_db/LOCK new file mode 100644 index 0000000..e69de29 diff --git a/chrome-profile/Default/commerce_subscription_db/LOG b/chrome-profile/Default/commerce_subscription_db/LOG new file mode 100644 index 0000000..e69de29 diff --git a/chrome-profile/Default/commerce_subscription_db/LOG.old b/chrome-profile/Default/commerce_subscription_db/LOG.old new file mode 100644 index 0000000..e69de29 diff --git a/chrome-profile/Default/discount_infos_db/LOCK b/chrome-profile/Default/discount_infos_db/LOCK new file mode 100644 index 0000000..e69de29 diff --git a/chrome-profile/Default/discount_infos_db/LOG b/chrome-profile/Default/discount_infos_db/LOG new file mode 100644 index 0000000..e69de29 diff --git a/chrome-profile/Default/discount_infos_db/LOG.old b/chrome-profile/Default/discount_infos_db/LOG.old new file mode 100644 index 0000000..e69de29 diff --git a/chrome-profile/Default/discounts_db/LOCK b/chrome-profile/Default/discounts_db/LOCK new file mode 100644 index 0000000..e69de29 diff --git a/chrome-profile/Default/discounts_db/LOG b/chrome-profile/Default/discounts_db/LOG new file mode 100644 index 0000000..e69de29 diff --git a/chrome-profile/Default/discounts_db/LOG.old b/chrome-profile/Default/discounts_db/LOG.old new file mode 100644 index 0000000..e69de29 diff --git a/chrome-profile/Default/engine_allowlist.bf b/chrome-profile/Default/engine_allowlist.bf new file mode 100644 index 0000000..bcb1118 Binary files /dev/null and b/chrome-profile/Default/engine_allowlist.bf differ diff --git a/chrome-profile/Default/heavy_ad_intervention_opt_out.db b/chrome-profile/Default/heavy_ad_intervention_opt_out.db new file mode 100644 index 0000000..ac64349 Binary files /dev/null and b/chrome-profile/Default/heavy_ad_intervention_opt_out.db differ diff --git a/chrome-profile/Default/heavy_ad_intervention_opt_out.db-journal b/chrome-profile/Default/heavy_ad_intervention_opt_out.db-journal new file mode 100644 index 0000000..e69de29 diff --git a/chrome-profile/Default/parcel_tracking_db/LOCK b/chrome-profile/Default/parcel_tracking_db/LOCK new file mode 100644 index 0000000..e69de29 diff --git a/chrome-profile/Default/parcel_tracking_db/LOG b/chrome-profile/Default/parcel_tracking_db/LOG new file mode 100644 index 0000000..e69de29 diff --git a/chrome-profile/Default/parcel_tracking_db/LOG.old b/chrome-profile/Default/parcel_tracking_db/LOG.old new file mode 100644 index 0000000..e69de29 diff --git a/chrome-profile/Default/passkey_enclave_state b/chrome-profile/Default/passkey_enclave_state new file mode 100644 index 0000000..749f21e --- /dev/null +++ b/chrome-profile/Default/passkey_enclave_state @@ -0,0 +1 @@ +v10ª«žFÁp¥š‘yrÁÝìÈ[…Ü Ñ•ƒð{qÛ@ ßæ'ŠÇ ´7ó³�{Ä< ÄÄ—ç=„qê$å§’- T‡+Ï]y~Ê·ŸwѦ¿a+¸-»z¾˜ð \ No newline at end of file diff --git a/chrome-profile/Default/shared_proto_db/000003.log b/chrome-profile/Default/shared_proto_db/000003.log new file mode 100644 index 0000000..6c6fbd1 Binary files /dev/null and b/chrome-profile/Default/shared_proto_db/000003.log differ diff --git a/chrome-profile/Default/shared_proto_db/CURRENT b/chrome-profile/Default/shared_proto_db/CURRENT new file mode 100644 index 0000000..7ed683d --- /dev/null +++ b/chrome-profile/Default/shared_proto_db/CURRENT @@ -0,0 +1 @@ +MANIFEST-000001 diff --git a/chrome-profile/Default/shared_proto_db/LOCK b/chrome-profile/Default/shared_proto_db/LOCK new file mode 100644 index 0000000..e69de29 diff --git a/chrome-profile/Default/shared_proto_db/LOG b/chrome-profile/Default/shared_proto_db/LOG new file mode 100644 index 0000000..10cd140 --- /dev/null +++ b/chrome-profile/Default/shared_proto_db/LOG @@ -0,0 +1,3 @@ +2026/07/31-17:04:46.320 14e2c Reusing MANIFEST G:\temp github\bookdedrm\chrome-profile\Default\shared_proto_db/MANIFEST-000001 +2026/07/31-17:04:46.320 14e2c Recovering log #3 +2026/07/31-17:04:46.582 14e2c Reusing old log G:\temp github\bookdedrm\chrome-profile\Default\shared_proto_db/000003.log diff --git a/chrome-profile/Default/shared_proto_db/LOG.old b/chrome-profile/Default/shared_proto_db/LOG.old new file mode 100644 index 0000000..e4faf5e --- /dev/null +++ b/chrome-profile/Default/shared_proto_db/LOG.old @@ -0,0 +1,3 @@ +2026/07/06-20:37:41.462 1ec0 Reusing MANIFEST G:\temp github\bookdedrm\chrome-profile\Default\shared_proto_db/MANIFEST-000001 +2026/07/06-20:37:41.462 1ec0 Recovering log #3 +2026/07/06-20:37:41.801 1ec0 Reusing old log G:\temp github\bookdedrm\chrome-profile\Default\shared_proto_db/000003.log diff --git a/chrome-profile/Default/shared_proto_db/MANIFEST-000001 b/chrome-profile/Default/shared_proto_db/MANIFEST-000001 new file mode 100644 index 0000000..18e5cab Binary files /dev/null and b/chrome-profile/Default/shared_proto_db/MANIFEST-000001 differ diff --git a/chrome-profile/Default/shared_proto_db/metadata/000003.log b/chrome-profile/Default/shared_proto_db/metadata/000003.log new file mode 100644 index 0000000..f5b1d49 Binary files /dev/null and b/chrome-profile/Default/shared_proto_db/metadata/000003.log differ diff --git a/chrome-profile/Default/shared_proto_db/metadata/CURRENT b/chrome-profile/Default/shared_proto_db/metadata/CURRENT new file mode 100644 index 0000000..7ed683d --- /dev/null +++ b/chrome-profile/Default/shared_proto_db/metadata/CURRENT @@ -0,0 +1 @@ +MANIFEST-000001 diff --git a/chrome-profile/Default/shared_proto_db/metadata/LOCK b/chrome-profile/Default/shared_proto_db/metadata/LOCK new file mode 100644 index 0000000..e69de29 diff --git a/chrome-profile/Default/shared_proto_db/metadata/LOG b/chrome-profile/Default/shared_proto_db/metadata/LOG new file mode 100644 index 0000000..857aacd --- /dev/null +++ b/chrome-profile/Default/shared_proto_db/metadata/LOG @@ -0,0 +1,3 @@ +2026/07/31-17:04:46.210 14e2c Reusing MANIFEST G:\temp github\bookdedrm\chrome-profile\Default\shared_proto_db\metadata/MANIFEST-000001 +2026/07/31-17:04:46.233 14e2c Recovering log #3 +2026/07/31-17:04:46.234 14e2c Reusing old log G:\temp github\bookdedrm\chrome-profile\Default\shared_proto_db\metadata/000003.log diff --git a/chrome-profile/Default/shared_proto_db/metadata/LOG.old b/chrome-profile/Default/shared_proto_db/metadata/LOG.old new file mode 100644 index 0000000..8c9fba7 --- /dev/null +++ b/chrome-profile/Default/shared_proto_db/metadata/LOG.old @@ -0,0 +1,3 @@ +2026/07/06-20:37:41.396 1ec0 Reusing MANIFEST G:\temp github\bookdedrm\chrome-profile\Default\shared_proto_db\metadata/MANIFEST-000001 +2026/07/06-20:37:41.396 1ec0 Recovering log #3 +2026/07/06-20:37:41.430 1ec0 Reusing old log G:\temp github\bookdedrm\chrome-profile\Default\shared_proto_db\metadata/000003.log diff --git a/chrome-profile/Default/shared_proto_db/metadata/MANIFEST-000001 b/chrome-profile/Default/shared_proto_db/metadata/MANIFEST-000001 new file mode 100644 index 0000000..18e5cab Binary files /dev/null and b/chrome-profile/Default/shared_proto_db/metadata/MANIFEST-000001 differ diff --git a/chrome-profile/Default/trusted_vault.pb b/chrome-profile/Default/trusted_vault.pb new file mode 100644 index 0000000..c7165b8 Binary files /dev/null and b/chrome-profile/Default/trusted_vault.pb differ diff --git a/chrome-profile/GPUPersistentCache/DawnGraphiteCache/WRJTYMYAB73RC6HTXXLKRS2FEZVUG6PP/cache.db b/chrome-profile/GPUPersistentCache/DawnGraphiteCache/WRJTYMYAB73RC6HTXXLKRS2FEZVUG6PP/cache.db new file mode 100644 index 0000000..73a0692 Binary files /dev/null and b/chrome-profile/GPUPersistentCache/DawnGraphiteCache/WRJTYMYAB73RC6HTXXLKRS2FEZVUG6PP/cache.db differ diff --git a/chrome-profile/GPUPersistentCache/DawnGraphiteCache/WRJTYMYAB73RC6HTXXLKRS2FEZVUG6PP/cache.db-wal b/chrome-profile/GPUPersistentCache/DawnGraphiteCache/WRJTYMYAB73RC6HTXXLKRS2FEZVUG6PP/cache.db-wal new file mode 100644 index 0000000..4501618 Binary files /dev/null and b/chrome-profile/GPUPersistentCache/DawnGraphiteCache/WRJTYMYAB73RC6HTXXLKRS2FEZVUG6PP/cache.db-wal differ diff --git a/chrome-profile/GPUPersistentCache/DawnGraphiteCache/WRJTYMYAB73RC6HTXXLKRS2FEZVUG6PP/cache.journal b/chrome-profile/GPUPersistentCache/DawnGraphiteCache/WRJTYMYAB73RC6HTXXLKRS2FEZVUG6PP/cache.journal new file mode 100644 index 0000000..e69de29 diff --git a/chrome-profile/GrShaderCache/data_0 b/chrome-profile/GrShaderCache/data_0 new file mode 100644 index 0000000..ec3976c Binary files /dev/null and b/chrome-profile/GrShaderCache/data_0 differ diff --git a/chrome-profile/GrShaderCache/data_1 b/chrome-profile/GrShaderCache/data_1 new file mode 100644 index 0000000..f2d7948 Binary files /dev/null and b/chrome-profile/GrShaderCache/data_1 differ diff --git a/chrome-profile/GrShaderCache/data_2 b/chrome-profile/GrShaderCache/data_2 new file mode 100644 index 0000000..c7e2eb9 Binary files /dev/null and b/chrome-profile/GrShaderCache/data_2 differ diff --git a/chrome-profile/GrShaderCache/data_3 b/chrome-profile/GrShaderCache/data_3 new file mode 100644 index 0000000..ea2e48a Binary files /dev/null and b/chrome-profile/GrShaderCache/data_3 differ diff --git a/chrome-profile/GrShaderCache/f_000001 b/chrome-profile/GrShaderCache/f_000001 new file mode 100644 index 0000000..3d81a12 Binary files /dev/null and b/chrome-profile/GrShaderCache/f_000001 differ diff --git a/chrome-profile/GrShaderCache/f_000002 b/chrome-profile/GrShaderCache/f_000002 new file mode 100644 index 0000000..545e10a Binary files /dev/null and b/chrome-profile/GrShaderCache/f_000002 differ diff --git a/chrome-profile/GrShaderCache/f_000003 b/chrome-profile/GrShaderCache/f_000003 new file mode 100644 index 0000000..01f9964 Binary files /dev/null and b/chrome-profile/GrShaderCache/f_000003 differ diff --git a/chrome-profile/GrShaderCache/f_000004 b/chrome-profile/GrShaderCache/f_000004 new file mode 100644 index 0000000..bf5bbb0 Binary files /dev/null and b/chrome-profile/GrShaderCache/f_000004 differ diff --git a/chrome-profile/GrShaderCache/f_000005 b/chrome-profile/GrShaderCache/f_000005 new file mode 100644 index 0000000..3ad45a0 Binary files /dev/null and b/chrome-profile/GrShaderCache/f_000005 differ diff --git a/chrome-profile/GrShaderCache/f_000006 b/chrome-profile/GrShaderCache/f_000006 new file mode 100644 index 0000000..2480e68 Binary files /dev/null and b/chrome-profile/GrShaderCache/f_000006 differ diff --git a/chrome-profile/GrShaderCache/f_000007 b/chrome-profile/GrShaderCache/f_000007 new file mode 100644 index 0000000..fdd0d30 Binary files /dev/null and b/chrome-profile/GrShaderCache/f_000007 differ diff --git a/chrome-profile/GrShaderCache/f_000008 b/chrome-profile/GrShaderCache/f_000008 new file mode 100644 index 0000000..603f6b6 Binary files /dev/null and b/chrome-profile/GrShaderCache/f_000008 differ diff --git a/chrome-profile/GrShaderCache/f_000009 b/chrome-profile/GrShaderCache/f_000009 new file mode 100644 index 0000000..26edadf Binary files /dev/null and b/chrome-profile/GrShaderCache/f_000009 differ diff --git a/chrome-profile/GrShaderCache/f_00000a b/chrome-profile/GrShaderCache/f_00000a new file mode 100644 index 0000000..662f4a6 Binary files /dev/null and b/chrome-profile/GrShaderCache/f_00000a differ diff --git a/chrome-profile/GrShaderCache/f_00000b b/chrome-profile/GrShaderCache/f_00000b new file mode 100644 index 0000000..5495264 Binary files /dev/null and b/chrome-profile/GrShaderCache/f_00000b differ diff --git a/chrome-profile/GrShaderCache/f_00000c b/chrome-profile/GrShaderCache/f_00000c new file mode 100644 index 0000000..ffd0bd2 Binary files /dev/null and b/chrome-profile/GrShaderCache/f_00000c differ diff --git a/chrome-profile/GrShaderCache/f_00000d b/chrome-profile/GrShaderCache/f_00000d new file mode 100644 index 0000000..478aa19 Binary files /dev/null and b/chrome-profile/GrShaderCache/f_00000d differ diff --git a/chrome-profile/GrShaderCache/f_00000e b/chrome-profile/GrShaderCache/f_00000e new file mode 100644 index 0000000..46c87a3 Binary files /dev/null and b/chrome-profile/GrShaderCache/f_00000e differ diff --git a/chrome-profile/GrShaderCache/f_00000f b/chrome-profile/GrShaderCache/f_00000f new file mode 100644 index 0000000..3edb1d3 Binary files /dev/null and b/chrome-profile/GrShaderCache/f_00000f differ diff --git a/chrome-profile/GrShaderCache/f_000010 b/chrome-profile/GrShaderCache/f_000010 new file mode 100644 index 0000000..24aec82 Binary files /dev/null and b/chrome-profile/GrShaderCache/f_000010 differ diff --git a/chrome-profile/GrShaderCache/f_000011 b/chrome-profile/GrShaderCache/f_000011 new file mode 100644 index 0000000..16601e2 Binary files /dev/null and b/chrome-profile/GrShaderCache/f_000011 differ diff --git a/chrome-profile/GrShaderCache/f_000012 b/chrome-profile/GrShaderCache/f_000012 new file mode 100644 index 0000000..6326a6a Binary files /dev/null and b/chrome-profile/GrShaderCache/f_000012 differ diff --git a/chrome-profile/GrShaderCache/f_000013 b/chrome-profile/GrShaderCache/f_000013 new file mode 100644 index 0000000..2b28cda Binary files /dev/null and b/chrome-profile/GrShaderCache/f_000013 differ diff --git a/chrome-profile/GrShaderCache/f_000014 b/chrome-profile/GrShaderCache/f_000014 new file mode 100644 index 0000000..59e569a Binary files /dev/null and b/chrome-profile/GrShaderCache/f_000014 differ diff --git a/chrome-profile/GrShaderCache/f_000015 b/chrome-profile/GrShaderCache/f_000015 new file mode 100644 index 0000000..df95405 Binary files /dev/null and b/chrome-profile/GrShaderCache/f_000015 differ diff --git a/chrome-profile/GrShaderCache/f_000016 b/chrome-profile/GrShaderCache/f_000016 new file mode 100644 index 0000000..ffe67f9 Binary files /dev/null and b/chrome-profile/GrShaderCache/f_000016 differ diff --git a/chrome-profile/GrShaderCache/f_000017 b/chrome-profile/GrShaderCache/f_000017 new file mode 100644 index 0000000..6d64be8 Binary files /dev/null and b/chrome-profile/GrShaderCache/f_000017 differ diff --git a/chrome-profile/GrShaderCache/f_000018 b/chrome-profile/GrShaderCache/f_000018 new file mode 100644 index 0000000..55d418c Binary files /dev/null and b/chrome-profile/GrShaderCache/f_000018 differ diff --git a/chrome-profile/GrShaderCache/f_000019 b/chrome-profile/GrShaderCache/f_000019 new file mode 100644 index 0000000..1400faa Binary files /dev/null and b/chrome-profile/GrShaderCache/f_000019 differ diff --git a/chrome-profile/GrShaderCache/f_00001a b/chrome-profile/GrShaderCache/f_00001a new file mode 100644 index 0000000..e1eb8a2 Binary files /dev/null and b/chrome-profile/GrShaderCache/f_00001a differ diff --git a/chrome-profile/GrShaderCache/f_00001b b/chrome-profile/GrShaderCache/f_00001b new file mode 100644 index 0000000..157a3b3 Binary files /dev/null and b/chrome-profile/GrShaderCache/f_00001b differ diff --git a/chrome-profile/GrShaderCache/f_00001c b/chrome-profile/GrShaderCache/f_00001c new file mode 100644 index 0000000..8333e62 Binary files /dev/null and b/chrome-profile/GrShaderCache/f_00001c differ diff --git a/chrome-profile/GrShaderCache/f_00001d b/chrome-profile/GrShaderCache/f_00001d new file mode 100644 index 0000000..22a3148 Binary files /dev/null and b/chrome-profile/GrShaderCache/f_00001d differ diff --git a/chrome-profile/GrShaderCache/f_00001e b/chrome-profile/GrShaderCache/f_00001e new file mode 100644 index 0000000..0ece8b1 Binary files /dev/null and b/chrome-profile/GrShaderCache/f_00001e differ diff --git a/chrome-profile/GrShaderCache/f_00001f b/chrome-profile/GrShaderCache/f_00001f new file mode 100644 index 0000000..2e15fcc Binary files /dev/null and b/chrome-profile/GrShaderCache/f_00001f differ diff --git a/chrome-profile/GrShaderCache/f_000020 b/chrome-profile/GrShaderCache/f_000020 new file mode 100644 index 0000000..a764739 Binary files /dev/null and b/chrome-profile/GrShaderCache/f_000020 differ diff --git a/chrome-profile/GrShaderCache/f_000021 b/chrome-profile/GrShaderCache/f_000021 new file mode 100644 index 0000000..12f92c8 Binary files /dev/null and b/chrome-profile/GrShaderCache/f_000021 differ diff --git a/chrome-profile/GrShaderCache/f_000022 b/chrome-profile/GrShaderCache/f_000022 new file mode 100644 index 0000000..88b175a Binary files /dev/null and b/chrome-profile/GrShaderCache/f_000022 differ diff --git a/chrome-profile/GrShaderCache/f_000023 b/chrome-profile/GrShaderCache/f_000023 new file mode 100644 index 0000000..b17c509 Binary files /dev/null and b/chrome-profile/GrShaderCache/f_000023 differ diff --git a/chrome-profile/GrShaderCache/index b/chrome-profile/GrShaderCache/index new file mode 100644 index 0000000..c397df4 Binary files /dev/null and b/chrome-profile/GrShaderCache/index differ diff --git a/chrome-profile/GraphiteDawnCache/data_0 b/chrome-profile/GraphiteDawnCache/data_0 new file mode 100644 index 0000000..d76fb77 Binary files /dev/null and b/chrome-profile/GraphiteDawnCache/data_0 differ diff --git a/chrome-profile/GraphiteDawnCache/data_1 b/chrome-profile/GraphiteDawnCache/data_1 new file mode 100644 index 0000000..62f1db6 Binary files /dev/null and b/chrome-profile/GraphiteDawnCache/data_1 differ diff --git a/chrome-profile/GraphiteDawnCache/data_2 b/chrome-profile/GraphiteDawnCache/data_2 new file mode 100644 index 0000000..c7e2eb9 Binary files /dev/null and b/chrome-profile/GraphiteDawnCache/data_2 differ diff --git a/chrome-profile/GraphiteDawnCache/data_3 b/chrome-profile/GraphiteDawnCache/data_3 new file mode 100644 index 0000000..5eec973 Binary files /dev/null and b/chrome-profile/GraphiteDawnCache/data_3 differ diff --git a/chrome-profile/GraphiteDawnCache/index b/chrome-profile/GraphiteDawnCache/index new file mode 100644 index 0000000..ef7aa16 Binary files /dev/null and b/chrome-profile/GraphiteDawnCache/index differ diff --git a/chrome-profile/Last Browser b/chrome-profile/Last Browser new file mode 100644 index 0000000..adc3007 Binary files /dev/null and b/chrome-profile/Last Browser differ diff --git a/chrome-profile/Last Version b/chrome-profile/Last Version new file mode 100644 index 0000000..7c6125a --- /dev/null +++ b/chrome-profile/Last Version @@ -0,0 +1 @@ +150.0.7871.182 \ No newline at end of file diff --git a/chrome-profile/Local State b/chrome-profile/Local State new file mode 100644 index 0000000..9ed9654 --- /dev/null +++ b/chrome-profile/Local State @@ -0,0 +1 @@ +{"autofill":{"ablation_seed":"YzGm1pFewm8="},"breadcrumbs":{"enabled":false,"enabled_time":"13427869059947790"},"browser":{"shortcut_migration_version":"143.0.7499.4","whats_new":{"enabled_order":["SyncAccountSettings"]}},"chrome_labs_activation_threshold":76,"chrome_labs_new_badge_dict":{},"enterprise_reporting":{"saas_usage":{"last_trigger_time":"13430016291551284"}},"hardware_acceleration_mode_previous":true,"legacy":{"profile":{"name":{"migrated":true}}},"local":{"password_hash_data_list":[]},"management":{"platform":{"azure_active_directory":0,"enterprise_mdm_win":0}},"network_time":{"network_time_mapping":{"local":1.785542686068731e+12,"network":1.785542685304e+12,"ticks":602458526491.0,"uncertainty":10149011.0}},"optimization_guide":{"model_execution":{"last_usage_by_feature":{}},"model_store_metadata":{},"on_device":{"last_version":"150.0.7871.182","model_crash_count":0}},"os_crypt":{"audit_enabled":true,"encrypted_key":"RFBBUEkBAAAA0Iyd3wEV0RGMegDAT8KX6wEAAAC+VzILB6GVQaLSyIzWyGx4EAAAADQAAABHAG8AbwBnAGwAZQAgAEMAaAByAG8AbQBlACAAZgBvAHIAIABUAGUAcwB0AGkAbgBnAAAAEGYAAAABAAAgAAAA8e7w9HHuyVQrR8MWUhNj3qH03ZiOwmmk99GhRoIBSCkAAAAADoAAAAACAAAgAAAAJJ+ZE8RzjDIZv+5DxSJBUgO4NgKJFeIKPWAmZnG0QiUwAAAAGQVw7k38ySFMp4DNC5u4nigytXT8dLooL7/vs2A+ZZZcSPzZz1PeSVGgefuV4Mn9QAAAAOm7Jil1/OMZgCt29oxzEDl7DA5Z4Zp+1ibc5hLrU35dAcGfpRi+CgO5iTu+DlywvS3H3oTBs8XFsE4L7CZnZGc="},"os_update_handler_enabled":true,"password_manager":{"had_biometrics_available":true,"is_biometric_avaliable":true},"performance_intervention":{"last_daily_sample":"13430016285656508"},"platform_experience_helper":{"disable_notifications":false},"policy":{"last_statistics_update":"13430016285261575"},"profile":{"info_cache":{"Default":{"active_time":1785542685.634333,"avatar_icon":"chrome://theme/IDR_PROFILE_AVATAR_26","background_apps":false,"default_avatar_fill_color":-14737376,"default_avatar_stroke_color":-3684409,"enterprise_label":"","force_signin_profile_locked":false,"gaia_given_name":"Aiden","gaia_id":"101290994956840422522","gaia_name":"Aiden McDougald","gaia_picture_file_name":"Google Profile Picture.png","hosted_domain":"NO_HOSTED_DOMAIN","is_consented_primary_account":false,"is_ephemeral":false,"is_glic_eligible":true,"is_managed":0,"is_using_default_avatar":true,"is_using_default_name":true,"last_downloaded_gaia_picture_url_with_size":"https://lh3.googleusercontent.com/a/ACg8ocJfO6nP10lem2HmK86S-g3chbxkFVAhHrzae0bwXHovqM4aMEKf=s256-c-ns","managed_user_id":"","metrics_bucket_index":1,"name":"Your Chromium","profile_color_seed":-5715974,"profile_highlight_color":-14737376,"signin.with_credential_provider":false,"user_accepted_account_management":false,"user_name":"aidenmcdougald@gmail.com"}},"last_active_profiles":["Default"],"metrics":{"next_bucket_index":2},"profile_counts_reported":"13430016285267367","profiles_order":["Default"]},"session_id_generator_last_value":"936729217","signin":{"active_accounts":{"dH+XT883S2TrwKlnb5OHxZHBXPbJpownQsnI3j2xKYs=":"13430016285634312"},"active_accounts_last_emitted":"13430016285220567","active_accounts_managed":{"dH+XT883S2TrwKlnb5OHxZHBXPbJpownQsnI3j2xKYs=":false}},"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":"13430016285253932","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},"toast":{"non_milestone_update_toast_version":"150.0.7871.182"},"ukm":{"persisted_logs":[]},"uninstall_metrics":{"installation_date2":"1767413647"},"updateclientdata":{"apps":{"{cd7cc169-013a-4c79-94bc-cf5c8d78cccf}":{"cohort":"1:3g5f:","cohortname":"Auto","dla":7126,"dlrc":7126,"installdate":7071,"pf":"a42abac8-7f04-4718-926d-e95e40c739ff"}}},"user_experience_metrics":{"client_id2":"faec2ab7-17f8-46bf-90d8-e083456e9e62","client_id_timestamp":"1767413647","consent_restructure_feature_state":false,"limited_entropy_randomization_source":"4F0D768D88B0A9E88348BF6E3A397402","log_record_id":27,"low_entropy_source3":3672,"machine_id":6774234,"pseudo_low_entropy_source":4271,"session_id":26,"stability":{"browser_last_live_timestamp":"13430016410341784","exited_cleanly":true,"saved_system_profile":"CJqV+tIGEhExNTAuMC43ODcxLjE4Mi02NBjAqOLKBiIFZW4tVVMqGAoKV2luZG93cyBOVBIKMTAuMC4yNjIwMDJ5CgZ4ODZfNjQQoO0DGICA0LuP/x8iE1N5c3RlbSBQcm9kdWN0IE5hbWUoAzCADzi4CEIKCAAQABoAMgA6AE1XiQtDVW7lCkNlAAAAQGoZCgxBdXRoZW50aWNBTUQQwJ7QBRggIAEoAIIBAIoBAKoBBng4Nl82NLABAUoKDW0jOl4VZMQ7YEoKDUGQ8rYVgI19ykoKDZK3V7MVMK7y3EoKDQUO8PQVgI19ylAEWgIIAGIER0NFQWoICAAQADgAQACAAcCo4soGmAEA+AHYHIAC////////////AYgCAJICJGZhZWMyYWI3LTE3ZjgtNDZiZi05MGQ4LWUwODM0NTZlOWU2MqgCryGyApQBZB450p7LUD034q1+xYgAKn7IsGzbmzOpC4+9L9jALbH+W8+HRnQ0Ou5qLX8qfizFGQzbCUy0VBNJ/R//VB+N8jiq6APKZX4bY3cefXlLqmkeDEaN4/tOLudsNWL4oogv7INtJMhARP61EIfS1sYKphv1BfE5C92iJ0SDSS28C5tj623dU5++z0Lg4+uEi7j/TPMNXfECKGWpNWwOZtY=","saved_system_profile_hash":"926BAD66C0696A32C4B9FE326AFED368FC803457","stats_buildtime":"1784580762","stats_version":"150.0.7871.182-64","system_crash_count":0}},"variations_google_groups":{"Default":[]},"was":{"restarted":false}} \ No newline at end of file diff --git a/chrome-profile/ShaderCache/data_0 b/chrome-profile/ShaderCache/data_0 new file mode 100644 index 0000000..44ae145 Binary files /dev/null and b/chrome-profile/ShaderCache/data_0 differ diff --git a/chrome-profile/ShaderCache/data_1 b/chrome-profile/ShaderCache/data_1 new file mode 100644 index 0000000..516e3ca Binary files /dev/null and b/chrome-profile/ShaderCache/data_1 differ diff --git a/chrome-profile/ShaderCache/data_2 b/chrome-profile/ShaderCache/data_2 new file mode 100644 index 0000000..7078bf5 Binary files /dev/null and b/chrome-profile/ShaderCache/data_2 differ diff --git a/chrome-profile/ShaderCache/data_3 b/chrome-profile/ShaderCache/data_3 new file mode 100644 index 0000000..5eec973 Binary files /dev/null and b/chrome-profile/ShaderCache/data_3 differ diff --git a/chrome-profile/ShaderCache/index b/chrome-profile/ShaderCache/index new file mode 100644 index 0000000..c42af72 Binary files /dev/null and b/chrome-profile/ShaderCache/index differ diff --git a/chrome-profile/Variations b/chrome-profile/Variations new file mode 100644 index 0000000..18056c3 --- /dev/null +++ b/chrome-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/chrome-profile/component_crx_cache/metadata.json b/chrome-profile/component_crx_cache/metadata.json new file mode 100644 index 0000000..4d15610 --- /dev/null +++ b/chrome-profile/component_crx_cache/metadata.json @@ -0,0 +1 @@ +{"hashes":{}} \ No newline at end of file diff --git a/chrome-profile/extensions_crx_cache/metadata.json b/chrome-profile/extensions_crx_cache/metadata.json new file mode 100644 index 0000000..4d15610 --- /dev/null +++ b/chrome-profile/extensions_crx_cache/metadata.json @@ -0,0 +1 @@ +{"hashes":{}} \ No newline at end of file diff --git a/chrome-profile/first_party_sets.db b/chrome-profile/first_party_sets.db new file mode 100644 index 0000000..063d279 Binary files /dev/null and b/chrome-profile/first_party_sets.db differ diff --git a/chrome-profile/first_party_sets.db-journal b/chrome-profile/first_party_sets.db-journal new file mode 100644 index 0000000..e69de29 diff --git a/chrome-profile/segmentation_platform/ukm_db b/chrome-profile/segmentation_platform/ukm_db new file mode 100644 index 0000000..17ebdad Binary files /dev/null and b/chrome-profile/segmentation_platform/ukm_db differ diff --git a/downloads/A_Court_of_Thorns_and_Roses.epub b/downloads/A_Court_of_Thorns_and_Roses.epub new file mode 100644 index 0000000..0add9ec Binary files /dev/null and b/downloads/A_Court_of_Thorns_and_Roses.epub differ diff --git a/downloads/A_Paper_Orchestra.epub b/downloads/A_Paper_Orchestra.epub new file mode 100644 index 0000000..262c0ef Binary files /dev/null and b/downloads/A_Paper_Orchestra.epub differ diff --git a/downloads/American_Gods_The_Tenth_Anniversary_Edit-epub.epub b/downloads/American_Gods_The_Tenth_Anniversary_Edit-epub.epub new file mode 100644 index 0000000..edac536 Binary files /dev/null and b/downloads/American_Gods_The_Tenth_Anniversary_Edit-epub.epub differ diff --git a/downloads/Artemis-epub.acsm b/downloads/Artemis-epub.acsm new file mode 100644 index 0000000..6b404a1 --- /dev/null +++ b/downloads/Artemis-epub.acsm @@ -0,0 +1,15 @@ + + + urn:uuid:00000000-0000-0000-0000-000000000001 + http://books.google.com/books/acs4/fulfillment + 2026-01-04T00:29:20-08:00 + ge:2452d178-bd82-8c3f-25f4-1be9aad51bfb:1767514460585609 + 15281119251267194831 + + urn:uuid:2452d178-bd82-8c3f-25f4-1be9aad51bfb + 1 + https://books.google.com/books/download/Artemis.epub?acsid=urn:uuid:2452d178-bd82-8c3f-25f4-1be9aad51bfb&output=acs4_book_bytes&ar=995b6b959a38ce1649cf66f2060000d4 + simple + + FpEkQIU9iLISjgsOIttCWxRpxcI= + diff --git a/downloads/Dating_and_Dragons-epub.epub b/downloads/Dating_and_Dragons-epub.epub new file mode 100644 index 0000000..275f7c5 Binary files /dev/null and b/downloads/Dating_and_Dragons-epub.epub differ diff --git a/downloads/Divine_Rivals-epub.epub b/downloads/Divine_Rivals-epub.epub new file mode 100644 index 0000000..f8de15b Binary files /dev/null and b/downloads/Divine_Rivals-epub.epub differ diff --git a/downloads/Drive_Me_Crazy-epub.epub b/downloads/Drive_Me_Crazy-epub.epub new file mode 100644 index 0000000..5c800b7 Binary files /dev/null and b/downloads/Drive_Me_Crazy-epub.epub differ diff --git a/downloads/Dune-epub.epub b/downloads/Dune-epub.epub new file mode 100644 index 0000000..00dfc76 Binary files /dev/null and b/downloads/Dune-epub.epub differ diff --git a/downloads/Dungeons_and_Drama-epub.epub b/downloads/Dungeons_and_Drama-epub.epub new file mode 100644 index 0000000..9c54b53 Binary files /dev/null and b/downloads/Dungeons_and_Drama-epub.epub differ diff --git a/downloads/Emma-epub.epub b/downloads/Emma-epub.epub new file mode 100644 index 0000000..a058525 Binary files /dev/null and b/downloads/Emma-epub.epub differ diff --git a/downloads/Everything_Is_Tuberculosis-epub.epub b/downloads/Everything_Is_Tuberculosis-epub.epub new file mode 100644 index 0000000..8c82f9d Binary files /dev/null and b/downloads/Everything_Is_Tuberculosis-epub.epub differ diff --git a/downloads/Fantastic_Voyage-epub.epub b/downloads/Fantastic_Voyage-epub.epub new file mode 100644 index 0000000..dca2c86 Binary files /dev/null and b/downloads/Fantastic_Voyage-epub.epub differ diff --git a/downloads/Futuristic_Violence_and_Fancy_Suits-epub.epub b/downloads/Futuristic_Violence_and_Fancy_Suits-epub.epub new file mode 100644 index 0000000..ac661c7 Binary files /dev/null and b/downloads/Futuristic_Violence_and_Fancy_Suits-epub.epub differ diff --git a/downloads/Fuzz-epub.epub b/downloads/Fuzz-epub.epub new file mode 100644 index 0000000..56f039f Binary files /dev/null and b/downloads/Fuzz-epub.epub differ diff --git a/downloads/Halo_Glasslands-epub.epub b/downloads/Halo_Glasslands-epub.epub new file mode 100644 index 0000000..e0cee60 Binary files /dev/null and b/downloads/Halo_Glasslands-epub.epub differ diff --git a/downloads/Halo_Mortal_Dictata-epub.epub b/downloads/Halo_Mortal_Dictata-epub.epub new file mode 100644 index 0000000..28ddfbc Binary files /dev/null and b/downloads/Halo_Mortal_Dictata-epub.epub differ diff --git a/downloads/Halo_The_Thursday_War-epub.epub b/downloads/Halo_The_Thursday_War-epub.epub new file mode 100644 index 0000000..b68c82b Binary files /dev/null and b/downloads/Halo_The_Thursday_War-epub.epub differ diff --git a/downloads/I_Robot-epub.epub b/downloads/I_Robot-epub.epub new file mode 100644 index 0000000..3d5adb6 Binary files /dev/null and b/downloads/I_Robot-epub.epub differ diff --git a/downloads/I_m_Starting_to_Worry_About_This_Black_B-epub.epub b/downloads/I_m_Starting_to_Worry_About_This_Black_B-epub.epub new file mode 100644 index 0000000..2ad1698 Binary files /dev/null and b/downloads/I_m_Starting_to_Worry_About_This_Black_B-epub.epub differ diff --git a/downloads/If_This_Book_Exists_You_re_in_the_Wrong-epub.epub b/downloads/If_This_Book_Exists_You_re_in_the_Wrong-epub.epub new file mode 100644 index 0000000..5215086 Binary files /dev/null and b/downloads/If_This_Book_Exists_You_re_in_the_Wrong-epub.epub differ diff --git a/downloads/John_Dies_at_the_End-epub.epub b/downloads/John_Dies_at_the_End-epub.epub new file mode 100644 index 0000000..83e172a Binary files /dev/null and b/downloads/John_Dies_at_the_End-epub.epub differ diff --git a/downloads/Jurassic_Park-epub.epub b/downloads/Jurassic_Park-epub.epub new file mode 100644 index 0000000..b435109 Binary files /dev/null and b/downloads/Jurassic_Park-epub.epub differ diff --git a/downloads/Loveless-epub.epub b/downloads/Loveless-epub.epub new file mode 100644 index 0000000..1093319 Binary files /dev/null and b/downloads/Loveless-epub.epub differ diff --git a/downloads/Micro-epub.epub b/downloads/Micro-epub.epub new file mode 100644 index 0000000..b1f5ea9 Binary files /dev/null and b/downloads/Micro-epub.epub differ diff --git a/downloads/Nemesis-epub.epub b/downloads/Nemesis-epub.epub new file mode 100644 index 0000000..63a7aa0 Binary files /dev/null and b/downloads/Nemesis-epub.epub differ diff --git a/downloads/Project_Hail_Mary-epub.epub b/downloads/Project_Hail_Mary-epub.epub new file mode 100644 index 0000000..dc5e3bf Binary files /dev/null and b/downloads/Project_Hail_Mary-epub.epub differ diff --git a/downloads/Red_Rising-epub.epub b/downloads/Red_Rising-epub.epub new file mode 100644 index 0000000..5bb4f56 Binary files /dev/null and b/downloads/Red_Rising-epub.epub differ diff --git a/downloads/Rolls_and_Rivalry-epub.epub b/downloads/Rolls_and_Rivalry-epub.epub new file mode 100644 index 0000000..8af034f Binary files /dev/null and b/downloads/Rolls_and_Rivalry-epub.epub differ diff --git a/downloads/Small_Favors-epub.epub b/downloads/Small_Favors-epub.epub new file mode 100644 index 0000000..3d859bc Binary files /dev/null and b/downloads/Small_Favors-epub.epub differ diff --git a/downloads/Sphere-epub.epub b/downloads/Sphere-epub.epub new file mode 100644 index 0000000..8340c4c Binary files /dev/null and b/downloads/Sphere-epub.epub differ diff --git a/downloads/Starship_Troopers-epub.epub b/downloads/Starship_Troopers-epub.epub new file mode 100644 index 0000000..b5cc01b Binary files /dev/null and b/downloads/Starship_Troopers-epub.epub differ diff --git a/downloads/Strange_Pictures-epub.epub b/downloads/Strange_Pictures-epub.epub new file mode 100644 index 0000000..89f798d Binary files /dev/null and b/downloads/Strange_Pictures-epub.epub differ diff --git a/downloads/The_Berlin_Stories-epub.epub b/downloads/The_Berlin_Stories-epub.epub new file mode 100644 index 0000000..095ac50 Binary files /dev/null and b/downloads/The_Berlin_Stories-epub.epub differ diff --git a/downloads/The_Blacktongue_Thief.epub b/downloads/The_Blacktongue_Thief.epub new file mode 100644 index 0000000..04fc96f Binary files /dev/null and b/downloads/The_Blacktongue_Thief.epub differ diff --git a/downloads/The_Blade_Itself-epub.epub b/downloads/The_Blade_Itself-epub.epub new file mode 100644 index 0000000..7fa8255 Binary files /dev/null and b/downloads/The_Blade_Itself-epub.epub differ diff --git a/downloads/The_Caves_of_Steel-epub.epub b/downloads/The_Caves_of_Steel-epub.epub new file mode 100644 index 0000000..a8583c3 Binary files /dev/null and b/downloads/The_Caves_of_Steel-epub.epub differ diff --git a/downloads/The_Cruel_Prince-epub.epub b/downloads/The_Cruel_Prince-epub.epub new file mode 100644 index 0000000..2583a1d Binary files /dev/null and b/downloads/The_Cruel_Prince-epub.epub differ diff --git a/downloads/The_Daughters_War.epub b/downloads/The_Daughters_War.epub new file mode 100644 index 0000000..e65be0c Binary files /dev/null and b/downloads/The_Daughters_War.epub differ diff --git a/downloads/The_Gods_Themselves-epub.epub b/downloads/The_Gods_Themselves-epub.epub new file mode 100644 index 0000000..d28c71d Binary files /dev/null and b/downloads/The_Gods_Themselves-epub.epub differ diff --git a/downloads/The_King_in_Yellow.epub b/downloads/The_King_in_Yellow.epub new file mode 100644 index 0000000..cf38aed Binary files /dev/null and b/downloads/The_King_in_Yellow.epub differ diff --git a/downloads/The_Lord_Of_The_Rings-epub.epub b/downloads/The_Lord_Of_The_Rings-epub.epub new file mode 100644 index 0000000..8e7d930 Binary files /dev/null and b/downloads/The_Lord_Of_The_Rings-epub.epub differ diff --git a/downloads/The_Magician_King-epub.epub b/downloads/The_Magician_King-epub.epub new file mode 100644 index 0000000..ee464fd Binary files /dev/null and b/downloads/The_Magician_King-epub.epub differ diff --git a/downloads/The_Magician_s_Land-epub.epub b/downloads/The_Magician_s_Land-epub.epub new file mode 100644 index 0000000..2e781e6 Binary files /dev/null and b/downloads/The_Magician_s_Land-epub.epub differ diff --git a/downloads/The_Magicians-epub.epub b/downloads/The_Magicians-epub.epub new file mode 100644 index 0000000..d0c809c Binary files /dev/null and b/downloads/The_Magicians-epub.epub differ diff --git a/downloads/The_Martian-epub.epub b/downloads/The_Martian-epub.epub new file mode 100644 index 0000000..347f7f4 Binary files /dev/null and b/downloads/The_Martian-epub.epub differ diff --git a/downloads/The_Naked_Sun-epub.epub b/downloads/The_Naked_Sun-epub.epub new file mode 100644 index 0000000..7c3fc6c Binary files /dev/null and b/downloads/The_Naked_Sun-epub.epub differ diff --git a/downloads/The_Robots_of_Dawn-epub.epub b/downloads/The_Robots_of_Dawn-epub.epub new file mode 100644 index 0000000..29cd1f5 Binary files /dev/null and b/downloads/The_Robots_of_Dawn-epub.epub differ diff --git a/downloads/The_Silmarillion-epub.epub b/downloads/The_Silmarillion-epub.epub new file mode 100644 index 0000000..6f121b7 Binary files /dev/null and b/downloads/The_Silmarillion-epub.epub differ diff --git a/downloads/This_Book_Is_Full_of_Spiders-epub.epub b/downloads/This_Book_Is_Full_of_Spiders-epub.epub new file mode 100644 index 0000000..dffca8e Binary files /dev/null and b/downloads/This_Book_Is_Full_of_Spiders-epub.epub differ diff --git a/downloads/Warriors_Super_Edition_Graystripe_s_Vow-epub.epub b/downloads/Warriors_Super_Edition_Graystripe_s_Vow-epub.epub new file mode 100644 index 0000000..894c01d Binary files /dev/null and b/downloads/Warriors_Super_Edition_Graystripe_s_Vow-epub.epub differ diff --git a/downloads/What_the_Hell_Did_I_Just_Read-epub.epub b/downloads/What_the_Hell_Did_I_Just_Read-epub.epub new file mode 100644 index 0000000..eb6b7ac Binary files /dev/null and b/downloads/What_the_Hell_Did_I_Just_Read-epub.epub differ diff --git a/downloads/Zoey_Is_Too_Drunk_for_This_Dystopia-epub.epub b/downloads/Zoey_Is_Too_Drunk_for_This_Dystopia-epub.epub new file mode 100644 index 0000000..e8c010d Binary files /dev/null and b/downloads/Zoey_Is_Too_Drunk_for_This_Dystopia-epub.epub differ diff --git a/downloads/Zoey_Punches_the_Future_in_the_Dick-epub.epub b/downloads/Zoey_Punches_the_Future_in_the_Dick-epub.epub new file mode 100644 index 0000000..216fab2 Binary files /dev/null and b/downloads/Zoey_Punches_the_Future_in_the_Dick-epub.epub differ diff --git a/knock b/knock new file mode 100644 index 0000000..e4dfefe Binary files /dev/null and b/knock differ diff --git a/knock-main/.github/workflows/test.yml.disabled b/knock-main/.github/workflows/test.yml.disabled new file mode 100644 index 0000000..75295ef --- /dev/null +++ b/knock-main/.github/workflows/test.yml.disabled @@ -0,0 +1,8 @@ +on: push +jobs: + tests: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3.0.2 + - uses: cachix/install-nix-action@v17 + - run: nix run .#tests -- ./tests/workspace diff --git a/knock-main/.gitignore b/knock-main/.gitignore new file mode 100644 index 0000000..f4d6c00 --- /dev/null +++ b/knock-main/.gitignore @@ -0,0 +1,3 @@ +result +.vscode +todo.md \ No newline at end of file diff --git a/knock-main/assets/config.json b/knock-main/assets/config.json new file mode 100644 index 0000000..b5bd3b2 --- /dev/null +++ b/knock-main/assets/config.json @@ -0,0 +1,28 @@ +{ + "paddingVertical": "45px", + "paddingHorizontal": "45px", + "backgroundImage": null, + "backgroundImageSelection": null, + "backgroundMode": "color", + "backgroundColor": "rgba(31,129,109,1)", + "dropShadow": true, + "dropShadowOffsetY": "12px", + "dropShadowBlurRadius": "22px", + "theme": "nord", + "windowTheme": "none", + "language": "text", + "fontFamily": "Hack", + "fontSize": "14px", + "lineHeight": "150%", + "windowControls": true, + "widthAdjustment": true, + "lineNumbers": false, + "firstLineNumber": 1, + "exportSize": "4x", + "watermark": false, + "squaredImage": false, + "hiddenCharacters": false, + "name": "", + "width": 680, + "highlights": null +} \ No newline at end of file diff --git a/knock-main/assets/demo.png b/knock-main/assets/demo.png new file mode 100644 index 0000000..f266226 Binary files /dev/null and b/knock-main/assets/demo.png differ diff --git a/knock-main/flake.lock b/knock-main/flake.lock new file mode 100644 index 0000000..5d03ad6 --- /dev/null +++ b/knock-main/flake.lock @@ -0,0 +1,112 @@ +{ + "nodes": { + "base64-src": { + "flake": false, + "locked": { + "lastModified": 1468170709, + "narHash": "sha256-dt6i1j0rqH7lA+2XXp9KTEhj2GvYueyGrHh9VXBEsbw=", + "ref": "master", + "rev": "7d5a89229a525452e37504976a73c35fbaf2fe4d", + "revCount": 1, + "type": "git", + "url": "https://gist.github.com/f0fd86b6c73063283afe550bc5d77594.git" + }, + "original": { + "type": "git", + "url": "https://gist.github.com/f0fd86b6c73063283afe550bc5d77594.git" + } + }, + "flake-utils": { + "locked": { + "lastModified": 1659877975, + "narHash": "sha256-zllb8aq3YO3h8B/U0/J1WBgAL8EX5yWf5pMj3G0NAmc=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "c0e246b9b83f637f4681389ecabcb2681b4f3af0", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "gourou-src": { + "flake": false, + "locked": { + "lastModified": 1654435760, + "narHash": "sha256-X94UbSwAp3rtioC8FCgJcOlVNZ5rvaAeIIVlKocFwus=", + "ref": "master", + "rev": "4f288f4e241e3cc711a10fdcf4078fd4ddfab7c2", + "revCount": 81, + "type": "git", + "url": "git://soutade.fr/libgourou.git" + }, + "original": { + "type": "git", + "url": "git://soutade.fr/libgourou.git" + } + }, + "nixpkgs": { + "locked": { + "lastModified": 1654230545, + "narHash": "sha256-8Vlwf0x8ow6pPOK2a04bT+pxIeRnM1+O0Xv9/CuDzRs=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "236cc2971ac72acd90f0ae3a797f9f83098b17ec", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixos-unstable", + "repo": "nixpkgs", + "type": "github" + } + }, + "pugixml-src": { + "flake": false, + "locked": { + "lastModified": 1644379750, + "narHash": "sha256-FLemG9T17n6l7vgb01OmO22BK59jv5uozVHeUnILEEQ=", + "owner": "zeux", + "repo": "pugixml", + "rev": "314baf6605143f1e837209008f490e8559529e1c", + "type": "github" + }, + "original": { + "owner": "zeux", + "ref": "latest", + "repo": "pugixml", + "type": "github" + } + }, + "root": { + "inputs": { + "base64-src": "base64-src", + "flake-utils": "flake-utils", + "gourou-src": "gourou-src", + "nixpkgs": "nixpkgs", + "pugixml-src": "pugixml-src", + "updfparser-src": "updfparser-src" + } + }, + "updfparser-src": { + "flake": false, + "locked": { + "lastModified": 1647424063, + "narHash": "sha256-9dvibKiUbbI4CrmuAaJzlpntT0XdLvdGeC2/WzjlA5U=", + "ref": "master", + "rev": "9d56c1d0b1ce81aae4c8db9d99a8b5d1f7967bcf", + "revCount": 25, + "type": "git", + "url": "git://soutade.fr/updfparser.git" + }, + "original": { + "type": "git", + "url": "git://soutade.fr/updfparser.git" + } + } + }, + "root": "root", + "version": 7 +} diff --git a/knock-main/flake.nix b/knock-main/flake.nix new file mode 100644 index 0000000..6f4d5c2 --- /dev/null +++ b/knock-main/flake.nix @@ -0,0 +1,197 @@ +{ + inputs = { + nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable"; + flake-utils.url = "github:numtide/flake-utils"; + gourou-src = { + url = "git://soutade.fr/libgourou.git"; + flake = false; + }; + updfparser-src = { + url = "git://soutade.fr/updfparser.git"; + flake = false; + }; + base64-src = { + url = "git+https://gist.github.com/f0fd86b6c73063283afe550bc5d77594.git"; + flake = false; + }; + pugixml-src = { + url = "github:zeux/pugixml/latest"; + flake = false; + }; + }; + + outputs = flakes: + flakes.flake-utils.lib.eachSystem [ "x86_64-linux" "aarch64-linux" ] + (system: + let + version = "1.3.1"; + self = flakes.self.packages.${system}; + nixpkgs = flakes.nixpkgs.legacyPackages.${system}.pkgsStatic; + nixpkgs-dyn = flakes.nixpkgs.legacyPackages.${system}; + nixpkgs-fmt = flakes.nixpkgs-fmt.defaultPackage.${system}; + gourou-src = flakes.gourou-src; + updfparser-src = flakes.updfparser-src; + base64-src = flakes.base64-src; + pugixml-src = flakes.pugixml-src; + cxx = "${nixpkgs.stdenv.cc}/bin/${nixpkgs.stdenv.cc.targetPrefix}c++"; + ar = "${nixpkgs.stdenv.cc.bintools.bintools_bin}/bin/${nixpkgs.stdenv.cc.targetPrefix}ar"; + obj-flags = "-O2 -static"; + in + rec { + packages.libzip-static = nixpkgs.libzip.overrideAttrs (prev: { + cmakeFlags = (prev.cmakeFlags or [ ]) ++ [ + "-DBUILD_SHARED_LIBS=OFF" + "-DBUILD_EXAMPLES=OFF" + "-DBUILD_DOC=OFF" + "-DBUILD_TOOLS=OFF" + "-DBUILD_REGRESS=OFF" + ]; + outputs = [ "out" ]; + }); + packages.base64 = derivation { + name = "updfparser"; + inherit system; + builder = "${nixpkgs.bash}/bin/bash"; + PATH = "${nixpkgs.coreutils}/bin"; + args = [ + "-c" + '' + mkdir -p $out/include/base64 + cp ${base64-src}/Base64.h $out/include/base64/Base64.h + '' + ]; + }; + packages.updfparser = derivation { + name = "updfparser"; + inherit system; + builder = "${nixpkgs.bash}/bin/bash"; + PATH = "${nixpkgs.coreutils}/bin"; + args = [ + "-c" + '' + ${cxx} \ + -c ${updfparser-src}/src/*.cpp \ + -I ${updfparser-src}/include \ + ${obj-flags} + mkdir -p $out/lib + ${ar} crs $out/lib/libupdfparser.a *.o + '' + ]; + }; + packages.gourou = derivation { + name = "gourou"; + inherit system; + builder = "${nixpkgs.bash}/bin/bash"; + PATH = "${nixpkgs.coreutils}/bin"; + args = [ + "-c" + '' + shopt -s extglob + ${cxx} \ + -c \ + ${gourou-src}/src/!(pugixml).cpp \ + ${pugixml-src}/src/pugixml.cpp \ + -I ${self.base64}/include \ + -I ${gourou-src}/include \ + -I ${pugixml-src}/src \ + -I ${updfparser-src}/include \ + ${obj-flags} + mkdir -p $out/lib $out/debug + ${ar} crs $out/lib/libgourou.a *.o + cp *.o $out/debug + '' + ]; + }; + packages.utils-common = derivation { + name = "utils-common"; + inherit system; + builder = "${nixpkgs.bash}/bin/bash"; + PATH = "${nixpkgs.coreutils}/bin"; + args = [ + "-c" + '' + ${cxx} \ + -c ${gourou-src}/utils/drmprocessorclientimpl.cpp \ + ${gourou-src}/utils/utils_common.cpp \ + -I ${gourou-src}/utils \ + -I ${gourou-src}/include \ + -I ${pugixml-src}/src \ + -I ${nixpkgs.openssl.dev}/include \ + -I ${nixpkgs.curl.dev}/include \ + -I ${nixpkgs.zlib.dev}/include \ + -I ${self.libzip-static}/include \ + ${obj-flags} + mkdir -p $out/lib + ${ar} crs $out/lib/libutils-common.a *.o + '' + ]; + }; + packages.knock = derivation { + name = "knock"; + inherit system; + builder = "${nixpkgs.bash}/bin/bash"; + PATH = "${nixpkgs.coreutils}/bin"; + args = [ + "-c" + '' + mkdir -p $out/bin + ${cxx} \ + -o $out/bin/knock \ + ${./src/knock.cpp} \ + -D KNOCK_VERSION='"${version}"' \ + --std=c++17 \ + -Wl,--as-needed -static \ + ${self.utils-common}/lib/libutils-common.a \ + ${self.gourou}/lib/libgourou.a \ + ${self.updfparser}/lib/libupdfparser.a \ + -Wl,--start-group \ + ${self.libzip-static}/lib/libzip.a \ + ${nixpkgs.libnghttp2}/lib/libnghttp2.a \ + ${nixpkgs.libidn2.out}/lib/libidn2.a \ + ${nixpkgs.libunistring}/lib/libunistring.a \ + ${nixpkgs.libssh2}/lib/libssh2.a \ + ${nixpkgs.zstd.out}/lib/libzstd.a \ + ${nixpkgs.zlib}/lib/libz.a \ + ${nixpkgs.openssl.out}/lib/libcrypto.a \ + ${nixpkgs.curl.out}/lib/libcurl.a \ + ${nixpkgs.openssl.out}/lib/libssl.a \ + -static-libgcc -static-libstdc++ \ + -Wl,--end-group \ + -I ${gourou-src}/utils \ + -I ${gourou-src}/include \ + -I ${pugixml-src}/src \ + -I ${nixpkgs.openssl.dev}/include \ + -I ${nixpkgs.curl.dev}/include \ + -I ${nixpkgs.zlib.dev}/include \ + -I ${self.libzip-static}/include + '' + ]; + }; + packages.default = self.knock; + packages.tests = nixpkgs-dyn.stdenv.mkDerivation { + name = "tests"; + src = ./tests; + buildInputs = [ + (nixpkgs-dyn.python3.withPackages (p: [ + p.beautifulsoup4 + p.requests + ])) + ]; + patchPhase = '' + substituteInPlace tests.py --replace "./result/bin/knock" "${self.knock}/bin/knock" + ''; + installPhase = '' + mkdir -p $out/bin + cp tests.py $out/bin/tests + chmod +x $out/bin/tests + ''; + }; + packages.formatter = nixpkgs.writeShellScriptBin "formatter" '' + set -x + ${nixpkgs-dyn.clang-tools}/bin/clang-format -i --verbose ./src/*.cpp + ${nixpkgs-dyn.nixpkgs-fmt}/bin/nixpkgs-fmt . + ${nixpkgs-dyn.black}/bin/black ./tests + ''; + } + ); +} diff --git a/knock-main/license b/knock-main/license new file mode 100644 index 0000000..f288702 --- /dev/null +++ b/knock-main/license @@ -0,0 +1,674 @@ + GNU GENERAL PUBLIC LICENSE + Version 3, 29 June 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The GNU General Public License is a free, copyleft license for +software and other kinds of works. + + The licenses for most software and other practical works are designed +to take away your freedom to share and change the works. By contrast, +the GNU General Public License is intended to guarantee your freedom to +share and change all versions of a program--to make sure it remains free +software for all its users. We, the Free Software Foundation, use the +GNU General Public License for most of our software; it applies also to +any other work released this way by its authors. You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +them if you wish), that you receive source code or can get it if you +want it, that you can change the software or use pieces of it in new +free programs, and that you know you can do these things. + + To protect your rights, we need to prevent others from denying you +these rights or asking you to surrender the rights. Therefore, you have +certain responsibilities if you distribute copies of the software, or if +you modify it: responsibilities to respect the freedom of others. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must pass on to the recipients the same +freedoms that you received. You must make sure that they, too, receive +or can get the source code. And you must show them these terms so they +know their rights. + + Developers that use the GNU GPL protect your rights with two steps: +(1) assert copyright on the software, and (2) offer you this License +giving you legal permission to copy, distribute and/or modify it. + + For the developers' and authors' protection, the GPL clearly explains +that there is no warranty for this free software. For both users' and +authors' sake, the GPL requires that modified versions be marked as +changed, so that their problems will not be attributed erroneously to +authors of previous versions. + + Some devices are designed to deny users access to install or run +modified versions of the software inside them, although the manufacturer +can do so. This is fundamentally incompatible with the aim of +protecting users' freedom to change the software. The systematic +pattern of such abuse occurs in the area of products for individuals to +use, which is precisely where it is most unacceptable. Therefore, we +have designed this version of the GPL to prohibit the practice for those +products. If such problems arise substantially in other domains, we +stand ready to extend this provision to those domains in future versions +of the GPL, as needed to protect the freedom of users. + + Finally, every program is threatened constantly by software patents. +States should not allow patents to restrict development and use of +software on general-purpose computers, but in those that do, we wish to +avoid the special danger that patents applied to a free program could +make it effectively proprietary. To prevent this, the GPL assures that +patents cannot be used to render the program non-free. + + The precise terms and conditions for copying, distribution and +modification follow. + + TERMS AND CONDITIONS + + 0. Definitions. + + "This License" refers to version 3 of the GNU General Public License. + + "Copyright" also means copyright-like laws that apply to other kinds of +works, such as semiconductor masks. + + "The Program" refers to any copyrightable work licensed under this +License. Each licensee is addressed as "you". "Licensees" and +"recipients" may be individuals or organizations. + + To "modify" a work means to copy from or adapt all or part of the work +in a fashion requiring copyright permission, other than the making of an +exact copy. The resulting work is called a "modified version" of the +earlier work or a work "based on" the earlier work. + + A "covered work" means either the unmodified Program or a work based +on the Program. + + To "propagate" a work means to do anything with it that, without +permission, would make you directly or secondarily liable for +infringement under applicable copyright law, except executing it on a +computer or modifying a private copy. Propagation includes copying, +distribution (with or without modification), making available to the +public, and in some countries other activities as well. + + To "convey" a work means any kind of propagation that enables other +parties to make or receive copies. Mere interaction with a user through +a computer network, with no transfer of a copy, is not conveying. + + An interactive user interface displays "Appropriate Legal Notices" +to the extent that it includes a convenient and prominently visible +feature that (1) displays an appropriate copyright notice, and (2) +tells the user that there is no warranty for the work (except to the +extent that warranties are provided), that licensees may convey the +work under this License, and how to view a copy of this License. If +the interface presents a list of user commands or options, such as a +menu, a prominent item in the list meets this criterion. + + 1. Source Code. + + The "source code" for a work means the preferred form of the work +for making modifications to it. "Object code" means any non-source +form of a work. + + A "Standard Interface" means an interface that either is an official +standard defined by a recognized standards body, or, in the case of +interfaces specified for a particular programming language, one that +is widely used among developers working in that language. + + The "System Libraries" of an executable work include anything, other +than the work as a whole, that (a) is included in the normal form of +packaging a Major Component, but which is not part of that Major +Component, and (b) serves only to enable use of the work with that +Major Component, or to implement a Standard Interface for which an +implementation is available to the public in source code form. A +"Major Component", in this context, means a major essential component +(kernel, window system, and so on) of the specific operating system +(if any) on which the executable work runs, or a compiler used to +produce the work, or an object code interpreter used to run it. + + The "Corresponding Source" for a work in object code form means all +the source code needed to generate, install, and (for an executable +work) run the object code and to modify the work, including scripts to +control those activities. However, it does not include the work's +System Libraries, or general-purpose tools or generally available free +programs which are used unmodified in performing those activities but +which are not part of the work. For example, Corresponding Source +includes interface definition files associated with source files for +the work, and the source code for shared libraries and dynamically +linked subprograms that the work is specifically designed to require, +such as by intimate data communication or control flow between those +subprograms and other parts of the work. + + The Corresponding Source need not include anything that users +can regenerate automatically from other parts of the Corresponding +Source. + + The Corresponding Source for a work in source code form is that +same work. + + 2. Basic Permissions. + + All rights granted under this License are granted for the term of +copyright on the Program, and are irrevocable provided the stated +conditions are met. This License explicitly affirms your unlimited +permission to run the unmodified Program. The output from running a +covered work is covered by this License only if the output, given its +content, constitutes a covered work. This License acknowledges your +rights of fair use or other equivalent, as provided by copyright law. + + You may make, run and propagate covered works that you do not +convey, without conditions so long as your license otherwise remains +in force. You may convey covered works to others for the sole purpose +of having them make modifications exclusively for you, or provide you +with facilities for running those works, provided that you comply with +the terms of this License in conveying all material for which you do +not control copyright. Those thus making or running the covered works +for you must do so exclusively on your behalf, under your direction +and control, on terms that prohibit them from making any copies of +your copyrighted material outside their relationship with you. + + Conveying under any other circumstances is permitted solely under +the conditions stated below. Sublicensing is not allowed; section 10 +makes it unnecessary. + + 3. Protecting Users' Legal Rights From Anti-Circumvention Law. + + No covered work shall be deemed part of an effective technological +measure under any applicable law fulfilling obligations under article +11 of the WIPO copyright treaty adopted on 20 December 1996, or +similar laws prohibiting or restricting circumvention of such +measures. + + When you convey a covered work, you waive any legal power to forbid +circumvention of technological measures to the extent such circumvention +is effected by exercising rights under this License with respect to +the covered work, and you disclaim any intention to limit operation or +modification of the work as a means of enforcing, against the work's +users, your or third parties' legal rights to forbid circumvention of +technological measures. + + 4. Conveying Verbatim Copies. + + You may convey verbatim copies of the Program's source code as you +receive it, in any medium, provided that you conspicuously and +appropriately publish on each copy an appropriate copyright notice; +keep intact all notices stating that this License and any +non-permissive terms added in accord with section 7 apply to the code; +keep intact all notices of the absence of any warranty; and give all +recipients a copy of this License along with the Program. + + You may charge any price or no price for each copy that you convey, +and you may offer support or warranty protection for a fee. + + 5. Conveying Modified Source Versions. + + You may convey a work based on the Program, or the modifications to +produce it from the Program, in the form of source code under the +terms of section 4, provided that you also meet all of these conditions: + + a) The work must carry prominent notices stating that you modified + it, and giving a relevant date. + + b) The work must carry prominent notices stating that it is + released under this License and any conditions added under section + 7. This requirement modifies the requirement in section 4 to + "keep intact all notices". + + c) You must license the entire work, as a whole, under this + License to anyone who comes into possession of a copy. This + License will therefore apply, along with any applicable section 7 + additional terms, to the whole of the work, and all its parts, + regardless of how they are packaged. This License gives no + permission to license the work in any other way, but it does not + invalidate such permission if you have separately received it. + + d) If the work has interactive user interfaces, each must display + Appropriate Legal Notices; however, if the Program has interactive + interfaces that do not display Appropriate Legal Notices, your + work need not make them do so. + + A compilation of a covered work with other separate and independent +works, which are not by their nature extensions of the covered work, +and which are not combined with it such as to form a larger program, +in or on a volume of a storage or distribution medium, is called an +"aggregate" if the compilation and its resulting copyright are not +used to limit the access or legal rights of the compilation's users +beyond what the individual works permit. Inclusion of a covered work +in an aggregate does not cause this License to apply to the other +parts of the aggregate. + + 6. Conveying Non-Source Forms. + + You may convey a covered work in object code form under the terms +of sections 4 and 5, provided that you also convey the +machine-readable Corresponding Source under the terms of this License, +in one of these ways: + + a) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by the + Corresponding Source fixed on a durable physical medium + customarily used for software interchange. + + b) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by a + written offer, valid for at least three years and valid for as + long as you offer spare parts or customer support for that product + model, to give anyone who possesses the object code either (1) a + copy of the Corresponding Source for all the software in the + product that is covered by this License, on a durable physical + medium customarily used for software interchange, for a price no + more than your reasonable cost of physically performing this + conveying of source, or (2) access to copy the + Corresponding Source from a network server at no charge. + + c) Convey individual copies of the object code with a copy of the + written offer to provide the Corresponding Source. This + alternative is allowed only occasionally and noncommercially, and + only if you received the object code with such an offer, in accord + with subsection 6b. + + d) Convey the object code by offering access from a designated + place (gratis or for a charge), and offer equivalent access to the + Corresponding Source in the same way through the same place at no + further charge. You need not require recipients to copy the + Corresponding Source along with the object code. If the place to + copy the object code is a network server, the Corresponding Source + may be on a different server (operated by you or a third party) + that supports equivalent copying facilities, provided you maintain + clear directions next to the object code saying where to find the + Corresponding Source. Regardless of what server hosts the + Corresponding Source, you remain obligated to ensure that it is + available for as long as needed to satisfy these requirements. + + e) Convey the object code using peer-to-peer transmission, provided + you inform other peers where the object code and Corresponding + Source of the work are being offered to the general public at no + charge under subsection 6d. + + A separable portion of the object code, whose source code is excluded +from the Corresponding Source as a System Library, need not be +included in conveying the object code work. + + A "User Product" is either (1) a "consumer product", which means any +tangible personal property which is normally used for personal, family, +or household purposes, or (2) anything designed or sold for incorporation +into a dwelling. In determining whether a product is a consumer product, +doubtful cases shall be resolved in favor of coverage. For a particular +product received by a particular user, "normally used" refers to a +typical or common use of that class of product, regardless of the status +of the particular user or of the way in which the particular user +actually uses, or expects or is expected to use, the product. A product +is a consumer product regardless of whether the product has substantial +commercial, industrial or non-consumer uses, unless such uses represent +the only significant mode of use of the product. + + "Installation Information" for a User Product means any methods, +procedures, authorization keys, or other information required to install +and execute modified versions of a covered work in that User Product from +a modified version of its Corresponding Source. The information must +suffice to ensure that the continued functioning of the modified object +code is in no case prevented or interfered with solely because +modification has been made. + + If you convey an object code work under this section in, or with, or +specifically for use in, a User Product, and the conveying occurs as +part of a transaction in which the right of possession and use of the +User Product is transferred to the recipient in perpetuity or for a +fixed term (regardless of how the transaction is characterized), the +Corresponding Source conveyed under this section must be accompanied +by the Installation Information. But this requirement does not apply +if neither you nor any third party retains the ability to install +modified object code on the User Product (for example, the work has +been installed in ROM). + + The requirement to provide Installation Information does not include a +requirement to continue to provide support service, warranty, or updates +for a work that has been modified or installed by the recipient, or for +the User Product in which it has been modified or installed. Access to a +network may be denied when the modification itself materially and +adversely affects the operation of the network or violates the rules and +protocols for communication across the network. + + Corresponding Source conveyed, and Installation Information provided, +in accord with this section must be in a format that is publicly +documented (and with an implementation available to the public in +source code form), and must require no special password or key for +unpacking, reading or copying. + + 7. Additional Terms. + + "Additional permissions" are terms that supplement the terms of this +License by making exceptions from one or more of its conditions. +Additional permissions that are applicable to the entire Program shall +be treated as though they were included in this License, to the extent +that they are valid under applicable law. If additional permissions +apply only to part of the Program, that part may be used separately +under those permissions, but the entire Program remains governed by +this License without regard to the additional permissions. + + When you convey a copy of a covered work, you may at your option +remove any additional permissions from that copy, or from any part of +it. (Additional permissions may be written to require their own +removal in certain cases when you modify the work.) You may place +additional permissions on material, added by you to a covered work, +for which you have or can give appropriate copyright permission. + + Notwithstanding any other provision of this License, for material you +add to a covered work, you may (if authorized by the copyright holders of +that material) supplement the terms of this License with terms: + + a) Disclaiming warranty or limiting liability differently from the + terms of sections 15 and 16 of this License; or + + b) Requiring preservation of specified reasonable legal notices or + author attributions in that material or in the Appropriate Legal + Notices displayed by works containing it; or + + c) Prohibiting misrepresentation of the origin of that material, or + requiring that modified versions of such material be marked in + reasonable ways as different from the original version; or + + d) Limiting the use for publicity purposes of names of licensors or + authors of the material; or + + e) Declining to grant rights under trademark law for use of some + trade names, trademarks, or service marks; or + + f) Requiring indemnification of licensors and authors of that + material by anyone who conveys the material (or modified versions of + it) with contractual assumptions of liability to the recipient, for + any liability that these contractual assumptions directly impose on + those licensors and authors. + + All other non-permissive additional terms are considered "further +restrictions" within the meaning of section 10. If the Program as you +received it, or any part of it, contains a notice stating that it is +governed by this License along with a term that is a further +restriction, you may remove that term. If a license document contains +a further restriction but permits relicensing or conveying under this +License, you may add to a covered work material governed by the terms +of that license document, provided that the further restriction does +not survive such relicensing or conveying. + + If you add terms to a covered work in accord with this section, you +must place, in the relevant source files, a statement of the +additional terms that apply to those files, or a notice indicating +where to find the applicable terms. + + Additional terms, permissive or non-permissive, may be stated in the +form of a separately written license, or stated as exceptions; +the above requirements apply either way. + + 8. Termination. + + You may not propagate or modify a covered work except as expressly +provided under this License. Any attempt otherwise to propagate or +modify it is void, and will automatically terminate your rights under +this License (including any patent licenses granted under the third +paragraph of section 11). + + However, if you cease all violation of this License, then your +license from a particular copyright holder is reinstated (a) +provisionally, unless and until the copyright holder explicitly and +finally terminates your license, and (b) permanently, if the copyright +holder fails to notify you of the violation by some reasonable means +prior to 60 days after the cessation. + + Moreover, your license from a particular copyright holder is +reinstated permanently if the copyright holder notifies you of the +violation by some reasonable means, this is the first time you have +received notice of violation of this License (for any work) from that +copyright holder, and you cure the violation prior to 30 days after +your receipt of the notice. + + Termination of your rights under this section does not terminate the +licenses of parties who have received copies or rights from you under +this License. If your rights have been terminated and not permanently +reinstated, you do not qualify to receive new licenses for the same +material under section 10. + + 9. Acceptance Not Required for Having Copies. + + You are not required to accept this License in order to receive or +run a copy of the Program. Ancillary propagation of a covered work +occurring solely as a consequence of using peer-to-peer transmission +to receive a copy likewise does not require acceptance. However, +nothing other than this License grants you permission to propagate or +modify any covered work. These actions infringe copyright if you do +not accept this License. Therefore, by modifying or propagating a +covered work, you indicate your acceptance of this License to do so. + + 10. Automatic Licensing of Downstream Recipients. + + Each time you convey a covered work, the recipient automatically +receives a license from the original licensors, to run, modify and +propagate that work, subject to this License. You are not responsible +for enforcing compliance by third parties with this License. + + An "entity transaction" is a transaction transferring control of an +organization, or substantially all assets of one, or subdividing an +organization, or merging organizations. If propagation of a covered +work results from an entity transaction, each party to that +transaction who receives a copy of the work also receives whatever +licenses to the work the party's predecessor in interest had or could +give under the previous paragraph, plus a right to possession of the +Corresponding Source of the work from the predecessor in interest, if +the predecessor has it or can get it with reasonable efforts. + + You may not impose any further restrictions on the exercise of the +rights granted or affirmed under this License. For example, you may +not impose a license fee, royalty, or other charge for exercise of +rights granted under this License, and you may not initiate litigation +(including a cross-claim or counterclaim in a lawsuit) alleging that +any patent claim is infringed by making, using, selling, offering for +sale, or importing the Program or any portion of it. + + 11. Patents. + + A "contributor" is a copyright holder who authorizes use under this +License of the Program or a work on which the Program is based. The +work thus licensed is called the contributor's "contributor version". + + A contributor's "essential patent claims" are all patent claims +owned or controlled by the contributor, whether already acquired or +hereafter acquired, that would be infringed by some manner, permitted +by this License, of making, using, or selling its contributor version, +but do not include claims that would be infringed only as a +consequence of further modification of the contributor version. For +purposes of this definition, "control" includes the right to grant +patent sublicenses in a manner consistent with the requirements of +this License. + + Each contributor grants you a non-exclusive, worldwide, royalty-free +patent license under the contributor's essential patent claims, to +make, use, sell, offer for sale, import and otherwise run, modify and +propagate the contents of its contributor version. + + In the following three paragraphs, a "patent license" is any express +agreement or commitment, however denominated, not to enforce a patent +(such as an express permission to practice a patent or covenant not to +sue for patent infringement). To "grant" such a patent license to a +party means to make such an agreement or commitment not to enforce a +patent against the party. + + If you convey a covered work, knowingly relying on a patent license, +and the Corresponding Source of the work is not available for anyone +to copy, free of charge and under the terms of this License, through a +publicly available network server or other readily accessible means, +then you must either (1) cause the Corresponding Source to be so +available, or (2) arrange to deprive yourself of the benefit of the +patent license for this particular work, or (3) arrange, in a manner +consistent with the requirements of this License, to extend the patent +license to downstream recipients. "Knowingly relying" means you have +actual knowledge that, but for the patent license, your conveying the +covered work in a country, or your recipient's use of the covered work +in a country, would infringe one or more identifiable patents in that +country that you have reason to believe are valid. + + If, pursuant to or in connection with a single transaction or +arrangement, you convey, or propagate by procuring conveyance of, a +covered work, and grant a patent license to some of the parties +receiving the covered work authorizing them to use, propagate, modify +or convey a specific copy of the covered work, then the patent license +you grant is automatically extended to all recipients of the covered +work and works based on it. + + A patent license is "discriminatory" if it does not include within +the scope of its coverage, prohibits the exercise of, or is +conditioned on the non-exercise of one or more of the rights that are +specifically granted under this License. You may not convey a covered +work if you are a party to an arrangement with a third party that is +in the business of distributing software, under which you make payment +to the third party based on the extent of your activity of conveying +the work, and under which the third party grants, to any of the +parties who would receive the covered work from you, a discriminatory +patent license (a) in connection with copies of the covered work +conveyed by you (or copies made from those copies), or (b) primarily +for and in connection with specific products or compilations that +contain the covered work, unless you entered into that arrangement, +or that patent license was granted, prior to 28 March 2007. + + Nothing in this License shall be construed as excluding or limiting +any implied license or other defenses to infringement that may +otherwise be available to you under applicable patent law. + + 12. No Surrender of Others' Freedom. + + If conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot convey a +covered work so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you may +not convey it at all. For example, if you agree to terms that obligate you +to collect a royalty for further conveying from those to whom you convey +the Program, the only way you could satisfy both those terms and this +License would be to refrain entirely from conveying the Program. + + 13. Use with the GNU Affero General Public License. + + Notwithstanding any other provision of this License, you have +permission to link or combine any covered work with a work licensed +under version 3 of the GNU Affero General Public License into a single +combined work, and to convey the resulting work. The terms of this +License will continue to apply to the part which is the covered work, +but the special requirements of the GNU Affero General Public License, +section 13, concerning interaction through a network will apply to the +combination as such. + + 14. Revised Versions of this License. + + The Free Software Foundation may publish revised and/or new versions of +the GNU General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + + Each version is given a distinguishing version number. If the +Program specifies that a certain numbered version of the GNU General +Public License "or any later version" applies to it, you have the +option of following the terms and conditions either of that numbered +version or of any later version published by the Free Software +Foundation. If the Program does not specify a version number of the +GNU General Public License, you may choose any version ever published +by the Free Software Foundation. + + If the Program specifies that a proxy can decide which future +versions of the GNU General Public License can be used, that proxy's +public statement of acceptance of a version permanently authorizes you +to choose that version for the Program. + + Later license versions may give you additional or different +permissions. However, no additional obligations are imposed on any +author or copyright holder as a result of your choosing to follow a +later version. + + 15. Disclaimer of Warranty. + + THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY +APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT +HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY +OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, +THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM +IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF +ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. Limitation of Liability. + + IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS +THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY +GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE +USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF +DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD +PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), +EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF +SUCH DAMAGES. + + 17. Interpretation of Sections 15 and 16. + + If the disclaimer of warranty and limitation of liability provided +above cannot be given local legal effect according to their terms, +reviewing courts shall apply local law that most closely approximates +an absolute waiver of all civil liability in connection with the +Program, unless a warranty or assumption of liability accompanies a +copy of the Program in return for a fee. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +state the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . + +Also add information on how to contact you by electronic and paper mail. + + If the program does terminal interaction, make it output a short +notice like this when it starts in an interactive mode: + + Copyright (C) + This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, your program's commands +might be different; for a GUI interface, you would use an "about box". + + You should also get your employer (if you work as a programmer) or school, +if any, to sign a "copyright disclaimer" for the program, if necessary. +For more information on this, and how to apply and follow the GNU GPL, see +. + + The GNU General Public License does not permit incorporating your program +into proprietary programs. If your program is a subroutine library, you +may consider it more useful to permit linking proprietary applications with +the library. If this is what you want to do, use the GNU Lesser General +Public License instead of this License. But first, please read +. diff --git a/knock-main/readme.md b/knock-main/readme.md new file mode 100644 index 0000000..f7483f2 --- /dev/null +++ b/knock-main/readme.md @@ -0,0 +1,83 @@ +# Knock + +Convert ACSM files to PDF/EPUBs with one command on Linux ([and MacOS very soon](https://github.com/BentonEdmondson/knock/issues/58)). + +![Demonstration of CLI usage](./assets/demo.png) + +*This software does not utilize Adobe Digital Editions nor Wine. It is completely free and open-source software written natively for Linux.* + +## Installation + +1. Run `uname -ms` and, based on the output, download the latest corresponding [release](https://github.com/BentonEdmondson/knock/releases). +1. `cd` into the directory that knock is in (e.g. `cd ~/Downloads`). +1. Run `mv knock-version-arch-os knock` to rename the binary to `knock`. +1. Run `chmod +x knock` to make it executable. +1. Run `./knock ./path/to/book.acsm` to perform the conversion. +1. Run `mv knock ~/.local/bin` to allow it to be run from anywhere (might not work on some distributions). + +### Nix and NixOS (with [flakes](https://nixos.wiki/wiki/Flakes) enabled) + +If you are on a system with [Nix](https://github.com/NixOS/nix), you can use the following. + +``` +nix profile install github:BentonEdmondson/knock +``` + +If you are on [NixOS](https://github.com/NixOS/nixpkgs), you can add the flake to your system config. + +## Dependencies + +There are no userspace runtime dependencies. + +## Verified Book Sources + +Knock should work on any ACSM file, but it has been specifically verified to work on ACSM files purchased [eBooks.com](https://www.ebooks.com/en-us/) and [Kobo](https://www.kobo.com/us/en), among others. + +Before buying your ebook, check if it is available for free on [Project Gutenberg](https://gutenberg.org/). + +## Contributing + +Install [Nix](https://github.com/NixOS/nix) if you don't have it. Enable [flakes](https://nixos.wiki/wiki/Flakes) if you haven't. + +### Building + +``` +nix build +``` + +### Updating + +``` +nix flake update +``` + +### Testing + +``` +nix run .#tests -- ./tests/workspace +``` + +Test books can be found [here](https://www.adobe.com/solutions/ebook/digital-editions/sample-ebook-library.html). + +### Formatting + +``` +nix run .#formatter +``` + +## The Name + +The name comes from the [D&D 5e spell](https://roll20.net/compendium/dnd5e/Knock#content) for freeing locked items: + +> ### Knock +> *2nd level transmutation*\ +> **Casting Time**: 1 action\ +> **Range**: 60 feet\ +> **Components**: V\ +> **Duration**: Instantaneous\ +> **Classes**: Bard, Sorcerer, Wizard\ +> Choose an object that you can see within range. The object can be a door, a box, a chest, a set of manacles, a padlock, or another object that contains a mundane or magical means that prevents access. A target that is held shut by a mundane lock or that is stuck or barred becomes unlocked, unstuck, or unbarred. If the object has multiple locks, only one of them is unlocked. If you choose a target that is held shut with arcane lock, that spell is suppressed for 10 minutes, during which time the target can be opened and shut normally. When you cast the spell, a loud knock, audible from as far away as 300 feet, emanates from the target object. + +## License + +This software is licensed under GPLv3. The linked libraries have various licenses. diff --git a/knock-main/src/knock.cpp b/knock-main/src/knock.cpp new file mode 100644 index 0000000..11c5a52 --- /dev/null +++ b/knock-main/src/knock.cpp @@ -0,0 +1,121 @@ +#include "drmprocessorclientimpl.h" +#include "libgourou.h" +#include "libgourou_common.h" +#include + +#ifndef KNOCK_VERSION +#error KNOCK_VERSION must be defined +#endif + +std::string get_data_dir(); +void verify_absence(std::string file); +void verify_presence(std::string file); + +int main(int argc, char **argv) try { + + if (argc == 1) { + std::cout << "info: knock version " << KNOCK_VERSION + << ", libgourou version " << LIBGOUROU_VERSION << "\n" + << "usage: " << argv[0] << " [ACSM]\n" + << "result: converts file ACSM to a plain EPUB/PDF if present, " + "otherwise prints this" + << std::endl; + return EXIT_SUCCESS; + } + + if (argc != 2) { + throw std::invalid_argument("the ACSM file must be passed as an argument"); + } + + const std::string acsm_file = argv[1]; + verify_presence(acsm_file); + const std::string acsm_stem = + acsm_file.substr(0, acsm_file.find_last_of(".")); + const std::string drm_file = acsm_stem + ".drm"; + const std::string out_file = acsm_stem + ".out"; + verify_absence(drm_file); + verify_absence(out_file); + const std::string knock_data = get_data_dir(); + + DRMProcessorClientImpl client; + gourou::DRMProcessor *processor = gourou::DRMProcessor::createDRMProcessor( + &client, + false, // don't "always generate a new device" (default) + knock_data); + + std::cout << "anonymously signing in..." << std::endl; + processor->signIn("anonymous", ""); + processor->activateDevice(); + + std::cout << "downloading the file from Adobe..." << std::endl; + gourou::FulfillmentItem *item = processor->fulfill(acsm_file); + gourou::DRMProcessor::ITEM_TYPE type = processor->download(item, drm_file); + + std::cout << "removing DRM from the file..." << std::endl; + std::string ext_file; + std::string file_type; + switch (type) { + case gourou::DRMProcessor::ITEM_TYPE::PDF: { + // for pdfs the function moves the pdf while removing drm + processor->removeDRM(drm_file, out_file, type, nullptr, 0); + std::filesystem::remove(drm_file); + ext_file = acsm_stem + ".pdf"; + file_type = "PDF"; + break; + } + case gourou::DRMProcessor::ITEM_TYPE::EPUB: { + // for epubs the drm is removed in-place so in == out + processor->removeDRM(drm_file, drm_file, type, nullptr, 0); + std::filesystem::rename(drm_file, out_file); + ext_file = acsm_stem + ".epub"; + file_type = "EPUB"; + break; + } + } + + if (std::filesystem::exists(ext_file)) { + std::cerr << "warning: failed to update file extension; " + ext_file + + " already exists" + << std::endl; + ext_file = out_file; + } else { + std::filesystem::rename(out_file, ext_file); + } + + std::filesystem::remove(acsm_file); + std::cout << file_type + " file generated at " + ext_file << std::endl; + + return 0; + +} catch (const gourou::Exception &e) { + std::cerr << "error:\n" << e.what(); + return EXIT_FAILURE; +} catch (const std::exception &e) { + std::cerr << "error: " << e.what() << std::endl; + return EXIT_FAILURE; +} + +std::string get_data_dir() { + char *xdg_data_home = std::getenv("XDG_DATA_HOME"); + std::string knock_data; + if (xdg_data_home != nullptr) { + knock_data = xdg_data_home; + } else { + knock_data = std::string(std::getenv("HOME")) + "/.local/share"; + } + knock_data += "/knock/acsm"; + return knock_data; +} + +void verify_absence(std::string file) { + if (std::filesystem::exists(file)) { + throw std::runtime_error("file " + file + + " must be moved out of the way or deleted"); + } +} + +void verify_presence(std::string file) { + if (!std::filesystem::exists(file)) { + throw std::runtime_error("file " + file + " does not exist"); + } +} \ No newline at end of file diff --git a/knock-main/tests/.gitignore b/knock-main/tests/.gitignore new file mode 100644 index 0000000..f198160 --- /dev/null +++ b/knock-main/tests/.gitignore @@ -0,0 +1 @@ +workspace \ No newline at end of file diff --git a/knock-main/tests/tests.py b/knock-main/tests/tests.py new file mode 100644 index 0000000..168c5b6 --- /dev/null +++ b/knock-main/tests/tests.py @@ -0,0 +1,70 @@ +#!/usr/bin/env python3 + +from bs4 import BeautifulSoup +from urllib.parse import urlparse +from pathlib import Path +import requests, sys, subprocess, shutil, os + +knock = Path("./result/bin/knock") + +if not knock.exists(): + print("error: " + str(knock) + " does not exist", file=sys.stderr) + sys.exit() + +if len(sys.argv) != 2: + print( + "error: missing required argument: directory in which to perform the tests", + file=sys.stderr, + ) + sys.exit() +workspace = Path(sys.argv[1]) + +print("Testing " + str(knock)) + +result = subprocess.run(knock) +if result.returncode != 0: + print("Test failed: knock failed to describe itself") + sys.exit() +print("---") + +html = requests.get( + "https://www.adobe.com/solutions/ebook/digital-editions/sample-ebook-library.html" +).text +soup = BeautifulSoup(html, "html.parser") + +links = [] +for a_tag in soup.find_all("a"): + if a_tag.string != "Download eBook": + continue + if not urlparse(a_tag.get("href")).path.endswith(".acsm"): + continue + + links.append(a_tag.get("href")) + + if len(links) >= 10: + break + +for time in ["first", "second"]: + + if workspace.exists(): + shutil.rmtree(workspace) + workspace.mkdir() + + for i, link in enumerate(links): + i = str(i) + + print("Testing URL #" + i + " for the " + time + " time:\n" + link) + file = workspace.joinpath(i + ".acsm") + + r = requests.get(link) + open(file, "wb").write(r.content) + + result = subprocess.run([knock, file]) + + if result.returncode != 0: + print("Test failed: knock failed to convert a file") + sys.exit() + + print("Success\n---") + +print("All tests passed")