diff --git a/.config/eww/widgets/hardware_stats/network-used/network-used-desk.yuck b/.config/eww/widgets/hardware_stats/network-used/network-used-desk.yuck deleted file mode 100644 index 710f1f4..0000000 --- a/.config/eww/widgets/hardware_stats/network-used/network-used-desk.yuck +++ /dev/null @@ -1,15 +0,0 @@ -(defwidget network_used [] - (box :orientation "h" - (box :class "hardware_text" - (image - :path net_up_icon - :image-width 16) - "${EWW_NET["enp4s0"].NET_UP / 1000} kB/s") - (box :class "hardware_text" - (image - :path net_down_icon - :image-width 16) - "${EWW_NET["enp4s0"].NET_DOWN / 1000 } kB/s"))) - -(defvar net_up_icon "widgets/hardware_stats/network-used/up-icon.png") -(defvar net_down_icon "widgets/hardware_stats/network-used/down-icon.png") diff --git a/.config/eww/widgets/hardware_stats/temps/temps-desk.yuck b/.config/eww/widgets/hardware_stats/temps/temps-desk.yuck deleted file mode 100644 index c631646..0000000 --- a/.config/eww/widgets/hardware_stats/temps/temps-desk.yuck +++ /dev/null @@ -1,6 +0,0 @@ -(defwidget temps [] - (box :orientation "h" - (box :class "hardware_text" - "Proccessor: ${EWW_TEMPS.K10TEMP_TCTL}°C") - (box :class "hardware_text" - "Storage: ${EWW_TEMPS.NVME_COMPOSITE_WD_BLUE_SN570_1TB_TEMP1}°C"))) diff --git a/.config/eww/widgets/hardware_stats/temps/temps.yuck b/.config/eww/widgets/hardware_stats/temps/temps.yuck deleted file mode 100644 index 25c0681..0000000 --- a/.config/eww/widgets/hardware_stats/temps/temps.yuck +++ /dev/null @@ -1,6 +0,0 @@ -(defwidget temps [] - (box :orientation "v" - (box :class "hardware_text" - "CORE 0: ${EWW_TEMPS.CORETEMP_CORE_0}°C") - (box :class "hardware_text" - "CORE 1: ${EWW_TEMPS.CORETEMP_CORE_1}°C"))) diff --git a/.config/eww/widgets/notification-draw/notification-controls/muted-icon.png b/.config/eww/widgets/notification-draw/notification-controls/muted-icon.png deleted file mode 100644 index cef59ed..0000000 Binary files a/.config/eww/widgets/notification-draw/notification-controls/muted-icon.png and /dev/null differ diff --git a/.config/eww/widgets/notification-draw/notification-controls/normal-icon.png b/.config/eww/widgets/notification-draw/notification-controls/normal-icon.png deleted file mode 100644 index 6d2ba93..0000000 Binary files a/.config/eww/widgets/notification-draw/notification-controls/normal-icon.png and /dev/null differ diff --git a/.config/eww/widgets/notification-draw/notification-controls/notification-controls.yuck b/.config/eww/widgets/notification-draw/notification-controls/notification-controls.yuck deleted file mode 100644 index 3da04af..0000000 --- a/.config/eww/widgets/notification-draw/notification-controls/notification-controls.yuck +++ /dev/null @@ -1,16 +0,0 @@ -(defwidget notification_controls [] - (box :orientation "h" - (eventbox - :onclick "dunstctl set-paused toggle && ${bell_toggle ? "${update_bell_toggle}false" : "${update_bell_toggle}true"}" - (image - :image-width 32 - :path {bell_toggle ? muted_icon : normal_icon})) - (button - :onclick "dunstctl history-clear" - "Clear") - )) - -(defvar bell_toggle false) -(defvar update_bell_toggle "eww update bell_toggle=") -(defvar muted_icon "widgets/notification-draw/notification-controls/muted-icon.png") -(defvar normal_icon "widgets/notification-draw/notification-controls/normal-icon.png") diff --git a/.config/eww/widgets/notification-draw/notification-draw.scss b/.config/eww/widgets/notification-draw/notification-draw.scss deleted file mode 100644 index 5bf70c1..0000000 --- a/.config/eww/widgets/notification-draw/notification-draw.scss +++ /dev/null @@ -1,4 +0,0 @@ -.draw { - background: $notification_draw_background; - padding: 1em; -} diff --git a/.config/eww/widgets/notification-draw/notification-draw.yuck b/.config/eww/widgets/notification-draw/notification-draw.yuck deleted file mode 100644 index 902b757..0000000 --- a/.config/eww/widgets/notification-draw/notification-draw.yuck +++ /dev/null @@ -1,18 +0,0 @@ -(include "widgets/notification-draw/notification-controls/notification-controls.yuck") -(include "widgets/notification-draw/notifications.yuck") - -(defwidget notification_draw [] - (revealer - :reveal notification_reveal - :transition "slideleft" - :duration "500ms" - (box :class "draw" - :orientation "v" - :space-evenly false - (box "Notifications") - (notification_controls) - {notification_history == "[]" ? "All Caught Up!" : "" } - (notifications :json notification_history)))) - -(defvar notification_reveal false) -(defpoll notification_history :interval "1s" "dunstctl history | jq '.data[]'") diff --git a/.config/eww/widgets/notification-draw/notification.yuck b/.config/eww/widgets/notification-draw/notification.yuck deleted file mode 100644 index a6d4f6c..0000000 --- a/.config/eww/widgets/notification-draw/notification.yuck +++ /dev/null @@ -1,4 +0,0 @@ -(defwidget notification [id text] - (box - text)) - diff --git a/.config/eww/widgets/notification-draw/notifications.yuck b/.config/eww/widgets/notification-draw/notifications.yuck deleted file mode 100644 index 12e5de2..0000000 --- a/.config/eww/widgets/notification-draw/notifications.yuck +++ /dev/null @@ -1,8 +0,0 @@ -(include "widgets/notification-draw/notification.yuck") - -(defwidget notifications [json] - (box :orientation "v" - (for entry in json - (notification - :id {entry.id,data} - :text {entry.summary.data})))) diff --git a/.config/eww/widgets/notification-draw/toggle-notification-draw b/.config/eww/widgets/notification-draw/toggle-notification-draw deleted file mode 100755 index 37085d7..0000000 --- a/.config/eww/widgets/notification-draw/toggle-notification-draw +++ /dev/null @@ -1,5 +0,0 @@ -if [ $(eww get notification_reveal) == true ]; then - eww update notification_reveal=false -else - eww update notification_reveal=true -fi diff --git a/.config/eww/widgets/volume/volume.yuck b/.config/eww/widgets/volume/volume.yuck deleted file mode 100644 index e2eb8ba..0000000 --- a/.config/eww/widgets/volume/volume.yuck +++ /dev/null @@ -1,27 +0,0 @@ -(defwidget volume_button [] - (eventbox - :onscroll "widgets/volume/setvolume {}" - :onclick "amixer sset Master ${mute_save} && ${muted ? '${update_mute_save}\'0%\' && ${update_muted}false' : '${update_mute_save}${volume_percent} && ${update_muted}true' }" - (box :class "volume_button" - (circular-progress :class "scale" - :value {replace(volume_percent, "%", "")} - :start-at 75 - :thickness 2.5 - :clockwise true - :width 24 - (image - :image-width 16 - :path {replace(volume_percent, "%", "") == 100 ? vol_high_icon : replace(volume_percent, "%", "") <= 0 ? vol_mute_icon : replace(volume_percent, "%", "") <= 25 ? vol_low_icon : replace(volume_percent, "%", "") <= 75 ? vol_mid_icon : vol_high_icon}))))) - -(defpoll volume_percent :interval "0.1s" "awk -F\"[][]\" '/Mono:/ { print $2 }' <(amixer sget Master)") - -(defvar mute_save "0%") -(defvar muted false) - -(defvar update_mute_save "eww update mute_save=") -(defvar update_muted "eww update muted=") - -(defvar vol_high_icon "widgets/volume/high-icon.png") -(defvar vol_mute_icon "widgets/volume/mute-icon.png") -(defvar vol_low_icon "widgets/volume/low-icon.png") -(defvar vol_mid_icon "widgets/volume/mid-icon.png") diff --git a/.config/hypr/hyprpaper.conf b/.config/hypr/hyprpaper.conf deleted file mode 100644 index 6c6ed27..0000000 --- a/.config/hypr/hyprpaper.conf +++ /dev/null @@ -1,2 +0,0 @@ -preload = ~/.config/hypr/wallpapers/bg.jpg -wallpaper = ,~/.config/hypr/wallpapers/bg.jpg diff --git a/.config/hypr/prefs/startup.conf b/.config/hypr/prefs/startup.conf deleted file mode 100644 index b6641b7..0000000 --- a/.config/hypr/prefs/startup.conf +++ /dev/null @@ -1,7 +0,0 @@ -$wallpaper_manager=hyprpaper - -$authentication_agent=/usr/lib/polkit-kde-authentication-agent-1 - -$notification_manager=dunst -c ~/.config/dunst/dunstrc - -$widgets=eww --restart open bar && eww open hardware_stats && eww open notification_draw diff --git a/etc/default/grub b/etc/default/grub index dc0999a..19d6905 100644 --- a/etc/default/grub +++ b/etc/default/grub @@ -60,4 +60,4 @@ GRUB_THEME="/boot/grub/themes/GradientGuy/theme.txt" # documentation on GRUB_DISABLE_OS_PROBER, if still want to enable this # functionality install os-prober and uncomment to detect and include other # operating systems. -#GRUB_DISABLE_OS_PROBER=false +GRUB_DISABLE_OS_PROBER=false diff --git a/etc/installList.txt b/etc/installList.txt index 30c5263..a87ec65 100644 --- a/etc/installList.txt +++ b/etc/installList.txt @@ -1,41 +1,112 @@ +alsa-utils +ark +attica base base-devel beautyline +blackarch-keyring breeze +btop +chatgpt-desktop-bin +cliphist +colordiff +discord +docker +docker-compose +docker-credential-lastpass dolphin +dotnet-sdk-preview-bin +dragon dunst eww-wayland +filelight firefox +firefox-extension-arch-search +geckodriver +gimp git +goverlay-bin +gping +gradle +grim +grimblast-git grub +gwenview +h-m-m-git hyprland-nvidia-git hyprpaper +hyprpicker iwd +javafx-scenebuilder jq +kdf kitty +ksshaskpass +kwalletmanager +lastpass-cli layan-cursor-theme-git +lazydocker +lazygit lib32-nvidia-utils -linux +libreoffice-fresh linux-firmware -linux-headers +linux-zen +linux-zen-headers +lutris-git +man-db +maven +minecraft-launcher +mongodb-compass +mysql-workbench networkmanager notify-send-py -nvidia +ntfs-3g +nvidia-dkms nwg-look-bin +okular +openrazer-meta +openssh +os-prober-git otf-opendyslexic-nerd +parsec-bin +partitionmanager +php pipewire +pipewire-alsa +pipewire-audio +pipewire-pulse +playerctl polkit-kde-agent +postman-bin +python-pyclip qt5ct-kde qt6-wayland qt6ct -rofi +replay-sorcery-git +rofi-lbonn-wayland-git +slurp +so-git sof-firmware +spotify-tui +spotifyd +steam sudo swaylock sweet-gtk-theme-dark sweet-kde-git +tea +udiskie +ufw +unzip vim +visual-studio-code-bin +vkbasalt +waydroid-image-gapps +wev-git wireplumber +wl-clip-persist-git +wl-clipboard xdg-desktop-portal-wlr +xwaylandvideobridge-cursor-mode-2-git yay-bin zsh diff --git a/etc/pacman.conf b/etc/pacman.conf index c791289..ded5ec2 100644 --- a/etc/pacman.conf +++ b/etc/pacman.conf @@ -95,3 +95,5 @@ Include = /etc/pacman.d/mirrorlist #[custom] #SigLevel = Optional TrustAll #Server = file:///home/custompkgs +[blackarch] +Include = /etc/pacman.d/blackarch-mirrorlist diff --git a/etc/pacman.d/hooks/blackarch-key.hook b/etc/pacman.d/hooks/blackarch-key.hook new file mode 100755 index 0000000..36dd4e6 --- /dev/null +++ b/etc/pacman.d/hooks/blackarch-key.hook @@ -0,0 +1,12 @@ +[Trigger] +Operation = Upgrade +Type = Package +Target = archlinux-keyring + +[Action] +Description = Reinstate Black Arch keyring +Depends = pacman +Depends = blackarch-keyring +When = PostTransaction +Exec = /usr/bin/pacman-key --populate blackarch + diff --git a/etc/pacman.d/hooks/install-list.hook b/etc/pacman.d/hooks/install-list.hook new file mode 100644 index 0000000..945d201 --- /dev/null +++ b/etc/pacman.d/hooks/install-list.hook @@ -0,0 +1,9 @@ +[Trigger] +Operation = Install +Operation = Remove +Type = Package +Target = * + +[Action] +When = PostTransaction +Exec = /bin/sh -c '/usr/bin/pacman -Qqe > /etc/installList.txt' diff --git a/etc/pacman.d/hooks/nvidia.hook b/etc/pacman.d/hooks/nvidia.hook new file mode 100644 index 0000000..f9dbba7 --- /dev/null +++ b/etc/pacman.d/hooks/nvidia.hook @@ -0,0 +1,16 @@ +[Trigger] +Operation=Install +Operation=Upgrade +Operation=Remove +Type=Package +Target=nvidia-dkms +Target=linux-zen +# Change the linux part above and in the Exec line if a different kernel is used + +[Action] +Description=Update NVIDIA module in initcpio +Depends=mkinitcpio +When=PostTransaction +NeedsTargets +Exec=/bin/sh -c 'while read -r trg; do case $trg in linux-zen) exit 0; esac; done; /usr/bin/mkinitcpio -P' + diff --git a/home/r0r5chach/.config/btop/btop.conf b/home/r0r5chach/.config/btop/btop.conf new file mode 100644 index 0000000..c7788a3 --- /dev/null +++ b/home/r0r5chach/.config/btop/btop.conf @@ -0,0 +1,212 @@ +#? Config file for btop v. 1.2.13 + +#* Name of a btop++/bpytop/bashtop formatted ".theme" file, "Default" and "TTY" for builtin themes. +#* Themes should be placed in "../share/btop/themes" relative to binary or "$HOME/.config/btop/themes" +color_theme = "/usr/share/btop/themes/adapta.theme" + +#* If the theme set background should be shown, set to False if you want terminal background transparency. +theme_background = True + +#* Sets if 24-bit truecolor should be used, will convert 24-bit colors to 256 color (6x6x6 color cube) if false. +truecolor = True + +#* Set to true to force tty mode regardless if a real tty has been detected or not. +#* Will force 16-color mode and TTY theme, set all graph symbols to "tty" and swap out other non tty friendly symbols. +force_tty = False + +#* Define presets for the layout of the boxes. Preset 0 is always all boxes shown with default settings. Max 9 presets. +#* Format: "box_name:P:G,box_name:P:G" P=(0 or 1) for alternate positions, G=graph symbol to use for box. +#* Use whitespace " " as separator between different presets. +#* Example: "cpu:0:default,mem:0:tty,proc:1:default cpu:0:braille,proc:0:tty" +presets = "cpu:1:default,proc:0:default cpu:0:default,mem:0:default,net:0:default cpu:0:block,net:0:tty" + +#* Set to True to enable "h,j,k,l,g,G" keys for directional control in lists. +#* Conflicting keys for h:"help" and k:"kill" is accessible while holding shift. +vim_keys = True + +#* Rounded corners on boxes, is ignored if TTY mode is ON. +rounded_corners = True + +#* Default symbols to use for graph creation, "braille", "block" or "tty". +#* "braille" offers the highest resolution but might not be included in all fonts. +#* "block" has half the resolution of braille but uses more common characters. +#* "tty" uses only 3 different symbols but will work with most fonts and should work in a real TTY. +#* Note that "tty" only has half the horizontal resolution of the other two, so will show a shorter historical view. +graph_symbol = "tty" + +# Graph symbol to use for graphs in cpu box, "default", "braille", "block" or "tty". +graph_symbol_cpu = "default" + +# Graph symbol to use for graphs in cpu box, "default", "braille", "block" or "tty". +graph_symbol_mem = "default" + +# Graph symbol to use for graphs in cpu box, "default", "braille", "block" or "tty". +graph_symbol_net = "default" + +# Graph symbol to use for graphs in cpu box, "default", "braille", "block" or "tty". +graph_symbol_proc = "default" + +#* Manually set which boxes to show. Available values are "cpu mem net proc", separate values with whitespace. +shown_boxes = "mem net proc cpu" + +#* Update time in milliseconds, recommended 2000 ms or above for better sample times for graphs. +update_ms = 2000 + +#* Processes sorting, "pid" "program" "arguments" "threads" "user" "memory" "cpu lazy" "cpu direct", +#* "cpu lazy" sorts top process over time (easier to follow), "cpu direct" updates top process directly. +proc_sorting = "cpu lazy" + +#* Reverse sorting order, True or False. +proc_reversed = False + +#* Show processes as a tree. +proc_tree = False + +#* Use the cpu graph colors in the process list. +proc_colors = True + +#* Use a darkening gradient in the process list. +proc_gradient = True + +#* If process cpu usage should be of the core it's running on or usage of the total available cpu power. +proc_per_core = False + +#* Show process memory as bytes instead of percent. +proc_mem_bytes = True + +#* Show cpu graph for each process. +proc_cpu_graphs = True + +#* Use /proc/[pid]/smaps for memory information in the process info box (very slow but more accurate) +proc_info_smaps = False + +#* Show proc box on left side of screen instead of right. +proc_left = False + +#* (Linux) Filter processes tied to the Linux kernel(similar behavior to htop). +proc_filter_kernel = False + +#* Sets the CPU stat shown in upper half of the CPU graph, "total" is always available. +#* Select from a list of detected attributes from the options menu. +cpu_graph_upper = "total" + +#* Sets the CPU stat shown in lower half of the CPU graph, "total" is always available. +#* Select from a list of detected attributes from the options menu. +cpu_graph_lower = "total" + +#* Toggles if the lower CPU graph should be inverted. +cpu_invert_lower = True + +#* Set to True to completely disable the lower CPU graph. +cpu_single_graph = False + +#* Show cpu box at bottom of screen instead of top. +cpu_bottom = False + +#* Shows the system uptime in the CPU box. +show_uptime = True + +#* Show cpu temperature. +check_temp = True + +#* Which sensor to use for cpu temperature, use options menu to select from list of available sensors. +cpu_sensor = "Auto" + +#* Show temperatures for cpu cores also if check_temp is True and sensors has been found. +show_coretemp = True + +#* Set a custom mapping between core and coretemp, can be needed on certain cpus to get correct temperature for correct core. +#* Use lm-sensors or similar to see which cores are reporting temperatures on your machine. +#* Format "x:y" x=core with wrong temp, y=core with correct temp, use space as separator between multiple entries. +#* Example: "4:0 5:1 6:3" +cpu_core_map = "" + +#* Which temperature scale to use, available values: "celsius", "fahrenheit", "kelvin" and "rankine". +temp_scale = "celsius" + +#* Use base 10 for bits/bytes sizes, KB = 1000 instead of KiB = 1024. +base_10_sizes = False + +#* Show CPU frequency. +show_cpu_freq = True + +#* Draw a clock at top of screen, formatting according to strftime, empty string to disable. +#* Special formatting: /host = hostname | /user = username | /uptime = system uptime +clock_format = "%X" + +#* Update main ui in background when menus are showing, set this to false if the menus is flickering too much for comfort. +background_update = True + +#* Custom cpu model name, empty string to disable. +custom_cpu_name = "" + +#* Optional filter for shown disks, should be full path of a mountpoint, separate multiple values with whitespace " ". +#* Begin line with "exclude=" to change to exclude filter, otherwise defaults to "most include" filter. Example: disks_filter="exclude=/boot /home/user". +disks_filter = "" + +#* Show graphs instead of meters for memory values. +mem_graphs = True + +#* Show mem box below net box instead of above. +mem_below_net = False + +#* Count ZFS ARC in cached and available memory. +zfs_arc_cached = True + +#* If swap memory should be shown in memory box. +show_swap = True + +#* Show swap as a disk, ignores show_swap value above, inserts itself after first disk. +swap_disk = True + +#* If mem box should be split to also show disks info. +show_disks = True + +#* Filter out non physical disks. Set this to False to include network disks, RAM disks and similar. +only_physical = True + +#* Read disks list from /etc/fstab. This also disables only_physical. +use_fstab = True + +#* Setting this to True will hide all datasets, and only show ZFS pools. (IO stats will be calculated per-pool) +zfs_hide_datasets = False + +#* Set to true to show available disk space for privileged users. +disk_free_priv = False + +#* Toggles if io activity % (disk busy time) should be shown in regular disk usage view. +show_io_stat = True + +#* Toggles io mode for disks, showing big graphs for disk read/write speeds. +io_mode = False + +#* Set to True to show combined read/write io graphs in io mode. +io_graph_combined = False + +#* Set the top speed for the io graphs in MiB/s (100 by default), use format "mountpoint:speed" separate disks with whitespace " ". +#* Example: "/mnt/media:100 /:20 /boot:1". +io_graph_speeds = "" + +#* Set fixed values for network graphs in Mebibits. Is only used if net_auto is also set to False. +net_download = 100 + +net_upload = 100 + +#* Use network graphs auto rescaling mode, ignores any values set above and rescales down to 10 Kibibytes at the lowest. +net_auto = True + +#* Sync the auto scaling for download and upload to whichever currently has the highest scale. +net_sync = True + +#* Starts with the Network Interface specified here. +net_iface = "" + +#* Show battery stats in top right if battery is present. +show_battery = False + +#* Which battery to use if multiple are present. "Auto" for auto detection. +selected_battery = "Auto" + +#* Set loglevel for "~/.config/btop/btop.log" levels are: "ERROR" "WARNING" "INFO" "DEBUG". +#* The level set includes all lower levels, i.e. "DEBUG" will show all logging info. +log_level = "WARNING" \ No newline at end of file diff --git a/home/r0r5chach/.config/code-flags.conf b/home/r0r5chach/.config/code-flags.conf new file mode 100644 index 0000000..51bdd86 --- /dev/null +++ b/home/r0r5chach/.config/code-flags.conf @@ -0,0 +1,2 @@ +--enable-features=UseOzonePlatform +--ozone-platform=wayland diff --git a/.config/dunst/dunstrc b/home/r0r5chach/.config/dunst/dunstrc similarity index 100% rename from .config/dunst/dunstrc rename to home/r0r5chach/.config/dunst/dunstrc diff --git a/home/r0r5chach/.config/electron-flags.conf b/home/r0r5chach/.config/electron-flags.conf new file mode 100644 index 0000000..51bdd86 --- /dev/null +++ b/home/r0r5chach/.config/electron-flags.conf @@ -0,0 +1,2 @@ +--enable-features=UseOzonePlatform +--ozone-platform=wayland diff --git a/.config/eww/colors.scss b/home/r0r5chach/.config/eww/colors.scss similarity index 85% rename from .config/eww/colors.scss rename to home/r0r5chach/.config/eww/colors.scss index 001a46d..7fbe5c1 100644 --- a/.config/eww/colors.scss +++ b/home/r0r5chach/.config/eww/colors.scss @@ -8,6 +8,8 @@ $volume_scale_color: rgba(247,121,125); $hardware_background: linear-gradient(0deg, rgba(255,226,89,1) 0%, rgba(255,167,81,1) 100%); +$player_background: linear-gradient(0deg, rgba(113, 178, 128,1) 0%, rgba(19, 78, 94,1) 100%); + $ram_scale_color: #C6FFDD; $disk_scale_color: #12C2E9; $battery_scale_color: #FF0099; diff --git a/.config/eww/eww.scss b/home/r0r5chach/.config/eww/eww.scss similarity index 82% rename from .config/eww/eww.scss rename to home/r0r5chach/.config/eww/eww.scss index c0e2ffd..0974112 100644 --- a/.config/eww/eww.scss +++ b/home/r0r5chach/.config/eww/eww.scss @@ -4,7 +4,9 @@ @import "widgets/active_window/active_window.scss"; @import "widgets/workspaces/workspaces.scss"; @import "widgets/volume/volume.scss"; -@import "widgets/notification-draw/notification-draw.scss"; +@import "widgets/color/color.scss"; +@import "widgets/player/player.scss"; + * { all: unset; diff --git a/.config/eww/eww.yuck b/home/r0r5chach/.config/eww/eww.yuck similarity index 65% rename from .config/eww/eww.yuck rename to home/r0r5chach/.config/eww/eww.yuck index 1de7565..43d6bbf 100644 --- a/.config/eww/eww.yuck +++ b/home/r0r5chach/.config/eww/eww.yuck @@ -1,6 +1,9 @@ (include "widgets/hardware_stats/hardware-tab/hardware_tab.yuck") +(include "widgets/hardware_stats/battery/battery.yuck") (include "widgets/bar/bar.yuck") (include "widgets/active_window/active_window.yuck") +(include "widgets/player/player.yuck") +(include "widgets/player/metadata/metadata.yuck") (defwindow bar :monitor 0 @@ -14,8 +17,9 @@ :wm-ignore false :exclusive true (box + (player) (active_window) - (bar))) + (bar :desktop desktop))) (defwindow hardware_stats :monitor 0 @@ -28,16 +32,19 @@ :focusable false :wm-ignore false (box - (hardware_tab))) + (literal :content {desktop ? "(hardware_tab :desktop desktop)" : "(hardware_tab_laptop)"}))) -(defwindow notification_draw +(defwindow player_stats :monitor 0 :geometry (geometry :x "0%" :y "0px" :width "0px" - :height "100%" - :anchor "top right") + :height "100px" + :anchor "left top") :stacking "fg" :focusable false :wm-ignore false - (box)) + (box + (player_metadata))) + +(defvar desktop true) diff --git a/.config/eww/widgets/active_window/active_window.scss b/home/r0r5chach/.config/eww/widgets/active_window/active_window.scss similarity index 100% rename from .config/eww/widgets/active_window/active_window.scss rename to home/r0r5chach/.config/eww/widgets/active_window/active_window.scss diff --git a/.config/eww/widgets/active_window/active_window.yuck b/home/r0r5chach/.config/eww/widgets/active_window/active_window.yuck similarity index 100% rename from .config/eww/widgets/active_window/active_window.yuck rename to home/r0r5chach/.config/eww/widgets/active_window/active_window.yuck diff --git a/.config/eww/widgets/bar/bar.yuck b/home/r0r5chach/.config/eww/widgets/bar/bar.yuck similarity index 75% rename from .config/eww/widgets/bar/bar.yuck rename to home/r0r5chach/.config/eww/widgets/bar/bar.yuck index 5ce7c8c..89d84d4 100644 --- a/.config/eww/widgets/bar/bar.yuck +++ b/home/r0r5chach/.config/eww/widgets/bar/bar.yuck @@ -2,13 +2,15 @@ (include "widgets/hardware_stats/hardware-tab/hardware_button.yuck") (include "widgets/volume/volume.yuck") (include "widgets/workspaces/workspaces.yuck") +(include "widgets/color/color.yuck") -(defwidget bar [] +(defwidget bar [desktop] (box :orientation "h" :class "bar" :halign "end" :space-evenly "false" - (volume_button) + (color) + (volume_button :desktop desktop) (hardware_button) (workspaces_button) (clock))) diff --git a/.config/eww/widgets/clock/clock.scss b/home/r0r5chach/.config/eww/widgets/clock/clock.scss similarity index 100% rename from .config/eww/widgets/clock/clock.scss rename to home/r0r5chach/.config/eww/widgets/clock/clock.scss diff --git a/.config/eww/widgets/clock/clock.yuck b/home/r0r5chach/.config/eww/widgets/clock/clock.yuck similarity index 76% rename from .config/eww/widgets/clock/clock.yuck rename to home/r0r5chach/.config/eww/widgets/clock/clock.yuck index 1ae2bd4..eb05cec 100644 --- a/.config/eww/widgets/clock/clock.yuck +++ b/home/r0r5chach/.config/eww/widgets/clock/clock.yuck @@ -2,13 +2,12 @@ (eventbox :halign "end" :onhover "eww update clock_hover=true" :onhoverlost "eww update clock_hover=false" - :onclick notification_cmd + :onclick "/home/$USER/.config/rofi/notidraw" (box :class "clock" {clock_hover ? clock_time_s : clock_time_ns}))) (defvar clock_hover false) -(defvar notification_cmd "widgets/notification-draw/toggle-notification-draw") (defpoll clock_time_ns :interval "1s" "date '+\%H:\%M'") (defpoll clock_time_s :interval "1s" "date '+\%H:\%M:\%S'") diff --git a/home/r0r5chach/.config/eww/widgets/color/color b/home/r0r5chach/.config/eww/widgets/color/color new file mode 100755 index 0000000..1cfa5be --- /dev/null +++ b/home/r0r5chach/.config/eww/widgets/color/color @@ -0,0 +1,10 @@ +hex=$(hyprpicker) +r=$(printf "%d" 0x${hex:1:2}) +g=$(printf "%d" 0x${hex:3:2}) +b=$(printf "%d" 0x${hex:5:2}) +r=$(expr 255 - $r) +g=$(expr 255 - $g) +b=$(expr 255 - $b) +eww update chosen_text_color="rgb($r,$g,$b)" +eww update color_code=$hex +wl-copy $hex diff --git a/home/r0r5chach/.config/eww/widgets/color/color.scss b/home/r0r5chach/.config/eww/widgets/color/color.scss new file mode 100644 index 0000000..cf05be7 --- /dev/null +++ b/home/r0r5chach/.config/eww/widgets/color/color.scss @@ -0,0 +1,5 @@ +.color_pill { + border-radius: 10em; + margin-right: 0.25em; + margin-top: 0.25em; +} diff --git a/home/r0r5chach/.config/eww/widgets/color/color.yuck b/home/r0r5chach/.config/eww/widgets/color/color.yuck new file mode 100644 index 0000000..4c6b80a --- /dev/null +++ b/home/r0r5chach/.config/eww/widgets/color/color.yuck @@ -0,0 +1,10 @@ +(defwidget color [] + (eventbox :style "background-color: ${color_code};" + :onclick "wl-copy '${color_code}'" + :onmiddleclick "eww update color_code=#000000 && eww update chosen_text_color=#FFFFFF" + :class "color_pill" + (box :style "color: ${chosen_text_color};" + color_code))) + +(defvar color_code "#000000") +(defvar chosen_text_color "#FFFFFF") diff --git a/.config/eww/widgets/hardware_stats/battery/battery-icon.png b/home/r0r5chach/.config/eww/widgets/hardware_stats/battery/battery-icon.png similarity index 100% rename from .config/eww/widgets/hardware_stats/battery/battery-icon.png rename to home/r0r5chach/.config/eww/widgets/hardware_stats/battery/battery-icon.png diff --git a/.config/eww/widgets/hardware_stats/battery/battery.scss b/home/r0r5chach/.config/eww/widgets/hardware_stats/battery/battery.scss similarity index 100% rename from .config/eww/widgets/hardware_stats/battery/battery.scss rename to home/r0r5chach/.config/eww/widgets/hardware_stats/battery/battery.scss diff --git a/.config/eww/widgets/hardware_stats/battery/battery.yuck b/home/r0r5chach/.config/eww/widgets/hardware_stats/battery/battery.yuck similarity index 100% rename from .config/eww/widgets/hardware_stats/battery/battery.yuck rename to home/r0r5chach/.config/eww/widgets/hardware_stats/battery/battery.yuck diff --git a/.config/eww/widgets/hardware_stats/battery/charging-icon.png b/home/r0r5chach/.config/eww/widgets/hardware_stats/battery/charging-icon.png similarity index 100% rename from .config/eww/widgets/hardware_stats/battery/charging-icon.png rename to home/r0r5chach/.config/eww/widgets/hardware_stats/battery/charging-icon.png diff --git a/.config/eww/widgets/hardware_stats/battery/full-icon.png b/home/r0r5chach/.config/eww/widgets/hardware_stats/battery/full-icon.png similarity index 100% rename from .config/eww/widgets/hardware_stats/battery/full-icon.png rename to home/r0r5chach/.config/eww/widgets/hardware_stats/battery/full-icon.png diff --git a/.config/eww/widgets/hardware_stats/disk-used/disk-icon.png b/home/r0r5chach/.config/eww/widgets/hardware_stats/disk-used/disk-icon.png similarity index 100% rename from .config/eww/widgets/hardware_stats/disk-used/disk-icon.png rename to home/r0r5chach/.config/eww/widgets/hardware_stats/disk-used/disk-icon.png diff --git a/.config/eww/widgets/hardware_stats/disk-used/disk-used.scss b/home/r0r5chach/.config/eww/widgets/hardware_stats/disk-used/disk-used.scss similarity index 100% rename from .config/eww/widgets/hardware_stats/disk-used/disk-used.scss rename to home/r0r5chach/.config/eww/widgets/hardware_stats/disk-used/disk-used.scss diff --git a/.config/eww/widgets/hardware_stats/disk-used/disk-used.yuck b/home/r0r5chach/.config/eww/widgets/hardware_stats/disk-used/disk-used.yuck similarity index 100% rename from .config/eww/widgets/hardware_stats/disk-used/disk-used.yuck rename to home/r0r5chach/.config/eww/widgets/hardware_stats/disk-used/disk-used.yuck diff --git a/.config/eww/widgets/hardware_stats/hardware-tab/button-icon.png b/home/r0r5chach/.config/eww/widgets/hardware_stats/hardware-tab/button-icon.png similarity index 100% rename from .config/eww/widgets/hardware_stats/hardware-tab/button-icon.png rename to home/r0r5chach/.config/eww/widgets/hardware_stats/hardware-tab/button-icon.png diff --git a/.config/eww/widgets/hardware_stats/hardware-tab/hardware.scss b/home/r0r5chach/.config/eww/widgets/hardware_stats/hardware-tab/hardware.scss similarity index 100% rename from .config/eww/widgets/hardware_stats/hardware-tab/hardware.scss rename to home/r0r5chach/.config/eww/widgets/hardware_stats/hardware-tab/hardware.scss diff --git a/.config/eww/widgets/hardware_stats/hardware-tab/hardware_button.yuck b/home/r0r5chach/.config/eww/widgets/hardware_stats/hardware-tab/hardware_button.yuck similarity index 100% rename from .config/eww/widgets/hardware_stats/hardware-tab/hardware_button.yuck rename to home/r0r5chach/.config/eww/widgets/hardware_stats/hardware-tab/hardware_button.yuck diff --git a/.config/eww/widgets/hardware_stats/hardware-tab/hardware_tab.yuck b/home/r0r5chach/.config/eww/widgets/hardware_stats/hardware-tab/hardware_tab.yuck similarity index 52% rename from .config/eww/widgets/hardware_stats/hardware-tab/hardware_tab.yuck rename to home/r0r5chach/.config/eww/widgets/hardware_stats/hardware-tab/hardware_tab.yuck index ac985af..bbd5185 100644 --- a/.config/eww/widgets/hardware_stats/hardware-tab/hardware_tab.yuck +++ b/home/r0r5chach/.config/eww/widgets/hardware_stats/hardware-tab/hardware_tab.yuck @@ -2,9 +2,8 @@ (include "widgets/hardware_stats/disk-used/disk-used.yuck") (include "widgets/hardware_stats//temps/temps.yuck") (include "widgets/hardware_stats/network-used/network-used.yuck") -(include "widgets/hardware_stats/battery/battery.yuck") -(defwidget hardware_tab [] +(defwidget hardware_tab [desktop] (revealer :reveal hardware_reveal :transition "slideleft" @@ -14,8 +13,21 @@ (ram_used) (disk_used)) (box :orientation "h" - (battery) - (temps)) - (network_used)))) + (temps :desktop desktop)) + (network_used :desktop desktop)))) + +(defwidget hardware_tab_laptop [] + (revealer + :reveal hardware_reveal + :transition "slideleft" + :duration "500ms" + (box :class "hardware_tab" :orientation "v" + (box :orientation "h" + (ram_used) + (disk_used)) + (box :orientation "h" + (battery) + (temps :desktop false)) + (network_used :desktop false)))) (defvar hardware_reveal false) diff --git a/.config/eww/widgets/hardware_stats/network-used/down-icon.png b/home/r0r5chach/.config/eww/widgets/hardware_stats/network-used/down-icon.png similarity index 100% rename from .config/eww/widgets/hardware_stats/network-used/down-icon.png rename to home/r0r5chach/.config/eww/widgets/hardware_stats/network-used/down-icon.png diff --git a/.config/eww/widgets/hardware_stats/network-used/network-used.yuck b/home/r0r5chach/.config/eww/widgets/hardware_stats/network-used/network-used.yuck similarity index 61% rename from .config/eww/widgets/hardware_stats/network-used/network-used.yuck rename to home/r0r5chach/.config/eww/widgets/hardware_stats/network-used/network-used.yuck index 1e540dc..99a88bd 100644 --- a/.config/eww/widgets/hardware_stats/network-used/network-used.yuck +++ b/home/r0r5chach/.config/eww/widgets/hardware_stats/network-used/network-used.yuck @@ -1,15 +1,15 @@ -(defwidget network_used [] +(defwidget network_used [desktop] (box :orientation "h" (box :class "hardware_text" (image :path net_up_icon :image-width 16) - "${EWW_NET["wlan0"].NET_UP / 1000} kB/s") + "${desktop ? EWW_NET["enp4s0"].NET_UP / 1000 : EWW_NET["wlan0"].NET_UP / 1000} kB/s") (box :class "hardware_text" (image :path net_down_icon :image-width 16) - "${EWW_NET["wlan0"].NET_DOWN / 1000 } kB/s"))) + "${desktop ? EWW_NET["enp4s0"].NET_DOWN / 1000 : EWW_NET["wlan0"].NET_DOWN / 1000 } kB/s"))) (defvar net_up_icon "widgets/hardware_stats/network-used/up-icon.png") (defvar net_down_icon "widgets/hardware_stats/network-used/down-icon.png") diff --git a/.config/eww/widgets/hardware_stats/network-used/up-icon.png b/home/r0r5chach/.config/eww/widgets/hardware_stats/network-used/up-icon.png similarity index 100% rename from .config/eww/widgets/hardware_stats/network-used/up-icon.png rename to home/r0r5chach/.config/eww/widgets/hardware_stats/network-used/up-icon.png diff --git a/.config/eww/widgets/hardware_stats/ram-used/ram-icon.png b/home/r0r5chach/.config/eww/widgets/hardware_stats/ram-used/ram-icon.png similarity index 100% rename from .config/eww/widgets/hardware_stats/ram-used/ram-icon.png rename to home/r0r5chach/.config/eww/widgets/hardware_stats/ram-used/ram-icon.png diff --git a/.config/eww/widgets/hardware_stats/ram-used/ram-used.scss b/home/r0r5chach/.config/eww/widgets/hardware_stats/ram-used/ram-used.scss similarity index 100% rename from .config/eww/widgets/hardware_stats/ram-used/ram-used.scss rename to home/r0r5chach/.config/eww/widgets/hardware_stats/ram-used/ram-used.scss diff --git a/.config/eww/widgets/hardware_stats/ram-used/ram-used.yuck b/home/r0r5chach/.config/eww/widgets/hardware_stats/ram-used/ram-used.yuck similarity index 100% rename from .config/eww/widgets/hardware_stats/ram-used/ram-used.yuck rename to home/r0r5chach/.config/eww/widgets/hardware_stats/ram-used/ram-used.yuck diff --git a/home/r0r5chach/.config/eww/widgets/hardware_stats/temps/temps.yuck b/home/r0r5chach/.config/eww/widgets/hardware_stats/temps/temps.yuck new file mode 100644 index 0000000..b83eec5 --- /dev/null +++ b/home/r0r5chach/.config/eww/widgets/hardware_stats/temps/temps.yuck @@ -0,0 +1,6 @@ +(defwidget temps [desktop] + (box :orientation {desktop ? "h" : "v"} + (box :class "hardware_text" + {desktop ? "Processor: ${EWW_TEMPS.K10TEMP_TCTL}°C" : "CORE 0: ${EWW_TEMPS.CORETEMP_CORE_0}°C"}) + (box :class "hardware_text" + {desktop ? "Storage: ${EWW_TEMPS.NVME_COMPOSITE_WD_BLUE_SN570_1TB_TEMP1}°C" : "CORE 1: ${EWW_TEMPS.CORETEMP_CORE_1}°C"}))) diff --git a/home/r0r5chach/.config/eww/widgets/player/.todo b/home/r0r5chach/.config/eww/widgets/player/.todo new file mode 100644 index 0000000..8505805 --- /dev/null +++ b/home/r0r5chach/.config/eww/widgets/player/.todo @@ -0,0 +1,3 @@ +[ ] GPT rofi script? +[!] player details tab revealer +[!] icons for music player \ No newline at end of file diff --git a/home/r0r5chach/.config/eww/widgets/player/duration/duration b/home/r0r5chach/.config/eww/widgets/player/duration/duration new file mode 100755 index 0000000..1b77fce --- /dev/null +++ b/home/r0r5chach/.config/eww/widgets/player/duration/duration @@ -0,0 +1,4 @@ +total=$(playerctl metadata | grep length | awk -v n=1000000 '{ printf "%.2f\n", $3/n }') +len=$(playerctl position) +perc=$( echo $len | awk -v total=$total '{ printf "%d\n", ($1 / total) * 100 }') +echo $perc \ No newline at end of file diff --git a/home/r0r5chach/.config/eww/widgets/player/duration/duration.yuck b/home/r0r5chach/.config/eww/widgets/player/duration/duration.yuck new file mode 100644 index 0000000..f9bdac3 --- /dev/null +++ b/home/r0r5chach/.config/eww/widgets/player/duration/duration.yuck @@ -0,0 +1,8 @@ +(defwidget duration [] + (circular-progress + :value duration_perc + :start-at 75 + :thickness 2.5 + :clockwise true)) + +(defpoll duration_perc :interval "0.1s" "~/.config/eww/widgets/player/duration/duration") \ No newline at end of file diff --git a/home/r0r5chach/.config/eww/widgets/player/loop/loop-icon.png b/home/r0r5chach/.config/eww/widgets/player/loop/loop-icon.png new file mode 100644 index 0000000..f66779b Binary files /dev/null and b/home/r0r5chach/.config/eww/widgets/player/loop/loop-icon.png differ diff --git a/home/r0r5chach/.config/eww/widgets/player/loop/loop-playlist-icon.png b/home/r0r5chach/.config/eww/widgets/player/loop/loop-playlist-icon.png new file mode 100644 index 0000000..d33317d Binary files /dev/null and b/home/r0r5chach/.config/eww/widgets/player/loop/loop-playlist-icon.png differ diff --git a/home/r0r5chach/.config/eww/widgets/player/loop/loop-track-icon.png b/home/r0r5chach/.config/eww/widgets/player/loop/loop-track-icon.png new file mode 100644 index 0000000..15feb31 Binary files /dev/null and b/home/r0r5chach/.config/eww/widgets/player/loop/loop-track-icon.png differ diff --git a/home/r0r5chach/.config/eww/widgets/player/loop/loop.yuck b/home/r0r5chach/.config/eww/widgets/player/loop/loop.yuck new file mode 100644 index 0000000..9542f4a --- /dev/null +++ b/home/r0r5chach/.config/eww/widgets/player/loop/loop.yuck @@ -0,0 +1,16 @@ +(defwidget loop_button [] + (eventbox + :onclick "playerctl -a loop Playlist && eww update loop_playlist_flag=true &" + :onrightclick "playerctl -a loop Track && eww update loop_track_flag=true &" + :onmiddleclick "playerctl -a loop None && eww update loop_track_flag=false && eww update loop_playlist_flag=false &" + (box + (image + :image-width 46 + :path {loop_playlist_flag ? loop_playlist_icon : loop_track_flag ? loop_track_icon : loop_icon})))) + +(defvar loop_icon "widgets/player/loop/loop-icon.png") +(defvar loop_track_icon "widgets/player/loop/loop-track-icon.png") +(defvar loop_playlist_icon "widgets/player/loop/loop-playlisy-icon.png") + +(defvar loop_track_flag false) +(defvar loop_playlist_flag false) \ No newline at end of file diff --git a/home/r0r5chach/.config/eww/widgets/player/metadata/metadata.yuck b/home/r0r5chach/.config/eww/widgets/player/metadata/metadata.yuck new file mode 100644 index 0000000..97cce58 --- /dev/null +++ b/home/r0r5chach/.config/eww/widgets/player/metadata/metadata.yuck @@ -0,0 +1,21 @@ +(defwidget player_metadata [] + (revealer + :reveal player_reveal + :transition "slideright" + :duration "500ms" + (box :orientation "v" + :class "metadata" + :space-evenly false + (image + :image-width 250 + :path music_image) + music_title + music_album + music_artist))) + +(defvar player_reveal false) +(defpoll music_image :interval "1s" "echo widgets/player/playing-image.jpg") +(defpoll music_title :interval "1s" "playerctl metadata | grep title | awk '{ print $3 }'") +(defpoll music_album :interval "1s" "playerctl metadata | grep 'album ' | awk '{ print $3 }'") +(defpoll music_artist :interval "1s" "playerctl metadata | grep :artist | awk '{ print $3 }'") + diff --git a/home/r0r5chach/.config/eww/widgets/player/next/next-icon.png b/home/r0r5chach/.config/eww/widgets/player/next/next-icon.png new file mode 100644 index 0000000..5a32a24 Binary files /dev/null and b/home/r0r5chach/.config/eww/widgets/player/next/next-icon.png differ diff --git a/home/r0r5chach/.config/eww/widgets/player/next/next.yuck b/home/r0r5chach/.config/eww/widgets/player/next/next.yuck new file mode 100644 index 0000000..b3fd529 --- /dev/null +++ b/home/r0r5chach/.config/eww/widgets/player/next/next.yuck @@ -0,0 +1,9 @@ +(defwidget next_button [] + (eventbox + :onclick "playerctl -a next &" + (box + (image + :image-width 46 + :path next_icon)))) + +(defvar next_icon "widgets/player/next/next-icon.png") \ No newline at end of file diff --git a/home/r0r5chach/.config/eww/widgets/player/play-pause/pause-icon.png b/home/r0r5chach/.config/eww/widgets/player/play-pause/pause-icon.png new file mode 100644 index 0000000..6705391 Binary files /dev/null and b/home/r0r5chach/.config/eww/widgets/player/play-pause/pause-icon.png differ diff --git a/home/r0r5chach/.config/eww/widgets/player/play-pause/play-icon.png b/home/r0r5chach/.config/eww/widgets/player/play-pause/play-icon.png new file mode 100644 index 0000000..7ecff8b Binary files /dev/null and b/home/r0r5chach/.config/eww/widgets/player/play-pause/play-icon.png differ diff --git a/home/r0r5chach/.config/eww/widgets/player/play-pause/play-pause.yuck b/home/r0r5chach/.config/eww/widgets/player/play-pause/play-pause.yuck new file mode 100644 index 0000000..fff70a0 --- /dev/null +++ b/home/r0r5chach/.config/eww/widgets/player/play-pause/play-pause.yuck @@ -0,0 +1,21 @@ +(defwidget play_pause_button [] + (eventbox + :onclick "playerctl -a ${matches(playing, "Playing") ? "pause && eww update playing_flag=false &" : "play && eww update playing_flag=true &"}" + (box + (image + :image-width 46 + :path {matches(playing, "Playing") ? pause_icon : play_icon} )))) + +(defwidget now_playing [] + (eventbox + :onclick "${player_reveal ? "eww update player_reveal=false" : "eww update player_reveal=true"}" + :class "playing_image" + (image + :path playing_image + :image-width 46))) + +(defpoll playing :interval "1s" "playerctl status") +(defvar play_icon "widgets/player/play-pause/play-icon.png") +(defvar pause_icon "widgets/player/play-pause/pause-icon.png") +(defvar playing_flag false) +(defpoll playing_image :run-while playing_flag :interval "0.1s" "echo widgets/player/playing-image.jpg") diff --git a/home/r0r5chach/.config/eww/widgets/player/player-info b/home/r0r5chach/.config/eww/widgets/player/player-info new file mode 100755 index 0000000..5b92a0e --- /dev/null +++ b/home/r0r5chach/.config/eww/widgets/player/player-info @@ -0,0 +1,5 @@ +path="/home/$USER/.config/eww/widgets/player/playing-image.jpg" + +rm $path 2> /dev/null +opt=$(playerctl metadata | grep artUrl | awk '{ print $3 }') +wget $opt -O $path diff --git a/home/r0r5chach/.config/eww/widgets/player/player.scss b/home/r0r5chach/.config/eww/widgets/player/player.scss new file mode 100644 index 0000000..365ab08 --- /dev/null +++ b/home/r0r5chach/.config/eww/widgets/player/player.scss @@ -0,0 +1,16 @@ +.playing_image { + margin-left: 0.5em; + margin-top: 0.5em; +} + +.controls { + margin-top: 0.5em; + margin-left: 0.5em; +} + +.metadata { + padding: 2em; + background: $player_background; + color: $text_color; + border-radius: 5em; +} \ No newline at end of file diff --git a/home/r0r5chach/.config/eww/widgets/player/player.yuck b/home/r0r5chach/.config/eww/widgets/player/player.yuck new file mode 100644 index 0000000..9413a34 --- /dev/null +++ b/home/r0r5chach/.config/eww/widgets/player/player.yuck @@ -0,0 +1,17 @@ +(include "widgets/player/shuffle/shuffle.yuck") +(include "widgets/player/previous/previous.yuck") +(include "widgets/player/play-pause/play-pause.yuck") +(include "widgets/player/next/next.yuck") +(include "widgets/player/loop/loop.yuck") +(include "widgets/player/duration/duration.yuck") + +(defwidget player [] + (box :space-evenly false + (now_playing :class "now_playing") + (box :class "controls" + (duration) + (previous_button) + (play_pause_button) + (next_button) + (shuffle_button) + (loop_button)))) \ No newline at end of file diff --git a/home/r0r5chach/.config/eww/widgets/player/playing-image.jpg b/home/r0r5chach/.config/eww/widgets/player/playing-image.jpg new file mode 100644 index 0000000..f94e944 Binary files /dev/null and b/home/r0r5chach/.config/eww/widgets/player/playing-image.jpg differ diff --git a/home/r0r5chach/.config/eww/widgets/player/previous/previous-icon.png b/home/r0r5chach/.config/eww/widgets/player/previous/previous-icon.png new file mode 100644 index 0000000..5a6059c Binary files /dev/null and b/home/r0r5chach/.config/eww/widgets/player/previous/previous-icon.png differ diff --git a/home/r0r5chach/.config/eww/widgets/player/previous/previous.yuck b/home/r0r5chach/.config/eww/widgets/player/previous/previous.yuck new file mode 100644 index 0000000..c0e40ad --- /dev/null +++ b/home/r0r5chach/.config/eww/widgets/player/previous/previous.yuck @@ -0,0 +1,8 @@ +(defwidget previous_button [] + (eventbox + :onclick "playerctl -a previous &" + (box + (image + :image-width 46 + :path "widgets/player/previous/previous-icon.png" + )))) \ No newline at end of file diff --git a/home/r0r5chach/.config/eww/widgets/player/shuffle/shuffle-icon.png b/home/r0r5chach/.config/eww/widgets/player/shuffle/shuffle-icon.png new file mode 100644 index 0000000..a0366c6 Binary files /dev/null and b/home/r0r5chach/.config/eww/widgets/player/shuffle/shuffle-icon.png differ diff --git a/home/r0r5chach/.config/eww/widgets/player/shuffle/shuffle-on-icon.png b/home/r0r5chach/.config/eww/widgets/player/shuffle/shuffle-on-icon.png new file mode 100644 index 0000000..1dcc692 Binary files /dev/null and b/home/r0r5chach/.config/eww/widgets/player/shuffle/shuffle-on-icon.png differ diff --git a/home/r0r5chach/.config/eww/widgets/player/shuffle/shuffle.yuck b/home/r0r5chach/.config/eww/widgets/player/shuffle/shuffle.yuck new file mode 100644 index 0000000..78253d0 --- /dev/null +++ b/home/r0r5chach/.config/eww/widgets/player/shuffle/shuffle.yuck @@ -0,0 +1,11 @@ +(defwidget shuffle_button [] + (eventbox + :onclick "playerctl -a shuffle ${shuffle_status ? "off && eww update shuffle_status=false &" : "on && eww update shuffle_status=true &"}" + (box + (image + :image-width 46 + :path {shuffle_status ? shuffle_on_icon : shuffle_icon})))) + +(defvar shuffle_status false) +(defvar shuffle_icon "widgets/player/shuffle/shuffle-icon.png") +(defvar shuffle_on_icon "widgets/player/shuffle/shuffle-on-icon.png") \ No newline at end of file diff --git a/.config/eww/widgets/volume/high-icon.png b/home/r0r5chach/.config/eww/widgets/volume/high-icon.png similarity index 100% rename from .config/eww/widgets/volume/high-icon.png rename to home/r0r5chach/.config/eww/widgets/volume/high-icon.png diff --git a/.config/eww/widgets/volume/low-icon.png b/home/r0r5chach/.config/eww/widgets/volume/low-icon.png similarity index 100% rename from .config/eww/widgets/volume/low-icon.png rename to home/r0r5chach/.config/eww/widgets/volume/low-icon.png diff --git a/.config/eww/widgets/volume/mid-icon.png b/home/r0r5chach/.config/eww/widgets/volume/mid-icon.png similarity index 100% rename from .config/eww/widgets/volume/mid-icon.png rename to home/r0r5chach/.config/eww/widgets/volume/mid-icon.png diff --git a/.config/eww/widgets/volume/mute-icon.png b/home/r0r5chach/.config/eww/widgets/volume/mute-icon.png similarity index 100% rename from .config/eww/widgets/volume/mute-icon.png rename to home/r0r5chach/.config/eww/widgets/volume/mute-icon.png diff --git a/.config/eww/widgets/volume/setvolume b/home/r0r5chach/.config/eww/widgets/volume/setvolume similarity index 100% rename from .config/eww/widgets/volume/setvolume rename to home/r0r5chach/.config/eww/widgets/volume/setvolume diff --git a/.config/eww/widgets/volume/volume.scss b/home/r0r5chach/.config/eww/widgets/volume/volume.scss similarity index 100% rename from .config/eww/widgets/volume/volume.scss rename to home/r0r5chach/.config/eww/widgets/volume/volume.scss diff --git a/home/r0r5chach/.config/eww/widgets/volume/volume.yuck b/home/r0r5chach/.config/eww/widgets/volume/volume.yuck new file mode 100644 index 0000000..5c4494b --- /dev/null +++ b/home/r0r5chach/.config/eww/widgets/volume/volume.yuck @@ -0,0 +1,28 @@ +(defwidget volume_button [desktop] + (eventbox + :onscroll "widgets/volume/setvolume {}" + :onclick "amixer sset Master ${mute_save} && ${muted ? '${update_mute_save}\'0%\' && ${update_muted}false' : '${update_mute_save}${desktop ? volume_percent_desktop : volume_percent_laptop} && ${update_muted}true' }" + (box :class "volume_button" + (circular-progress :class "scale" + :value {replace(desktop ? volume_percent_desktop : volume_percent_laptop, "%", "")} + :start-at 75 + :thickness 2.5 + :clockwise true + :width 24 + (image + :image-width 16 + :path {replace(desktop ? volume_percent_desktop : volume_percent_laptop, "%", "") == 100 ? vol_high_icon : replace(desktop ? volume_percent_desktop : volume_percent_laptop, "%", "") <= 0 ? vol_mute_icon : replace(desktop ? volume_percent_desktop : volume_percent_laptop, "%", "") <= 25 ? vol_low_icon : replace(desktop ? volume_percent_desktop : volume_percent_laptop, "%", "") <= 75 ? vol_mid_icon : vol_high_icon}))))) + +(defpoll volume_percent_laptop :interval "0.1s" "awk -F\"[][]\" '/Mono:/ { print $2 }' <(amixer sget Master)") +(defpoll volume_percent_desktop :interval "0.1s" "awk -F\"[][]\" '/Left:/ { print $2 }' <(amixer sget Master)") + +(defvar mute_save "0%") +(defvar muted false) + +(defvar update_mute_save "eww update mute_save=") +(defvar update_muted "eww update muted=") + +(defvar vol_high_icon "widgets/volume/high-icon.png") +(defvar vol_mute_icon "widgets/volume/mute-icon.png") +(defvar vol_low_icon "widgets/volume/low-icon.png") +(defvar vol_mid_icon "widgets/volume/mid-icon.png") diff --git a/.config/eww/widgets/workspaces/setworkspace b/home/r0r5chach/.config/eww/widgets/workspaces/setworkspace similarity index 100% rename from .config/eww/widgets/workspaces/setworkspace rename to home/r0r5chach/.config/eww/widgets/workspaces/setworkspace diff --git a/.config/eww/widgets/workspaces/workspaces.scss b/home/r0r5chach/.config/eww/widgets/workspaces/workspaces.scss similarity index 100% rename from .config/eww/widgets/workspaces/workspaces.scss rename to home/r0r5chach/.config/eww/widgets/workspaces/workspaces.scss diff --git a/.config/eww/widgets/workspaces/workspaces.yuck b/home/r0r5chach/.config/eww/widgets/workspaces/workspaces.yuck similarity index 100% rename from .config/eww/widgets/workspaces/workspaces.yuck rename to home/r0r5chach/.config/eww/widgets/workspaces/workspaces.yuck diff --git a/.config/hypr/hyprland.conf b/home/r0r5chach/.config/hypr/hyprland.conf similarity index 82% rename from .config/hypr/hyprland.conf rename to home/r0r5chach/.config/hypr/hyprland.conf index c05c7c2..2a555a0 100644 --- a/.config/hypr/hyprland.conf +++ b/home/r0r5chach/.config/hypr/hyprland.conf @@ -7,13 +7,16 @@ source = ~/.config/hypr/prefs/shortcuts.conf source = ~/.config/hypr/prefs/startup.conf # Execute your favorite apps at launch -exec-once = $authentication_agent & $wallpaper_manager & $notification_manager & $widgets +exec-once = $authentication_agent & $wallpaper_manager & $notification_manager & $widgets &widgets_desktop_mode & $env_access & $clipboard_manager & $keyring & $auto_mounting $spotify # Environment Variables env = XCURSOR_SIZE,24 env = WLR_NO_HARDWARE_CURSORS,1 -env = QT_QPA_PLATFORMTHEME,qt6ct +env = QT_QPA_PLATFORMTHEME,qt5ct env = QT_QPA_PLATFORM,wayland +env = GRIMBLAST_EDITOR,gwenview +env = MOZ_ENABLE_WAYLAND,1 +env = SSH_ASKPASS=ksshaskpass input { kb_layout = $keyboard_layout @@ -84,7 +87,9 @@ gestures { workspace_swipe = off } +windowrulev2 = float,class:^(chat-gpt)$ windowrulev2 = stayfocused,class:^(Rofi)$ +windowrulev2 = fakefullscreen,class:^(firefox)$ bind = $open_terminal, exec, $terminal_emulator bind = $close_window, killactive, @@ -100,6 +105,15 @@ bind = $cycle_workspace, exec, $cycle_workspaces bind = $maximise_window, fullscreen bind = $fake_maximise, fakefullscreen bind = $toggle_notifications, exec, $toggle_notification_draw +bind = $sys_monitor, exec, $sys_monitor_app +bind = $color_picker, exec, $color_picker_app +bind = $chat_gpt, exec, $chat_gpt_app +bind = $pass_mgr, exec, $lastpass + +bind = $clipboard_history, exec, $clipboard_history_menu + +bind = $screenshot_area, exec, $screenshot_area_cmd +bind = $screenshot_screen, exec, $screenshot_screen_cmd binde = $volume_down, exec, $volume_down_percent binde = $volume_up, exec, $volume_up_percent diff --git a/home/r0r5chach/.config/hypr/hyprpaper.conf b/home/r0r5chach/.config/hypr/hyprpaper.conf new file mode 100644 index 0000000..7407b27 --- /dev/null +++ b/home/r0r5chach/.config/hypr/hyprpaper.conf @@ -0,0 +1,2 @@ +preload = ~/.config/hypr/wallpapers/bg.jpg +wallpaper =,~/.config/hypr/wallpapers/bg.jpg diff --git a/.config/hypr/prefs/app_shortcut_commands.conf b/home/r0r5chach/.config/hypr/prefs/app_shortcut_commands.conf similarity index 56% rename from .config/hypr/prefs/app_shortcut_commands.conf rename to home/r0r5chach/.config/hypr/prefs/app_shortcut_commands.conf index 0159341..a9f028d 100644 --- a/.config/hypr/prefs/app_shortcut_commands.conf +++ b/home/r0r5chach/.config/hypr/prefs/app_shortcut_commands.conf @@ -4,10 +4,23 @@ $file_explorer=dolphin $browser=firefox -$app_launcher=rofi -config ~/.config/rofi/runner.rasi -show +$chat_gpt_app=chat-gpt + +$sys_monitor_app=kitty sh -c btop + +$lastpass=~/.config/rofi/passmgr-menu/passmgr + +$color_picker_app=~/.config/eww/widgets/color/color + +$app_launcher=rofi -config ~/.config/rofi/runner-menu/runner.rasi -show $lockscreen_manager=swaylock -C ~/.config/swaylock/lock.conf +$clipboard_history_menu=~/.config/rofi/clipboard-menu/clipboard + +$screenshot_area_cmd=grimblast --freeze edit area +$screenshot_screen_cmd=grimblast edit screen + $volume_percent=amixer sset Master $volume_up_percent=$volume_percent 5%+ $volume_down_percent=$volume_percent 5%- @@ -19,4 +32,4 @@ $brightness_down_percent=$brightness_percent 10%- $move_to_new_workspace=movetoworkspacesilent ,empty $cycle_workspaces=~/.config/eww/widgets/workspaces/setworkspace up $(eww get workspace_active) $(eww get workspace_total) -$toggle_notification_draw=~/.config/eww/widgets/notification-draw/toggle-notification-draw +$toggle_notification_draw=~/.config/rofi/notidraw-menu/notidraw diff --git a/.config/hypr/prefs/settings.conf b/home/r0r5chach/.config/hypr/prefs/settings.conf similarity index 76% rename from .config/hypr/prefs/settings.conf rename to home/r0r5chach/.config/hypr/prefs/settings.conf index 5e4bfef..e107e04 100644 --- a/.config/hypr/prefs/settings.conf +++ b/home/r0r5chach/.config/hypr/prefs/settings.conf @@ -1,6 +1,5 @@ -$keyboard_layout=gb +$keyboard_layout=us -$monitor_name=HDMI-A-1 $outside_gaps=10 $inside_gaps=5 diff --git a/.config/hypr/prefs/shortcuts.conf b/home/r0r5chach/.config/hypr/prefs/shortcuts.conf similarity index 67% rename from .config/hypr/prefs/shortcuts.conf rename to home/r0r5chach/.config/hypr/prefs/shortcuts.conf index e42dc9f..407503a 100644 --- a/.config/hypr/prefs/shortcuts.conf +++ b/home/r0r5chach/.config/hypr/prefs/shortcuts.conf @@ -1,6 +1,6 @@ $mainMod= SUPER -$open_terminal= $mainMod, T +$open_terminal=, code:148 $close_window= $mainMod, Q @@ -18,9 +18,24 @@ $open_browser= $mainMod, B $lock_screen= $mainMod, L +$color_picker= $mainMod, K + $maximise_window= $mainMod, M $fake_maximise= SUPER_SHIFT, M +$clipboard_history= $mainMod, V +$copy= CONTROL, C +$paste= CONTROL, V + +$chat_gpt= $mainMod, C + +$pass_mgr= $mainMod, P + +$sys_monitor= $mainMod, Escape + +$screenshot_area=,PRINT +$screenshot_screen= SHIFT_L, PRINT + $volume_up=, code:123 $volume_down=, code:122 $volume_mute=, code:121 diff --git a/home/r0r5chach/.config/hypr/prefs/startup.conf b/home/r0r5chach/.config/hypr/prefs/startup.conf new file mode 100644 index 0000000..5f130f3 --- /dev/null +++ b/home/r0r5chach/.config/hypr/prefs/startup.conf @@ -0,0 +1,19 @@ +$wallpaper_manager=hyprpaper + +$authentication_agent=/usr/lib/polkit-kde-authentication-agent-1 + +$keyring=kwalletd5 + +$notification_manager=dunst -c ~/.config/dunst/dunstrc + +$widgets=eww --restart open bar && eww open hardware_stats && eww open player_stats + +$env_access=dbus-update-activation-environment --systemd WAYLAND_DISPLAY XDG_CURRENT_DESKTOP + +$clipboard_manager=wl-paste --watch cliphist store + +$auto_mounting=udiskie & + +$widgets_desktop_mode=eww update desktop=false + +$spotify=spotifyd --config-path ~/.config/spotifyd diff --git a/.config/hypr/wallpapers/bg.jpg b/home/r0r5chach/.config/hypr/wallpapers/bg.jpg similarity index 100% rename from .config/hypr/wallpapers/bg.jpg rename to home/r0r5chach/.config/hypr/wallpapers/bg.jpg diff --git a/home/r0r5chach/.config/hypr/wallpapers/ls.jpg b/home/r0r5chach/.config/hypr/wallpapers/ls.jpg new file mode 100644 index 0000000..9f9c1e7 Binary files /dev/null and b/home/r0r5chach/.config/hypr/wallpapers/ls.jpg differ diff --git a/.config/kitty/kitty.conf b/home/r0r5chach/.config/kitty/kitty.conf similarity index 100% rename from .config/kitty/kitty.conf rename to home/r0r5chach/.config/kitty/kitty.conf diff --git a/.config/qt5ct/qt5ct.conf b/home/r0r5chach/.config/qt5ct/qt5ct.conf similarity index 100% rename from .config/qt5ct/qt5ct.conf rename to home/r0r5chach/.config/qt5ct/qt5ct.conf diff --git a/home/r0r5chach/.config/rofi/clipboard-menu/clipboard b/home/r0r5chach/.config/rofi/clipboard-menu/clipboard new file mode 100755 index 0000000..0093b81 --- /dev/null +++ b/home/r0r5chach/.config/rofi/clipboard-menu/clipboard @@ -0,0 +1,11 @@ +set -o pipefail +opt=$(cliphist list | rofi -config ~/.config/rofi/clipboard-menu/clipboard.rasi -dmenu -p ">>> " | cliphist decode) +ret=$? + +echo $ret + +if [ "$ret" == "0" ]; then + wl-copy "$opt" +elif [ "$ret" == "10" ]; then + cliphist delete-query "$opt" +fi diff --git a/home/r0r5chach/.config/rofi/clipboard-menu/clipboard.rasi b/home/r0r5chach/.config/rofi/clipboard-menu/clipboard.rasi new file mode 100644 index 0000000..e154909 --- /dev/null +++ b/home/r0r5chach/.config/rofi/clipboard-menu/clipboard.rasi @@ -0,0 +1,10 @@ +configuration { + kb-custom-1: "Delete"; + kb-remove-char-forward: "Control+d"; +} + +entry { + placeholder: "{Copied Text}"; +} + +@import "theme" diff --git a/home/r0r5chach/.config/rofi/notidraw-menu/notidraw b/home/r0r5chach/.config/rofi/notidraw-menu/notidraw new file mode 100755 index 0000000..10251c3 --- /dev/null +++ b/home/r0r5chach/.config/rofi/notidraw-menu/notidraw @@ -0,0 +1,6 @@ +opt=$(dunstctl history | jq '.data[][].message.data' | sed -ne 's/^"//' -ne 's/"//' -ne 's/\\n/ > /p' | rofi -config ~/.config/rofi/notidraw-menu/notidraw.rasi -p ">>> " -dmenu -markup-rows) +ret=$? + +if [ "$ret" == "10" ]; then + dunstctl history-clear +fi diff --git a/home/r0r5chach/.config/rofi/notidraw-menu/notidraw.rasi b/home/r0r5chach/.config/rofi/notidraw-menu/notidraw.rasi new file mode 100644 index 0000000..aadce25 --- /dev/null +++ b/home/r0r5chach/.config/rofi/notidraw-menu/notidraw.rasi @@ -0,0 +1,9 @@ +configuration { + kb-custom-1: "Delete"; + kb-remove-char-forward: "Control+d"; +} +entry { + placeholder: "{Notifications}"; +} + +@import "theme" diff --git a/home/r0r5chach/.config/rofi/passmgr-menu/passmgr b/home/r0r5chach/.config/rofi/passmgr-menu/passmgr new file mode 100755 index 0000000..1dc75de --- /dev/null +++ b/home/r0r5chach/.config/rofi/passmgr-menu/passmgr @@ -0,0 +1,8 @@ +set -o pipefail + +id=$(lpass ls | rofi -config "~/.config/rofi/passmgr-menu/passmgr.rasi" -dmenu -p ">>> " | awk ' { print substr($3,0, length($3)-1) }') + +if [ $? != 1 ]; then + lpass show --password $id | wl-copy + notify-send --app-name=LastPass Password Copied +fi diff --git a/home/r0r5chach/.config/rofi/passmgr-menu/passmgr.rasi b/home/r0r5chach/.config/rofi/passmgr-menu/passmgr.rasi new file mode 100644 index 0000000..b3b8d2f --- /dev/null +++ b/home/r0r5chach/.config/rofi/passmgr-menu/passmgr.rasi @@ -0,0 +1,5 @@ +entry { + placeholder: "{Account Name}"; +} + +@import "theme" diff --git a/home/r0r5chach/.config/rofi/runner-menu/runner.rasi b/home/r0r5chach/.config/rofi/runner-menu/runner.rasi new file mode 100644 index 0000000..fe0f54a --- /dev/null +++ b/home/r0r5chach/.config/rofi/runner-menu/runner.rasi @@ -0,0 +1,14 @@ +configuration { + show-icons: true; + modi: "combi"; + combi-display-format: "{text}"; + cycle: true; + combi-modi: "drun,filebrowser,window"; + display-combi: ">>> "; +} + +entry { + placeholder: "{App/File Name}"; +} + +@import "theme" diff --git a/.config/rofi/runner.rasi b/home/r0r5chach/.config/rofi/theme.rasi similarity index 68% rename from .config/rofi/runner.rasi rename to home/r0r5chach/.config/rofi/theme.rasi index 2212755..d35cb5c 100644 --- a/.config/rofi/runner.rasi +++ b/home/r0r5chach/.config/rofi/theme.rasi @@ -1,12 +1,3 @@ -configuration { - show-icons: true; - modi: "combi"; - combi-display-format: "{generic}"; - cycle: true; - combi-modi: "drun,filebrowser"; - display-combi: ">>> "; -} - * { font: "OpenDyslexic Nerd Font 12"; foreground: #04FFF7; @@ -17,10 +8,6 @@ inputbar { children: [prompt,entry]; } -entry { - placeholder: "{App Name}"; -} - element.alternate.normal { background-color: transparent; } diff --git a/home/r0r5chach/.config/spotify-tui/.spotify_token_cache.json b/home/r0r5chach/.config/spotify-tui/.spotify_token_cache.json new file mode 100644 index 0000000..3f05fba --- /dev/null +++ b/home/r0r5chach/.config/spotify-tui/.spotify_token_cache.json @@ -0,0 +1 @@ +{"access_token":"BQAT7ti0jqQYlYSwLu-dMWBcbsSrsSl55HI9pq9FoqK1Bs8EZUkCalUZZh5STUUco87mn-QyRQTZNepg_hqNzD1u_6kLayi-Gg6Hoff9aKVfJyxraG3T42B6Nf5JoBnCVavCJqvMTu8Nn0MADlH_woD7J6sIkSdJ0ivI88AcCBSYgwnzOC918G1A-nfrKXgpbFXw9yKDs9Y_ikEmDq7TLmUVKvpAyoAqyjDk6GYmvwLOPPYgGC4KTzmJtqj6ajUqO4rksiZ-Q9D7_y96GH8xtebQGq2qUlJKN3vYM7zkU9nNFkthRA","token_type":"Bearer","expires_in":3600,"expires_at":1689048234,"refresh_token":"AQANjQfp6XHpSPNSijO2Hjrf1Eoflli_iNerFIalikVa7JTXCLJweHRKbTLDknE-2DZfGvSxZzJVzYi_PZppT7X96k_FAE-o8DtTftYhyM-sExDSOSyahhpJex8TmCq6g2k","scope":"playlist-read-private playlist-read-collaborative user-follow-read playlist-modify-private user-read-private user-follow-modify user-modify-playback-state user-library-read user-library-modify playlist-modify-public user-read-playback-state user-read-currently-playing user-read-recently-played user-read-playback-position"} \ No newline at end of file diff --git a/home/r0r5chach/.config/spotify-tui/client.yml b/home/r0r5chach/.config/spotify-tui/client.yml new file mode 100644 index 0000000..fa4c9d1 --- /dev/null +++ b/home/r0r5chach/.config/spotify-tui/client.yml @@ -0,0 +1,5 @@ +--- +client_id: 8b0dc82074a140f6b352da08ab7993a1 +client_secret: d1f0e18debd54bafa289f437cb3a4087 +device_id: 793d6d7c60bd6329d6f91fdb8c1b53aab99bf3da +port: 8888 diff --git a/home/r0r5chach/.config/spotify-tui/config.yml b/home/r0r5chach/.config/spotify-tui/config.yml new file mode 100644 index 0000000..7cd5dcc --- /dev/null +++ b/home/r0r5chach/.config/spotify-tui/config.yml @@ -0,0 +1,5 @@ +theme: + active: Magenta + selected: Magenta + banner: LightGreen + playbar_progress: Magenta diff --git a/home/r0r5chach/.config/spotifyd b/home/r0r5chach/.config/spotifyd new file mode 100644 index 0000000..4a8b3e7 --- /dev/null +++ b/home/r0r5chach/.config/spotifyd @@ -0,0 +1,11 @@ +[global] +username = "r0r-5chach.xyz@proton.me" +password_cmd = "lpass show --password 'Shared-Streaming Services/Spotify'" +backend = "alsa" +device = "default" +control = "default" +mixer = "Master" +volume_controller = "alsa" +device_name = "pc" +bitrate = 320 +on_song_change_hook = "~/.config/eww/widgets/player/player-info" diff --git a/.config/swaylock/lock.conf b/home/r0r5chach/.config/swaylock/lock.conf similarity index 100% rename from .config/swaylock/lock.conf rename to home/r0r5chach/.config/swaylock/lock.conf diff --git a/.config/zsh/art/art-1 b/home/r0r5chach/.config/zsh/art/art-1 similarity index 100% rename from .config/zsh/art/art-1 rename to home/r0r5chach/.config/zsh/art/art-1 diff --git a/.config/zsh/art/art-10 b/home/r0r5chach/.config/zsh/art/art-10 similarity index 100% rename from .config/zsh/art/art-10 rename to home/r0r5chach/.config/zsh/art/art-10 diff --git a/.config/zsh/art/art-11 b/home/r0r5chach/.config/zsh/art/art-11 similarity index 100% rename from .config/zsh/art/art-11 rename to home/r0r5chach/.config/zsh/art/art-11 diff --git a/.config/zsh/art/art-12 b/home/r0r5chach/.config/zsh/art/art-12 similarity index 100% rename from .config/zsh/art/art-12 rename to home/r0r5chach/.config/zsh/art/art-12 diff --git a/.config/zsh/art/art-13 b/home/r0r5chach/.config/zsh/art/art-13 similarity index 100% rename from .config/zsh/art/art-13 rename to home/r0r5chach/.config/zsh/art/art-13 diff --git a/.config/zsh/art/art-14 b/home/r0r5chach/.config/zsh/art/art-14 similarity index 100% rename from .config/zsh/art/art-14 rename to home/r0r5chach/.config/zsh/art/art-14 diff --git a/.config/zsh/art/art-15 b/home/r0r5chach/.config/zsh/art/art-15 similarity index 100% rename from .config/zsh/art/art-15 rename to home/r0r5chach/.config/zsh/art/art-15 diff --git a/.config/zsh/art/art-16 b/home/r0r5chach/.config/zsh/art/art-16 similarity index 100% rename from .config/zsh/art/art-16 rename to home/r0r5chach/.config/zsh/art/art-16 diff --git a/.config/zsh/art/art-17 b/home/r0r5chach/.config/zsh/art/art-17 similarity index 100% rename from .config/zsh/art/art-17 rename to home/r0r5chach/.config/zsh/art/art-17 diff --git a/.config/zsh/art/art-18 b/home/r0r5chach/.config/zsh/art/art-18 similarity index 100% rename from .config/zsh/art/art-18 rename to home/r0r5chach/.config/zsh/art/art-18 diff --git a/.config/zsh/art/art-19 b/home/r0r5chach/.config/zsh/art/art-19 similarity index 100% rename from .config/zsh/art/art-19 rename to home/r0r5chach/.config/zsh/art/art-19 diff --git a/.config/zsh/art/art-2 b/home/r0r5chach/.config/zsh/art/art-2 similarity index 100% rename from .config/zsh/art/art-2 rename to home/r0r5chach/.config/zsh/art/art-2 diff --git a/.config/zsh/art/art-20 b/home/r0r5chach/.config/zsh/art/art-20 similarity index 100% rename from .config/zsh/art/art-20 rename to home/r0r5chach/.config/zsh/art/art-20 diff --git a/.config/zsh/art/art-21 b/home/r0r5chach/.config/zsh/art/art-21 similarity index 100% rename from .config/zsh/art/art-21 rename to home/r0r5chach/.config/zsh/art/art-21 diff --git a/.config/zsh/art/art-22 b/home/r0r5chach/.config/zsh/art/art-22 similarity index 100% rename from .config/zsh/art/art-22 rename to home/r0r5chach/.config/zsh/art/art-22 diff --git a/.config/zsh/art/art-3 b/home/r0r5chach/.config/zsh/art/art-3 similarity index 100% rename from .config/zsh/art/art-3 rename to home/r0r5chach/.config/zsh/art/art-3 diff --git a/.config/zsh/art/art-4 b/home/r0r5chach/.config/zsh/art/art-4 similarity index 100% rename from .config/zsh/art/art-4 rename to home/r0r5chach/.config/zsh/art/art-4 diff --git a/.config/zsh/art/art-5 b/home/r0r5chach/.config/zsh/art/art-5 similarity index 100% rename from .config/zsh/art/art-5 rename to home/r0r5chach/.config/zsh/art/art-5 diff --git a/.config/zsh/art/art-6 b/home/r0r5chach/.config/zsh/art/art-6 similarity index 100% rename from .config/zsh/art/art-6 rename to home/r0r5chach/.config/zsh/art/art-6 diff --git a/.config/zsh/art/art-7 b/home/r0r5chach/.config/zsh/art/art-7 similarity index 100% rename from .config/zsh/art/art-7 rename to home/r0r5chach/.config/zsh/art/art-7 diff --git a/.config/zsh/art/art-8 b/home/r0r5chach/.config/zsh/art/art-8 similarity index 100% rename from .config/zsh/art/art-8 rename to home/r0r5chach/.config/zsh/art/art-8 diff --git a/.config/zsh/art/art-9 b/home/r0r5chach/.config/zsh/art/art-9 similarity index 100% rename from .config/zsh/art/art-9 rename to home/r0r5chach/.config/zsh/art/art-9 diff --git a/home/r0r5chach/.config/zsh/dotfiles-update b/home/r0r5chach/.config/zsh/dotfiles-update new file mode 100755 index 0000000..0355f00 --- /dev/null +++ b/home/r0r5chach/.config/zsh/dotfiles-update @@ -0,0 +1,54 @@ +dot=$1 +mkdir $dot/boot 2> /dev/null +mkdir $dot/boot/grub 2> /dev/null +mkdir $dot/boot/grub 2> /dev/null +mkdir $dot/boot/grub/themes 2> /dev/null +cp -r /boot/grub/themes/GradientGuy/ $dot/boot/grub/themes/ + +mkdir $dot/etc 2> /dev/null +cp /etc/installList.txt $dot/etc/ +cp /etc/mkinitcpio.conf $dot/etc/ +cp /etc/pacman.conf $dot/etc/ + +mkdir $dot/etc/default 2> /dev/null +cp /etc/default/grub $dot/etc/default/ + +mkdir $dot/etc/pacman.d 2> /dev/null +mkdir $dot/etc/pacman.d/hooks 2> /dev/null +cp /etc/pacman.d/hooks/* $dot/etc/pacman.d/hooks/ + +mkdir $dot/usr 2> /dev/null +mkdir $dot/usr/share 2> /dev/null +mkdir $dot/usr/share/applications 2> /dev/null +cp /usr/share/applications/code-url-handler.desktop $dot/usr/share/applications/ +cp /usr/share/applications/code.desktop $dot/usr/share/applications/ +cp /usr/share/applications/spotify.desktop $dot/usr/share/applications/ + +mkdir $dot/usr/share/icons 2> /dev/null +mkdir $dot/usr/share/icons/default 2> /dev/null +cp /usr/share/icons/default/index.theme $dot/usr/share/icons/default/ + +mkdir $dot/home 2> /dev/null +mkdir $dot/home/$USER 2> /dev/null +cp /home/$USER/.zshrc $dot/home/$USER/ + +mkdir $dot/home/$USER/.docker 2> /dev/null +cp /home/$USER/.docker/config.json $dot/home/$USER/.docker/ + +mkdir $dot/home/$USER/.mozilla 2> /dev/null +cp -r /home/$USER/.mozilla/firefox $dot/home/$USER/.mozilla/ + +mkdir $dot/home/$USER/.config 2> /dev/null +cp -r /home/$USER/.config/btop $dot/home/$USER/.config/ +cp -r /home/$USER/.config/dunst $dot/home/$USER/.config/ +cp -r /home/$USER/.config/eww $dot/home/$USER/.config/ +cp -r /home/$USER/.config/hypr $dot/home/$USER/.config/ +cp -r /home/$USER/.config/kitty $dot/home/$USER/.config/ +cp -r /home/$USER/.config/qt5ct $dot/home/$USER/.config/ +cp -r /home/$USER/.config/rofi $dot/home/$USER/.config/ +cp -r /home/$USER/.config/spotify-tui $dot/home/$USER/.config/ +cp -r /home/$USER/.config/swaylock $dot/home/$USER/.config/ +cp -r /home/$USER/.config/zsh $dot/home/$USER/.config/ +cp /home/$USER/.config/code-flags.conf $dot/home/$USER/.config/ +cp /home/$USER/.config/electron-flags.conf $dot/home/$USER/.config/ +cp /home/$USER/.config/spotifyd $dot/home/$USER/.config diff --git a/.config/zsh/init b/home/r0r5chach/.config/zsh/init similarity index 100% rename from .config/zsh/init rename to home/r0r5chach/.config/zsh/init diff --git a/.config/zsh/titles/title-1 b/home/r0r5chach/.config/zsh/titles/title-1 similarity index 100% rename from .config/zsh/titles/title-1 rename to home/r0r5chach/.config/zsh/titles/title-1 diff --git a/.config/zsh/titles/title-10 b/home/r0r5chach/.config/zsh/titles/title-10 similarity index 100% rename from .config/zsh/titles/title-10 rename to home/r0r5chach/.config/zsh/titles/title-10 diff --git a/.config/zsh/titles/title-11 b/home/r0r5chach/.config/zsh/titles/title-11 similarity index 100% rename from .config/zsh/titles/title-11 rename to home/r0r5chach/.config/zsh/titles/title-11 diff --git a/.config/zsh/titles/title-12 b/home/r0r5chach/.config/zsh/titles/title-12 similarity index 100% rename from .config/zsh/titles/title-12 rename to home/r0r5chach/.config/zsh/titles/title-12 diff --git a/.config/zsh/titles/title-13 b/home/r0r5chach/.config/zsh/titles/title-13 similarity index 100% rename from .config/zsh/titles/title-13 rename to home/r0r5chach/.config/zsh/titles/title-13 diff --git a/.config/zsh/titles/title-14 b/home/r0r5chach/.config/zsh/titles/title-14 similarity index 100% rename from .config/zsh/titles/title-14 rename to home/r0r5chach/.config/zsh/titles/title-14 diff --git a/.config/zsh/titles/title-15 b/home/r0r5chach/.config/zsh/titles/title-15 similarity index 100% rename from .config/zsh/titles/title-15 rename to home/r0r5chach/.config/zsh/titles/title-15 diff --git a/.config/zsh/titles/title-16 b/home/r0r5chach/.config/zsh/titles/title-16 similarity index 100% rename from .config/zsh/titles/title-16 rename to home/r0r5chach/.config/zsh/titles/title-16 diff --git a/.config/zsh/titles/title-17 b/home/r0r5chach/.config/zsh/titles/title-17 similarity index 100% rename from .config/zsh/titles/title-17 rename to home/r0r5chach/.config/zsh/titles/title-17 diff --git a/.config/zsh/titles/title-18 b/home/r0r5chach/.config/zsh/titles/title-18 similarity index 100% rename from .config/zsh/titles/title-18 rename to home/r0r5chach/.config/zsh/titles/title-18 diff --git a/.config/zsh/titles/title-19 b/home/r0r5chach/.config/zsh/titles/title-19 similarity index 100% rename from .config/zsh/titles/title-19 rename to home/r0r5chach/.config/zsh/titles/title-19 diff --git a/.config/zsh/titles/title-2 b/home/r0r5chach/.config/zsh/titles/title-2 similarity index 100% rename from .config/zsh/titles/title-2 rename to home/r0r5chach/.config/zsh/titles/title-2 diff --git a/.config/zsh/titles/title-20 b/home/r0r5chach/.config/zsh/titles/title-20 similarity index 100% rename from .config/zsh/titles/title-20 rename to home/r0r5chach/.config/zsh/titles/title-20 diff --git a/.config/zsh/titles/title-21 b/home/r0r5chach/.config/zsh/titles/title-21 similarity index 100% rename from .config/zsh/titles/title-21 rename to home/r0r5chach/.config/zsh/titles/title-21 diff --git a/.config/zsh/titles/title-22 b/home/r0r5chach/.config/zsh/titles/title-22 similarity index 100% rename from .config/zsh/titles/title-22 rename to home/r0r5chach/.config/zsh/titles/title-22 diff --git a/.config/zsh/titles/title-23 b/home/r0r5chach/.config/zsh/titles/title-23 similarity index 100% rename from .config/zsh/titles/title-23 rename to home/r0r5chach/.config/zsh/titles/title-23 diff --git a/.config/zsh/titles/title-24 b/home/r0r5chach/.config/zsh/titles/title-24 similarity index 100% rename from .config/zsh/titles/title-24 rename to home/r0r5chach/.config/zsh/titles/title-24 diff --git a/.config/zsh/titles/title-25 b/home/r0r5chach/.config/zsh/titles/title-25 similarity index 100% rename from .config/zsh/titles/title-25 rename to home/r0r5chach/.config/zsh/titles/title-25 diff --git a/.config/zsh/titles/title-26 b/home/r0r5chach/.config/zsh/titles/title-26 similarity index 100% rename from .config/zsh/titles/title-26 rename to home/r0r5chach/.config/zsh/titles/title-26 diff --git a/.config/zsh/titles/title-27 b/home/r0r5chach/.config/zsh/titles/title-27 similarity index 100% rename from .config/zsh/titles/title-27 rename to home/r0r5chach/.config/zsh/titles/title-27 diff --git a/.config/zsh/titles/title-28 b/home/r0r5chach/.config/zsh/titles/title-28 similarity index 100% rename from .config/zsh/titles/title-28 rename to home/r0r5chach/.config/zsh/titles/title-28 diff --git a/.config/zsh/titles/title-29 b/home/r0r5chach/.config/zsh/titles/title-29 similarity index 100% rename from .config/zsh/titles/title-29 rename to home/r0r5chach/.config/zsh/titles/title-29 diff --git a/.config/zsh/titles/title-3 b/home/r0r5chach/.config/zsh/titles/title-3 similarity index 100% rename from .config/zsh/titles/title-3 rename to home/r0r5chach/.config/zsh/titles/title-3 diff --git a/.config/zsh/titles/title-30 b/home/r0r5chach/.config/zsh/titles/title-30 similarity index 100% rename from .config/zsh/titles/title-30 rename to home/r0r5chach/.config/zsh/titles/title-30 diff --git a/.config/zsh/titles/title-31 b/home/r0r5chach/.config/zsh/titles/title-31 similarity index 100% rename from .config/zsh/titles/title-31 rename to home/r0r5chach/.config/zsh/titles/title-31 diff --git a/.config/zsh/titles/title-32 b/home/r0r5chach/.config/zsh/titles/title-32 similarity index 100% rename from .config/zsh/titles/title-32 rename to home/r0r5chach/.config/zsh/titles/title-32 diff --git a/.config/zsh/titles/title-33 b/home/r0r5chach/.config/zsh/titles/title-33 similarity index 100% rename from .config/zsh/titles/title-33 rename to home/r0r5chach/.config/zsh/titles/title-33 diff --git a/.config/zsh/titles/title-34 b/home/r0r5chach/.config/zsh/titles/title-34 similarity index 100% rename from .config/zsh/titles/title-34 rename to home/r0r5chach/.config/zsh/titles/title-34 diff --git a/.config/zsh/titles/title-35 b/home/r0r5chach/.config/zsh/titles/title-35 similarity index 100% rename from .config/zsh/titles/title-35 rename to home/r0r5chach/.config/zsh/titles/title-35 diff --git a/.config/zsh/titles/title-36 b/home/r0r5chach/.config/zsh/titles/title-36 similarity index 100% rename from .config/zsh/titles/title-36 rename to home/r0r5chach/.config/zsh/titles/title-36 diff --git a/.config/zsh/titles/title-37 b/home/r0r5chach/.config/zsh/titles/title-37 similarity index 100% rename from .config/zsh/titles/title-37 rename to home/r0r5chach/.config/zsh/titles/title-37 diff --git a/.config/zsh/titles/title-38 b/home/r0r5chach/.config/zsh/titles/title-38 similarity index 100% rename from .config/zsh/titles/title-38 rename to home/r0r5chach/.config/zsh/titles/title-38 diff --git a/.config/zsh/titles/title-39 b/home/r0r5chach/.config/zsh/titles/title-39 similarity index 100% rename from .config/zsh/titles/title-39 rename to home/r0r5chach/.config/zsh/titles/title-39 diff --git a/.config/zsh/titles/title-4 b/home/r0r5chach/.config/zsh/titles/title-4 similarity index 100% rename from .config/zsh/titles/title-4 rename to home/r0r5chach/.config/zsh/titles/title-4 diff --git a/.config/zsh/titles/title-40 b/home/r0r5chach/.config/zsh/titles/title-40 similarity index 100% rename from .config/zsh/titles/title-40 rename to home/r0r5chach/.config/zsh/titles/title-40 diff --git a/.config/zsh/titles/title-41 b/home/r0r5chach/.config/zsh/titles/title-41 similarity index 100% rename from .config/zsh/titles/title-41 rename to home/r0r5chach/.config/zsh/titles/title-41 diff --git a/.config/zsh/titles/title-42 b/home/r0r5chach/.config/zsh/titles/title-42 similarity index 100% rename from .config/zsh/titles/title-42 rename to home/r0r5chach/.config/zsh/titles/title-42 diff --git a/.config/zsh/titles/title-43 b/home/r0r5chach/.config/zsh/titles/title-43 similarity index 100% rename from .config/zsh/titles/title-43 rename to home/r0r5chach/.config/zsh/titles/title-43 diff --git a/.config/zsh/titles/title-44 b/home/r0r5chach/.config/zsh/titles/title-44 similarity index 100% rename from .config/zsh/titles/title-44 rename to home/r0r5chach/.config/zsh/titles/title-44 diff --git a/.config/zsh/titles/title-45 b/home/r0r5chach/.config/zsh/titles/title-45 similarity index 100% rename from .config/zsh/titles/title-45 rename to home/r0r5chach/.config/zsh/titles/title-45 diff --git a/.config/zsh/titles/title-5 b/home/r0r5chach/.config/zsh/titles/title-5 similarity index 100% rename from .config/zsh/titles/title-5 rename to home/r0r5chach/.config/zsh/titles/title-5 diff --git a/.config/zsh/titles/title-6 b/home/r0r5chach/.config/zsh/titles/title-6 similarity index 100% rename from .config/zsh/titles/title-6 rename to home/r0r5chach/.config/zsh/titles/title-6 diff --git a/.config/zsh/titles/title-7 b/home/r0r5chach/.config/zsh/titles/title-7 similarity index 100% rename from .config/zsh/titles/title-7 rename to home/r0r5chach/.config/zsh/titles/title-7 diff --git a/.config/zsh/titles/title-8 b/home/r0r5chach/.config/zsh/titles/title-8 similarity index 100% rename from .config/zsh/titles/title-8 rename to home/r0r5chach/.config/zsh/titles/title-8 diff --git a/.config/zsh/titles/title-9 b/home/r0r5chach/.config/zsh/titles/title-9 similarity index 100% rename from .config/zsh/titles/title-9 rename to home/r0r5chach/.config/zsh/titles/title-9 diff --git a/home/r0r5chach/.docker/config.json b/home/r0r5chach/.docker/config.json new file mode 100644 index 0000000..15e4d9e --- /dev/null +++ b/home/r0r5chach/.docker/config.json @@ -0,0 +1,6 @@ +{ + "auths": { + "https://index.docker.io/v1/": {} + }, + "credsStore": "lastpass" +} \ No newline at end of file diff --git a/home/r0r5chach/.mozilla/firefox/Crash Reports/InstallTime20230704152300 b/home/r0r5chach/.mozilla/firefox/Crash Reports/InstallTime20230704152300 new file mode 100644 index 0000000..9be476e --- /dev/null +++ b/home/r0r5chach/.mozilla/firefox/Crash Reports/InstallTime20230704152300 @@ -0,0 +1 @@ +1688747209 \ No newline at end of file diff --git a/home/r0r5chach/.mozilla/firefox/Crash Reports/InstallTime20230707173157 b/home/r0r5chach/.mozilla/firefox/Crash Reports/InstallTime20230707173157 new file mode 100644 index 0000000..29a5d8b --- /dev/null +++ b/home/r0r5chach/.mozilla/firefox/Crash Reports/InstallTime20230707173157 @@ -0,0 +1 @@ +1688766937 \ No newline at end of file diff --git a/home/r0r5chach/.mozilla/firefox/Crash Reports/LastCrash b/home/r0r5chach/.mozilla/firefox/Crash Reports/LastCrash new file mode 100644 index 0000000..d686388 --- /dev/null +++ b/home/r0r5chach/.mozilla/firefox/Crash Reports/LastCrash @@ -0,0 +1 @@ +1688889078 \ No newline at end of file diff --git a/home/r0r5chach/.mozilla/firefox/installs.ini b/home/r0r5chach/.mozilla/firefox/installs.ini new file mode 100644 index 0000000..17037f7 --- /dev/null +++ b/home/r0r5chach/.mozilla/firefox/installs.ini @@ -0,0 +1,4 @@ +[4F96D1932A9F858E] +Default=wtc7ec9x.default-release +Locked=1 + diff --git a/home/r0r5chach/.mozilla/firefox/profiles.ini b/home/r0r5chach/.mozilla/firefox/profiles.ini new file mode 100644 index 0000000..f9c8eaf --- /dev/null +++ b/home/r0r5chach/.mozilla/firefox/profiles.ini @@ -0,0 +1,19 @@ +[Install4F96D1932A9F858E] +Default=wtc7ec9x.default-release +Locked=1 + +[Profile1] +Name=default +IsRelative=1 +Path=wfavmj23.default +Default=1 + +[Profile0] +Name=default-release +IsRelative=1 +Path=wtc7ec9x.default-release + +[General] +StartWithLastProfile=1 +Version=2 + diff --git a/home/r0r5chach/.mozilla/firefox/wfavmj23.default/times.json b/home/r0r5chach/.mozilla/firefox/wfavmj23.default/times.json new file mode 100755 index 0000000..316d49c --- /dev/null +++ b/home/r0r5chach/.mozilla/firefox/wfavmj23.default/times.json @@ -0,0 +1,4 @@ +{ +"created": 1688747209702, +"firstUse": null +} diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/.parentlock b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/.parentlock new file mode 100644 index 0000000..e69de29 diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/AlternateServices.txt b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/AlternateServices.txt new file mode 100644 index 0000000..f99675b --- /dev/null +++ b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/AlternateServices.txt @@ -0,0 +1,796 @@ +https:cdnjs.cloudflare.com:443:.::3 0 19548 https:cdnjs.cloudflare.com:443:cdnjs.cloudflare.com:443::n:1689104881:h3:y:1689018121:n::|n:y: +https:lh5.googleusercontent.com:443:.:^partitionKey=%28https%2Caskubuntu.com%29:3 0 19549 https:lh5.googleusercontent.com:443:lh5.googleusercontent.com:443::n:1691634688:h3:y:1689042007:n:^partitionKey=%28https%2Caskubuntu.com%29:|n:y: +https:ins.connatix.com:443:.:^partitionKey=%28https%2Cappsloveworld.com%29:3 0 19546 https:ins.connatix.com:443:ins.connatix.com:443::n:1688928117:h3:y:1688837857:n:^partitionKey=%28https%2Cappsloveworld.com%29:|n:y: +https:cm.g.doubleclick.net:443:.:^partitionKey=%28https%2Citsfoss.com%29:3 0 19547 https:cm.g.doubleclick.net:443:cm.g.doubleclick.net:443::n:1691468367:h3:y:1688874784:n:^partitionKey=%28https%2Citsfoss.com%29:|n:y: +https:ultra.content.blackboardcdn.com:443:.::3 0 19548 https:ultra.content.blackboardcdn.com:443:ultra.content.blackboardcdn.com:443::n:1689102257:h3:y:1689015566:n::|n:y: +https:play.google.com:443:.::3 0 19547 https:play.google.com:443:play.google.com:443::n:1691470009:h3:y:1688877328:n::|n:y: +https:www.googletagservices.com:443:.:^partitionKey=%28https%2Cshellscript.sh%29:3 0 19546 https:www.googletagservices.com:443:www.googletagservices.com:443::n:1691435732:h3:y:1688842468:n:^partitionKey=%28https%2Cshellscript.sh%29:|n:y: +https:rtb.openx.net:443:.:^partitionKey=%28https%2Cbaeldung.com%29:3 0 19546 https:rtb.openx.net:443:rtb.openx.net:443::n:1691435961:h3:y:1688842468:n:^partitionKey=%28https%2Cbaeldung.com%29:|n:y: +https:www.gstatic.com:443:.:^partitionKey=%28https%2Ctecadmin.net%29:3 0 19546 https:www.gstatic.com:443:www.gstatic.com:443::n:1691432564:h3:y:1688837857:n:^partitionKey=%28https%2Ctecadmin.net%29:|n:y: +https:9293948.fls.doubleclick.net:443:.:^partitionKey=%28https%2Clastpass.com%29:3 0 19545 https:9293948.fls.doubleclick.net:443:9293948.fls.doubleclick.net:443::n:1691364583:h3:y:1688752771:n:^partitionKey=%28https%2Clastpass.com%29:|n:y: +https:www.google-analytics.com:443:.:^partitionKey=%28https%2Cparsec.app%29:3 0 19547 https:www.google-analytics.com:443:www.google-analytics.com:443::n:1691466324:h3:y:1688873798:n:^partitionKey=%28https%2Cparsec.app%29:|n:y: +https:cdn.jsdelivr.net:443:.:^partitionKey=%28https%2Cappsloveworld.com%29:3 0 19546 https:cdn.jsdelivr.net:443:cdn.jsdelivr.net:443::n:1688928060:h3:y:1688837857:n:^partitionKey=%28https%2Cappsloveworld.com%29:|n:y: +https:htlb.casalemedia.com:443:.:^partitionKey=%28https%2Cappsloveworld.com%29:3 0 19546 https:htlb.casalemedia.com:443:htlb.casalemedia.com:443::n:1688928310:h3:y:1688837857:n:^partitionKey=%28https%2Cappsloveworld.com%29:|n:y: +https:fonts.gstatic.com:443:.:^partitionKey=%28https%2Credhat.com%29:3 0 19547 https:fonts.gstatic.com:443:fonts.gstatic.com:443::n:1691493156:h3:y:1688891553:n:^partitionKey=%28https%2Credhat.com%29:|n:y: +https:www.google.com:443:.:^partitionKey=%28https%2Citsfoss.com%29:3 0 19547 https:www.google.com:443:www.google.com:443::n:1691468365:h3:y:1688874784:n:^partitionKey=%28https%2Citsfoss.com%29:|n:y: +https:region1.analytics.google.com:443:.:^partitionKey=%28https%2Ckinsta.com%29:3 0 19547 https:region1.analytics.google.com:443:region1.analytics.google.com:443::n:1691468449:h3:y:1688874784:n:^partitionKey=%28https%2Ckinsta.com%29:|n:y: +https:pbc.vliplatform.com:443:.:^partitionKey=%28https%2Ctecadmin.net%29:3 0 19546 https:pbc.vliplatform.com:443:pbc.vliplatform.com:443::n:1688926966:h3:y:1688837857:n:^partitionKey=%28https%2Ctecadmin.net%29:|n:y: +https:fonts.gstatic.com:443:.:^partitionKey=%28https%2C101computing.net%29:3 0 19548 https:fonts.gstatic.com:443:fonts.gstatic.com:443::n:1691610148:h3:y:1689018121:n:^partitionKey=%28https%2C101computing.net%29:|n:y: +https:pagead2.googlesyndication.com:443:.:^partitionKey=%28https%2Citsfoss.com%29:3 0 19547 https:pagead2.googlesyndication.com:443:pagead2.googlesyndication.com:443::n:1691468388:h3:y:1688874784:n:^partitionKey=%28https%2Citsfoss.com%29:|n:y: +https:fonts.gstatic.com:443:.:^partitionKey=%28https%2Cspotify.com%29:3 0 19547 https:fonts.gstatic.com:443:fonts.gstatic.com:443::n:1691513771:h3:y:1688920622:n:^partitionKey=%28https%2Cspotify.com%29:|n:y: +https:oajs.openx.net:443:.:^partitionKey=%28https%2Ctutorialspoint.com%29:3 0 19547 https:oajs.openx.net:443:oajs.openx.net:443::n:1691462349:h3:y:1688868178:n:^partitionKey=%28https%2Ctutorialspoint.com%29:|n:y: +https:invstatic101.creativecdn.com:443:.:^partitionKey=%28https%2Cbaeldung.com%29:3 0 19546 https:invstatic101.creativecdn.com:443:invstatic101.creativecdn.com:443::n:1691435957:h3:y:1688842468:n:^partitionKey=%28https%2Cbaeldung.com%29:|n:y: +https:www.google-analytics.com:443:.:^partitionKey=%28https%2Cmozilla.org%29:3 0 19547 https:www.google-analytics.com:443:www.google-analytics.com:443::n:1691493993:h3:y:1688881257:n:^partitionKey=%28https%2Cmozilla.org%29:|n:y: +https:developer.spotify.com:443:.:^partitionKey=%28https%2Cspotify.com%29:3 1 19548 https:developer.spotify.com:443:developer.spotify.com:443::n:1691598808:h3:y:1688938778:n:^partitionKey=%28https%2Cspotify.com%29:|n:y: +https:ajax.googleapis.com:443:.:^partitionKey=%28https%2Cspencerkrum.com%29:3 0 19549 https:ajax.googleapis.com:443:ajax.googleapis.com:443::n:1691631343:h3:y:1689038778:n:^partitionKey=%28https%2Cspencerkrum.com%29:|n:y: +https:www.google.co.uk:443:.:^partitionKey=%28https%2Citsfoss.com%29:3 0 19547 https:www.google.co.uk:443:www.google.co.uk:443::n:1691468365:h3:y:1688874784:n:^partitionKey=%28https%2Citsfoss.com%29:|n:y: +https:www.google.com:443:.:^partitionKey=%28https%2Ckinsta.com%29:3 0 19547 https:www.google.com:443:www.google.com:443::n:1691468356:h3:y:1688874784:n:^partitionKey=%28https%2Ckinsta.com%29:|n:y: +https:cdnjs.cloudflare.com:443:.:^partitionKey=%28https%2Cw3schools.com%29:3 0 19548 https:cdnjs.cloudflare.com:443:cdnjs.cloudflare.com:443::n:1689104882:h3:y:1689018121:n:^partitionKey=%28https%2Cw3schools.com%29:|n:y: +https:fonts.googleapis.com:443:.:^partitionKey=%28https%2Cpinetools.com%29:3 1 19549 https:fonts.googleapis.com:443:fonts.googleapis.com:443::n:1691624363:h3:y:1689031473:n:^partitionKey=%28https%2Cpinetools.com%29:|n:y: +https:www.google-analytics.com:443:.:^partitionKey=%28https%2Ckinsta.com%29:3 0 19547 https:www.google-analytics.com:443:www.google-analytics.com:443::n:1691468356:h3:y:1688874784:n:^partitionKey=%28https%2Ckinsta.com%29:|n:y: +https:stats.g.doubleclick.net:443:.:^partitionKey=%28https%2Cstackoverflow.com%29:3 1 19547 https:stats.g.doubleclick.net:443:stats.g.doubleclick.net:443::n:1691462083:h3:y:1688842468:n:^partitionKey=%28https%2Cstackoverflow.com%29:|n:y: +https:region1.google-analytics.com:443:.:^partitionKey=%28https%2Cstackoverflow.com%29:3 0 19546 https:region1.google-analytics.com:443:region1.google-analytics.com:443::n:1691435803:h3:y:1688837857:n:^partitionKey=%28https%2Cstackoverflow.com%29:|n:y: +https:www.googletagmanager.com:443:.:^partitionKey=%28https%2Cgnome-look.org%29:3 0 19545 https:www.googletagmanager.com:443:www.googletagmanager.com:443::n:1691363106:h3:y:1688771077:n:^partitionKey=%28https%2Cgnome-look.org%29:|n:y: +https:fonts.googleapis.com:443:.:^partitionKey=%28https%2Cappsloveworld.com%29:3 0 19546 https:fonts.googleapis.com:443:fonts.googleapis.com:443::n:1691433660:h3:y:1688837857:n:^partitionKey=%28https%2Cappsloveworld.com%29:|n:y: +https:push.services.mozilla.com:443:.::3 4 19549 https:push.services.mozilla.com:443:push.services.mozilla.com:443::n:1691642028:h3:y:1688749048:n::|n:y: +https:fonts.gstatic.com:443:.:^partitionKey=%28https%2Cw3schools.com%29:3 0 19548 https:fonts.gstatic.com:443:fonts.gstatic.com:443::n:1691610482:h3:y:1689018121:n:^partitionKey=%28https%2Cw3schools.com%29:|n:y: +https:bshr.ezodn.com:443:.::3 0 19547 https:bshr.ezodn.com:443:bshr.ezodn.com:443::n:1688987505:h3:y:1688891553:n::|n:y: +https:img.shields.io:443:.:^partitionKey=%28https%2Cquickref.me%29:3 0 19548 https:img.shields.io:443:img.shields.io:443::n:1689093582:h3:y:1689006792:n:^partitionKey=%28https%2Cquickref.me%29:|n:y: +https:fonts.gstatic.com:443:.:^partitionKey=%28https%2Candroid.com%29:3 0 19547 https:fonts.gstatic.com:443:fonts.gstatic.com:443::n:1691492821:h3:y:1688891553:n:^partitionKey=%28https%2Candroid.com%29:|n:y: +https:7de6b270443ed90181555e2c99d66cdc.safeframe.googlesyndication.com:443:.:^partitionKey=%28https%2Cstackexchange.com%29:3 0 19546 https:7de6b270443ed90181555e2c99d66cdc.safeframe.googlesyndication.com:443:7de6b270443ed90181555e2c99d66cdc.safeframe.googlesyndication.com:443::n:1691434504:h3:y:1688842468:n:^partitionKey=%28https%2Cstackexchange.com%29:|n:y: +https:api.btloader.com:443:.:^partitionKey=%28https%2Citsfoss.com%29:3 0 19547 https:api.btloader.com:443:api.btloader.com:443::n:1691468361:h3:y:1688874784:n:^partitionKey=%28https%2Citsfoss.com%29:|n:y: +https:htlb.casalemedia.com:443:.:^partitionKey=%28https%2Chowtogeek.com%29:3 0 19545 https:htlb.casalemedia.com:443:htlb.casalemedia.com:443::n:1688842560:h3:y:1688755069:n:^partitionKey=%28https%2Chowtogeek.com%29:|n:y: +https:stackpath.bootstrapcdn.com:443:.:^userContextId=5&partitionKey=%28https%2Cv.je%29:3 0 19548 https:stackpath.bootstrapcdn.com:443:stackpath.bootstrapcdn.com:443::n:1689103166:h3:y:1689015566:n:^userContextId=5&partitionKey=%28https%2Cv.je%29:|n:y: +https:www.gstatic.com:443:.:^partitionKey=%28https%2Calternativeto.net%29:3 0 19547 https:www.gstatic.com:443:www.gstatic.com:443::n:1691465164:h3:y:1688872861:n:^partitionKey=%28https%2Calternativeto.net%29:|n:y: +https:f2816475d1d41d1ef5dd5aa560c99459.safeframe.googlesyndication.com:443:.:^partitionKey=%28https%2Caskubuntu.com%29:3 0 19546 https:f2816475d1d41d1ef5dd5aa560c99459.safeframe.googlesyndication.com:443:f2816475d1d41d1ef5dd5aa560c99459.safeframe.googlesyndication.com:443::n:1691429498:h3:y:1688837494:n:^partitionKey=%28https%2Caskubuntu.com%29:|n:y: +https:jnn-pa.googleapis.com:443:.:^partitionKey=%28https%2Cgoogle.com%29:3 2 19547 https:jnn-pa.googleapis.com:443:jnn-pa.googleapis.com:443::n:1691468305:h3:y:1688749048:n:^partitionKey=%28https%2Cgoogle.com%29:|n:y: +https:www.google.com:443:.:^partitionKey=%28https%2Crazer.com%29:3 0 19546 https:www.google.com:443:www.google.com:443::n:1691423891:h3:y:1688831685:n:^partitionKey=%28https%2Crazer.com%29:|n:y: +https:api.btloader.com:443:.:^partitionKey=%28https%2Csystutorials.com%29:3 0 19545 https:api.btloader.com:443:api.btloader.com:443::n:1691360963:h3:y:1688768928:n:^partitionKey=%28https%2Csystutorials.com%29:|n:y: +https:www.gstatic.com:443:.:^partitionKey=%28https%2Cubuntu.com%29:3 1 19547 https:www.gstatic.com:443:www.gstatic.com:443::n:1691429635:h3:y:1688837494:n:^partitionKey=%28https%2Cubuntu.com%29:|n:y: +https:go.ezodn.com:443:.:^partitionKey=%28https%2Cappsloveworld.com%29:3 0 19546 https:go.ezodn.com:443:go.ezodn.com:443::n:1688928060:h3:y:1688837857:n:^partitionKey=%28https%2Cappsloveworld.com%29:|n:y: +https:plausible.cyberciti.biz:443:.:^partitionKey=%28https%2Ccyberciti.biz%29:3 0 19546 https:plausible.cyberciti.biz:443:plausible.cyberciti.biz:443::n:1688930659:h3:y:1688837857:n:^partitionKey=%28https%2Ccyberciti.biz%29:|n:y: +https:s2s.t13.io:443:.:^partitionKey=%28https%2Cbaeldung.com%29:3 0 19546 https:s2s.t13.io:443:s2s.t13.io:443::n:1691435963:h3:y:1688842468:n:^partitionKey=%28https%2Cbaeldung.com%29:|n:y: +https:www.youtube.com:443:.:^partitionKey=%28https%2Crazer.com%29:3 0 19546 https:www.youtube.com:443:www.youtube.com:443::n:1691423891:h3:y:1688831685:n:^partitionKey=%28https%2Crazer.com%29:|n:y: +https:fonts.gstatic.com:443:.:^partitionKey=%28https%2Cdigitalocean.com%29:3 0 19547 https:fonts.gstatic.com:443:fonts.gstatic.com:443::n:1691472872:h3:y:1688877328:n:^partitionKey=%28https%2Cdigitalocean.com%29:|n:y: +https:www.google.com:443:.:^userContextId=5&partitionKey=%28https%2Cspotify.com%29:3 0 19547 https:www.google.com:443:www.google.com:443::n:1691532280:h3:y:1688938778:n:^userContextId=5&partitionKey=%28https%2Cspotify.com%29:|n:y: +https:adpushup-d.openx.net:443:.:^partitionKey=%28https%2Ctutorialspoint.com%29:3 0 19547 https:adpushup-d.openx.net:443:adpushup-d.openx.net:443::n:1691462349:h3:y:1688868178:n:^partitionKey=%28https%2Ctutorialspoint.com%29:|n:y: +https:tpc.googlesyndication.com:443:.:^partitionKey=%28https%2Cmankier.com%29:3 1 19547 https:tpc.googlesyndication.com:443:tpc.googlesyndication.com:443::n:1691459165:h3:y:1688837857:n:^partitionKey=%28https%2Cmankier.com%29:|n:y: +https:googleads4.g.doubleclick.net:443:.:^partitionKey=%28https%2Cstackoverflow.com%29:3 1 19547 https:googleads4.g.doubleclick.net:443:googleads4.g.doubleclick.net:443::n:1691462326:h3:y:1688842468:n:^partitionKey=%28https%2Cstackoverflow.com%29:|n:y: +https:fonts.googleapis.com:443:.:^partitionKey=%28https%2Cdocker.com%29:3 0 19547 https:fonts.googleapis.com:443:fonts.googleapis.com:443::n:1691483223:h3:y:1688891119:n:^partitionKey=%28https%2Cdocker.com%29:|n:y: +https:pagead2.googlesyndication.com:443:.:^partitionKey=%28https%2Ctecadmin.net%29:3 0 19546 https:pagead2.googlesyndication.com:443:pagead2.googlesyndication.com:443::n:1691432982:h3:y:1688837857:n:^partitionKey=%28https%2Ctecadmin.net%29:|n:y: +https:jnn-pa.googleapis.com:443:.:^partitionKey=%28https%2Crazer.com%29:3 0 19546 https:jnn-pa.googleapis.com:443:jnn-pa.googleapis.com:443::n:1691423891:h3:y:1688831685:n:^partitionKey=%28https%2Crazer.com%29:|n:y: +https:encrypted-tbn0.gstatic.com:443:.:^partitionKey=%28https%2Cgoogle.com%29:3 2 19547 https:encrypted-tbn0.gstatic.com:443:encrypted-tbn0.gstatic.com:443::n:1691468303:h3:y:1688749048:n:^partitionKey=%28https%2Cgoogle.com%29:|n:y: +https:mts0.google.com:443:.:^partitionKey=%28https%2Calternativeto.net%29:3 0 19547 https:mts0.google.com:443:mts0.google.com:443::n:1691465165:h3:y:1688872861:n:^partitionKey=%28https%2Calternativeto.net%29:|n:y: +https:fonts.googleapis.com:443:.:^partitionKey=%28https%2Cbaeldung.com%29:3 0 19546 https:fonts.googleapis.com:443:fonts.googleapis.com:443::n:1691435957:h3:y:1688842468:n:^partitionKey=%28https%2Cbaeldung.com%29:|n:y: +https:d.pub.network:443:.:^partitionKey=%28https%2Citsfoss.com%29:3 0 19547 https:d.pub.network:443:d.pub.network:443::n:1691468351:h3:y:1688874784:n:^partitionKey=%28https%2Citsfoss.com%29:|n:y: +https:adservice.google.co.uk:443:.:^partitionKey=%28https%2Cgoogle.com%29:3 2 19547 https:adservice.google.co.uk:443:googleads.g.doubleclick.net:443::n:1691468303:h3:y:1688749048:n:^partitionKey=%28https%2Cgoogle.com%29:|n:y: +https:cm.g.doubleclick.net:443:.:^partitionKey=%28https%2Cappsloveworld.com%29:3 0 19546 https:cm.g.doubleclick.net:443:cm.g.doubleclick.net:443::n:1691433724:h3:y:1688837857:n:^partitionKey=%28https%2Cappsloveworld.com%29:|n:y: +https:fonts.googleapis.com:443:.:^partitionKey=%28https%2Ctutorialspoint.com%29:3 0 19547 https:fonts.googleapis.com:443:fonts.googleapis.com:443::n:1691462350:h3:y:1688868178:n:^partitionKey=%28https%2Ctutorialspoint.com%29:|n:y: +https:imasdk.googleapis.com:443:.:^partitionKey=%28https%2Cshellscript.sh%29:3 0 19546 https:imasdk.googleapis.com:443:imasdk.googleapis.com:443::n:1691435732:h3:y:1688842468:n:^partitionKey=%28https%2Cshellscript.sh%29:|n:y: +https:the.gatekeeperconsent.com:443:.:^partitionKey=%28https%2Cappsloveworld.com%29:3 0 19546 https:the.gatekeeperconsent.com:443:the.gatekeeperconsent.com:443::n:1688927841:h3:y:1688837857:n:^partitionKey=%28https%2Cappsloveworld.com%29:|n:y: +https:ade.googlesyndication.com:443:.:^partitionKey=%28https%2Ctutorialspoint.com%29:3 0 19547 https:ade.googlesyndication.com:443:ade.googlesyndication.com:443::n:1691462356:h3:y:1688868178:n:^partitionKey=%28https%2Ctutorialspoint.com%29:|n:y: +https:cdn.rawgit.com:443:.:^partitionKey=%28https%2Ctutorialspoint.com%29:3 0 19547 https:cdn.rawgit.com:443:cdn.rawgit.com:443::n:1688870378:h3:n:1688868178:n:^partitionKey=%28https%2Ctutorialspoint.com%29:|n:y: +https:assets.vlitag.com:443:.:^partitionKey=%28https%2Ctecadmin.net%29:3 0 19546 https:assets.vlitag.com:443:assets.vlitag.com:443::n:1688926964:h3:y:1688837857:n:^partitionKey=%28https%2Ctecadmin.net%29:|n:y: +https:googleads.g.doubleclick.net:443:.:^partitionKey=%28https%2Cshellscript.sh%29:3 0 19546 https:googleads.g.doubleclick.net:443:googleads.g.doubleclick.net:443::n:1691435796:h3:y:1688842468:n:^partitionKey=%28https%2Cshellscript.sh%29:|n:y: +https:www.docker.com:443:.::3 0 19547 https:www.docker.com:443:www.docker.com:443::n:1688977623:h3:y:1688891119:n::|n:y: +https:freestar-d.openx.net:443:.:^partitionKey=%28https%2Citsfoss.com%29:3 0 19547 https:freestar-d.openx.net:443:freestar-d.openx.net:443::n:1691468363:h3:y:1688874784:n:^partitionKey=%28https%2Citsfoss.com%29:|n:y: +https:www.googletagmanager.com:443:.:^partitionKey=%28https%2Calternativeto.net%29:3 0 19547 https:www.googletagmanager.com:443:www.googletagmanager.com:443::n:1691465163:h3:y:1688872861:n:^partitionKey=%28https%2Calternativeto.net%29:|n:y: +https:lutris.net:443:.::3 0 19547 https:lutris.net:443:lutris.net:443::n:1688967111:h3:y:1688877328:n::|n:y: +https:www.google.com:443:.:^partitionKey=%28https%2C101computing.net%29:3 0 19548 https:www.google.com:443:www.google.com:443::n:1691610148:h3:y:1689018121:n:^partitionKey=%28https%2C101computing.net%29:|n:y: +https:spotifyd.rs:443:.:^partitionKey=%28https%2Cspotifyd.rs%29:3 0 19547 https:spotifyd.rs:443:spotifyd.rs:443::n:1689025879:h3:y:1688938778:n:^partitionKey=%28https%2Cspotifyd.rs%29:|n:y: +https:learn-eu-central-1-prod-fleet01-xythos.content.blackboardcdn.com:443:.:^partitionKey=%28https%2Cnorthampton.ac.uk%29:3 0 19548 https:learn-eu-central-1-prod-fleet01-xythos.content.blackboardcdn.com:443:learn-eu-central-1-prod-fleet01-xythos.content.blackboardcdn.com:443::n:1689102259:h3:y:1689015566:n:^partitionKey=%28https%2Cnorthampton.ac.uk%29:|n:y: +https:www.googletagservices.com:443:.:^partitionKey=%28https%2Ctecadmin.net%29:3 0 19546 https:www.googletagservices.com:443:www.googletagservices.com:443::n:1691432595:h3:y:1688837857:n:^partitionKey=%28https%2Ctecadmin.net%29:|n:y: +https:www.google-analytics.com:443:.:^userContextId=5&partitionKey=%28https%2Cgnome-look.org%29:3 0 19545 https:www.google-analytics.com:443:www.google-analytics.com:443::n:1691363378:h3:y:1688771077:n:^userContextId=5&partitionKey=%28https%2Cgnome-look.org%29:|n:y: +https:add0n.com:443:.:^partitionKey=%28https%2Cadd0n.com%29:3 0 19547 https:add0n.com:443:add0n.com:443::n:1688962924:h3:y:1688874784:n:^partitionKey=%28https%2Cadd0n.com%29:|n:y: +https:6093eccf-6734-4877-ac8b-83d6d0e27b46.prmutv.co:443:.:^partitionKey=%28https%2Chowtogeek.com%29:3 0 19545 https:6093eccf-6734-4877-ac8b-83d6d0e27b46.prmutv.co:443:6093eccf-6734-4877-ac8b-83d6d0e27b46.prmutv.co:443::n:1691348157:h3:y:1688755069:n:^partitionKey=%28https%2Chowtogeek.com%29:|n:y: +https:img.3lift.com:443:.:^partitionKey=%28https%2Ctutorialspoint.com%29:3 0 19547 https:img.3lift.com:443:img.3lift.com:443::n:1688956750:h3:y:1688868178:n:^partitionKey=%28https%2Ctutorialspoint.com%29:|n:y: +https:fonts.gstatic.com:443:.:^partitionKey=%28https%2Ccopyandpastesymbols.net%29:3 0 19547 https:fonts.gstatic.com:443:fonts.gstatic.com:443::n:1691471368:h3:y:1688877328:n:^partitionKey=%28https%2Ccopyandpastesymbols.net%29:|n:y: +https:use.fontawesome.com:443:.:^partitionKey=%28https%2Cparsec.app%29:3 0 19547 https:use.fontawesome.com:443:use.fontawesome.com:443::n:1688960524:h3:y:1688873798:n:^partitionKey=%28https%2Cparsec.app%29:|n:y: +https:www.google.com:443:.:^partitionKey=%28https%2Cnvidia.com%29:3 0 19545 https:www.google.com:443:www.google.com:443::n:1691345049:h3:y:1688752771:n:^partitionKey=%28https%2Cnvidia.com%29:|n:y: +https:lh3.googleusercontent.com:443:.:^partitionKey=%28https%2Caskubuntu.com%29:3 1 19549 https:lh3.googleusercontent.com:443:lh3.googleusercontent.com:443::n:1691634688:h3:y:1688903979:n:^partitionKey=%28https%2Caskubuntu.com%29:|n:y: +https:lh5.googleusercontent.com:443:.:^partitionKey=%28https%2Cstackoverflow.com%29:3 0 19549 https:lh5.googleusercontent.com:443:lh5.googleusercontent.com:443::n:1691630581:h3:y:1689038382:n:^partitionKey=%28https%2Cstackoverflow.com%29:|n:y: +https:www.google.com:443:.:^partitionKey=%28https%2Cspotify.com%29:3 0 19547 https:www.google.com:443:www.google.com:443::n:1691513773:h3:y:1688920622:n:^partitionKey=%28https%2Cspotify.com%29:|n:y: +https:ab16affb2f371132248bcd40784d1861.safeframe.googlesyndication.com:443:.:^partitionKey=%28https%2Cstackexchange.com%29:3 0 19545 https:ab16affb2f371132248bcd40784d1861.safeframe.googlesyndication.com:443:ab16affb2f371132248bcd40784d1861.safeframe.googlesyndication.com:443::n:1691364417:h3:y:1688772412:n:^partitionKey=%28https%2Cstackexchange.com%29:|n:y: +https:oajs.openx.net:443:.:^partitionKey=%28https%2Citsfoss.com%29:3 0 19547 https:oajs.openx.net:443:oajs.openx.net:443::n:1691468364:h3:y:1688874784:n:^partitionKey=%28https%2Citsfoss.com%29:|n:y: +https:adservice.google.com:443:.:^partitionKey=%28https%2Citsfoss.com%29:3 0 19547 https:adservice.google.com:443:adservice.google.com:443::n:1691468383:h3:y:1688874784:n:^partitionKey=%28https%2Citsfoss.com%29:|n:y: +https:js.stripe.com:443:.:^partitionKey=%28https%2Ckinsta.com%29:3 0 19547 https:js.stripe.com:443:js.stripe.com:443::n:1688962754:h3:y:1688874784:n:^partitionKey=%28https%2Ckinsta.com%29:|n:y: +https:ezodn.com:443:.:^partitionKey=%28https%2Csystutorials.com%29:3 0 19545 https:ezodn.com:443:ezodn.com:443::n:1688855357:h3:y:1688768928:n:^partitionKey=%28https%2Csystutorials.com%29:|n:y: +https:partner.googleadservices.com:443:.:^partitionKey=%28https%2Ctecadmin.net%29:3 0 19546 https:partner.googleadservices.com:443:partner.googleadservices.com:443::n:1691432562:h3:y:1688837857:n:^partitionKey=%28https%2Ctecadmin.net%29:|n:y: +https:r4---sn-aigl6nsk.c.2mdn.net:443:.:^partitionKey=%28https%2Cshellscript.sh%29:3 0 19546 https:r4---sn-aigl6nsk.c.2mdn.net:443:r4---sn-aigl6nsk.c.2mdn.net:443::n:1691435748:h3:y:1688842468:n:^partitionKey=%28https%2Cshellscript.sh%29:|n:y: +https:www.googletagservices.com:443:.:^partitionKey=%28https%2Crapidtables.com%29:3 0 19545 https:www.googletagservices.com:443:www.googletagservices.com:443::n:1691348715:h3:y:1688755069:n:^partitionKey=%28https%2Crapidtables.com%29:|n:y: +https:s0.2mdn.net:443:.:^partitionKey=%28https%2Cbaeldung.com%29:3 0 19546 https:s0.2mdn.net:443:s0.2mdn.net:443::n:1691435960:h3:y:1688842468:n:^partitionKey=%28https%2Cbaeldung.com%29:|n:y: +https:csi.gstatic.com:443:.:^partitionKey=%28https%2Cappsloveworld.com%29:3 0 19546 https:csi.gstatic.com:443:csi.gstatic.com:443::n:1691433731:h3:y:1688837857:n:^partitionKey=%28https%2Cappsloveworld.com%29:|n:y: +https:go.ezodn.com:443:.:^partitionKey=%28https%2Cshellscript.sh%29:3 0 19546 https:go.ezodn.com:443:go.ezodn.com:443::n:1688930198:h3:y:1688842468:n:^partitionKey=%28https%2Cshellscript.sh%29:|n:y: +https:googleads4.g.doubleclick.net:443:.:^partitionKey=%28https%2Citsfoss.com%29:3 0 19547 https:googleads4.g.doubleclick.net:443:googleads4.g.doubleclick.net:443::n:1691468367:h3:y:1688874784:n:^partitionKey=%28https%2Citsfoss.com%29:|n:y: +https:api.floors.dev:443:.:^partitionKey=%28https%2Cbaeldung.com%29:3 0 19546 https:api.floors.dev:443:api.floors.dev:443::n:1691435958:h3:y:1688842468:n:^partitionKey=%28https%2Cbaeldung.com%29:|n:y: +https:adservice.google.co.uk:443:.:^partitionKey=%28https%2Clastpass.com%29:3 0 19545 https:adservice.google.co.uk:443:googleads.g.doubleclick.net:443::n:1691364583:h3:y:1688772412:n:^partitionKey=%28https%2Clastpass.com%29:|n:y: +https:cdn.confiant-integrations.net:443:.:^partitionKey=%28https%2Cbaeldung.com%29:3 0 19546 https:cdn.confiant-integrations.net:443:cdn.confiant-integrations.net:443::n:1688930359:h3:y:1688842468:n:^partitionKey=%28https%2Cbaeldung.com%29:|n:y: +https:opencollective.com:443:.:^partitionKey=%28https%2Cwaydro.id%29:3 0 19547 https:opencollective.com:443:opencollective.com:443::n:1688987344:h3:y:1688891553:n:^partitionKey=%28https%2Cwaydro.id%29:|n:y: +https:s0.2mdn.net:443:.:^partitionKey=%28https%2Cstackexchange.com%29:3 0 19545 https:s0.2mdn.net:443:s0.2mdn.net:443::n:1691364417:h3:y:1688772412:n:^partitionKey=%28https%2Cstackexchange.com%29:|n:y: +https:s.company-target.com:443:.:^partitionKey=%28https%2Ctecadmin.net%29:3 0 19546 https:s.company-target.com:443:s.company-target.com:443::n:1691432570:h3:y:1688837857:n:^partitionKey=%28https%2Ctecadmin.net%29:|n:y: +https:firestore.googleapis.com:443:.:^partitionKey=%28https%2Cwaydro.id%29:3 0 19547 https:firestore.googleapis.com:443:firestore.googleapis.com:443::n:1691496119:h3:y:1688902960:n:^partitionKey=%28https%2Cwaydro.id%29:|n:y: +https:ad.doubleclick.net:443:.:^partitionKey=%28https%2Citsfoss.com%29:3 0 19547 https:ad.doubleclick.net:443:ad.doubleclick.net:443::n:1691468361:h3:y:1688874784:n:^partitionKey=%28https%2Citsfoss.com%29:|n:y: +https:615a95853a4af8e62db90eed5999aac0.safeframe.googlesyndication.com:443:.:^partitionKey=%28https%2Cstackexchange.com%29:3 0 19546 https:615a95853a4af8e62db90eed5999aac0.safeframe.googlesyndication.com:443:615a95853a4af8e62db90eed5999aac0.safeframe.googlesyndication.com:443::n:1691435051:h3:y:1688842468:n:^partitionKey=%28https%2Cstackexchange.com%29:|n:y: +https:f3a965e662e62df37d507b308eec03cf.safeframe.googlesyndication.com:443:.:^partitionKey=%28https%2Cstackoverflow.com%29:3 0 19547 https:f3a965e662e62df37d507b308eec03cf.safeframe.googlesyndication.com:443:f3a965e662e62df37d507b308eec03cf.safeframe.googlesyndication.com:443::n:1691462083:h3:y:1688868178:n:^partitionKey=%28https%2Cstackoverflow.com%29:|n:y: +https:googleads.g.doubleclick.net:443:.:^partitionKey=%28https%2Clastpass.com%29:3 0 19545 https:googleads.g.doubleclick.net:443:googleads.g.doubleclick.net:443::n:1691364582:h3:y:1688752771:n:^partitionKey=%28https%2Clastpass.com%29:|n:y: +https:fonts.gstatic.com:443:.:^partitionKey=%28https%2Ctecadmin.net%29:3 0 19546 https:fonts.gstatic.com:443:fonts.gstatic.com:443::n:1691432563:h3:y:1688837857:n:^partitionKey=%28https%2Ctecadmin.net%29:|n:y: +https:pinetools.com:443:.:^partitionKey=%28https%2Cpinetools.com%29:3 1 19549 https:pinetools.com:443:pinetools.com:443::n:1689118774:h3:y:1689031473:n:^partitionKey=%28https%2Cpinetools.com%29:|n:y: +https:lh6.googleusercontent.com:443:.:^partitionKey=%28https%2Cstackoverflow.com%29:3 1 19547 https:lh6.googleusercontent.com:443:lh6.googleusercontent.com:443::n:1691518231:h3:y:1688842468:n:^partitionKey=%28https%2Cstackoverflow.com%29:|n:y: +https:ssl.gstatic.com:443:.:^partitionKey=%28https%2Cgoogle.com%29:3 1 19547 https:ssl.gstatic.com:443:ssl.gstatic.com:443::n:1691468312:h3:y:1688773160:n:^partitionKey=%28https%2Cgoogle.com%29:|n:y: +https:2fd3572c42791942bae3435cfdb32c91.safeframe.googlesyndication.com:443:.:^partitionKey=%28https%2Cappsloveworld.com%29:3 0 19546 https:2fd3572c42791942bae3435cfdb32c91.safeframe.googlesyndication.com:443:2fd3572c42791942bae3435cfdb32c91.safeframe.googlesyndication.com:443::n:1691433662:h3:y:1688837857:n:^partitionKey=%28https%2Cappsloveworld.com%29:|n:y: +https:www.googletagmanager.com:443:.:^partitionKey=%28https%2Chowtogeek.com%29:3 2 19548 https:www.googletagmanager.com:443:www.googletagmanager.com:443::n:1691348155:h3:y:1688755069:n:^partitionKey=%28https%2Chowtogeek.com%29:|n:y: +https:cdn.jsdelivr.net:443:.:^partitionKey=%28https%2Chowtogeek.com%29:3 0 19545 https:cdn.jsdelivr.net:443:cdn.jsdelivr.net:443::n:1688842561:h3:y:1688755069:n:^partitionKey=%28https%2Chowtogeek.com%29:|n:y: +https:googleads.g.doubleclick.net:443:.:^partitionKey=%28https%2Cbaeldung.com%29:3 0 19546 https:googleads.g.doubleclick.net:443:googleads.g.doubleclick.net:443::n:1691435991:h3:y:1688842468:n:^partitionKey=%28https%2Cbaeldung.com%29:|n:y: +https:www.google.co.uk:443:.:^partitionKey=%28https%2Ckinsta.com%29:3 0 19547 https:www.google.co.uk:443:www.google.co.uk:443::n:1691468436:h3:y:1688874784:n:^partitionKey=%28https%2Ckinsta.com%29:|n:y: +https:www.googletagmanager.com:443:.:^partitionKey=%28https%2Cnvidia.com%29:3 0 19545 https:www.googletagmanager.com:443:www.googletagmanager.com:443::n:1691344880:h3:y:1688752771:n:^partitionKey=%28https%2Cnvidia.com%29:|n:y: +https:www.cloudflare.com:443:.:^partitionKey=%28https%2Ccloudflare.com%29:3 0 19547 https:www.cloudflare.com:443:www.cloudflare.com:443::n:1688967252:h3:y:1688877328:n:^partitionKey=%28https%2Ccloudflare.com%29:|n:y: +https:rtb.openx.net:443:.:^partitionKey=%28https%2Ctutorialspoint.com%29:3 0 19547 https:rtb.openx.net:443:rtb.openx.net:443::n:1691462355:h3:y:1688868178:n:^partitionKey=%28https%2Ctutorialspoint.com%29:|n:y: +https:www.gstatic.com:443:.:^partitionKey=%28https%2Cdocker.com%29:3 0 19547 https:www.gstatic.com:443:www.gstatic.com:443::n:1691483224:h3:y:1688891119:n:^partitionKey=%28https%2Cdocker.com%29:|n:y: +https:cdn.icon-icons.com:443:.:^partitionKey=%28https%2Cicon-icons.com%29:3 0 19548 https:cdn.icon-icons.com:443:cdn.icon-icons.com:443::n:1689031594:h3:n:1689031473:n:^partitionKey=%28https%2Cicon-icons.com%29:|n:y: +https:htlb.casalemedia.com:443:.:^partitionKey=%28https%2Ctutorialspoint.com%29:3 0 19547 https:htlb.casalemedia.com:443:htlb.casalemedia.com:443::n:1688956749:h3:y:1688868178:n:^partitionKey=%28https%2Ctutorialspoint.com%29:|n:y: +https:www.google.com:443:.:^partitionKey=%28https%2Csystutorials.com%29:3 0 19545 https:www.google.com:443:www.google.com:443::n:1691360961:h3:y:1688768928:n:^partitionKey=%28https%2Csystutorials.com%29:|n:y: +https:fonts.gstatic.com:443:.:^partitionKey=%28https%2Cwaydro.id%29:3 0 19547 https:fonts.gstatic.com:443:fonts.gstatic.com:443::n:1691492944:h3:y:1688891553:n:^partitionKey=%28https%2Cwaydro.id%29:|n:y: +https:tpc.googlesyndication.com:443:.:^partitionKey=%28https%2Calternativeto.net%29:3 0 19547 https:tpc.googlesyndication.com:443:tpc.googlesyndication.com:443::n:1691465165:h3:y:1688872861:n:^partitionKey=%28https%2Calternativeto.net%29:|n:y: +https:id.a-mx.com:443:.:^partitionKey=%28https%2Ctecadmin.net%29:3 0 19546 https:id.a-mx.com:443:id.a-mx.com:443::n:1688926969:h3:y:1688837857:n:^partitionKey=%28https%2Ctecadmin.net%29:|n:y: +https:ws.zoominfo.com:443:.:^partitionKey=%28https%2Cnvidia.co.uk%29:3 0 19545 https:ws.zoominfo.com:443:ws.zoominfo.com:443::n:1688839471:h3:y:1688752771:n:^partitionKey=%28https%2Cnvidia.co.uk%29:|n:y: +https:www.baeldung.com:443:.:^partitionKey=%28https%2Cbaeldung.com%29:3 0 19546 https:www.baeldung.com:443:www.baeldung.com:443::n:1688930353:h3:y:1688842468:n:^partitionKey=%28https%2Cbaeldung.com%29:|n:y: +https:ff12181c3d98d9da50b5a1819e06a51d.safeframe.googlesyndication.com:443:.:^partitionKey=%28https%2Csystutorials.com%29:3 0 19545 https:ff12181c3d98d9da50b5a1819e06a51d.safeframe.googlesyndication.com:443:ff12181c3d98d9da50b5a1819e06a51d.safeframe.googlesyndication.com:443::n:1691360963:h3:y:1688768928:n:^partitionKey=%28https%2Csystutorials.com%29:|n:y: +https:adservice.google.co.uk:443:.:^partitionKey=%28https%2Cshellscript.sh%29:3 0 19546 https:adservice.google.co.uk:443:googleads.g.doubleclick.net:443::n:1691435741:h3:y:1688842468:n:^partitionKey=%28https%2Cshellscript.sh%29:|n:y: +https:region1.google-analytics.com:443:.:^partitionKey=%28https%2Cgnome-look.org%29:3 0 19545 https:region1.google-analytics.com:443:region1.google-analytics.com:443::n:1691364416:h3:y:1688771077:n:^partitionKey=%28https%2Cgnome-look.org%29:|n:y: +https:www.google-analytics.com:443:.:^partitionKey=%28https%2Ckde.org%29:3 0 19545 https:www.google-analytics.com:443:www.google-analytics.com:443::n:1691358546:h3:y:1688766525:n:^partitionKey=%28https%2Ckde.org%29:|n:y: +https:fonts.googleapis.com:443:.:^partitionKey=%28https%2Crapidtables.com%29:3 0 19545 https:fonts.googleapis.com:443:fonts.googleapis.com:443::n:1691348715:h3:y:1688755069:n:^partitionKey=%28https%2Crapidtables.com%29:|n:y: +https:fonts.gstatic.com:443:.:^partitionKey=%28https%2Cshellscript.sh%29:3 0 19546 https:fonts.gstatic.com:443:fonts.gstatic.com:443::n:1691435761:h3:y:1688842468:n:^partitionKey=%28https%2Cshellscript.sh%29:|n:y: +https:www.wikihow.com:443:.::3 0 19547 https:www.wikihow.com:443:www.wikihow.com:443::n:1688963653:h3:y:1688877031:n::|n:y: +https:id.rlcdn.com:443:.:^partitionKey=%28https%2Ctecadmin.net%29:3 0 19546 https:id.rlcdn.com:443:id.rlcdn.com:443::n:1691432596:h3:y:1688837857:n:^partitionKey=%28https%2Ctecadmin.net%29:|n:y: +https:a.tribalfusion.com:443:.:^partitionKey=%28https%2Chowtogeek.com%29:3 0 19545 https:a.tribalfusion.com:443:a.tribalfusion.com:443::n:1688842565:h3:y:1688755069:n:^partitionKey=%28https%2Chowtogeek.com%29:|n:y: +https:www.google-analytics.com:443:.:^partitionKey=%28https%2Cstackoverflow.com%29:3 3 19549 https:www.google-analytics.com:443:www.google-analytics.com:443::n:1691462083:h3:y:1688842468:n:^partitionKey=%28https%2Cstackoverflow.com%29:|n:y: +https:media.vlitag.com:443:.:^partitionKey=%28https%2Ctecadmin.net%29:3 0 19546 https:media.vlitag.com:443:media.vlitag.com:443::n:1688926964:h3:y:1688837857:n:^partitionKey=%28https%2Ctecadmin.net%29:|n:y: +https:www.googleadservices.com:443:.:^partitionKey=%28https%2Cbaeldung.com%29:3 0 19546 https:www.googleadservices.com:443:www.googleadservices.com:443::n:1691435991:h3:y:1688842468:n:^partitionKey=%28https%2Cbaeldung.com%29:|n:y: +https:apresolve.spotify.com:443:.:^userContextId=5&partitionKey=%28https%2Cspotify.com%29:3 0 19547 https:apresolve.spotify.com:443:apresolve.spotify.com:443::n:1691532279:h3:y:1688938778:n:^userContextId=5&partitionKey=%28https%2Cspotify.com%29:|n:y: +https:esp.rtbhouse.com:443:.:^partitionKey=%28https%2Csystutorials.com%29:3 0 19545 https:esp.rtbhouse.com:443:esp.rtbhouse.com:443::n:1691360961:h3:y:1688768928:n:^partitionKey=%28https%2Csystutorials.com%29:|n:y: +https:ad.doubleclick.net:443:.::3 0 19548 https:ad.doubleclick.net:443:ad.doubleclick.net:443::n:1691623513:h3:y:1689031473:n::|n:y: +https:www.google.com:443:.:^partitionKey=%28https%2Cshellscript.sh%29:3 0 19546 https:www.google.com:443:www.google.com:443::n:1691435762:h3:y:1688842468:n:^partitionKey=%28https%2Cshellscript.sh%29:|n:y: +https:ad.doubleclick.net:443:.:^partitionKey=%28https%2Ctecadmin.net%29:3 0 19546 https:ad.doubleclick.net:443:ad.doubleclick.net:443::n:1691432623:h3:y:1688837857:n:^partitionKey=%28https%2Ctecadmin.net%29:|n:y: +https:t.mookie1.com:443:.:^partitionKey=%28https%2Ctecadmin.net%29:3 0 19546 https:t.mookie1.com:443:t.mookie1.com:443::n:1691432623:h3:y:1688837857:n:^partitionKey=%28https%2Ctecadmin.net%29:|n:y: +https:28a3c8d5842d22e620cab9eb74930255.safeframe.googlesyndication.com:443:.:^partitionKey=%28https%2Cstackoverflow.com%29:3 0 19547 https:28a3c8d5842d22e620cab9eb74930255.safeframe.googlesyndication.com:443:28a3c8d5842d22e620cab9eb74930255.safeframe.googlesyndication.com:443::n:1691462324:h3:y:1688868178:n:^partitionKey=%28https%2Cstackoverflow.com%29:|n:y: +https:www.googletagservices.com:443:.:^partitionKey=%28https%2Cstackoverflow.com%29:3 1 19547 https:www.googletagservices.com:443:www.googletagservices.com:443::n:1691462084:h3:y:1688837857:n:^partitionKey=%28https%2Cstackoverflow.com%29:|n:y: +https:u.openx.net:443:.:^partitionKey=%28https%2Citsfoss.com%29:3 0 19547 https:u.openx.net:443:u.openx.net:443::n:1691468363:h3:y:1688874784:n:^partitionKey=%28https%2Citsfoss.com%29:|n:y: +https:www.google.com:443:.:^partitionKey=%28https%2Cxda-developers.com%29:3 0 19547 https:www.google.com:443:www.google.com:443::n:1691471840:h3:y:1688877328:n:^partitionKey=%28https%2Cxda-developers.com%29:|n:y: +https:static.doubleclick.net:443:.:^partitionKey=%28https%2Cgoogle.com%29:3 2 19547 https:static.doubleclick.net:443:static.doubleclick.net:443::n:1691468271:h3:y:1688749048:n:^partitionKey=%28https%2Cgoogle.com%29:|n:y: +https:www.google.com:443:.:^partitionKey=%28https%2Cmankier.com%29:3 1 19547 https:www.google.com:443:www.google.com:443::n:1691459151:h3:y:1688837857:n:^partitionKey=%28https%2Cmankier.com%29:|n:y: +https:securepubads.g.doubleclick.net:443:.:^partitionKey=%28https%2Chowtogeek.com%29:3 2 19548 https:securepubads.g.doubleclick.net:443:securepubads.g.doubleclick.net:443::n:1691348164:h3:y:1688755069:n:^partitionKey=%28https%2Chowtogeek.com%29:|n:y: +https:translate.googleapis.com:443:.:^partitionKey=%28https%2C101computing.net%29:3 0 19548 https:translate.googleapis.com:443:translate.googleapis.com:443::n:1691610147:h3:y:1689018121:n:^partitionKey=%28https%2C101computing.net%29:|n:y: +https:us-u.openx.net:443:.:^partitionKey=%28https%2Chowtogeek.com%29:3 0 19545 https:us-u.openx.net:443:us-u.openx.net:443::n:1691348160:h3:y:1688755069:n:^partitionKey=%28https%2Chowtogeek.com%29:|n:y: +https:fonts.googleapis.com:443:.:^partitionKey=%28https%2Cshellscript.sh%29:3 0 19546 https:fonts.googleapis.com:443:fonts.googleapis.com:443::n:1691435761:h3:y:1688842468:n:^partitionKey=%28https%2Cshellscript.sh%29:|n:y: +https:fonts.googleapis.com:443:.:^partitionKey=%28https%2Csmarttech101.com%29:3 0 19546 https:fonts.googleapis.com:443:fonts.googleapis.com:443::n:1691431937:h3:y:1688837857:n:^partitionKey=%28https%2Csmarttech101.com%29:|n:y: +https:docs.waydro.id:443:.:^partitionKey=%28https%2Cwaydro.id%29:3 0 19547 https:docs.waydro.id:443:docs.waydro.id:443::n:1688990452:h3:y:1688902960:n:^partitionKey=%28https%2Cwaydro.id%29:|n:y: +https:www.google.com:443:.:^firstPartyDomain=google-b-d.search.suggestions.mozilla:3 2 19547 https:www.google.com:443:www.google.com:443::n:1691468301:h3:y:1688749048:n:^firstPartyDomain=google-b-d.search.suggestions.mozilla:|n:y: +https:fonts.googleapis.com:443:.:^partitionKey=%28https%2Crazer.com%29:3 0 19546 https:fonts.googleapis.com:443:fonts.googleapis.com:443::n:1691423890:h3:y:1688831685:n:^partitionKey=%28https%2Crazer.com%29:|n:y: +https:encrypted-tbn2.gstatic.com:443:.:^partitionKey=%28https%2Calternativeto.net%29:3 0 19547 https:encrypted-tbn2.gstatic.com:443:encrypted-tbn2.gstatic.com:443::n:1691465165:h3:y:1688872861:n:^partitionKey=%28https%2Calternativeto.net%29:|n:y: +https:cdn.ampproject.org:443:.:^partitionKey=%28https%2Citsfoss.com%29:3 0 19547 https:cdn.ampproject.org:443:cdn.ampproject.org:443::n:1691468365:h3:y:1688874784:n:^partitionKey=%28https%2Citsfoss.com%29:|n:y: +https:region1.analytics.google.com:443:.:^partitionKey=%28https%2Cstackoverflow.com%29:3 1 19547 https:region1.analytics.google.com:443:region1.analytics.google.com:443::n:1691462329:h3:y:1688842468:n:^partitionKey=%28https%2Cstackoverflow.com%29:|n:y: +https:tpc.googlesyndication.com:443:.:^partitionKey=%28https%2Csystutorials.com%29:3 0 19545 https:tpc.googlesyndication.com:443:tpc.googlesyndication.com:443::n:1691360965:h3:y:1688768928:n:^partitionKey=%28https%2Csystutorials.com%29:|n:y: +https:api.rlcdn.com:443:.:^partitionKey=%28https%2Crapidtables.com%29:3 0 19545 https:api.rlcdn.com:443:api.rlcdn.com:443::n:1691348717:h3:y:1688755069:n:^partitionKey=%28https%2Crapidtables.com%29:|n:y: +https:cm.g.doubleclick.net:443:.:^partitionKey=%28https%2Ctecadmin.net%29:3 0 19546 https:cm.g.doubleclick.net:443:cm.g.doubleclick.net:443::n:1691432570:h3:y:1688837857:n:^partitionKey=%28https%2Ctecadmin.net%29:|n:y: +https:discord.com:443:.:^partitionKey=%28https%2Cdiscord.com%29:3 0 19548 https:discord.com:443:discord.com:443::n:1689101046:h3:y:1689013223:n:^partitionKey=%28https%2Cdiscord.com%29:|n:y: +https:itsfoss.com:443:.:^partitionKey=%28https%2Citsfoss.com%29:3 0 19547 https:itsfoss.com:443:itsfoss.com:443::n:1689030000:h3:y:1688874784:n:^partitionKey=%28https%2Citsfoss.com%29:|n:y: +https:cdn.discordapp.com:443:.:^partitionKey=%28https%2Cdiscord.com%29:3 0 19548 https:cdn.discordapp.com:443:cdn.discordapp.com:443::n:1689100876:h3:y:1689014089:n:^partitionKey=%28https%2Cdiscord.com%29:|n:y: +https:app.shop.pe:443:.:^partitionKey=%28https%2Ctutorialspoint.com%29:3 0 19547 https:app.shop.pe:443:app.shop.pe:443::n:1691462348:h3:y:1688868178:n:^partitionKey=%28https%2Ctutorialspoint.com%29:|n:y: +https:www.googletagmanager.com:443:.:^partitionKey=%28https%2Cawesomeopensource.com%29:3 0 19547 https:www.googletagmanager.com:443:www.googletagmanager.com:443::n:1691464604:h3:y:1688872585:n:^partitionKey=%28https%2Cawesomeopensource.com%29:|n:y: +https:cd.connatix.com:443:.:^partitionKey=%28https%2Cappsloveworld.com%29:3 0 19546 https:cd.connatix.com:443:cd.connatix.com:443::n:1688928116:h3:y:1688837857:n:^partitionKey=%28https%2Cappsloveworld.com%29:|n:y: +https:fonts.googleapis.com:443:.:^partitionKey=%28https%2Ctecadmin.net%29:3 0 19546 https:fonts.googleapis.com:443:fonts.googleapis.com:443::n:1691432564:h3:y:1688837857:n:^partitionKey=%28https%2Ctecadmin.net%29:|n:y: +https:privacy.gatekeeperconsent.com:443:.:^partitionKey=%28https%2Clinuxtechi.com%29:3 0 19547 https:privacy.gatekeeperconsent.com:443:privacy.gatekeeperconsent.com:443::n:1688987502:h3:y:1688891553:n:^partitionKey=%28https%2Clinuxtechi.com%29:|n:y: +https:www.influ2.com:443:.:^partitionKey=%28https%2Cnvidia.co.uk%29:3 0 19545 https:www.influ2.com:443:www.influ2.com:443::n:1691345071:h3:y:1688752771:n:^partitionKey=%28https%2Cnvidia.co.uk%29:|n:y: +https:googleads4.g.doubleclick.net:443:.:^partitionKey=%28https%2Cappsloveworld.com%29:3 0 19546 https:googleads4.g.doubleclick.net:443:googleads4.g.doubleclick.net:443::n:1691433661:h3:y:1688837857:n:^partitionKey=%28https%2Cappsloveworld.com%29:|n:y: +https:fonts.googleapis.com:443:.:^partitionKey=%28https%2C101computing.net%29:3 0 19548 https:fonts.googleapis.com:443:fonts.googleapis.com:443::n:1691610147:h3:y:1689018121:n:^partitionKey=%28https%2C101computing.net%29:|n:y: +https:tpc.googlesyndication.com:443:.:^partitionKey=%28https%2Cstackexchange.com%29:3 1 19546 https:tpc.googlesyndication.com:443:tpc.googlesyndication.com:443::n:1691436124:h3:y:1688772412:n:^partitionKey=%28https%2Cstackexchange.com%29:|n:y: +https:eu-u.openx.net:443:.:^partitionKey=%28https%2Ctutorialspoint.com%29:3 0 19547 https:eu-u.openx.net:443:eu-u.openx.net:443::n:1691462352:h3:y:1688868178:n:^partitionKey=%28https%2Ctutorialspoint.com%29:|n:y: +https:ws.zoominfo.com:443:.:^partitionKey=%28https%2Cparsec.app%29:3 0 19547 https:ws.zoominfo.com:443:ws.zoominfo.com:443::n:1688960722:h3:y:1688873798:n:^partitionKey=%28https%2Cparsec.app%29:|n:y: +https:connect.facebook.net:443:.:^partitionKey=%28https%2Cparsec.app%29:3 0 19547 https:connect.facebook.net:443:connect.facebook.net:443::n:1688960525:h3:y:1688873798:n:^partitionKey=%28https%2Cparsec.app%29:|n:y: +https:googleads.g.doubleclick.net:443:.:^partitionKey=%28https%2Ctecadmin.net%29:3 0 19546 https:googleads.g.doubleclick.net:443:googleads.g.doubleclick.net:443::n:1691432979:h3:y:1688837857:n:^partitionKey=%28https%2Ctecadmin.net%29:|n:y: +https:partner.googleadservices.com:443:.:^partitionKey=%28https%2Cappsloveworld.com%29:3 0 19546 https:partner.googleadservices.com:443:partner.googleadservices.com:443::n:1691433911:h3:y:1688837857:n:^partitionKey=%28https%2Cappsloveworld.com%29:|n:y: +https:maxcdn.bootstrapcdn.com:443:.:^partitionKey=%28https%2Cv.je%29:3 0 19548 https:maxcdn.bootstrapcdn.com:443:maxcdn.bootstrapcdn.com:443::n:1689102384:h3:y:1689015566:n:^partitionKey=%28https%2Cv.je%29:|n:y: +https:oa.openxcdn.net:443:.:^partitionKey=%28https%2Cshellscript.sh%29:3 0 19546 https:oa.openxcdn.net:443:oa.openxcdn.net:443::n:1691435718:h3:y:1688842468:n:^partitionKey=%28https%2Cshellscript.sh%29:|n:y: +https:ad.doubleclick.net:443:.:^partitionKey=%28https%2Cstackoverflow.com%29:3 1 19547 https:ad.doubleclick.net:443:ad.doubleclick.net:443::n:1691462325:h3:y:1688842468:n:^partitionKey=%28https%2Cstackoverflow.com%29:|n:y: +https:fonts.googleapis.com:443:.:^partitionKey=%28https%2Cfreecodecamp.org%29:3 0 19547 https:fonts.googleapis.com:443:fonts.googleapis.com:443::n:1691513575:h3:y:1688920622:n:^partitionKey=%28https%2Cfreecodecamp.org%29:|n:y: +https:5080d53a81c2cfaafe1c4cd29a66cb90.safeframe.googlesyndication.com:443:.:^partitionKey=%28https%2Csystutorials.com%29:3 0 19545 https:5080d53a81c2cfaafe1c4cd29a66cb90.safeframe.googlesyndication.com:443:5080d53a81c2cfaafe1c4cd29a66cb90.safeframe.googlesyndication.com:443::n:1691360968:h3:y:1688768928:n:^partitionKey=%28https%2Csystutorials.com%29:|n:y: +https:esp.rtbhouse.com:443:.:^partitionKey=%28https%2Cbaeldung.com%29:3 0 19546 https:esp.rtbhouse.com:443:esp.rtbhouse.com:443::n:1691435958:h3:y:1688842468:n:^partitionKey=%28https%2Cbaeldung.com%29:|n:y: +https:rtb.openx.net:443:.:^partitionKey=%28https%2Cappsloveworld.com%29:3 0 19546 https:rtb.openx.net:443:rtb.openx.net:443::n:1691433740:h3:y:1688837857:n:^partitionKey=%28https%2Cappsloveworld.com%29:|n:y: +https:ox-rtb-europe-west2.openx.net:443:.:^partitionKey=%28https%2Cshellscript.sh%29:3 0 19546 https:ox-rtb-europe-west2.openx.net:443:ox-rtb-europe-west2.openx.net:443::n:1691435733:h3:y:1688842468:n:^partitionKey=%28https%2Cshellscript.sh%29:|n:y: +https:fonts.googleapis.com:443:.:^partitionKey=%28https%2Candroid.com%29:3 0 19547 https:fonts.googleapis.com:443:fonts.googleapis.com:443::n:1691492821:h3:y:1688891553:n:^partitionKey=%28https%2Candroid.com%29:|n:y: +https:id.google.com:443:.:^partitionKey=%28https%2Cgoogle.com%29:3 2 19547 https:id.google.com:443:id.google.com:443::n:1691466327:h3:y:1688755069:n:^partitionKey=%28https%2Cgoogle.com%29:|n:y: +https:www.google-analytics.com:443:.:^partitionKey=%28https%2Chowtogeek.com%29:3 0 19545 https:www.google-analytics.com:443:www.google-analytics.com:443::n:1691348155:h3:y:1688755069:n:^partitionKey=%28https%2Chowtogeek.com%29:|n:y: +https:s2s.t13.io:443:.:^partitionKey=%28https%2Citsfoss.com%29:3 0 19547 https:s2s.t13.io:443:s2s.t13.io:443::n:1691468369:h3:y:1688874784:n:^partitionKey=%28https%2Citsfoss.com%29:|n:y: +https:pubads.g.doubleclick.net:443:.:^partitionKey=%28https%2Cappsloveworld.com%29:3 0 19546 https:pubads.g.doubleclick.net:443:pubads.g.doubleclick.net:443::n:1691433741:h3:y:1688837857:n:^partitionKey=%28https%2Cappsloveworld.com%29:|n:y: +https:www.googletagmanager.com:443:.:^partitionKey=%28https%2Cshellscript.sh%29:3 0 19546 https:www.googletagmanager.com:443:www.googletagmanager.com:443::n:1691435717:h3:y:1688842468:n:^partitionKey=%28https%2Cshellscript.sh%29:|n:y: +https:s0.2mdn.net:443:.:^partitionKey=%28https%2Csystutorials.com%29:3 0 19545 https:s0.2mdn.net:443:s0.2mdn.net:443::n:1691360965:h3:y:1688768928:n:^partitionKey=%28https%2Csystutorials.com%29:|n:y: +https:www.google.co.uk:443:.:^partitionKey=%28https%2Cstackoverflow.com%29:3 1 19547 https:www.google.co.uk:443:www.google.co.uk:443::n:1691462324:h3:y:1688842468:n:^partitionKey=%28https%2Cstackoverflow.com%29:|n:y: +https:stackpath.bootstrapcdn.com:443:.::3 0 19548 https:stackpath.bootstrapcdn.com:443:stackpath.bootstrapcdn.com:443::n:1689103205:h3:y:1689015566:n::|n:y: +https:pagead2.googlesyndication.com:443:.:^partitionKey=%28https%2Crazer.com%29:3 0 19546 https:pagead2.googlesyndication.com:443:pagead2.googlesyndication.com:443::n:1691423891:h3:y:1688831685:n:^partitionKey=%28https%2Crazer.com%29:|n:y: +https:s.company-target.com:443:.:^partitionKey=%28https%2Ctutorialspoint.com%29:3 0 19547 https:s.company-target.com:443:s.company-target.com:443::n:1691462355:h3:y:1688868178:n:^partitionKey=%28https%2Ctutorialspoint.com%29:|n:y: +https:stats.g.doubleclick.net:443:.:^partitionKey=%28https%2Ctecadmin.net%29:3 0 19546 https:stats.g.doubleclick.net:443:stats.g.doubleclick.net:443::n:1691432562:h3:y:1688837857:n:^partitionKey=%28https%2Ctecadmin.net%29:|n:y: +https:googleads.g.doubleclick.net:443:.:^partitionKey=%28https%2Cnvidia.com%29:3 0 19545 https:googleads.g.doubleclick.net:443:googleads.g.doubleclick.net:443::n:1691345049:h3:y:1688752771:n:^partitionKey=%28https%2Cnvidia.com%29:|n:y: +https:encrypted-tbn3.gstatic.com:443:.:^partitionKey=%28https%2Calternativeto.net%29:3 0 19547 https:encrypted-tbn3.gstatic.com:443:encrypted-tbn3.gstatic.com:443::n:1691465165:h3:y:1688872861:n:^partitionKey=%28https%2Calternativeto.net%29:|n:y: +https:esp.rtbhouse.com:443:.:^partitionKey=%28https%2Chowtogeek.com%29:3 0 19545 https:esp.rtbhouse.com:443:esp.rtbhouse.com:443::n:1691348160:h3:y:1688755069:n:^partitionKey=%28https%2Chowtogeek.com%29:|n:y: +https:fonts.gstatic.com:443:.:^partitionKey=%28https%2Citsfoss.com%29:3 0 19547 https:fonts.gstatic.com:443:fonts.gstatic.com:443::n:1691468364:h3:y:1688874784:n:^partitionKey=%28https%2Citsfoss.com%29:|n:y: +https:stats.g.doubleclick.net:443:.:^partitionKey=%28https%2Cparsec.app%29:3 0 19547 https:stats.g.doubleclick.net:443:stats.g.doubleclick.net:443::n:1691466324:h3:y:1688873798:n:^partitionKey=%28https%2Cparsec.app%29:|n:y: +https:adservice.google.com:443:.:^partitionKey=%28https%2Cshellscript.sh%29:3 0 19546 https:adservice.google.com:443:adservice.google.com:443::n:1691435799:h3:y:1688842468:n:^partitionKey=%28https%2Cshellscript.sh%29:|n:y: +https:adservice.google.com:443:.:^partitionKey=%28https%2Cbaeldung.com%29:3 0 19546 https:adservice.google.com:443:adservice.google.com:443::n:1691436114:h3:y:1688842468:n:^partitionKey=%28https%2Cbaeldung.com%29:|n:y: +https:encrypted-vtbn0.gstatic.com:443:.:^partitionKey=%28https%2Cgoogle.com%29:3 1 19546 https:encrypted-vtbn0.gstatic.com:443:encrypted-vtbn0.gstatic.com:443::n:1691431741:h3:y:1688749048:n:^partitionKey=%28https%2Cgoogle.com%29:|n:y: +https:cm.g.doubleclick.net:443:.:^partitionKey=%28https%2Cbaeldung.com%29:3 0 19546 https:cm.g.doubleclick.net:443:cm.g.doubleclick.net:443::n:1691435962:h3:y:1688842468:n:^partitionKey=%28https%2Cbaeldung.com%29:|n:y: +https:adservice.google.com:443:.:^partitionKey=%28https%2Calternativeto.net%29:3 0 19547 https:adservice.google.com:443:adservice.google.com:443::n:1691465164:h3:y:1688872861:n:^partitionKey=%28https%2Calternativeto.net%29:|n:y: +https:fonts.googleapis.com:443:.:^partitionKey=%28https%2Ccopyandpastesymbols.net%29:3 0 19547 https:fonts.googleapis.com:443:fonts.googleapis.com:443::n:1691471368:h3:y:1688877328:n:^partitionKey=%28https%2Ccopyandpastesymbols.net%29:|n:y: +https:region1.google-analytics.com:443:.:^partitionKey=%28https%2Ckeepfloyding.github.io%29:3 0 19546 https:region1.google-analytics.com:443:region1.google-analytics.com:443::n:1691430215:h3:y:1688837857:n:^partitionKey=%28https%2Ckeepfloyding.github.io%29:|n:y: +https:21c556ec4e894bfcb2ca1c91f911ffc1.safeframe.googlesyndication.com:443:.:^partitionKey=%28https%2Cstackexchange.com%29:3 0 19546 https:21c556ec4e894bfcb2ca1c91f911ffc1.safeframe.googlesyndication.com:443:21c556ec4e894bfcb2ca1c91f911ffc1.safeframe.googlesyndication.com:443::n:1691424344:h3:y:1688832195:n:^partitionKey=%28https%2Cstackexchange.com%29:|n:y: +https:s0.2mdn.net:443:.:^partitionKey=%28https%2Citsfoss.com%29:3 0 19547 https:s0.2mdn.net:443:s0.2mdn.net:443::n:1691468366:h3:y:1688874784:n:^partitionKey=%28https%2Citsfoss.com%29:|n:y: +https:adservice.google.com:443:.:^partitionKey=%28https%2Cnvidia.com%29:3 0 19545 https:adservice.google.com:443:adservice.google.com:443::n:1691345048:h3:y:1688752771:n:^partitionKey=%28https%2Cnvidia.com%29:|n:y: +https:cdn.jsdelivr.net:443:.:^partitionKey=%28https%2Ctecadmin.net%29:3 0 19546 https:cdn.jsdelivr.net:443:cdn.jsdelivr.net:443::n:1688926967:h3:y:1688837857:n:^partitionKey=%28https%2Ctecadmin.net%29:|n:y: +https:googleads4.g.doubleclick.net:443:.:^partitionKey=%28https%2Cbaeldung.com%29:3 0 19546 https:googleads4.g.doubleclick.net:443:googleads4.g.doubleclick.net:443::n:1691435960:h3:y:1688842468:n:^partitionKey=%28https%2Cbaeldung.com%29:|n:y: +https:stats.g.doubleclick.net:443:.:^partitionKey=%28https%2Cawesomeopensource.com%29:3 0 19547 https:stats.g.doubleclick.net:443:stats.g.doubleclick.net:443::n:1691464604:h3:y:1688872585:n:^partitionKey=%28https%2Cawesomeopensource.com%29:|n:y: +https:cdn.ampproject.org:443:.:^partitionKey=%28https%2Cappsloveworld.com%29:3 0 19546 https:cdn.ampproject.org:443:cdn.ampproject.org:443::n:1691433659:h3:y:1688837857:n:^partitionKey=%28https%2Cappsloveworld.com%29:|n:y: +https:safebrowsing.googleapis.com:443:.:^firstPartyDomain=safebrowsing.86868755-6b82-4842-b301-72671a0db32e.mozilla:3 4 19549 https:safebrowsing.googleapis.com:443:safebrowsing.googleapis.com:443::n:1691642028:h3:y:1688749048:n:^firstPartyDomain=safebrowsing.86868755-6b82-4842-b301-72671a0db32e.mozilla:|n:y: +https:www.docker.com:443:.:^partitionKey=%28https%2Cdocker.com%29:3 0 19547 https:www.docker.com:443:www.docker.com:443::n:1688977623:h3:y:1688891119:n:^partitionKey=%28https%2Cdocker.com%29:|n:y: +https:dmp.brand-display.com:443:.:^partitionKey=%28https%2Ctecadmin.net%29:3 0 19546 https:dmp.brand-display.com:443:dmp.brand-display.com:443::n:1691432596:h3:y:1688837857:n:^partitionKey=%28https%2Ctecadmin.net%29:|n:y: +https:googleads.g.doubleclick.net:443:.:^partitionKey=%28https%2Cmankier.com%29:3 1 19547 https:googleads.g.doubleclick.net:443:googleads.g.doubleclick.net:443::n:1691459165:h3:y:1688837857:n:^partitionKey=%28https%2Cmankier.com%29:|n:y: +https:dash.cloudflare.com:443:.:^partitionKey=%28https%2Ccloudflare.com%29:3 0 19547 https:dash.cloudflare.com:443:dash.cloudflare.com:443::n:1688967286:h3:y:1688877328:n:^partitionKey=%28https%2Ccloudflare.com%29:|n:y: +https:www.linuxtechi.com:443:.:^partitionKey=%28https%2Clinuxtechi.com%29:3 0 19547 https:www.linuxtechi.com:443:www.linuxtechi.com:443::n:1688987513:h3:y:1688891553:n:^partitionKey=%28https%2Clinuxtechi.com%29:|n:y: +https:pagead2.googlesyndication.com:443:.:^partitionKey=%28https%2Cbaeldung.com%29:3 0 19546 https:pagead2.googlesyndication.com:443:pagead2.googlesyndication.com:443::n:1691436088:h3:y:1688842468:n:^partitionKey=%28https%2Cbaeldung.com%29:|n:y: +https:oa.openxcdn.net:443:.:^partitionKey=%28https%2Chowtogeek.com%29:3 0 19545 https:oa.openxcdn.net:443:oa.openxcdn.net:443::n:1691348158:h3:y:1688755069:n:^partitionKey=%28https%2Chowtogeek.com%29:|n:y: +https:o22381.ingest.sentry.io:443:.::3 0 19547 https:o22381.ingest.sentry.io:443:o22381.ingest.sentry.io:443::n:1691513773:h3:y:1688920622:n::|n:y: +https:fonts.googleapis.com:443:.:^partitionKey=%28https%2C127.0.0.1%29:3 0 19548 https:fonts.googleapis.com:443:fonts.googleapis.com:443::n:1691607576:h3:y:1689015566:n:^partitionKey=%28https%2C127.0.0.1%29:|n:y: +https:www.gstatic.com:443:.:^partitionKey=%28https%2Cshellscript.sh%29:3 0 19546 https:www.gstatic.com:443:www.gstatic.com:443::n:1691435721:h3:y:1688842468:n:^partitionKey=%28https%2Cshellscript.sh%29:|n:y: +https:www.facebook.com:443:.:^partitionKey=%28https%2Cparsec.app%29:3 0 19547 https:www.facebook.com:443:www.facebook.com:443::n:1688960725:h3:y:1688873798:n:^partitionKey=%28https%2Cparsec.app%29:|n:y: +https:privacy.gatekeeperconsent.com:443:.:^partitionKey=%28https%2Csystutorials.com%29:3 0 19545 https:privacy.gatekeeperconsent.com:443:privacy.gatekeeperconsent.com:443::n:1688855357:h3:y:1688768928:n:^partitionKey=%28https%2Csystutorials.com%29:|n:y: +https:i.ytimg.com:443:.:^partitionKey=%28https%2Cgoogle.com%29:3 2 19547 https:i.ytimg.com:443:i.ytimg.com:443::n:1691525326:h3:y:1688749048:n:^partitionKey=%28https%2Cgoogle.com%29:|n:y: +https:www.google.co.uk:443:.:^partitionKey=%28https%2Cshellscript.sh%29:3 0 19546 https:www.google.co.uk:443:www.google.co.uk:443::n:1691435799:h3:y:1688842468:n:^partitionKey=%28https%2Cshellscript.sh%29:|n:y: +https:outbrain-d.openx.net:443:.:^partitionKey=%28https%2Csystutorials.com%29:3 0 19545 https:outbrain-d.openx.net:443:outbrain-d.openx.net:443::n:1691360966:h3:y:1688768928:n:^partitionKey=%28https%2Csystutorials.com%29:|n:y: +https:cdn.jsdelivr.net:443:.:^partitionKey=%28https%2Cdocker.com%29:3 0 19547 https:cdn.jsdelivr.net:443:cdn.jsdelivr.net:443::n:1688977627:h3:y:1688891119:n:^partitionKey=%28https%2Cdocker.com%29:|n:y: +https:cds.connatix.com:443:.:^partitionKey=%28https%2Cappsloveworld.com%29:3 0 19546 https:cds.connatix.com:443:cds.connatix.com:443::n:1688928116:h3:y:1688837857:n:^partitionKey=%28https%2Cappsloveworld.com%29:|n:y: +https:d4.alternativeto.net:443:.:^partitionKey=%28https%2Calternativeto.net%29:3 0 19547 https:d4.alternativeto.net:443:d4.alternativeto.net:443::n:1688959576:h3:y:1688872861:n:^partitionKey=%28https%2Calternativeto.net%29:|n:y: +https:dmp.brand-display.com:443:.:^partitionKey=%28https%2Chowtogeek.com%29:3 0 19545 https:dmp.brand-display.com:443:dmp.brand-display.com:443::n:1691348163:h3:y:1688755069:n:^partitionKey=%28https%2Chowtogeek.com%29:|n:y: +https:www.copyandpastesymbols.net:443:.:^partitionKey=%28https%2Ccopyandpastesymbols.net%29:3 0 19547 https:www.copyandpastesymbols.net:443:www.copyandpastesymbols.net:443::n:1688965836:h3:y:1688877328:n:^partitionKey=%28https%2Ccopyandpastesymbols.net%29:|n:y: +https:encrypted-tbn1.gstatic.com:443:.:^partitionKey=%28https%2Calternativeto.net%29:3 0 19547 https:encrypted-tbn1.gstatic.com:443:encrypted-tbn1.gstatic.com:443::n:1691465165:h3:y:1688872861:n:^partitionKey=%28https%2Calternativeto.net%29:|n:y: +https:de0e28e216a37b919cd97f7020eee2c0.safeframe.googlesyndication.com:443:.:^partitionKey=%28https%2Cshellscript.sh%29:3 0 19546 https:de0e28e216a37b919cd97f7020eee2c0.safeframe.googlesyndication.com:443:de0e28e216a37b919cd97f7020eee2c0.safeframe.googlesyndication.com:443::n:1691435724:h3:y:1688842468:n:^partitionKey=%28https%2Cshellscript.sh%29:|n:y: +https:idsync.rlcdn.com:443:.:^partitionKey=%28https%2Cnvidia.com%29:3 0 19545 https:idsync.rlcdn.com:443:idsync.rlcdn.com:443::n:1691344894:h3:y:1688752771:n:^partitionKey=%28https%2Cnvidia.com%29:|n:y: +https:www.gstatic.com:443:.:^partitionKey=%28https%2Csystutorials.com%29:3 0 19545 https:www.gstatic.com:443:www.gstatic.com:443::n:1691360961:h3:y:1688768928:n:^partitionKey=%28https%2Csystutorials.com%29:|n:y: +https:cdn.confiant-integrations.net:443:.:^partitionKey=%28https%2Crapidtables.com%29:3 0 19545 https:cdn.confiant-integrations.net:443:cdn.confiant-integrations.net:443::n:1688843117:h3:y:1688755069:n:^partitionKey=%28https%2Crapidtables.com%29:|n:y: +https:rr5---sn-cu-nuoz.googlevideo.com:443:.:^partitionKey=%28https%2Cbaeldung.com%29:3 0 19546 https:rr5---sn-cu-nuoz.googlevideo.com:443:rr5---sn-cu-nuoz.googlevideo.com:443::n:1691435961:h3:y:1688842468:n:^partitionKey=%28https%2Cbaeldung.com%29:|n:y: +https:tr.blismedia.com:443:.:^partitionKey=%28https%2Cappsloveworld.com%29:3 0 19546 https:tr.blismedia.com:443:tr.blismedia.com:443::n:1691433449:h3:y:1688837857:n:^partitionKey=%28https%2Cappsloveworld.com%29:|n:y: +https:malware-filter.pages.dev:443:.::3 0 19547 https:malware-filter.pages.dev:443:malware-filter.pages.dev:443::n:1688963041:h3:y:1688874784:n::|n:y: +https:cdn.confiant-integrations.net:443:.:^partitionKey=%28https%2Citsfoss.com%29:3 0 19547 https:cdn.confiant-integrations.net:443:cdn.confiant-integrations.net:443::n:1688962760:h3:y:1688874784:n:^partitionKey=%28https%2Citsfoss.com%29:|n:y: +https:www.google.co.uk:443:.:^partitionKey=%28https%2Ctecadmin.net%29:3 0 19546 https:www.google.co.uk:443:www.google.co.uk:443::n:1691432562:h3:y:1688837857:n:^partitionKey=%28https%2Ctecadmin.net%29:|n:y: +https:52d187e9c531681fee140d86c0aebc06.safeframe.googlesyndication.com:443:.:^partitionKey=%28https%2Cbaeldung.com%29:3 0 19546 https:52d187e9c531681fee140d86c0aebc06.safeframe.googlesyndication.com:443:52d187e9c531681fee140d86c0aebc06.safeframe.googlesyndication.com:443::n:1691435957:h3:y:1688842468:n:^partitionKey=%28https%2Cbaeldung.com%29:|n:y: +https:region1.google-analytics.com:443:.:^partitionKey=%28https%2Crazer.com%29:3 0 19546 https:region1.google-analytics.com:443:region1.google-analytics.com:443::n:1691423892:h3:y:1688831685:n:^partitionKey=%28https%2Crazer.com%29:|n:y: +https:ssl.google-analytics.com:443:.:^partitionKey=%28https%2Cubuntu.com%29:3 1 19547 https:ssl.google-analytics.com:443:ssl.google-analytics.com:443::n:1691459133:h3:y:1688837494:n:^partitionKey=%28https%2Cubuntu.com%29:|n:y: +https:fonts.gstatic.com:443:.:^partitionKey=%28https%2Cbaeldung.com%29:3 0 19546 https:fonts.gstatic.com:443:fonts.gstatic.com:443::n:1691435957:h3:y:1688842468:n:^partitionKey=%28https%2Cbaeldung.com%29:|n:y: +https:www.googletagmanager.com:443:.:^partitionKey=%28https%2Cstackoverflow.com%29:3 3 19549 https:www.googletagmanager.com:443:www.googletagmanager.com:443::n:1691462082:h3:y:1688837857:n:^partitionKey=%28https%2Cstackoverflow.com%29:|n:y: +https:the.gatekeeperconsent.com:443:.:^partitionKey=%28https%2Csystutorials.com%29:3 0 19545 https:the.gatekeeperconsent.com:443:the.gatekeeperconsent.com:443::n:1688855357:h3:y:1688768928:n:^partitionKey=%28https%2Csystutorials.com%29:|n:y: +https:googleads.g.doubleclick.net:443:.:^partitionKey=%28https%2Cgoogle.com%29:3 2 19547 https:googleads.g.doubleclick.net:443:googleads.g.doubleclick.net:443::n:1691468304:h3:y:1688749048:n:^partitionKey=%28https%2Cgoogle.com%29:|n:y: +https:cm.ctnsnet.com:443:.:^partitionKey=%28https%2Ctecadmin.net%29:3 0 19546 https:cm.ctnsnet.com:443:cm.ctnsnet.com:443::n:1691432596:h3:y:1688837857:n:^partitionKey=%28https%2Ctecadmin.net%29:|n:y: +https:oajs.openx.net:443:.:^partitionKey=%28https%2Chowtogeek.com%29:3 0 19545 https:oajs.openx.net:443:oajs.openx.net:443::n:1691348159:h3:y:1688755069:n:^partitionKey=%28https%2Chowtogeek.com%29:|n:y: +https:lh6.googleusercontent.com:443:.:^partitionKey=%28https%2Caskubuntu.com%29:3 0 19549 https:lh6.googleusercontent.com:443:lh6.googleusercontent.com:443::n:1691634688:h3:y:1689042007:n:^partitionKey=%28https%2Caskubuntu.com%29:|n:y: +https:esp.rtbhouse.com:443:.:^partitionKey=%28https%2Cappsloveworld.com%29:3 0 19546 https:esp.rtbhouse.com:443:esp.rtbhouse.com:443::n:1691433445:h3:y:1688837857:n:^partitionKey=%28https%2Cappsloveworld.com%29:|n:y: +https:fundingchoicesmessages.google.com:443:.:^partitionKey=%28https%2Crapidtables.com%29:3 0 19545 https:fundingchoicesmessages.google.com:443:fundingchoicesmessages.google.com:443::n:1691348718:h3:y:1688755069:n:^partitionKey=%28https%2Crapidtables.com%29:|n:y: +https:tpc.googlesyndication.com:443:.:^partitionKey=%28https%2Chowtogeek.com%29:3 0 19545 https:tpc.googlesyndication.com:443:tpc.googlesyndication.com:443::n:1691348163:h3:y:1688755069:n:^partitionKey=%28https%2Chowtogeek.com%29:|n:y: +https:api.permutive.com:443:.:^partitionKey=%28https%2Chowtogeek.com%29:3 0 19545 https:api.permutive.com:443:api.permutive.com:443::n:1691348169:h3:y:1688755069:n:^partitionKey=%28https%2Chowtogeek.com%29:|n:y: +https:invstatic101.creativecdn.com:443:.:^partitionKey=%28https%2Chowtogeek.com%29:3 0 19545 https:invstatic101.creativecdn.com:443:invstatic101.creativecdn.com:443::n:1691348159:h3:y:1688755069:n:^partitionKey=%28https%2Chowtogeek.com%29:|n:y: +https:bshr.ezodn.com:443:.:^partitionKey=%28https%2Csystutorials.com%29:3 0 19545 https:bshr.ezodn.com:443:bshr.ezodn.com:443::n:1688855363:h3:y:1688768928:n:^partitionKey=%28https%2Csystutorials.com%29:|n:y: +https:bshr.ezodn.com:443:.:^partitionKey=%28https%2Cappsloveworld.com%29:3 0 19546 https:bshr.ezodn.com:443:bshr.ezodn.com:443::n:1688927842:h3:y:1688837857:n:^partitionKey=%28https%2Cappsloveworld.com%29:|n:y: +https:www.google.com:443:.:^partitionKey=%28https%2Chowtogeek.com%29:3 0 19545 https:www.google.com:443:www.google.com:443::n:1691348161:h3:y:1688755069:n:^partitionKey=%28https%2Chowtogeek.com%29:|n:y: +https:fonts.googleapis.com:443:.:^partitionKey=%28https%2Calternativeto.net%29:3 0 19547 https:fonts.googleapis.com:443:fonts.googleapis.com:443::n:1691465165:h3:y:1688872861:n:^partitionKey=%28https%2Calternativeto.net%29:|n:y: +https:optimise.net:443:.:^partitionKey=%28https%2Cbaeldung.com%29:3 0 19546 https:optimise.net:443:optimise.net:443::n:1691435955:h3:y:1688842468:n:^partitionKey=%28https%2Cbaeldung.com%29:|n:y: +https:app.gitbook.com:443:.:^partitionKey=%28https%2Cwaydro.id%29:3 0 19547 https:app.gitbook.com:443:app.gitbook.com:443::n:1688990489:h3:y:1688902960:n:^partitionKey=%28https%2Cwaydro.id%29:|n:y: +https:csi.gstatic.com:443:.:^partitionKey=%28https%2Csystutorials.com%29:3 0 19545 https:csi.gstatic.com:443:csi.gstatic.com:443::n:1691360962:h3:y:1688768928:n:^partitionKey=%28https%2Csystutorials.com%29:|n:y: +https:7d6f849de0c7e5fa7d383b30d6aca309.safeframe.googlesyndication.com:443:.:^partitionKey=%28https%2Chowtogeek.com%29:3 0 19545 https:7d6f849de0c7e5fa7d383b30d6aca309.safeframe.googlesyndication.com:443:7d6f849de0c7e5fa7d383b30d6aca309.safeframe.googlesyndication.com:443::n:1691348161:h3:y:1688755069:n:^partitionKey=%28https%2Chowtogeek.com%29:|n:y: +https:developer.spotify.com:443:.::3 1 19548 https:developer.spotify.com:443:developer.spotify.com:443::n:1691531069:h3:y:1688938778:n::|n:y: +https:fonts.gstatic.com:443:.:^partitionKey=%28https%2Creddit.com%29:3 3 19548 https:fonts.gstatic.com:443:fonts.gstatic.com:443::n:1691341080:h3:y:1688749048:n:^partitionKey=%28https%2Creddit.com%29:|n:y: +https:cdn.jsdelivr.net:443:.:^partitionKey=%28https%2Citsfoss.com%29:3 0 19547 https:cdn.jsdelivr.net:443:cdn.jsdelivr.net:443::n:1689029991:h3:y:1688874784:n:^partitionKey=%28https%2Citsfoss.com%29:|n:y: +https:stats.g.doubleclick.net:443:.:^partitionKey=%28https%2Chowtogeek.com%29:3 0 19545 https:stats.g.doubleclick.net:443:stats.g.doubleclick.net:443::n:1691348156:h3:y:1688755069:n:^partitionKey=%28https%2Chowtogeek.com%29:|n:y: +https:shop.pe:443:.:^partitionKey=%28https%2Ctutorialspoint.com%29:3 0 19547 https:shop.pe:443:shop.pe:443::n:1691462348:h3:y:1688868178:n:^partitionKey=%28https%2Ctutorialspoint.com%29:|n:y: +https:googleads.g.doubleclick.net:443:.::3 1 19548 https:googleads.g.doubleclick.net:443:googleads.g.doubleclick.net:443::n:1691494009:h3:y:1688901992:n::|n:y: +https:www.google-analytics.com:443:.:^partitionKey=%28https%2Csystutorials.com%29:3 0 19545 https:www.google-analytics.com:443:www.google-analytics.com:443::n:1691360965:h3:y:1688768928:n:^partitionKey=%28https%2Csystutorials.com%29:|n:y: +https:www.googletagmanager.com:443:.:^partitionKey=%28https%2Ctutorialspoint.com%29:3 0 19547 https:www.googletagmanager.com:443:www.googletagmanager.com:443::n:1691462346:h3:y:1688868178:n:^partitionKey=%28https%2Ctutorialspoint.com%29:|n:y: +https:g.ezodn.com:443:.:^partitionKey=%28https%2Cshellscript.sh%29:3 0 19546 https:g.ezodn.com:443:g.ezodn.com:443::n:1688930117:h3:y:1688842468:n:^partitionKey=%28https%2Cshellscript.sh%29:|n:y: +https:28c753abb15381d9201510908c465bd3.safeframe.googlesyndication.com:443:.:^partitionKey=%28https%2Ctutorialspoint.com%29:3 0 19547 https:28c753abb15381d9201510908c465bd3.safeframe.googlesyndication.com:443:28c753abb15381d9201510908c465bd3.safeframe.googlesyndication.com:443::n:1691462349:h3:y:1688868178:n:^partitionKey=%28https%2Ctutorialspoint.com%29:|n:y: +https:tr.blismedia.com:443:.:^partitionKey=%28https%2Chowtogeek.com%29:3 0 19545 https:tr.blismedia.com:443:tr.blismedia.com:443::n:1691348164:h3:y:1688755069:n:^partitionKey=%28https%2Chowtogeek.com%29:|n:y: +https:region1.google-analytics.com:443:.:^partitionKey=%28https%2Calternativeto.net%29:3 0 19547 https:region1.google-analytics.com:443:region1.google-analytics.com:443::n:1691465179:h3:y:1688872861:n:^partitionKey=%28https%2Calternativeto.net%29:|n:y: +https:adservice.google.com:443:.:^partitionKey=%28https%2Csystutorials.com%29:3 0 19545 https:adservice.google.com:443:adservice.google.com:443::n:1691360968:h3:y:1688768928:n:^partitionKey=%28https%2Csystutorials.com%29:|n:y: +https:adservice.google.com:443:.:^partitionKey=%28https%2Cstackoverflow.com%29:3 1 19547 https:adservice.google.com:443:adservice.google.com:443::n:1691462324:h3:y:1688842468:n:^partitionKey=%28https%2Cstackoverflow.com%29:|n:y: +https:scripturefirst.net:443:.::3 0 19547 https:scripturefirst.net:443:scripturefirst.net:443::n:1688989548:h3:y:1688902960:n::|n:y: +https:cdn.jsdelivr.net:443:.:^partitionKey=%28https%2C127.0.0.1%29:3 0 19548 https:cdn.jsdelivr.net:443:cdn.jsdelivr.net:443::n:1689101976:h3:y:1689015566:n:^partitionKey=%28https%2C127.0.0.1%29:|n:y: +https:cdn.jsdelivr.net:443:.:^partitionKey=%28https%2Capache.org%29:3 0 19547 https:cdn.jsdelivr.net:443:cdn.jsdelivr.net:443::n:1688966052:h3:y:1688877328:n:^partitionKey=%28https%2Capache.org%29:|n:y: +https:www.googletagservices.com:443:.:^partitionKey=%28https%2Ctutorialspoint.com%29:3 0 19547 https:www.googletagservices.com:443:www.googletagservices.com:443::n:1691462350:h3:y:1688868178:n:^partitionKey=%28https%2Ctutorialspoint.com%29:|n:y: +https:wiki.hyprland.org:443:.::3 0 19547 https:wiki.hyprland.org:443:wiki.hyprland.org:443::n:1688963189:h3:y:1688874784:n::|n:y: +https:api.btloader.com:443:.:^partitionKey=%28https%2Cappsloveworld.com%29:3 0 19546 https:api.btloader.com:443:api.btloader.com:443::n:1691433442:h3:y:1688837857:n:^partitionKey=%28https%2Cappsloveworld.com%29:|n:y: +https:a1695941df12c424bc1b06c89afdae71.safeframe.googlesyndication.com:443:.:^partitionKey=%28https%2Cappsloveworld.com%29:3 0 19546 https:a1695941df12c424bc1b06c89afdae71.safeframe.googlesyndication.com:443:a1695941df12c424bc1b06c89afdae71.safeframe.googlesyndication.com:443::n:1691433662:h3:y:1688837857:n:^partitionKey=%28https%2Cappsloveworld.com%29:|n:y: +https:esp.rtbhouse.com:443:.:^partitionKey=%28https%2Ctutorialspoint.com%29:3 0 19547 https:esp.rtbhouse.com:443:esp.rtbhouse.com:443::n:1691462350:h3:y:1688868178:n:^partitionKey=%28https%2Ctutorialspoint.com%29:|n:y: +https:versioncheck-bg.addons.mozilla.org:443:.::3 1 19548 https:versioncheck-bg.addons.mozilla.org:443:versioncheck-bg.addons.mozilla.org:443::n:1691599052:h3:y:1688920622:n::|n:y: +https:oajs.openx.net:443:.:^partitionKey=%28https%2Csystutorials.com%29:3 0 19545 https:oajs.openx.net:443:oajs.openx.net:443::n:1691360961:h3:y:1688768928:n:^partitionKey=%28https%2Csystutorials.com%29:|n:y: +https:www.google-analytics.com:443:.:^partitionKey=%28https%2Cappsloveworld.com%29:3 0 19546 https:www.google-analytics.com:443:www.google-analytics.com:443::n:1691433902:h3:y:1688837857:n:^partitionKey=%28https%2Cappsloveworld.com%29:|n:y: +https:region1.google-analytics.com:443:.:^partitionKey=%28https%2Cmozilla.org%29:3 0 19547 https:region1.google-analytics.com:443:region1.google-analytics.com:443::n:1691493996:h3:y:1688874784:n:^partitionKey=%28https%2Cmozilla.org%29:|n:y: +https:fonts.gstatic.com:443:.:^partitionKey=%28https%2Clutris.net%29:3 0 19547 https:fonts.gstatic.com:443:fonts.gstatic.com:443::n:1691472693:h3:y:1688877328:n:^partitionKey=%28https%2Clutris.net%29:|n:y: +https:adservice.google.com:443:.:^partitionKey=%28https%2Ctecadmin.net%29:3 0 19546 https:adservice.google.com:443:adservice.google.com:443::n:1691432622:h3:y:1688837857:n:^partitionKey=%28https%2Ctecadmin.net%29:|n:y: +https:open.spotifycdn.com:443:.:^partitionKey=%28https%2Cspotify.com%29:3 0 19547 https:open.spotifycdn.com:443:open.spotifycdn.com:443::n:1689008175:h3:y:1688920622:n:^partitionKey=%28https%2Cspotify.com%29:|n:y: +https:ad.doubleclick.net:443:.:^partitionKey=%28https%2Csystutorials.com%29:3 0 19545 https:ad.doubleclick.net:443:ad.doubleclick.net:443::n:1691360961:h3:y:1688768928:n:^partitionKey=%28https%2Csystutorials.com%29:|n:y: +https:dsp.vlitag.com:443:.:^partitionKey=%28https%2Ctecadmin.net%29:3 0 19546 https:dsp.vlitag.com:443:dsp.vlitag.com:443::n:1688926964:h3:y:1688837857:n:^partitionKey=%28https%2Ctecadmin.net%29:|n:y: +https:oajs.openx.net:443:.:^partitionKey=%28https%2Crapidtables.com%29:3 0 19545 https:oajs.openx.net:443:oajs.openx.net:443::n:1691348716:h3:y:1688755069:n:^partitionKey=%28https%2Crapidtables.com%29:|n:y: +https:region1.google-analytics.com:443:.:^partitionKey=%28https%2Cparsec.app%29:3 0 19547 https:region1.google-analytics.com:443:region1.google-analytics.com:443::n:1691466328:h3:y:1688873798:n:^partitionKey=%28https%2Cparsec.app%29:|n:y: +https:invstatic101.creativecdn.com:443:.:^partitionKey=%28https%2Cappsloveworld.com%29:3 0 19546 https:invstatic101.creativecdn.com:443:invstatic101.creativecdn.com:443::n:1691433445:h3:y:1688837857:n:^partitionKey=%28https%2Cappsloveworld.com%29:|n:y: +https:cf-assets.www.cloudflare.com:443:.:^partitionKey=%28https%2Ccloudflare.com%29:3 0 19547 https:cf-assets.www.cloudflare.com:443:cf-assets.www.cloudflare.com:443::n:1688967252:h3:y:1688877328:n:^partitionKey=%28https%2Ccloudflare.com%29:|n:y: +https:6807027b5b440bc6af963aae0d675311.safeframe.googlesyndication.com:443:.:^partitionKey=%28https%2Csystutorials.com%29:3 0 19545 https:6807027b5b440bc6af963aae0d675311.safeframe.googlesyndication.com:443:6807027b5b440bc6af963aae0d675311.safeframe.googlesyndication.com:443::n:1691360958:h3:y:1688768928:n:^partitionKey=%28https%2Csystutorials.com%29:|n:y: +https:cdn.jsdelivr.net:443:.:^partitionKey=%28https%2Crapidtables.com%29:3 0 19545 https:cdn.jsdelivr.net:443:cdn.jsdelivr.net:443::n:1688843116:h3:y:1688755069:n:^partitionKey=%28https%2Crapidtables.com%29:|n:y: +https:fonts.googleapis.com:443:.:^partitionKey=%28https%2Csystutorials.com%29:3 0 19545 https:fonts.googleapis.com:443:fonts.googleapis.com:443::n:1691360961:h3:y:1688768928:n:^partitionKey=%28https%2Csystutorials.com%29:|n:y: +https:imasdk.googleapis.com:443:.:^partitionKey=%28https%2Citsfoss.com%29:3 0 19547 https:imasdk.googleapis.com:443:imasdk.googleapis.com:443::n:1691468365:h3:y:1688874784:n:^partitionKey=%28https%2Citsfoss.com%29:|n:y: +https:ezodn.com:443:.::3 0 19547 https:ezodn.com:443:ezodn.com:443::n:1688987503:h3:y:1688891553:n::|n:y: +https:imasdk.googleapis.com:443:.:^partitionKey=%28https%2Cappsloveworld.com%29:3 0 19546 https:imasdk.googleapis.com:443:imasdk.googleapis.com:443::n:1691433446:h3:y:1688837857:n:^partitionKey=%28https%2Cappsloveworld.com%29:|n:y: +https:r5---sn-cu-nuoz.googlevideo.com:443:.:^partitionKey=%28https%2Ctecadmin.net%29:3 0 19546 https:r5---sn-cu-nuoz.googlevideo.com:443:r5---sn-cu-nuoz.googlevideo.com:443::n:1691432566:h3:y:1688837857:n:^partitionKey=%28https%2Ctecadmin.net%29:|n:y: +https:www.systutorials.com:443:.:^partitionKey=%28https%2Csystutorials.com%29:3 0 19545 https:www.systutorials.com:443:www.systutorials.com:443::n:1688855369:h3:y:1688768928:n:^partitionKey=%28https%2Csystutorials.com%29:|n:y: +https:ajax.googleapis.com:443:.:^partitionKey=%28https%2Cv.je%29:3 0 19548 https:ajax.googleapis.com:443:ajax.googleapis.com:443::n:1691607984:h3:y:1689015566:n:^partitionKey=%28https%2Cv.je%29:|n:y: +https:cdn.confiant-integrations.net:443:.:^partitionKey=%28https%2Cappsloveworld.com%29:3 0 19546 https:cdn.confiant-integrations.net:443:cdn.confiant-integrations.net:443::n:1688928061:h3:y:1688837857:n:^partitionKey=%28https%2Cappsloveworld.com%29:|n:y: +https:ml314.com:443:.:^partitionKey=%28https%2Cnvidia.com%29:3 0 19545 https:ml314.com:443:ml314.com:443::n:1691345049:h3:y:1688752771:n:^partitionKey=%28https%2Cnvidia.com%29:|n:y: +https:region1.google-analytics.com:443:.:^partitionKey=%28https%2Cawesomeopensource.com%29:3 0 19547 https:region1.google-analytics.com:443:region1.google-analytics.com:443::n:1691464712:h3:y:1688872585:n:^partitionKey=%28https%2Cawesomeopensource.com%29:|n:y: +https:googleads.g.doubleclick.net:443:.:^partitionKey=%28https%2Cappsloveworld.com%29:3 0 19546 https:googleads.g.doubleclick.net:443:googleads.g.doubleclick.net:443::n:1691433911:h3:y:1688837857:n:^partitionKey=%28https%2Cappsloveworld.com%29:|n:y: +https:www.google.com:443:.:^partitionKey=%28https%2Cappsloveworld.com%29:3 0 19546 https:www.google.com:443:www.google.com:443::n:1691433904:h3:y:1688837857:n:^partitionKey=%28https%2Cappsloveworld.com%29:|n:y: +https:services.vlitag.com:443:.:^partitionKey=%28https%2Ctecadmin.net%29:3 0 19546 https:services.vlitag.com:443:services.vlitag.com:443::n:1688926964:h3:y:1688837857:n:^partitionKey=%28https%2Ctecadmin.net%29:|n:y: +https:ka-f.fontawesome.com:443:.:^partitionKey=%28https%2Cv.je%29:3 0 19548 https:ka-f.fontawesome.com:443:ka-f.fontawesome.com:443::n:1689102384:h3:y:1689015566:n:^partitionKey=%28https%2Cv.je%29:|n:y: +https:cdn.pushcrew.com:443:.:^partitionKey=%28https%2Cnvidia.com%29:3 0 19545 https:cdn.pushcrew.com:443:cdn.pushcrew.com:443::n:1688839294:h3:y:1688752771:n:^partitionKey=%28https%2Cnvidia.com%29:|n:y: +https:sleeknotestaticcontent.sleeknote.com:443:.:^partitionKey=%28https%2Cbaeldung.com%29:3 0 19546 https:sleeknotestaticcontent.sleeknote.com:443:sleeknotestaticcontent.sleeknote.com:443::n:1688930354:h3:y:1688842468:n:^partitionKey=%28https%2Cbaeldung.com%29:|n:y: +https:www.google.com:443:.:^partitionKey=%28https%2Cstackoverflow.com%29:3 1 19547 https:www.google.com:443:www.google.com:443::n:1691462083:h3:y:1688842468:n:^partitionKey=%28https%2Cstackoverflow.com%29:|n:y: +https:privacy.gatekeeperconsent.com:443:.:^partitionKey=%28https%2Ciconarchive.com%29:3 0 19548 https:privacy.gatekeeperconsent.com:443:privacy.gatekeeperconsent.com:443::n:1689117912:h3:y:1689031473:n:^partitionKey=%28https%2Ciconarchive.com%29:|n:y: +https:www.google.com:443:.:^partitionKey=%28https%2Cubuntu.com%29:3 1 19547 https:www.google.com:443:www.google.com:443::n:1691459133:h3:y:1688837494:n:^partitionKey=%28https%2Cubuntu.com%29:|n:y: +https:oa.openxcdn.net:443:.:^partitionKey=%28https%2Ctutorialspoint.com%29:3 0 19547 https:oa.openxcdn.net:443:oa.openxcdn.net:443::n:1691462349:h3:y:1688868178:n:^partitionKey=%28https%2Ctutorialspoint.com%29:|n:y: +https:us-u.openx.net:443:.:^partitionKey=%28https%2Cappsloveworld.com%29:3 0 19546 https:us-u.openx.net:443:us-u.openx.net:443::n:1691433714:h3:y:1688837857:n:^partitionKey=%28https%2Cappsloveworld.com%29:|n:y: +https:pagead2.googlesyndication.com:443:.:^partitionKey=%28https%2Caskubuntu.com%29:3 2 19549 https:pagead2.googlesyndication.com:443:pagead2.googlesyndication.com:443::n:1691429499:h3:y:1688837494:n:^partitionKey=%28https%2Caskubuntu.com%29:|n:y: +https:id.rlcdn.com:443:.:^partitionKey=%28https%2Ctutorialspoint.com%29:3 0 19547 https:id.rlcdn.com:443:id.rlcdn.com:443::n:1691462354:h3:y:1688868178:n:^partitionKey=%28https%2Ctutorialspoint.com%29:|n:y: +https:www.gstatic.com:443:.:^partitionKey=%28https%2Cgoogle.com%29:3 2 19547 https:www.gstatic.com:443:www.gstatic.com:443::n:1691468304:h3:y:1688749048:n:^partitionKey=%28https%2Cgoogle.com%29:|n:y: +https:google-bidout-d.openx.net:443:.:^partitionKey=%28https%2Cappsloveworld.com%29:3 0 19546 https:google-bidout-d.openx.net:443:google-bidout-d.openx.net:443::n:1691433445:h3:y:1688837857:n:^partitionKey=%28https%2Cappsloveworld.com%29:|n:y: +https:www.google.com:443:.:^partitionKey=%28https%2Clastpass.com%29:3 0 19545 https:www.google.com:443:www.google.com:443::n:1691364582:h3:y:1688752771:n:^partitionKey=%28https%2Clastpass.com%29:|n:y: +https:htlb.casalemedia.com:443:.:^partitionKey=%28https%2Citsfoss.com%29:3 0 19547 https:htlb.casalemedia.com:443:htlb.casalemedia.com:443::n:1688962782:h3:y:1688874784:n:^partitionKey=%28https%2Citsfoss.com%29:|n:y: +https:js.stripe.com:443:.:^partitionKey=%28https%2Citsfoss.com%29:3 0 19547 https:js.stripe.com:443:js.stripe.com:443::n:1689029991:h3:y:1688874784:n:^partitionKey=%28https%2Citsfoss.com%29:|n:y: +https:revolt.chat:443:.:^partitionKey=%28https%2Crevolt.chat%29:3 0 19547 https:revolt.chat:443:revolt.chat:443::n:1688960734:h3:y:1688873798:n:^partitionKey=%28https%2Crevolt.chat%29:|n:y: +https:u.openx.net:443:.:^partitionKey=%28https%2Ctutorialspoint.com%29:3 0 19547 https:u.openx.net:443:u.openx.net:443::n:1691462354:h3:y:1688868178:n:^partitionKey=%28https%2Ctutorialspoint.com%29:|n:y: +https:imasdk.googleapis.com:443:.:^partitionKey=%28https%2Cbaeldung.com%29:3 0 19546 https:imasdk.googleapis.com:443:imasdk.googleapis.com:443::n:1691435960:h3:y:1688842468:n:^partitionKey=%28https%2Cbaeldung.com%29:|n:y: +https:nixos.wiki:443:.:^partitionKey=%28https%2Cwaydro.id%29:3 0 19547 https:nixos.wiki:443:nixos.wiki:443::n:1688989627:h3:y:1688902960:n:^partitionKey=%28https%2Cwaydro.id%29:|n:y: +https:developer.android.com:443:.:^partitionKey=%28https%2Candroid.com%29:3 0 19547 https:developer.android.com:443:developer.android.com:443::n:1691492822:h3:y:1688891553:n:^partitionKey=%28https%2Candroid.com%29:|n:y: +https:fundingchoicesmessages.google.com:443:.:^partitionKey=%28https%2Calternativeto.net%29:3 0 19547 https:fundingchoicesmessages.google.com:443:fundingchoicesmessages.google.com:443::n:1691465166:h3:y:1688872861:n:^partitionKey=%28https%2Calternativeto.net%29:|n:y: +https:open.spotify.com:443:.:^partitionKey=%28https%2Cspotify.com%29:3 0 19547 https:open.spotify.com:443:open.spotify.com:443::n:1691513775:h3:y:1688920622:n:^partitionKey=%28https%2Cspotify.com%29:|n:y: +https:www.googletagmanager.com:443:.:^partitionKey=%28https%2Cappsloveworld.com%29:3 0 19546 https:www.googletagmanager.com:443:www.googletagmanager.com:443::n:1691433441:h3:y:1688837857:n:^partitionKey=%28https%2Cappsloveworld.com%29:|n:y: +https:www.google.com:443:.:^partitionKey=%28https%2Cnvidia.co.uk%29:3 0 19545 https:www.google.com:443:www.google.com:443::n:1691345071:h3:y:1688752771:n:^partitionKey=%28https%2Cnvidia.co.uk%29:|n:y: +https:www.google.com:443:.::3 0 19547 https:www.google.com:443:www.google.com:443::n:1691525325:h3:y:1688930179:n::|n:y: +https:g.ezodn.com:443:.::3 0 19547 https:g.ezodn.com:443:g.ezodn.com:443::n:1688987504:h3:y:1688891553:n::|n:y: +https:www.googletagmanager.com:443:.:^partitionKey=%28https%2Cmozilla.org%29:3 0 19547 https:www.googletagmanager.com:443:www.googletagmanager.com:443::n:1691493993:h3:y:1688874784:n:^partitionKey=%28https%2Cmozilla.org%29:|n:y: +https:googleads.g.doubleclick.net:443:.:^partitionKey=%28https%2Ctutorialspoint.com%29:3 0 19547 https:googleads.g.doubleclick.net:443:googleads.g.doubleclick.net:443::n:1691462350:h3:y:1688868178:n:^partitionKey=%28https%2Ctutorialspoint.com%29:|n:y: +https:img.shields.io:443:.:^partitionKey=%28https%2Cawesomeopensource.com%29:3 0 19547 https:img.shields.io:443:img.shields.io:443::n:1688959109:h3:y:1688872585:n:^partitionKey=%28https%2Cawesomeopensource.com%29:|n:y: +https:cdnjs.cloudflare.com:443:.:^partitionKey=%28https%2Cadd0n.com%29:3 0 19547 https:cdnjs.cloudflare.com:443:cdnjs.cloudflare.com:443::n:1688962924:h3:y:1688874784:n:^partitionKey=%28https%2Cadd0n.com%29:|n:y: +https:apis.google.com:443:.:^partitionKey=%28https%2Cdocker.com%29:3 0 19547 https:apis.google.com:443:apis.google.com:443::n:1691483223:h3:y:1688891119:n:^partitionKey=%28https%2Cdocker.com%29:|n:y: +https:www.gstatic.com:443:.::3 1 19548 https:www.gstatic.com:443:www.gstatic.com:443::n:1691610146:h3:y:1688891119:n::|n:y: +https:encrypted-tbn0.gstatic.com:443:.:^partitionKey=%28https%2Calternativeto.net%29:3 0 19547 https:encrypted-tbn0.gstatic.com:443:encrypted-tbn0.gstatic.com:443::n:1691465164:h3:y:1688872861:n:^partitionKey=%28https%2Calternativeto.net%29:|n:y: +https:pythonawesome.com:443:.::3 0 19547 https:pythonawesome.com:443:pythonawesome.com:443::n:1688989549:h3:y:1688902960:n::|n:y: +https:connect.facebook.net:443:.:^partitionKey=%28https%2Cnvidia.com%29:3 0 19545 https:connect.facebook.net:443:connect.facebook.net:443::n:1688839282:h3:y:1688752771:n:^partitionKey=%28https%2Cnvidia.com%29:|n:y: +https:www.googletagservices.com:443:.:^partitionKey=%28https%2Cappsloveworld.com%29:3 0 19546 https:www.googletagservices.com:443:www.googletagservices.com:443::n:1691433660:h3:y:1688837857:n:^partitionKey=%28https%2Cappsloveworld.com%29:|n:y: +https:ssl.gstatic.com:443:.::3 0 19547 https:ssl.gstatic.com:443:ssl.gstatic.com:443::n:1691525325:h3:y:1688930179:n::|n:y: +https:i.ytimg.com:443:.:^partitionKey=%28https%2Crazer.com%29:3 0 19546 https:i.ytimg.com:443:i.ytimg.com:443::n:1691423891:h3:y:1688831685:n:^partitionKey=%28https%2Crazer.com%29:|n:y: +https:s0.2mdn.net:443:.:^partitionKey=%28https%2Ctutorialspoint.com%29:3 0 19547 https:s0.2mdn.net:443:s0.2mdn.net:443::n:1691462350:h3:y:1688868178:n:^partitionKey=%28https%2Ctutorialspoint.com%29:|n:y: +https:hyprland.org:443:.:^partitionKey=%28https%2Chyprland.org%29:3 2 19547 https:hyprland.org:443:hyprland.org:443::n:1689025036:h3:y:1688768928:n:^partitionKey=%28https%2Chyprland.org%29:|n:y: +https:www.linuxtechi.com:443:.::3 0 19547 https:www.linuxtechi.com:443:www.linuxtechi.com:443::n:1688987502:h3:y:1688891553:n::|n:y: +https:fonts.googleapis.com:443:.::3 1 19548 https:fonts.googleapis.com:443:fonts.googleapis.com:443::n:1691610148:h3:y:1688877328:n::|n:y: +https:api.spotify.com:443:.::3 0 19548 https:api.spotify.com:443:api.spotify.com:443::n:1691606465:h3:y:1689014089:n::|n:y: +https:fonts.gstatic.com:443:.:^partitionKey=%28https%2Cdavatorium.github.io%29:3 1 19547 https:fonts.gstatic.com:443:fonts.gstatic.com:443::n:1691429871:h3:y:1688837857:n:^partitionKey=%28https%2Cdavatorium.github.io%29:|n:y: +https:stats.g.doubleclick.net:443:.:^partitionKey=%28https%2Ckinsta.com%29:3 0 19547 https:stats.g.doubleclick.net:443:stats.g.doubleclick.net:443::n:1691468356:h3:y:1688874784:n:^partitionKey=%28https%2Ckinsta.com%29:|n:y: +https:aac402a0bb33d6ee6d9711e5ea0ec18e.safeframe.googlesyndication.com:443:.:^partitionKey=%28https%2Cstackexchange.com%29:3 0 19546 https:aac402a0bb33d6ee6d9711e5ea0ec18e.safeframe.googlesyndication.com:443:aac402a0bb33d6ee6d9711e5ea0ec18e.safeframe.googlesyndication.com:443::n:1691424339:h3:y:1688832195:n:^partitionKey=%28https%2Cstackexchange.com%29:|n:y: +https:oa.openxcdn.net:443:.:^partitionKey=%28https%2Citsfoss.com%29:3 0 19547 https:oa.openxcdn.net:443:oa.openxcdn.net:443::n:1691468362:h3:y:1688874784:n:^partitionKey=%28https%2Citsfoss.com%29:|n:y: +https:ade.googlesyndication.com:443:.:^partitionKey=%28https%2Cappsloveworld.com%29:3 0 19546 https:ade.googlesyndication.com:443:ade.googlesyndication.com:443::n:1691433682:h3:y:1688837857:n:^partitionKey=%28https%2Cappsloveworld.com%29:|n:y: +https:o1000929.ingest.sentry.io:443:.::3 0 19547 https:o1000929.ingest.sentry.io:443:o1000929.ingest.sentry.io:443::n:1691495228:h3:y:1688902960:n::|n:y: +https:pagead2.googlesyndication.com:443:.:^partitionKey=%28https%2Crapidtables.com%29:3 0 19545 https:pagead2.googlesyndication.com:443:pagead2.googlesyndication.com:443::n:1691348718:h3:y:1688755069:n:^partitionKey=%28https%2Crapidtables.com%29:|n:y: +https:fonts.gstatic.com:443:.:^partitionKey=%28https%2Cappsloveworld.com%29:3 0 19546 https:fonts.gstatic.com:443:fonts.gstatic.com:443::n:1691433660:h3:y:1688837857:n:^partitionKey=%28https%2Cappsloveworld.com%29:|n:y: +https:ad.doubleclick.net:443:.:^partitionKey=%28https%2Cappsloveworld.com%29:3 0 19546 https:ad.doubleclick.net:443:ad.doubleclick.net:443::n:1691433901:h3:y:1688837857:n:^partitionKey=%28https%2Cappsloveworld.com%29:|n:y: +https:s0.2mdn.net:443:.:^partitionKey=%28https%2Ctecadmin.net%29:3 0 19546 https:s0.2mdn.net:443:s0.2mdn.net:443::n:1691432624:h3:y:1688837857:n:^partitionKey=%28https%2Ctecadmin.net%29:|n:y: +https:pagead2.googlesyndication.com:443:.:^partitionKey=%28https%2Chowtogeek.com%29:3 2 19548 https:pagead2.googlesyndication.com:443:pagead2.googlesyndication.com:443::n:1691348169:h3:y:1688755069:n:^partitionKey=%28https%2Chowtogeek.com%29:|n:y: +https:creative.statics.indeed.com:443:.:^partitionKey=%28https%2Cstackoverflow.com%29:3 1 19547 https:creative.statics.indeed.com:443:creative.statics.indeed.com:443::n:1688956724:h3:y:1688842468:n:^partitionKey=%28https%2Cstackoverflow.com%29:|n:y: +https:s0.2mdn.net:443:.:^partitionKey=%28https%2Chowtogeek.com%29:3 2 19548 https:s0.2mdn.net:443:s0.2mdn.net:443::n:1691348164:h3:y:1688755069:n:^partitionKey=%28https%2Chowtogeek.com%29:|n:y: +https:quickref.me:443:.:^partitionKey=%28https%2Cquickref.me%29:3 0 19548 https:quickref.me:443:quickref.me:443::n:1689093582:h3:y:1689006792:n:^partitionKey=%28https%2Cquickref.me%29:|n:y: +https:fonts.googleapis.com:443:.:^partitionKey=%28https%2Cdiscord.com%29:3 0 19548 https:fonts.googleapis.com:443:fonts.googleapis.com:443::n:1691605605:h3:y:1689013223:n:^partitionKey=%28https%2Cdiscord.com%29:|n:y: +https:go.ezodn.com:443:.::3 0 19547 https:go.ezodn.com:443:go.ezodn.com:443::n:1688987502:h3:y:1688891553:n::|n:y: +https:discordapp.com:443:.:^partitionKey=%28https%2Cdiscordapp.com%29:3 0 19546 https:discordapp.com:443:discordapp.com:443::n:1688917925:h3:y:1688831522:n:^partitionKey=%28https%2Cdiscordapp.com%29:|n:y: +https:fonts.gstatic.com:443:.:^partitionKey=%28https%2Ckeepfloyding.github.io%29:3 0 19546 https:fonts.gstatic.com:443:fonts.gstatic.com:443::n:1691430214:h3:y:1688837857:n:^partitionKey=%28https%2Ckeepfloyding.github.io%29:|n:y: +https:u.openx.net:443:.:^partitionKey=%28https%2Cbaeldung.com%29:3 0 19546 https:u.openx.net:443:u.openx.net:443::n:1691435959:h3:y:1688842468:n:^partitionKey=%28https%2Cbaeldung.com%29:|n:y: +https:ajax.googleapis.com:443:.:^partitionKey=%28https%2Citsfoss.com%29:3 0 19547 https:ajax.googleapis.com:443:ajax.googleapis.com:443::n:1691468353:h3:y:1688874784:n:^partitionKey=%28https%2Citsfoss.com%29:|n:y: +https:pushcrew.com:443:.:^partitionKey=%28https%2Cnvidia.com%29:3 0 19545 https:pushcrew.com:443:pushcrew.com:443::n:1691344894:h3:y:1688752771:n:^partitionKey=%28https%2Cnvidia.com%29:|n:y: +https:www.google.com:443:.:^partitionKey=%28https%2Calternativeto.net%29:3 0 19547 https:www.google.com:443:www.google.com:443::n:1691465164:h3:y:1688872861:n:^partitionKey=%28https%2Calternativeto.net%29:|n:y: +https:fonts.gstatic.com:443:.:^partitionKey=%28https%2C127.0.0.1%29:3 0 19548 https:fonts.gstatic.com:443:fonts.gstatic.com:443::n:1691607576:h3:y:1689015566:n:^partitionKey=%28https%2C127.0.0.1%29:|n:y: +https:googleads.g.doubleclick.net:443:.:^partitionKey=%28https%2Crazer.com%29:3 0 19546 https:googleads.g.doubleclick.net:443:googleads.g.doubleclick.net:443::n:1691423891:h3:y:1688831685:n:^partitionKey=%28https%2Crazer.com%29:|n:y: +https:api.intentiq.com:443:.:^partitionKey=%28https%2Citsfoss.com%29:3 0 19547 https:api.intentiq.com:443:api.intentiq.com:443::n:1688962761:h3:y:1688874784:n:^partitionKey=%28https%2Citsfoss.com%29:|n:y: +https:u.openx.net:443:.:^partitionKey=%28https%2Chowtogeek.com%29:3 0 19545 https:u.openx.net:443:u.openx.net:443::n:1691348162:h3:y:1688755069:n:^partitionKey=%28https%2Chowtogeek.com%29:|n:y: +https:0f947fc1968c24a371d80d82c2768ce1.safeframe.googlesyndication.com:443:.:^partitionKey=%28https%2Cappsloveworld.com%29:3 0 19546 https:0f947fc1968c24a371d80d82c2768ce1.safeframe.googlesyndication.com:443:0f947fc1968c24a371d80d82c2768ce1.safeframe.googlesyndication.com:443::n:1691433712:h3:y:1688837857:n:^partitionKey=%28https%2Cappsloveworld.com%29:|n:y: +https:cdn.jsdelivr.net:443:.:^partitionKey=%28https%2Cparsec.app%29:3 0 19547 https:cdn.jsdelivr.net:443:cdn.jsdelivr.net:443::n:1688960523:h3:y:1688873798:n:^partitionKey=%28https%2Cparsec.app%29:|n:y: +https:api.rlcdn.com:443:.:^partitionKey=%28https%2Cbaeldung.com%29:3 0 19546 https:api.rlcdn.com:443:api.rlcdn.com:443::n:1691435955:h3:y:1688842468:n:^partitionKey=%28https%2Cbaeldung.com%29:|n:y: +https:ade.googlesyndication.com:443:.:^partitionKey=%28https%2Ctecadmin.net%29:3 0 19546 https:ade.googlesyndication.com:443:ade.googlesyndication.com:443::n:1691432864:h3:y:1688837857:n:^partitionKey=%28https%2Ctecadmin.net%29:|n:y: +https:capi.connatix.com:443:.:^partitionKey=%28https%2Cshellscript.sh%29:3 0 19546 https:capi.connatix.com:443:capi.connatix.com:443::n:1688930127:h3:y:1688842468:n:^partitionKey=%28https%2Cshellscript.sh%29:|n:y: +https:googleads4.g.doubleclick.net:443:.:^partitionKey=%28https%2Ctutorialspoint.com%29:3 0 19547 https:googleads4.g.doubleclick.net:443:googleads4.g.doubleclick.net:443::n:1691462350:h3:y:1688868178:n:^partitionKey=%28https%2Ctutorialspoint.com%29:|n:y: +https:the.gatekeeperconsent.com:443:.:^partitionKey=%28https%2Cshellscript.sh%29:3 0 19546 https:the.gatekeeperconsent.com:443:the.gatekeeperconsent.com:443::n:1688930117:h3:y:1688842468:n:^partitionKey=%28https%2Cshellscript.sh%29:|n:y: +https:fonts.gstatic.com:443:.:^partitionKey=%28https%2Cpinetools.com%29:3 1 19549 https:fonts.gstatic.com:443:fonts.gstatic.com:443::n:1691624363:h3:y:1689031473:n:^partitionKey=%28https%2Cpinetools.com%29:|n:y: +https:fonts.gstatic.com:443:.:^partitionKey=%28https%2Calternativeto.net%29:3 0 19547 https:fonts.gstatic.com:443:fonts.gstatic.com:443::n:1691465165:h3:y:1688872861:n:^partitionKey=%28https%2Calternativeto.net%29:|n:y: +https:fonts.gstatic.com:443:.:^partitionKey=%28https%2Crazer.com%29:3 0 19546 https:fonts.gstatic.com:443:fonts.gstatic.com:443::n:1691423891:h3:y:1688831685:n:^partitionKey=%28https%2Crazer.com%29:|n:y: +https:optimise.net:443:.:^partitionKey=%28https%2Citsfoss.com%29:3 0 19547 https:optimise.net:443:optimise.net:443::n:1691468360:h3:y:1688874784:n:^partitionKey=%28https%2Citsfoss.com%29:|n:y: +https:region1.google-analytics.com:443:.:^partitionKey=%28https%2Cstackexchange.com%29:3 1 19546 https:region1.google-analytics.com:443:region1.google-analytics.com:443::n:1691436162:h3:y:1688772412:n:^partitionKey=%28https%2Cstackexchange.com%29:|n:y: +https:privacy.gatekeeperconsent.com:443:.:^partitionKey=%28https%2Cshellscript.sh%29:3 0 19546 https:privacy.gatekeeperconsent.com:443:privacy.gatekeeperconsent.com:443::n:1688930117:h3:y:1688842468:n:^partitionKey=%28https%2Cshellscript.sh%29:|n:y: +https:stats.g.doubleclick.net:443:.:^partitionKey=%28https%2Citsfoss.com%29:3 0 19547 https:stats.g.doubleclick.net:443:stats.g.doubleclick.net:443::n:1691468364:h3:y:1688874784:n:^partitionKey=%28https%2Citsfoss.com%29:|n:y: +https:app.gitbook.com:443:.::3 0 19547 https:app.gitbook.com:443:app.gitbook.com:443::n:1688989627:h3:y:1688902960:n::|n:y: +https:support.mozilla.org:443:.:^partitionKey=%28https%2Cmozilla.org%29:3 0 19547 https:support.mozilla.org:443:support.mozilla.org:443::n:1691493992:h3:y:1688874784:n:^partitionKey=%28https%2Cmozilla.org%29:|n:y: +https:www.gstatic.com:443:.:^partitionKey=%28https%2Cspotify.com%29:3 0 19547 https:www.gstatic.com:443:www.gstatic.com:443::n:1691513771:h3:y:1688920622:n:^partitionKey=%28https%2Cspotify.com%29:|n:y: +https:www.cyberciti.biz:443:.:^partitionKey=%28https%2Ccyberciti.biz%29:3 0 19546 https:www.cyberciti.biz:443:www.cyberciti.biz:443::n:1688930673:h3:y:1688837857:n:^partitionKey=%28https%2Ccyberciti.biz%29:|n:y: +https:forms.hsforms.com:443:.:^partitionKey=%28https%2Cparsec.app%29:3 0 19547 https:forms.hsforms.com:443:forms.hsforms.com:443::n:1688960724:h3:y:1688873798:n:^partitionKey=%28https%2Cparsec.app%29:|n:y: +https:s-v6exp1-ds.metric.gstatic.com:443:.:^partitionKey=%28https%2Cgoogle.com%29:3 0 19545 https:s-v6exp1-ds.metric.gstatic.com:443:s-v6exp1-ds.metric.gstatic.com:443::n:1691363000:h3:y:1688770906:n:^partitionKey=%28https%2Cgoogle.com%29:|n:y: +https:pubads.g.doubleclick.net:443:.:^partitionKey=%28https%2Csystutorials.com%29:3 0 19545 https:pubads.g.doubleclick.net:443:pubads.g.doubleclick.net:443::n:1691360962:h3:y:1688768928:n:^partitionKey=%28https%2Csystutorials.com%29:|n:y: +https:pagead2.googlesyndication.com:443:.:^partitionKey=%28https%2Cmankier.com%29:3 1 19547 https:pagead2.googlesyndication.com:443:pagead2.googlesyndication.com:443::n:1691459166:h3:y:1688837857:n:^partitionKey=%28https%2Cmankier.com%29:|n:y: +https:30b09d6b6b40721fcf5b704945034c78.safeframe.googlesyndication.com:443:.:^partitionKey=%28https%2Cstackoverflow.com%29:3 0 19546 https:30b09d6b6b40721fcf5b704945034c78.safeframe.googlesyndication.com:443:30b09d6b6b40721fcf5b704945034c78.safeframe.googlesyndication.com:443::n:1691434534:h3:y:1688842468:n:^partitionKey=%28https%2Cstackoverflow.com%29:|n:y: +https:www.google.com:443:.:^partitionKey=%28https%2Cbaeldung.com%29:3 0 19546 https:www.google.com:443:www.google.com:443::n:1691435958:h3:y:1688842468:n:^partitionKey=%28https%2Cbaeldung.com%29:|n:y: +https:htlb.casalemedia.com:443:.:^partitionKey=%28https%2Csystutorials.com%29:3 0 19545 https:htlb.casalemedia.com:443:htlb.casalemedia.com:443::n:1688855364:h3:y:1688768928:n:^partitionKey=%28https%2Csystutorials.com%29:|n:y: +https:oajs.openx.net:443:.:^partitionKey=%28https%2Cappsloveworld.com%29:3 0 19546 https:oajs.openx.net:443:oajs.openx.net:443::n:1691433445:h3:y:1688837857:n:^partitionKey=%28https%2Cappsloveworld.com%29:|n:y: +https:sb-ssl.google.com:443:.:^firstPartyDomain=safebrowsing.86868755-6b82-4842-b301-72671a0db32e.mozilla:3 0 19545 https:sb-ssl.google.com:443:sb-ssl.google.com:443::n:1691364620:h3:y:1688755069:n:^firstPartyDomain=safebrowsing.86868755-6b82-4842-b301-72671a0db32e.mozilla:|n:y: +https:api.hubapi.com:443:.:^partitionKey=%28https%2Cparsec.app%29:3 0 19547 https:api.hubapi.com:443:api.hubapi.com:443::n:1688960524:h3:y:1688873798:n:^partitionKey=%28https%2Cparsec.app%29:|n:y: +https:learn.content.blackboardcdn.com:443:.::3 0 19548 https:learn.content.blackboardcdn.com:443:learn.content.blackboardcdn.com:443::n:1689102209:h3:y:1689015566:n::|n:y: +https:5e8894ab3808cecb370f09981b14be61.safeframe.googlesyndication.com:443:.:^partitionKey=%28https%2Ctecadmin.net%29:3 0 19546 https:5e8894ab3808cecb370f09981b14be61.safeframe.googlesyndication.com:443:5e8894ab3808cecb370f09981b14be61.safeframe.googlesyndication.com:443::n:1691432566:h3:y:1688837857:n:^partitionKey=%28https%2Ctecadmin.net%29:|n:y: +https:www.googleadservices.com:443:.:^partitionKey=%28https%2Cgoogleadservices.com%29:3 0 19545 https:www.googleadservices.com:443:www.googleadservices.com:443::n:1691362100:h3:y:1688752771:n:^partitionKey=%28https%2Cgoogleadservices.com%29:|n:y: +https:cdn.jsdelivr.net:443:.:^partitionKey=%28https%2Csystutorials.com%29:3 0 19545 https:cdn.jsdelivr.net:443:cdn.jsdelivr.net:443::n:1688855358:h3:y:1688768928:n:^partitionKey=%28https%2Csystutorials.com%29:|n:y: +https:fonts.googleapis.com:443:.:^partitionKey=%28https%2Csparkjava.com%29:3 0 19547 https:fonts.googleapis.com:443:fonts.googleapis.com:443::n:1691471662:h3:y:1688877328:n:^partitionKey=%28https%2Csparkjava.com%29:|n:y: +https:www.googletagmanager.com:443:.:^partitionKey=%28https%2Csmarttech101.com%29:3 0 19546 https:www.googletagmanager.com:443:www.googletagmanager.com:443::n:1691431937:h3:y:1688837857:n:^partitionKey=%28https%2Csmarttech101.com%29:|n:y: +https:region1.google-analytics.com:443:.:^partitionKey=%28https%2Ctutorialspoint.com%29:3 0 19547 https:region1.google-analytics.com:443:region1.google-analytics.com:443::n:1691462360:h3:y:1688868178:n:^partitionKey=%28https%2Ctutorialspoint.com%29:|n:y: +https:imasdk.googleapis.com:443:.:^partitionKey=%28https%2Ctecadmin.net%29:3 0 19546 https:imasdk.googleapis.com:443:imasdk.googleapis.com:443::n:1691432564:h3:y:1688837857:n:^partitionKey=%28https%2Ctecadmin.net%29:|n:y: +https:img.shields.io:443:.:^partitionKey=%28https%2Csimplelogin.io%29:3 0 19547 https:img.shields.io:443:img.shields.io:443::n:1688962673:h3:y:1688874784:n:^partitionKey=%28https%2Csimplelogin.io%29:|n:y: +https:odr.mookie1.com:443:.:^partitionKey=%28https%2Ctecadmin.net%29:3 0 19546 https:odr.mookie1.com:443:odr.mookie1.com:443::n:1691432570:h3:y:1688837857:n:^partitionKey=%28https%2Ctecadmin.net%29:|n:y: +https:securepubads.g.doubleclick.net:443:.:^partitionKey=%28https%2Cappsloveworld.com%29:3 0 19546 https:securepubads.g.doubleclick.net:443:securepubads.g.doubleclick.net:443::n:1691433911:h3:y:1688837857:n:^partitionKey=%28https%2Cappsloveworld.com%29:|n:y: +https:stats.g.doubleclick.net:443:.:^partitionKey=%28https%2Clastpass.com%29:3 0 19545 https:stats.g.doubleclick.net:443:stats.g.doubleclick.net:443::n:1691364421:h3:y:1688752771:n:^partitionKey=%28https%2Clastpass.com%29:|n:y: +https:fonts.gstatic.com:443:.:^partitionKey=%28https%2Csystutorials.com%29:3 0 19545 https:fonts.gstatic.com:443:fonts.gstatic.com:443::n:1691360961:h3:y:1688768928:n:^partitionKey=%28https%2Csystutorials.com%29:|n:y: +https:cm.g.doubleclick.net:443:.:^partitionKey=%28https%2Ctutorialspoint.com%29:3 0 19547 https:cm.g.doubleclick.net:443:cm.g.doubleclick.net:443::n:1691462355:h3:y:1688868178:n:^partitionKey=%28https%2Ctutorialspoint.com%29:|n:y: +https:js.stripe.com:443:.:^partitionKey=%28https%2C101computing.net%29:3 0 19548 https:js.stripe.com:443:js.stripe.com:443::n:1689104546:h3:y:1689018121:n:^partitionKey=%28https%2C101computing.net%29:|n:y: +https:www.google.com:443:.:^partitionKey=%28https%2Cgoogle.com%29:3 2 19547 https:www.google.com:443:www.google.com:443::n:1691525326:h3:y:1688749048:n:^partitionKey=%28https%2Cgoogle.com%29:|n:y: +https:imasdk.googleapis.com:443:.:^partitionKey=%28https%2Chowtogeek.com%29:3 2 19548 https:imasdk.googleapis.com:443:imasdk.googleapis.com:443::n:1691605581:h3:y:1688755069:n:^partitionKey=%28https%2Chowtogeek.com%29:|n:y: +https:cdn.ampproject.org:443:.:^partitionKey=%28https%2Ctecadmin.net%29:3 0 19546 https:cdn.ampproject.org:443:cdn.ampproject.org:443::n:1691432567:h3:y:1688837857:n:^partitionKey=%28https%2Ctecadmin.net%29:|n:y: +https:eu-u.openx.net:443:.:^partitionKey=%28https%2Ctecadmin.net%29:3 0 19546 https:eu-u.openx.net:443:eu-u.openx.net:443::n:1691432569:h3:y:1688837857:n:^partitionKey=%28https%2Ctecadmin.net%29:|n:y: +https:s0.2mdn.net:443:.:^partitionKey=%28https%2Cshellscript.sh%29:3 0 19546 https:s0.2mdn.net:443:s0.2mdn.net:443::n:1691435796:h3:y:1688842468:n:^partitionKey=%28https%2Cshellscript.sh%29:|n:y: +https:www.cloudflare.com:443:.::3 0 19547 https:www.cloudflare.com:443:www.cloudflare.com:443::n:1688967251:h3:y:1688877328:n::|n:y: +https:securepubads.g.doubleclick.net:443:.:^partitionKey=%28https%2Cstackexchange.com%29:3 3 19549 https:securepubads.g.doubleclick.net:443:securepubads.g.doubleclick.net:443::n:1691436124:h3:y:1688837857:n:^partitionKey=%28https%2Cstackexchange.com%29:|n:y: +https:ajax.googleapis.com:443:.:^userContextId=5&partitionKey=%28https%2Cv.je%29:3 0 19548 https:ajax.googleapis.com:443:ajax.googleapis.com:443::n:1691608766:h3:y:1689015566:n:^userContextId=5&partitionKey=%28https%2Cv.je%29:|n:y: +https:www.googletagmanager.com:443:.:^partitionKey=%28https%2Cbaeldung.com%29:3 0 19546 https:www.googletagmanager.com:443:www.googletagmanager.com:443::n:1691435953:h3:y:1688842468:n:^partitionKey=%28https%2Cbaeldung.com%29:|n:y: +https:events.apester.com:443:.:^partitionKey=%28https%2Citsfoss.com%29:3 0 19547 https:events.apester.com:443:events.apester.com:443::n:1691468387:h3:y:1688874784:n:^partitionKey=%28https%2Citsfoss.com%29:|n:y: +https:www.google.com:443:.:^partitionKey=%28https%2Ctecadmin.net%29:3 0 19546 https:www.google.com:443:www.google.com:443::n:1691432594:h3:y:1688837857:n:^partitionKey=%28https%2Ctecadmin.net%29:|n:y: +https:invstatic101.creativecdn.com:443:.:^partitionKey=%28https%2Citsfoss.com%29:3 0 19547 https:invstatic101.creativecdn.com:443:invstatic101.creativecdn.com:443::n:1691468364:h3:y:1688874784:n:^partitionKey=%28https%2Citsfoss.com%29:|n:y: +https:sync.intentiq.com:443:.:^partitionKey=%28https%2Ctutorialspoint.com%29:3 0 19547 https:sync.intentiq.com:443:sync.intentiq.com:443::n:1688956755:h3:y:1688868178:n:^partitionKey=%28https%2Ctutorialspoint.com%29:|n:y: +https:google-bidout-d.openx.net:443:.:^partitionKey=%28https%2Chowtogeek.com%29:3 0 19545 https:google-bidout-d.openx.net:443:google-bidout-d.openx.net:443::n:1691348160:h3:y:1688755069:n:^partitionKey=%28https%2Chowtogeek.com%29:|n:y: +https:googleads.g.doubleclick.net:443:.:^partitionKey=%28https%2Citsfoss.com%29:3 0 19547 https:googleads.g.doubleclick.net:443:googleads.g.doubleclick.net:443::n:1691468366:h3:y:1688874784:n:^partitionKey=%28https%2Citsfoss.com%29:|n:y: +https:csi.gstatic.com:443:.:^partitionKey=%28https%2Cshellscript.sh%29:3 0 19546 https:csi.gstatic.com:443:csi.gstatic.com:443::n:1691435799:h3:y:1688842468:n:^partitionKey=%28https%2Cshellscript.sh%29:|n:y: +https:www.googletagmanager.com:443:.:^partitionKey=%28https%2Ctecadmin.net%29:3 0 19546 https:www.googletagmanager.com:443:www.googletagmanager.com:443::n:1691432562:h3:y:1688837857:n:^partitionKey=%28https%2Ctecadmin.net%29:|n:y: +https:g.ezodn.com:443:.:^partitionKey=%28https%2Csystutorials.com%29:3 0 19545 https:g.ezodn.com:443:g.ezodn.com:443::n:1688855357:h3:y:1688768928:n:^partitionKey=%28https%2Csystutorials.com%29:|n:y: +https:cdn.add0n.com:443:.::3 0 19547 https:cdn.add0n.com:443:cdn.add0n.com:443::n:1688962924:h3:y:1688874784:n::|n:y: +https:fonts.googleapis.com:443:.:^partitionKey=%28https%2Cstackoverflow.com%29:3 0 19546 https:fonts.googleapis.com:443:fonts.googleapis.com:443::n:1691434534:h3:y:1688842468:n:^partitionKey=%28https%2Cstackoverflow.com%29:|n:y: +https:id.a-mx.com:443:.:^partitionKey=%28https%2Cshellscript.sh%29:3 0 19546 https:id.a-mx.com:443:id.a-mx.com:443::n:1688930128:h3:y:1688842468:n:^partitionKey=%28https%2Cshellscript.sh%29:|n:y: +https:ezodn.com:443:.:^partitionKey=%28https%2Cshellscript.sh%29:3 0 19546 https:ezodn.com:443:ezodn.com:443::n:1688930117:h3:y:1688842468:n:^partitionKey=%28https%2Cshellscript.sh%29:|n:y: +https:www.googletagservices.com:443:.:^partitionKey=%28https%2Cbaeldung.com%29:3 0 19546 https:www.googletagservices.com:443:www.googletagservices.com:443::n:1691435960:h3:y:1688842468:n:^partitionKey=%28https%2Cbaeldung.com%29:|n:y: +https:u.openx.net:443:.:^partitionKey=%28https%2Ctecadmin.net%29:3 0 19546 https:u.openx.net:443:u.openx.net:443::n:1691432569:h3:y:1688837857:n:^partitionKey=%28https%2Ctecadmin.net%29:|n:y: +https:e7268c0d3215e62f8350c08a5a9f80d0.safeframe.googlesyndication.com:443:.:^partitionKey=%28https%2Cappsloveworld.com%29:3 0 19546 https:e7268c0d3215e62f8350c08a5a9f80d0.safeframe.googlesyndication.com:443:e7268c0d3215e62f8350c08a5a9f80d0.safeframe.googlesyndication.com:443::n:1691433903:h3:y:1688837857:n:^partitionKey=%28https%2Cappsloveworld.com%29:|n:y: +https:streaming.humix.com:443:.:^partitionKey=%28https%2Csystutorials.com%29:3 0 19545 https:streaming.humix.com:443:streaming.humix.com:443::n:1688855362:h3:y:1688768928:n:^partitionKey=%28https%2Csystutorials.com%29:|n:y: +https:tr.blismedia.com:443:.:^partitionKey=%28https%2Ctecadmin.net%29:3 0 19546 https:tr.blismedia.com:443:tr.blismedia.com:443::n:1691432596:h3:y:1688837857:n:^partitionKey=%28https%2Ctecadmin.net%29:|n:y: +https:www.googletagmanager.com:443:.:^partitionKey=%28https%2Cstackexchange.com%29:3 3 19549 https:www.googletagmanager.com:443:www.googletagmanager.com:443::n:1691436123:h3:y:1688832195:n:^partitionKey=%28https%2Cstackexchange.com%29:|n:y: +https:accounts.spotify.com:443:.:^userContextId=5&partitionKey=%28https%2Cspotify.com%29:3 0 19547 https:accounts.spotify.com:443:accounts.spotify.com:443::n:1691532279:h3:y:1688938778:n:^userContextId=5&partitionKey=%28https%2Cspotify.com%29:|n:y: +https:securepubads.g.doubleclick.net:443:.:^partitionKey=%28https%2Csystutorials.com%29:3 0 19545 https:securepubads.g.doubleclick.net:443:securepubads.g.doubleclick.net:443::n:1691360969:h3:y:1688768928:n:^partitionKey=%28https%2Csystutorials.com%29:|n:y: +https:fundingchoicesmessages.google.com:443:.:^partitionKey=%28https%2Ctecadmin.net%29:3 0 19546 https:fundingchoicesmessages.google.com:443:fundingchoicesmessages.google.com:443::n:1691432565:h3:y:1688837857:n:^partitionKey=%28https%2Ctecadmin.net%29:|n:y: +https:region1.google-analytics.com:443:.:^partitionKey=%28https%2Caskubuntu.com%29:3 0 19546 https:region1.google-analytics.com:443:region1.google-analytics.com:443::n:1691429588:h3:y:1688837494:n:^partitionKey=%28https%2Caskubuntu.com%29:|n:y: +https:www.google.co.uk:443:.:^partitionKey=%28https%2Chowtogeek.com%29:3 0 19545 https:www.google.co.uk:443:www.google.co.uk:443::n:1691348155:h3:y:1688755069:n:^partitionKey=%28https%2Chowtogeek.com%29:|n:y: +https:www.googletagmanager.com:443:.:^partitionKey=%28https%2Crapidtables.com%29:3 0 19545 https:www.googletagmanager.com:443:www.googletagmanager.com:443::n:1691348714:h3:y:1688755069:n:^partitionKey=%28https%2Crapidtables.com%29:|n:y: +https:status.discord.com:443:.:^partitionKey=%28https%2Cdiscord.com%29:3 0 19548 https:status.discord.com:443:status.discord.com:443::n:1689100944:h3:y:1689014089:n:^partitionKey=%28https%2Cdiscord.com%29:|n:y: +https:www.youtube.com:443:.:^partitionKey=%28https%2Cgoogle.com%29:3 2 19547 https:www.youtube.com:443:www.youtube.com:443::n:1691468357:h3:y:1688749048:n:^partitionKey=%28https%2Cgoogle.com%29:|n:y: +https:s0.2mdn.net:443:.:^partitionKey=%28https%2Cstackoverflow.com%29:3 0 19546 https:s0.2mdn.net:443:s0.2mdn.net:443::n:1691434534:h3:y:1688842468:n:^partitionKey=%28https%2Cstackoverflow.com%29:|n:y: +https:gew1-spclient.spotify.com:443:.:^userContextId=5&partitionKey=%28https%2Cspotify.com%29:3 0 19547 https:gew1-spclient.spotify.com:443:gew1-spclient.spotify.com:443::n:1691532279:h3:y:1688938778:n:^userContextId=5&partitionKey=%28https%2Cspotify.com%29:|n:y: +https:fonts.googleapis.com:443:.:^partitionKey=%28https%2Cv.je%29:3 0 19548 https:fonts.googleapis.com:443:fonts.googleapis.com:443::n:1691607586:h3:y:1689015566:n:^partitionKey=%28https%2Cv.je%29:|n:y: +https:googleads.g.doubleclick.net:443:.:^partitionKey=%28https%2Cstackexchange.com%29:3 0 19546 https:googleads.g.doubleclick.net:443:googleads.g.doubleclick.net:443::n:1691433706:h3:y:1688837857:n:^partitionKey=%28https%2Cstackexchange.com%29:|n:y: +https:fonts.googleapis.com:443:.:^partitionKey=%28https%2Cwaydro.id%29:3 0 19547 https:fonts.googleapis.com:443:fonts.googleapis.com:443::n:1691492944:h3:y:1688891553:n:^partitionKey=%28https%2Cwaydro.id%29:|n:y: +https:csi.gstatic.com:443:.:^partitionKey=%28https%2Cbaeldung.com%29:3 0 19546 https:csi.gstatic.com:443:csi.gstatic.com:443::n:1691436116:h3:y:1688842468:n:^partitionKey=%28https%2Cbaeldung.com%29:|n:y: +https:id.rlcdn.com:443:.:^partitionKey=%28https%2Chowtogeek.com%29:3 0 19545 https:id.rlcdn.com:443:id.rlcdn.com:443::n:1691348161:h3:y:1688755069:n:^partitionKey=%28https%2Chowtogeek.com%29:|n:y: +https:adservice.google.com:443:.:^partitionKey=%28https%2Cstackexchange.com%29:3 0 19546 https:adservice.google.com:443:adservice.google.com:443::n:1691436124:h3:y:1688837857:n:^partitionKey=%28https%2Cstackexchange.com%29:|n:y: +https:securepubads.g.doubleclick.net:443:.:^partitionKey=%28https%2Cshellscript.sh%29:3 0 19546 https:securepubads.g.doubleclick.net:443:securepubads.g.doubleclick.net:443::n:1691435798:h3:y:1688842468:n:^partitionKey=%28https%2Cshellscript.sh%29:|n:y: +https:maxcdn.bootstrapcdn.com:443:.::3 0 19548 https:maxcdn.bootstrapcdn.com:443:maxcdn.bootstrapcdn.com:443::n:1689103205:h3:y:1689015566:n::|n:y: +https:google-bidout-d.openx.net:443:.:^partitionKey=%28https%2Crapidtables.com%29:3 0 19545 https:google-bidout-d.openx.net:443:google-bidout-d.openx.net:443::n:1691348716:h3:y:1688755069:n:^partitionKey=%28https%2Crapidtables.com%29:|n:y: +https:img.connatix.com:443:.:^partitionKey=%28https%2Cappsloveworld.com%29:3 0 19546 https:img.connatix.com:443:img.connatix.com:443::n:1688927847:h3:y:1688837857:n:^partitionKey=%28https%2Cappsloveworld.com%29:|n:y: +https:fonts.googleapis.com:443:.:^partitionKey=%28https%2Cnvidia.com%29:3 0 19545 https:fonts.googleapis.com:443:fonts.googleapis.com:443::n:1691344878:h3:y:1688752771:n:^partitionKey=%28https%2Cnvidia.com%29:|n:y: +https:tpc.googlesyndication.com:443:.:^partitionKey=%28https%2Caskubuntu.com%29:3 0 19546 https:tpc.googlesyndication.com:443:tpc.googlesyndication.com:443::n:1691429498:h3:y:1688837494:n:^partitionKey=%28https%2Caskubuntu.com%29:|n:y: +https:play.google.com:443:.:^partitionKey=%28https%2Creddit.com%29:3 3 19548 https:play.google.com:443:play.google.com:443::n:1691465980:h3:y:1688749048:n:^partitionKey=%28https%2Creddit.com%29:|n:y: +https:google-bidout-d.openx.net:443:.:^partitionKey=%28https%2Ctutorialspoint.com%29:3 0 19547 https:google-bidout-d.openx.net:443:google-bidout-d.openx.net:443::n:1691462349:h3:y:1688868178:n:^partitionKey=%28https%2Ctutorialspoint.com%29:|n:y: +https:cdn.jsdelivr.net:443:.:^partitionKey=%28https%2Ctutorialspoint.com%29:3 0 19547 https:cdn.jsdelivr.net:443:cdn.jsdelivr.net:443::n:1688956748:h3:y:1688868178:n:^partitionKey=%28https%2Ctutorialspoint.com%29:|n:y: +https:s.tribalfusion.com:443:.:^partitionKey=%28https%2Chowtogeek.com%29:3 0 19545 https:s.tribalfusion.com:443:s.tribalfusion.com:443::n:1688842565:h3:y:1688755069:n:^partitionKey=%28https%2Chowtogeek.com%29:|n:y: +https:pixel.tapad.com:443:.:^partitionKey=%28https%2Ctecadmin.net%29:3 0 19546 https:pixel.tapad.com:443:pixel.tapad.com:443::n:1691432594:h3:y:1688837857:n:^partitionKey=%28https%2Ctecadmin.net%29:|n:y: +https:cdn.add0n.com:443:.:^partitionKey=%28https%2Cadd0n.com%29:3 0 19547 https:cdn.add0n.com:443:cdn.add0n.com:443::n:1688962924:h3:y:1688874784:n:^partitionKey=%28https%2Cadd0n.com%29:|n:y: +https:mxlinux.org:443:.:^partitionKey=%28https%2Cmxlinux.org%29:3 0 19546 https:mxlinux.org:443:mxlinux.org:443::n:1688924335:h3:y:1688837857:n:^partitionKey=%28https%2Cmxlinux.org%29:|n:y: +https:ade.googlesyndication.com:443:.:^partitionKey=%28https%2Cbaeldung.com%29:3 0 19546 https:ade.googlesyndication.com:443:ade.googlesyndication.com:443::n:1691436200:h3:y:1688842468:n:^partitionKey=%28https%2Cbaeldung.com%29:|n:y: +https:www.gitbook.com:443:.:^partitionKey=%28https%2Cwaydro.id%29:3 0 19547 https:www.gitbook.com:443:www.gitbook.com:443::n:1688989626:h3:y:1688902960:n:^partitionKey=%28https%2Cwaydro.id%29:|n:y: +https:www.googletagmanager.com:443:.:^partitionKey=%28https%2Csystutorials.com%29:3 0 19545 https:www.googletagmanager.com:443:www.googletagmanager.com:443::n:1691360957:h3:y:1688768928:n:^partitionKey=%28https%2Csystutorials.com%29:|n:y: +https:region1.google-analytics.com:443:.:^partitionKey=%28https%2Ckde.org%29:3 0 19545 https:region1.google-analytics.com:443:region1.google-analytics.com:443::n:1691358552:h3:y:1688766525:n:^partitionKey=%28https%2Ckde.org%29:|n:y: +https:googleads.g.doubleclick.net:443:.:^partitionKey=%28https%2Calternativeto.net%29:3 0 19547 https:googleads.g.doubleclick.net:443:googleads.g.doubleclick.net:443::n:1691465165:h3:y:1688872861:n:^partitionKey=%28https%2Calternativeto.net%29:|n:y: +https:abc640e040ca89d8161da4c6d563ac41.safeframe.googlesyndication.com:443:.:^partitionKey=%28https%2Cshellscript.sh%29:3 0 19546 https:abc640e040ca89d8161da4c6d563ac41.safeframe.googlesyndication.com:443:abc640e040ca89d8161da4c6d563ac41.safeframe.googlesyndication.com:443::n:1691435719:h3:y:1688842468:n:^partitionKey=%28https%2Cshellscript.sh%29:|n:y: +https:www.shellscript.sh:443:.:^partitionKey=%28https%2Cshellscript.sh%29:3 0 19546 https:www.shellscript.sh:443:www.shellscript.sh:443::n:1688930200:h3:y:1688842468:n:^partitionKey=%28https%2Cshellscript.sh%29:|n:y: +https:g.ezodn.com:443:.:^partitionKey=%28https%2Cappsloveworld.com%29:3 0 19546 https:g.ezodn.com:443:g.ezodn.com:443::n:1688927841:h3:y:1688837857:n:^partitionKey=%28https%2Cappsloveworld.com%29:|n:y: +https:region1.google-analytics.com:443:.:^partitionKey=%28https%2Csystutorials.com%29:3 0 19545 https:region1.google-analytics.com:443:region1.google-analytics.com:443::n:1691360970:h3:y:1688768928:n:^partitionKey=%28https%2Csystutorials.com%29:|n:y: +https:lh4.googleusercontent.com:443:.:^partitionKey=%28https%2Cgoogle.com%29:3 0 19546 https:lh4.googleusercontent.com:443:lh4.googleusercontent.com:443::n:1691424330:h3:y:1688832195:n:^partitionKey=%28https%2Cgoogle.com%29:|n:y: +https:tecadmin.net:443:.:^partitionKey=%28https%2Ctecadmin.net%29:3 0 19546 https:tecadmin.net:443:tecadmin.net:443::n:1688926962:h3:y:1688837857:n:^partitionKey=%28https%2Ctecadmin.net%29:|n:y: +https:fonts.gstatic.com:443:.:^partitionKey=%28https%2Cpythonawesome.com%29:3 0 19547 https:fonts.gstatic.com:443:fonts.gstatic.com:443::n:1691495148:h3:y:1688902960:n:^partitionKey=%28https%2Cpythonawesome.com%29:|n:y: +https:fonts.gstatic.com:443:.:^partitionKey=%28https%2Ctutorialspoint.com%29:3 0 19547 https:fonts.gstatic.com:443:fonts.gstatic.com:443::n:1691462351:h3:y:1688868178:n:^partitionKey=%28https%2Ctutorialspoint.com%29:|n:y: +https:www.google.com:443:.:^partitionKey=%28https%2Cstackexchange.com%29:3 0 19546 https:www.google.com:443:www.google.com:443::n:1691436124:h3:y:1688837857:n:^partitionKey=%28https%2Cstackexchange.com%29:|n:y: +https:www.google.com:443:.:^partitionKey=%28https%2Cdocker.com%29:3 0 19547 https:www.google.com:443:www.google.com:443::n:1691483224:h3:y:1688891119:n:^partitionKey=%28https%2Cdocker.com%29:|n:y: +https:pagead2.googlesyndication.com:443:.:^partitionKey=%28https%2Ctutorialspoint.com%29:3 0 19547 https:pagead2.googlesyndication.com:443:pagead2.googlesyndication.com:443::n:1691462351:h3:y:1688868178:n:^partitionKey=%28https%2Ctutorialspoint.com%29:|n:y: +https:cm.g.doubleclick.net:443:.:^partitionKey=%28https%2Chowtogeek.com%29:3 0 19545 https:cm.g.doubleclick.net:443:cm.g.doubleclick.net:443::n:1691348163:h3:y:1688755069:n:^partitionKey=%28https%2Chowtogeek.com%29:|n:y: +https:securepubads.g.doubleclick.net:443:.:^partitionKey=%28https%2Cstackoverflow.com%29:3 3 19549 https:securepubads.g.doubleclick.net:443:securepubads.g.doubleclick.net:443::n:1691462326:h3:y:1688842468:n:^partitionKey=%28https%2Cstackoverflow.com%29:|n:y: +https:fonts.gstatic.com:443:.:^partitionKey=%28https%2Csparkjava.com%29:3 0 19547 https:fonts.gstatic.com:443:fonts.gstatic.com:443::n:1691471662:h3:y:1688877328:n:^partitionKey=%28https%2Csparkjava.com%29:|n:y: +https:eu-u.openx.net:443:.:^partitionKey=%28https%2Citsfoss.com%29:3 0 19547 https:eu-u.openx.net:443:eu-u.openx.net:443::n:1691468366:h3:y:1688874784:n:^partitionKey=%28https%2Citsfoss.com%29:|n:y: +https:capi.connatix.com:443:.:^partitionKey=%28https%2Csystutorials.com%29:3 0 19545 https:capi.connatix.com:443:capi.connatix.com:443::n:1688855361:h3:y:1688768928:n:^partitionKey=%28https%2Csystutorials.com%29:|n:y: +https:esp.rtbhouse.com:443:.:^partitionKey=%28https%2Citsfoss.com%29:3 0 19547 https:esp.rtbhouse.com:443:esp.rtbhouse.com:443::n:1691468366:h3:y:1688874784:n:^partitionKey=%28https%2Citsfoss.com%29:|n:y: +https:ad.doubleclick.net:443:.:^partitionKey=%28https%2Chowtogeek.com%29:3 0 19545 https:ad.doubleclick.net:443:ad.doubleclick.net:443::n:1691348164:h3:y:1688755069:n:^partitionKey=%28https%2Chowtogeek.com%29:|n:y: +https:adservice.google.co.uk:443:.:^partitionKey=%28https%2Cnvidia.com%29:3 0 19545 https:adservice.google.co.uk:443:googleads.g.doubleclick.net:443::n:1691345048:h3:y:1688752771:n:^partitionKey=%28https%2Cnvidia.com%29:|n:y: +https:js.stripe.com:443:.:^partitionKey=%28https%2Cmxlinux.org%29:3 0 19546 https:js.stripe.com:443:js.stripe.com:443::n:1688924335:h3:y:1688837857:n:^partitionKey=%28https%2Cmxlinux.org%29:|n:y: +https:www.googletagservices.com:443:.:^partitionKey=%28https%2Chowtogeek.com%29:3 0 19545 https:www.googletagservices.com:443:www.googletagservices.com:443::n:1691348162:h3:y:1688755069:n:^partitionKey=%28https%2Chowtogeek.com%29:|n:y: +https:fonts.gstatic.com:443:.:^partitionKey=%28http%2Clocalhost%2C8888%29:3 0 19547 https:fonts.gstatic.com:443:fonts.gstatic.com:443::n:1691531167:h3:y:1688938778:n:^partitionKey=%28http%2Clocalhost%2C8888%29:|n:y: +https:accounts.google.com:443:.::3 1 19548 https:accounts.google.com:443:accounts.google.com:443::n:1691470007:h3:y:1688877328:n::|n:y: +https:learn.content.blackboardcdn.com:443:.:^partitionKey=%28https%2Cnorthampton.ac.uk%29:3 0 19548 https:learn.content.blackboardcdn.com:443:learn.content.blackboardcdn.com:443::n:1689102232:h3:y:1689015566:n:^partitionKey=%28https%2Cnorthampton.ac.uk%29:|n:y: +https:oajs.openx.net:443:.:^partitionKey=%28https%2Cbaeldung.com%29:3 0 19546 https:oajs.openx.net:443:oajs.openx.net:443::n:1691435958:h3:y:1688842468:n:^partitionKey=%28https%2Cbaeldung.com%29:|n:y: +https:video-meta.humix.com:443:.:^partitionKey=%28https%2Csystutorials.com%29:3 0 19545 https:video-meta.humix.com:443:video-meta.humix.com:443::n:1688855358:h3:y:1688768928:n:^partitionKey=%28https%2Csystutorials.com%29:|n:y: +https:sync.intentiq.com:443:.:^partitionKey=%28https%2Cbaeldung.com%29:3 0 19546 https:sync.intentiq.com:443:sync.intentiq.com:443::n:1688930360:h3:y:1688842468:n:^partitionKey=%28https%2Cbaeldung.com%29:|n:y: +https:pagead2.googlesyndication.com:443:.:^partitionKey=%28https%2Cappsloveworld.com%29:3 0 19546 https:pagead2.googlesyndication.com:443:pagead2.googlesyndication.com:443::n:1691433914:h3:y:1688837857:n:^partitionKey=%28https%2Cappsloveworld.com%29:|n:y: +https:oa.openxcdn.net:443:.:^partitionKey=%28https%2Cbaeldung.com%29:3 0 19546 https:oa.openxcdn.net:443:oa.openxcdn.net:443::n:1691435955:h3:y:1688842468:n:^partitionKey=%28https%2Cbaeldung.com%29:|n:y: +https:cdn.jsdelivr.net:443:.:^partitionKey=%28https%2Cbaeldung.com%29:3 0 19546 https:cdn.jsdelivr.net:443:cdn.jsdelivr.net:443::n:1688930355:h3:y:1688842468:n:^partitionKey=%28https%2Cbaeldung.com%29:|n:y: +https:26d15cb402d025a6a9c112a602520aa1.safeframe.googlesyndication.com:443:.:^partitionKey=%28https%2Cstackoverflow.com%29:3 0 19546 https:26d15cb402d025a6a9c112a602520aa1.safeframe.googlesyndication.com:443:26d15cb402d025a6a9c112a602520aa1.safeframe.googlesyndication.com:443::n:1691436165:h3:y:1688842468:n:^partitionKey=%28https%2Cstackoverflow.com%29:|n:y: +https:ezodn.com:443:.:^partitionKey=%28https%2Cappsloveworld.com%29:3 0 19546 https:ezodn.com:443:ezodn.com:443::n:1688927842:h3:y:1688837857:n:^partitionKey=%28https%2Cappsloveworld.com%29:|n:y: +https:googleads.g.doubleclick.net:443:.:^partitionKey=%28https%2Chowtogeek.com%29:3 0 19545 https:googleads.g.doubleclick.net:443:googleads.g.doubleclick.net:443::n:1691348163:h3:y:1688755069:n:^partitionKey=%28https%2Chowtogeek.com%29:|n:y: +https:region1.google-analytics.com:443:.:^partitionKey=%28https%2Cbaeldung.com%29:3 0 19546 https:region1.google-analytics.com:443:region1.google-analytics.com:443::n:1691436824:h3:y:1688842468:n:^partitionKey=%28https%2Cbaeldung.com%29:|n:y: +https:oa.openxcdn.net:443:.:^partitionKey=%28https%2Cappsloveworld.com%29:3 0 19546 https:oa.openxcdn.net:443:oa.openxcdn.net:443::n:1691433444:h3:y:1688837857:n:^partitionKey=%28https%2Cappsloveworld.com%29:|n:y: +https:3773406.fls.doubleclick.net:443:.:^partitionKey=%28https%2Cnvidia.com%29:3 0 19545 https:3773406.fls.doubleclick.net:443:3773406.fls.doubleclick.net:443::n:1691345048:h3:y:1688752771:n:^partitionKey=%28https%2Cnvidia.com%29:|n:y: +https:the.gatekeeperconsent.com:443:.:^partitionKey=%28https%2Ciconarchive.com%29:3 0 19548 https:the.gatekeeperconsent.com:443:the.gatekeeperconsent.com:443::n:1689117912:h3:y:1689031473:n:^partitionKey=%28https%2Ciconarchive.com%29:|n:y: +https:www.wikihow.com:443:.:^partitionKey=%28https%2Cwikihow.com%29:3 0 19547 https:www.wikihow.com:443:www.wikihow.com:443::n:1688963661:h3:y:1688877031:n:^partitionKey=%28https%2Cwikihow.com%29:|n:y: +https:ghbtns.com:443:.:^partitionKey=%28https%2Csparkjava.com%29:3 0 19547 https:ghbtns.com:443:ghbtns.com:443::n:1688966062:h3:y:1688877328:n:^partitionKey=%28https%2Csparkjava.com%29:|n:y: +https:lh4.googleusercontent.com:443:.:^partitionKey=%28https%2Cstackoverflow.com%29:3 1 19549 https:lh4.googleusercontent.com:443:lh4.googleusercontent.com:443::n:1691630580:h3:y:1688868178:n:^partitionKey=%28https%2Cstackoverflow.com%29:|n:y: +https:cdn.statically.io:443:.::3 0 19547 https:cdn.statically.io:443:cdn.statically.io:443::n:1688962969:h3:y:1688874784:n::|n:y: +https:www.facebook.com:443:.:^partitionKey=%28https%2Clastpass.com%29:3 0 19545 https:www.facebook.com:443:www.facebook.com:443::n:1688858982:h3:y:1688752771:n:^partitionKey=%28https%2Clastpass.com%29:|n:y: +https:www.google.co.uk:443:.:^partitionKey=%28https%2Cnvidia.com%29:3 0 19545 https:www.google.co.uk:443:www.google.co.uk:443::n:1691345049:h3:y:1688752771:n:^partitionKey=%28https%2Cnvidia.com%29:|n:y: +https:packages.gentoo.org:443:.:^partitionKey=%28https%2Cgentoo.org%29:3 0 19546 https:packages.gentoo.org:443:packages.gentoo.org:443::n:1688923995:h3:y:1688837494:n:^partitionKey=%28https%2Cgentoo.org%29:|n:y: +https:assets.pinterest.com:443:.::3 0 19548 https:assets.pinterest.com:443:assets.pinterest.com:443::n:1689032964:h3:y:1689031473:n::|n:y: +https:cdn.jsdelivr.net:443:.:^partitionKey=%28https%2Ckeepfloyding.github.io%29:3 0 19546 https:cdn.jsdelivr.net:443:cdn.jsdelivr.net:443::n:1688924614:h3:y:1688837857:n:^partitionKey=%28https%2Ckeepfloyding.github.io%29:|n:y: +https:www.google-analytics.com:443:.:^partitionKey=%28https%2Citsfoss.com%29:3 0 19547 https:www.google-analytics.com:443:www.google-analytics.com:443::n:1691468364:h3:y:1688874784:n:^partitionKey=%28https%2Citsfoss.com%29:|n:y: +https:pagead2.googlesyndication.com:443:.:^partitionKey=%28https%2Cstackexchange.com%29:3 1 19546 https:pagead2.googlesyndication.com:443:pagead2.googlesyndication.com:443::n:1691436125:h3:y:1688772412:n:^partitionKey=%28https%2Cstackexchange.com%29:|n:y: +https:rtb.openx.net:443:.:^partitionKey=%28https%2Csystutorials.com%29:3 0 19545 https:rtb.openx.net:443:rtb.openx.net:443::n:1691360966:h3:y:1688768928:n:^partitionKey=%28https%2Csystutorials.com%29:|n:y: +https:stats.g.doubleclick.net:443:.:^partitionKey=%28https%2Cappsloveworld.com%29:3 0 19546 https:stats.g.doubleclick.net:443:stats.g.doubleclick.net:443::n:1691433447:h3:y:1688837857:n:^partitionKey=%28https%2Cappsloveworld.com%29:|n:y: +https:fonts.googleapis.com:443:.:^partitionKey=%28https%2Capache.org%29:3 0 19547 https:fonts.googleapis.com:443:fonts.googleapis.com:443::n:1691471652:h3:y:1688877328:n:^partitionKey=%28https%2Capache.org%29:|n:y: +https:i.clean.gg:443:.:^partitionKey=%28https%2Cstackoverflow.com%29:3 1 19547 https:i.clean.gg:443:i.clean.gg:443::n:1691462084:h3:y:1688842468:n:^partitionKey=%28https%2Cstackoverflow.com%29:|n:y: +https:cdn.jsdelivr.net:443:.:^partitionKey=%28https%2Cv.je%29:3 0 19548 https:cdn.jsdelivr.net:443:cdn.jsdelivr.net:443::n:1689101986:h3:y:1689015566:n:^partitionKey=%28https%2Cv.je%29:|n:y: +https:fundingchoicesmessages.google.com:443:.:^partitionKey=%28https%2Ctutorialspoint.com%29:3 0 19547 https:fundingchoicesmessages.google.com:443:fundingchoicesmessages.google.com:443::n:1691462350:h3:y:1688868178:n:^partitionKey=%28https%2Ctutorialspoint.com%29:|n:y: +https:www.google.com:443:.:^partitionKey=%28https%2Ctutorialspoint.com%29:3 0 19547 https:www.google.com:443:www.google.com:443::n:1691462350:h3:y:1688868178:n:^partitionKey=%28https%2Ctutorialspoint.com%29:|n:y: +https:www.googletagmanager.com:443:.:^partitionKey=%28https%2Cnvidia.co.uk%29:3 0 19545 https:www.googletagmanager.com:443:www.googletagmanager.com:443::n:1691345071:h3:y:1688752771:n:^partitionKey=%28https%2Cnvidia.co.uk%29:|n:y: +https:apis.google.com:443:.:^partitionKey=%28https%2Candroid.com%29:3 0 19547 https:apis.google.com:443:apis.google.com:443::n:1691492823:h3:y:1688891553:n:^partitionKey=%28https%2Candroid.com%29:|n:y: +https:static.dash.cloudflare.com:443:.:^partitionKey=%28https%2Ccloudflare.com%29:3 0 19547 https:static.dash.cloudflare.com:443:static.dash.cloudflare.com:443::n:1688967282:h3:y:1688877328:n:^partitionKey=%28https%2Ccloudflare.com%29:|n:y: +https:oa.openxcdn.net:443:.:^partitionKey=%28https%2Csystutorials.com%29:3 0 19545 https:oa.openxcdn.net:443:oa.openxcdn.net:443::n:1691360958:h3:y:1688768928:n:^partitionKey=%28https%2Csystutorials.com%29:|n:y: +https:maxcdn.bootstrapcdn.com:443:.:^userContextId=5&partitionKey=%28https%2Cv.je%29:3 0 19548 https:maxcdn.bootstrapcdn.com:443:maxcdn.bootstrapcdn.com:443::n:1689103166:h3:y:1689015566:n:^userContextId=5&partitionKey=%28https%2Cv.je%29:|n:y: +https:www.google-analytics.com:443:.:^partitionKey=%28https%2Ckeepfloyding.github.io%29:3 0 19546 https:www.google-analytics.com:443:www.google-analytics.com:443::n:1691430215:h3:y:1688837857:n:^partitionKey=%28https%2Ckeepfloyding.github.io%29:|n:y: +https:tpc.googlesyndication.com:443:.:^partitionKey=%28https%2Ctecadmin.net%29:3 0 19546 https:tpc.googlesyndication.com:443:tpc.googlesyndication.com:443::n:1691432594:h3:y:1688837857:n:^partitionKey=%28https%2Ctecadmin.net%29:|n:y: +https:s.tribalfusion.com:443:.:^partitionKey=%28https%2Ctecadmin.net%29:3 0 19546 https:s.tribalfusion.com:443:s.tribalfusion.com:443::n:1688926996:h3:y:1688837857:n:^partitionKey=%28https%2Ctecadmin.net%29:|n:y: +https:id.a-mx.com:443:.:^partitionKey=%28https%2Cappsloveworld.com%29:3 0 19546 https:id.a-mx.com:443:id.a-mx.com:443::n:1688928122:h3:y:1688837857:n:^partitionKey=%28https%2Cappsloveworld.com%29:|n:y: +https:invstatic101.creativecdn.com:443:.:^partitionKey=%28https%2Cshellscript.sh%29:3 0 19546 https:invstatic101.creativecdn.com:443:invstatic101.creativecdn.com:443::n:1691435720:h3:y:1688842468:n:^partitionKey=%28https%2Cshellscript.sh%29:|n:y: +https:google-bidout-d.openx.net:443:.:^partitionKey=%28https%2Cshellscript.sh%29:3 0 19546 https:google-bidout-d.openx.net:443:google-bidout-d.openx.net:443::n:1691435721:h3:y:1688842468:n:^partitionKey=%28https%2Cshellscript.sh%29:|n:y: +https:cdn.jsdelivr.net:443:.:^partitionKey=%28https%2Cshellscript.sh%29:3 0 19546 https:cdn.jsdelivr.net:443:cdn.jsdelivr.net:443::n:1688930118:h3:y:1688842468:n:^partitionKey=%28https%2Cshellscript.sh%29:|n:y: +https:fonts.gstatic.com:443:.:^partitionKey=%28https%2Cv.je%29:3 0 19548 https:fonts.gstatic.com:443:fonts.gstatic.com:443::n:1691607586:h3:y:1689015566:n:^partitionKey=%28https%2Cv.je%29:|n:y: +https:play.google.com:443:.:^partitionKey=%28https%2Cgoogle.com%29:3 2 19547 https:play.google.com:443:play.google.com:443::n:1691468335:h3:y:1688749048:n:^partitionKey=%28https%2Cgoogle.com%29:|n:y: +https:www.googletagmanager.com:443:.:^partitionKey=%28https%2Crazer.com%29:3 0 19546 https:www.googletagmanager.com:443:www.googletagmanager.com:443::n:1691423890:h3:y:1688831685:n:^partitionKey=%28https%2Crazer.com%29:|n:y: +https:adservice.google.com:443:.:^partitionKey=%28https%2Cmankier.com%29:3 1 19547 https:adservice.google.com:443:adservice.google.com:443::n:1691459165:h3:y:1688837857:n:^partitionKey=%28https%2Cmankier.com%29:|n:y: +https:rubiconcm.digitaleast.mobi:443:.:^partitionKey=%28https%2Ctecadmin.net%29:3 0 19546 https:rubiconcm.digitaleast.mobi:443:rubiconcm.digitaleast.mobi:443::n:1691432595:h3:y:1688837857:n:^partitionKey=%28https%2Ctecadmin.net%29:|n:y: +https:region1.analytics.google.com:443:.:^partitionKey=%28https%2Ctecadmin.net%29:3 0 19546 https:region1.analytics.google.com:443:region1.analytics.google.com:443::n:1691432981:h3:y:1688837857:n:^partitionKey=%28https%2Ctecadmin.net%29:|n:y: +https:fonts.gstatic.com:443:.:^partitionKey=%28https%2Cspencerkrum.com%29:3 0 19549 https:fonts.gstatic.com:443:fonts.gstatic.com:443::n:1691631344:h3:y:1689038778:n:^partitionKey=%28https%2Cspencerkrum.com%29:|n:y: +https:www.google-analytics.com:443:.:^partitionKey=%28https%2Cstackexchange.com%29:3 3 19549 https:www.google-analytics.com:443:www.google-analytics.com:443::n:1691436124:h3:y:1688837857:n:^partitionKey=%28https%2Cstackexchange.com%29:|n:y: +https:www.facebook.com:443:.:^partitionKey=%28https%2Cnvidia.co.uk%29:3 0 19545 https:www.facebook.com:443:www.facebook.com:443::n:1688839472:h3:y:1688752771:n:^partitionKey=%28https%2Cnvidia.co.uk%29:|n:y: +https:soketi.hyvor.com:443:.:^partitionKey=%28https%2Citsfoss.com%29:3 0 19547 https:soketi.hyvor.com:443:soketi.hyvor.com:443::n:1688943569:h3:n:1688943120:n:^partitionKey=%28https%2Citsfoss.com%29:|n:y: +https:www.copyandpastesymbols.net:443:.::3 0 19547 https:www.copyandpastesymbols.net:443:www.copyandpastesymbols.net:443::n:1688965768:h3:y:1688877328:n::|n:y: +https:fonts.googleapis.com:443:.:^partitionKey=%28https%2Cnvidia.co.uk%29:3 0 19545 https:fonts.googleapis.com:443:fonts.googleapis.com:443::n:1691345069:h3:y:1688752771:n:^partitionKey=%28https%2Cnvidia.co.uk%29:|n:y: +https:invstatic101.creativecdn.com:443:.:^partitionKey=%28https%2Ctutorialspoint.com%29:3 0 19547 https:invstatic101.creativecdn.com:443:invstatic101.creativecdn.com:443::n:1691462349:h3:y:1688868178:n:^partitionKey=%28https%2Ctutorialspoint.com%29:|n:y: +https:uigradients.com:443:.:^partitionKey=%28https%2Cuigradients.com%29:3 0 19549 https:uigradients.com:443:uigradients.com:443::n:1689132637:h3:y:1689046164:n:^partitionKey=%28https%2Cuigradients.com%29:|n:y: +https:cdnjs.cloudflare.com:443:.:^partitionKey=%28https%2Crazer.com%29:3 0 19546 https:cdnjs.cloudflare.com:443:cdnjs.cloudflare.com:443::n:1688918289:h3:y:1688831685:n:^partitionKey=%28https%2Crazer.com%29:|n:y: +https:challenges.cloudflare.com:443:.:^partitionKey=%28https%2Cadd0n.com%29:3 0 19547 https:challenges.cloudflare.com:443:challenges.cloudflare.com:443::n:1688962923:h3:y:1688874784:n:^partitionKey=%28https%2Cadd0n.com%29:|n:y: +https:static1.xdaimages.com:443:.:^partitionKey=%28https%2Cxda-developers.com%29:3 0 19547 https:static1.xdaimages.com:443:static1.xdaimages.com:443::n:1688966948:h3:y:1688877328:n:^partitionKey=%28https%2Cxda-developers.com%29:|n:y: +https:securepubads.g.doubleclick.net:443:.:^partitionKey=%28https%2Crapidtables.com%29:3 0 19545 https:securepubads.g.doubleclick.net:443:securepubads.g.doubleclick.net:443::n:1691348717:h3:y:1688755069:n:^partitionKey=%28https%2Crapidtables.com%29:|n:y: +https:google-bidout-d.openx.net:443:.:^partitionKey=%28https%2Cbaeldung.com%29:3 0 19546 https:google-bidout-d.openx.net:443:google-bidout-d.openx.net:443::n:1691435958:h3:y:1688842468:n:^partitionKey=%28https%2Cbaeldung.com%29:|n:y: +https:fonts.googleapis.com:443:.:^partitionKey=%28https%2Clutris.net%29:3 0 19547 https:fonts.googleapis.com:443:fonts.googleapis.com:443::n:1691472692:h3:y:1688877328:n:^partitionKey=%28https%2Clutris.net%29:|n:y: +https:lh5.googleusercontent.com:443:.:^partitionKey=%28https%2Cgoogle.com%29:3 2 19547 https:lh5.googleusercontent.com:443:lh5.googleusercontent.com:443::n:1691465876:h3:y:1688749048:n:^partitionKey=%28https%2Cgoogle.com%29:|n:y: +https:docs.rs:443:.:^partitionKey=%28https%2Cdocs.rs%29:3 0 19549 https:docs.rs:443:docs.rs:443::n:1689121925:h3:y:1689035406:n:^partitionKey=%28https%2Cdocs.rs%29:|n:y: +https:fonts.gstatic.com:443:.:^partitionKey=%28https%2Csmarttech101.com%29:3 0 19546 https:fonts.gstatic.com:443:fonts.gstatic.com:443::n:1691431937:h3:y:1688837857:n:^partitionKey=%28https%2Csmarttech101.com%29:|n:y: +https:d997f37ef80fdbccb81fcdb28e4d85c2.safeframe.googlesyndication.com:443:.:^partitionKey=%28https%2Citsfoss.com%29:3 0 19547 https:d997f37ef80fdbccb81fcdb28e4d85c2.safeframe.googlesyndication.com:443:d997f37ef80fdbccb81fcdb28e4d85c2.safeframe.googlesyndication.com:443::n:1691468364:h3:y:1688874784:n:^partitionKey=%28https%2Citsfoss.com%29:|n:y: +https:ad.doubleclick.net:443:.:^partitionKey=%28https%2Cbaeldung.com%29:3 0 19546 https:ad.doubleclick.net:443:ad.doubleclick.net:443::n:1691435955:h3:y:1688842468:n:^partitionKey=%28https%2Cbaeldung.com%29:|n:y: +https:learn.content.blackboardcdn.com:443:.:^userContextId=5&partitionKey=%28https%2Cnorthampton.ac.uk%29:3 0 19548 https:learn.content.blackboardcdn.com:443:learn.content.blackboardcdn.com:443::n:1689102267:h3:y:1689015566:n:^userContextId=5&partitionKey=%28https%2Cnorthampton.ac.uk%29:|n:y: +https:cdn.onesignal.com:443:.::3 0 19547 https:cdn.onesignal.com:443:cdn.onesignal.com:443::n:1688987508:h3:y:1688891553:n::|n:y: +https:fonts.googleapis.com:443:.:^partitionKey=%28http%2Clocalhost%2C8888%29:3 0 19547 https:fonts.googleapis.com:443:fonts.googleapis.com:443::n:1691531167:h3:y:1688938778:n:^partitionKey=%28http%2Clocalhost%2C8888%29:|n:y: +https:api.btloader.com:443:.:^partitionKey=%28https%2Cbaeldung.com%29:3 0 19546 https:api.btloader.com:443:api.btloader.com:443::n:1691435955:h3:y:1688842468:n:^partitionKey=%28https%2Cbaeldung.com%29:|n:y: +https:o418887.ingest.sentry.io:443:.::3 0 19547 https:o418887.ingest.sentry.io:443:o418887.ingest.sentry.io:443::n:1691470006:h3:y:1688877328:n::|n:y: +https:fonts.googleapis.com:443:.:^partitionKey=%28https%2Cparsec.app%29:3 0 19547 https:fonts.googleapis.com:443:fonts.googleapis.com:443::n:1691466124:h3:y:1688873798:n:^partitionKey=%28https%2Cparsec.app%29:|n:y: +https:yt3.ggpht.com:443:.:^partitionKey=%28https%2Crazer.com%29:3 0 19546 https:yt3.ggpht.com:443:yt3.ggpht.com:443::n:1691423891:h3:y:1688831685:n:^partitionKey=%28https%2Crazer.com%29:|n:y: +https:www.facebook.com:443:.:^partitionKey=%28https%2Cnvidia.com%29:3 0 19545 https:www.facebook.com:443:www.facebook.com:443::n:1688839469:h3:y:1688752771:n:^partitionKey=%28https%2Cnvidia.com%29:|n:y: +https:cdn.ampproject.org:443:.:^partitionKey=%28https%2Cshellscript.sh%29:3 0 19546 https:cdn.ampproject.org:443:cdn.ampproject.org:443::n:1691435731:h3:y:1688842468:n:^partitionKey=%28https%2Cshellscript.sh%29:|n:y: +https:wiki.hyprland.org:443:.:^partitionKey=%28https%2Chyprland.org%29:3 2 19547 https:wiki.hyprland.org:443:wiki.hyprland.org:443::n:1689025056:h3:y:1688749048:n:^partitionKey=%28https%2Chyprland.org%29:|n:y: +https:alternativeto.net:443:.:^partitionKey=%28https%2Calternativeto.net%29:3 0 19547 https:alternativeto.net:443:alternativeto.net:443::n:1688959578:h3:y:1688872861:n:^partitionKey=%28https%2Calternativeto.net%29:|n:y: +https:connect.facebook.net:443:.:^partitionKey=%28https%2Cnvidia.co.uk%29:3 0 19545 https:connect.facebook.net:443:connect.facebook.net:443::n:1688839472:h3:y:1688752771:n:^partitionKey=%28https%2Cnvidia.co.uk%29:|n:y: +https:www.google.co.uk:443:.:^partitionKey=%28https%2Cnvidia.co.uk%29:3 0 19545 https:www.google.co.uk:443:www.google.co.uk:443::n:1691345071:h3:y:1688752771:n:^partitionKey=%28https%2Cnvidia.co.uk%29:|n:y: +https:3e60f97a9cd43008e1b44ca553fee27e.safeframe.googlesyndication.com:443:.:^partitionKey=%28https%2Cstackoverflow.com%29:3 0 19546 https:3e60f97a9cd43008e1b44ca553fee27e.safeframe.googlesyndication.com:443:3e60f97a9cd43008e1b44ca553fee27e.safeframe.googlesyndication.com:443::n:1691436322:h3:y:1688842468:n:^partitionKey=%28https%2Cstackoverflow.com%29:|n:y: +https:cdnjs.cloudflare.com:443:.:^partitionKey=%28https%2Cpinetools.com%29:3 1 19549 https:cdnjs.cloudflare.com:443:cdnjs.cloudflare.com:443::n:1689118763:h3:y:1689031473:n:^partitionKey=%28https%2Cpinetools.com%29:|n:y: +https:d.pub.network:443:.:^partitionKey=%28https%2Cbaeldung.com%29:3 0 19546 https:d.pub.network:443:d.pub.network:443::n:1691435953:h3:y:1688842468:n:^partitionKey=%28https%2Cbaeldung.com%29:|n:y: +https:www.googletagmanager.com:443:.:^partitionKey=%28https%2Ckde.org%29:3 0 19545 https:www.googletagmanager.com:443:www.googletagmanager.com:443::n:1691358540:h3:y:1688766525:n:^partitionKey=%28https%2Ckde.org%29:|n:y: +https:cdn.jsdelivr.net:443:.:^partitionKey=%28https%2Clinuxhandbook.com%29:3 0 19547 https:cdn.jsdelivr.net:443:cdn.jsdelivr.net:443::n:1688977956:h3:y:1688891553:n:^partitionKey=%28https%2Clinuxhandbook.com%29:|n:y: +https:privacy.gatekeeperconsent.com:443:.:^partitionKey=%28https%2Cappsloveworld.com%29:3 0 19546 https:privacy.gatekeeperconsent.com:443:privacy.gatekeeperconsent.com:443::n:1688927841:h3:y:1688837857:n:^partitionKey=%28https%2Cappsloveworld.com%29:|n:y: +https:fonts.googleapis.com:443:.:^partitionKey=%28https%2Cdavatorium.github.io%29:3 1 19547 https:fonts.googleapis.com:443:fonts.googleapis.com:443::n:1691522188:h3:y:1688837857:n:^partitionKey=%28https%2Cdavatorium.github.io%29:|n:y: +https:go.ezodn.com:443:.:^partitionKey=%28https%2Csystutorials.com%29:3 0 19545 https:go.ezodn.com:443:go.ezodn.com:443::n:1688855357:h3:y:1688768928:n:^partitionKey=%28https%2Csystutorials.com%29:|n:y: +https:s.company-target.com:443:.:^partitionKey=%28https%2Cappsloveworld.com%29:3 0 19546 https:s.company-target.com:443:s.company-target.com:443::n:1691433444:h3:y:1688837857:n:^partitionKey=%28https%2Cappsloveworld.com%29:|n:y: +https:docs.spotifyd.rs:443:.::3 1 19548 https:docs.spotifyd.rs:443:docs.spotifyd.rs:443::n:1689025883:h3:y:1688938778:n::|n:y: +https:media.istockphoto.com:443:.:^partitionKey=%28https%2Cicon-icons.com%29:3 0 19548 https:media.istockphoto.com:443:media.istockphoto.com:443::n:1689117977:h3:y:1689031473:n:^partitionKey=%28https%2Cicon-icons.com%29:|n:y: +https:fundingchoicesmessages.google.com:443:.:^partitionKey=%28https%2Csystutorials.com%29:3 0 19545 https:fundingchoicesmessages.google.com:443:fundingchoicesmessages.google.com:443::n:1691360964:h3:y:1688768928:n:^partitionKey=%28https%2Csystutorials.com%29:|n:y: +https:ublockorigin.pages.dev:443:.::3 0 19548 https:ublockorigin.pages.dev:443:ublockorigin.pages.dev:443::n:1689093205:h3:y:1689006792:n::|n:y: +https:www.youtube.com:443:.:^partitionKey=%28https%2Cbaeldung.com%29:3 0 19546 https:www.youtube.com:443:www.youtube.com:443::n:1691435991:h3:y:1688842468:n:^partitionKey=%28https%2Cbaeldung.com%29:|n:y: +https:www.googleoptimize.com:443:.:^partitionKey=%28https%2Ckinsta.com%29:3 0 19547 https:www.googleoptimize.com:443:www.googleoptimize.com:443::n:1691468354:h3:y:1688874784:n:^partitionKey=%28https%2Ckinsta.com%29:|n:y: +https:0799e6b223aba7702abf91b80a473e81.safeframe.googlesyndication.com:443:.:^partitionKey=%28https%2Cstackexchange.com%29:3 0 19546 https:0799e6b223aba7702abf91b80a473e81.safeframe.googlesyndication.com:443:0799e6b223aba7702abf91b80a473e81.safeframe.googlesyndication.com:443::n:1691435386:h3:y:1688842468:n:^partitionKey=%28https%2Cstackexchange.com%29:|n:y: +https:securepubads.g.doubleclick.net:443:.:^partitionKey=%28https%2Ctecadmin.net%29:3 0 19546 https:securepubads.g.doubleclick.net:443:securepubads.g.doubleclick.net:443::n:1691432623:h3:y:1688837857:n:^partitionKey=%28https%2Ctecadmin.net%29:|n:y: +https:api.intentiq.com:443:.:^partitionKey=%28https%2Cbaeldung.com%29:3 0 19546 https:api.intentiq.com:443:api.intentiq.com:443::n:1688930355:h3:y:1688842468:n:^partitionKey=%28https%2Cbaeldung.com%29:|n:y: +https:88dd535c9005563ee141817da8a2f784.safeframe.googlesyndication.com:443:.:^partitionKey=%28https%2Cstackexchange.com%29:3 0 19546 https:88dd535c9005563ee141817da8a2f784.safeframe.googlesyndication.com:443:88dd535c9005563ee141817da8a2f784.safeframe.googlesyndication.com:443::n:1691433000:h3:y:1688837857:n:^partitionKey=%28https%2Cstackexchange.com%29:|n:y: +https:translate-pa.googleapis.com:443:.:^partitionKey=%28https%2C101computing.net%29:3 0 19548 https:translate-pa.googleapis.com:443:translate-pa.googleapis.com:443::n:1691610146:h3:y:1689018121:n:^partitionKey=%28https%2C101computing.net%29:|n:y: +https:google-bidout-d.openx.net:443:.:^partitionKey=%28https%2Csystutorials.com%29:3 0 19545 https:google-bidout-d.openx.net:443:google-bidout-d.openx.net:443::n:1691360961:h3:y:1688768928:n:^partitionKey=%28https%2Csystutorials.com%29:|n:y: +https:bshr.ezodn.com:443:.:^partitionKey=%28https%2Cshellscript.sh%29:3 0 19546 https:bshr.ezodn.com:443:bshr.ezodn.com:443::n:1688930117:h3:y:1688842468:n:^partitionKey=%28https%2Cshellscript.sh%29:|n:y: +https:static.apester.com:443:.:^partitionKey=%28https%2Citsfoss.com%29:3 0 19547 https:static.apester.com:443:static.apester.com:443::n:1691468351:h3:y:1688874784:n:^partitionKey=%28https%2Citsfoss.com%29:|n:y: +https:track.hubspot.com:443:.:^partitionKey=%28https%2Cparsec.app%29:3 0 19547 https:track.hubspot.com:443:track.hubspot.com:443::n:1688960724:h3:y:1688873798:n:^partitionKey=%28https%2Cparsec.app%29:|n:y: +https:imasdk.googleapis.com:443:.:^partitionKey=%28https%2Csystutorials.com%29:3 0 19545 https:imasdk.googleapis.com:443:imasdk.googleapis.com:443::n:1691360958:h3:y:1688768928:n:^partitionKey=%28https%2Csystutorials.com%29:|n:y: +https:lh3.googleusercontent.com:443:.:^partitionKey=%28https%2Cstackexchange.com%29:3 0 19549 https:lh3.googleusercontent.com:443:lh3.googleusercontent.com:443::n:1691629000:h3:y:1689035406:n:^partitionKey=%28https%2Cstackexchange.com%29:|n:y: +https:u.openx.net:443:.:^partitionKey=%28https%2Cappsloveworld.com%29:3 0 19546 https:u.openx.net:443:u.openx.net:443::n:1691433444:h3:y:1688837857:n:^partitionKey=%28https%2Cappsloveworld.com%29:|n:y: +https:u.4dex.io:443:.:^partitionKey=%28https%2Ctecadmin.net%29:3 0 19546 https:u.4dex.io:443:u.4dex.io:443::n:1691432624:h3:y:1688837857:n:^partitionKey=%28https%2Ctecadmin.net%29:|n:y: +https:streaming.humix.com:443:.:^partitionKey=%28https%2Cshellscript.sh%29:3 0 19546 https:streaming.humix.com:443:streaming.humix.com:443::n:1688930199:h3:y:1688842468:n:^partitionKey=%28https%2Cshellscript.sh%29:|n:y: +https:invstatic101.creativecdn.com:443:.:^partitionKey=%28https%2Csystutorials.com%29:3 0 19545 https:invstatic101.creativecdn.com:443:invstatic101.creativecdn.com:443::n:1691360961:h3:y:1688768928:n:^partitionKey=%28https%2Csystutorials.com%29:|n:y: +https:d6df619388f43f7d50ad0af337007c2a.safeframe.googlesyndication.com:443:.:^partitionKey=%28https%2Cstackoverflow.com%29:3 0 19546 https:d6df619388f43f7d50ad0af337007c2a.safeframe.googlesyndication.com:443:d6df619388f43f7d50ad0af337007c2a.safeframe.googlesyndication.com:443::n:1691435803:h3:y:1688842468:n:^partitionKey=%28https%2Cstackoverflow.com%29:|n:y: +https:discord.com:443:.::3 0 19548 https:discord.com:443:discord.com:443::n:1689100947:h3:y:1689013223:n::|n:y: +https:cdn.iframe.ly:443:.:^partitionKey=%28https%2Cwaydro.id%29:3 0 19547 https:cdn.iframe.ly:443:cdn.iframe.ly:443::n:1688989626:h3:y:1688902960:n:^partitionKey=%28https%2Cwaydro.id%29:|n:y: +https:www.googleadservices.com:443:.:^partitionKey=%28https%2Clastpass.com%29:3 0 19545 https:www.googleadservices.com:443:www.googleadservices.com:443::n:1691364582:h3:y:1688752771:n:^partitionKey=%28https%2Clastpass.com%29:|n:y: +https:a.tribalfusion.com:443:.:^partitionKey=%28https%2Ctecadmin.net%29:3 0 19546 https:a.tribalfusion.com:443:a.tribalfusion.com:443::n:1688926996:h3:y:1688837857:n:^partitionKey=%28https%2Ctecadmin.net%29:|n:y: +https:www.google.co.uk:443:.:^partitionKey=%28https%2Cappsloveworld.com%29:3 0 19546 https:www.google.co.uk:443:www.google.co.uk:443::n:1691433447:h3:y:1688837857:n:^partitionKey=%28https%2Cappsloveworld.com%29:|n:y: +https:googleads4.g.doubleclick.net:443:.:^partitionKey=%28https%2Ctecadmin.net%29:3 0 19546 https:googleads4.g.doubleclick.net:443:googleads4.g.doubleclick.net:443::n:1691432623:h3:y:1688837857:n:^partitionKey=%28https%2Ctecadmin.net%29:|n:y: +https:lh3.googleusercontent.com:443:.:^partitionKey=%28https%2Cstackoverflow.com%29:3 1 19549 https:lh3.googleusercontent.com:443:lh3.googleusercontent.com:443::n:1691630580:h3:y:1689018121:n:^partitionKey=%28https%2Cstackoverflow.com%29:|n:y: +https:ezoic-d.openx.net:443:.:^partitionKey=%28https%2Cshellscript.sh%29:3 0 19546 https:ezoic-d.openx.net:443:ezoic-d.openx.net:443::n:1691435748:h3:y:1688842468:n:^partitionKey=%28https%2Cshellscript.sh%29:|n:y: +https:developers.google.com:443:.:^partitionKey=%28https%2Candroid.com%29:3 0 19547 https:developers.google.com:443:developers.google.com:443::n:1691492821:h3:y:1688891553:n:^partitionKey=%28https%2Candroid.com%29:|n:y: +https:fonts.gstatic.com:443:.:^partitionKey=%28https%2Cfreecodecamp.org%29:3 0 19547 https:fonts.gstatic.com:443:fonts.gstatic.com:443::n:1691513575:h3:y:1688920622:n:^partitionKey=%28https%2Cfreecodecamp.org%29:|n:y: +https:adservice.google.com:443:.:^partitionKey=%28https%2Cgoogle.com%29:3 2 19547 https:adservice.google.com:443:adservice.google.com:443::n:1691525326:h3:y:1688749048:n:^partitionKey=%28https%2Cgoogle.com%29:|n:y: +https:pagead2.googlesyndication.com:443:.:^partitionKey=%28https%2Cstackoverflow.com%29:3 1 19547 https:pagead2.googlesyndication.com:443:pagead2.googlesyndication.com:443::n:1691462325:h3:y:1688837857:n:^partitionKey=%28https%2Cstackoverflow.com%29:|n:y: +https:www.googletagmanager.com:443:.:^partitionKey=%28https%2Ckinsta.com%29:3 0 19547 https:www.googletagmanager.com:443:www.googletagmanager.com:443::n:1691468355:h3:y:1688874784:n:^partitionKey=%28https%2Ckinsta.com%29:|n:y: +https:cm.g.doubleclick.net:443:.:^partitionKey=%28https%2Cnvidia.com%29:3 0 19545 https:cm.g.doubleclick.net:443:cm.g.doubleclick.net:443::n:1691344881:h3:y:1688752771:n:^partitionKey=%28https%2Cnvidia.com%29:|n:y: +https:oajs.openx.net:443:.:^partitionKey=%28https%2Cshellscript.sh%29:3 0 19546 https:oajs.openx.net:443:oajs.openx.net:443::n:1691435720:h3:y:1688842468:n:^partitionKey=%28https%2Cshellscript.sh%29:|n:y: +https:region1.google-analytics.com:443:.:^partitionKey=%28https%2Cappsloveworld.com%29:3 0 19546 https:region1.google-analytics.com:443:region1.google-analytics.com:443::n:1691433719:h3:y:1688837857:n:^partitionKey=%28https%2Cappsloveworld.com%29:|n:y: +https:rubiconcm.digitaleast.mobi:443:.:^partitionKey=%28https%2Ctutorialspoint.com%29:3 0 19547 https:rubiconcm.digitaleast.mobi:443:rubiconcm.digitaleast.mobi:443::n:1691462355:h3:y:1688868178:n:^partitionKey=%28https%2Ctutorialspoint.com%29:|n:y: +https:7bf23ecdf7471d27c03b0ba838b07052.safeframe.googlesyndication.com:443:.:^partitionKey=%28https%2Cstackexchange.com%29:3 0 19546 https:7bf23ecdf7471d27c03b0ba838b07052.safeframe.googlesyndication.com:443:7bf23ecdf7471d27c03b0ba838b07052.safeframe.googlesyndication.com:443::n:1691433350:h3:y:1688837857:n:^partitionKey=%28https%2Cstackexchange.com%29:|n:y: +https:scone-pa.clients6.google.com:443:.:^partitionKey=%28https%2Candroid.com%29:3 0 19547 https:scone-pa.clients6.google.com:443:scone-pa.clients6.google.com:443::n:1691492823:h3:y:1688891553:n:^partitionKey=%28https%2Candroid.com%29:|n:y: +https:shopper.shop.pe:443:.:^partitionKey=%28https%2Ctutorialspoint.com%29:3 0 19547 https:shopper.shop.pe:443:shopper.shop.pe:443::n:1691462348:h3:y:1688868178:n:^partitionKey=%28https%2Ctutorialspoint.com%29:|n:y: +https:px.vliplatform.com:443:.:^partitionKey=%28https%2Ctecadmin.net%29:3 0 19546 https:px.vliplatform.com:443:px.vliplatform.com:443::n:1688927380:h3:y:1688837857:n:^partitionKey=%28https%2Ctecadmin.net%29:|n:y: +https:api.rlcdn.com:443:.:^partitionKey=%28https%2Citsfoss.com%29:3 0 19547 https:api.rlcdn.com:443:api.rlcdn.com:443::n:1691468365:h3:y:1688874784:n:^partitionKey=%28https%2Citsfoss.com%29:|n:y: +https:ade.googlesyndication.com:443:.:^partitionKey=%28https%2Cshellscript.sh%29:3 0 19546 https:ade.googlesyndication.com:443:ade.googlesyndication.com:443::n:1691435798:h3:y:1688842468:n:^partitionKey=%28https%2Cshellscript.sh%29:|n:y: +https:www.influ2.com:443:.:^partitionKey=%28https%2Cnvidia.com%29:3 0 19545 https:www.influ2.com:443:www.influ2.com:443::n:1691345049:h3:y:1688752771:n:^partitionKey=%28https%2Cnvidia.com%29:|n:y: +https:www.googletagmanager.com:443:.:^partitionKey=%28https%2Cparsec.app%29:3 0 19547 https:www.googletagmanager.com:443:www.googletagmanager.com:443::n:1691466125:h3:y:1688873798:n:^partitionKey=%28https%2Cparsec.app%29:|n:y: +https:redirector.googlevideo.com:443:.:^partitionKey=%28https%2Ctecadmin.net%29:3 0 19546 https:redirector.googlevideo.com:443:redirector.googlevideo.com:443::n:1691432564:h3:y:1688837857:n:^partitionKey=%28https%2Ctecadmin.net%29:|n:y: +https:polyfill.io:443:.:^partitionKey=%28https%2Cprotondb.com%29:3 0 19547 https:polyfill.io:443:polyfill.io:443::n:1688967077:h3:y:1688877328:n:^partitionKey=%28https%2Cprotondb.com%29:|n:y: +https:api.spotify.com:443:.:^partitionKey=%28https%2Cspotify.com%29:3 0 19547 https:api.spotify.com:443:api.spotify.com:443::n:1691535344:h3:y:1688938778:n:^partitionKey=%28https%2Cspotify.com%29:|n:y: +https:gcdn.2mdn.net:443:.:^partitionKey=%28https%2Cshellscript.sh%29:3 0 19546 https:gcdn.2mdn.net:443:gcdn.2mdn.net:443::n:1691435748:h3:y:1688842468:n:^partitionKey=%28https%2Cshellscript.sh%29:|n:y: +https:d7f64bf65a0ca844f69fec474961405b.safeframe.googlesyndication.com:443:.:^partitionKey=%28https%2Cstackoverflow.com%29:3 0 19546 https:d7f64bf65a0ca844f69fec474961405b.safeframe.googlesyndication.com:443:d7f64bf65a0ca844f69fec474961405b.safeframe.googlesyndication.com:443::n:1691433163:h3:y:1688837857:n:^partitionKey=%28https%2Cstackoverflow.com%29:|n:y: +https:fonts.googleapis.com:443:.:^partitionKey=%28https%2Citsfoss.com%29:3 0 19547 https:fonts.googleapis.com:443:fonts.googleapis.com:443::n:1691468364:h3:y:1688874784:n:^partitionKey=%28https%2Citsfoss.com%29:|n:y: +https:www.googletagmanager.com:443:.:^partitionKey=%28https%2Citsfoss.com%29:3 0 19547 https:www.googletagmanager.com:443:www.googletagmanager.com:443::n:1691468351:h3:y:1688874784:n:^partitionKey=%28https%2Citsfoss.com%29:|n:y: +https:googleads4.g.doubleclick.net:443:.:^partitionKey=%28https%2Cshellscript.sh%29:3 0 19546 https:googleads4.g.doubleclick.net:443:googleads4.g.doubleclick.net:443::n:1691435796:h3:y:1688842468:n:^partitionKey=%28https%2Cshellscript.sh%29:|n:y: +https:pagead2.googlesyndication.com:443:.::3 0 19547 https:pagead2.googlesyndication.com:443:pagead2.googlesyndication.com:443::n:1691469253:h3:y:1688877031:n::|n:y: +https:tpc.googlesyndication.com:443:.:^partitionKey=%28https%2Cbaeldung.com%29:3 0 19546 https:tpc.googlesyndication.com:443:tpc.googlesyndication.com:443::n:1691435961:h3:y:1688842468:n:^partitionKey=%28https%2Cbaeldung.com%29:|n:y: +https:cdn.polyfill.io:443:.:^partitionKey=%28https%2Cwaydro.id%29:3 0 19547 https:cdn.polyfill.io:443:cdn.polyfill.io:443::n:1688989626:h3:y:1688902960:n:^partitionKey=%28https%2Cwaydro.id%29:|n:y: +https:cdn.jsdelivr.net:443:.::3 0 19548 https:cdn.jsdelivr.net:443:cdn.jsdelivr.net:443::n:1689101976:h3:y:1689015566:n::|n:y: +https:www.gstatic.com:443:.:^partitionKey=%28https%2Cappsloveworld.com%29:3 0 19546 https:www.gstatic.com:443:www.gstatic.com:443::n:1691433445:h3:y:1688837857:n:^partitionKey=%28https%2Cappsloveworld.com%29:|n:y: +https:partner.googleadservices.com:443:.:^partitionKey=%28https%2Csystutorials.com%29:3 0 19545 https:partner.googleadservices.com:443:partner.googleadservices.com:443::n:1691360964:h3:y:1688768928:n:^partitionKey=%28https%2Csystutorials.com%29:|n:y: +https:esp.rtbhouse.com:443:.:^partitionKey=%28https%2Cshellscript.sh%29:3 0 19546 https:esp.rtbhouse.com:443:esp.rtbhouse.com:443::n:1691435721:h3:y:1688842468:n:^partitionKey=%28https%2Cshellscript.sh%29:|n:y: +https:tpc.googlesyndication.com:443:.:^partitionKey=%28https%2Cappsloveworld.com%29:3 0 19546 https:tpc.googlesyndication.com:443:tpc.googlesyndication.com:443::n:1691433911:h3:y:1688837857:n:^partitionKey=%28https%2Cappsloveworld.com%29:|n:y: +https:c.pub.network:443:.:^partitionKey=%28https%2Cbaeldung.com%29:3 0 19546 https:c.pub.network:443:c.pub.network:443::n:1691436089:h3:y:1688842468:n:^partitionKey=%28https%2Cbaeldung.com%29:|n:y: +https:fonts.gstatic.com:443:.:^userContextId=5&partitionKey=%28https%2Cspotify.com%29:3 0 19547 https:fonts.gstatic.com:443:fonts.gstatic.com:443::n:1691532280:h3:y:1688938778:n:^userContextId=5&partitionKey=%28https%2Cspotify.com%29:|n:y: +https:securepubads.g.doubleclick.net:443:.:^partitionKey=%28https%2Citsfoss.com%29:3 0 19547 https:securepubads.g.doubleclick.net:443:securepubads.g.doubleclick.net:443::n:1691468383:h3:y:1688874784:n:^partitionKey=%28https%2Citsfoss.com%29:|n:y: +https:3773406.fls.doubleclick.net:443:.:^partitionKey=%28https%2Cnvidia.co.uk%29:3 0 19545 https:3773406.fls.doubleclick.net:443:3773406.fls.doubleclick.net:443::n:1691345069:h3:y:1688752771:n:^partitionKey=%28https%2Cnvidia.co.uk%29:|n:y: +https:bid.g.doubleclick.net:443:.:^partitionKey=%28https%2Cshellscript.sh%29:3 0 19546 https:bid.g.doubleclick.net:443:bid.g.doubleclick.net:443::n:1691435796:h3:y:1688842468:n:^partitionKey=%28https%2Cshellscript.sh%29:|n:y: +https:ajax.googleapis.com:443:.:^partitionKey=%28https%2Cpinetools.com%29:3 1 19549 https:ajax.googleapis.com:443:ajax.googleapis.com:443::n:1691624363:h3:y:1689031473:n:^partitionKey=%28https%2Cpinetools.com%29:|n:y: +https:www.bing.com:443:.:^partitionKey=%28https%2Ctutorialspoint.com%29:3 0 19547 https:www.bing.com:443:www.bing.com:443::n:1688963950:h3:y:1688868178:n:^partitionKey=%28https%2Ctutorialspoint.com%29:|n:y: +https:googleads4.g.doubleclick.net:443:.:^partitionKey=%28https%2Csystutorials.com%29:3 0 19545 https:googleads4.g.doubleclick.net:443:googleads4.g.doubleclick.net:443::n:1691360965:h3:y:1688768928:n:^partitionKey=%28https%2Csystutorials.com%29:|n:y: +https:sleeknotecustomerscripts.sleeknote.com:443:.:^partitionKey=%28https%2Cbaeldung.com%29:3 0 19546 https:sleeknotecustomerscripts.sleeknote.com:443:sleeknotecustomerscripts.sleeknote.com:443::n:1688930353:h3:y:1688842468:n:^partitionKey=%28https%2Cbaeldung.com%29:|n:y: +https:accounts.spotify.com:443:.:^partitionKey=%28https%2Cspotify.com%29:3 1 19548 https:accounts.spotify.com:443:accounts.spotify.com:443::n:1691598809:h3:y:1688920622:n:^partitionKey=%28https%2Cspotify.com%29:|n:y: +https:www.google-analytics.com:443:.:^partitionKey=%28https%2Clastpass.com%29:3 0 19545 https:www.google-analytics.com:443:www.google-analytics.com:443::n:1691364583:h3:y:1688752771:n:^partitionKey=%28https%2Clastpass.com%29:|n:y: +https:easylist.to:443:.::3 0 19547 https:easylist.to:443:easylist.to:443::n:1688963025:h3:y:1688874784:n::|n:y: +https:www.facebook.com:443:.:^partitionKey=%28https%2Chowtogeek.com%29:3 0 19545 https:www.facebook.com:443:www.facebook.com:443::n:1688842560:h3:y:1688755069:n:^partitionKey=%28https%2Chowtogeek.com%29:|n:y: +https:www.googletagservices.com:443:.:^partitionKey=%28https%2Calternativeto.net%29:3 0 19547 https:www.googletagservices.com:443:www.googletagservices.com:443::n:1691465164:h3:y:1688872861:n:^partitionKey=%28https%2Calternativeto.net%29:|n:y: +https:c.pub.network:443:.:^partitionKey=%28https%2Citsfoss.com%29:3 0 19547 https:c.pub.network:443:c.pub.network:443::n:1691468367:h3:y:1688874784:n:^partitionKey=%28https%2Citsfoss.com%29:|n:y: +https:pubads.g.doubleclick.net:443:.:^partitionKey=%28https%2Cshellscript.sh%29:3 0 19546 https:pubads.g.doubleclick.net:443:pubads.g.doubleclick.net:443::n:1691435748:h3:y:1688842468:n:^partitionKey=%28https%2Cshellscript.sh%29:|n:y: +https:dev.visualwebsiteoptimizer.com:443:.:^partitionKey=%28https%2Cnvidia.com%29:3 0 19545 https:dev.visualwebsiteoptimizer.com:443:dev.visualwebsiteoptimizer.com:443::n:1691344913:h3:y:1688752771:n:^partitionKey=%28https%2Cnvidia.com%29:|n:y: +https:region1.analytics.google.com:443:.:^partitionKey=%28https%2Cshellscript.sh%29:3 0 19546 https:region1.analytics.google.com:443:region1.analytics.google.com:443::n:1691435800:h3:y:1688842468:n:^partitionKey=%28https%2Cshellscript.sh%29:|n:y: +https:gew1-spclient.spotify.com:443:.:^partitionKey=%28https%2Cspotify.com%29:3 1 19548 https:gew1-spclient.spotify.com:443:gew1-spclient.spotify.com:443::n:1691598813:h3:y:1688920622:n:^partitionKey=%28https%2Cspotify.com%29:|n:y: +https:013ac131690a1c6c9eeadb2090bea61f.safeframe.googlesyndication.com:443:.:^partitionKey=%28https%2Cappsloveworld.com%29:3 0 19546 https:013ac131690a1c6c9eeadb2090bea61f.safeframe.googlesyndication.com:443:013ac131690a1c6c9eeadb2090bea61f.safeframe.googlesyndication.com:443::n:1691433444:h3:y:1688837857:n:^partitionKey=%28https%2Cappsloveworld.com%29:|n:y: +https:maxcdn.bootstrapcdn.com:443:.:^partitionKey=%28https%2Crazer.com%29:3 0 19546 https:maxcdn.bootstrapcdn.com:443:maxcdn.bootstrapcdn.com:443::n:1688918289:h3:y:1688831685:n:^partitionKey=%28https%2Crazer.com%29:|n:y: +https:region1.google-analytics.com:443:.:^partitionKey=%28https%2Citsfoss.com%29:3 0 19547 https:region1.google-analytics.com:443:region1.google-analytics.com:443::n:1691468387:h3:y:1688874784:n:^partitionKey=%28https%2Citsfoss.com%29:|n:y: +https:the.gatekeeperconsent.com:443:.:^partitionKey=%28https%2Clinuxtechi.com%29:3 0 19547 https:the.gatekeeperconsent.com:443:the.gatekeeperconsent.com:443::n:1688987502:h3:y:1688891553:n:^partitionKey=%28https%2Clinuxtechi.com%29:|n:y: +https:graph.facebook.com:443:.::3 0 19547 https:graph.facebook.com:443:graph.facebook.com:443::n:1689012732:h3:y:1688926197:n::|n:y: +https:vpaid.doubleverify.com:443:.:^partitionKey=%28https%2Cshellscript.sh%29:3 0 19546 https:vpaid.doubleverify.com:443:vpaid.doubleverify.com:443::n:1688930132:h3:y:1688842468:n:^partitionKey=%28https%2Cshellscript.sh%29:|n:y: +https:fabc20478dc3e6dd2d5285a87dd6fdbb.safeframe.googlesyndication.com:443:.:^partitionKey=%28https%2Cstackexchange.com%29:3 0 19546 https:fabc20478dc3e6dd2d5285a87dd6fdbb.safeframe.googlesyndication.com:443:fabc20478dc3e6dd2d5285a87dd6fdbb.safeframe.googlesyndication.com:443::n:1691433224:h3:y:1688837857:n:^partitionKey=%28https%2Cstackexchange.com%29:|n:y: +https:www.google-analytics.com:443:.:^partitionKey=%28https%2Cgnome-look.org%29:3 0 19545 https:www.google-analytics.com:443:www.google-analytics.com:443::n:1691364415:h3:y:1688771077:n:^partitionKey=%28https%2Cgnome-look.org%29:|n:y: +https:apresolve.spotify.com:443:.:^partitionKey=%28https%2Cspotify.com%29:3 1 19548 https:apresolve.spotify.com:443:apresolve.spotify.com:443::n:1691598805:h3:y:1688920622:n:^partitionKey=%28https%2Cspotify.com%29:|n:y: +https:tpc.googlesyndication.com:443:.:^partitionKey=%28https%2Cshellscript.sh%29:3 0 19546 https:tpc.googlesyndication.com:443:tpc.googlesyndication.com:443::n:1691435762:h3:y:1688842468:n:^partitionKey=%28https%2Cshellscript.sh%29:|n:y: +https:csi.gstatic.com:443:.:^partitionKey=%28https%2Citsfoss.com%29:3 0 19547 https:csi.gstatic.com:443:csi.gstatic.com:443::n:1691468366:h3:y:1688874784:n:^partitionKey=%28https%2Citsfoss.com%29:|n:y: +https:www.gstatic.com:443:.:^partitionKey=%28https%2Cxda-developers.com%29:3 0 19547 https:www.gstatic.com:443:www.gstatic.com:443::n:1691471840:h3:y:1688877328:n:^partitionKey=%28https%2Cxda-developers.com%29:|n:y: +https:partner.googleadservices.com:443:.:^partitionKey=%28https%2Calternativeto.net%29:3 0 19547 https:partner.googleadservices.com:443:partner.googleadservices.com:443::n:1691465164:h3:y:1688872861:n:^partitionKey=%28https%2Calternativeto.net%29:|n:y: +https:ox-delivery-prod-europe-west2.openx.net:443:.:^partitionKey=%28https%2Ctutorialspoint.com%29:3 0 19547 https:ox-delivery-prod-europe-west2.openx.net:443:ox-delivery-prod-europe-west2.openx.net:443::n:1691462350:h3:y:1688868178:n:^partitionKey=%28https%2Ctutorialspoint.com%29:|n:y: +https:c007a5772a362caf9201d896f705dfeb.safeframe.googlesyndication.com:443:.:^partitionKey=%28https%2Cstackexchange.com%29:3 0 19546 https:c007a5772a362caf9201d896f705dfeb.safeframe.googlesyndication.com:443:c007a5772a362caf9201d896f705dfeb.safeframe.googlesyndication.com:443::n:1691436124:h3:y:1688842468:n:^partitionKey=%28https%2Cstackexchange.com%29:|n:y: +https:docs.spotifyd.rs:443:.:^partitionKey=%28https%2Cspotifyd.rs%29:3 1 19548 https:docs.spotifyd.rs:443:docs.spotifyd.rs:443::n:1689093953:h3:y:1688938778:n:^partitionKey=%28https%2Cspotifyd.rs%29:|n:y: +https:ad.doubleclick.net:443:.:^partitionKey=%28https%2Cshellscript.sh%29:3 0 19546 https:ad.doubleclick.net:443:ad.doubleclick.net:443::n:1691435762:h3:y:1688842468:n:^partitionKey=%28https%2Cshellscript.sh%29:|n:y: +https:adservice.google.com:443:.:^partitionKey=%28https%2Cappsloveworld.com%29:3 0 19546 https:adservice.google.com:443:adservice.google.com:443::n:1691433911:h3:y:1688837857:n:^partitionKey=%28https%2Cappsloveworld.com%29:|n:y: +https:ogs.google.com:443:.:^partitionKey=%28https%2Cgoogle.com%29:3 0 19545 https:ogs.google.com:443:ogs.google.com:443::n:1691365168:h3:y:1688773160:n:^partitionKey=%28https%2Cgoogle.com%29:|n:y: +https:google-bidout-d.openx.net:443:.:^partitionKey=%28https%2Citsfoss.com%29:3 0 19547 https:google-bidout-d.openx.net:443:google-bidout-d.openx.net:443::n:1691468364:h3:y:1688874784:n:^partitionKey=%28https%2Citsfoss.com%29:|n:y: +https:lutris.net:443:.:^partitionKey=%28https%2Clutris.net%29:3 0 19547 https:lutris.net:443:lutris.net:443::n:1688967108:h3:y:1688877328:n:^partitionKey=%28https%2Clutris.net%29:|n:y: +https:ib.3lift.com:443:.:^partitionKey=%28https%2Ctutorialspoint.com%29:3 0 19547 https:ib.3lift.com:443:ib.3lift.com:443::n:1688956750:h3:y:1688868178:n:^partitionKey=%28https%2Ctutorialspoint.com%29:|n:y: +https:lh6.googleusercontent.com:443:.:^partitionKey=%28https%2Cstackexchange.com%29:3 0 19547 https:lh6.googleusercontent.com:443:lh6.googleusercontent.com:443::n:1691518274:h3:y:1688891553:n:^partitionKey=%28https%2Cstackexchange.com%29:|n:y: +https:cdn.pushcrew.com:443:.:^partitionKey=%28https%2Cpushcrew.com%29:3 0 19545 https:cdn.pushcrew.com:443:cdn.pushcrew.com:443::n:1688839312:h3:y:1688752771:n:^partitionKey=%28https%2Cpushcrew.com%29:|n:y: +https:lh3.googleusercontent.com:443:.:^partitionKey=%28https%2Cserverfault.com%29:3 0 19547 https:lh3.googleusercontent.com:443:lh3.googleusercontent.com:443::n:1691516478:h3:y:1688922867:n:^partitionKey=%28https%2Cserverfault.com%29:|n:y: +https:ka-f.fontawesome.com:443:.:^userContextId=5&partitionKey=%28https%2Cv.je%29:3 0 19548 https:ka-f.fontawesome.com:443:ka-f.fontawesome.com:443::n:1689103167:h3:y:1689015566:n:^userContextId=5&partitionKey=%28https%2Cv.je%29:|n:y: +https:rtb.openx.net:443:.:^partitionKey=%28https%2Cshellscript.sh%29:3 0 19546 https:rtb.openx.net:443:rtb.openx.net:443::n:1691435794:h3:y:1688842468:n:^partitionKey=%28https%2Cshellscript.sh%29:|n:y: +https:cdn.discordapp.com:443:.:^partitionKey=%28https%2Chyprland.org%29:3 0 19545 https:cdn.discordapp.com:443:cdn.discordapp.com:443::n:1688836092:h3:y:1688749048:n:^partitionKey=%28https%2Chyprland.org%29:|n:y: +https:ws.zoominfo.com:443:.:^partitionKey=%28https%2Cnvidia.com%29:3 0 19545 https:ws.zoominfo.com:443:ws.zoominfo.com:443::n:1688839470:h3:y:1688752771:n:^partitionKey=%28https%2Cnvidia.com%29:|n:y: +https:googleads.g.doubleclick.net:443:.:^partitionKey=%28https%2Csystutorials.com%29:3 0 19545 https:googleads.g.doubleclick.net:443:googleads.g.doubleclick.net:443::n:1691360965:h3:y:1688768928:n:^partitionKey=%28https%2Csystutorials.com%29:|n:y: +https:www.rapidtables.com:443:.:^partitionKey=%28https%2Crapidtables.com%29:3 0 19545 https:www.rapidtables.com:443:www.rapidtables.com:443::n:1688843114:h3:y:1688755069:n:^partitionKey=%28https%2Crapidtables.com%29:|n:y: +https:tpc.googlesyndication.com:443:.:^partitionKey=%28https%2Cstackoverflow.com%29:3 1 19547 https:tpc.googlesyndication.com:443:tpc.googlesyndication.com:443::n:1691462324:h3:y:1688837857:n:^partitionKey=%28https%2Cstackoverflow.com%29:|n:y: +https:i.clean.gg:443:.:^partitionKey=%28https%2Chowtogeek.com%29:3 0 19545 https:i.clean.gg:443:i.clean.gg:443::n:1691348158:h3:y:1688755069:n:^partitionKey=%28https%2Chowtogeek.com%29:|n:y: +https:stackpath.bootstrapcdn.com:443:.:^partitionKey=%28https%2Cv.je%29:3 0 19548 https:stackpath.bootstrapcdn.com:443:stackpath.bootstrapcdn.com:443::n:1689102384:h3:y:1689015566:n:^partitionKey=%28https%2Cv.je%29:|n:y: +https:0477b5f9621ebed150d3450d88900a8f.safeframe.googlesyndication.com:443:.:^partitionKey=%28https%2Cstackoverflow.com%29:3 0 19546 https:0477b5f9621ebed150d3450d88900a8f.safeframe.googlesyndication.com:443:0477b5f9621ebed150d3450d88900a8f.safeframe.googlesyndication.com:443::n:1691435067:h3:y:1688842468:n:^partitionKey=%28https%2Cstackoverflow.com%29:|n:y: +https:adservice.google.com:443:.:^partitionKey=%28https%2Cnvidia.co.uk%29:3 0 19545 https:adservice.google.com:443:adservice.google.com:443::n:1691345070:h3:y:1688752771:n:^partitionKey=%28https%2Cnvidia.co.uk%29:|n:y: +https:pagead2.googlesyndication.com:443:.:^partitionKey=%28https%2Cshellscript.sh%29:3 0 19546 https:pagead2.googlesyndication.com:443:pagead2.googlesyndication.com:443::n:1691435799:h3:y:1688842468:n:^partitionKey=%28https%2Cshellscript.sh%29:|n:y: +https:www.googletagservices.com:443:.:^partitionKey=%28https%2Csystutorials.com%29:3 0 19545 https:www.googletagservices.com:443:www.googletagservices.com:443::n:1691360961:h3:y:1688768928:n:^partitionKey=%28https%2Csystutorials.com%29:|n:y: +https:cdn.ampproject.org:443:.:^partitionKey=%28https%2Chowtogeek.com%29:3 0 19545 https:cdn.ampproject.org:443:cdn.ampproject.org:443::n:1691348161:h3:y:1688755069:n:^partitionKey=%28https%2Chowtogeek.com%29:|n:y: +https:cdn.jsdelivr.net:443:.:^partitionKey=%28https%2Crazer.com%29:3 0 19546 https:cdn.jsdelivr.net:443:cdn.jsdelivr.net:443::n:1688918289:h3:y:1688831685:n:^partitionKey=%28https%2Crazer.com%29:|n:y: +https:fonts.googleapis.com:443:.:^partitionKey=%28https%2Cw3schools.com%29:3 0 19548 https:fonts.googleapis.com:443:fonts.googleapis.com:443::n:1691610481:h3:y:1689018121:n:^partitionKey=%28https%2Cw3schools.com%29:|n:y: +https:90bf950342f10867ce9de455e2c8b131.safeframe.googlesyndication.com:443:.:^partitionKey=%28https%2Cstackoverflow.com%29:3 0 19546 https:90bf950342f10867ce9de455e2c8b131.safeframe.googlesyndication.com:443:90bf950342f10867ce9de455e2c8b131.safeframe.googlesyndication.com:443::n:1691436195:h3:y:1688842468:n:^partitionKey=%28https%2Cstackoverflow.com%29:|n:y: +https:googleads.g.doubleclick.net:443:.:^partitionKey=%28https%2Cnvidia.co.uk%29:3 0 19545 https:googleads.g.doubleclick.net:443:googleads.g.doubleclick.net:443::n:1691345071:h3:y:1688752771:n:^partitionKey=%28https%2Cnvidia.co.uk%29:|n:y: +https:stats.g.doubleclick.net:443:.:^partitionKey=%28https%2Cstackexchange.com%29:3 0 19546 https:stats.g.doubleclick.net:443:stats.g.doubleclick.net:443::n:1691436124:h3:y:1688837857:n:^partitionKey=%28https%2Cstackexchange.com%29:|n:y: +https:fonts.gstatic.com:443:.:^partitionKey=%28https%2Crapidtables.com%29:3 0 19545 https:fonts.gstatic.com:443:fonts.gstatic.com:443::n:1691348715:h3:y:1688755069:n:^partitionKey=%28https%2Crapidtables.com%29:|n:y: +https:pagead2.googlesyndication.com:443:.:^partitionKey=%28https%2Csystutorials.com%29:3 0 19545 https:pagead2.googlesyndication.com:443:pagead2.googlesyndication.com:443::n:1691360967:h3:y:1688768928:n:^partitionKey=%28https%2Csystutorials.com%29:|n:y: +https:www.gstatic.com:443:.:^partitionKey=%28https%2C101computing.net%29:3 0 19548 https:www.gstatic.com:443:www.gstatic.com:443::n:1691610148:h3:y:1689018121:n:^partitionKey=%28https%2C101computing.net%29:|n:y: +https:netdna.bootstrapcdn.com:443:.:^partitionKey=%28https%2Cappsloveworld.com%29:3 0 19546 https:netdna.bootstrapcdn.com:443:netdna.bootstrapcdn.com:443::n:1688927842:h3:y:1688837857:n:^partitionKey=%28https%2Cappsloveworld.com%29:|n:y: +https:www.google-analytics.com:443:.:^partitionKey=%28https%2Cawesomeopensource.com%29:3 0 19547 https:www.google-analytics.com:443:www.google-analytics.com:443::n:1691464604:h3:y:1688872585:n:^partitionKey=%28https%2Cawesomeopensource.com%29:|n:y: +https:securepubads.g.doubleclick.net:443:.:^partitionKey=%28https%2Cbaeldung.com%29:3 0 19546 https:securepubads.g.doubleclick.net:443:securepubads.g.doubleclick.net:443::n:1691436114:h3:y:1688842468:n:^partitionKey=%28https%2Cbaeldung.com%29:|n:y: +https:www.googletagservices.com:443:.:^partitionKey=%28https%2Citsfoss.com%29:3 0 19547 https:www.googletagservices.com:443:www.googletagservices.com:443::n:1691468365:h3:y:1688874784:n:^partitionKey=%28https%2Citsfoss.com%29:|n:y: +https:adservice.google.com:443:.:^partitionKey=%28https%2Chowtogeek.com%29:3 0 19545 https:adservice.google.com:443:adservice.google.com:443::n:1691348161:h3:y:1688755069:n:^partitionKey=%28https%2Chowtogeek.com%29:|n:y: +https:pythonawesome.com:443:.:^partitionKey=%28https%2Cpythonawesome.com%29:3 0 19547 https:pythonawesome.com:443:pythonawesome.com:443::n:1688989559:h3:y:1688902960:n:^partitionKey=%28https%2Cpythonawesome.com%29:|n:y: +https:0cb7889f3dab9cfddd74aae92321a86a.safeframe.googlesyndication.com:443:.:^partitionKey=%28https%2Cstackoverflow.com%29:3 0 19546 https:0cb7889f3dab9cfddd74aae92321a86a.safeframe.googlesyndication.com:443:0cb7889f3dab9cfddd74aae92321a86a.safeframe.googlesyndication.com:443::n:1691434478:h3:y:1688842468:n:^partitionKey=%28https%2Cstackoverflow.com%29:|n:y: +https:fonts.gstatic.com:443:.:^partitionKey=%28https%2Cdocker.com%29:3 0 19547 https:fonts.gstatic.com:443:fonts.gstatic.com:443::n:1691483227:h3:y:1688891119:n:^partitionKey=%28https%2Cdocker.com%29:|n:y: +https:curvedhoney.com:443:.:^partitionKey=%28https%2Cbaeldung.com%29:3 0 19546 https:curvedhoney.com:443:curvedhoney.com:443::n:1691435953:h3:y:1688842468:n:^partitionKey=%28https%2Cbaeldung.com%29:|n:y: +https:googleads4.g.doubleclick.net:443:.:^partitionKey=%28https%2Chowtogeek.com%29:3 0 19545 https:googleads4.g.doubleclick.net:443:googleads4.g.doubleclick.net:443::n:1691348164:h3:y:1688755069:n:^partitionKey=%28https%2Chowtogeek.com%29:|n:y: +https:region1.google-analytics.com:443:.:^partitionKey=%28https%2Crapidtables.com%29:3 0 19545 https:region1.google-analytics.com:443:region1.google-analytics.com:443::n:1691349259:h3:y:1688755069:n:^partitionKey=%28https%2Crapidtables.com%29:|n:y: +https:tpc.googlesyndication.com:443:.:^partitionKey=%28https%2Ctutorialspoint.com%29:3 0 19547 https:tpc.googlesyndication.com:443:tpc.googlesyndication.com:443::n:1691462350:h3:y:1688868178:n:^partitionKey=%28https%2Ctutorialspoint.com%29:|n:y: +https:fonts.googleapis.com:443:.:^partitionKey=%28https%2Cspencerkrum.com%29:3 0 19549 https:fonts.googleapis.com:443:fonts.googleapis.com:443::n:1691631343:h3:y:1689038778:n:^partitionKey=%28https%2Cspencerkrum.com%29:|n:y: +https:adservice.google.com:443:.:^partitionKey=%28https%2Clastpass.com%29:3 0 19545 https:adservice.google.com:443:adservice.google.com:443::n:1691364582:h3:y:1688752771:n:^partitionKey=%28https%2Clastpass.com%29:|n:y: +https:tr.blismedia.com:443:.:^partitionKey=%28https%2Ctutorialspoint.com%29:3 0 19547 https:tr.blismedia.com:443:tr.blismedia.com:443::n:1691462355:h3:y:1688868178:n:^partitionKey=%28https%2Ctutorialspoint.com%29:|n:y: +https:api.pinterest.com:443:.:^partitionKey=%28https%2Csmarttech101.com%29:3 0 19546 https:api.pinterest.com:443:api.pinterest.com:443::n:1688840537:h3:y:1688837857:n:^partitionKey=%28https%2Csmarttech101.com%29:|n:y: +https:sync.intentiq.com:443:.:^partitionKey=%28https%2Ctecadmin.net%29:3 0 19546 https:sync.intentiq.com:443:sync.intentiq.com:443::n:1688927023:h3:y:1688837857:n:^partitionKey=%28https%2Ctecadmin.net%29:|n:y: +https:adservice.google.com:443:.:^partitionKey=%28https%2Ctutorialspoint.com%29:3 0 19547 https:adservice.google.com:443:adservice.google.com:443::n:1691462349:h3:y:1688868178:n:^partitionKey=%28https%2Ctutorialspoint.com%29:|n:y: +https:lh4.googleusercontent.com:443:.:^partitionKey=%28https%2Cstackexchange.com%29:3 2 19548 https:lh4.googleusercontent.com:443:lh4.googleusercontent.com:443::n:1691612565:h3:y:1688842468:n:^partitionKey=%28https%2Cstackexchange.com%29:|n:y: +https:www.gstatic.com:443:.:^userContextId=5&partitionKey=%28https%2Cspotify.com%29:3 0 19547 https:www.gstatic.com:443:www.gstatic.com:443::n:1691532280:h3:y:1688938778:n:^userContextId=5&partitionKey=%28https%2Cspotify.com%29:|n:y: +https:oa.openxcdn.net:443:.:^partitionKey=%28https%2Crapidtables.com%29:3 0 19545 https:oa.openxcdn.net:443:oa.openxcdn.net:443::n:1691348716:h3:y:1688755069:n:^partitionKey=%28https%2Crapidtables.com%29:|n:y: +https:accounts.google.com:443:.:^partitionKey=%28https%2Creddit.com%29:3 3 19548 https:accounts.google.com:443:accounts.google.com:443::n:1691605899:h3:y:1688749048:n:^partitionKey=%28https%2Creddit.com%29:|n:y: +https:www.google-analytics.com:443:.:^partitionKey=%28https%2Ctecadmin.net%29:3 0 19546 https:www.google-analytics.com:443:www.google-analytics.com:443::n:1691432562:h3:y:1688837857:n:^partitionKey=%28https%2Ctecadmin.net%29:|n:y: +https:region1.google-analytics.com:443:.:^partitionKey=%28https%2Csmarttech101.com%29:3 0 19546 https:region1.google-analytics.com:443:region1.google-analytics.com:443::n:1691431949:h3:y:1688837857:n:^partitionKey=%28https%2Csmarttech101.com%29:|n:y: +https:www.mankier.com:443:.:^partitionKey=%28https%2Cmankier.com%29:3 1 19547 https:www.mankier.com:443:www.mankier.com:443::n:1688953565:h3:y:1688837857:n:^partitionKey=%28https%2Cmankier.com%29:|n:y: +https:s0.2mdn.net:443:.:^partitionKey=%28https%2Cappsloveworld.com%29:3 0 19546 https:s0.2mdn.net:443:s0.2mdn.net:443::n:1691433665:h3:y:1688837857:n:^partitionKey=%28https%2Cappsloveworld.com%29:|n:y: +https:www.googletagmanager.com:443:.:^partitionKey=%28https%2Ckeepfloyding.github.io%29:3 0 19546 https:www.googletagmanager.com:443:www.googletagmanager.com:443::n:1691430215:h3:y:1688837857:n:^partitionKey=%28https%2Ckeepfloyding.github.io%29:|n:y: +https:ajax.googleapis.com:443:.:^partitionKey=%28https%2Cserverfault.com%29:3 0 19547 https:ajax.googleapis.com:443:ajax.googleapis.com:443::n:1691516477:h3:y:1688922867:n:^partitionKey=%28https%2Cserverfault.com%29:|n:y: +https:securepubads.g.doubleclick.net:443:.:^partitionKey=%28https%2Ctutorialspoint.com%29:3 0 19547 https:securepubads.g.doubleclick.net:443:securepubads.g.doubleclick.net:443::n:1691462350:h3:y:1688868178:n:^partitionKey=%28https%2Ctutorialspoint.com%29:|n:y: +https:partner.googleadservices.com:443:.:^partitionKey=%28https%2Cmankier.com%29:3 1 19547 https:partner.googleadservices.com:443:partner.googleadservices.com:443::n:1691459165:h3:y:1688837857:n:^partitionKey=%28https%2Cmankier.com%29:|n:y: +https:region1.analytics.google.com:443:.:^partitionKey=%28https%2Chowtogeek.com%29:3 0 19545 https:region1.analytics.google.com:443:region1.analytics.google.com:443::n:1691348168:h3:y:1688755069:n:^partitionKey=%28https%2Chowtogeek.com%29:|n:y: +https:ultra.content.blackboardcdn.com:443:.:^partitionKey=%28https%2Cnorthampton.ac.uk%29:3 0 19548 https:ultra.content.blackboardcdn.com:443:ultra.content.blackboardcdn.com:443::n:1689102257:h3:y:1689015566:n:^partitionKey=%28https%2Cnorthampton.ac.uk%29:|n:y: +https:video-meta.humix.com:443:.:^partitionKey=%28https%2Cshellscript.sh%29:3 0 19546 https:video-meta.humix.com:443:video-meta.humix.com:443::n:1688930199:h3:y:1688842468:n:^partitionKey=%28https%2Cshellscript.sh%29:|n:y: +https:us-u.openx.net:443:.:^partitionKey=%28https%2Ctutorialspoint.com%29:3 0 19547 https:us-u.openx.net:443:us-u.openx.net:443::n:1691462354:h3:y:1688868178:n:^partitionKey=%28https%2Ctutorialspoint.com%29:|n:y: +https:mts0.google.com:443:.:^partitionKey=%28https%2Cshellscript.sh%29:3 0 19546 https:mts0.google.com:443:mts0.google.com:443::n:1691435767:h3:y:1688842468:n:^partitionKey=%28https%2Cshellscript.sh%29:|n:y: +https:translate.google.com:443:.:^partitionKey=%28https%2C101computing.net%29:3 0 19548 https:translate.google.com:443:translate.google.com:443::n:1691610146:h3:y:1689018121:n:^partitionKey=%28https%2C101computing.net%29:|n:y: +https:adservice.google.co.uk:443:.:^partitionKey=%28https%2Cnvidia.co.uk%29:3 0 19545 https:adservice.google.co.uk:443:googleads.g.doubleclick.net:443::n:1691345070:h3:y:1688752771:n:^partitionKey=%28https%2Cnvidia.co.uk%29:|n:y: +https:www.googletagservices.com:443:.:^partitionKey=%28https%2Cstackexchange.com%29:3 1 19546 https:www.googletagservices.com:443:www.googletagservices.com:443::n:1691436124:h3:y:1688772412:n:^partitionKey=%28https%2Cstackexchange.com%29:|n:y: +https:rtb.openx.net:443:.:^partitionKey=%28https%2Chowtogeek.com%29:3 0 19545 https:rtb.openx.net:443:rtb.openx.net:443::n:1691348160:h3:y:1688755069:n:^partitionKey=%28https%2Chowtogeek.com%29:|n:y: +https:tpc.googlesyndication.com:443:.:^partitionKey=%28https%2Citsfoss.com%29:3 0 19547 https:tpc.googlesyndication.com:443:tpc.googlesyndication.com:443::n:1691468367:h3:y:1688874784:n:^partitionKey=%28https%2Citsfoss.com%29:|n:y: +https:stats.g.doubleclick.net:443:.:^partitionKey=%28https%2Cshellscript.sh%29:3 0 19546 https:stats.g.doubleclick.net:443:stats.g.doubleclick.net:443::n:1691435718:h3:y:1688842468:n:^partitionKey=%28https%2Cshellscript.sh%29:|n:y: +https:pagead2.googlesyndication.com:443:.:^partitionKey=%28https%2Calternativeto.net%29:3 0 19547 https:pagead2.googlesyndication.com:443:pagead2.googlesyndication.com:443::n:1691465177:h3:y:1688872861:n:^partitionKey=%28https%2Calternativeto.net%29:|n:y: +https:cdnjs.cloudflare.com:443:.:^partitionKey=%28https%2C101computing.net%29:3 0 19548 https:cdnjs.cloudflare.com:443:cdnjs.cloudflare.com:443::n:1689104547:h3:y:1689018121:n:^partitionKey=%28https%2C101computing.net%29:|n:y: +https:capi.connatix.com:443:.:^partitionKey=%28https%2Cappsloveworld.com%29:3 0 19546 https:capi.connatix.com:443:capi.connatix.com:443::n:1688928124:h3:y:1688837857:n:^partitionKey=%28https%2Cappsloveworld.com%29:|n:y: +https:www.gstatic.com:443:.:^partitionKey=%28https%2Candroid.com%29:3 0 19547 https:www.gstatic.com:443:www.gstatic.com:443::n:1691492823:h3:y:1688891553:n:^partitionKey=%28https%2Candroid.com%29:|n:y: diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/ExperimentStoreData.json b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/ExperimentStoreData.json new file mode 100644 index 0000000..2f6279c --- /dev/null +++ b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/ExperimentStoreData.json @@ -0,0 +1 @@ +{"abouthome-startup-cache-5":{"slug":"abouthome-startup-cache-5","branch":{"slug":"treatment-a","ratio":1,"feature":{"value":{},"enabled":false,"featureId":"this-is-included-for-desktop-pre-95-support"},"features":[{"value":{"enabled":true},"enabled":true,"featureId":"abouthomecache"}]},"active":false,"enrollmentId":"61ea53d6-c73b-40ce-a939-bd872a0cd5c3","experimentType":"nimbus","source":"rs-loader","userFacingName":"about:home startup cache 5","userFacingDescription":"The about:home startup cache tries to make loading the default homepage in Firefox faster after it first starts.","lastSeen":"2023-07-07T16:26:50.809Z","featureIds":["abouthomecache"],"prefs":[],"isRollout":false,"unenrollReason":"studies-opt-out"},"firefox-accounts-toolbar-button-badge":{"slug":"firefox-accounts-toolbar-button-badge","branch":{"slug":"control","ratio":1,"feature":{"value":{},"enabled":false,"featureId":"this-is-included-for-desktop-pre-95-support"},"features":[{"value":{"id":"FXA_ACCOUNTS_BADGE","content":{"delay":10000,"target":"fxa-toolbar-menu-button"},"trigger":{"id":"toolbarBadgeUpdate"},"template":"toolbar_badge","targeting":"'nimbus.syncdatastore.fxaButtonVisibility'|preferenceValue|regExpMatch('treatment-b') && !hasAccessedFxAPanel && !usesFirefoxSync && isFxAEnabled == true"},"enabled":true,"featureId":"moments-page"}]},"active":false,"enrollmentId":"b1e63a26-0486-4edb-9584-6fce88e9b0eb","experimentType":"rollout","source":"rs-loader","userFacingName":"Firefox Accounts toolbar button badge","userFacingDescription":"This experiment measures the impact of showing the Firefox Accounts toolbar button by default for signed-out users.","lastSeen":"2023-07-07T16:26:50.835Z","featureIds":["moments-page"],"prefs":[],"isRollout":true,"unenrollReason":"studies-opt-out"}} \ No newline at end of file diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/SiteSecurityServiceState.txt b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/SiteSecurityServiceState.txt new file mode 100644 index 0000000..d0efb18 --- /dev/null +++ b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/SiteSecurityServiceState.txt @@ -0,0 +1,198 @@ +img.icons8.com^partitionKey=%28http%2Cicons8.com%29:HSTS 0 19548 1704756503018,1,1 +maxst.icons8.com:HSTS 0 19548 1704756498072,1,1 +developer.spotify.com^partitionKey=%28http%2Cspotify.com%29:HSTS 1 19548 1720475068865,1,0 +account.activedirectory.windowsazure.com^partitionKey=%28http%2Cwindowsazure.com%29:HSTS 0 19548 1720551795245,1,1 +www.https-rulesets.org:HSTS 1 19548 1751948500335,1,1 +sommelier.futurehybrid.tech:HSTS 0 19547 1704626810493,1,1 +vscode.dev^partitionKey=%28http%2Cvscode.dev%29:HSTS 1 19548 1720551386921,1,1 +discord.com:HSTS 0 19548 1720549606136,1,1 +classify-client.services.mozilla.com:HSTS 2 19548 1720542820939,1,0 +pinetools.com^partitionKey=%28http%2Cpinetools.com%29:HSTS 1 19549 1720568363030,1,0 +www.protondb.com:HSTS 0 19547 1720416686008,1,0 +services.addons.mozilla.org:HSTS 1 19548 1720543051973,1,0 +kinsta.com^partitionKey=%28http%2Ckinsta.com%29:HSTS 0 19547 1720412353565,1,0 +upload.wikimedia.org:HSTS 0 19547 1795286214530,1,1 +cdn.kde.org:HSTS 0 19547 1704657929302,1,0 +cdnjs.cloudflare.com:HSTS 1 19548 1704798147432,1,0 +www.freecodecamp.org^partitionKey=%28http%2Cfreecodecamp.org%29:HSTS 0 19547 1720457574939,1,1 +www.eff.org^partitionKey=%28http%2Ceff.org%29:HSTS 0 19547 1751948045452,1,1 +use.typekit.net:HSTS 0 19548 1720548510516,1,1 +graph.facebook.com:HSTS 0 19547 1704478332525,1,0 +stackoverflow.com^partitionKey=%28http%2Cstackoverflow.com%29:HSTS 3 19549 1704570333631,1,0 +cdn.jsdelivr.net:HSTS 1 19548 1720551576359,1,1 +www.wikihow.com:HSTS 0 19547 1720413252795,1,1 +www.google.com^firstPartyDomain=google-b-d.search.suggestions.mozilla:HSTS 2 19547 1720371633778,1,0 +gitlab.com:HSTS 0 19547 1720427798344,1,0 +photos.icons8.com^partitionKey=%28http%2Cicons8.com%29:HSTS 0 19548 1704756749467,1,1 +ask-legal.v.je^partitionKey=%28http%2Cv.je%29:HSTS 0 19548 1720551596482,1,0 +aur.archlinux.org^partitionKey=%28http%2Carchlinux.org%29:HSTS 2 19548 1720547825106,1,1 +docs.waydro.id^partitionKey=%28http%2Cwaydro.id%29:HSTS 0 19547 1720439226655,1,0 +developer.gnome.org^partitionKey=%28http%2Cgnome.org%29:HSTS 0 19547 1688920973773,1,0 +firefox.settings.services.mozilla.com:HSTS 4 19549 1720549076941,1,0 +js-agent.newrelic.com:HSTS 0 19547 1688881212541,1,0 +www.reddit.com^partitionKey=%28http%2Creddit.com%29:HSTS 3 19548 1720549897043,1,1 +www.eff.org:HSTS 1 19548 1752078798848,1,1 +gist.github.com^partitionKey=%28http%2Cgithub.com%29:HSTS 1 19547 1720380624514,1,1 +bst.icons8.com^partitionKey=%28http%2Cicons8.com%29:HSTS 0 19548 1720567738302,1,1 +identity.lastpass.com:HSTS 1 19549 1691625678878,1,0 +docs.kde.org^partitionKey=%28http%2Ckde.org%29:HSTS 0 19547 1704657929101,1,0 +lutris.net^partitionKey=%28http%2Clutris.net%29:HSTS 0 19547 1720416692431,1,1 +spocs.getpocket.com:HSTS 4 19549 1752084551822,1,0 +improving.duckduckgo.com^partitionKey=%28http%2Cduckduckgo.com%29:HSTS 2 19549 1720542803098,1,0 +www.cyberciti.biz^partitionKey=%28http%2Ccyberciti.biz%29:HSTS 0 19546 1704394335004,1,0 +discordapp.com^partitionKey=%28http%2Cdiscordapp.com%29:HSTS 0 19546 1720367522813,1,1 +www.linuxtechi.com^partitionKey=%28http%2Clinuxtechi.com%29:HSTS 0 19547 1704453108059,1,1 +img-main.icons8.com^partitionKey=%28http%2Cicons8.com%29:HSTS 0 19548 1704756503175,1,1 +alternativeto.net^partitionKey=%28http%2Calternativeto.net%29:HSTS 0 19547 1751945162556,1,1 +nouveau.freedesktop.org^partitionKey=%28http%2Cnouveau.freedesktop.org%29:HSTS 0 19545 1704477741705,1,1 +nile.northampton.ac.uk^partitionKey=%28http%2Cnorthampton.ac.uk%29:HSTS 1 19548 1752087810226,1,1 +developer.android.com^partitionKey=%28http%2Candroid.com%29:HSTS 0 19547 1751972820395,1,1 +account.proton.me^partitionKey=%28http%2Cproton.me%29:HSTS 0 19547 1720416764813,1,1 +alive.github.com^partitionKey=%28http%2Cgithub.com%29:HSTS 2 19549 1720542879671,1,0 +support.mozilla.org^partitionKey=%28http%2Cmozilla.org%29:HSTS 0 19547 1720411936327,1,0 +fedoraproject.org^partitionKey=%28http%2Cfedoraproject.org%29:HSTS 0 19547 1720408605938,1,1 +bcd.developer.mozilla.org^partitionKey=%28http%2Cmozilla.org%29:HSTS 0 19547 1704429860581,1,1 +www.protondb.com^partitionKey=%28http%2Cprotondb.com%29:HSTS 0 19547 1720416675378,1,0 +plausible.cyberciti.biz^partitionKey=%28http%2Ccyberciti.biz%29:HSTS 0 19546 1704394335461,1,0 +accounts.spotify.com^partitionKey=%28http%2Cspotify.com%29:HSTS 1 19548 1720457770022,1,0 +staticcdn.duckduckgo.com:HSTS 2 19549 1720542797290,1,0 +developer.mozilla.org^partitionKey=%28http%2Cmozilla.org%29:HSTS 0 19547 1751952547727,1,0 +invent.kde.org^partitionKey=%28http%2Ckde.org%29:HSTS 0 19546 1751906746495,1,0 +apps.fedoraproject.org^partitionKey=%28http%2Cfedoraproject.org%29:HSTS 0 19547 1720408606168,1,1 +login.microsoftonline.com^partitionKey=%28http%2Cmicrosoftonline.com%29:HSTS 0 19548 1720551795419,1,1 +w3-reporting.reddit.com^partitionKey=%28http%2Creddit.com%29:HSTS 2 19547 1720373026730,1,1 +lastpass.com^partitionKey=%28http%2Clastpass.com%29:HSTS 1 19547 1775276504300,1,0 +stackpath.bootstrapcdn.com:HSTS 0 19548 1720551984333,1,1 +auth.lastpass.com:HSTS 1 19549 1775433678770,1,1 +www.cloudflare.com:HSTS 0 19547 1720416851418,1,0 +gitlab.archlinux.org^partitionKey=%28http%2Carchlinux.org%29:HSTS 0 19547 1751958968658,1,0 +spencerkrum.com^partitionKey=%28http%2Cspencerkrum.com%29:HSTS 0 19549 1720575343668,1,0 +api-illustrations.icons8.com^partitionKey=%28http%2Cicons8.com%29:HSTS 0 19548 1704756749488,1,1 +metrics.futurehybrid.tech:HSTS 0 19547 1704627014741,1,1 +go.microsoft.com^partitionKey=%28http%2Cmicrosoft.com%29:HSTS 0 19547 1720422412360,1,1 +itsfoss.com^partitionKey=%28http%2Citsfoss.com%29:HSTS 0 19547 1751948350387,1,1 +simplelogin.io^partitionKey=%28http%2Csimplelogin.io%29:HSTS 0 19547 1751948271174,1,1 +contile.services.mozilla.com:HSTS 2 19547 1720373494368,1,0 +files03.pling.com^partitionKey=%28http%2Cpling.com%29:HSTS 0 19545 1751843659218,1,0 +stats.kde.org^partitionKey=%28http%2Ckde.org%29:HSTS 1 19547 1704602746818,1,0 +www.linuxlinks.com^partitionKey=%28http%2Clinuxlinks.com%29:HSTS 0 19547 1720479404289,1,0 +lutris.net:HSTS 0 19547 1720416711172,1,1 +pollserver.lastpass.com:HSTS 2 19549 1775412613541,1,0 +man.archlinux.org^partitionKey=%28http%2Carchlinux.org%29:HSTS 2 19547 1720374059646,1,1 +www.cloudflare.com^partitionKey=%28http%2Ccloudflare.com%29:HSTS 0 19547 1720416850908,1,0 +ocs-dl.fra1.cdn.digitaloceanspaces.com^partitionKey=%28http%2Cfra1.cdn.digitaloceanspaces.com%29:HSTS 0 19545 1704323659418,1,1 +api-icons.icons8.com^partitionKey=%28http%2Cicons8.com%29:HSTS 0 19548 1704756539027,1,1 +addons.mozilla.org^partitionKey=%28http%2Cmozilla.org%29:HSTS 0 19547 1720416745540,1,1 +pythonawesome.com:HSTS 0 19547 1704455148829,1,1 +apps.kde.org^partitionKey=%28http%2Ckde.org%29:HSTS 0 19547 1704641549393,1,0 +wiki.archlinux.org^partitionKey=%28http%2Carchlinux.org%29:HSTS 4 19549 1720548512052,1,1 +duckduckgo.com:HSTS 2 19549 1720542800782,1,0 +www.google.com^partitionKey=%28http%2Cgoogle.com%29:HSTS 2 19547 1720469325369,1,0 +app.gitbook.com:HSTS 0 19547 1720439227196,1,0 +world.pages.gitlab.gnome.org^partitionKey=%28http%2Cgnome.org%29:HSTS 0 19547 1688921269591,1,0 +clc.stackoverflow.com^partitionKey=%28http%2Cstackoverflow.com%29:HSTS 1 19547 1691433163798,1,0 +anon-stats.eff.org^partitionKey=%28http%2Ceff.org%29:HSTS 0 19547 1751948052902,1,1 +www.rapidtables.com^partitionKey=%28http%2Crapidtables.com%29:HSTS 0 19545 1704524714247,1,1 +proton.me:HSTS 0 19547 1720416763779,1,1 +en.wikipedia.org:HSTS 0 19547 1795286215018,1,1 +auth.icons8.com^partitionKey=%28http%2Cicons8.com%29:HSTS 0 19548 1704756499303,1,1 +bugzilla.gnome.org^partitionKey=%28http%2Cgnome.org%29:HSTS 0 19545 1688769237814,1,0 +status.discord.com^partitionKey=%28http%2Cdiscord.com%29:HSTS 0 19548 1720550469531,1,1 +arewewaylandyet.com^partitionKey=%28http%2Carewewaylandyet.com%29:HSTS 0 19547 1720409048031,1,0 +www.linuxlinks.com:HSTS 0 19547 1720479405389,1,0 +askubuntu.com^partitionKey=%28http%2Caskubuntu.com%29:HSTS 2 19549 1704594687995,1,0 +public.parsec.app^partitionKey=%28http%2Cparsec.app%29:HSTS 0 19547 1720414124236,1,1 +maxcdn.bootstrapcdn.com:HSTS 0 19548 1720551984329,1,1 +dash.cloudflare.com^partitionKey=%28http%2Ccloudflare.com%29:HSTS 0 19547 1688967255314,1,1 +fonts.codeberg.org^partitionKey=%28http%2Ccodeberg.org%29:HSTS 0 19545 1751831293118,1,1 +world.pages.gitlab.gnome.org:HSTS 0 19547 1688921270622,1,0 +api-icons-stage.icons8.com^partitionKey=%28http%2Cicons8.com%29:HSTS 0 19548 1704756691411,1,1 +www.mankier.com^partitionKey=%28http%2Cmankier.com%29:HSTS 1 19547 1720375380422,1,1 +addons.mozilla.org:HSTS 2 19549 1720408756577,1,1 +app.simplelogin.io:HSTS 0 19547 1751948516973,1,1 +images.duckduckgo.com^partitionKey=%28http%2Cduckduckgo.com%29:HSTS 1 19548 1720426065616,1,0 +cdn.kde.org^partitionKey=%28http%2Ckde.org%29:HSTS 0 19547 1704641549565,1,0 +gew1-spclient.spotify.com^partitionKey=%28http%2Cspotify.com%29:HSTS 1 19548 1720457770798,1,0 +archlinux.org^partitionKey=%28http%2Carchlinux.org%29:HSTS 1 19548 1720547817308,1,1 +o418887.ingest.sentry.io:HSTS 0 19547 1720414006627,1,1 +github.com^partitionKey=%28http%2Cgithub.com%29:HSTS 4 19549 1720546959368,1,1 +mysupport.razer.com^partitionKey=%28http%2Crazer.com%29:HSTS 0 19546 1704556689509,1,0 +api.github.com^partitionKey=%28http%2Cgithub.com%29:HSTS 4 19549 1720371639632,1,1 +nile.northampton.ac.uk:HSTS 1 19548 1752087791023,1,1 +bbs.archlinux.org^partitionKey=%28http%2Carchlinux.org%29:HSTS 3 19549 1720578807972,1,1 +consent-pref.trustarc.com:HSTS 0 19547 1720437157531,1,1 +xdaportal.disqus.com:HSTS 0 19547 1688880139681,1,1 +aus5.mozilla.org:HSTS 2 19548 1720542843089,1,0 +fonts.googleapis.com:HSTS 1 19548 1720549606334,1,0 +collector.github.com^partitionKey=%28http%2Cgithub.com%29:HSTS 2 19547 2319974158371,1,0 +quickref.me^partitionKey=%28http%2Cquickref.me%29:HSTS 0 19548 1720543182137,1,1 +duckduckgo.com^firstPartyDomain=ddg.search.suggestions.mozilla:HSTS 2 19549 1720542795061,1,0 +packages.gentoo.org^partitionKey=%28http%2Cgentoo.org%29:HSTS 0 19546 1720373594790,1,0 +search.icons8.com^partitionKey=%28http%2Cicons8.com%29:HSTS 0 19548 1704756543257,1,1 +shavar.services.mozilla.com^firstPartyDomain=safebrowsing.86868755-6b82-4842-b301-72671a0db32e.mozilla:HSTS 3 19548 1720542798208,1,1 +c0.wp.com:HSTS 0 19547 1704495404724,1,0 +discord.com^partitionKey=%28http%2Cdiscord.com%29:HSTS 1 19548 1720549605212,1,1 +page-comments-backend.icons8.com^partitionKey=%28http%2Cicons8.com%29:HSTS 0 19548 1704756709999,1,1 +app.simplelogin.io^partitionKey=%28http%2Csimplelogin.io%29:HSTS 0 19547 1751948514816,1,1 +cdn.adsninja.ca:HSTS 0 19547 1720415840433,1,1 +awesomeopensource.com^partitionKey=%28http%2Cawesomeopensource.com%29:HSTS 0 19547 1720408603936,1,1 +o1000929.ingest.sentry.io:HSTS 0 19547 1720439228567,1,1 +cdn.onesignal.com:HSTS 0 19547 1704453108378,1,1 +v.je:HSTS 0 19548 1720551586476,1,0 +code.visualstudio.com^partitionKey=%28http%2Cvisualstudio.com%29:HSTS 0 19547 1720422412538,1,0 +api.spotify.com^partitionKey=%28http%2Cspotify.com%29:HSTS 0 19547 1720475070659,1,0 +cdn.statically.io:HSTS 0 19547 1720412491715,1,1 +en.wikibooks.org^partitionKey=%28http%2Cwikibooks.org%29:HSTS 0 19547 1795257892349,1,1 +www.archlinux.org^partitionKey=%28http%2Carchlinux.org%29:HSTS 0 19548 1720547817057,1,1 +v.je^partitionKey=%28http%2Cv.je%29:HSTS 0 19548 1720551586237,1,0 +lastpass.com:HSTS 2 19549 1775406797038,1,0 +www.blackarch.org^partitionKey=%28http%2Cblackarch.org%29:HSTS 0 19547 1720428672999,1,1 +smetrics.nvidia.com^partitionKey=%28http%2Cnvidia.com%29:HSTS 0 19545 1720288879373,1,1 +prod-eu-central-1.ally.ac:HSTS 0 19548 1720551845357,1,0 +support.parsec.app^partitionKey=%28http%2Cparsec.app%29:HSTS 0 19547 1689133323854,1,0 +links.duckduckgo.com^partitionKey=%28http%2Cduckduckgo.com%29:HSTS 2 19549 1720542802111,1,0 +api-analista.icons8.com^partitionKey=%28http%2Cicons8.com%29:HSTS 0 19548 1704756550696,1,1 +external-content.duckduckgo.com^partitionKey=%28http%2Cduckduckgo.com%29:HSTS 2 19549 1720542803158,1,0 +icons8.com^partitionKey=%28http%2Cicons8.com%29:HSTS 0 19548 1704756497638,1,1 +ogs.google.com^partitionKey=%28http%2Cgoogle.com%29:HSTS 0 19545 1720309168398,1,0 +superuser.com^partitionKey=%28http%2Csuperuser.com%29:HSTS 1 19548 1704583476695,1,0 +pythonawesome.com^partitionKey=%28http%2Cpythonawesome.com%29:HSTS 0 19547 1704455148227,1,1 +www.redhat.com:HSTS 0 19547 1688901456338,1,0 +gitlab.com^partitionKey=%28http%2Cgitlab.com%29:HSTS 0 19547 1720427797655,1,0 +ask-legal.v.je:HSTS 0 19548 1720552679822,1,0 +search-app.icons8.com^partitionKey=%28http%2Cicons8.com%29:HSTS 0 19548 1704756501905,1,1 +serverfault.com^partitionKey=%28http%2Cserverfault.com%29:HSTS 0 19547 1704476477556,1,0 +duckduckgo.com^partitionKey=%28http%2Cduckduckgo.com%29:HSTS 2 19549 1720542800796,1,0 +incoming.telemetry.mozilla.org:HSTS 2 19547 1720371632938,1,0 +en.wikipedia.org^partitionKey=%28http%2Cwikipedia.org%29:HSTS 0 19547 1795286214143,1,1 +developer.mozilla.org:HSTS 0 19547 1751949855150,1,0 +www.lastpass.com:HSTS 0 19548 1775412510520,1,0 +proton.me^partitionKey=%28http%2Cproton.me%29:HSTS 0 19547 1720416763043,1,1 +www.xda-developers.com^partitionKey=%28http%2Cxda-developers.com%29:HSTS 0 19547 1720415839048,1,1 +store.kde.org^partitionKey=%28http%2Ckde.org%29:HSTS 0 19545 1704318538435,1,1 +www.lastpass.com^partitionKey=%28http%2Clastpass.com%29:HSTS 1 19548 1775412510301,1,0 +www.xda-developers.com:HSTS 0 19547 1720415840712,1,1 +myapps.microsoft.com^partitionKey=%28http%2Cmicrosoft.com%29:HSTS 0 19548 1720551795089,1,1 +o22381.ingest.sentry.io:HSTS 0 19547 1720457773829,1,1 +design.codeberg.org^partitionKey=%28http%2Ccodeberg.org%29:HSTS 0 19545 1751831292985,1,1 +codeberg.org^partitionKey=%28http%2Ccodeberg.org%29:HSTS 0 19545 1751831292659,1,1 +github.githubassets.com:HSTS 1 19548 1720551192207,1,0 +docs.github.com^partitionKey=%28http%2Cgithub.com%29:HSTS 1 19549 1720572899978,1,0 +normandy.cdn.mozilla.net:HSTS 2 19548 1720542820732,1,0 +hyprland.org^partitionKey=%28http%2Chyprland.org%29:HSTS 2 19547 1704426788808,1,1 +publicsuffix.org:HSTS 0 19547 1704428502089,1,1 +manpages.debian.org^partitionKey=%28http%2Cdebian.org%29:HSTS 1 19546 1704312270266,1,0 +www.wikihow.com^partitionKey=%28http%2Cwikihow.com%29:HSTS 0 19547 1720413252473,1,1 +api.spotify.com:HSTS 0 19548 1720550465090,1,0 +community.atlassian.com^partitionKey=%28http%2Catlassian.com%29:HSTS 0 19549 1720575303830,1,1 +keepfloyding.github.io^partitionKey=%28http%2Ckeepfloyding.github.io%29:HSTS 0 19546 1720395166439,1,0 +unix.stackexchange.com^partitionKey=%28http%2Cstackexchange.com%29:HSTS 4 19549 1704572565118,1,0 +www.howtogeek.com^partitionKey=%28http%2Chowtogeek.com%29:HSTS 2 19548 1752085579952,1,1 +code.visualstudio.com:HSTS 0 19547 1720422413318,1,0 +api.amplitude.com:HSTS 0 19547 1704671230118,1,0 +www.baeldung.com^partitionKey=%28http%2Cbaeldung.com%29:HSTS 0 19546 1704395952728,1,0 +raw.githubusercontent.com^partitionKey=%28http%2Craw.githubusercontent.com%29:HSTS 0 19548 1720547653462,1,0 +open.spotify.com^partitionKey=%28http%2Cspotify.com%29:HSTS 0 19547 1720457775365,1,0 +developer.spotify.com:HSTS 1 19548 1720475069319,1,0 +www.redhat.com^partitionKey=%28http%2Credhat.com%29:HSTS 0 19547 1688901456264,1,0 +maxst.icons8.com^partitionKey=%28http%2Cicons8.com%29:HSTS 0 19548 1704756497871,1,1 diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/addonStartup.json.lz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/addonStartup.json.lz4 new file mode 100644 index 0000000..9638e3a Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/addonStartup.json.lz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/addons.json b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/addons.json new file mode 100644 index 0000000..048495e --- /dev/null +++ b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/addons.json @@ -0,0 +1 @@ +{"schema":6,"addons":[{"id":"jid1-ZAdIEUB7XOzOJw@jetpack","icons":{"32":"https://addons.mozilla.org/user-media/addon_icons/385/385621-32.png?modified=1f1a9707","64":"https://addons.mozilla.org/user-media/addon_icons/385/385621-64.png?modified=1f1a9707","128":"https://addons.mozilla.org/user-media/addon_icons/385/385621-128.png?modified=1f1a9707"},"name":"DuckDuckGo Privacy Essentials","version":"2023.7.8","sourceURI":"https://addons.mozilla.org/firefox/downloads/file/4129067/duckduckgo_for_firefox-2023.7.8.xpi","homepageURL":"https://duckduckgo.com/app","supportURL":null,"description":"Simple and seamless privacy protection for your browser: tracker blocking, cookie protection, DuckDuckGo private search, email protection, HTTPS upgrading, and much more.","fullDescription":"Privacy, simplified.\n\nProtecting your privacy online is like protecting your home. Locking the front door won’t stop the most determined folks from getting inside, especially if you’ve left the back door and windows unlocked and an extra key under the doormat. That’s why we offer multiple types of privacy protection, most of which aren’t offered in most popular browsers by default.\n\nWith the press of a button, you get seamless protection from most 3rd-party trackers while you search and browse, access to tracking protections for emails you receive, and much more. Together these privacy essentials make more privacy your default.\n\nFEATURE HIGHLIGHTS\n\n Search Privately by Default — DuckDuckGo Private Search comes built-in, so you can easily search the web without being tracked.\n Escape Website Trackers Before They Load — automatically stop most hidden trackers (3rd-party scripts) from loading, which prevents companies from collecting and using (e.g. sale, ads, etc.) any data from these trackers. Our cutting-edge tracker blocking technology – called 3rd-Party Tracker Loading Protection – goes well above and beyond what you get in most popular browsers by default.\n Automatically Enforce Encryption — force many sites you visit to automatically use an encrypted (HTTPS) connection, which helps shield your data from Wi-Fi snoopers and network onlookers like your Internet provider. Most popular browsers only direct users to encrypted versions of pages in specific circumstances, like when you navigate directly to a page in the address bar. We check our list of upgradable sites for all links you click.\n Enable Built-in Email Protection — Over 85% of emails sent to Duck Addresses contained trackers that can detect when you’ve opened a message, where you were when you opened it, and what device you were using. Email Protection makes it easy to block most email trackers and hide your existing address when signing up for things online, all without switching email providers.\n Escape Fingerprinting — help stop companies from creating a unique identifier for you by blocking their attempts to combine specific information about your browser and device settings.\n Block Tracking Cookies— prevent most 3rd-party cookies from tracking you as you browse from site to site.\n\n\nADDITIONAL PROTECTIONS NOT AVAILABLE ON MOST BROWSERS\n\n Link Tracking Protection — helps stop companies from gathering your browsing history and other information via personal identifiers embedded in the links you click on.\n Embedded Social Content Tracking Protection — blocks embedded Facebook content around the web so they can't track you through their videos, posts, and comments found on other sites. You can easily unblock to view them if desired.\n Google AMP Protection — forces sites to load content directly from publishers instead of using Google-owned links, which are full of creepy trackers.\n Signal Your Privacy Preference with Global Privacy Control (GPC) — built-into our app, GPC intends to help you express your opt-out rights automatically by telling websites not to sell or share your personal information. Whether it can be used to enforce your legal rights (for example, current or future CCPA, GDPR requirements) depends on the laws in your jurisdiction.\n\n\nNote about our 3rd-Party Tracker Loading Protection following DuckDuckGo ad clicks: Our 3rd-Party Tracker Protection goes above and beyond what you get in most popular browsers by default, but we’re constantly working to make it more comprehensive. Currently, if an advertiser wants to detect conversions on their own website for our private DuckDuckGo search ads, our 3rd-Party Tracker Loading Protection will not stop bat.bing.com requests from loading on the advertiser’s website following DuckDuckGo ad clicks, but those requests are stopped in all other contexts. This is because DuckDuckGo private search advertising is in partnership with Microsoft. As part of that partnership, viewing ads on DuckDuckGo is anonymous and Microsoft has committed to not profile our users’ ad clicks.\n\nRead more about this and our Tracking Protections at https://help.duckduckgo.com/privacy/web-tracking-protections/\n\nYou don't need to wait to take back your privacy. Join the millions of people using DuckDuckGo and protect many of your everyday online activities with one app. It's privacy, simplified.\n\nAbout Us: https://duckduckgo.com/about/\nHow It Works: https://duckduckgo.com/app\nPrivacy Newsletter: https://duckduckgo.com/newsletter\nPrivacy Policy: https://duckduckgo.com/privacy/\nTerms of Service: https://duckduckgo.com/terms/\nOpen Source: https://github.com/duckduckgo/duckduckgo-privacy-extension","weeklyDownloads":7618,"type":"extension","creator":{"name":"DuckDuckGo","url":"https://addons.mozilla.org/en-US/firefox/user/3946396/"},"developers":[],"screenshots":[{"url":"https://addons.mozilla.org/user-media/previews/full/283/283297.png?modified=1685690530","width":1280,"height":800,"thumbnailURL":"https://addons.mozilla.org/user-media/previews/thumbs/283/283297.jpg?modified=1685690530","thumbnailWidth":533,"thumbnailHeight":333},{"url":"https://addons.mozilla.org/user-media/previews/full/283/283298.png?modified=1685690530","width":1280,"height":800,"thumbnailURL":"https://addons.mozilla.org/user-media/previews/thumbs/283/283298.jpg?modified=1685690530","thumbnailWidth":533,"thumbnailHeight":333},{"url":"https://addons.mozilla.org/user-media/previews/full/283/283299.png?modified=1685690530","width":1280,"height":800,"thumbnailURL":"https://addons.mozilla.org/user-media/previews/thumbs/283/283299.jpg?modified=1685690530","thumbnailWidth":533,"thumbnailHeight":333},{"url":"https://addons.mozilla.org/user-media/previews/full/283/283300.png?modified=1685690530","width":1280,"height":800,"thumbnailURL":"https://addons.mozilla.org/user-media/previews/thumbs/283/283300.jpg?modified=1685690530","thumbnailWidth":533,"thumbnailHeight":333},{"url":"https://addons.mozilla.org/user-media/previews/full/283/283301.png?modified=1685690530","width":1280,"height":800,"thumbnailURL":"https://addons.mozilla.org/user-media/previews/thumbs/283/283301.jpg?modified=1685690530","thumbnailWidth":533,"thumbnailHeight":333}],"contributionURL":"","averageRating":4.3591,"reviewCount":577,"reviewURL":"https://addons.mozilla.org/en-US/firefox/addon/duckduckgo-for-firefox/reviews/","updateDate":1687881280000},{"id":"jid1-MnnxcxisBPnSXQ@jetpack","icons":{"32":"https://addons.mozilla.org/user-media/addon_icons/506/506646-32.png?modified=mcrushed","64":"https://addons.mozilla.org/user-media/addon_icons/506/506646-64.png?modified=mcrushed","128":"https://addons.mozilla.org/user-media/addon_icons/506/506646-128.png?modified=mcrushed"},"name":"Privacy Badger","version":"2023.6.23","sourceURI":"https://addons.mozilla.org/firefox/downloads/file/4129240/privacy_badger17-2023.6.23.xpi","homepageURL":"https://privacybadger.org/","supportURL":"https://privacybadger.org/#faq","description":"Automatically learns to block invisible trackers.","fullDescription":"Privacy Badger automatically learns to block invisible trackers. Instead of keeping lists of what to block, Privacy Badger automatically discovers trackers based on their behavior.\n\nPrivacy Badger sends the Global Privacy Control signal to opt you out of data sharing and selling, and the Do Not Track signal to tell companies not to track you. If trackers ignore your wishes, Privacy Badger will learn to block them.\n\nBesides automatic tracker blocking, Privacy Badger replaces potentially useful trackers (video players, comments widgets, etc.) with click-to-activate placeholders, and removes outgoing link click tracking on Facebook and Google, with more privacy protections on the way.\n\nTo learn more, see the FAQ on Privacy Badger's homepage.","weeklyDownloads":16099,"type":"extension","creator":{"name":"EFF Technologists","url":"https://addons.mozilla.org/en-US/firefox/user/5474073/"},"developers":[],"screenshots":[{"url":"https://addons.mozilla.org/user-media/previews/full/225/225184.png?modified=1622132341","width":1920,"height":1080,"thumbnailURL":"https://addons.mozilla.org/user-media/previews/thumbs/225/225184.jpg?modified=1622132341","thumbnailWidth":533,"thumbnailHeight":300,"caption":"Privacy Badger is a project of the Electronic Frontier Foundation"},{"url":"https://addons.mozilla.org/user-media/previews/full/171/171793.png?modified=1622132342","width":700,"height":394,"thumbnailURL":"https://addons.mozilla.org/user-media/previews/thumbs/171/171793.jpg?modified=1622132342","thumbnailWidth":533,"thumbnailHeight":300,"caption":"Privacy Badger at work on the whitehouse.gov privacy policy page."}],"contributionURL":"https://paypal.me/SupportEFF?utm_content=product-page-contribute&utm_medium=referral&utm_source=addons.mozilla.org","averageRating":4.8004,"reviewCount":430,"reviewURL":"https://addons.mozilla.org/en-US/firefox/addon/privacy-badger17/reviews/","updateDate":1687969081000},{"id":"addon@darkreader.org","icons":{"32":"https://addons.mozilla.org/user-media/addon_icons/855/855413-32.png?modified=3f34e276","64":"https://addons.mozilla.org/user-media/addon_icons/855/855413-64.png?modified=3f34e276","128":"https://addons.mozilla.org/user-media/addon_icons/855/855413-128.png?modified=3f34e276"},"name":"Dark Reader","version":"4.9.64","sourceURI":"https://addons.mozilla.org/firefox/downloads/file/4128489/darkreader-4.9.64.xpi","homepageURL":"https://darkreader.org/","supportURL":"https://github.com/darkreader/darkreader","description":"Dark mode for every website. Take care of your eyes, use dark theme for night and daily browsing.","fullDescription":"This eye-care extension enables night mode creating dark themes for websites on the fly. Dark Reader inverts bright colors making them high contrast and easy to read at night.\n\nYou can adjust brightness, contrast, sepia filter, dark mode, font settings and ignore-list.\n\nDark Reader doesn't show ads and doesn't send user's data anywhere. It is fully open-source https://github.com/darkreader/darkreader\n\nBefore you install disable similar extensions. Enjoy watching!","weeklyDownloads":22312,"type":"extension","creator":{"name":"Alexander Shutau","url":"https://addons.mozilla.org/en-US/firefox/user/13299734/"},"developers":[],"screenshots":[{"url":"https://addons.mozilla.org/user-media/previews/full/201/201069.png?modified=1638883247","width":2400,"height":1500,"thumbnailURL":"https://addons.mozilla.org/user-media/previews/thumbs/201/201069.jpg?modified=1638883247","thumbnailWidth":533,"thumbnailHeight":333,"caption":"Dark Reader night theme mode"},{"url":"https://addons.mozilla.org/user-media/previews/full/201/201070.png?modified=1638883247","width":2400,"height":1500,"thumbnailURL":"https://addons.mozilla.org/user-media/previews/thumbs/201/201070.jpg?modified=1638883247","thumbnailWidth":533,"thumbnailHeight":333,"caption":"Dark Reader filter settings"}],"contributionURL":"https://opencollective.com/darkreader?utm_content=product-page-contribute&utm_medium=referral&utm_source=addons.mozilla.org","averageRating":4.5603,"reviewCount":1591,"reviewURL":"https://addons.mozilla.org/en-US/firefox/addon/darkreader/reviews/","updateDate":1687782692000},{"id":"treestyletab@piro.sakura.ne.jp","icons":{"32":"https://addons.mozilla.org/user-media/addon_icons/5/5890-32.png?modified=8e6d26d4","64":"https://addons.mozilla.org/user-media/addon_icons/5/5890-64.png?modified=8e6d26d4","128":"https://addons.mozilla.org/user-media/addon_icons/5/5890-128.png?modified=8e6d26d4"},"name":"Tree Style Tab","version":"3.9.15","sourceURI":"https://addons.mozilla.org/firefox/downloads/file/4088468/tree_style_tab-3.9.15.xpi","homepageURL":"http://piro.sakura.ne.jp/xul/_treestyletab.html.en","supportURL":"https://github.com/piroor/treestyletab/issues","description":"Show tabs like a tree.","fullDescription":"This extension provides the ability to work with tabs as \"trees\".\n\nNew tabs opened from the current tab are automatically organized as \"children\" of the current tab.\nSuch \"branches\" are easily folded (collapsed) by clicking on the arrow shown in the \"parent\" tab, so you no longer need to suffer from too many visible tabs.\nIf you want, you can restructure the tree via drag and drop.\n\n Such a tree of tabs will behave like a visual browsing history for you.\n For example, if you see a list of search results for a topic, each search result link will open in new child tab.\n New tabs opened from these \"child\" tabs will appear as descendants of their originating tabs.\n You'll easily dig and dig deeply, without losing your browsing trail - if you want to go back to the original search result, you just have to switch to the \"root\" tab.\n Moreover, each tree will reflect a group of tabs on a similar topic.\n\n\nPlease enjoy as you like!\n\nTips:\n\n \"F1\" key toggles the TST sidebar.\n \"Tree Style Tab\" toolbar button also toggles the sidebar. If it's unnecessary, you can remove it from the toolbar.\n\n\nPermissions:\n\nThis extension needs following permissions to work as expected:\n\n Required:\n Access browser tabs: to list both active and non-active tabs in the UI.\n Access recently closed tabs (access to the session information): to save tree information of tabs (structure, collapsed/expanded state, etc.) to tabs' session information and ask to Firefox to manage them as bundled.\n Display notifications to you: to present information and navigate users without blocking.\n Optional:\n Read and modify bookmarks: to simulate bookmark related commands in the tab context menu. / to detect tabs whether they were opened from bookmarks or not.\n Access your data for all websites (run scripts on webpages): to detect the Ctrl key is pressed/released and prevent needless expansion of collapsed trees while tab switching with Ctrl-Tab/Ctrl-Shift-Tab.\n Hide and show browser tabs: just for automated tests, not required on regular use.\n\n\nExtensions extend TST:\n\nTST provides an API for other extensions.\nSome extend the behavior of TST's sidebar panel:\n\n Multiple Tab Handler allows you to select multiple tabs with long-press on tabs. It also allows you to close mutiple tabs with long-press on the closebox on tabs.\n TST Bookmarks Subpanel allows you to show a small \"Bookmarks\" sidebar panel below tabs in the TST's sidebar.\n TST More Tree Commands provides more context menu and keyboard shortcut commands to manipulate TST's tree.\n TST Active Tab in Collapsed Tree shows a small tab on a collapsed tree as an alias for the last active tab under the tree.\n TST Active Tab on Scroll Bar shows a marker to indicate the position of the active tab, on the scrollbar.\n TST Auto Group Tabs provides ability to group newly opened tabs automatically in various conditions.\n TST Lock Tree Collapsed allows you to lock arbitrary trees as collapsed. (This was a built-in feature on TST 3.3.0-3.3.6, and now separated.)\n TST Tab Drag Handle provides a small tooltip on tab labels to start dragging of tabs for specific operations. (This was a built-in feature on TST 2.6.0-3.3.6, and now separated.)\n TST Indent Line provides indent lines like Visual Studio Code's one.\n TST Open Bookmarks as Partial Tree allows you to open only some bookmarks in a folder as a partial tree. Moreover, it also provides ability to open tree of container tabs from bookmarks.\n TST-MiddleClick allows you to run \"undo close tab\" or \"close currently active tab\" command on middle click on the sidebar.\n Tree Style Tab Mouse Wheel allows you to switch active tab by wheel scrolling.\n Tab flip for Tree Style Tab allows you to move focus to the tab previously focused, by clicking on the active tab.\n Tree Style Tab Focus Preceding Tab on Close focuses the previous tab instead of the next tab when a tab is closed.\n Tab Unloader for Tree Style Tab allows you to unload tabs by clicking on them in the sidebar.\n Move unloaded tabs for Tree Style Tab allows you to move tabs in the sidebar without them becoming active.\n Tree Style Tab in Separate Window allows you to open the Tree Style Tab sidebar page in a new window.\n Auto Tab Discard supports the fake context menu in the Tree Style Tab sidebar.\n UnloadTabs supports the fake context menu in the Tree Style Tab sidebar.\n Bookmark Tree for Tree Style Tab allows you to bookmark and restore trees. (A similar feature is now built-in in TST since v3.2.0)\n TST Hoverswitch allows you to switch tabs by hovering over them.\n TST Colored Tabs gives custom background color for tabs based on their domain.\n Add Last Active Class To Tab helps you to give custom appearance for the \"previously active tab\".\n TSTのタブを閉じるボタンの挙動を変更 (tst-change-close-tab-button-be) allows you to close the parent and its all descendants with a middle click on the closebox of a parent tab, whether the tree is expanded or collapsed.\n TST Select Random Tab adds a context menu option for selecting a random tab in a Tree Style Tab tree.\n TST Tab Search provides a search field (as a subpanel) to filter opened tabs in the sidebar.\n TST Fade Old Tabs sorts all tabs in 3 categories – 'recent', 'older' and 'oldest' by latest visit time, and applies different opacity to them.\n TST Colorize Tabs allows to set individual color for each tab in order to highlight it.\n TST New Tabs First puts a newly opened root level at the top of the sidebar.\n\n\nLatest information is available at the repository.","weeklyDownloads":3277,"type":"extension","creator":{"name":"Piro (piro_or)","url":"https://addons.mozilla.org/en-US/firefox/user/9480/"},"developers":[],"screenshots":[{"url":"https://addons.mozilla.org/user-media/previews/full/275/275014.png?modified=1668096516","width":764,"height":540,"thumbnailURL":"https://addons.mozilla.org/user-media/previews/thumbs/275/275014.jpg?modified=1668096516","thumbnailWidth":533,"thumbnailHeight":377,"caption":"Overview"},{"url":"https://addons.mozilla.org/user-media/previews/full/275/275015.png?modified=1668096516","width":415,"height":576,"thumbnailURL":"https://addons.mozilla.org/user-media/previews/thumbs/275/275015.jpg?modified=1668096516","thumbnailWidth":288,"thumbnailHeight":400,"caption":"Tab context menu compatible to Firefox's native one"},{"url":"https://addons.mozilla.org/user-media/previews/full/275/275013.png?modified=1668096516","width":284,"height":372,"thumbnailURL":"https://addons.mozilla.org/user-media/previews/thumbs/275/275013.jpg?modified=1668096516","thumbnailWidth":284,"thumbnailHeight":372,"caption":"Drag and drop to manage tree"},{"url":"https://addons.mozilla.org/user-media/previews/full/275/275012.png?modified=1668096516","width":219,"height":223,"thumbnailURL":"https://addons.mozilla.org/user-media/previews/thumbs/275/275012.jpg?modified=1668096516","thumbnailWidth":219,"thumbnailHeight":223,"caption":"Long-press on the new tab button shows the container chooser"},{"url":"https://addons.mozilla.org/user-media/previews/full/275/275016.png?modified=1668096516","width":226,"height":186,"thumbnailURL":"https://addons.mozilla.org/user-media/previews/thumbs/275/275016.jpg?modified=1668096516","thumbnailWidth":226,"thumbnailHeight":186,"caption":"Right-edge of the new tab button shows the new tab position chooser"},{"url":"https://addons.mozilla.org/user-media/previews/full/275/275017.png?modified=1668096516","width":648,"height":567,"thumbnailURL":"https://addons.mozilla.org/user-media/previews/thumbs/275/275017.jpg?modified=1668096516","thumbnailWidth":457,"thumbnailHeight":400,"caption":"Various built-in theme"},{"url":"https://addons.mozilla.org/user-media/previews/full/237/237255.png?modified=1668096516","width":467,"height":350,"thumbnailURL":"https://addons.mozilla.org/user-media/previews/thumbs/237/237255.jpg?modified=1668096516","thumbnailWidth":467,"thumbnailHeight":350,"caption":"\"Save bookmark\" dialog"}],"contributionURL":"","averageRating":4.5527,"reviewCount":744,"reviewURL":"https://addons.mozilla.org/en-US/firefox/addon/tree-style-tab/reviews/","updateDate":1680254100000},{"id":"{a6c4a591-f1b2-4f03-b3ff-767e5bedf4e7}","icons":{"32":"https://addons.mozilla.org/user-media/addon_icons/853/853731-32.png?modified=a1617cd0","64":"https://addons.mozilla.org/user-media/addon_icons/853/853731-64.png?modified=a1617cd0","128":"https://addons.mozilla.org/user-media/addon_icons/853/853731-128.png?modified=a1617cd0"},"name":"User-Agent Switcher and Manager","version":"0.5.0","sourceURI":"https://addons.mozilla.org/firefox/downloads/file/4098688/user_agent_string_switcher-0.5.0.xpi","homepageURL":"http://add0n.com/useragent-switcher.html","supportURL":"https://add0n.com/useragent-switcher.html","description":"Spoof websites trying to gather information about your web navigation—like your browser type and operating system—to deliver distinct content you may not want.","fullDescription":"Usage example: You can alter your user-agent string to indicate you’re on a mobile device if you prefer seeing mobile versions of sites so they load quicker.\n\n--\n\nThis extension allows you to spoof your browser \"user-agent\" string to a custom designation, making it impossible for websites to know specific details about your browsing arrangement.\n\nOverviews:\nhttps://www.youtube.com/watch?v=-aVFxvF3N_E\nhttps://www.youtube.com/watch?v=4M6_Zc4o1MQ\n\nNotes:\n1. You can easily set custom \"user-agent\" strings from the toolbar popup\n2. The extension uses a two-factor technique to mimic your default \"user-agent\" string, which is the most reliable method\n3. The extension does not use any resources when it is not spoofing the user-agent\n4. The extension enables user-agent spoofing on specific domains only; it is conversely possible to exclude certain domains from spoofing. Check the Options page for more info.\n5. You can set per-site user-agent strings\n6. There is an option to randomize user-agent strings.\n7. It is possible to set user-agent string for a single window; you can have a separate user-agent string for each browser window\n\nSupported operating systems:\nWindows, Mac OS, Linux, Chromium OS, Ubuntu, Debian, Android, iOS, AmigaOS, OpenBSD, BeOS, Haiku, Solaris, NetBSD, FreeBSD, Slackware, SUSE, gentoo, Fedora, Gentoo, Mageia, CentOS, Mint, DragonFly, Kubuntu, Mandriva, Zenwalk, Unix, GNU, OS/2, AIX, QNX, BEOS, RISC OS, Symbian, Nintendo, OpenSolaris, Kubuntu\n\nSupported browsers:\nInternet Explorer, Safari, Chrome, Firefox, Opera, Edge, WebKit, Avant, Maxthon, Arora, Mozilla, Epiphany, Camino, Chimera, Chromium, Dragon, conkeror, Conkeror, Dillo, Links, Firebird, Swiftfox, Netscape, Flock, iCab, Iceape, icecat, IceCat, IceWeasel, Iron, Meleon, Konqueror, Lunascape, Lynx, MAXTHON, midori, Midori, KHTML, Mosaic, NetSurf, OmniWeb, Tablet, Mini, Phoenix, RockMelt, Safari, Browser, SeaMonkey, Slim, Webkit, w3m\n\nFor more info and general bug reports please use:\nhttps://add0n.com/useragent-switcher.html\n\nFor technical bug reports please use:\nhttps://github.com/ray-lothian/UserAgent-Switcher/","weeklyDownloads":7976,"type":"extension","creator":{"name":"Ray","url":"https://addons.mozilla.org/en-US/firefox/user/13129494/"},"developers":[],"screenshots":[{"url":"https://addons.mozilla.org/user-media/previews/full/188/188200.png?modified=1622132777","width":700,"height":438,"thumbnailURL":"https://addons.mozilla.org/user-media/previews/thumbs/188/188200.jpg?modified=1622132777","thumbnailWidth":533,"thumbnailHeight":334},{"url":"https://addons.mozilla.org/user-media/previews/full/202/202435.png?modified=1622132779","width":440,"height":280,"thumbnailURL":"https://addons.mozilla.org/user-media/previews/thumbs/202/202435.jpg?modified=1622132779","thumbnailWidth":440,"thumbnailHeight":280}],"contributionURL":"https://paypal.me/addondonation/10usd?utm_content=product-page-contribute&utm_medium=referral&utm_source=addons.mozilla.org","averageRating":4.2707,"reviewCount":196,"reviewURL":"https://addons.mozilla.org/en-US/firefox/addon/user-agent-string-switcher/reviews/","updateDate":1682502684000},{"id":"{60f82f00-9ad5-4de5-b31c-b16a47c51558}","icons":{"32":"https://addons.mozilla.org/user-media/addon_icons/905/905349-32.png?modified=mcrushed","64":"https://addons.mozilla.org/user-media/addon_icons/905/905349-64.png?modified=mcrushed","128":"https://addons.mozilla.org/user-media/addon_icons/905/905349-128.png?modified=mcrushed"},"name":"Cookie Quick Manager","version":"0.5rc2","sourceURI":"https://addons.mozilla.org/firefox/downloads/file/3343599/cookie_quick_manager-0.5rc2.xpi","homepageURL":"https://github.com/ysard/cookie-quick-manager","supportURL":"https://github.com/ysard/cookie-quick-manager/issues","description":"An addon to manage cookies (view, search, create, edit, remove, backup, restore, protect from deletion and much more). Firefox 57+ is supported.","fullDescription":"Overview\n\nCookie Quick Manager: A complete manager for cookies accumulated during browsing.\nIt allows you to view, edit, create, delete, backup, restore cookies and search them by domain names. Contextual Identities such as Private Browsing, First-Party Isolation, and SameSite flag are also supported.\nIn addition, the LocalStorage of the page viewed can be deleted (see below).\n\nCookie Quick Manager is designed for developers, testers or people\nconcerned about their privacy on the Internet.\n\nThis WebExtension is compatible with Firefox 57 and is inspired by addons like Cookies Manager+ and Advanced Cookie Manager whose development has been discontinued due to the withdrawal of the support for \"Legacy\" extensions.\n\nNovember 2018: Cookie Quick Manager is now available on Android!\n\nFeatures\n\n User friendly: Clear and structured user interface. Each parameter and functionality is described when the mouse is over the element.\n Windowed and tab mode: Choose the opening in a tab to get a wider view.\n Transparency and security: The source code is free (under GPLv3) and published on a public platform, the only way to allow reviews and external contributions.\n Search: A user can search for cookies of a domain and subdomains which depend on it.\n Edit/Create: All the attributes of a cookie can be modified: domain, path, name, value, expiration date, as well as secure and httponly flags.\n Delete: Remove the cookies of the current website in two clicks.\n Export: The export and import of one or many cookies from one or many domains at a time in JSON or Netscape format is just as easy.\n First-Party Isolation: Supported with some limitations (due to API bugs) on Firefox 59, 60, and 61, and without limitations on Firefox 62 (scheduled on September 2018).\n Contexts: Contexts (also called Multi-Account Containers, or Contextual Identities) are supported. A user can search and display cookies inside a container, or copy cookies from a container to another, or save a cookie in a specific context.\n SameSite: The SameSite flag is supported. This is a partial protection against the risks associated with Cross-Site Request Forgery (CSRF) and Cross-Site Script Inclusion (XSSI) attacks, implemented since Firefox 63.\n Cookie protection: Delete cookies except protected ones, with two clicks at anytime from the website you are viewing. An option can also prevent cookies from being deleted by the sites themselves.\n Protection of session cookies: Session cookies can be protected in two clicks to prevent accidental logout from websites after cleaning normal cookies.\n Cleaning and privacy: Can automatically delete all cookies at startup.\n LocalStorage: Keys/values of the page viewed can be deleted.\n\n\n\nPrivacy\n\nThis addon does not store or leak any personal information.\n\nIt requires the following permissions to operate:\n\n Host permission for all urls: This allows you to edit the cookies and to delete the Localstorage of any site visited.\n Cookies: Allows access to the browser's cookie store.\n ActiveTab: Allows access to the currently consulted url, and its favicon if it exists.\n Storage: Allows the storage of the following user settings:\n - size of the windowed mode,\n - protected cookies (only the name of the domains),\n - the template used to import/export the cookies,\n - the skin.\n Browsing data: Enables extensions to clear the data that is accumulated while the user is browsing (LocalStorage here).\n Contextual Identities: Allows the addon to list the containers.\n Privacy: Access and modify various privacy-related browser settings (the FirstPartyIsolation flag here).\n ClipboardWrite (optional): Allows the export of cookies to the clipboard from Firefox 63.\n\n\n\nAbout cookie protection\n\nThe protection of cookies is limited to the current addon actions, to the deletions that can be made by the sites themselves, or to the deletions made in the browser's \"Cookies and Site Data\" options.\nThis means that if you choose the browser option to delete all cookies when it closes, the addon will be unable to restore them (the method used by the browser does not send the necessary signal to notify the addon). However, a similar option is reimplemented in the addon itself in order to keep only the protected cookies when restarting the browser.\n\n\nWhat is \"Delete Current Site Local Storage\" on the popup menu?\n\nThis item allows a user to delete LocalStorage keys from the viewed page.\n\nThe LocalStorage is a quite new feature of HTML5 that allows developers to create data in your browser using JavaScript. Cookies are just one type of storage among others.\nYou will also find the term \"SessionStorage\", a LocalStorage where data is stored temporarily (deleted on browser restart), but the important thing is that LocalStorage is persistent, and cleared only at the discretion of the visited websites.\nYou may erase all of the LocalStorage store by following the procedure described in the documentation of Firefox, and by selecting \"Offline Website Data\".\n\nFrom the point of view of privacy and security:\n\nThis kind of persistant data (even after clearing cache), was invented to store small data allowing the operation of online applications, but also offers new and better accurate ways of tracking thanks to the memorization of private or identifying data.\n\n\nSupport & source code\n\nThe extension is still in development with the launch of Firefox Quantum; questions, bug reports and feature requests are open on the GitHub repository.\n\n\nLicense\n\nGPLv3.","weeklyDownloads":4502,"type":"extension","creator":{"name":"Ysard","url":"https://addons.mozilla.org/en-US/firefox/user/13597965/"},"developers":[],"screenshots":[{"url":"https://addons.mozilla.org/user-media/previews/full/211/211222.png?modified=1622132873","width":293,"height":170,"thumbnailURL":"https://addons.mozilla.org/user-media/previews/thumbs/211/211222.jpg?modified=1622132873","thumbnailWidth":293,"thumbnailHeight":170,"caption":"Contextual menu on Firefox. Delete cookies except protected ones, with 2 clicks at anytime from the website you are viewing."},{"url":"https://addons.mozilla.org/user-media/previews/full/211/211223.png?modified=1622132875","width":1093,"height":593,"thumbnailURL":"https://addons.mozilla.org/user-media/previews/thumbs/211/211223.jpg?modified=1622132875","thumbnailWidth":533,"thumbnailHeight":289,"caption":"Global view of the windowed mode, with contextual menu above the domains list. Private browsing and contextual identities are supported. Badges allow to quickly see the belonging of cookies to their container."},{"url":"https://addons.mozilla.org/user-media/previews/full/211/211224.png?modified=1622132875","width":458,"height":212,"thumbnailURL":"https://addons.mozilla.org/user-media/previews/thumbs/211/211224.jpg?modified=1622132875","thumbnailWidth":458,"thumbnailHeight":212,"caption":"In addition to the simple search based on site names, it is possible to search for text in the names and values of cookies."},{"url":"https://addons.mozilla.org/user-media/previews/full/211/211225.png?modified=1622132876","width":725,"height":308,"thumbnailURL":"https://addons.mozilla.org/user-media/previews/thumbs/211/211225.jpg?modified=1622132876","thumbnailWidth":533,"thumbnailHeight":226,"caption":"Quickly accessible functions make it possible to process the data, which helps to make them readable."},{"url":"https://addons.mozilla.org/user-media/previews/full/211/211226.png?modified=1622132877","width":421,"height":540,"thumbnailURL":"https://addons.mozilla.org/user-media/previews/thumbs/211/211226.jpg?modified=1622132877","thumbnailWidth":312,"thumbnailHeight":400,"caption":"Easily edit every cookie details like expiration date."},{"url":"https://addons.mozilla.org/user-media/previews/full/211/211227.png?modified=1622132879","width":462,"height":540,"thumbnailURL":"https://addons.mozilla.org/user-media/previews/thumbs/211/211227.jpg?modified=1622132879","thumbnailWidth":342,"thumbnailHeight":400,"caption":"Create new cookies by unlocking the edit fields."},{"url":"https://addons.mozilla.org/user-media/previews/full/211/211228.png?modified=1622132879","width":267,"height":163,"thumbnailURL":"https://addons.mozilla.org/user-media/previews/thumbs/211/211228.jpg?modified=1622132879","thumbnailWidth":267,"thumbnailHeight":163,"caption":"Finely manage the protection of cookies by the application. Protect session cookies with 1 click and avoid unexpected disconnections after deletion."},{"url":"https://addons.mozilla.org/user-media/previews/full/211/211229.png?modified=1622132880","width":306,"height":307,"thumbnailURL":"https://addons.mozilla.org/user-media/previews/thumbs/211/211229.jpg?modified=1622132880","thumbnailWidth":306,"thumbnailHeight":307,"caption":"Easily export & restore one or multiple cookies. Supported formats are JSON format, similar to the old CookieManager+ addon, and Netscape format for wget/curl GNU tools."},{"url":"https://addons.mozilla.org/user-media/previews/full/211/211230.png?modified=1622132882","width":1202,"height":609,"thumbnailURL":"https://addons.mozilla.org/user-media/previews/thumbs/211/211230.jpg?modified=1622132882","thumbnailWidth":533,"thumbnailHeight":270,"caption":"A JSON data corresponding to a cookie."},{"url":"https://addons.mozilla.org/user-media/previews/full/211/211231.png?modified=1622132883","width":659,"height":584,"thumbnailURL":"https://addons.mozilla.org/user-media/previews/thumbs/211/211231.jpg?modified=1622132883","thumbnailWidth":451,"thumbnailHeight":400,"caption":"Manage the behavior, appearance, and data of the extension."},{"url":"https://addons.mozilla.org/user-media/previews/full/211/211232.png?modified=1622132884","width":659,"height":584,"thumbnailURL":"https://addons.mozilla.org/user-media/previews/thumbs/211/211232.jpg?modified=1622132884","thumbnailWidth":451,"thumbnailHeight":400,"caption":"Manage your protected cookies at a glance and in a few clicks."},{"url":"https://addons.mozilla.org/user-media/previews/full/211/211233.png?modified=1622132886","width":540,"height":960,"thumbnailURL":"https://addons.mozilla.org/user-media/previews/thumbs/211/211233.jpg?modified=1622132886","thumbnailWidth":225,"thumbnailHeight":400,"caption":"Cookie Quick Manager is also available on Android and on hardware with small screen sizes."},{"url":"https://addons.mozilla.org/user-media/previews/full/211/211234.png?modified=1622132887","width":540,"height":960,"thumbnailURL":"https://addons.mozilla.org/user-media/previews/thumbs/211/211234.jpg?modified=1622132887","thumbnailWidth":225,"thumbnailHeight":400,"caption":"Edit your cookies on Android."}],"contributionURL":"https://liberapay.com/Ysard/donate?utm_content=product-page-contribute&utm_medium=referral&utm_source=addons.mozilla.org","averageRating":4.4055,"reviewCount":135,"reviewURL":"https://addons.mozilla.org/en-US/firefox/addon/cookie-quick-manager/reviews/","updateDate":1562817623000},{"id":"adnauseam@rednoise.org","icons":{"32":"https://addons.mozilla.org/user-media/addon_icons/585/585454-32.png?modified=1654549440","64":"https://addons.mozilla.org/user-media/addon_icons/585/585454-64.png?modified=1654549440","128":"https://addons.mozilla.org/user-media/addon_icons/585/585454-128.png?modified=1654549440"},"name":"AdNauseam","version":"3.17.0","sourceURI":"https://addons.mozilla.org/firefox/downloads/file/4122213/adnauseam-3.17.0.xpi","homepageURL":"https://adnauseam.io","supportURL":"https://adnauseam.io","description":"Blocking ads and fighting back against advertising surveillance.","fullDescription":"AdNauseam not only blocks ads, it obfuscates browsing data to resist tracking by the online ad industry. To throw ad networks off your trail AdNauseam “clicks” blocked and hidden ads, polluting your data profile and injecting noise into the economic system that drives online surveillance. The interactive AdVault allows you to visualize and explore the ads that AdNauseam has captured.\n\n If you have either of the following settings enabled, make sure to allow AdNauseam in private browsing mode:\n History -> \"Never remember history\"\n History -> \"Use custom settings for history\" -> \"Always use private browsing mode\"","weeklyDownloads":1446,"type":"extension","creator":{"name":"Daniel Howe","url":"https://addons.mozilla.org/en-US/firefox/user/37467/"},"developers":[],"screenshots":[{"url":"https://addons.mozilla.org/user-media/previews/full/152/152878.png?modified=1622132300","width":646,"height":525,"thumbnailURL":"https://addons.mozilla.org/user-media/previews/thumbs/152/152878.jpg?modified=1622132300","thumbnailWidth":492,"thumbnailHeight":400,"caption":"AdNauseam's advault interface..."},{"url":"https://addons.mozilla.org/user-media/previews/full/153/153832.png?modified=1622132301","width":576,"height":525,"thumbnailURL":"https://addons.mozilla.org/user-media/previews/thumbs/153/153832.jpg?modified=1622132301","thumbnailWidth":439,"thumbnailHeight":400,"caption":"AdNauseam's menu interface"},{"url":"https://addons.mozilla.org/user-media/previews/full/153/153830.png?modified=1622132301","width":432,"height":429,"thumbnailURL":"https://addons.mozilla.org/user-media/previews/thumbs/153/153830.jpg?modified=1622132301","thumbnailWidth":403,"thumbnailHeight":400,"caption":"AdNauseam's logo"}],"contributionURL":"https://opencollective.com/adnauseam?utm_content=product-page-contribute&utm_medium=referral&utm_source=addons.mozilla.org","averageRating":4.5753,"reviewCount":127,"reviewURL":"https://addons.mozilla.org/en-US/firefox/addon/adnauseam/reviews/","updateDate":1686648925000},{"id":"support@lastpass.com","icons":{"32":"https://addons.mozilla.org/user-media/addon_icons/8/8542-32.png?modified=mcrushed","64":"https://addons.mozilla.org/user-media/addon_icons/8/8542-64.png?modified=mcrushed","128":"https://addons.mozilla.org/user-media/addon_icons/8/8542-128.png?modified=mcrushed"},"name":"LastPass Password Manager","version":"4.116.0.2","sourceURI":"https://addons.mozilla.org/firefox/downloads/file/4120971/lastpass_password_manager-4.116.0.2.xpi","homepageURL":"https://lastpass.com/","supportURL":"http://forums.lastpass.com/","description":"LastPass, an award-winning password manager, saves your passwords and gives you secure access from every computer and mobile device.","fullDescription":"LastPass puts you in control of your online life – making it easy to keep your critical information safe and secure so you can access it whenever you want, wherever you are. Save all your passwords, addresses, credit cards and more in your secure vault and LastPass will automatically fill in your information when you need it.\n\nStop wasting time  getting locked out of accounts or filling  passwords and  forms online – LastPass  simplifies your daily online tasks  while keeping you  and your family  secure.  \n\nAll your data, where you need it:\n- Store usernames and passwords and LastPass will log you in automatically\n- Fill forms quickly by saving your addresses, credit card numbers and more\n- Save passports, insurance cards and anything else you want to keep safe\n- All your data is available on any device for free\n- Anything you save on one device is instantly synced on all your other devices\n\nProtect yourself from breaches:\n- LastPass Security Dashboard provides and overview of your weak and reused passwords and how to improve them\n- LastPass dark web monitoring alerts you if your information is at risk\n- Generate secure passwords to replace weak ones\n- Protect your LastPass account with multifactor authentication\n\nSimplify your life:\n- Never forget another password\n- Passwords are autofilled for you as you go to your sites - less typing!\n- Securely share your passwords with friends and family\n- Only worry about one master password\n\nLastPass Data:\nAll of your sensitive vault data, including passwords, secure notes, and uploads is protected through comprehensive measures including use of AES 256 encryption with salting and hashing (for more information regarding LastPass' security features, please visit here):\n- All your passwords and other saved sensitive items are stored in an encrypted manner that is never visible to LastPass in its unencrypted form.\n- This ‘zero-knowledge' model is designed to ensure that the items you save in your LastPass vault may only be decrypted client-side via a Master Password that only the user possesses.\n- LastPass may collect certain high-level usage data (i.e., domain-level URLs) in order to provide a better user experience and customer support.\n\nThe binary component, if optionally installed, will securely communicate with the extension to enable additional functionality including the handling of attachments and syncing logins across clients locally on your computer.\n\nPersonal Data:\nLastPass collects and maintains data as necessary to provide, operate, and support our services. We may collect information* which includes but is not limited to:\n- Your LastPass account information, which includes account owner, account type, as well as payment and transactional information.\n- Your usage, which includes successful and failed log-in attempts, feature utilization, types of items stored in your vault, and sharing of folders.\n- User-specific information, which may include your IP address, devices utilized and associated with your account, as well as your name, email address, and phone number.\nTo the extent that ‘personal data' is shared with third-parties to provide the services to you and on your behalf, such third-parties shall be identified at LogMeIn's Privacy & Trust Center.\n*Some additional information may be collected if specific features are enabled and/or depending on your LastPass account tier.\n\nOnly you know your master password, and only you can access your vault. Your master password is never shared with LastPass. That’s why millions of people and businesses trust LastPass to keep their information safe. We protect your data at every step.\n\nLastPass is free to download and use on any desktop or laptop computer. LastPass Premium adds more features, like family password sharing, 1 GB of encrypted file storage, Premium two-factor authentication options like YubiKey, and priority tech support. Learn more at https://lastpass.com/go-premium\n\nLearn about more features and get LastPass for Internet Explorer, Firefox, Safari, Chrome, Microsoft Edge and Opera from www.LastPass.com","weeklyDownloads":8247,"type":"extension","creator":{"name":"LastPass","url":"https://addons.mozilla.org/en-US/firefox/user/2338345/"},"developers":[],"screenshots":[{"url":"https://addons.mozilla.org/user-media/previews/full/171/171883.png?modified=1622132160","width":440,"height":280,"thumbnailURL":"https://addons.mozilla.org/user-media/previews/thumbs/171/171883.jpg?modified=1622132160","thumbnailWidth":440,"thumbnailHeight":280,"caption":"LastPass is an award-winning password manager and form fill for all browsers, platforms, and mobile devices."},{"url":"https://addons.mozilla.org/user-media/previews/full/191/191654.png?modified=1622132160","width":700,"height":438,"thumbnailURL":"https://addons.mozilla.org/user-media/previews/thumbs/191/191654.jpg?modified=1622132160","thumbnailWidth":533,"thumbnailHeight":334},{"url":"https://addons.mozilla.org/user-media/previews/full/191/191653.png?modified=1622132160","width":700,"height":438,"thumbnailURL":"https://addons.mozilla.org/user-media/previews/thumbs/191/191653.jpg?modified=1622132160","thumbnailWidth":533,"thumbnailHeight":334},{"url":"https://addons.mozilla.org/user-media/previews/full/191/191652.png?modified=1622132161","width":700,"height":438,"thumbnailURL":"https://addons.mozilla.org/user-media/previews/thumbs/191/191652.jpg?modified=1622132161","thumbnailWidth":533,"thumbnailHeight":334}],"contributionURL":"","averageRating":3.6748,"reviewCount":3154,"reviewURL":"https://addons.mozilla.org/en-US/firefox/addon/lastpass-password-manager/reviews/","updateDate":1686660100000},{"id":"addon@simplelogin","icons":{"32":"https://addons.mozilla.org/user-media/addon_icons/2612/2612998-32.png?modified=a73701bb","64":"https://addons.mozilla.org/user-media/addon_icons/2612/2612998-64.png?modified=a73701bb","128":"https://addons.mozilla.org/user-media/addon_icons/2612/2612998-128.png?modified=a73701bb"},"name":"SimpleLogin: Open-source Email Protection","version":"2.9.2","sourceURI":"https://addons.mozilla.org/firefox/downloads/file/4028552/simplelogin-2.9.2.xpi","homepageURL":"https://simplelogin.io","supportURL":"https://simplelogin.io","description":"Create a different email for each website to hide your real email. Guard your inbox against spams, phishing. Protect your privacy.","fullDescription":"Use email ALIAS instead of your real email address to:\n- defend your mailbox from spams/phishing\n- protect your privacy.\n\nAll emails sent to an alias is *forwarded* to your personal email address.\n\nSimpleLogin is an *open-source* email alias solution that allows you to quickly create an email alias.\n\nUse an email alias when:\n- subscribing to a newsletter\n- signing up for a new account\n- giving your email to someone you don't trust.\n\nLater on, you can simply block an email alias if it's too spammy.\n\nAn email alias can RECEIVE & SEND emails: it's a full-fledged email address.\n\n## Why SimpleLogin?\n\nWhen you give away your personal email online, there is a good chance that your email address would end up with a spammer or a hacker. SimpleLogin acts as a firewall for to protect your personal email inbox.\n\n## What distinguishes SimpleLogin:\n\n- Open-source and easy to self-host. The self-hosting is based on Docker and could be run on almost any Linux server. The hosting instruction is on our repository at https://github.com/simple-login/app\n\n- Powerful features if you have a domain (only available at premium plan).\n\n- Generous free plan: there's no cap on bandwidth or number of replies/sends. The Free Plan is enough for protecting your personal email. Premium Plan targets at more \"advanced\" users with features like custom domain, unlimited alias or catch-all alias.\n\n- Open Roadmap with exciting upcoming features: email directory, extension for Safari, mobile applications, etc. Feel free to check it out on https://trello.com/b/4d6A69I4/open-roadmap\n\n- Export your data: allows you to change the service provider if someday you decide to leave SimpleLogin 😢.","weeklyDownloads":450,"type":"extension","creator":{"name":"SimpleLogin & Proton Pass team","url":"https://addons.mozilla.org/en-US/firefox/user/15461864/"},"developers":[],"screenshots":[{"url":"https://addons.mozilla.org/user-media/previews/full/243/243495.png?modified=1622134908","width":1280,"height":800,"thumbnailURL":"https://addons.mozilla.org/user-media/previews/thumbs/243/243495.jpg?modified=1622134908","thumbnailWidth":533,"thumbnailHeight":333},{"url":"https://addons.mozilla.org/user-media/previews/full/243/243496.png?modified=1622134914","width":1280,"height":800,"thumbnailURL":"https://addons.mozilla.org/user-media/previews/thumbs/243/243496.jpg?modified=1622134914","thumbnailWidth":533,"thumbnailHeight":333},{"url":"https://addons.mozilla.org/user-media/previews/full/243/243497.png?modified=1622134917","width":1280,"height":800,"thumbnailURL":"https://addons.mozilla.org/user-media/previews/thumbs/243/243497.jpg?modified=1622134917","thumbnailWidth":533,"thumbnailHeight":333},{"url":"https://addons.mozilla.org/user-media/previews/full/243/243498.png?modified=1622134920","width":1280,"height":800,"thumbnailURL":"https://addons.mozilla.org/user-media/previews/thumbs/243/243498.jpg?modified=1622134920","thumbnailWidth":533,"thumbnailHeight":333},{"url":"https://addons.mozilla.org/user-media/previews/full/241/241151.png?modified=1622134922","width":1277,"height":591,"thumbnailURL":"https://addons.mozilla.org/user-media/previews/thumbs/241/241151.jpg?modified=1622134922","thumbnailWidth":533,"thumbnailHeight":247},{"url":"https://addons.mozilla.org/user-media/previews/full/230/230289.png?modified=1622134924","width":1280,"height":800,"thumbnailURL":"https://addons.mozilla.org/user-media/previews/thumbs/230/230289.jpg?modified=1622134924","thumbnailWidth":533,"thumbnailHeight":333}],"contributionURL":"","averageRating":4.8992,"reviewCount":39,"reviewURL":"https://addons.mozilla.org/en-US/firefox/addon/simplelogin/reviews/","updateDate":1668105614000},{"id":"ArchWiki@archlinux.org","icons":{"32":"https://addons.mozilla.org/user-media/addon_icons/2667/2667300-32.png?modified=09ca6164","64":"https://addons.mozilla.org/user-media/addon_icons/2667/2667300-64.png?modified=09ca6164","128":"https://addons.mozilla.org/user-media/addon_icons/2667/2667300-128.png?modified=09ca6164"},"name":"ArchLinux Wiki Search","version":"1.0.3","sourceURI":"https://addons.mozilla.org/firefox/downloads/file/4119643/archlinux_wiki_search-1.0.3.xpi","homepageURL":"https://github.com/noraj/firefox-extension-arch-search","supportURL":"https://github.com/noraj/firefox-extension-arch-search","description":"Adds ArchLinux Wiki as a search engine.","fullDescription":null,"weeklyDownloads":3,"type":"extension","creator":{"name":"noraj","url":"https://addons.mozilla.org/en-US/firefox/user/16356562/"},"developers":[],"screenshots":[],"contributionURL":"","averageRating":4.6667,"reviewCount":0,"reviewURL":"https://addons.mozilla.org/en-US/firefox/addon/archlinux-wiki-search/reviews/","updateDate":1685744733000},{"id":"ArchAur@archlinux.org","icons":{"32":"https://addons.mozilla.org/user-media/addon_icons/2667/2667294-32.png?modified=09ca6164","64":"https://addons.mozilla.org/user-media/addon_icons/2667/2667294-64.png?modified=09ca6164","128":"https://addons.mozilla.org/user-media/addon_icons/2667/2667294-128.png?modified=09ca6164"},"name":"ArchLinux AUR Search","version":"1.0.4","sourceURI":"https://addons.mozilla.org/firefox/downloads/file/4119642/archlinux_aur_search-1.0.4.xpi","homepageURL":"https://github.com/noraj/firefox-extension-arch-search","supportURL":"https://github.com/noraj/firefox-extension-arch-search","description":"Adds ArchLinux AUR as a search engine.","fullDescription":null,"weeklyDownloads":3,"type":"extension","creator":{"name":"noraj","url":"https://addons.mozilla.org/en-US/firefox/user/16356562/"},"developers":[],"screenshots":[],"contributionURL":"","averageRating":0,"reviewCount":0,"reviewURL":"https://addons.mozilla.org/en-US/firefox/addon/archlinux-aur-search/reviews/","updateDate":1685744433000},{"id":"ArchPkgs@archlinux.org","icons":{"32":"https://addons.mozilla.org/user-media/addon_icons/2667/2667299-32.png?modified=09ca6164","64":"https://addons.mozilla.org/user-media/addon_icons/2667/2667299-64.png?modified=09ca6164","128":"https://addons.mozilla.org/user-media/addon_icons/2667/2667299-128.png?modified=09ca6164"},"name":"ArchLinux Packages Search","version":"1.0.2","sourceURI":"https://addons.mozilla.org/firefox/downloads/file/4119645/archlinux_packages_search-1.0.2.xpi","homepageURL":"https://github.com/noraj/firefox-extension-arch-search","supportURL":"https://github.com/noraj/firefox-extension-arch-search","description":"Adds ArchLinux Packages as a search engine.","fullDescription":null,"weeklyDownloads":2,"type":"extension","creator":{"name":"noraj","url":"https://addons.mozilla.org/en-US/firefox/user/16356562/"},"developers":[],"screenshots":[],"contributionURL":"","averageRating":0,"reviewCount":0,"reviewURL":"https://addons.mozilla.org/en-US/firefox/addon/archlinux-packages-search/reviews/","updateDate":1685744744000},{"id":"ArchForumK@archlinux.org","icons":{"32":"https://addons.mozilla.org/user-media/addon_icons/2667/2667298-32.png?modified=09ca6164","64":"https://addons.mozilla.org/user-media/addon_icons/2667/2667298-64.png?modified=09ca6164","128":"https://addons.mozilla.org/user-media/addon_icons/2667/2667298-128.png?modified=09ca6164"},"name":"ArchLinux Forum (by keywords) Search","version":"1.0.2","sourceURI":"https://addons.mozilla.org/firefox/downloads/file/4119646/arch_forum_by_keywords_search-1.0.2.xpi","homepageURL":"https://github.com/noraj/firefox-extension-arch-search","supportURL":"https://github.com/noraj/firefox-extension-arch-search","description":"Adds ArchLinux Forum (by keywords) as a search engine.","fullDescription":null,"weeklyDownloads":1,"type":"extension","creator":{"name":"noraj","url":"https://addons.mozilla.org/en-US/firefox/user/16356562/"},"developers":[],"screenshots":[],"contributionURL":"","averageRating":0,"reviewCount":0,"reviewURL":"https://addons.mozilla.org/en-US/firefox/addon/arch-forum-by-keywords-search/reviews/","updateDate":1685744746000},{"id":"ArchMan@archlinux.org","icons":{"32":"https://addons.mozilla.org/user-media/addon_icons/2681/2681978-32.png?modified=f8c4dbb5","64":"https://addons.mozilla.org/user-media/addon_icons/2681/2681978-64.png?modified=f8c4dbb5","128":"https://addons.mozilla.org/user-media/addon_icons/2681/2681978-128.png?modified=f8c4dbb5"},"name":"ArchLinux manual pages Search","version":"1.0.3","sourceURI":"https://addons.mozilla.org/firefox/downloads/file/4119644/archlinux_manual_pages_search-1.0.3.xpi","homepageURL":"https://github.com/noraj/firefox-extension-arch-search","supportURL":"https://github.com/noraj/firefox-extension-arch-search","description":"Adds ArchLinux manual pages as a search engine.","fullDescription":null,"weeklyDownloads":1,"type":"extension","creator":{"name":"noraj","url":"https://addons.mozilla.org/en-US/firefox/user/16356562/"},"developers":[],"screenshots":[],"contributionURL":"","averageRating":0,"reviewCount":0,"reviewURL":"https://addons.mozilla.org/en-US/firefox/addon/archlinux-manual-pages-search/reviews/","updateDate":1685744739000},{"id":"ArchBugsT@archlinux.org","icons":{"32":"https://addons.mozilla.org/user-media/addon_icons/2667/2667296-32.png?modified=09ca6164","64":"https://addons.mozilla.org/user-media/addon_icons/2667/2667296-64.png?modified=09ca6164","128":"https://addons.mozilla.org/user-media/addon_icons/2667/2667296-128.png?modified=09ca6164"},"name":"ArchLinux Bugtracker (by text) Search","version":"1.0.2","sourceURI":"https://addons.mozilla.org/firefox/downloads/file/4119648/arch_bugtracker_by_text_search-1.0.2.xpi","homepageURL":"https://github.com/noraj/firefox-extension-arch-search","supportURL":"https://github.com/noraj/firefox-extension-arch-search","description":"Adds ArchLinux Bugtracker (by text) as a search engine.","fullDescription":null,"weeklyDownloads":0,"type":"extension","creator":{"name":"noraj","url":"https://addons.mozilla.org/en-US/firefox/user/16356562/"},"developers":[],"screenshots":[],"contributionURL":"","averageRating":0,"reviewCount":0,"reviewURL":"https://addons.mozilla.org/en-US/firefox/addon/arch-bugtracker-by-text-search/reviews/","updateDate":1685744751000},{"id":"ArchBugsFs@archlinux.org","icons":{"32":"https://addons.mozilla.org/user-media/addon_icons/2667/2667295-32.png?modified=09ca6164","64":"https://addons.mozilla.org/user-media/addon_icons/2667/2667295-64.png?modified=09ca6164","128":"https://addons.mozilla.org/user-media/addon_icons/2667/2667295-128.png?modified=09ca6164"},"name":"ArchLinux Bugtracker (by FS) Search","version":"1.0.2","sourceURI":"https://addons.mozilla.org/firefox/downloads/file/4119649/arch_bugtracker_by_fs_search-1.0.2.xpi","homepageURL":"https://github.com/noraj/firefox-extension-arch-search","supportURL":"https://github.com/noraj/firefox-extension-arch-search","description":"Adds ArchLinux Bugtracker (by FS) as a search engine.","fullDescription":null,"weeklyDownloads":0,"type":"extension","creator":{"name":"noraj","url":"https://addons.mozilla.org/en-US/firefox/user/16356562/"},"developers":[],"screenshots":[],"contributionURL":"","averageRating":0,"reviewCount":0,"reviewURL":"https://addons.mozilla.org/en-US/firefox/addon/arch-bugtracker-by-fs-search/reviews/","updateDate":1685744758000},{"id":"ArchForumA@archlinux.org","icons":{"32":"https://addons.mozilla.org/user-media/addon_icons/2667/2667297-32.png?modified=09ca6164","64":"https://addons.mozilla.org/user-media/addon_icons/2667/2667297-64.png?modified=09ca6164","128":"https://addons.mozilla.org/user-media/addon_icons/2667/2667297-128.png?modified=09ca6164"},"name":"ArchLinux Forum (by author) Search","version":"1.0.2","sourceURI":"https://addons.mozilla.org/firefox/downloads/file/4119647/arch_forum_by_author_search-1.0.2.xpi","homepageURL":"https://github.com/noraj/firefox-extension-arch-search","supportURL":"https://github.com/noraj/firefox-extension-arch-search","description":"Adds ArchLinux Forum (by author) as a search engine.","fullDescription":null,"weeklyDownloads":0,"type":"extension","creator":{"name":"noraj","url":"https://addons.mozilla.org/en-US/firefox/user/16356562/"},"developers":[],"screenshots":[],"contributionURL":"","averageRating":0,"reviewCount":0,"reviewURL":"https://addons.mozilla.org/en-US/firefox/addon/arch-forum-by-author-search/reviews/","updateDate":1685744748000}]} \ No newline at end of file diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/bookmarkbackups/bookmarks-2023-07-09_11_6Ifyfd+OoHSIfJpAeEwQ4w==.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/bookmarkbackups/bookmarks-2023-07-09_11_6Ifyfd+OoHSIfJpAeEwQ4w==.jsonlz4 new file mode 100644 index 0000000..0cd558d Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/bookmarkbackups/bookmarks-2023-07-09_11_6Ifyfd+OoHSIfJpAeEwQ4w==.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/bookmarkbackups/bookmarks-2023-07-11_30_jasyPpJkGp6AeIQ6XRnkNg==.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/bookmarkbackups/bookmarks-2023-07-11_30_jasyPpJkGp6AeIQ6XRnkNg==.jsonlz4 new file mode 100644 index 0000000..b9a1d0f Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/bookmarkbackups/bookmarks-2023-07-11_30_jasyPpJkGp6AeIQ6XRnkNg==.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/broadcast-listeners.json b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/broadcast-listeners.json new file mode 100644 index 0000000..eb7bae9 --- /dev/null +++ b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/broadcast-listeners.json @@ -0,0 +1 @@ +{"version":1,"listeners":{"remote-settings/monitor_changes":{"version":"\"1689044276102\"","sourceInfo":{"moduleURI":"resource://services-settings/remote-settings.sys.mjs","symbolName":"remoteSettingsBroadcastHandler"}}}} \ No newline at end of file diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/cert9.db b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/cert9.db new file mode 100644 index 0000000..636e0b0 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/cert9.db differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/cert_override.txt b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/cert_override.txt new file mode 100644 index 0000000..db15db7 --- /dev/null +++ b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/cert_override.txt @@ -0,0 +1,3 @@ +# PSM Certificate Override Settings file +# This is a generated file! Do not edit. +127.0.0.1:443: OID.2.16.840.1.101.3.4.2.1 48:BA:31:90:A2:C8:D3:1D:32:4D:2A:6E:75:12:0B:BB:9A:9E:5A:CA:8D:3D:6C:81:BA:51:9A:14:83:ED:F9:42 diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/compatibility.ini b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/compatibility.ini new file mode 100644 index 0000000..6496a96 --- /dev/null +++ b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/compatibility.ini @@ -0,0 +1,5 @@ +[Compatibility] +LastVersion=115.0.1_20230707173157/20230707173157 +LastOSABI=Linux_x86_64-gcc3 +LastPlatformDir=/usr/lib/firefox +LastAppDir=/usr/lib/firefox/browser diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/containers.json b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/containers.json new file mode 100644 index 0000000..91afdbe --- /dev/null +++ b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/containers.json @@ -0,0 +1 @@ +{"version":4,"lastUserContextId":5,"identities":[{"icon":"fingerprint","color":"blue","l10nID":"userContextPersonal.label","accessKey":"userContextPersonal.accesskey","public":true,"userContextId":1},{"icon":"briefcase","color":"orange","l10nID":"userContextWork.label","accessKey":"userContextWork.accesskey","public":true,"userContextId":2},{"icon":"dollar","color":"green","l10nID":"userContextBanking.label","accessKey":"userContextBanking.accesskey","public":true,"userContextId":3},{"icon":"cart","color":"pink","l10nID":"userContextShopping.label","accessKey":"userContextShopping.accesskey","public":true,"userContextId":4},{"public":false,"icon":"","color":"","name":"userContextIdInternal.thumbnail","accessKey":"","userContextId":5},{"userContextId":4294967295,"public":false,"icon":"","color":"","name":"userContextIdInternal.webextStorageLocal","accessKey":""}]} \ No newline at end of file diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/content-prefs.sqlite b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/content-prefs.sqlite new file mode 100644 index 0000000..57bc2ba Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/content-prefs.sqlite differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/cookies.sqlite b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/cookies.sqlite new file mode 100644 index 0000000..a0f7847 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/cookies.sqlite differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/crashes/store.json.mozlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/crashes/store.json.mozlz4 new file mode 100644 index 0000000..5e3546c Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/crashes/store.json.mozlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688747269843.298f3b18-8a4b-4f13-9436-ab09f54e9b50.main.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688747269843.298f3b18-8a4b-4f13-9436-ab09f54e9b50.main.jsonlz4 new file mode 100644 index 0000000..1b35a3f Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688747269843.298f3b18-8a4b-4f13-9436-ab09f54e9b50.main.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688748531223.daaab781-5587-4073-a7c9-6133aac38608.main.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688748531223.daaab781-5587-4073-a7c9-6133aac38608.main.jsonlz4 new file mode 100644 index 0000000..71f79f3 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688748531223.daaab781-5587-4073-a7c9-6133aac38608.main.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688748881842.d9e6b5d8-1600-4041-8f4c-3a29c2f00f4b.main.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688748881842.d9e6b5d8-1600-4041-8f4c-3a29c2f00f4b.main.jsonlz4 new file mode 100644 index 0000000..31c2fd0 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688748881842.d9e6b5d8-1600-4041-8f4c-3a29c2f00f4b.main.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688749708493.8eba5d6e-2a95-47cd-ac69-b6e188ba9a0a.main.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688749708493.8eba5d6e-2a95-47cd-ac69-b6e188ba9a0a.main.jsonlz4 new file mode 100644 index 0000000..e1ea3af Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688749708493.8eba5d6e-2a95-47cd-ac69-b6e188ba9a0a.main.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688754031268.99f85a4f-e510-4acf-a86e-ba0f607b3c20.main.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688754031268.99f85a4f-e510-4acf-a86e-ba0f607b3c20.main.jsonlz4 new file mode 100644 index 0000000..364078b Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688754031268.99f85a4f-e510-4acf-a86e-ba0f607b3c20.main.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688754744008.0536cc3c-8d98-49d0-8a6e-5fd187308898.main.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688754744008.0536cc3c-8d98-49d0-8a6e-5fd187308898.main.jsonlz4 new file mode 100644 index 0000000..06680be Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688754744008.0536cc3c-8d98-49d0-8a6e-5fd187308898.main.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688754898807.34d8ff18-4fcc-4746-83fd-f194edea12cc.health.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688754898807.34d8ff18-4fcc-4746-83fd-f194edea12cc.health.jsonlz4 new file mode 100644 index 0000000..da39713 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688754898807.34d8ff18-4fcc-4746-83fd-f194edea12cc.health.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688754898835.115905ca-a1be-4d91-8121-e5504f55d838.new-profile.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688754898835.115905ca-a1be-4d91-8121-e5504f55d838.new-profile.jsonlz4 new file mode 100644 index 0000000..1a2490f Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688754898835.115905ca-a1be-4d91-8121-e5504f55d838.new-profile.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688754898842.f2fd4fd8-381d-4dda-9db1-354ac4061beb.event.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688754898842.f2fd4fd8-381d-4dda-9db1-354ac4061beb.event.jsonlz4 new file mode 100644 index 0000000..4eec5c8 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688754898842.f2fd4fd8-381d-4dda-9db1-354ac4061beb.event.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688754898843.bac647cd-e2eb-4937-bc94-08cc182e0bee.health.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688754898843.bac647cd-e2eb-4937-bc94-08cc182e0bee.health.jsonlz4 new file mode 100644 index 0000000..516cff7 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688754898843.bac647cd-e2eb-4937-bc94-08cc182e0bee.health.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688754898854.99558a49-3834-473b-a534-386a92abb50a.main.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688754898854.99558a49-3834-473b-a534-386a92abb50a.main.jsonlz4 new file mode 100644 index 0000000..26a546e Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688754898854.99558a49-3834-473b-a534-386a92abb50a.main.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688755012081.0d949e45-e2fe-438f-b98a-d923a87e574c.main.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688755012081.0d949e45-e2fe-438f-b98a-d923a87e574c.main.jsonlz4 new file mode 100644 index 0000000..0529dae Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688755012081.0d949e45-e2fe-438f-b98a-d923a87e574c.main.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688757689922.61e72560-2404-4a9d-aedc-d810ce8c43e7.event.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688757689922.61e72560-2404-4a9d-aedc-d810ce8c43e7.event.jsonlz4 new file mode 100644 index 0000000..5cf7caa Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688757689922.61e72560-2404-4a9d-aedc-d810ce8c43e7.event.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688757689932.c4f00709-a474-4da3-a4d6-99ce79d011c5.main.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688757689932.c4f00709-a474-4da3-a4d6-99ce79d011c5.main.jsonlz4 new file mode 100644 index 0000000..0f6dc98 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688757689932.c4f00709-a474-4da3-a4d6-99ce79d011c5.main.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688759322469.7fe6ef31-094e-46b1-98e0-aa65fbe36f31.main.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688759322469.7fe6ef31-094e-46b1-98e0-aa65fbe36f31.main.jsonlz4 new file mode 100644 index 0000000..280d1cb Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688759322469.7fe6ef31-094e-46b1-98e0-aa65fbe36f31.main.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688759462468.2168435c-35d3-4092-b1c1-689c67565568.main.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688759462468.2168435c-35d3-4092-b1c1-689c67565568.main.jsonlz4 new file mode 100644 index 0000000..0da4a79 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688759462468.2168435c-35d3-4092-b1c1-689c67565568.main.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688760532913.8cbb73e1-6503-4be4-8066-7ce256294783.event.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688760532913.8cbb73e1-6503-4be4-8066-7ce256294783.event.jsonlz4 new file mode 100644 index 0000000..810efcf Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688760532913.8cbb73e1-6503-4be4-8066-7ce256294783.event.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688760532919.03595d9a-383e-4ff9-a7a2-78d47b96a817.main.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688760532919.03595d9a-383e-4ff9-a7a2-78d47b96a817.main.jsonlz4 new file mode 100644 index 0000000..af3dc26 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688760532919.03595d9a-383e-4ff9-a7a2-78d47b96a817.main.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688764273533.382380c0-efea-471b-a0e2-e23322eab9f1.event.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688764273533.382380c0-efea-471b-a0e2-e23322eab9f1.event.jsonlz4 new file mode 100644 index 0000000..b7a7a73 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688764273533.382380c0-efea-471b-a0e2-e23322eab9f1.event.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688765517486.f188ba15-6750-41fd-8c6a-1548c7640c51.main.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688765517486.f188ba15-6750-41fd-8c6a-1548c7640c51.main.jsonlz4 new file mode 100644 index 0000000..796ba82 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688765517486.f188ba15-6750-41fd-8c6a-1548c7640c51.main.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688766271179.3fc5f062-d5bb-4aee-a878-57241485849a.main.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688766271179.3fc5f062-d5bb-4aee-a878-57241485849a.main.jsonlz4 new file mode 100644 index 0000000..3f7725f Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688766271179.3fc5f062-d5bb-4aee-a878-57241485849a.main.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688766618293.b60fe247-b66a-46c6-a12f-93d69af7a0cd.event.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688766618293.b60fe247-b66a-46c6-a12f-93d69af7a0cd.event.jsonlz4 new file mode 100644 index 0000000..0ea7f42 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688766618293.b60fe247-b66a-46c6-a12f-93d69af7a0cd.event.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688766618301.d041b45e-c710-4b77-b302-194acae64131.main.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688766618301.d041b45e-c710-4b77-b302-194acae64131.main.jsonlz4 new file mode 100644 index 0000000..14b8a89 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688766618301.d041b45e-c710-4b77-b302-194acae64131.main.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688766994505.6588ba3d-3c4e-4645-868b-fa6e9fb615c4.health.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688766994505.6588ba3d-3c4e-4645-868b-fa6e9fb615c4.health.jsonlz4 new file mode 100644 index 0000000..feb71ab Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688766994505.6588ba3d-3c4e-4645-868b-fa6e9fb615c4.health.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688766994525.362e030d-8f2e-47bf-8db9-8d1ef638bbb5.event.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688766994525.362e030d-8f2e-47bf-8db9-8d1ef638bbb5.event.jsonlz4 new file mode 100644 index 0000000..5d9e4da Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688766994525.362e030d-8f2e-47bf-8db9-8d1ef638bbb5.event.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688766994526.979aef11-01d3-46cd-b96d-41fd5f539ab6.health.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688766994526.979aef11-01d3-46cd-b96d-41fd5f539ab6.health.jsonlz4 new file mode 100644 index 0000000..33ccb11 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688766994526.979aef11-01d3-46cd-b96d-41fd5f539ab6.health.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688766994539.f03a0630-c22a-4cec-954c-946d2c0ec07e.main.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688766994539.f03a0630-c22a-4cec-954c-946d2c0ec07e.main.jsonlz4 new file mode 100644 index 0000000..73ab2db Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688766994539.f03a0630-c22a-4cec-954c-946d2c0ec07e.main.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688767997817.115c7091-3254-44c1-89fd-9ea1be524a36.event.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688767997817.115c7091-3254-44c1-89fd-9ea1be524a36.event.jsonlz4 new file mode 100644 index 0000000..8037efe Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688767997817.115c7091-3254-44c1-89fd-9ea1be524a36.event.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688767997822.c011b671-6ba6-4912-b3d7-a4c1af597f09.main.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688767997822.c011b671-6ba6-4912-b3d7-a4c1af597f09.main.jsonlz4 new file mode 100644 index 0000000..4c6bf61 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688767997822.c011b671-6ba6-4912-b3d7-a4c1af597f09.main.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688768190633.5d78ee5e-d9c5-4dcf-a097-a9ef5c2a204f.main.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688768190633.5d78ee5e-d9c5-4dcf-a097-a9ef5c2a204f.main.jsonlz4 new file mode 100644 index 0000000..f3e108b Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688768190633.5d78ee5e-d9c5-4dcf-a097-a9ef5c2a204f.main.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688768303635.8123e3c1-1c16-48a8-a756-84e370746fe7.main.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688768303635.8123e3c1-1c16-48a8-a756-84e370746fe7.main.jsonlz4 new file mode 100644 index 0000000..65c964e Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688768303635.8123e3c1-1c16-48a8-a756-84e370746fe7.main.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688768629443.2f976381-89cd-41e6-b401-53f4c7b7ec63.event.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688768629443.2f976381-89cd-41e6-b401-53f4c7b7ec63.event.jsonlz4 new file mode 100644 index 0000000..2f36974 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688768629443.2f976381-89cd-41e6-b401-53f4c7b7ec63.event.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688768629450.de9e2c65-22d8-4e3a-922f-598558e6c9ab.main.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688768629450.de9e2c65-22d8-4e3a-922f-598558e6c9ab.main.jsonlz4 new file mode 100644 index 0000000..53ec170 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688768629450.de9e2c65-22d8-4e3a-922f-598558e6c9ab.main.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688768750090.3dcee186-5890-4a36-ac37-f42609dceb2c.event.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688768750090.3dcee186-5890-4a36-ac37-f42609dceb2c.event.jsonlz4 new file mode 100644 index 0000000..2405a48 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688768750090.3dcee186-5890-4a36-ac37-f42609dceb2c.event.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688768750092.291a007d-7f02-4eaa-b652-ed1a6f329e5f.main.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688768750092.291a007d-7f02-4eaa-b652-ed1a6f329e5f.main.jsonlz4 new file mode 100644 index 0000000..6f912af Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688768750092.291a007d-7f02-4eaa-b652-ed1a6f329e5f.main.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688768988456.634b053c-ead9-4828-bfc7-c8fbfa312d94.main.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688768988456.634b053c-ead9-4828-bfc7-c8fbfa312d94.main.jsonlz4 new file mode 100644 index 0000000..aa1804e Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688768988456.634b053c-ead9-4828-bfc7-c8fbfa312d94.main.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688769356522.a3f1d904-4a8e-4bf5-8ad4-85bf2a3ddc77.main.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688769356522.a3f1d904-4a8e-4bf5-8ad4-85bf2a3ddc77.main.jsonlz4 new file mode 100644 index 0000000..449abb8 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688769356522.a3f1d904-4a8e-4bf5-8ad4-85bf2a3ddc77.main.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688769525299.11170863-105d-417d-b4a1-808d29577733.main.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688769525299.11170863-105d-417d-b4a1-808d29577733.main.jsonlz4 new file mode 100644 index 0000000..4176f9e Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688769525299.11170863-105d-417d-b4a1-808d29577733.main.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688770185676.994a7ea8-e6bc-49cc-92ec-201a4b26af69.event.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688770185676.994a7ea8-e6bc-49cc-92ec-201a4b26af69.event.jsonlz4 new file mode 100644 index 0000000..ae79868 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688770185676.994a7ea8-e6bc-49cc-92ec-201a4b26af69.event.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688770185683.c98c36a6-b9c5-4222-bfff-b7528ff99131.main.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688770185683.c98c36a6-b9c5-4222-bfff-b7528ff99131.main.jsonlz4 new file mode 100644 index 0000000..0133e57 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688770185683.c98c36a6-b9c5-4222-bfff-b7528ff99131.main.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688770341976.be28a239-1b0f-440f-acf1-051456e6ba62.health.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688770341976.be28a239-1b0f-440f-acf1-051456e6ba62.health.jsonlz4 new file mode 100644 index 0000000..9d590ff Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688770341976.be28a239-1b0f-440f-acf1-051456e6ba62.health.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688770342006.a569fe0c-471c-42f1-b49c-278c444c0aed.event.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688770342006.a569fe0c-471c-42f1-b49c-278c444c0aed.event.jsonlz4 new file mode 100644 index 0000000..3a022a0 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688770342006.a569fe0c-471c-42f1-b49c-278c444c0aed.event.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688770342008.de9aaeb9-6c1f-4efe-9877-2f5c0638d2df.health.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688770342008.de9aaeb9-6c1f-4efe-9877-2f5c0638d2df.health.jsonlz4 new file mode 100644 index 0000000..122cd30 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688770342008.de9aaeb9-6c1f-4efe-9877-2f5c0638d2df.health.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688770342022.1c8afaad-3fb9-4529-b838-b692ff8d55e8.main.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688770342022.1c8afaad-3fb9-4529-b838-b692ff8d55e8.main.jsonlz4 new file mode 100644 index 0000000..b1ff0ce Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688770342022.1c8afaad-3fb9-4529-b838-b692ff8d55e8.main.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688771030026.11064dd2-a6dd-45ee-a708-514eba792f71.event.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688771030026.11064dd2-a6dd-45ee-a708-514eba792f71.event.jsonlz4 new file mode 100644 index 0000000..f22ebe8 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688771030026.11064dd2-a6dd-45ee-a708-514eba792f71.event.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688771030032.a31d78e9-23fd-40c0-a924-661950e10389.main.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688771030032.a31d78e9-23fd-40c0-a924-661950e10389.main.jsonlz4 new file mode 100644 index 0000000..fac1962 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688771030032.a31d78e9-23fd-40c0-a924-661950e10389.main.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688771736820.089541b7-5a03-41df-bbc9-1a1e2353771c.main.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688771736820.089541b7-5a03-41df-bbc9-1a1e2353771c.main.jsonlz4 new file mode 100644 index 0000000..af94f14 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688771736820.089541b7-5a03-41df-bbc9-1a1e2353771c.main.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688772087444.10af3cdf-74a2-439f-bf4f-4ec1b5517965.main.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688772087444.10af3cdf-74a2-439f-bf4f-4ec1b5517965.main.jsonlz4 new file mode 100644 index 0000000..bcff926 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688772087444.10af3cdf-74a2-439f-bf4f-4ec1b5517965.main.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688772498409.b2ad1fe6-c3ad-4b89-9236-7ddff5babf13.event.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688772498409.b2ad1fe6-c3ad-4b89-9236-7ddff5babf13.event.jsonlz4 new file mode 100644 index 0000000..4545e37 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688772498409.b2ad1fe6-c3ad-4b89-9236-7ddff5babf13.event.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688772498418.8a739c22-6c4d-4094-9c63-ab0469e7b640.main.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688772498418.8a739c22-6c4d-4094-9c63-ab0469e7b640.main.jsonlz4 new file mode 100644 index 0000000..f6e8837 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688772498418.8a739c22-6c4d-4094-9c63-ab0469e7b640.main.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688772670263.742fe589-2fb6-41f7-8965-050095c5a7a9.event.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688772670263.742fe589-2fb6-41f7-8965-050095c5a7a9.event.jsonlz4 new file mode 100644 index 0000000..bc410e7 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688772670263.742fe589-2fb6-41f7-8965-050095c5a7a9.event.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688772670271.0915d832-d7ee-42dd-bd14-3282ed492ca2.main.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688772670271.0915d832-d7ee-42dd-bd14-3282ed492ca2.main.jsonlz4 new file mode 100644 index 0000000..178f675 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688772670271.0915d832-d7ee-42dd-bd14-3282ed492ca2.main.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688773211480.501fd3e5-6f08-408c-946e-5db405953205.event.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688773211480.501fd3e5-6f08-408c-946e-5db405953205.event.jsonlz4 new file mode 100644 index 0000000..02f9199 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688773211480.501fd3e5-6f08-408c-946e-5db405953205.event.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688773211484.e68a7c39-62fd-4400-bd45-f15239f91580.main.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688773211484.e68a7c39-62fd-4400-bd45-f15239f91580.main.jsonlz4 new file mode 100644 index 0000000..267f940 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688773211484.e68a7c39-62fd-4400-bd45-f15239f91580.main.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688831225903.60fa48a0-6024-439e-94b2-a2a19eb29f00.event.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688831225903.60fa48a0-6024-439e-94b2-a2a19eb29f00.event.jsonlz4 new file mode 100644 index 0000000..ada288c Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688831225903.60fa48a0-6024-439e-94b2-a2a19eb29f00.event.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688831225906.9a43186f-ac53-44e5-b21a-59234611bd4a.main.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688831225906.9a43186f-ac53-44e5-b21a-59234611bd4a.main.jsonlz4 new file mode 100644 index 0000000..44a9988 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688831225906.9a43186f-ac53-44e5-b21a-59234611bd4a.main.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688831526640.acbc783f-ff3e-478d-a5cb-4fdecd19853b.event.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688831526640.acbc783f-ff3e-478d-a5cb-4fdecd19853b.event.jsonlz4 new file mode 100644 index 0000000..ade2a0d Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688831526640.acbc783f-ff3e-478d-a5cb-4fdecd19853b.event.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688831526644.2d717cfa-9801-4f73-a398-931abbe742f8.main.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688831526644.2d717cfa-9801-4f73-a398-931abbe742f8.main.jsonlz4 new file mode 100644 index 0000000..00e24de Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688831526644.2d717cfa-9801-4f73-a398-931abbe742f8.main.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688832044785.3b330a19-4d02-4927-8310-681a200efa9a.main.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688832044785.3b330a19-4d02-4927-8310-681a200efa9a.main.jsonlz4 new file mode 100644 index 0000000..6e90ae5 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688832044785.3b330a19-4d02-4927-8310-681a200efa9a.main.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688832555343.33b949b5-453c-40cd-a096-0f9dbe95deb7.main.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688832555343.33b949b5-453c-40cd-a096-0f9dbe95deb7.main.jsonlz4 new file mode 100644 index 0000000..cd797b4 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688832555343.33b949b5-453c-40cd-a096-0f9dbe95deb7.main.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688832700392.4bf7a8be-8df6-43ca-95b6-dd07b73b97b1.main.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688832700392.4bf7a8be-8df6-43ca-95b6-dd07b73b97b1.main.jsonlz4 new file mode 100644 index 0000000..c11a33b Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688832700392.4bf7a8be-8df6-43ca-95b6-dd07b73b97b1.main.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688833096138.0611e17f-6a4c-450a-b175-866cf7e4d5a3.main.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688833096138.0611e17f-6a4c-450a-b175-866cf7e4d5a3.main.jsonlz4 new file mode 100644 index 0000000..41545be Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688833096138.0611e17f-6a4c-450a-b175-866cf7e4d5a3.main.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688833398173.55c8f9ce-c5ac-4107-b978-9ddc7df3ca83.main.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688833398173.55c8f9ce-c5ac-4107-b978-9ddc7df3ca83.main.jsonlz4 new file mode 100644 index 0000000..0710be1 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688833398173.55c8f9ce-c5ac-4107-b978-9ddc7df3ca83.main.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688833527489.a2a29bce-0029-46fc-b6bf-7435c90711ce.main.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688833527489.a2a29bce-0029-46fc-b6bf-7435c90711ce.main.jsonlz4 new file mode 100644 index 0000000..0893436 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688833527489.a2a29bce-0029-46fc-b6bf-7435c90711ce.main.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688833679819.a54937d8-6434-4c38-abbd-18da4a879df7.main.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688833679819.a54937d8-6434-4c38-abbd-18da4a879df7.main.jsonlz4 new file mode 100644 index 0000000..71bb12e Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688833679819.a54937d8-6434-4c38-abbd-18da4a879df7.main.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688833843952.e404bbe0-47a7-4937-b6de-d8209b40d438.main.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688833843952.e404bbe0-47a7-4937-b6de-d8209b40d438.main.jsonlz4 new file mode 100644 index 0000000..e0f3702 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688833843952.e404bbe0-47a7-4937-b6de-d8209b40d438.main.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688834209661.a7664b06-385d-404c-ba61-fb7ab41e588f.main.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688834209661.a7664b06-385d-404c-ba61-fb7ab41e588f.main.jsonlz4 new file mode 100644 index 0000000..22b3a9e Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688834209661.a7664b06-385d-404c-ba61-fb7ab41e588f.main.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688834529580.ad0ca13d-7298-4cad-9ee2-20c8670ce7dd.main.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688834529580.ad0ca13d-7298-4cad-9ee2-20c8670ce7dd.main.jsonlz4 new file mode 100644 index 0000000..40804ad Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688834529580.ad0ca13d-7298-4cad-9ee2-20c8670ce7dd.main.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688835411638.122dad4e-ceba-4fc6-9d25-aa80841fc743.event.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688835411638.122dad4e-ceba-4fc6-9d25-aa80841fc743.event.jsonlz4 new file mode 100644 index 0000000..812b73a Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688835411638.122dad4e-ceba-4fc6-9d25-aa80841fc743.event.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688835411646.3c1d8ead-3302-4762-8dea-7c3798a7793f.main.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688835411646.3c1d8ead-3302-4762-8dea-7c3798a7793f.main.jsonlz4 new file mode 100644 index 0000000..0b01f67 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688835411646.3c1d8ead-3302-4762-8dea-7c3798a7793f.main.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688835751184.26d858c7-76e0-4b0b-8841-5474f104d0d4.event.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688835751184.26d858c7-76e0-4b0b-8841-5474f104d0d4.event.jsonlz4 new file mode 100644 index 0000000..1f8f1f8 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688835751184.26d858c7-76e0-4b0b-8841-5474f104d0d4.event.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688835751190.7e1027b3-9747-48a1-813f-af5e507646ce.main.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688835751190.7e1027b3-9747-48a1-813f-af5e507646ce.main.jsonlz4 new file mode 100644 index 0000000..5532715 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688835751190.7e1027b3-9747-48a1-813f-af5e507646ce.main.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688837293484.b16eb908-6021-4d1c-bf6d-e34f2b26d244.main.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688837293484.b16eb908-6021-4d1c-bf6d-e34f2b26d244.main.jsonlz4 new file mode 100644 index 0000000..4237312 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688837293484.b16eb908-6021-4d1c-bf6d-e34f2b26d244.main.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688837741206.62083c3f-0091-42f4-8532-9766a9a648c4.event.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688837741206.62083c3f-0091-42f4-8532-9766a9a648c4.event.jsonlz4 new file mode 100644 index 0000000..c49ee3e Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688837741206.62083c3f-0091-42f4-8532-9766a9a648c4.event.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688837741212.8b10b951-565b-4516-afb9-fc3a33d82a20.main.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688837741212.8b10b951-565b-4516-afb9-fc3a33d82a20.main.jsonlz4 new file mode 100644 index 0000000..2541831 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688837741212.8b10b951-565b-4516-afb9-fc3a33d82a20.main.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688841517214.50773738-7ca8-47c6-b229-f218b19b76a5.event.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688841517214.50773738-7ca8-47c6-b229-f218b19b76a5.event.jsonlz4 new file mode 100644 index 0000000..6697916 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688841517214.50773738-7ca8-47c6-b229-f218b19b76a5.event.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688842455785.0d6c1122-42ab-4198-8962-4ffd9b80a93f.event.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688842455785.0d6c1122-42ab-4198-8962-4ffd9b80a93f.event.jsonlz4 new file mode 100644 index 0000000..e60d87a Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688842455785.0d6c1122-42ab-4198-8962-4ffd9b80a93f.event.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688842455795.5d1412bf-b56c-4ae7-9bc9-508e09d2e2fd.main.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688842455795.5d1412bf-b56c-4ae7-9bc9-508e09d2e2fd.main.jsonlz4 new file mode 100644 index 0000000..8d93019 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688842455795.5d1412bf-b56c-4ae7-9bc9-508e09d2e2fd.main.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688844825611.8a07dc90-2fd8-4b89-b5e8-01001db181fa.event.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688844825611.8a07dc90-2fd8-4b89-b5e8-01001db181fa.event.jsonlz4 new file mode 100644 index 0000000..587bb7a Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688844825611.8a07dc90-2fd8-4b89-b5e8-01001db181fa.event.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688844825620.d2fec9e0-b551-40e1-897b-fef6e5abb6cb.main.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688844825620.d2fec9e0-b551-40e1-897b-fef6e5abb6cb.main.jsonlz4 new file mode 100644 index 0000000..732bd13 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688844825620.d2fec9e0-b551-40e1-897b-fef6e5abb6cb.main.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688865388564.81bd5d71-742f-4239-b18d-1b87feca1746.event.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688865388564.81bd5d71-742f-4239-b18d-1b87feca1746.event.jsonlz4 new file mode 100644 index 0000000..c6188dd Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688865388564.81bd5d71-742f-4239-b18d-1b87feca1746.event.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688865388569.ea380f70-354c-4a8c-a66b-55b98ed7b039.main.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688865388569.ea380f70-354c-4a8c-a66b-55b98ed7b039.main.jsonlz4 new file mode 100644 index 0000000..cdbd2b3 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688865388569.ea380f70-354c-4a8c-a66b-55b98ed7b039.main.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688866974565.11a8f6ee-ff06-41e8-ab50-5ea20fb1e6a4.event.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688866974565.11a8f6ee-ff06-41e8-ab50-5ea20fb1e6a4.event.jsonlz4 new file mode 100644 index 0000000..222582d Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688866974565.11a8f6ee-ff06-41e8-ab50-5ea20fb1e6a4.event.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688866974569.727275ec-dc50-4dcc-a8ac-f8d21390db32.main.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688866974569.727275ec-dc50-4dcc-a8ac-f8d21390db32.main.jsonlz4 new file mode 100644 index 0000000..79b6fec Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688866974569.727275ec-dc50-4dcc-a8ac-f8d21390db32.main.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688867283839.5c66829e-0f83-402d-a8bd-b8325bed7e0a.event.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688867283839.5c66829e-0f83-402d-a8bd-b8325bed7e0a.event.jsonlz4 new file mode 100644 index 0000000..5f35482 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688867283839.5c66829e-0f83-402d-a8bd-b8325bed7e0a.event.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688867283846.684534eb-7fca-4c1a-9a16-3fb3fde47de8.main.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688867283846.684534eb-7fca-4c1a-9a16-3fb3fde47de8.main.jsonlz4 new file mode 100644 index 0000000..a07e666 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688867283846.684534eb-7fca-4c1a-9a16-3fb3fde47de8.main.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688871238487.7109e631-8b5a-4b09-b04b-de682152911a.main.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688871238487.7109e631-8b5a-4b09-b04b-de682152911a.main.jsonlz4 new file mode 100644 index 0000000..ef5838e Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688871238487.7109e631-8b5a-4b09-b04b-de682152911a.main.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688872237696.bdd07c95-3e36-46ac-bd65-25c9d309ea4f.main.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688872237696.bdd07c95-3e36-46ac-bd65-25c9d309ea4f.main.jsonlz4 new file mode 100644 index 0000000..6f691c1 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688872237696.bdd07c95-3e36-46ac-bd65-25c9d309ea4f.main.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688872480044.cda0a8f9-9463-417b-9be4-a5c70650b609.health.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688872480044.cda0a8f9-9463-417b-9be4-a5c70650b609.health.jsonlz4 new file mode 100644 index 0000000..ce445d5 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688872480044.cda0a8f9-9463-417b-9be4-a5c70650b609.health.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688872480073.3e52e8a6-14e5-4206-8f3c-c54f655fe2cc.event.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688872480073.3e52e8a6-14e5-4206-8f3c-c54f655fe2cc.event.jsonlz4 new file mode 100644 index 0000000..aab5995 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688872480073.3e52e8a6-14e5-4206-8f3c-c54f655fe2cc.event.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688872480074.a3e32ef7-7015-42e5-9a40-286883ac698b.health.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688872480074.a3e32ef7-7015-42e5-9a40-286883ac698b.health.jsonlz4 new file mode 100644 index 0000000..151e079 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688872480074.a3e32ef7-7015-42e5-9a40-286883ac698b.health.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688872480088.0f447d18-8eb6-4f16-b0c8-79945ab5c635.main.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688872480088.0f447d18-8eb6-4f16-b0c8-79945ab5c635.main.jsonlz4 new file mode 100644 index 0000000..f56fc97 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688872480088.0f447d18-8eb6-4f16-b0c8-79945ab5c635.main.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688872767903.6b93923e-c4d6-4d04-96eb-87d54f0c4576.event.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688872767903.6b93923e-c4d6-4d04-96eb-87d54f0c4576.event.jsonlz4 new file mode 100644 index 0000000..5755b7f Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688872767903.6b93923e-c4d6-4d04-96eb-87d54f0c4576.event.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688872767912.a254431f-c379-41ed-b7d1-78cf232e01f8.main.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688872767912.a254431f-c379-41ed-b7d1-78cf232e01f8.main.jsonlz4 new file mode 100644 index 0000000..c8ad2db Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688872767912.a254431f-c379-41ed-b7d1-78cf232e01f8.main.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688872828126.e7d03c29-1e84-4904-b9eb-a5613993900f.main.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688872828126.e7d03c29-1e84-4904-b9eb-a5613993900f.main.jsonlz4 new file mode 100644 index 0000000..f7a0f51 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688872828126.e7d03c29-1e84-4904-b9eb-a5613993900f.main.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688873238584.f019e30c-558a-4a2b-bf95-cffd17b2aa50.event.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688873238584.f019e30c-558a-4a2b-bf95-cffd17b2aa50.event.jsonlz4 new file mode 100644 index 0000000..a487d02 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688873238584.f019e30c-558a-4a2b-bf95-cffd17b2aa50.event.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688873238593.17d7d80b-f448-4b1f-87da-e8a725511f5b.main.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688873238593.17d7d80b-f448-4b1f-87da-e8a725511f5b.main.jsonlz4 new file mode 100644 index 0000000..1fdecfa Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688873238593.17d7d80b-f448-4b1f-87da-e8a725511f5b.main.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688873648447.edeb0b99-4f5d-4b72-8e47-3395a1359b99.event.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688873648447.edeb0b99-4f5d-4b72-8e47-3395a1359b99.event.jsonlz4 new file mode 100644 index 0000000..7aaa6ef Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688873648447.edeb0b99-4f5d-4b72-8e47-3395a1359b99.event.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688873648454.23a56252-38c9-41b5-8974-a60b9630e847.main.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688873648454.23a56252-38c9-41b5-8974-a60b9630e847.main.jsonlz4 new file mode 100644 index 0000000..8b50125 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688873648454.23a56252-38c9-41b5-8974-a60b9630e847.main.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688873704565.0e8c210a-32e2-4b08-a2f6-dc3a043f39d7.health.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688873704565.0e8c210a-32e2-4b08-a2f6-dc3a043f39d7.health.jsonlz4 new file mode 100644 index 0000000..a0ff279 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688873704565.0e8c210a-32e2-4b08-a2f6-dc3a043f39d7.health.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688873704585.f85e4bd0-e999-4a44-9bfa-857b58fbf7e4.event.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688873704585.f85e4bd0-e999-4a44-9bfa-857b58fbf7e4.event.jsonlz4 new file mode 100644 index 0000000..e853239 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688873704585.f85e4bd0-e999-4a44-9bfa-857b58fbf7e4.event.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688873704587.8365fa45-0bb2-4179-8e6f-a1145093f4ad.health.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688873704587.8365fa45-0bb2-4179-8e6f-a1145093f4ad.health.jsonlz4 new file mode 100644 index 0000000..f334832 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688873704587.8365fa45-0bb2-4179-8e6f-a1145093f4ad.health.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688873704598.06af6db7-1aa0-478a-8910-2bfe6d2503f0.main.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688873704598.06af6db7-1aa0-478a-8910-2bfe6d2503f0.main.jsonlz4 new file mode 100644 index 0000000..5a3c677 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688873704598.06af6db7-1aa0-478a-8910-2bfe6d2503f0.main.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688874748905.be6f8f30-ccab-4285-8b1d-4ac1dc1e4825.event.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688874748905.be6f8f30-ccab-4285-8b1d-4ac1dc1e4825.event.jsonlz4 new file mode 100644 index 0000000..e338215 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688874748905.be6f8f30-ccab-4285-8b1d-4ac1dc1e4825.event.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688874748913.a128a442-1f29-4fe4-ac27-f3147efbe898.main.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688874748913.a128a442-1f29-4fe4-ac27-f3147efbe898.main.jsonlz4 new file mode 100644 index 0000000..715a12e Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688874748913.a128a442-1f29-4fe4-ac27-f3147efbe898.main.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688876485737.27a75fb0-680c-47c7-9d28-3659d493f9be.main.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688876485737.27a75fb0-680c-47c7-9d28-3659d493f9be.main.jsonlz4 new file mode 100644 index 0000000..7a5f584 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688876485737.27a75fb0-680c-47c7-9d28-3659d493f9be.main.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688876865626.66624200-c698-4a21-b282-0dace7370570.event.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688876865626.66624200-c698-4a21-b282-0dace7370570.event.jsonlz4 new file mode 100644 index 0000000..274d6d0 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688876865626.66624200-c698-4a21-b282-0dace7370570.event.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688876865639.2e6b3603-a58c-4949-8389-aed77b697061.main.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688876865639.2e6b3603-a58c-4949-8389-aed77b697061.main.jsonlz4 new file mode 100644 index 0000000..feb1251 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688876865639.2e6b3603-a58c-4949-8389-aed77b697061.main.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688876889510.a592de08-c7df-4928-8d84-982a1220ab43.event.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688876889510.a592de08-c7df-4928-8d84-982a1220ab43.event.jsonlz4 new file mode 100644 index 0000000..13db498 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688876889510.a592de08-c7df-4928-8d84-982a1220ab43.event.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688876889514.08f350dc-a74b-4d8a-a8d2-62901f931359.main.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688876889514.08f350dc-a74b-4d8a-a8d2-62901f931359.main.jsonlz4 new file mode 100644 index 0000000..45a8c70 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688876889514.08f350dc-a74b-4d8a-a8d2-62901f931359.main.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688876899372.538236ab-91c9-4c20-9fd3-c7a1d339fbac.event.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688876899372.538236ab-91c9-4c20-9fd3-c7a1d339fbac.event.jsonlz4 new file mode 100644 index 0000000..2cdc9cf Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688876899372.538236ab-91c9-4c20-9fd3-c7a1d339fbac.event.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688876899375.4110d09d-6717-4940-8156-09daf41f984c.main.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688876899375.4110d09d-6717-4940-8156-09daf41f984c.main.jsonlz4 new file mode 100644 index 0000000..8b52819 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688876899375.4110d09d-6717-4940-8156-09daf41f984c.main.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688876975027.6e4d0307-16de-4959-b97e-954cd992c6b8.event.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688876975027.6e4d0307-16de-4959-b97e-954cd992c6b8.event.jsonlz4 new file mode 100644 index 0000000..bfd7757 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688876975027.6e4d0307-16de-4959-b97e-954cd992c6b8.event.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688876975032.4eb799fb-edb5-4adb-86e9-3615aaa84a0c.main.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688876975032.4eb799fb-edb5-4adb-86e9-3615aaa84a0c.main.jsonlz4 new file mode 100644 index 0000000..38930d2 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688876975032.4eb799fb-edb5-4adb-86e9-3615aaa84a0c.main.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688877296043.1e01e9db-7cc1-43ba-ba2d-69a8ccceb29e.event.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688877296043.1e01e9db-7cc1-43ba-ba2d-69a8ccceb29e.event.jsonlz4 new file mode 100644 index 0000000..a6f82e3 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688877296043.1e01e9db-7cc1-43ba-ba2d-69a8ccceb29e.event.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688877296051.b853c27a-f461-49e8-b1ce-89b65dfea2bf.main.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688877296051.b853c27a-f461-49e8-b1ce-89b65dfea2bf.main.jsonlz4 new file mode 100644 index 0000000..9e8c84a Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688877296051.b853c27a-f461-49e8-b1ce-89b65dfea2bf.main.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688877328290.de04ba85-a4d0-4bb9-9ffc-4c9c4a677fa2.event.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688877328290.de04ba85-a4d0-4bb9-9ffc-4c9c4a677fa2.event.jsonlz4 new file mode 100644 index 0000000..82ed356 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688877328290.de04ba85-a4d0-4bb9-9ffc-4c9c4a677fa2.event.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688877328295.491fef7d-3580-483f-ace2-a1c3ec9cd8f0.main.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688877328295.491fef7d-3580-483f-ace2-a1c3ec9cd8f0.main.jsonlz4 new file mode 100644 index 0000000..6c410bc Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688877328295.491fef7d-3580-483f-ace2-a1c3ec9cd8f0.main.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688880972415.566b66dc-ed83-46d0-894b-30e06b023dda.main.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688880972415.566b66dc-ed83-46d0-894b-30e06b023dda.main.jsonlz4 new file mode 100644 index 0000000..b330efd Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688880972415.566b66dc-ed83-46d0-894b-30e06b023dda.main.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688880982989.51237124-7d5d-4b0c-af5d-fe13280c2362.deletion-request.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688880982989.51237124-7d5d-4b0c-af5d-fe13280c2362.deletion-request.jsonlz4 new file mode 100644 index 0000000..d59db54 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688880982989.51237124-7d5d-4b0c-af5d-fe13280c2362.deletion-request.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688880988501.5fe33e42-f53c-4d02-b012-449980767d92.event.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688880988501.5fe33e42-f53c-4d02-b012-449980767d92.event.jsonlz4 new file mode 100644 index 0000000..ce48a60 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688880988501.5fe33e42-f53c-4d02-b012-449980767d92.event.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688881256751.512398d2-c828-47f2-9ea4-b0ebaf7e728c.event.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688881256751.512398d2-c828-47f2-9ea4-b0ebaf7e728c.event.jsonlz4 new file mode 100644 index 0000000..f2c0a3e Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688881256751.512398d2-c828-47f2-9ea4-b0ebaf7e728c.event.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688881256759.2532be43-8f4e-4307-b06f-7fcce8605044.main.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688881256759.2532be43-8f4e-4307-b06f-7fcce8605044.main.jsonlz4 new file mode 100644 index 0000000..68bb244 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688881256759.2532be43-8f4e-4307-b06f-7fcce8605044.main.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688881572287.98916156-4806-49bc-8d1d-6ca09ba8e569.event.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688881572287.98916156-4806-49bc-8d1d-6ca09ba8e569.event.jsonlz4 new file mode 100644 index 0000000..e0cb41d Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688881572287.98916156-4806-49bc-8d1d-6ca09ba8e569.event.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688881572294.e8742bd6-1722-4698-909e-7bc7617ba3c5.main.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688881572294.e8742bd6-1722-4698-909e-7bc7617ba3c5.main.jsonlz4 new file mode 100644 index 0000000..6481c8c Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688881572294.e8742bd6-1722-4698-909e-7bc7617ba3c5.main.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688885232517.c3ba22f1-4242-4fbb-a0b3-745a732b00f9.event.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688885232517.c3ba22f1-4242-4fbb-a0b3-745a732b00f9.event.jsonlz4 new file mode 100644 index 0000000..4bce3b2 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688885232517.c3ba22f1-4242-4fbb-a0b3-745a732b00f9.event.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688886486742.bbfdb9a5-0d16-4278-9c9f-a484ba52a6e9.event.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688886486742.bbfdb9a5-0d16-4278-9c9f-a484ba52a6e9.event.jsonlz4 new file mode 100644 index 0000000..537682c Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688886486742.bbfdb9a5-0d16-4278-9c9f-a484ba52a6e9.event.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688886486750.efd7bf54-c6b6-44aa-9c8b-2a0f54ba2435.main.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688886486750.efd7bf54-c6b6-44aa-9c8b-2a0f54ba2435.main.jsonlz4 new file mode 100644 index 0000000..189044a Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688886486750.efd7bf54-c6b6-44aa-9c8b-2a0f54ba2435.main.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688886948078.48f3df79-710a-4dd7-8453-78e08f79acb0.event.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688886948078.48f3df79-710a-4dd7-8453-78e08f79acb0.event.jsonlz4 new file mode 100644 index 0000000..256c113 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688886948078.48f3df79-710a-4dd7-8453-78e08f79acb0.event.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688886948084.4650d2be-ea83-49e1-be15-24cf04907d92.main.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688886948084.4650d2be-ea83-49e1-be15-24cf04907d92.main.jsonlz4 new file mode 100644 index 0000000..6272fde Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688886948084.4650d2be-ea83-49e1-be15-24cf04907d92.main.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688888455682.f70cc7e2-88e8-4bbc-8b11-c37cc9a37653.event.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688888455682.f70cc7e2-88e8-4bbc-8b11-c37cc9a37653.event.jsonlz4 new file mode 100644 index 0000000..43747ef Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688888455682.f70cc7e2-88e8-4bbc-8b11-c37cc9a37653.event.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688888455690.04244043-b360-4101-be13-e286de0c8067.main.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688888455690.04244043-b360-4101-be13-e286de0c8067.main.jsonlz4 new file mode 100644 index 0000000..9f42de8 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688888455690.04244043-b360-4101-be13-e286de0c8067.main.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688888629950.3369c3ba-84ee-4d0d-b18a-64f84c45b146.event.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688888629950.3369c3ba-84ee-4d0d-b18a-64f84c45b146.event.jsonlz4 new file mode 100644 index 0000000..bae5d21 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688888629950.3369c3ba-84ee-4d0d-b18a-64f84c45b146.event.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688888629957.142b7166-6852-4bba-8e8b-b22341e27535.main.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688888629957.142b7166-6852-4bba-8e8b-b22341e27535.main.jsonlz4 new file mode 100644 index 0000000..21e7bb4 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688888629957.142b7166-6852-4bba-8e8b-b22341e27535.main.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688890139065.c59458d0-bf6d-4f61-90d8-f387d46443b1.event.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688890139065.c59458d0-bf6d-4f61-90d8-f387d46443b1.event.jsonlz4 new file mode 100644 index 0000000..8b547c3 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688890139065.c59458d0-bf6d-4f61-90d8-f387d46443b1.event.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688890139074.594f8a54-9099-4c81-b482-5dd64861c99b.main.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688890139074.594f8a54-9099-4c81-b482-5dd64861c99b.main.jsonlz4 new file mode 100644 index 0000000..15166ce Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688890139074.594f8a54-9099-4c81-b482-5dd64861c99b.main.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688890239452.3c169549-9ac1-4673-9d95-8fded72d0c68.event.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688890239452.3c169549-9ac1-4673-9d95-8fded72d0c68.event.jsonlz4 new file mode 100644 index 0000000..bd5ba17 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688890239452.3c169549-9ac1-4673-9d95-8fded72d0c68.event.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688890239457.6aceb734-e4a8-402d-8b4f-b95b90bd8f9e.main.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688890239457.6aceb734-e4a8-402d-8b4f-b95b90bd8f9e.main.jsonlz4 new file mode 100644 index 0000000..2e631fc Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688890239457.6aceb734-e4a8-402d-8b4f-b95b90bd8f9e.main.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688890491024.293e8ca4-e5e4-420f-890d-57950c994fb6.event.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688890491024.293e8ca4-e5e4-420f-890d-57950c994fb6.event.jsonlz4 new file mode 100644 index 0000000..8a4cff7 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688890491024.293e8ca4-e5e4-420f-890d-57950c994fb6.event.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688890491034.79c6c25e-d08c-4965-afc6-c7e990861e35.main.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688890491034.79c6c25e-d08c-4965-afc6-c7e990861e35.main.jsonlz4 new file mode 100644 index 0000000..7524f27 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688890491034.79c6c25e-d08c-4965-afc6-c7e990861e35.main.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688890894200.6d07dce7-1bb3-49e7-b368-8dc4206c2540.event.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688890894200.6d07dce7-1bb3-49e7-b368-8dc4206c2540.event.jsonlz4 new file mode 100644 index 0000000..3cb3cfe Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688890894200.6d07dce7-1bb3-49e7-b368-8dc4206c2540.event.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688890894207.3c2004ed-8768-47d4-a8f1-4f2e2ca1aafc.main.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688890894207.3c2004ed-8768-47d4-a8f1-4f2e2ca1aafc.main.jsonlz4 new file mode 100644 index 0000000..8e87875 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688890894207.3c2004ed-8768-47d4-a8f1-4f2e2ca1aafc.main.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688895212736.fe63ffc8-9565-42f8-97ae-1dc9592cdd3e.event.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688895212736.fe63ffc8-9565-42f8-97ae-1dc9592cdd3e.event.jsonlz4 new file mode 100644 index 0000000..b67c2b1 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688895212736.fe63ffc8-9565-42f8-97ae-1dc9592cdd3e.event.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688903919999.a9da997b-898c-47f2-a22d-496191bb757f.event.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688903919999.a9da997b-898c-47f2-a22d-496191bb757f.event.jsonlz4 new file mode 100644 index 0000000..54c23e5 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688903919999.a9da997b-898c-47f2-a22d-496191bb757f.event.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688903920007.c1bfa198-2b4c-4eca-8e8c-99b5a087f298.main.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688903920007.c1bfa198-2b4c-4eca-8e8c-99b5a087f298.main.jsonlz4 new file mode 100644 index 0000000..0cbc280 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688903920007.c1bfa198-2b4c-4eca-8e8c-99b5a087f298.main.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688904461476.c435b917-c79d-4957-9116-2edb68c9fda4.event.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688904461476.c435b917-c79d-4957-9116-2edb68c9fda4.event.jsonlz4 new file mode 100644 index 0000000..97ee0ad Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688904461476.c435b917-c79d-4957-9116-2edb68c9fda4.event.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688904461484.0edf2cb0-1dbe-46b2-a986-25d1bd090f40.main.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688904461484.0edf2cb0-1dbe-46b2-a986-25d1bd090f40.main.jsonlz4 new file mode 100644 index 0000000..0b80b17 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688904461484.0edf2cb0-1dbe-46b2-a986-25d1bd090f40.main.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688905485575.a63e7335-8f2c-4be8-a7d7-290bc92dd038.event.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688905485575.a63e7335-8f2c-4be8-a7d7-290bc92dd038.event.jsonlz4 new file mode 100644 index 0000000..f3652be Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688905485575.a63e7335-8f2c-4be8-a7d7-290bc92dd038.event.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688905485583.64e7752e-1a97-426e-85de-d5180ad9b95d.main.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688905485583.64e7752e-1a97-426e-85de-d5180ad9b95d.main.jsonlz4 new file mode 100644 index 0000000..99bdeea Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688905485583.64e7752e-1a97-426e-85de-d5180ad9b95d.main.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688921781188.832f3a90-179f-4bfc-b1b5-cebc9f2558b6.event.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688921781188.832f3a90-179f-4bfc-b1b5-cebc9f2558b6.event.jsonlz4 new file mode 100644 index 0000000..56ba96f Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688921781188.832f3a90-179f-4bfc-b1b5-cebc9f2558b6.event.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688921781197.b5ac3ac7-5304-4d53-b5b3-2019cc34e81f.main.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688921781197.b5ac3ac7-5304-4d53-b5b3-2019cc34e81f.main.jsonlz4 new file mode 100644 index 0000000..814a204 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688921781197.b5ac3ac7-5304-4d53-b5b3-2019cc34e81f.main.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688925771214.bed1c898-cc0f-4f66-a41f-371fa88549c2.event.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688925771214.bed1c898-cc0f-4f66-a41f-371fa88549c2.event.jsonlz4 new file mode 100644 index 0000000..69b62d3 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688925771214.bed1c898-cc0f-4f66-a41f-371fa88549c2.event.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688925771223.d7950c51-1275-4259-828c-ae6d6eb9a60d.main.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688925771223.d7950c51-1275-4259-828c-ae6d6eb9a60d.main.jsonlz4 new file mode 100644 index 0000000..1da7c1e Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688925771223.d7950c51-1275-4259-828c-ae6d6eb9a60d.main.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688926594800.42183c93-851a-4398-bea0-4cc6826bb144.event.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688926594800.42183c93-851a-4398-bea0-4cc6826bb144.event.jsonlz4 new file mode 100644 index 0000000..7d9e90b Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688926594800.42183c93-851a-4398-bea0-4cc6826bb144.event.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688926594807.1f148107-918c-4504-9602-0b4f36026cd9.main.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688926594807.1f148107-918c-4504-9602-0b4f36026cd9.main.jsonlz4 new file mode 100644 index 0000000..54f0424 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688926594807.1f148107-918c-4504-9602-0b4f36026cd9.main.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688926665033.bd5578a8-5407-4596-aba9-72134ca0d3e9.event.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688926665033.bd5578a8-5407-4596-aba9-72134ca0d3e9.event.jsonlz4 new file mode 100644 index 0000000..77b4c16 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688926665033.bd5578a8-5407-4596-aba9-72134ca0d3e9.event.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688926665037.74e979dc-de73-4558-8b89-99ea4591d07d.main.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688926665037.74e979dc-de73-4558-8b89-99ea4591d07d.main.jsonlz4 new file mode 100644 index 0000000..2d00554 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688926665037.74e979dc-de73-4558-8b89-99ea4591d07d.main.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688927669316.8ea65c6f-a48f-4218-a174-437f5f55c5c1.event.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688927669316.8ea65c6f-a48f-4218-a174-437f5f55c5c1.event.jsonlz4 new file mode 100644 index 0000000..d938009 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688927669316.8ea65c6f-a48f-4218-a174-437f5f55c5c1.event.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688927669322.52044b67-5c6c-4997-9c6a-852ded7dc770.main.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688927669322.52044b67-5c6c-4997-9c6a-852ded7dc770.main.jsonlz4 new file mode 100644 index 0000000..9525b62 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688927669322.52044b67-5c6c-4997-9c6a-852ded7dc770.main.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688928159419.8177b002-b6eb-4246-a0b4-d0fa63d2d15c.event.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688928159419.8177b002-b6eb-4246-a0b4-d0fa63d2d15c.event.jsonlz4 new file mode 100644 index 0000000..42333aa Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688928159419.8177b002-b6eb-4246-a0b4-d0fa63d2d15c.event.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688928159424.910fb343-5a70-417a-99ee-67ff987f29e1.main.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688928159424.910fb343-5a70-417a-99ee-67ff987f29e1.main.jsonlz4 new file mode 100644 index 0000000..2edc309 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688928159424.910fb343-5a70-417a-99ee-67ff987f29e1.main.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688929966529.1c604ed0-4081-466a-a258-3cc554c6efd4.event.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688929966529.1c604ed0-4081-466a-a258-3cc554c6efd4.event.jsonlz4 new file mode 100644 index 0000000..e73a19d Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688929966529.1c604ed0-4081-466a-a258-3cc554c6efd4.event.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688929966536.3916a309-55a4-4e34-99cf-ad9854ffb1bc.main.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688929966536.3916a309-55a4-4e34-99cf-ad9854ffb1bc.main.jsonlz4 new file mode 100644 index 0000000..404b98a Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688929966536.3916a309-55a4-4e34-99cf-ad9854ffb1bc.main.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688933838898.f83fb353-e327-4609-8f7c-68e0c4ce329c.event.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688933838898.f83fb353-e327-4609-8f7c-68e0c4ce329c.event.jsonlz4 new file mode 100644 index 0000000..62451c6 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688933838898.f83fb353-e327-4609-8f7c-68e0c4ce329c.event.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688937707296.394b69a4-c0b0-45cc-9637-dde3b10fd101.event.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688937707296.394b69a4-c0b0-45cc-9637-dde3b10fd101.event.jsonlz4 new file mode 100644 index 0000000..955dee7 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688937707296.394b69a4-c0b0-45cc-9637-dde3b10fd101.event.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688937707305.ec454de1-3d3e-4e7e-a7c2-ce863d56c301.main.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688937707305.ec454de1-3d3e-4e7e-a7c2-ce863d56c301.main.jsonlz4 new file mode 100644 index 0000000..477e4ff Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688937707305.ec454de1-3d3e-4e7e-a7c2-ce863d56c301.main.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688938762523.c5c74857-1ef5-4aa2-a0e2-fa224c392510.event.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688938762523.c5c74857-1ef5-4aa2-a0e2-fa224c392510.event.jsonlz4 new file mode 100644 index 0000000..45b34bd Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688938762523.c5c74857-1ef5-4aa2-a0e2-fa224c392510.event.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688938762532.1ab20728-69d2-4209-be08-6a02b5ffadb5.main.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688938762532.1ab20728-69d2-4209-be08-6a02b5ffadb5.main.jsonlz4 new file mode 100644 index 0000000..9717ba5 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688938762532.1ab20728-69d2-4209-be08-6a02b5ffadb5.main.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688943779786.ac74e01f-19c1-4ba8-9031-0826db9467ea.main.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688943779786.ac74e01f-19c1-4ba8-9031-0826db9467ea.main.jsonlz4 new file mode 100644 index 0000000..ac7fb3d Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688943779786.ac74e01f-19c1-4ba8-9031-0826db9467ea.main.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688944371152.3f87ee12-89b3-4289-a2f2-c4609064e99f.event.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688944371152.3f87ee12-89b3-4289-a2f2-c4609064e99f.event.jsonlz4 new file mode 100644 index 0000000..a71fb37 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688944371152.3f87ee12-89b3-4289-a2f2-c4609064e99f.event.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688944371163.5e4eb90c-c5e2-498a-b8f4-4163c90fa710.main.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688944371163.5e4eb90c-c5e2-498a-b8f4-4163c90fa710.main.jsonlz4 new file mode 100644 index 0000000..3fcf3fc Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688944371163.5e4eb90c-c5e2-498a-b8f4-4163c90fa710.main.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688945026514.011b6590-8e0a-4e9c-9d4e-3567022f34d8.event.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688945026514.011b6590-8e0a-4e9c-9d4e-3567022f34d8.event.jsonlz4 new file mode 100644 index 0000000..fdb88c1 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688945026514.011b6590-8e0a-4e9c-9d4e-3567022f34d8.event.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688945026521.f0ffcfda-0162-4fe1-a3c3-c4c6be05237b.main.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688945026521.f0ffcfda-0162-4fe1-a3c3-c4c6be05237b.main.jsonlz4 new file mode 100644 index 0000000..dddd9b9 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1688945026521.f0ffcfda-0162-4fe1-a3c3-c4c6be05237b.main.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1689007708286.83f7c3b6-d212-4647-85c2-685fd58fd156.event.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1689007708286.83f7c3b6-d212-4647-85c2-685fd58fd156.event.jsonlz4 new file mode 100644 index 0000000..7675bf7 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1689007708286.83f7c3b6-d212-4647-85c2-685fd58fd156.event.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1689007708295.39817e43-20ae-4c0c-b1d2-bb3fb90572fc.main.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1689007708295.39817e43-20ae-4c0c-b1d2-bb3fb90572fc.main.jsonlz4 new file mode 100644 index 0000000..8ac30cc Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1689007708295.39817e43-20ae-4c0c-b1d2-bb3fb90572fc.main.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1689010420608.05149880-4dc4-4d8b-bf50-5c9cb978916e.event.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1689010420608.05149880-4dc4-4d8b-bf50-5c9cb978916e.event.jsonlz4 new file mode 100644 index 0000000..8a1f28c Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1689010420608.05149880-4dc4-4d8b-bf50-5c9cb978916e.event.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1689010420615.efb82c2a-b031-4f97-9622-f1897e1615c3.main.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1689010420615.efb82c2a-b031-4f97-9622-f1897e1615c3.main.jsonlz4 new file mode 100644 index 0000000..fe5a9d8 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1689010420615.efb82c2a-b031-4f97-9622-f1897e1615c3.main.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1689010821774.c361e77a-67c9-4cf6-990f-24150c81ba83.event.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1689010821774.c361e77a-67c9-4cf6-990f-24150c81ba83.event.jsonlz4 new file mode 100644 index 0000000..29c55b5 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1689010821774.c361e77a-67c9-4cf6-990f-24150c81ba83.event.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1689010821780.62498884-d8f3-49e7-b776-d2fb594e7fc7.main.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1689010821780.62498884-d8f3-49e7-b776-d2fb594e7fc7.main.jsonlz4 new file mode 100644 index 0000000..e50fbcf Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1689010821780.62498884-d8f3-49e7-b776-d2fb594e7fc7.main.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1689010964553.9a78f0ba-cc8d-4fdb-a4e8-8fcae1e3d68f.event.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1689010964553.9a78f0ba-cc8d-4fdb-a4e8-8fcae1e3d68f.event.jsonlz4 new file mode 100644 index 0000000..4f17dd1 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1689010964553.9a78f0ba-cc8d-4fdb-a4e8-8fcae1e3d68f.event.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1689010964558.0e1f707c-cb53-4834-9c4a-59f749d953bf.main.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1689010964558.0e1f707c-cb53-4834-9c4a-59f749d953bf.main.jsonlz4 new file mode 100644 index 0000000..34f98b9 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1689010964558.0e1f707c-cb53-4834-9c4a-59f749d953bf.main.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1689012708065.e8be063c-5532-4fec-bd40-b50a709e0bd7.event.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1689012708065.e8be063c-5532-4fec-bd40-b50a709e0bd7.event.jsonlz4 new file mode 100644 index 0000000..f0193ad Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1689012708065.e8be063c-5532-4fec-bd40-b50a709e0bd7.event.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1689012708072.ceaf6986-d80c-42c0-9039-b0caca59e519.main.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1689012708072.ceaf6986-d80c-42c0-9039-b0caca59e519.main.jsonlz4 new file mode 100644 index 0000000..35c567e Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1689012708072.ceaf6986-d80c-42c0-9039-b0caca59e519.main.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1689013094003.afa2f948-1755-400e-bc3b-675a4f7c0baf.event.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1689013094003.afa2f948-1755-400e-bc3b-675a4f7c0baf.event.jsonlz4 new file mode 100644 index 0000000..a743c34 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1689013094003.afa2f948-1755-400e-bc3b-675a4f7c0baf.event.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1689013094007.423ebc8f-e22a-4d52-972b-18588fc88892.main.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1689013094007.423ebc8f-e22a-4d52-972b-18588fc88892.main.jsonlz4 new file mode 100644 index 0000000..251d731 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1689013094007.423ebc8f-e22a-4d52-972b-18588fc88892.main.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1689013724963.e1ee231a-f311-4a41-b5a0-42fb55c8c5c1.event.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1689013724963.e1ee231a-f311-4a41-b5a0-42fb55c8c5c1.event.jsonlz4 new file mode 100644 index 0000000..0c32486 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1689013724963.e1ee231a-f311-4a41-b5a0-42fb55c8c5c1.event.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1689013724972.d094a57f-5fa0-4017-8c99-19be4732a5d4.main.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1689013724972.d094a57f-5fa0-4017-8c99-19be4732a5d4.main.jsonlz4 new file mode 100644 index 0000000..03f4733 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1689013724972.d094a57f-5fa0-4017-8c99-19be4732a5d4.main.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1689014008896.3a0992f3-32d2-41b0-a36d-fb30a7a399c4.event.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1689014008896.3a0992f3-32d2-41b0-a36d-fb30a7a399c4.event.jsonlz4 new file mode 100644 index 0000000..e3b80f1 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1689014008896.3a0992f3-32d2-41b0-a36d-fb30a7a399c4.event.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1689014008904.bca65d2a-dbd8-4348-8ea4-695d7028faf0.main.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1689014008904.bca65d2a-dbd8-4348-8ea4-695d7028faf0.main.jsonlz4 new file mode 100644 index 0000000..1d5bbfc Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1689014008904.bca65d2a-dbd8-4348-8ea4-695d7028faf0.main.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1689014682032.807d5694-e094-414b-a45b-116134d70715.event.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1689014682032.807d5694-e094-414b-a45b-116134d70715.event.jsonlz4 new file mode 100644 index 0000000..6a1b5c7 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1689014682032.807d5694-e094-414b-a45b-116134d70715.event.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1689014682044.42cbe472-63e9-4a91-a604-0bf94a4e2633.main.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1689014682044.42cbe472-63e9-4a91-a604-0bf94a4e2633.main.jsonlz4 new file mode 100644 index 0000000..303137f Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1689014682044.42cbe472-63e9-4a91-a604-0bf94a4e2633.main.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1689015311825.7266b254-1e90-4994-b9b9-399815010aac.event.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1689015311825.7266b254-1e90-4994-b9b9-399815010aac.event.jsonlz4 new file mode 100644 index 0000000..1fd6a55 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1689015311825.7266b254-1e90-4994-b9b9-399815010aac.event.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1689015311832.c9deabac-5617-4dd3-85c9-bcbbfe344c6b.main.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1689015311832.c9deabac-5617-4dd3-85c9-bcbbfe344c6b.main.jsonlz4 new file mode 100644 index 0000000..57db4d6 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1689015311832.c9deabac-5617-4dd3-85c9-bcbbfe344c6b.main.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1689015517599.3a683be0-28a3-4b22-ad8f-773177e95f0b.event.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1689015517599.3a683be0-28a3-4b22-ad8f-773177e95f0b.event.jsonlz4 new file mode 100644 index 0000000..17a76a9 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1689015517599.3a683be0-28a3-4b22-ad8f-773177e95f0b.event.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1689015517605.fc459405-1f77-4dbc-9dd2-dfae1d51c4b0.main.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1689015517605.fc459405-1f77-4dbc-9dd2-dfae1d51c4b0.main.jsonlz4 new file mode 100644 index 0000000..dd3c79b Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1689015517605.fc459405-1f77-4dbc-9dd2-dfae1d51c4b0.main.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1689016834561.b7165e21-5d40-4c16-8810-f76d5213121e.event.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1689016834561.b7165e21-5d40-4c16-8810-f76d5213121e.event.jsonlz4 new file mode 100644 index 0000000..9c45f2f Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1689016834561.b7165e21-5d40-4c16-8810-f76d5213121e.event.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1689016834571.92879755-01e1-45a7-a934-aab349f9be61.main.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1689016834571.92879755-01e1-45a7-a934-aab349f9be61.main.jsonlz4 new file mode 100644 index 0000000..e5f3d87 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1689016834571.92879755-01e1-45a7-a934-aab349f9be61.main.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1689021442713.e6370b8c-f48e-4f67-87b2-eb9305e0cddf.event.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1689021442713.e6370b8c-f48e-4f67-87b2-eb9305e0cddf.event.jsonlz4 new file mode 100644 index 0000000..e2e52f8 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1689021442713.e6370b8c-f48e-4f67-87b2-eb9305e0cddf.event.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1689021442721.5a5ac4cc-1b5d-4192-a1fa-ae5792c1f038.main.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1689021442721.5a5ac4cc-1b5d-4192-a1fa-ae5792c1f038.main.jsonlz4 new file mode 100644 index 0000000..67ab2c1 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1689021442721.5a5ac4cc-1b5d-4192-a1fa-ae5792c1f038.main.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1689032704611.57bb0db4-b7cc-452d-909d-3b6409509dc5.event.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1689032704611.57bb0db4-b7cc-452d-909d-3b6409509dc5.event.jsonlz4 new file mode 100644 index 0000000..98332f6 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1689032704611.57bb0db4-b7cc-452d-909d-3b6409509dc5.event.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1689032704622.02c3b6ca-1c04-4d5b-a051-01665c3baa70.main.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1689032704622.02c3b6ca-1c04-4d5b-a051-01665c3baa70.main.jsonlz4 new file mode 100644 index 0000000..ab404f7 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1689032704622.02c3b6ca-1c04-4d5b-a051-01665c3baa70.main.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1689035298520.c5abfc6c-f197-41c2-ae51-6c19967ad8ff.event.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1689035298520.c5abfc6c-f197-41c2-ae51-6c19967ad8ff.event.jsonlz4 new file mode 100644 index 0000000..70dbb34 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1689035298520.c5abfc6c-f197-41c2-ae51-6c19967ad8ff.event.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1689035298527.ccbec789-fc01-4a93-8de3-ff79985ea450.main.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1689035298527.ccbec789-fc01-4a93-8de3-ff79985ea450.main.jsonlz4 new file mode 100644 index 0000000..6518688 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1689035298527.ccbec789-fc01-4a93-8de3-ff79985ea450.main.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1689038278989.077cf7a6-5291-459c-968f-e0585df35c25.event.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1689038278989.077cf7a6-5291-459c-968f-e0585df35c25.event.jsonlz4 new file mode 100644 index 0000000..c610d8c Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1689038278989.077cf7a6-5291-459c-968f-e0585df35c25.event.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1689038278998.f2bf8918-d3b4-40d1-8823-3f771122d0a9.main.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1689038278998.f2bf8918-d3b4-40d1-8823-3f771122d0a9.main.jsonlz4 new file mode 100644 index 0000000..0676d9f Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1689038278998.f2bf8918-d3b4-40d1-8823-3f771122d0a9.main.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1689038675691.bd4b38fc-d602-4d23-828b-2aaeffa343bc.event.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1689038675691.bd4b38fc-d602-4d23-828b-2aaeffa343bc.event.jsonlz4 new file mode 100644 index 0000000..b53e6ec Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1689038675691.bd4b38fc-d602-4d23-828b-2aaeffa343bc.event.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1689038675699.84135ecb-2622-43b2-a76b-ffdc44742409.main.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1689038675699.84135ecb-2622-43b2-a76b-ffdc44742409.main.jsonlz4 new file mode 100644 index 0000000..c401f33 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1689038675699.84135ecb-2622-43b2-a76b-ffdc44742409.main.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1689040249888.e88ebef8-b110-4796-9a9d-1851785ba417.event.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1689040249888.e88ebef8-b110-4796-9a9d-1851785ba417.event.jsonlz4 new file mode 100644 index 0000000..a16f696 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1689040249888.e88ebef8-b110-4796-9a9d-1851785ba417.event.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1689040249896.fffce114-633c-4b6d-9b07-bc192c1986e5.main.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1689040249896.fffce114-633c-4b6d-9b07-bc192c1986e5.main.jsonlz4 new file mode 100644 index 0000000..c99f195 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1689040249896.fffce114-633c-4b6d-9b07-bc192c1986e5.main.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1689042912557.4fdefc83-7434-4cec-8398-05a2408c6d13.event.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1689042912557.4fdefc83-7434-4cec-8398-05a2408c6d13.event.jsonlz4 new file mode 100644 index 0000000..a82594f Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1689042912557.4fdefc83-7434-4cec-8398-05a2408c6d13.event.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1689042912564.092570ff-8e02-44e9-b3f1-0212b8e53b04.main.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1689042912564.092570ff-8e02-44e9-b3f1-0212b8e53b04.main.jsonlz4 new file mode 100644 index 0000000..4b37826 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1689042912564.092570ff-8e02-44e9-b3f1-0212b8e53b04.main.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1689044361555.84240a97-15a1-4fdd-b255-1624275f906b.event.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1689044361555.84240a97-15a1-4fdd-b255-1624275f906b.event.jsonlz4 new file mode 100644 index 0000000..8d375cc Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1689044361555.84240a97-15a1-4fdd-b255-1624275f906b.event.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1689044361562.1957be4e-d628-4433-b8c6-c789aa7d3757.main.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1689044361562.1957be4e-d628-4433-b8c6-c789aa7d3757.main.jsonlz4 new file mode 100644 index 0000000..fc15801 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1689044361562.1957be4e-d628-4433-b8c6-c789aa7d3757.main.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1689045090110.f0fd38bb-1393-49d1-9db4-7ac2f24a513c.event.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1689045090110.f0fd38bb-1393-49d1-9db4-7ac2f24a513c.event.jsonlz4 new file mode 100644 index 0000000..3efe250 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1689045090110.f0fd38bb-1393-49d1-9db4-7ac2f24a513c.event.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1689045090117.6fecff2e-7798-4169-a25e-1a2ef71c3d1d.main.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1689045090117.6fecff2e-7798-4169-a25e-1a2ef71c3d1d.main.jsonlz4 new file mode 100644 index 0000000..f2d7ab1 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1689045090117.6fecff2e-7798-4169-a25e-1a2ef71c3d1d.main.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1689046985370.74ff3145-ca60-4315-a851-c95316c83138.event.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1689046985370.74ff3145-ca60-4315-a851-c95316c83138.event.jsonlz4 new file mode 100644 index 0000000..76b5949 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1689046985370.74ff3145-ca60-4315-a851-c95316c83138.event.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1689046985378.ce4ad9e6-1f16-46fe-91e2-46cb5a6166e7.main.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1689046985378.ce4ad9e6-1f16-46fe-91e2-46cb5a6166e7.main.jsonlz4 new file mode 100644 index 0000000..fc21e51 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1689046985378.ce4ad9e6-1f16-46fe-91e2-46cb5a6166e7.main.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1689047277600.a8829965-8963-4114-91ee-650050a66ed4.event.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1689047277600.a8829965-8963-4114-91ee-650050a66ed4.event.jsonlz4 new file mode 100644 index 0000000..dd50a15 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1689047277600.a8829965-8963-4114-91ee-650050a66ed4.event.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1689047277603.d3ecf68b-58fe-4159-bd2d-1d012b5de2ba.main.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1689047277603.d3ecf68b-58fe-4159-bd2d-1d012b5de2ba.main.jsonlz4 new file mode 100644 index 0000000..3fe07c0 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1689047277603.d3ecf68b-58fe-4159-bd2d-1d012b5de2ba.main.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1689050039620.9cda768d-6608-486c-a5e3-6dea53b7cbcc.event.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1689050039620.9cda768d-6608-486c-a5e3-6dea53b7cbcc.event.jsonlz4 new file mode 100644 index 0000000..1a7c03b Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1689050039620.9cda768d-6608-486c-a5e3-6dea53b7cbcc.event.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1689050039625.f8776809-382d-4922-88b8-0d7dac7a10fb.main.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1689050039625.f8776809-382d-4922-88b8-0d7dac7a10fb.main.jsonlz4 new file mode 100644 index 0000000..639007f Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/archived/2023-07/1689050039625.f8776809-382d-4922-88b8-0d7dac7a10fb.main.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/glean/db/data.safe.bin b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/glean/db/data.safe.bin new file mode 100644 index 0000000..13dc9bb Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/glean/db/data.safe.bin differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/session-state.json b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/session-state.json new file mode 100644 index 0000000..6b29cd5 --- /dev/null +++ b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/session-state.json @@ -0,0 +1 @@ +{"sessionId":"5e43e8b3-4e7b-4cf3-84a1-6addbeca81b1","subsessionId":"69820204-9c5e-4194-a597-f27e147bcc61","profileSubsessionCounter":136,"newProfilePingSent":true} \ No newline at end of file diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/state.json b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/state.json new file mode 100644 index 0000000..93dfafd --- /dev/null +++ b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/datareporting/state.json @@ -0,0 +1 @@ +{"clientID":"c0ffeec0-ffee-c0ff-eec0-ffeec0ffeec0"} \ No newline at end of file diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/extension-preferences.json b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/extension-preferences.json new file mode 100644 index 0000000..1f1bd81 --- /dev/null +++ b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/extension-preferences.json @@ -0,0 +1 @@ +{"formautofill@mozilla.org":{"permissions":["internal:svgContextPropertiesAllowed","internal:privateBrowsingAllowed"],"origins":[]},"pictureinpicture@mozilla.org":{"permissions":["internal:svgContextPropertiesAllowed","internal:privateBrowsingAllowed"],"origins":[]},"screenshots@mozilla.org":{"permissions":["internal:svgContextPropertiesAllowed","internal:privateBrowsingAllowed"],"origins":[]},"webcompat@mozilla.org":{"permissions":["internal:svgContextPropertiesAllowed","internal:privateBrowsingAllowed"],"origins":[]},"default-theme@mozilla.org":{"permissions":["internal:svgContextPropertiesAllowed","internal:privateBrowsingAllowed"],"origins":[]},"addons-search-detection@mozilla.com":{"permissions":["internal:svgContextPropertiesAllowed","internal:privateBrowsingAllowed"],"origins":[]},"google@search.mozilla.org":{"permissions":["internal:svgContextPropertiesAllowed","internal:privateBrowsingAllowed"],"origins":[]},"wikipedia@search.mozilla.org":{"permissions":["internal:svgContextPropertiesAllowed","internal:privateBrowsingAllowed"],"origins":[]},"bing@search.mozilla.org":{"permissions":["internal:svgContextPropertiesAllowed","internal:privateBrowsingAllowed"],"origins":[]},"ddg@search.mozilla.org":{"permissions":["internal:svgContextPropertiesAllowed","internal:privateBrowsingAllowed"],"origins":[]},"amazon@search.mozilla.org":{"permissions":["internal:svgContextPropertiesAllowed","internal:privateBrowsingAllowed"],"origins":[]},"ebay@search.mozilla.org":{"permissions":["internal:svgContextPropertiesAllowed","internal:privateBrowsingAllowed"],"origins":[]},"treestyletab@piro.sakura.ne.jp":{"permissions":["bookmarks","tabHide",""],"origins":[""]}} \ No newline at end of file diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/extension-settings.json b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/extension-settings.json new file mode 100644 index 0000000..6612c66 --- /dev/null +++ b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/extension-settings.json @@ -0,0 +1 @@ +{"version":3,"url_overrides":{},"prefs":{"websites.hyperlinkAuditingEnabled":{"initialValue":{},"precedenceList":[{"id":"jid1-MnnxcxisBPnSXQ@jetpack","installDate":1688876553508,"value":false,"enabled":true},{"id":"adnauseam@rednoise.org","installDate":1688876485700,"value":false,"enabled":true}]},"network.networkPredictionEnabled":{"initialValue":{},"precedenceList":[{"id":"jid1-MnnxcxisBPnSXQ@jetpack","installDate":1688876553508,"value":false,"enabled":true},{"id":"adnauseam@rednoise.org","installDate":1688876485700,"value":false,"enabled":true}]},"privacy.containers":{"initialValue":{},"precedenceList":[{"id":"treestyletab@piro.sakura.ne.jp","installDate":1688876556351,"value":"treestyletab@piro.sakura.ne.jp","enabled":true},{"id":"{60f82f00-9ad5-4de5-b31c-b16a47c51558}","installDate":1688876544218,"value":"{60f82f00-9ad5-4de5-b31c-b16a47c51558}","enabled":true}]}},"commands":{},"default_search":{"defaultSearch":{"initialValue":"Google","precedenceList":[{"id":"jid1-ZAdIEUB7XOzOJw@jetpack","installDate":1688876547898,"value":"DuckDuckGo","enabled":true}]}}} \ No newline at end of file diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/extensions.json b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/extensions.json new file mode 100644 index 0000000..3cfd731 --- /dev/null +++ b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/extensions.json @@ -0,0 +1 @@ +{"schemaVersion":35,"addons":[{"id":"formautofill@mozilla.org","syncGUID":"{c6b1a235-dc30-4a4a-a795-7d89e299cdb0}","version":"1.0.1","type":"extension","loader":null,"updateURL":null,"installOrigins":null,"manifestVersion":2,"optionsURL":null,"optionsType":null,"optionsBrowserStyle":true,"aboutURL":null,"defaultLocale":{"name":"Form Autofill","creator":null,"developers":null,"translators":null,"contributors":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"embedderDisabled":false,"installDate":1688482216000,"updateDate":1688749254000,"applyBackgroundUpdates":1,"path":"/usr/lib/firefox/browser/features/formautofill@mozilla.org.xpi","skinnable":false,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"toolkit@mozilla.org","minVersion":null,"maxVersion":null}],"targetPlatforms":[],"signedDate":null,"seen":true,"dependencies":[],"incognito":"spanning","userPermissions":{"permissions":[],"origins":[]},"optionalPermissions":{"permissions":[],"origins":[]},"icons":{},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":{},"hidden":true,"installTelemetryInfo":null,"recommendationState":null,"rootURI":"jar:file:///usr/lib/firefox/browser/features/formautofill@mozilla.org.xpi!/","location":"app-system-defaults"},{"id":"pictureinpicture@mozilla.org","syncGUID":"{8042556f-e2ed-4a33-a9a5-039bd708b0a6}","version":"1.0.0","type":"extension","loader":null,"updateURL":null,"installOrigins":null,"manifestVersion":2,"optionsURL":null,"optionsType":null,"optionsBrowserStyle":true,"aboutURL":null,"defaultLocale":{"name":"Picture-In-Picture","description":"Fixes for web compatibility with Picture-in-Picture","creator":null,"developers":null,"translators":null,"contributors":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"embedderDisabled":false,"installDate":1688482216000,"updateDate":1688749254000,"applyBackgroundUpdates":1,"path":"/usr/lib/firefox/browser/features/pictureinpicture@mozilla.org.xpi","skinnable":false,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"toolkit@mozilla.org","minVersion":"88.0a1","maxVersion":null}],"targetPlatforms":[],"signedDate":null,"seen":true,"dependencies":[],"incognito":"spanning","userPermissions":{"permissions":[],"origins":[]},"optionalPermissions":{"permissions":[],"origins":[]},"icons":{},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":{},"hidden":true,"installTelemetryInfo":null,"recommendationState":null,"rootURI":"jar:file:///usr/lib/firefox/browser/features/pictureinpicture@mozilla.org.xpi!/","location":"app-system-defaults"},{"id":"screenshots@mozilla.org","syncGUID":"{25ce4aa7-1156-4853-83cd-3afc96499edb}","version":"39.0.1","type":"extension","loader":null,"updateURL":null,"installOrigins":null,"manifestVersion":2,"optionsURL":null,"optionsType":null,"optionsBrowserStyle":true,"aboutURL":null,"defaultLocale":{"name":"Firefox Screenshots","description":"Take clips and screenshots from the Web and save them temporarily or permanently.","creator":"Mozilla ","homepageURL":"https://github.com/mozilla-services/screenshots","developers":null,"translators":null,"contributors":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"embedderDisabled":false,"installDate":1688482216000,"updateDate":1688749254000,"applyBackgroundUpdates":1,"path":"/usr/lib/firefox/browser/features/screenshots@mozilla.org.xpi","skinnable":false,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"toolkit@mozilla.org","minVersion":"57.0a1","maxVersion":null}],"targetPlatforms":[],"signedDate":null,"seen":true,"dependencies":[],"incognito":"spanning","userPermissions":{"permissions":["activeTab","downloads","tabs","storage","notifications","clipboardWrite","contextMenus","mozillaAddons","telemetry"],"origins":["","https://screenshots.firefox.com/","resource://pdf.js/","about:reader*","https://screenshots.firefox.com/*"]},"optionalPermissions":{"permissions":[],"origins":[]},"icons":{},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":{},"hidden":true,"installTelemetryInfo":null,"recommendationState":null,"rootURI":"jar:file:///usr/lib/firefox/browser/features/screenshots@mozilla.org.xpi!/","location":"app-system-defaults"},{"id":"webcompat-reporter@mozilla.org","syncGUID":"{b40d6ed7-babc-4749-a06c-c7ad9852cb09}","version":"1.5.1","type":"extension","loader":null,"updateURL":null,"installOrigins":null,"manifestVersion":2,"optionsURL":null,"optionsType":null,"optionsBrowserStyle":true,"aboutURL":null,"defaultLocale":{"name":"WebCompat Reporter","description":"Report site compatibility issues on webcompat.com","creator":"Thomas Wisniewski ","homepageURL":"https://github.com/mozilla/webcompat-reporter","developers":null,"translators":null,"contributors":null},"visible":true,"active":false,"userDisabled":true,"appDisabled":false,"embedderDisabled":false,"installDate":1688482216000,"updateDate":1688749254000,"applyBackgroundUpdates":1,"path":"/usr/lib/firefox/browser/features/webcompat-reporter@mozilla.org.xpi","skinnable":false,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"toolkit@mozilla.org","minVersion":null,"maxVersion":null}],"targetPlatforms":[],"signedDate":null,"seen":true,"dependencies":[],"incognito":"spanning","userPermissions":{"permissions":["tabs"],"origins":[""]},"optionalPermissions":{"permissions":[],"origins":[]},"icons":{"16":"icons/lightbulb.svg","32":"icons/lightbulb.svg","48":"icons/lightbulb.svg","96":"icons/lightbulb.svg","128":"icons/lightbulb.svg"},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":null,"hidden":true,"installTelemetryInfo":null,"recommendationState":null,"rootURI":"jar:file:///usr/lib/firefox/browser/features/webcompat-reporter@mozilla.org.xpi!/","location":"app-system-defaults"},{"id":"webcompat@mozilla.org","syncGUID":"{91a972cd-ebf1-40c8-8b88-c79038a01fc0}","version":"115.0.0","type":"extension","loader":null,"updateURL":null,"installOrigins":null,"manifestVersion":2,"optionsURL":null,"optionsType":null,"optionsBrowserStyle":true,"aboutURL":null,"defaultLocale":{"name":"Web Compatibility Interventions","description":"Urgent post-release fixes for web compatibility.","creator":null,"developers":null,"translators":null,"contributors":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"embedderDisabled":false,"installDate":1688482216000,"updateDate":1688749254000,"applyBackgroundUpdates":1,"path":"/usr/lib/firefox/browser/features/webcompat@mozilla.org.xpi","skinnable":false,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"toolkit@mozilla.org","minVersion":"102.0","maxVersion":null}],"targetPlatforms":[],"signedDate":null,"seen":true,"dependencies":[],"incognito":"spanning","userPermissions":{"permissions":["mozillaAddons","tabs","webNavigation","webRequest","webRequestBlocking"],"origins":[""]},"optionalPermissions":{"permissions":[],"origins":[]},"icons":{},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":{"persistentListeners":{"webRequest":{"onBeforeRequest":[[{"incognito":null,"tabId":null,"types":["main_frame"],"urls":["*://login.microsoftonline.com/*","*://login.microsoftonline.us/*"],"windowId":null},["blocking"]],[{"incognito":null,"tabId":null,"types":["image"],"urls":["https://smartblock.firefox.etp/facebook.svg","https://smartblock.firefox.etp/play.svg"],"windowId":null},["blocking"]],[{"incognito":null,"tabId":null,"types":["script"],"urls":["*://webcompat-addon-testbed.herokuapp.com/shims_test.js","*://example.com/browser/browser/extensions/webcompat/tests/browser/shims_test.js","*://example.com/browser/browser/extensions/webcompat/tests/browser/shims_test_2.js","*://example.com/browser/browser/extensions/webcompat/tests/browser/shims_test_3.js","*://s7.addthis.com/icons/official-addthis-angularjs/current/dist/official-addthis-angularjs.min.js*","*://track.adform.net/serving/scripts/trackpoint/","*://track.adform.net/serving/scripts/trackpoint/async/","*://*.adnxs.com/*/ast.js*","*://*.adnxs.com/*/pb.js*","*://*.adnxs.com/*/prebid*","*://www.everestjs.net/static/st.v3.js*","*://static.adsafeprotected.com/vans-adapter-google-ima.js","*://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js","*://cdn.branch.io/branch-latest.min.js*","*://pub.doubleverify.com/signals/pub.js*","*://c.amazon-adsystem.com/aax2/apstag.js","*://auth.9c9media.ca/auth/main.js","*://static.chartbeat.com/js/chartbeat.js","*://static.chartbeat.com/js/chartbeat_video.js","*://static.criteo.net/js/ld/publishertag.js","*://*.imgur.com/js/vendor.*.bundle.js","*://*.imgur.io/js/vendor.*.bundle.js","*://www.rva311.com/static/js/main.*.chunk.js","*://web-assets.toggl.com/app/assets/scripts/*.js","*://libs.coremetrics.com/eluminate.js","*://connect.facebook.net/*/sdk.js*","*://connect.facebook.net/*/all.js*","*://secure.cdn.fastclick.net/js/cnvr-launcher/*/launcher-stub.min.js*","*://www.google-analytics.com/analytics.js*","*://www.google-analytics.com/gtm/js*","*://www.googletagmanager.com/gtm.js*","*://www.google-analytics.com/plugins/ua/ec.js","*://ssl.google-analytics.com/ga.js","*://s0.2mdn.net/instream/html5/ima3.js","*://imasdk.googleapis.com/js/sdkloader/ima3.js","*://www.googleadservices.com/pagead/conversion_async.js","*://www.googletagservices.com/tag/js/gpt.js*","*://pagead2.googlesyndication.com/tag/js/gpt.js*","*://pagead2.googlesyndication.com/gpt/pubads_impl_*.js*","*://securepubads.g.doubleclick.net/tag/js/gpt.js*","*://securepubads.g.doubleclick.net/gpt/pubads_impl_*.js*","*://script.ioam.de/iam.js","*://cdn.adsafeprotected.com/iasPET.1.js","*://static.adsafeprotected.com/iasPET.1.js","*://adservex.media.net/videoAds.js*","*://*.moatads.com/*/moatad.js*","*://*.moatads.com/*/moatapi.js*","*://*.moatads.com/*/moatheader.js*","*://*.moatads.com/*/yi.js*","*://*.imrworldwide.com/v60.js","*://cdn.optimizely.com/js/*.js","*://cdn.optimizely.com/public/*.js","*://id.rambler.ru/rambler-id-helper/auth_events.js","*://media.richrelevance.com/rrserver/js/1.2/p13n.js","*://www.gstatic.com/firebasejs/*/firebase-messaging.js*","*://*.vidible.tv/*/vidible-min.js*","*://vdb-cdn-files.s3.amazonaws.com/*/vidible-min.js*","*://js.maxmind.com/js/apis/geoip2/*/geoip2.js","*://s.webtrends.com/js/advancedLinkTracking.js","*://s.webtrends.com/js/webtrends.js","*://s.webtrends.com/js/webtrends.min.js"],"windowId":null},["blocking"]],[{"incognito":null,"tabId":null,"types":["image"],"urls":["*://track.adform.net/Serving/TrackPoint/*","*://pixel.advertising.com/firefox-etp","*://*.advertising.com/*.js*","*://*.advertising.com/*","*://securepubads.g.doubleclick.net/gampad/*ad-blk*","*://pubads.g.doubleclick.net/gampad/*ad-blk*","*://securepubads.g.doubleclick.net/gampad/*xml_vmap1*","*://pubads.g.doubleclick.net/gampad/*xml_vmap1*","*://vast.adsafeprotected.com/vast*","*://securepubads.g.doubleclick.net/gampad/*xml_vmap2*","*://pubads.g.doubleclick.net/gampad/*xml_vmap2*","*://securepubads.g.doubleclick.net/gampad/*ad*","*://pubads.g.doubleclick.net/gampad/*ad*","*://www.facebook.com/platform/impression.php*","https://ads.stickyadstv.com/firefox-etp","*://ads.stickyadstv.com/auto-user-sync*","*://ads.stickyadstv.com/user-matching*","https://static.adsafeprotected.com/firefox-etp-pixel","*://*.adsafeprotected.com/*.gif*","*://*.adsafeprotected.com/*.png*","*://*.adsafeprotected.com/*.js*","*://*.adsafeprotected.com/*/adj*","*://*.adsafeprotected.com/*/imp/*","*://*.adsafeprotected.com/*/Serving/*","*://*.adsafeprotected.com/*/unit/*","*://*.adsafeprotected.com/jload","*://*.adsafeprotected.com/jload?*","*://*.adsafeprotected.com/jsvid","*://*.adsafeprotected.com/jsvid?*","*://*.adsafeprotected.com/mon*","*://*.adsafeprotected.com/tpl","*://*.adsafeprotected.com/tpl?*","*://*.adsafeprotected.com/services/pub*","*://*.adsafeprotected.com/*"],"windowId":null},["blocking"]],[{"incognito":null,"tabId":null,"types":["imageset"],"urls":["*://track.adform.net/Serving/TrackPoint/*","*://pixel.advertising.com/firefox-etp","*://*.advertising.com/*.js*","*://*.advertising.com/*","*://securepubads.g.doubleclick.net/gampad/*ad-blk*","*://pubads.g.doubleclick.net/gampad/*ad-blk*","*://securepubads.g.doubleclick.net/gampad/*xml_vmap1*","*://pubads.g.doubleclick.net/gampad/*xml_vmap1*","*://vast.adsafeprotected.com/vast*","*://securepubads.g.doubleclick.net/gampad/*xml_vmap2*","*://pubads.g.doubleclick.net/gampad/*xml_vmap2*","*://securepubads.g.doubleclick.net/gampad/*ad*","*://pubads.g.doubleclick.net/gampad/*ad*","*://www.facebook.com/platform/impression.php*","https://ads.stickyadstv.com/firefox-etp","*://ads.stickyadstv.com/auto-user-sync*","*://ads.stickyadstv.com/user-matching*","https://static.adsafeprotected.com/firefox-etp-pixel","*://*.adsafeprotected.com/*.gif*","*://*.adsafeprotected.com/*.png*","*://*.adsafeprotected.com/*.js*","*://*.adsafeprotected.com/*/adj*","*://*.adsafeprotected.com/*/imp/*","*://*.adsafeprotected.com/*/Serving/*","*://*.adsafeprotected.com/*/unit/*","*://*.adsafeprotected.com/jload","*://*.adsafeprotected.com/jload?*","*://*.adsafeprotected.com/jsvid","*://*.adsafeprotected.com/jsvid?*","*://*.adsafeprotected.com/mon*","*://*.adsafeprotected.com/tpl","*://*.adsafeprotected.com/tpl?*","*://*.adsafeprotected.com/services/pub*","*://*.adsafeprotected.com/*"],"windowId":null},["blocking"]],[{"incognito":null,"tabId":null,"types":["xmlhttprequest"],"urls":["*://track.adform.net/Serving/TrackPoint/*","*://pagead2.googlesyndication.com/pagead/*.js*fcd=true","*://pagead2.googlesyndication.com/pagead/js/*.js*fcd=true","*://pixel.advertising.com/firefox-etp","*://cdn.cmp.advertising.com/firefox-etp","*://*.advertising.com/*.js*","*://*.advertising.com/*","*://securepubads.g.doubleclick.net/gampad/*ad-blk*","*://pubads.g.doubleclick.net/gampad/*ad-blk*","*://securepubads.g.doubleclick.net/gampad/*xml_vmap1*","*://pubads.g.doubleclick.net/gampad/*xml_vmap1*","*://vast.adsafeprotected.com/vast*","*://securepubads.g.doubleclick.net/gampad/*xml_vmap2*","*://pubads.g.doubleclick.net/gampad/*xml_vmap2*","*://securepubads.g.doubleclick.net/gampad/*ad*","*://pubads.g.doubleclick.net/gampad/*ad*","*://www.facebook.com/platform/impression.php*","https://ads.stickyadstv.com/firefox-etp","*://ads.stickyadstv.com/auto-user-sync*","*://ads.stickyadstv.com/user-matching*","https://static.adsafeprotected.com/firefox-etp-pixel","https://static.adsafeprotected.com/firefox-etp-js","*://*.adsafeprotected.com/*.gif*","*://*.adsafeprotected.com/*.png*","*://*.adsafeprotected.com/*.js*","*://*.adsafeprotected.com/*/adj*","*://*.adsafeprotected.com/*/imp/*","*://*.adsafeprotected.com/*/Serving/*","*://*.adsafeprotected.com/*/unit/*","*://*.adsafeprotected.com/jload","*://*.adsafeprotected.com/jload?*","*://*.adsafeprotected.com/jsvid","*://*.adsafeprotected.com/jsvid?*","*://*.adsafeprotected.com/mon*","*://*.adsafeprotected.com/tpl","*://*.adsafeprotected.com/tpl?*","*://*.adsafeprotected.com/services/pub*","*://*.adsafeprotected.com/*"],"windowId":null},["blocking"]],[{"incognito":null,"tabId":null,"types":["sub_frame"],"urls":["*://tpc.googlesyndication.com/safeframe/*/html/container.html","*://*.safeframe.googlesyndication.com/safeframe/*/html/container.html"],"windowId":null},["blocking"]]],"onBeforeSendHeaders":[[{"incognito":null,"tabId":null,"types":["sub_frame"],"urls":["*://trends.google.com/trends/embed*"],"windowId":null},["blocking","requestHeaders"]]],"onHeadersReceived":[[{"incognito":null,"tabId":null,"types":["sub_frame"],"urls":["*://trends.google.com/trends/embed*"],"windowId":null},["blocking","responseHeaders"]]]}}},"hidden":true,"installTelemetryInfo":null,"recommendationState":null,"rootURI":"jar:file:///usr/lib/firefox/browser/features/webcompat@mozilla.org.xpi!/","location":"app-system-defaults"},{"id":"default-theme@mozilla.org","syncGUID":"{9aae6ac6-51d4-4b83-9b7d-255dfd6c8849}","version":"1.3","type":"theme","loader":null,"updateURL":null,"installOrigins":null,"manifestVersion":2,"optionsURL":null,"optionsType":null,"optionsBrowserStyle":true,"aboutURL":null,"defaultLocale":{"name":"System theme — auto","description":"Follow the operating system setting for buttons, menus, and windows.","creator":"Mozilla","developers":null,"translators":null,"contributors":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"embedderDisabled":false,"installDate":1688747209950,"applyBackgroundUpdates":1,"path":null,"skinnable":false,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"toolkit@mozilla.org","minVersion":null,"maxVersion":null}],"targetPlatforms":[],"signedDate":null,"seen":true,"dependencies":[],"userPermissions":null,"optionalPermissions":null,"icons":{"32":"icon.svg"},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":{},"hidden":false,"installTelemetryInfo":null,"recommendationState":null,"rootURI":"resource://default-theme/","location":"app-builtin"},{"id":"addons-search-detection@mozilla.com","syncGUID":"{3e09eaf4-e03a-4653-add3-eeff3b67b422}","version":"2.0.0","type":"extension","loader":null,"updateURL":null,"installOrigins":null,"manifestVersion":2,"optionsURL":null,"optionsType":null,"optionsBrowserStyle":true,"aboutURL":null,"defaultLocale":{"name":"Add-ons Search Detection","description":"","creator":null,"developers":null,"translators":null,"contributors":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"embedderDisabled":false,"installDate":1688747210395,"applyBackgroundUpdates":1,"path":null,"skinnable":false,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"toolkit@mozilla.org","minVersion":null,"maxVersion":null}],"targetPlatforms":[],"signedDate":null,"seen":true,"dependencies":[],"incognito":"spanning","userPermissions":{"permissions":["telemetry","webRequest","webRequestBlocking"],"origins":[""]},"optionalPermissions":{"permissions":[],"origins":[]},"icons":{},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":{},"hidden":true,"installTelemetryInfo":null,"recommendationState":null,"rootURI":"resource://builtin-addons/search-detection/","location":"app-builtin"},{"id":"google@search.mozilla.org","syncGUID":"{39e3fe18-dc05-4a72-9411-e527853fea5b}","version":"1.4","type":"extension","loader":null,"updateURL":null,"installOrigins":null,"manifestVersion":2,"optionsURL":null,"optionsType":null,"optionsBrowserStyle":true,"aboutURL":null,"defaultLocale":{"name":"Google","description":"Google Search","creator":null,"developers":null,"translators":null,"contributors":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"embedderDisabled":false,"installDate":1688747210489,"applyBackgroundUpdates":1,"path":null,"skinnable":false,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"strictCompatibility":true,"locales":[{"name":"Google","description":"Google Search","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["en"]},{"name":"Google","description":"Google Search","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["region-ru"]},{"name":"Google","description":"Google Search","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["region-by"]},{"name":"Google","description":"Google Search","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["region-tr"]},{"name":"Google","description":"Google Search","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["region-kz"]}],"targetApplications":[{"id":"toolkit@mozilla.org","minVersion":null,"maxVersion":null}],"targetPlatforms":[],"signedDate":null,"seen":true,"dependencies":[],"incognito":"spanning","userPermissions":{"permissions":[],"origins":[]},"optionalPermissions":{"permissions":[],"origins":[]},"icons":{"16":"favicon.ico"},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":{},"hidden":true,"installTelemetryInfo":null,"recommendationState":null,"rootURI":"resource://search-extensions/google/","location":"app-builtin"},{"id":"wikipedia@search.mozilla.org","syncGUID":"{90e50782-cd58-4a61-ae74-7641d5858d3e}","version":"1.3","type":"extension","loader":null,"updateURL":null,"installOrigins":null,"manifestVersion":2,"optionsURL":null,"optionsType":null,"optionsBrowserStyle":true,"aboutURL":null,"defaultLocale":{"name":"Wikipedia (en)","description":"Wikipedia, the Free Encyclopedia","creator":null,"developers":null,"translators":null,"contributors":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"embedderDisabled":false,"installDate":1688747210538,"applyBackgroundUpdates":1,"path":null,"skinnable":false,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"strictCompatibility":true,"locales":[{"name":"Wikipedia (en)","description":"Wikipedia, the Free Encyclopedia","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["en"]},{"name":"Wikipedija (hr)","description":"Wikipedija, slobodna enciklopedija","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["hr"]},{"name":"Wikipedia (fi)","description":"Wikipedia (fi), vapaa tietosanakirja","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["fi"]},{"name":"Wikipedia (hy)","description":"Վիքիփեդիա՝ ազատ հանրագիտարան","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["hy"]},{"name":"Уикипедия (kk)","description":"Уикипедия (kk)","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["kk"]},{"name":"Вікіпедыя (be)","description":"Вікіпедыя, свабодная энцыклапедыя","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["be"]},{"name":"위키백과 (ko)","description":"Wikipedia, the free encyclopedia","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["kr"]},{"name":"Wikipedia (ro)","description":"Wikipedia, enciclopedia liberă","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["ro"]},{"name":"Wikipedia (bs)","description":"Slobodna enciklopedija","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["bs"]},{"name":"Wikipedia (pt)","description":"Wikipédia, a enciclopédia livre","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["pt"]},{"name":"Vikipetã (gn)","description":"Vikipetã, opaite tembikuaa hekosãsóva renda","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["gn"]},{"name":"વિકિપીડિયા (gu)","description":"વીકીપીડિયા, મુક્ત એનસાયક્લોપીડિયા","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["gu"]},{"name":"Wikipedia (el)","description":"Βικιπαίδεια, η ελεύθερη εγκυκλοπαίδεια","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["el"]},{"name":"Wikipedia (es)","description":"Wikipedia, la enciclopedia libre","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["es"]},{"name":"ויקיפדיה","description":"ויקיפדיה","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["he"]},{"name":"Wikipedia (da)","description":"Wikipedia, den frie encyklopædi","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["da"]},{"name":"Wikipedia (tr)","description":"Vikipedi, özgür ansiklopedi","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["tr"]},{"name":"Wikipedija (hsb)","description":"Wikipedija, swobodna encyklopedija","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["hsb"]},{"name":"Wikipedy (fy)","description":"De fergese ensyklopedy","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["fy-NL"]},{"name":"विकिपीडिया (ne)","description":"विकिपिडिया एक स्वतन्त्र विश्वकोष","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["ne"]},{"name":"Wikipedia (nl)","description":"De vrije encyclopedie","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["nl"]},{"name":"Wikipedia (ja)","description":"Wikipedia - フリー百科事典","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["ja"]},{"name":"Vikipeedia (et)","description":"Vikipeedia, vaba entsüklopeedia","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["et"]},{"name":"Wikipèdia (oc)","description":"Wikipèdia, l'enciclopèdia liura","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["oc"]},{"name":"Wicipedia (cy)","description":"Wicipedia, Y Gwyddioniadur Rhydd","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["cy"]},{"name":"వికీపీడియా (te)","description":"వికీపీడియా (te)","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["te"]},{"name":"Wikipédia (fr)","description":"Wikipédia, l'encyclopédie libre","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["fr"]},{"name":"Wikipedia (tl)","description":"Wikipedia, ang malayang ensiklopedya","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["tl"]},{"name":"维基百科","description":"维基百科,自由的百科全书","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["zh-CN"]},{"name":"Wikipedia (lij)","description":"Wikipedia, l'enciclopedia libera","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["lij"]},{"name":"វីគីភីឌា (km)","description":"វីគីភីឌា សព្វ​វចនា​ធិប្បាយ​សេរី","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["km"]},{"name":"Уикипедия (bg)","description":"Уикипедия, свободната енциклоподия","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["bg"]},{"name":"Wikipedia (id)","description":"Wikipedia, ensiklopedia bebas","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["id"]},{"name":"Wikipedia (pa)","description":"ਵਿਕਿਪੀਡਿਆ, ਮੁਫ਼ਤ/ਮੁਕਤ ਸ਼ਬਦਕੋਸ਼","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["pa"]},{"name":"উইকিপিডিয়া (bn)","description":"উইকিপিডিয়া, মুক্ত বিশ্বকোষ","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["bn"]},{"name":"Wikipedia (eu)","description":"Wikipedia, entziklopedia askea","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["eu"]},{"name":"Wikipedie (cs)","description":"Wikipedia, svobodná encyclopedie","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["cz"]},{"name":"Wikipédia (hu)","description":"Wikipedia, a szabad enciklopédia","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["hu"]},{"name":"Wikipedia (kn)","description":"Wikipedia, the free encyclopedia","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["kn"]},{"name":"Wikipedia (is)","description":"Wikipedia, the free encyclopedia","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["is"]},{"name":"Вікіпедія (uk)","description":"Вікіпедія, вільна енциклопедія","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["uk"]},{"name":"Wikipedia (kab)","description":"Wikipedia, tasanayt tilellit","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["kab"]},{"name":"Wikipedia (zh)","description":"維基百科,自由的百科全書","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["zh-TW"]},{"name":"ویکیپیڈیا (ur)","description":"ویکیپیڈیا آزاد دائرۃ المعارف","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["ur"]},{"name":"Vikipedio (eo)","description":"Vikipedio, la libera enciklopedio","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["eo"]},{"name":"Wikipedia (si)","description":"Wikipedia, the free encyclopedia","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["si"]},{"name":"ويكيبيديا (ar)","description":"ويكيبيديا (ar)","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["ar"]},{"name":"Wikipedia (vi)","description":"Wikipedia, bách khoa toàn thư mở","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["vi"]},{"name":"ვიკიპედია (ka)","description":"ვიკიპედია, თავისუფალი ენციკლოპედია","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["ka"]},{"name":"Uicipeid (gd)","description":"Wikipedia, An leabhar mòr-eòlais","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["gd"]},{"name":"Wikipedia (it)","description":"Wikipedia, l'enciclopedia libera","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["it"]},{"name":"Vikipediya (uz)","description":"Vikipediya, ochiq ensiklopediya","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["uz"]},{"name":"Wikipedia (lt)","description":"Vikipedija, laisvoji enciklopedija","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["lt"]},{"name":"Wikipedia (sq)","description":"Wikipedia, enciklopedia e lirë","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["sq"]},{"name":"Vicipéid (ga)","description":"Vicipéid, an Chiclipéid Shaor","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["ga-IE"]},{"name":"विकिपीडिया (hi)","description":"विकिपीडिया (हिन्दी)","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["hi"]},{"name":"Vikipedeja (ltg)","description":"Vikipēdija, breivuo eņciklopedeja","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["ltg"]},{"name":"விக்கிப்பீடியா (ta)","description":"விக்கிப்பீடியா (ta)","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["ta"]},{"name":"Vikipediya (az)","description":"Vikipediya, açıq ensiklopediya","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["az"]},{"name":"Википедија (mk)","description":"Википедија, слободната енциклопедија","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["mk"]},{"name":"วิกิพีเดีย","description":"วิกิพีเดีย สารานุกรมเสรี","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["th"]},{"name":"Wikipedia (de)","description":"Wikipedia, die freie Enzyklopädie","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["de"]},{"name":"Wikipedija (dsb)","description":"Wikipedija, lichotna encyklopedija","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["dsb"]},{"name":"विकिपीडिया (mr)","description":"विकिपीडिया, मोफत माहितीकोष","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["mr"]},{"name":"Wikipedia (ast)","description":"La enciclopedia llibre","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["ast"]},{"name":"Wikipedia (my)","description":"အခမဲ့လွတ်လပ်စွယ်စုံကျမ်း","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["my"]},{"name":"Wikipedia (rm)","description":"Vichipedia, l'enciclopedia libra","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["rm"]},{"name":"Wikipedia (nn)","description":"Wikipedia, det frie oppslagsverket","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["NN"]},{"name":"Wikipedia (wo)","description":"Wikipedia, Jimbulang bu Ubbeeku bi","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["wo"]},{"name":"Wikipedia (gl)","description":"Wikipedia, a enciclopedia libre","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["gl"]},{"name":"Viquipèdia (ca)","description":"L'enciclopèdia lliure","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["ca"]},{"name":"Wikipédia (sk)","description":"Wikipédia, slobodná a otvorená encyklopédia","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["sk"]},{"name":"Википедија (sr)","description":"Претрага Википедије на српском језику","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["sr"]},{"name":"Wikipedia (af)","description":"Wikipedia, die vrye ensiklopedie","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["af"]},{"name":"ویکی‌پدیا (fa)","description":"ویکی‌پدیا، دانشنامهٔ آزاد","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["fa"]},{"name":"Wikipedia (ms)","description":"Wikipedia, ensiklopedia bebas","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["ms"]},{"name":"Wikipedia (ia)","description":"Wikipedia, le encyclopedia libere","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["ia"]},{"name":"Wikipedia (no)","description":"Wikipedia, den frie encyklopedi","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["NO"]},{"name":"Википедия (ru)","description":"Википедия, свободная энциклопедия","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["ru"]},{"name":"Wikipedia (br)","description":"Wikipedia, an holloueziadur digor","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["br"]},{"name":"Wikipedia (pl)","description":"Wikipedia, wolna encyklopedia","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["pl"]},{"name":"Вікіпэдыя (be-tarask)","description":"Вікіпэдыя, вольная энцыкляпэдыя","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["be-tarask"]},{"name":"Wikipedia (sv)","description":"Wikipedia, den fria encyklopedin","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["sv-SE"]},{"name":"ວິກິພີເດຍ (lo)","description":"ວິກິພີເດຍ, ສາລານຸກົມເສລີ","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["lo"]},{"name":"Wikipedija (sl)","description":"Wikipedija, prosta enciklopedija","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["sl"]},{"name":"Vikipēdija","description":"Vikipēdija, brīvā enciklopēdija","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["lv"]},{"name":"Biquipedia (an)","description":"A enciclopedia Libre","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["an"]}],"targetApplications":[{"id":"toolkit@mozilla.org","minVersion":null,"maxVersion":null}],"targetPlatforms":[],"signedDate":null,"seen":true,"dependencies":[],"incognito":"spanning","userPermissions":{"permissions":[],"origins":[]},"optionalPermissions":{"permissions":[],"origins":[]},"icons":{"16":"favicon.ico"},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":{},"hidden":true,"installTelemetryInfo":null,"recommendationState":null,"rootURI":"resource://search-extensions/wikipedia/","location":"app-builtin"},{"id":"bing@search.mozilla.org","syncGUID":"{1fa29174-1c2c-48b3-999d-afec75b5c10f}","version":"1.5","type":"extension","loader":null,"updateURL":null,"installOrigins":null,"manifestVersion":2,"optionsURL":null,"optionsType":null,"optionsBrowserStyle":true,"aboutURL":null,"defaultLocale":{"name":"Bing","description":"Microsoft Bing","creator":null,"developers":null,"translators":null,"contributors":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"embedderDisabled":false,"installDate":1688747210546,"applyBackgroundUpdates":1,"path":null,"skinnable":false,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"toolkit@mozilla.org","minVersion":null,"maxVersion":null}],"targetPlatforms":[],"signedDate":null,"seen":true,"dependencies":[],"incognito":"spanning","userPermissions":{"permissions":[],"origins":[]},"optionalPermissions":{"permissions":[],"origins":[]},"icons":{"16":"favicon.ico"},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":{},"hidden":true,"installTelemetryInfo":null,"recommendationState":null,"rootURI":"resource://search-extensions/bing/","location":"app-builtin"},{"id":"ddg@search.mozilla.org","syncGUID":"{22472b1f-5c9e-4172-8c63-91012c754c2e}","version":"1.4","type":"extension","loader":null,"updateURL":null,"installOrigins":null,"manifestVersion":2,"optionsURL":null,"optionsType":null,"optionsBrowserStyle":true,"aboutURL":null,"defaultLocale":{"name":"DuckDuckGo","description":"Search DuckDuckGo","creator":null,"developers":null,"translators":null,"contributors":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"embedderDisabled":false,"installDate":1688747210555,"applyBackgroundUpdates":1,"path":null,"skinnable":false,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"toolkit@mozilla.org","minVersion":null,"maxVersion":null}],"targetPlatforms":[],"signedDate":null,"seen":true,"dependencies":[],"incognito":"spanning","userPermissions":{"permissions":[],"origins":[]},"optionalPermissions":{"permissions":[],"origins":[]},"icons":{"16":"favicon.ico"},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":{},"hidden":true,"installTelemetryInfo":null,"recommendationState":null,"rootURI":"resource://search-extensions/ddg/","location":"app-builtin"},{"id":"firefox-compact-light@mozilla.org","syncGUID":"{4384db09-987a-48ab-bf0b-914a713599f0}","version":"1.2","type":"theme","loader":null,"updateURL":null,"installOrigins":null,"manifestVersion":2,"optionsURL":null,"optionsType":null,"optionsBrowserStyle":true,"aboutURL":null,"defaultLocale":{"name":"Light","description":"A theme with a light color scheme.","creator":"Mozilla","developers":null,"translators":null,"contributors":null},"visible":true,"active":false,"userDisabled":true,"appDisabled":false,"embedderDisabled":false,"installDate":1688747210590,"applyBackgroundUpdates":1,"path":null,"skinnable":false,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"toolkit@mozilla.org","minVersion":null,"maxVersion":null}],"targetPlatforms":[],"signedDate":null,"seen":true,"dependencies":[],"userPermissions":null,"optionalPermissions":null,"icons":{"32":"icon.svg"},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":null,"hidden":false,"installTelemetryInfo":null,"recommendationState":null,"rootURI":"resource://builtin-themes/light/","location":"app-builtin"},{"id":"firefox-compact-dark@mozilla.org","syncGUID":"{ac95d60d-c1ed-49da-818b-6fa52060811d}","version":"1.2","type":"theme","loader":null,"updateURL":null,"installOrigins":null,"manifestVersion":2,"optionsURL":null,"optionsType":null,"optionsBrowserStyle":true,"aboutURL":null,"defaultLocale":{"name":"Dark","description":"A theme with a dark color scheme.","creator":"Mozilla","developers":null,"translators":null,"contributors":null},"visible":true,"active":false,"userDisabled":true,"appDisabled":false,"embedderDisabled":false,"installDate":1688747210590,"applyBackgroundUpdates":1,"path":null,"skinnable":false,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"toolkit@mozilla.org","minVersion":null,"maxVersion":null}],"targetPlatforms":[],"signedDate":null,"seen":true,"dependencies":[],"userPermissions":null,"optionalPermissions":null,"icons":{"32":"icon.svg"},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":null,"hidden":false,"installTelemetryInfo":null,"recommendationState":null,"rootURI":"resource://builtin-themes/dark/","location":"app-builtin"},{"id":"firefox-alpenglow@mozilla.org","syncGUID":"{af778ed1-7bac-4154-9aeb-86d6d8b25713}","version":"1.4","type":"theme","loader":null,"updateURL":null,"installOrigins":null,"manifestVersion":2,"optionsURL":null,"optionsType":null,"optionsBrowserStyle":true,"aboutURL":null,"defaultLocale":{"name":"Firefox Alpenglow","description":"Use a colorful appearance for buttons, menus, and windows.","creator":null,"developers":null,"translators":null,"contributors":null},"visible":true,"active":false,"userDisabled":true,"appDisabled":false,"embedderDisabled":false,"installDate":1688747210590,"applyBackgroundUpdates":1,"path":null,"skinnable":false,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"toolkit@mozilla.org","minVersion":null,"maxVersion":null}],"targetPlatforms":[],"signedDate":null,"seen":true,"dependencies":[],"userPermissions":null,"optionalPermissions":null,"icons":{"32":"icon.svg"},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":null,"hidden":false,"installTelemetryInfo":null,"recommendationState":null,"rootURI":"resource://builtin-themes/alpenglow/","location":"app-builtin"},{"id":"amazon@search.mozilla.org","syncGUID":"{baf55f5a-6e8e-4f00-b6cd-13f1b73f9166}","version":"1.12","type":"extension","loader":null,"updateURL":null,"installOrigins":null,"manifestVersion":2,"optionsURL":null,"optionsType":null,"optionsBrowserStyle":true,"aboutURL":null,"defaultLocale":{"name":"Amazon.com.au","description":"Amazon.com.au Search","creator":null,"developers":null,"translators":null,"contributors":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"embedderDisabled":false,"installDate":1688747210710,"applyBackgroundUpdates":1,"path":null,"skinnable":false,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"strictCompatibility":true,"locales":[{"name":"Amazon.com.au","description":"Amazon.com.au Search","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["au"]},{"name":"Amazon.ca","description":"Amazon.ca Search","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["ca"]},{"name":"Amazon.es","description":"Amazon.es","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["spain"]},{"name":"Amazon.fr","description":"Recherche Amazon.fr","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["france"]},{"name":"Amazon.nl","description":"Amazon.nl Search","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["nl"]},{"name":"Amazon.co.uk","description":"Amazon.co.uk Search","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["en-GB"]},{"name":"Amazon.co.jp","description":"Amazon.co.jp Search","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["jp"]},{"name":"Amazon.se","description":"Amazon.se","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["sweden"]},{"name":"Amazon.it","description":"Ricerca Amazon.it","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["it"]},{"name":"Amazon.de","description":"Amazon.de Suche","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["de"]},{"name":"Amazon.in","description":"Amazon.in Search","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["in"]}],"targetApplications":[{"id":"toolkit@mozilla.org","minVersion":null,"maxVersion":null}],"targetPlatforms":[],"signedDate":null,"seen":true,"dependencies":[],"incognito":"spanning","userPermissions":{"permissions":[],"origins":[]},"optionalPermissions":{"permissions":[],"origins":[]},"icons":{"16":"favicon.ico"},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":{},"hidden":true,"installTelemetryInfo":null,"recommendationState":null,"rootURI":"resource://search-extensions/amazon/","location":"app-builtin"},{"id":"ebay@search.mozilla.org","syncGUID":"{c1dcc670-82bb-46cb-8bfa-8e877c10657c}","version":"1.4","type":"extension","loader":null,"updateURL":null,"installOrigins":null,"manifestVersion":2,"optionsURL":null,"optionsType":null,"optionsBrowserStyle":true,"aboutURL":null,"defaultLocale":{"name":"eBay","description":"eBay - Online auctions","creator":null,"developers":null,"translators":null,"contributors":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"embedderDisabled":false,"installDate":1688747210720,"applyBackgroundUpdates":1,"path":null,"skinnable":false,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"strictCompatibility":true,"locales":[{"name":"eBay","description":"eBay - Online auctions","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["en"]},{"name":"eBay","description":"eBay - Online auctions","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["ie"]},{"name":"eBay","description":"eBay - Online auctions","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["uk"]},{"name":"eBay","description":"eBay - Online auctions","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["it"]},{"name":"eBay","description":"eBay - Online auctions","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["de"]},{"name":"eBay","description":"eBay - Online auctions","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["ca"]},{"name":"eBay","description":"eBay - Online auctions","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["ch"]},{"name":"eBay","description":"eBay - Online auctions","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["at"]},{"name":"eBay","description":"eBay - Online auctions","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["au"]},{"name":"eBay","description":"eBay - Online auctions","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["be"]},{"name":"eBay","description":"eBay - Online auctions","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["es"]},{"name":"eBay","description":"eBay - Online auctions","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["nl"]},{"name":"eBay","description":"eBay - Online auctions","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["fr"]}],"targetApplications":[{"id":"toolkit@mozilla.org","minVersion":null,"maxVersion":null}],"targetPlatforms":[],"signedDate":null,"seen":true,"dependencies":[],"incognito":"spanning","userPermissions":{"permissions":[],"origins":[]},"optionalPermissions":{"permissions":[],"origins":[]},"icons":{"16":"favicon.ico"},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":{},"hidden":true,"installTelemetryInfo":null,"recommendationState":null,"rootURI":"resource://search-extensions/ebay/","location":"app-builtin"},{"id":"ArchMan@archlinux.org","syncGUID":"{78fa6f66-9343-458b-88ce-ef675e7b93d2}","version":"1.0.3","type":"extension","loader":null,"updateURL":null,"installOrigins":null,"manifestVersion":3,"optionsURL":null,"optionsType":null,"optionsBrowserStyle":true,"aboutURL":null,"defaultLocale":{"name":"ArchLinux manual pages Search","description":"Adds ArchLinux manual pages as a search engine.","creator":"noraj","homepageURL":"https://github.com/noraj/firefox-extension-arch-search","developers":null,"translators":null,"contributors":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"embedderDisabled":false,"installDate":1688872746000,"updateDate":1688872746000,"applyBackgroundUpdates":1,"path":"/usr/lib/firefox/browser/extensions/ArchMan@archlinux.org.xpi","skinnable":false,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":true,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"toolkit@mozilla.org","minVersion":"109.0","maxVersion":null}],"targetPlatforms":[],"signedDate":null,"seen":true,"dependencies":[],"incognito":"spanning","userPermissions":{"permissions":[],"origins":[]},"optionalPermissions":{"permissions":[],"origins":[]},"icons":{"16":"icons/arch-m.svg","64":"icons/arch-m.svg","256":"icons/arch-m.svg"},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":null,"hidden":false,"installTelemetryInfo":{"source":"app-global","method":"sideload"},"recommendationState":null,"rootURI":"jar:file:///usr/lib/firefox/browser/extensions/ArchMan@archlinux.org.xpi!/","location":"app-global"},{"id":"ArchWiki@archlinux.org","syncGUID":"{ac413552-05d6-4cc2-85a7-e678e08a7d7a}","version":"1.0.3","type":"extension","loader":null,"updateURL":null,"installOrigins":null,"manifestVersion":3,"optionsURL":null,"optionsType":null,"optionsBrowserStyle":true,"aboutURL":null,"defaultLocale":{"name":"ArchLinux Wiki Search","description":"Adds ArchLinux Wiki as a search engine.","creator":"noraj","homepageURL":"https://github.com/noraj/firefox-extension-arch-search","developers":null,"translators":null,"contributors":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"embedderDisabled":false,"installDate":1688872746000,"updateDate":1688872746000,"applyBackgroundUpdates":1,"path":"/usr/lib/firefox/browser/extensions/ArchWiki@archlinux.org.xpi","skinnable":false,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":true,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"toolkit@mozilla.org","minVersion":"109.0","maxVersion":null}],"targetPlatforms":[],"signedDate":null,"seen":true,"dependencies":[],"incognito":"spanning","userPermissions":{"permissions":[],"origins":[]},"optionalPermissions":{"permissions":[],"origins":[]},"icons":{"16":"icons/arch-w.svg","64":"icons/arch-w.svg","256":"icons/arch-w.svg"},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":null,"hidden":false,"installTelemetryInfo":{"source":"app-global","method":"sideload"},"recommendationState":null,"rootURI":"jar:file:///usr/lib/firefox/browser/extensions/ArchWiki@archlinux.org.xpi!/","location":"app-global"},{"id":"ArchForumK@archlinux.org","syncGUID":"{6fb28ecc-6b86-4ea9-bd3e-1e86ddfbe102}","version":"1.0.2","type":"extension","loader":null,"updateURL":null,"installOrigins":null,"manifestVersion":3,"optionsURL":null,"optionsType":null,"optionsBrowserStyle":true,"aboutURL":null,"defaultLocale":{"name":"ArchLinux Forum (by keywords) Search","description":"Adds ArchLinux Forum (by keywords) as a search engine.","creator":"noraj","homepageURL":"https://github.com/noraj/firefox-extension-arch-search","developers":null,"translators":null,"contributors":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"embedderDisabled":false,"installDate":1688872746000,"updateDate":1688872746000,"applyBackgroundUpdates":1,"path":"/usr/lib/firefox/browser/extensions/ArchForumK@archlinux.org.xpi","skinnable":false,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":true,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"toolkit@mozilla.org","minVersion":"109.0","maxVersion":null}],"targetPlatforms":[],"signedDate":null,"seen":true,"dependencies":[],"incognito":"spanning","userPermissions":{"permissions":[],"origins":[]},"optionalPermissions":{"permissions":[],"origins":[]},"icons":{"16":"icons/arch-fk.svg","64":"icons/arch-fk.svg","256":"icons/arch-fk.svg"},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":null,"hidden":false,"installTelemetryInfo":{"source":"app-global","method":"sideload"},"recommendationState":null,"rootURI":"jar:file:///usr/lib/firefox/browser/extensions/ArchForumK@archlinux.org.xpi!/","location":"app-global"},{"id":"ArchBugsT@archlinux.org","syncGUID":"{52979f54-0f25-45b6-8e28-77df4994cf08}","version":"1.0.2","type":"extension","loader":null,"updateURL":null,"installOrigins":null,"manifestVersion":3,"optionsURL":null,"optionsType":null,"optionsBrowserStyle":true,"aboutURL":null,"defaultLocale":{"name":"ArchLinux Bugtracker (by text) Search","description":"Adds ArchLinux Bugtracker (by text) as a search engine.","creator":"noraj","homepageURL":"https://github.com/noraj/firefox-extension-arch-search","developers":null,"translators":null,"contributors":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"embedderDisabled":false,"installDate":1688872746000,"updateDate":1688872746000,"applyBackgroundUpdates":1,"path":"/usr/lib/firefox/browser/extensions/ArchBugsT@archlinux.org.xpi","skinnable":false,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":true,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"toolkit@mozilla.org","minVersion":"109.0","maxVersion":null}],"targetPlatforms":[],"signedDate":null,"seen":true,"dependencies":[],"incognito":"spanning","userPermissions":{"permissions":[],"origins":[]},"optionalPermissions":{"permissions":[],"origins":[]},"icons":{"16":"icons/arch-bt.svg","64":"icons/arch-bt.svg","256":"icons/arch-bt.svg"},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":null,"hidden":false,"installTelemetryInfo":{"source":"app-global","method":"sideload"},"recommendationState":null,"rootURI":"jar:file:///usr/lib/firefox/browser/extensions/ArchBugsT@archlinux.org.xpi!/","location":"app-global"},{"id":"ArchBugsFs@archlinux.org","syncGUID":"{5832d5f9-3d68-4251-941d-64b3cbff7321}","version":"1.0.2","type":"extension","loader":null,"updateURL":null,"installOrigins":null,"manifestVersion":3,"optionsURL":null,"optionsType":null,"optionsBrowserStyle":true,"aboutURL":null,"defaultLocale":{"name":"ArchLinux Bugtracker (by FS) Search","description":"Adds ArchLinux Bugtracker (by FS) as a search engine.","creator":"noraj","homepageURL":"https://github.com/noraj/firefox-extension-arch-search","developers":null,"translators":null,"contributors":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"embedderDisabled":false,"installDate":1688872746000,"updateDate":1688872746000,"applyBackgroundUpdates":1,"path":"/usr/lib/firefox/browser/extensions/ArchBugsFs@archlinux.org.xpi","skinnable":false,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":true,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"toolkit@mozilla.org","minVersion":"109.0","maxVersion":null}],"targetPlatforms":[],"signedDate":null,"seen":true,"dependencies":[],"incognito":"spanning","userPermissions":{"permissions":[],"origins":[]},"optionalPermissions":{"permissions":[],"origins":[]},"icons":{"16":"icons/arch-bf.svg","64":"icons/arch-bf.svg","256":"icons/arch-bf.svg"},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":null,"hidden":false,"installTelemetryInfo":{"source":"app-global","method":"sideload"},"recommendationState":null,"rootURI":"jar:file:///usr/lib/firefox/browser/extensions/ArchBugsFs@archlinux.org.xpi!/","location":"app-global"},{"id":"ArchPkgs@archlinux.org","syncGUID":"{4711a681-1b23-4606-8b08-5d44630a0f78}","version":"1.0.2","type":"extension","loader":null,"updateURL":null,"installOrigins":null,"manifestVersion":3,"optionsURL":null,"optionsType":null,"optionsBrowserStyle":true,"aboutURL":null,"defaultLocale":{"name":"ArchLinux Packages Search","description":"Adds ArchLinux Packages as a search engine.","creator":"noraj","homepageURL":"https://github.com/noraj/firefox-extension-arch-search","developers":null,"translators":null,"contributors":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"embedderDisabled":false,"installDate":1688872746000,"updateDate":1688872746000,"applyBackgroundUpdates":1,"path":"/usr/lib/firefox/browser/extensions/ArchPkgs@archlinux.org.xpi","skinnable":false,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":true,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"toolkit@mozilla.org","minVersion":"109.0","maxVersion":null}],"targetPlatforms":[],"signedDate":null,"seen":true,"dependencies":[],"incognito":"spanning","userPermissions":{"permissions":[],"origins":[]},"optionalPermissions":{"permissions":[],"origins":[]},"icons":{"16":"icons/arch-p.svg","64":"icons/arch-p.svg","256":"icons/arch-p.svg"},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":null,"hidden":false,"installTelemetryInfo":{"source":"app-global","method":"sideload"},"recommendationState":null,"rootURI":"jar:file:///usr/lib/firefox/browser/extensions/ArchPkgs@archlinux.org.xpi!/","location":"app-global"},{"id":"ArchForumA@archlinux.org","syncGUID":"{8c8e8c0d-b8c8-4782-9236-c76fa501b2d7}","version":"1.0.2","type":"extension","loader":null,"updateURL":null,"installOrigins":null,"manifestVersion":3,"optionsURL":null,"optionsType":null,"optionsBrowserStyle":true,"aboutURL":null,"defaultLocale":{"name":"ArchLinux Forum (by author) Search","description":"Adds ArchLinux Forum (by author) as a search engine.","creator":"noraj","homepageURL":"https://github.com/noraj/firefox-extension-arch-search","developers":null,"translators":null,"contributors":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"embedderDisabled":false,"installDate":1688872746000,"updateDate":1688872746000,"applyBackgroundUpdates":1,"path":"/usr/lib/firefox/browser/extensions/ArchForumA@archlinux.org.xpi","skinnable":false,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":true,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"toolkit@mozilla.org","minVersion":"55.0","maxVersion":null}],"targetPlatforms":[],"signedDate":null,"seen":true,"dependencies":[],"incognito":"spanning","userPermissions":{"permissions":[],"origins":[]},"optionalPermissions":{"permissions":[],"origins":[]},"icons":{"16":"icons/arch-fa.svg","64":"icons/arch-fa.svg","256":"icons/arch-fa.svg"},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":null,"hidden":false,"installTelemetryInfo":{"source":"app-global","method":"sideload"},"recommendationState":null,"rootURI":"jar:file:///usr/lib/firefox/browser/extensions/ArchForumA@archlinux.org.xpi!/","location":"app-global"},{"id":"ArchAur@archlinux.org","syncGUID":"{bc474398-4c29-4666-a245-c47f1cb40438}","version":"1.0.4","type":"extension","loader":null,"updateURL":null,"installOrigins":null,"manifestVersion":3,"optionsURL":null,"optionsType":null,"optionsBrowserStyle":true,"aboutURL":null,"defaultLocale":{"name":"ArchLinux AUR Search","description":"Adds ArchLinux AUR as a search engine.","creator":"noraj","homepageURL":"https://github.com/noraj/firefox-extension-arch-search","developers":null,"translators":null,"contributors":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"embedderDisabled":false,"installDate":1688872746000,"updateDate":1688872746000,"applyBackgroundUpdates":1,"path":"/usr/lib/firefox/browser/extensions/ArchAur@archlinux.org.xpi","skinnable":false,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":true,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"toolkit@mozilla.org","minVersion":"109.0","maxVersion":null}],"targetPlatforms":[],"signedDate":null,"seen":true,"dependencies":[],"incognito":"spanning","userPermissions":{"permissions":[],"origins":[]},"optionalPermissions":{"permissions":[],"origins":[]},"icons":{"16":"icons/arch-u.svg","64":"icons/arch-u.svg","256":"icons/arch-u.svg"},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":null,"hidden":false,"installTelemetryInfo":{"source":"app-global","method":"sideload"},"recommendationState":null,"rootURI":"jar:file:///usr/lib/firefox/browser/extensions/ArchAur@archlinux.org.xpi!/","location":"app-global"},{"id":"addon@simplelogin","syncGUID":"{19a8fc0b-c2b3-483c-b331-baf1409f8131}","version":"2.9.2","type":"extension","loader":null,"updateURL":null,"installOrigins":null,"manifestVersion":2,"optionsURL":null,"optionsType":null,"optionsBrowserStyle":true,"aboutURL":null,"defaultLocale":{"name":"SimpleLogin:Receive & Send emails anonymously","description":"Easily create a different email for each website to hide your real email. Protect your inbox against spams, phishing, data breaches","creator":null,"developers":null,"translators":null,"contributors":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"embedderDisabled":false,"installDate":1688876514063,"updateDate":1688876555108,"applyBackgroundUpdates":1,"path":"/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/extensions/addon@simplelogin.xpi","skinnable":false,"sourceURI":"file:///home/r0r5chach/Downloads/simplelogin.xpi","releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"toolkit@mozilla.org","minVersion":"48.0","maxVersion":"*"}],"targetPlatforms":[],"signedState":2,"signedDate":1668105610000,"seen":true,"dependencies":[],"incognito":"spanning","userPermissions":{"permissions":["activeTab","contextMenus","storage"],"origins":["https://*.simplelogin.io/*","http://*/*","https://*/*"]},"optionalPermissions":{"permissions":[],"origins":[]},"icons":{"16":"icons/icon_16.png","32":"icons/icon_32.png","48":"icons/icon_48.png","96":"icons/icon_96.png","128":"icons/icon_128.png"},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":null,"hidden":false,"installTelemetryInfo":{"source":"about:addons","method":"install-from-file"},"recommendationState":null,"rootURI":"jar:file:///home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/extensions/addon@simplelogin.xpi!/","location":"app-profile"},{"id":"adnauseam@rednoise.org","syncGUID":"{109425d2-a17c-4589-8192-3c0028fc6039}","version":"3.17.0","type":"extension","loader":null,"updateURL":null,"installOrigins":null,"manifestVersion":2,"optionsURL":"dashboard.html","optionsType":3,"optionsBrowserStyle":false,"aboutURL":null,"defaultLocale":{"name":"AdNauseam","description":"Fight back against advertising surveillance","creator":"Daniel C. Howe","homepageURL":"https://rednoise.org/daniel","developers":null,"translators":null,"contributors":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"embedderDisabled":false,"installDate":1688876485700,"updateDate":1688876578255,"applyBackgroundUpdates":1,"path":"/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/extensions/adnauseam@rednoise.org.xpi","skinnable":false,"sourceURI":"file:///home/r0r5chach/Downloads/adnauseam.xpi","releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"strictCompatibility":true,"locales":[{"name":"AdNauseam","description":"Fight back against advertising surveillance","creator":"Daniel C. Howe","homepageURL":"https://rednoise.org/daniel","developers":null,"translators":null,"contributors":null,"locales":["en"]},{"name":"AdNauseam","description":"広告監視に対抗する","creator":"Daniel C. Howe","homepageURL":"https://rednoise.org/daniel","developers":null,"translators":null,"contributors":null,"locales":["ja"]},{"name":"AdNauseam","description":"Lute contra a vigilância publicitária","creator":"Daniel C. Howe","homepageURL":"https://rednoise.org/daniel","developers":null,"translators":null,"contributors":null,"locales":["pt-PT"]},{"name":"AdNauseam","description":"Combattez contre la surveillance publicitaire","creator":"Daniel C. Howe","homepageURL":"https://rednoise.org/daniel","developers":null,"translators":null,"contributors":null,"locales":["fr"]},{"name":"AdNauseam","description":"নজরদারি বিজ্ঞাপনের বিরুদ্ধে লড়াই","creator":"Daniel C. Howe","homepageURL":"https://rednoise.org/daniel","developers":null,"translators":null,"contributors":null,"locales":["bn"]},{"name":"AdNauseam","description":"Slå tillbaka mot övervakningsreklam","creator":"Daniel C. Howe","homepageURL":"https://rednoise.org/daniel","developers":null,"translators":null,"contributors":null,"locales":["sv"]},{"name":"AdNauseam","description":"Bojovat proti reklamám které vás sledují","creator":"Daniel C. Howe","homepageURL":"https://rednoise.org/daniel","developers":null,"translators":null,"contributors":null,"locales":["cs"]},{"name":"AdNauseam","description":"Боротись проти рекламного слідкування","creator":"Daniel C. Howe","homepageURL":"https://rednoise.org/daniel","developers":null,"translators":null,"contributors":null,"locales":["uk"]},{"name":"AdNauseam","description":"Fight back against advertising surveillance","creator":"Daniel C. Howe","homepageURL":"https://rednoise.org/daniel","developers":null,"translators":null,"contributors":null,"locales":["ko"]},{"name":"AdNauseam","description":"Difenditi dal controllo pubblicitario","creator":"Daniel C. Howe","homepageURL":"https://rednoise.org/daniel","developers":null,"translators":null,"contributors":null,"locales":["it"]},{"name":"AdNauseam","description":"Kjemp tilbake mot reklameovervåkning","creator":"Daniel C. Howe","homepageURL":"https://rednoise.org/daniel","developers":null,"translators":null,"contributors":null,"locales":["no"]},{"name":"AdNauseam","description":"Kovoti atgal prieš skelbimų sekimą","creator":"Daniel C. Howe","homepageURL":"https://rednoise.org/daniel","developers":null,"translators":null,"contributors":null,"locales":["lt"]},{"name":"AdNauseam","description":"विज्ञापन निगरानी के खिलाफ वापस लड़ो","creator":"Daniel C. Howe","homepageURL":"https://rednoise.org/daniel","developers":null,"translators":null,"contributors":null,"locales":["hi"]},{"name":"AdNauseam","description":"Wehren Sie sich gegen Werbungs Überwachung","creator":"Daniel C. Howe","homepageURL":"https://rednoise.org/daniel","developers":null,"translators":null,"contributors":null,"locales":["de"]},{"name":"AdNauseam","description":"Kjemp tilbake mot reklameovervåkning","creator":"Daniel C. Howe","homepageURL":"https://rednoise.org/daniel","developers":null,"translators":null,"contributors":null,"locales":["nb"]},{"name":"AdNauseam","description":"一款被设计为对抗来自广告网络追踪的扩展","creator":"Daniel C. Howe","homepageURL":"https://rednoise.org/daniel","developers":null,"translators":null,"contributors":null,"locales":["zh-CN"]},{"name":"AdNauseam","description":"Противодействие рекламному шпионажу","creator":"Daniel C. Howe","homepageURL":"https://rednoise.org/daniel","developers":null,"translators":null,"contributors":null,"locales":["ru"]},{"name":"AdNauseam","description":"Zwalczaj inwigilację reklamową","creator":"Daniel C. Howe","homepageURL":"https://rednoise.org/daniel","developers":null,"translators":null,"contributors":null,"locales":["pl"]},{"name":"AdNauseam","description":"Taistele mainonnan seurantaa vastaan","creator":"Daniel C. Howe","homepageURL":"https://rednoise.org/daniel","developers":null,"translators":null,"contributors":null,"locales":["fi"]},{"name":"AdNauseam","description":"Combata la vigilancia publicitaria","creator":"Daniel C. Howe","homepageURL":"https://rednoise.org/daniel","developers":null,"translators":null,"contributors":null,"locales":["es"]},{"name":"AdNauseam","description":"Lute contra a vigilância publicitária","creator":"Daniel C. Howe","homepageURL":"https://rednoise.org/daniel","developers":null,"translators":null,"contributors":null,"locales":["pt-BR"]},{"name":"AdNauseam","description":"一款被設計為對抗來自廣告網絡追蹤的擴展","creator":"Daniel C. Howe","homepageURL":"https://rednoise.org/daniel","developers":null,"translators":null,"contributors":null,"locales":["zh-TW"]}],"targetApplications":[{"id":"toolkit@mozilla.org","minVersion":"68.0","maxVersion":"*"}],"targetPlatforms":[],"signedState":2,"signedDate":1686648922000,"seen":true,"dependencies":[],"incognito":"spanning","userPermissions":{"permissions":["dns","management","menus","privacy","storage","tabs","unlimitedStorage","webNavigation","webRequest","webRequestBlocking"],"origins":["","http://*/*","https://*/*","file://*/*","https://easylist.to/*","https://*.fanboy.co.nz/*","https://filterlists.com/*","https://forums.lanik.us/*","https://github.com/*","https://*.github.io/*","https://*.letsblock.it/*"]},"optionalPermissions":{"permissions":[],"origins":[]},"icons":{"48":"img/icon-48.png","96":"img/icon-96.png"},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":null,"hidden":false,"installTelemetryInfo":{"source":"about:addons","method":"install-from-file"},"recommendationState":{"validNotAfter":1844436921000,"validNotBefore":1686648921000,"states":["recommended","recommended-android"]},"rootURI":"jar:file:///home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/extensions/adnauseam@rednoise.org.xpi!/","location":"app-profile"},{"id":"{60f82f00-9ad5-4de5-b31c-b16a47c51558}","syncGUID":"{e91096f7-0d31-427d-acbe-f24239d3cab3}","version":"0.5rc2","type":"extension","loader":null,"installOrigins":null,"manifestVersion":2,"optionsURL":"options.html","optionsType":3,"optionsBrowserStyle":false,"aboutURL":null,"defaultLocale":{"name":"Cookie Quick Manager","description":"An addon to manage (view, search, create, edit, delete, backup, restore) cookies.","creator":"Ysard","homepageURL":"https://github.com/ysard/cookie-quick-manager","developers":null,"translators":null,"contributors":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"embedderDisabled":false,"installDate":1688876544218,"updateDate":1688876580295,"applyBackgroundUpdates":1,"path":"/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/extensions/{60f82f00-9ad5-4de5-b31c-b16a47c51558}.xpi","skinnable":false,"sourceURI":"file:///home/r0r5chach/Downloads/cookie_quick_manager.xpi","releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"strictCompatibility":true,"locales":[{"name":"Cookie Quick Manager","description":"An addon to manage (view, search, create, edit, delete, backup, restore) cookies.","creator":"Ysard","homepageURL":"https://github.com/ysard/cookie-quick-manager","developers":null,"translators":null,"contributors":null,"locales":["en"]},{"name":"Cookie Quick Manager","description":"Un gestionnaire de cookies pour les visualiser, les rechercher, les éditer, les ajouter, les supprimer, les sauvegarder ou les restaurer.","creator":"Ysard","homepageURL":"https://github.com/ysard/cookie-quick-manager","developers":null,"translators":null,"contributors":null,"locales":["fr"]},{"name":"Cookie Quick Manager","description":"Ein Add-on zur Cookieverwaltung (ansehen, durchsuchen, erstellen, editieren, löschen, sichern, wiederherstellen).","creator":"Ysard","homepageURL":"https://github.com/ysard/cookie-quick-manager","developers":null,"translators":null,"contributors":null,"locales":["de"]}],"targetApplications":[{"id":"toolkit@mozilla.org","minVersion":"56.0","maxVersion":"*"}],"targetPlatforms":[],"signedState":2,"signedDate":1556300000000,"seen":true,"dependencies":[],"incognito":"spanning","userPermissions":{"permissions":["activeTab","browsingData","contextualIdentities","cookies","privacy","storage"],"origins":[""]},"optionalPermissions":{"permissions":["clipboardWrite"],"origins":[]},"icons":{"48":"icons/icon48.png","96":"icons/icon96.png"},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":null,"hidden":false,"installTelemetryInfo":{"source":"about:addons","method":"install-from-file"},"recommendationState":{"validNotAfter":1720605622000,"validNotBefore":1562817622000,"states":["recommended"]},"rootURI":"jar:file:///home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/extensions/%7B60f82f00-9ad5-4de5-b31c-b16a47c51558%7D.xpi!/","location":"app-profile"},{"id":"addon@darkreader.org","syncGUID":"{225f0d5d-9cd0-4bae-94f7-f11ed298fe03}","version":"4.9.64","type":"extension","loader":null,"updateURL":null,"installOrigins":null,"manifestVersion":2,"optionsURL":null,"optionsType":null,"optionsBrowserStyle":true,"aboutURL":null,"defaultLocale":{"name":"Dark Reader","description":"Dark mode for every website. Take care of your eyes, use dark theme for night and daily browsing.","creator":"Alexander Shutau","developers":null,"translators":null,"contributors":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"embedderDisabled":false,"installDate":1688876492045,"updateDate":1688876581359,"applyBackgroundUpdates":1,"path":"/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/extensions/addon@darkreader.org.xpi","skinnable":false,"sourceURI":"file:///home/r0r5chach/Downloads/darkreader.xpi","releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"strictCompatibility":true,"locales":[{"name":"Dark Reader","description":"Dark mode for every website. Take care of your eyes, use dark theme for night and daily browsing.","creator":"Alexander Shutau","developers":null,"translators":null,"contributors":null,"locales":["en"]},{"name":"Dark Reader","description":"すべてのウェブサイトにダークテーマを適用します。夜間や毎日のブラウジングにDark Readerを使用し、あなたの目を気遣います。","creator":"Alexander Shutau","developers":null,"translators":null,"contributors":null,"locales":["ja"]},{"name":"Dark Reader","description":"Tema escuro para todos os websites. Cuide dos seus olhos, use o Dark Reader para navegação noturna e diária.","creator":"Alexander Shutau","developers":null,"translators":null,"contributors":null,"locales":["pt-PT"]},{"name":"Dark Reader","description":"ప్రతి వెబ్‌సైట్‌కి ముదురు థీమ్. మీ కళ్లను కాపాడుకోండి, రాత్రి మరియు పగలు బ్రౌజింగ్ట్‌కి ముదురు థీమ్ ఉపయోగించండి.","creator":"Alexander Shutau","developers":null,"translators":null,"contributors":null,"locales":["te"]},{"name":"Dark Reader","description":"Thème sombre partout sur le net. Détendez vous et vos yeux, profitez d'un thème sombre sur internet jour et nuit.","creator":"Alexander Shutau","developers":null,"translators":null,"contributors":null,"locales":["fr"]},{"name":"Dark Reader","description":"Mode malam untuk semua situs web. Menjaga mata anda, menggunakan tema gelap untuk berselancar siang dan malam hari.","creator":"Alexander Shutau","developers":null,"translators":null,"contributors":null,"locales":["id"]},{"name":"Dark Reader","description":"প্রত্যেক ওয়েবসাইটের জন্য ডার্কমোড। নিজ চোখের যত্ম নিন, নিত্যকার ব্রাউজিং এর জন্য ব্যবহার করুন ডার্ক থিম।","creator":"Alexander Shutau","developers":null,"translators":null,"contributors":null,"locales":["bn"]},{"name":"Dark Reader","description":"حالت تاریک برای همه سایت ها. مراقب چشمانتان باشید، برای وبگردی در شب یا روز از حالت تاریک استفاده کنید.","creator":"Alexander Shutau","developers":null,"translators":null,"contributors":null,"locales":["fa-IR"]},{"name":"Dark Reader","description":"Mörkt läge på alla webbplatser. Ta hand om dina ögon och använd ett mörkt tema för att surfa på natten och dagen.","creator":"Alexander Shutau","developers":null,"translators":null,"contributors":null,"locales":["sv"]},{"name":"Dark Reader","description":"Tmavý motiv pro každou stránku. Používejte Dark Reader pro celodenní prohlížení webu a šetřete tak své oči.","creator":"Alexander Shutau","developers":null,"translators":null,"contributors":null,"locales":["cs"]},{"name":"Dark Reader","description":"Темний вигляд для кожного мережевого сайту. Піклуйтеся про свої очі, використовуйте темний вид для нічного та щоденного перегляду.","creator":"Alexander Shutau","developers":null,"translators":null,"contributors":null,"locales":["uk"]},{"name":"Dark Reader","description":"සෑම වෙබ් අඩවියක් සදහාම Dark mode. ඔබේ ඇස් සුරකින්න, රාත්‍රී සහ දිනපතා වෙබ් අඩවි ගවේෂණය කිරීමේදී Dark mode භාවිතා කරන්න.","creator":"Alexander Shutau","developers":null,"translators":null,"contributors":null,"locales":["si"]},{"name":"Dark Reader","description":"الوضع المظلم لجميع المواقع. اعتن بعينيك، استعمل التنسيق الداكن للتصفح اليومي في الليل.","creator":"Alexander Shutau","developers":null,"translators":null,"contributors":null,"locales":["ar"]},{"name":"Dark Reader","description":"Chế độ tối cho mọi trang web. Bảo vệ đôi mắt của bạn, sử dụng khi duyệt web vào ban đêm và hàng ngày.","creator":"Alexander Shutau","developers":null,"translators":null,"contributors":null,"locales":["vi"]},{"name":"Dark Reader","description":"모든 웹사이트에 다크 모드를 적용합니다. 밤이나 일상적인 웹 브라우징을 할 때 어두운 테마를 사용하여 눈을 보호하십시오.","creator":"Alexander Shutau","developers":null,"translators":null,"contributors":null,"locales":["ko"]},{"name":"Dark Reader","description":"Modo oscuro para cada sitio web. Cuide sus ojos, use el tema oscuro para la navegación nocturna y diaria.","creator":"Alexander Shutau","developers":null,"translators":null,"contributors":null,"locales":["es-419"]},{"name":"Dark Reader","description":"Tema scuro per ogni sito. Prenditi cura dei tuoi occhi, usa Dark Reader per navigare giorno e notte.","creator":"Alexander Shutau","developers":null,"translators":null,"contributors":null,"locales":["it"]},{"name":"Dark Reader","description":"Mørkt tema for alle nettsteder. Ta vare på øynene, bruk Dark Reader for nettleseren, dag og kveld.","creator":"Alexander Shutau","developers":null,"translators":null,"contributors":null,"locales":["no"]},{"name":"Dark Reader","description":"हर वेबसाइट के लिए डार्क थीम। अपनी आंखों की देखभाल करें, रात और हर रोज़ की ब्राउज़िंग के लिए डार्क रीडर का उपयोग करें।","creator":"Alexander Shutau","developers":null,"translators":null,"contributors":null,"locales":["hi"]},{"name":"Dark Reader","description":"เปลี่ยนเป็นโหมดมืดให้กับทุกๆเว็บเพื่อปกป้องสายตาของคุณ ใช้ธีมสีมืดสำหรับตอนกลางคืนและการท่องเว็บในชีวิตประจำวัน","creator":"Alexander Shutau","developers":null,"translators":null,"contributors":null,"locales":["th"]},{"name":"Dark Reader","description":"Dunkles Design für jede Website. Schonen Sie Ihre Augen und verwenden Sie Dark Reader für die Nacht und das tägliche Surfen.","creator":"Alexander Shutau","developers":null,"translators":null,"contributors":null,"locales":["de"]},{"name":"Dark Reader","description":"Dark mode for every website. Take care of your eyes, use dark theme for night and daily browsing.","creator":"Alexander Shutau","developers":null,"translators":null,"contributors":null,"locales":["en-GB"]},{"name":"Dark Reader","description":"Tmavý režim pre každú stránku. Šetrite svoje oči a používajte tmavý motív po celý deň.","creator":"Alexander Shutau","developers":null,"translators":null,"contributors":null,"locales":["sk"]},{"name":"Dark Reader","description":"Tamni mod za svaki sajt. Pazite na svoje oči, koristite tamnu temu danju i noću.","creator":"Alexander Shutau","developers":null,"translators":null,"contributors":null,"locales":["sr"]},{"name":"Dark Reader","description":"حالت تاریک برای همه سایت ها. مراقب چشمانتان باشید، برای وبگردی در شب یا روز از حالت تاریک استفاده کنید.","creator":"Alexander Shutau","developers":null,"translators":null,"contributors":null,"locales":["fa"]},{"name":"Dark Reader","description":"Mod gelap untuk setiap laman web. Jaga mata anda, gunakan tema gelap untuk melayari laman web, malam dan siang.","creator":"Alexander Shutau","developers":null,"translators":null,"contributors":null,"locales":["ms"]},{"name":"Dark Reader","description":"适用于任何网站的暗色主题。关爱眼睛,就使用 Dark Reader 进行日常浏览。","creator":"Alexander Shutau","developers":null,"translators":null,"contributors":null,"locales":["zh-CN"]},{"name":"Dark Reader","description":"Тёмная тема для каждого сайта. Берегите зрение, используйте Дарк Ридер для ночного или ежедневного просмотра веб-страниц.","creator":"Alexander Shutau","developers":null,"translators":null,"contributors":null,"locales":["ru"]},{"name":"Dark Reader","description":"Tryb ciemny dla wszystkich stron internetowych. Zadbaj o swoje oczy, używaj ciemnego motywu przeglądając w dzień i w nocy.","creator":"Alexander Shutau","developers":null,"translators":null,"contributors":null,"locales":["pl"]},{"name":"Dark Reader","description":"Mørk tilstand for alle hjemmesider. Beskyt dine øjne og brug mørke temaer for browsing on dagen og natten.","creator":"Alexander Shutau","developers":null,"translators":null,"contributors":null,"locales":["da-DK"]},{"name":"Dark Reader","description":"Dark mode para sa lahat ng website. Alagaan ang iyong mga mata, gamitin ang dark theme para sa gabi at pang-araw-araw na browsing.","creator":"Alexander Shutau","developers":null,"translators":null,"contributors":null,"locales":["fil"]},{"name":"Dark Reader","description":"Цёмная Тэма для кожнага сайта. Беражыце свае вочы, карыстайцеся Дарк Рыдарам для начнога ці штодзённага прагляду вэб-старонак.","creator":"Alexander Shutau","developers":null,"translators":null,"contributors":null,"locales":["be"]},{"name":"Dark Reader","description":"Temă întunecată pentru orice site. Ai grijă de ochii tăi, folosește Dark Reader pentru cititul noaptea și de zi cu zi.","creator":"Alexander Shutau","developers":null,"translators":null,"contributors":null,"locales":["ro"]},{"name":"Dark Reader","description":"Dark mode for every website. Take care of your eyes, use dark theme for night and daily browsing.","creator":"Alexander Shutau","developers":null,"translators":null,"contributors":null,"locales":["en-US"]},{"name":"Dark Reader","description":"Σκούρα εμφάνιση για όλες τις ιστοσελίδες. Φροντίστε τα μάτια σας κάνοντας χρήση σκούρας εμφάνισης στο καθημερινό σας σερφάρισμα.","creator":"Alexander Shutau","developers":null,"translators":null,"contributors":null,"locales":["el"]},{"name":"Dark Reader","description":"Tema oscuro para todos los sitios. Cuide sus ojos, utilice Dark Reader para navegar durante el día y la noche.","creator":"Alexander Shutau","developers":null,"translators":null,"contributors":null,"locales":["es"]},{"name":"Dark Reader","description":"Tema escuro para todos os sites. Mantenha os seus olhos relaxados usando o tema escuro em sua navegação diária.","creator":"Alexander Shutau","developers":null,"translators":null,"contributors":null,"locales":["pt-BR"]},{"name":"Dark Reader","description":"黑色主題,適用於任何網站。關愛眼睛,使用Dark Reader進行夜間和日間瀏覽。","creator":"Alexander Shutau","developers":null,"translators":null,"contributors":null,"locales":["zh-TW"]},{"name":"Dark Reader","description":"מצב אפל לכל אתר. תשמור על העיניים שלך, השתמש בעיצוב כהה לגלישה בלילה וגם ביום.","creator":"Alexander Shutau","developers":null,"translators":null,"contributors":null,"locales":["he"]},{"name":"Dark Reader","description":"Her web sitesi için koyu mod. Gözlerinize iyi bakın, gece ve günlük gezinti için koyu renk tema kullanın.","creator":"Alexander Shutau","developers":null,"translators":null,"contributors":null,"locales":["tr"]},{"name":"Dark Reader","description":"Donkere modus voor elke website. Zorg goed voor je ogen, gebruik donkere modus voor gebruik in de nacht of zelfs overdag.","creator":"Alexander Shutau","developers":null,"translators":null,"contributors":null,"locales":["nl"]}],"targetApplications":[{"id":"toolkit@mozilla.org","minVersion":"54.0","maxVersion":"*"}],"targetPlatforms":[],"signedState":2,"signedDate":1687782684000,"seen":true,"dependencies":[],"incognito":"spanning","userPermissions":{"permissions":["alarms","contextMenus","storage","tabs","theme"],"origins":[""]},"optionalPermissions":{"permissions":[],"origins":[]},"icons":{"16":"icons/dr_16.png","48":"icons/dr_48.png","128":"icons/dr_128.png"},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":null,"hidden":false,"installTelemetryInfo":{"source":"about:addons","method":"install-from-file"},"recommendationState":{"validNotAfter":1845570684000,"validNotBefore":1687782684000,"states":["recommended-android","recommended"]},"rootURI":"jar:file:///home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/extensions/addon@darkreader.org.xpi!/","location":"app-profile"},{"id":"jid1-ZAdIEUB7XOzOJw@jetpack","syncGUID":"{09e379ea-cd35-4f2d-b6df-997203b56c16}","version":"2023.7.8","type":"extension","loader":null,"updateURL":null,"installOrigins":null,"manifestVersion":2,"optionsURL":"html/options.html","optionsType":5,"optionsBrowserStyle":true,"aboutURL":null,"defaultLocale":{"name":"DuckDuckGo Privacy Essentials","description":"Privacy, simplified. Protect your data as you search and browse: tracker blocking, smarter encryption, private search, and more.","creator":null,"developers":null,"translators":null,"contributors":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"embedderDisabled":false,"installDate":1688876547898,"updateDate":1688876582631,"applyBackgroundUpdates":1,"path":"/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/extensions/jid1-ZAdIEUB7XOzOJw@jetpack.xpi","skinnable":false,"sourceURI":"file:///home/r0r5chach/Downloads/duckduckgo.xpi","releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"strictCompatibility":true,"locales":[{"name":"DuckDuckGo Privacy Essentials","description":"Privacy, simplified. Protect your data as you search and browse: tracker blocking, smarter encryption, private search, and more.","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["en"]},{"name":"DuckDuckGo Privacy Essentials","description":"Privacy, simplified. Protect your data as you search and browse: tracker blocking, smarter encryption, private search, and more.","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["ja"]},{"name":"DuckDuckGo Privacy Essentials","description":"Privacy, simplified. Protect your data as you search and browse: tracker blocking, smarter encryption, private search, and more.","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["et"]},{"name":"DuckDuckGo Privacy Essentials","description":"Privacy, simplified. Protect your data as you search and browse: tracker blocking, smarter encryption, private search, and more.","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["pt-PT"]},{"name":"DuckDuckGo Privacy Essentials","description":"Privacy, simplified. Protect your data as you search and browse: tracker blocking, smarter encryption, private search, and more.","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["fr"]},{"name":"DuckDuckGo Privacy Essentials","description":"Privacy, simplified. Protect your data as you search and browse: tracker blocking, smarter encryption, private search, and more.","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["bg"]},{"name":"DuckDuckGo Privacy Essentials","description":"Privacy, simplified. Protect your data as you search and browse: tracker blocking, smarter encryption, private search, and more.","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["id"]},{"name":"DuckDuckGo Privacy Essentials","description":"Privacy, simplified. Protect your data as you search and browse: tracker blocking, smarter encryption, private search, and more.","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["sv"]},{"name":"DuckDuckGo Privacy Essentials","description":"Privacy, simplified. Protect your data as you search and browse: tracker blocking, smarter encryption, private search, and more.","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["cs"]},{"name":"DuckDuckGo Privacy Essentials","description":"Privacy, simplified. Protect your data as you search and browse: tracker blocking, smarter encryption, private search, and more.","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["hu"]},{"name":"DuckDuckGo Privacy Essentials","description":"Privacy, simplified. Protect your data as you search and browse: tracker blocking, smarter encryption, private search, and more.","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["ar"]},{"name":"DuckDuckGo Privacy Essentials","description":"Privacy, simplified. Protect your data as you search and browse: tracker blocking, smarter encryption, private search, and more.","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["ko"]},{"name":"DuckDuckGo Privacy Essentials","description":"Privacy, simplified. Protect your data as you search and browse: tracker blocking, smarter encryption, private search, and more.","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["it"]},{"name":"DuckDuckGo Privacy Essentials","description":"Privacy, simplified. Protect your data as you search and browse: tracker blocking, smarter encryption, private search, and more.","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["no"]},{"name":"DuckDuckGo Privacy Essentials","description":"Privacy, simplified. Protect your data as you search and browse: tracker blocking, smarter encryption, private search, and more.","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["lt"]},{"name":"DuckDuckGo Privacy Essentials","description":"Privacy, simplified. Protect your data as you search and browse: tracker blocking, smarter encryption, private search, and more.","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["de"]},{"name":"DuckDuckGo Privacy Essentials","description":"Privacy, simplified. Protect your data as you search and browse: tracker blocking, smarter encryption, private search, and more.","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["en-GB"]},{"name":"DuckDuckGo Privacy Essentials","description":"Privacy, simplified. Protect your data as you search and browse: tracker blocking, smarter encryption, private search, and more.","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["nb"]},{"name":"DuckDuckGo Privacy Essentials","description":"Privacy, simplified. Protect your data as you search and browse: tracker blocking, smarter encryption, private search, and more.","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["ca"]},{"name":"DuckDuckGo Privacy Essentials","description":"Privacy, simplified. Protect your data as you search and browse: tracker blocking, smarter encryption, private search, and more.","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["sk"]},{"name":"DuckDuckGo Privacy Essentials","description":"Privacy, simplified. Protect your data as you search and browse: tracker blocking, smarter encryption, private search, and more.","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["zh-CN"]},{"name":"DuckDuckGo Privacy Essentials","description":"Privacy, simplified. Protect your data as you search and browse: tracker blocking, smarter encryption, private search, and more.","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["ru"]},{"name":"DuckDuckGo Privacy Essentials","description":"Privacy, simplified. Protect your data as you search and browse: tracker blocking, smarter encryption, private search, and more.","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["pl"]},{"name":"DuckDuckGo Privacy Essentials","description":"Privacy, simplified. Protect your data as you search and browse: tracker blocking, smarter encryption, private search, and more.","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["sl"]},{"name":"DuckDuckGo Privacy Essentials","description":"Privacy, simplified. Protect your data as you search and browse: tracker blocking, smarter encryption, private search, and more.","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["lv"]},{"name":"DuckDuckGo Privacy Essentials","description":"Privacy, simplified. Protect your data as you search and browse: tracker blocking, smarter encryption, private search, and more.","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["hr"]},{"name":"DuckDuckGo Privacy Essentials","description":"Privacy, simplified. Protect your data as you search and browse: tracker blocking, smarter encryption, private search, and more.","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["fi"]},{"name":"DuckDuckGo Privacy Essentials","description":"Privacy, simplified. Protect your data as you search and browse: tracker blocking, smarter encryption, private search, and more.","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["ro"]},{"name":"DuckDuckGo Privacy Essentials","description":"Privacy, simplified. Protect your data as you search and browse: tracker blocking, smarter encryption, private search, and more.","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["el"]},{"name":"DuckDuckGo Privacy Essentials","description":"Privacy, simplified. Protect your data as you search and browse: tracker blocking, smarter encryption, private search, and more.","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["es"]},{"name":"DuckDuckGo Privacy Essentials","description":"Privacy, simplified. Protect your data as you search and browse: tracker blocking, smarter encryption, private search, and more.","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["zh-TW"]},{"name":"DuckDuckGo Privacy Essentials","description":"Privacy, simplified. Protect your data as you search and browse: tracker blocking, smarter encryption, private search, and more.","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["da"]},{"name":"DuckDuckGo Privacy Essentials","description":"Privacy, simplified. Protect your data as you search and browse: tracker blocking, smarter encryption, private search, and more.","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["tr"]},{"name":"DuckDuckGo Privacy Essentials","description":"Privacy, simplified. Protect your data as you search and browse: tracker blocking, smarter encryption, private search, and more.","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["zh-HK"]},{"name":"DuckDuckGo Privacy Essentials","description":"Privacy, simplified. Protect your data as you search and browse: tracker blocking, smarter encryption, private search, and more.","creator":null,"developers":null,"translators":null,"contributors":null,"locales":["nl"]}],"targetApplications":[{"id":"toolkit@mozilla.org","minVersion":"91.0","maxVersion":"*"}],"targetPlatforms":[],"signedState":2,"signedDate":1687881273000,"seen":true,"dependencies":[],"incognito":"spanning","userPermissions":{"permissions":["activeTab","alarms","contextMenus","storage","tabs","webNavigation","webRequest","webRequestBlocking"],"origins":["*://*/*",""]},"optionalPermissions":{"permissions":[],"origins":[]},"icons":{"16":"img/icon_16.png","48":"img/icon_48.png","128":"img/icon_128.png"},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":null,"hidden":false,"installTelemetryInfo":{"source":"about:addons","method":"install-from-file"},"recommendationState":{"validNotAfter":1845669273000,"validNotBefore":1687881273000,"states":["recommended"]},"rootURI":"jar:file:///home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/extensions/jid1-ZAdIEUB7XOzOJw@jetpack.xpi!/","location":"app-profile"},{"id":"https-everywhere-eff@eff.org","syncGUID":"{62e04d8b-3a12-43ab-b5fe-0b0fe738f434}","version":"2022.5.11","type":"extension","loader":null,"updateURL":"https://www.eff.org/files/https-everywhere-updates.json","installOrigins":null,"manifestVersion":2,"optionsURL":"pages/options/index.html","optionsType":3,"optionsBrowserStyle":false,"aboutURL":null,"defaultLocale":{"name":"HTTPS Everywhere","description":"Encrypt the Web! Automatically use HTTPS security on many sites.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"embedderDisabled":false,"installDate":1688876499756,"updateDate":1688876583929,"applyBackgroundUpdates":1,"path":"/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/extensions/https-everywhere-eff@eff.org.xpi","skinnable":false,"sourceURI":"file:///home/r0r5chach/Downloads/https-everywhere.xpi","releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"strictCompatibility":true,"locales":[{"name":"HTTPS Everywhere","description":"Encrypt the Web! Automatically use HTTPS security on many sites.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["en"]},{"name":"HTTPS Everywhere","description":"Web を暗号化します! 多くのウェブサイト上で HTTPS セキュリティを自動的に適用します。","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["ja"]},{"name":"HTTPS Kõikjal","description":"Krüpteeri veeb! Kasuta HTTPS turvalaiendust automaatselt paljudel lehtedel.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["et"]},{"name":"HTTPS Everywhere","description":"Encrypt the Web! Automatically use HTTPS security on many sites.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["oc"]},{"name":"HTTPS Everywhere","description":"Encripte a Web! Utilize automaticamente a segurança HTTPS em vários sites.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["pt-PT"]},{"name":"HTTPS Everywhere","description":"Amgriptiwch yr We! Defnyddiwch diogelwch HTTPS yn awtomatig ar nifer o wefanau.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["cy"]},{"name":"HTTPS Everywhere","description":"Encrypt the Web! Automatically use HTTPS security on many sites.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["te"]},{"name":"HTTPS Everywhere","description":"Encrypt the Web! Automatically use HTTPS security on many sites.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["fr-FR"]},{"name":"HTTPS Everywhere","description":"Encripta la Web! Usar seguridá HTTPS automáticamente en munchos sitios","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["ast"]},{"name":"HTTPS partout","description":"Chiffrez la Toile ! Utilisez automatiquement la sécurité HTTPS avec de nombreux sites.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["fr"]},{"name":"HTTPS Everywhere","description":"Encrypt the Web! Automatically use HTTPS security on many sites.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["fy"]},{"name":"HTTPS Everywhere","description":"អ៊ិនគ្រីប​តំបន់​បណ្ដាញ! ប្រើ​សុវត្ថិភាព HTTPS នៅ​លើ​បណ្ដាញ​​ជា​ច្រើន។","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["km"]},{"name":"HTTPS Навсякъде","description":"Шифрирайте мрежата! Използвайте автоматична HTTPS защита на много страници.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["bg"]},{"name":"HTTPS Everywhere","description":"Enkripsi web-nya! Gunakan keamanan HTTPS secara otomatis di banyak situs.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["id"]},{"name":"HTTPS ਐਵਰੀਵੇਅਰ","description":"ਵੈੱਬ ਨੂੰ ਇੰਕ੍ਰਿਪਟ ਕਰੋ! ਕਈ ਸਾਈਟਾਂ ਲਈ ਆਪਣੇ ਆਪ HTTPS ਸੁਰੱਖਿਆ ਵਰਤੋ।","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["pa"]},{"name":"সর্বত্র HTTPS","description":"ওয়েবকে এনক্রিপ্ট করুন! বহু সাইটে স্বয়ংক্রিয়ভাবে HTTPS নিরাপত্তা ব্যবহার করুন।","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["bn"]},{"name":"HTTPS Everywhere","description":"Encrypt the Web! Automatically use HTTPS security on many sites.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["af-ZA"]},{"name":"HTTPS Everywhere","description":"Weba enkriptatu! Automatikoki erabili HTTPS segurtasuna leku askotan.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["eu"]},{"name":"HTTPS Everywhere","description":"Kryptera webben! Använd HTTPS automatiskt på många webbplatser.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["sv"]},{"name":"HTTPS Everywhere","description":"Šifrujte! Používejte automaticky zabezpečené HTTPS na mnoha stránkách.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["cs"]},{"name":"HTTPS Everywhere","description":"Encrypt the Web! Automatically use HTTPS security on many sites.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["templates"]},{"name":"HTTPS Everywhere","description":"Titkosítsa a Web-et! Automatikusan használja a HTTPS titkosítást a legtöbb oldalon.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["hu"]},{"name":"HTTPS Everywhere","description":"Encrypt the Web! Automatically use HTTPS security on many sites.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["or"]},{"name":"HTTPS Everywhere","description":"Encrypt the Web! Automatically use HTTPS security on many sites.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["kn"]},{"name":"HTTPS-allsstaðar","description":"Dulkóðaðu vefinn! Notaðu sjálfkrafa HTTPS-öryggi á mörgum vefsvæðum.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["is"]},{"name":"HTTPS Everywhere","description":"Krypter veven! Bruk HTTPS-tryggleik automatisk på mange sider.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["nn"]},{"name":"HTTPS Everywhere","description":"Зашифруйте мережу! Автоматично використовуйте безпеку HTTPS на багатьох сайтах.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["uk"]},{"name":"HTTPS Everywhere","description":"Sulitkan Sesawang! Guna HTTPS secara automatik di kebanyakan laman.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["ms-MY"]},{"name":"ہائپر ٹیکسٹ ٹرانسفر پروٹوکول سکیور ہر جگہ ","description":"ویب کو خفیہ کریں! خودبخود ہائپر ٹیکسٹ ٹرانسفر پروٹوکول سکیور سکیورٹی زیادہ سائیٹس پر استعمال کریں۔","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["ur"]},{"name":"HTTPS-Ĉie","description":"Ĉifrigu la reton! Aŭtomate uzu HTTPS‐sekurecon ĉe multaj retejoj.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["eo"]},{"name":"HTTPS Everywhere","description":"Encrypt the Web! Automatically use HTTPS security on many sites.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["si"]},{"name":"HTTPS kila mahali","description":"Encrypt mtandao! Moja kwa moja tumia HTTPS usalama kwenye tovuti nyingi.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["sw"]},{"name":"HTTPS Everywhere","description":"شفر شبكة الإنترنت! استخدم تلقائيا تقنية HTTPS للأمان مع الكثير من المواقع.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["ar"]},{"name":"HTTPS Everywhere","description":"Mã hóa Web! Tự động sử dụng bảo mật HTTPS ở nhiều trang web.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["vi"]},{"name":"HTTPS Everywhere","description":"Encrypt the Web! Automatically use HTTPS security on many sites.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["ace"]},{"name":"HTTPS Everywhere","description":"დაშიფრეთ ინტერნეტკავშირი! გამოიყენეთ დაცული HTTPS საიტების უმეტეს ნაწილზე.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["ka"]},{"name":"HTTPS Everywhere","description":"Encrypt the Web! Automatically use HTTPS security on many sites.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["son"]},{"name":"HTTPS Everywhere","description":"웹을 암호화 하세요! 자동으로 여러 사이트에 HTTPS 보안을 사용합니다.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["ko"]},{"name":"HTTPS Everywhere","description":"Encrypt the Web! Automatically use HTTPS security on many sites.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["gd"]},{"name":"HTTPS Everywhere","description":"Cripta il Web! Usa HTTPS automaticamente su numerosi siti.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["it"]},{"name":"HTTPS Everywhere","description":"¡Encriptar la Web! Usar seguridad HTTPS automáticamente en la mayoría de los sitios.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["es-AR"]},{"name":"HTTPS Everywhere","description":"Encrypt the Web! Automatically use HTTPS security on many sites.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["uz"]},{"name":"HTTPS Everywhere","description":"Šifruokite saityną! Automatiškai naudokite HTTPS saugumą daugelyje svetainių.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["lt"]},{"name":"HTTPS Everywhere","description":"Fshehtëzoni Web-in! Përdorni automatikisht në mjaft sajte siguri HTTPS.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["sq"]},{"name":"HTTPS povsod","description":"Šifrirajte splet! Avtomatska uporaba HTTPS zaščite na različnih straneh.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["sl-SI"]},{"name":"HTTPS Everywhere","description":"वेब को एनक्रिप्ट करें! सभी वेबसाइट्स पर स्वतः HTTPS का इस्तेमाल करें.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["hi"]},{"name":"HTTPS Everywhere","description":"Cifra la Red! Automáticamente utiliza seguridades HTTPS en multiples sitios.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["es-MX"]},{"name":"எல்லா இடங்களிலும் HTTPS","description":"வலை Encrypt! தானாகவே பல தளங்களில் HTTPS பாதுகாப்பு பயன்படுத்த.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["ta"]},{"name":"HTTPS Everywhere","description":"බොහෝ වෙබ් අඩවි සඳහා HTTPS ආරක්ෂාව ස්වයංක්‍රීයව පාවිච්චි කරන්න.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["si-LK"]},{"name":"Hər yerdə HTTPS","description":"Veb-i şifrələ! Bir çox saytlarda HTTPS-i avtomatik istifadə et.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["az"]},{"name":"HTTPS Насекаде","description":"Екриптирај го Веб-от! Автоматски користи HTTPS сигурност на многу страни.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["mk"]},{"name":"HTTPS Everywhere","description":"เข้ารหัสลับให้กับเว็บ ใช้มาตรการความปลอดภัย HTTPS กับเว็บไซต์โดยอัตโมมัติ","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["th"]},{"name":"HTTPS Everywhere","description":"Verschlüsselt das Internet! Nutzen Sie HTTPS-Sicherheit automatisch auf vielen Webseiten.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["de"]},{"name":"HTTPS Everywhere","description":"Encrypt the Web! Automatically use HTTPS security on many sites.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["en-GB"]},{"name":"HTTPS सर्वत्र","description":"वेब कूटबद्ध करा ! आपोआप अनेक साइटवर HTTPS सुरक्षा वापरा.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["mr"]},{"name":"HTTPS Everywhere","description":"ဝဘ်ကို ကုဒ်ဖြင့်ပြောင်းပါ။ ဝဘ်ဆိုက် အများအပြားတွင် HTTPS လုံခြုံရေးကို အလိုအလျောက် အသုံးပြုပါ။","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["my"]},{"name":"HTTPS Everywhere","description":"Krypter nettet! Bruk HTTPS-sikkerhet automatisk på mange nettsteder.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["nb"]},{"name":"HTTPS Everywhere","description":"Cifrar a Web! Usar automáticamente seguridade HTTPS en moitos sitios.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["gl"]},{"name":"HTTPS Everywhere","description":"Xifra la Web! Fes servir automàticament la seguretat HTTPS a molts llocs.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["ca"]},{"name":"HTTPS Everywhere","description":"Zašifrujte web! Tento doplnok automatizuje použitie HTTPS na mnohých stránkach.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["sk"]},{"name":"HTTPS Everywhere","description":"Encrypt the Web! Automatically use HTTPS security on many sites.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["zh"]},{"name":"HTTPS Svuda","description":"Šifriraj veb! Automatski koristi HTTPS bezbednosni protokol na velikom broju sajtova.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["sr"]},{"name":"HTTPS Everywhere","description":"Enkripteer die Web! Gebruik HTTPS sekuriteit automaties op baie plekke.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["af"]},{"name":"HTTPS Everywhere","description":"وب را رمزگذاری کنید! از امنیت HTTPS بصورت خودکار برای بسیاری از وب‌سایت‌ها استفاده کنید.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["fa"]},{"name":"എല്ലായിടത്തും എച്ച്ടിടിപിഎസ്","description":"വെബ് രഹസ്യ കോഡുകൾ ആക്കി മാറ്റുക ! തനിയെ നിരവധി സൈറ്റുകളിൽ എഛ് ടി ടി പി എസ് സുരക്ഷിതത്വം ഉപയോഗിക്കുക ","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["ml"]},{"name":"HTTPS Everywhere","description":"Encrypt the Web! Automatically use HTTPS security on many sites.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["ia"]},{"name":"HTTPS Everywhere","description":"加密网络浏览,自动使用 HTTPS 连接访问站点,更加安全。","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["zh-CN"]},{"name":"HTTPS Everywhere","description":"Зашифруйте сеть! Автоматически переключайтесь на безопасный протокол HTTPS там, где это возможно.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["ru"]},{"name":"HTTPS Everywhere","description":"Encrypt the Web! Automatically use HTTPS security on many sites.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["br"]},{"name":"HTTPS Everywhere","description":"Szyfruj sieć! Automatycznie używaj zabezpieczeń HTTPS na wielu stronach.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["pl"]},{"name":"HTTPS Everywhere","description":"Zakodirajte internet! Samodejno uporabite HTTPS zaščito na mnogih spletnih straneh.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["sl"]},{"name":"HTTPS Everywhere","description":"Šifrēt tīmekli! Automātiski lietot HTTPS drošību daudzās vietnēs.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["lv"]},{"name":"HTTPS Everywhere","description":"Šifriraj web! Automatski koristi HTTPS sigurnost na mnogim stranicama.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["hr"]},{"name":"HTTPS Everywhere","description":"Encrypt the Web! Automatically use HTTPS security on many sites.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["ach"]},{"name":"HTTPS Kaikkialla","description":"Salaa verkko automaattisesti käyttäen HTTPS-suojausta monilla sivuilla!","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["fi"]},{"name":"HTTPS Everywhere","description":"Կոդավորե՛ք Վեբը։ Ավտոմատ օգտագործեք HTTPS անվտանգություն շատ կայքերի վրա։","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["hy"]},{"name":"Барлық жерде HTTPS","description":"Вебті шифрлау! Көптеген сайттарда HTTPS қауіпсіздігін автоматты түрде пайдаланыңыз.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["kk"]},{"name":"HTTPS Everywhere","description":"Зашыфруйце Iнтэрнэт! Аўтаматычнае выкарыстанне бяспекі HTTPS на розных сайтах","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["be"]},{"name":"HTTPS Everywhere","description":"Versleutel het Web! Gebruik HTTPS Everywhere automatisch op vele websites.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["nl-BE"]},{"name":"HTTPS Oriunde","description":"Criptează web-ul! Folosește automat securitatea HTTPS pe multe site-uri.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["ro"]},{"name":"HTTPS Everywhere","description":"Šifrirajte web! Automatski koristite HTTPS sigurnost na mnogim web lokacijama.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["bs"]},{"name":"HTTPS Everywhere","description":"Encrypt the Web! Automatically use HTTPS security on many sites.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["en-US"]},{"name":"HTTPS Everywhere","description":"Encrypt the Web! Automatically use HTTPS security on many sites.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["cmn"]},{"name":"HTTPS Everywhere","description":"Encrypt the Web! Automatically use HTTPS security on many sites.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["kab"]},{"name":"HTTPS Everywhere","description":"Encrypt the Web! Automatically use HTTPS security on many sites.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["zh-Hant"]},{"name":"HTTPS Everywhere","description":"વેબ ગોપનીય કરો! ઘણી સાઇટ પર આપમેળે HTTPS સુરક્ષાનો ઉપયોગ કરો.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["gu"]},{"name":"HTTPS Everywhere","description":"Κρυπτογραφήστε το Διαδίκτυο! Αξιοποιήστε αυτόματα την ασφάλεια του HTTPS σε πολλές ιστοσελίδες.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["el"]},{"name":"HTTPS Everywhere","description":"¡Cifre la Web! Utilice automáticamente la seguridad HTTPS en muchos sitios.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["es"]},{"name":"HTTPS Everywhere","description":"Criptografar a Web! Use automaticamente a segurança HTTPS em diversos sites.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["pt-BR"]},{"name":"HTTPS Everywhere","description":"加密整個網路!自動在網站上使用 HTTPS 安全連線。","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["zh-TW"]},{"name":"HTTPS Everywhere","description":"הצפן את הרשת! השתמש באבטחת HTTPS באופן אוטומטי באתרים רבים.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["he"]},{"name":"HTTPS Everywhere","description":"Kryptér webbet! Brug HTTPS-sikkerhed automatisk på mange websteder.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["da"]},{"name":"HTTPS Everywhere","description":"Web iletişiminizi şifreleyin! Birçok sitede otomatik olarak HTTPS güvenliğini kullanın.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["tr"]},{"name":"HTTPS Everywhere","description":"Criptigh an Gréasán! Bain úsáid as slándáil HTTPS go huathoibríoch ar go leor suíomh.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["ga"]},{"name":"HTTPS Everywhere","description":"Encrypt the Web! Automatically use HTTPS security on many sites.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["ro-RO"]},{"name":"HTTPS Everywhere","description":"Encrypt the Web! Automatically use HTTPS security on many sites.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["ar-EG"]},{"name":"HTTPS Everywhere","description":"Encrypt the Web! Automatically use HTTPS security on many sites.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["ne"]},{"name":"「https優先」","description":"將互聯網加密!自動喺網站使用https連線。","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["zh-HK"]},{"name":"HTTPS Everywhere","description":"Versleutel het web! Gebruik automatisch HTTPS-beveiliging op veel websites.","creator":"extension-devs@eff.org","homepageURL":"https://www.eff.org/https-everywhere","developers":null,"translators":null,"contributors":null,"locales":["nl"]}],"targetApplications":[{"id":"toolkit@mozilla.org","minVersion":"52.0","maxVersion":"*"}],"targetPlatforms":[],"signedState":2,"signedDate":1652290912000,"seen":true,"dependencies":[],"incognito":"spanning","userPermissions":{"permissions":["cookies","storage","tabs","webNavigation","webRequest","webRequestBlocking"],"origins":["*://*/*","ftp://*/*"]},"optionalPermissions":{"permissions":[],"origins":[]},"icons":{"48":"images/icons/icon-active-48.png","128":"images/icons/icon-active-128.png"},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":null,"hidden":false,"installTelemetryInfo":{"source":"about:addons","method":"install-from-file"},"recommendationState":null,"rootURI":"jar:file:///home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/extensions/https-everywhere-eff@eff.org.xpi!/","location":"app-profile"},{"id":"support@lastpass.com","syncGUID":"{66d0981d-40b6-4b28-bd24-bd2a2d81859d}","version":"4.116.0.2","type":"extension","loader":null,"updateURL":null,"installOrigins":null,"manifestVersion":2,"optionsURL":"tabDialog.html?dialog=preferences&cmd=open","optionsType":3,"optionsBrowserStyle":false,"aboutURL":null,"defaultLocale":{"name":"LastPass: Free Password Manager","description":"Last Password you will ever need","creator":"LastPass","developers":null,"translators":null,"contributors":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"embedderDisabled":false,"installDate":1688876502706,"updateDate":1688876586261,"applyBackgroundUpdates":1,"path":"/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/extensions/support@lastpass.com.xpi","skinnable":false,"sourceURI":"file:///home/r0r5chach/Downloads/lastpass.xpi","releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"strictCompatibility":true,"locales":[{"name":"LastPass: Free Password Manager","description":"Last Password you will ever need","creator":"LastPass","developers":null,"translators":null,"contributors":null,"locales":["en-US"]},{"name":"LastPass: Free Password Manager","description":"Last Password you will ever need","creator":"LastPass","developers":null,"translators":null,"contributors":null,"locales":["fr"]},{"name":"LastPass: Free Password Manager","description":"Last Password you will ever need","creator":"LastPass","developers":null,"translators":null,"contributors":null,"locales":["it"]},{"name":"LastPass: Free Password Manager","description":"Last Password you will ever need","creator":"LastPass","developers":null,"translators":null,"contributors":null,"locales":["de"]},{"name":"LastPass: Free Password Manager","description":"Last Password you will ever need","creator":"LastPass","developers":null,"translators":null,"contributors":null,"locales":["es"]},{"name":"LastPass: Free Password Manager","description":"Last Password you will ever need","creator":"LastPass","developers":null,"translators":null,"contributors":null,"locales":["pt-BR"]},{"name":"LastPass: Free Password Manager","description":"Last Password you will ever need","creator":"LastPass","developers":null,"translators":null,"contributors":null,"locales":["nl"]}],"targetApplications":[{"id":"toolkit@mozilla.org","minVersion":"52.0","maxVersion":"*"}],"targetPlatforms":[],"signedState":2,"signedDate":1686660091000,"seen":true,"dependencies":[],"incognito":"spanning","userPermissions":{"permissions":["nativeMessaging","contextMenus","idle","notifications","privacy","storage","tabs","webNavigation","webRequest","webRequestBlocking"],"origins":["http://*/*","https://*/*","file:///*","https://lastpass.com/acctsiframe.php*","https://lastpass.eu/acctsiframe.php*","https://lastpass.com/?ac=1*","https://lastpass.com/update_phone.php*","https://lastpass.com/misc_challenge.php*","https://lastpass.com/?securitychallenge=1*","https://lastpass.com/delete_account.php*","https://lastpass.com/otp.php*","https://lastpass.com/enterprise_options.php*","https://lastpass.com/?&ac=1*","https://lastpass.com/enterprise_users.php*","https://lastpass.com/misc_login.php*","https://lastpass.eu/update_phone.php*","https://lastpass.eu/misc_challenge.php*","https://lastpass.eu/?securitychallenge=1*","https://lastpass.eu/delete_account.php*","https://lastpass.eu/otp.php*","https://lastpass.eu/enterprise_options.php*","https://lastpass.eu/?&ac=1*","https://lastpass.eu/?ac=1*","https://lastpass.eu/enterprise_users.php*","https://lastpass.eu/misc_login.php*"]},"optionalPermissions":{"permissions":["clipboardWrite"],"origins":[]},"icons":{"16":"icon2.png","32":"icon2_2x.png","48":"images/icon48.png","128":"images/icon128.png"},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":null,"hidden":false,"installTelemetryInfo":{"source":"about:addons","method":"install-from-file"},"recommendationState":null,"rootURI":"jar:file:///home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/extensions/support@lastpass.com.xpi!/","location":"app-profile"},{"id":"jid1-MnnxcxisBPnSXQ@jetpack","syncGUID":"{c513666a-64ef-43fb-8255-b646a530fb5e}","version":"2023.6.23","type":"extension","loader":null,"updateURL":null,"installOrigins":null,"manifestVersion":2,"optionsURL":"/skin/options.html","optionsType":3,"optionsBrowserStyle":false,"aboutURL":null,"defaultLocale":{"name":"Privacy Badger","description":"Privacy Badger automatically learns to block invisible trackers.","creator":"privacybadger-owner@eff.org","developers":null,"translators":null,"contributors":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"embedderDisabled":false,"installDate":1688876553508,"updateDate":1688876587988,"applyBackgroundUpdates":1,"path":"/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/extensions/jid1-MnnxcxisBPnSXQ@jetpack.xpi","skinnable":false,"sourceURI":"file:///home/r0r5chach/Downloads/privacy_badger.xpi","releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"strictCompatibility":true,"locales":[{"name":"Privacy Badger","description":"Privacy Badger automatically learns to block invisible trackers.","creator":"privacybadger-owner@eff.org","developers":null,"translators":null,"contributors":null,"locales":["en-US"]},{"name":"Privacy Badger","description":"Privacy Badgerは、目に見えないトラッカーを自動的に学習してブロックします。","creator":"privacybadger-owner@eff.org","developers":null,"translators":null,"contributors":null,"locales":["ja"]},{"name":"Privacy Badger","description":"O Privacy Badger aprende automaticamente a bloquear rastreadores invisíveis.","creator":"privacybadger-owner@eff.org","developers":null,"translators":null,"contributors":null,"locales":["pt-PT"]},{"name":"Privacy Badger","description":"Privacy Badger apprend automatiquement à bloquer les traqueurs invisibles.","creator":"privacybadger-owner@eff.org","developers":null,"translators":null,"contributors":null,"locales":["fr"]},{"name":"Privacy Badger","description":"Privacy Badger автоматично се научава да блокира невидими преследвачи.","creator":"privacybadger-owner@eff.org","developers":null,"translators":null,"contributors":null,"locales":["bg"]},{"name":"Privacy Badger","description":"Privacy Badger lär sig automatiskt att blockera osynliga spårare.","creator":"privacybadger-owner@eff.org","developers":null,"translators":null,"contributors":null,"locales":["sv"]},{"name":"Privacy Badger","description":"Privacy Badger se automaticky učí blokovat neviditelné sledovací prvky na webových stránkách.","creator":"privacybadger-owner@eff.org","developers":null,"translators":null,"contributors":null,"locales":["cs"]},{"name":"Privacy Badger","description":"A Privacy Badger automatikusan megtanulja a láthatatlan követők tiltását.","creator":"privacybadger-owner@eff.org","developers":null,"translators":null,"contributors":null,"locales":["hu"]},{"name":"Privacy Badger","description":"Privacy Badger автоматично навчається блокувати невидимі елементи стеження.","creator":"privacybadger-owner@eff.org","developers":null,"translators":null,"contributors":null,"locales":["uk"]},{"name":"Privata Melo","description":"Privata Melo aŭtomate lernas bloki nevideblajn spurilojn.","creator":"privacybadger-owner@eff.org","developers":null,"translators":null,"contributors":null,"locales":["eo"]},{"name":"Privacy Badger","description":"Privacy Badger tự động học cách chặn các máy theo dõi mà chạy ngầm.","creator":"privacybadger-owner@eff.org","developers":null,"translators":null,"contributors":null,"locales":["vi"]},{"name":"«غرير الخصوصية»","description":"يتعلم «غرير الخصوصية» تلقائيا أن يحجب المتعقبات الخفية.","creator":"privacybadger-owner@eff.org","developers":null,"translators":null,"contributors":null,"locales":["ar"]},{"name":"Privacy Badger","description":"Privacy Badger는 자동으로 보이지 않는 추적기를 차단하는 법을 학습합니다.","creator":"privacybadger-owner@eff.org","developers":null,"translators":null,"contributors":null,"locales":["ko"]},{"name":"Privacy Badger","description":"Privacy Badger impara automaticamente a bloccare i tracker invisibili.","creator":"privacybadger-owner@eff.org","developers":null,"translators":null,"contributors":null,"locales":["it"]},{"name":"Privacy Badger","description":"प्राइवेसी बैजर स्वचालित रूप से अदृश्य ट्रैकर्स को अवरोधित करना सीखता है।","creator":"privacybadger-owner@eff.org","developers":null,"translators":null,"contributors":null,"locales":["hi"]},{"name":"Privacy Badger","description":"Privacy Badger lernt automatisch, unsichtbare Tracker zu blocken.","creator":"privacybadger-owner@eff.org","developers":null,"translators":null,"contributors":null,"locales":["de"]},{"name":"Privacy Badger","description":"El Privacy Badger aprèn automàticament a blocar rastrejadors invisibles.","creator":"privacybadger-owner@eff.org","developers":null,"translators":null,"contributors":null,"locales":["ca"]},{"name":"پرایوسی بجر","description":"پرایوسی بجر به صورت خودکار یاد می‌گیرد تا ردیاب‌های مخفی را مسدود کند.","creator":"privacybadger-owner@eff.org","developers":null,"translators":null,"contributors":null,"locales":["fa"]},{"name":"隐私獾","description":"隐私獾会自动学习去阻止不可见的追踪器。","creator":"privacybadger-owner@eff.org","developers":null,"translators":null,"contributors":null,"locales":["zh-CN"]},{"name":"Privacy Badger","description":"Privacy Badger автоматически учится блокировать невидимые трекеры.","creator":"privacybadger-owner@eff.org","developers":null,"translators":null,"contributors":null,"locales":["ru"]},{"name":"Privacy Badger","description":"Privacy Badger automatycznie uczy się blokować niewidoczne elementy śledzące.","creator":"privacybadger-owner@eff.org","developers":null,"translators":null,"contributors":null,"locales":["pl"]},{"name":"Privacy Badger","description":"Privacy Badger oppii automaattisesti estämään näkymättömät seurannat.","creator":"privacybadger-owner@eff.org","developers":null,"translators":null,"contributors":null,"locales":["fi"]},{"name":"Privacy Badger","description":"Το Privacy Badger μαθαίνει αυτόματα να αποκλείει \"αόρατους\" ιχνηλάτες.","creator":"privacybadger-owner@eff.org","developers":null,"translators":null,"contributors":null,"locales":["el"]},{"name":"Privacy Badger","description":"Privacy Badger aprende automáticamente a bloquear rastreadores invisibles.","creator":"privacybadger-owner@eff.org","developers":null,"translators":null,"contributors":null,"locales":["es"]},{"name":"Privacy Badger","description":"O Privacy Badger aprende automaticamente a bloquear rastreadores invisíveis.","creator":"privacybadger-owner@eff.org","developers":null,"translators":null,"contributors":null,"locales":["pt-BR"]},{"name":"Privacy Badger","description":"Privacy Badger 會自動學習並阻擋不可見的追蹤器。","creator":"privacybadger-owner@eff.org","developers":null,"translators":null,"contributors":null,"locales":["zh-TW"]},{"name":"Privacy Badger","description":"Privacy Badger לומד באופן אוטומטי לחסום עוקבנים בלתי נראים.","creator":"privacybadger-owner@eff.org","developers":null,"translators":null,"contributors":null,"locales":["he"]},{"name":"Privacy Badger","description":"Privacy Badger lærer automatisk at blokere usynlige sporinger.","creator":"privacybadger-owner@eff.org","developers":null,"translators":null,"contributors":null,"locales":["da"]},{"name":"Privacy Badger","description":"Privacy Badger görünmez takipçileri engellemeyi otomatik olarak öğrenir.","creator":"privacybadger-owner@eff.org","developers":null,"translators":null,"contributors":null,"locales":["tr"]},{"name":"Privacy Badger","description":"Privacy Badger leert automatisch onzichtbare volgers te blokkeren.","creator":"privacybadger-owner@eff.org","developers":null,"translators":null,"contributors":null,"locales":["nl"]}],"targetApplications":[{"id":"toolkit@mozilla.org","minVersion":"60.0","maxVersion":"*"}],"targetPlatforms":[],"signedState":2,"signedDate":1687969078000,"seen":true,"dependencies":[],"incognito":"spanning","userPermissions":{"permissions":["privacy","storage","tabs","webNavigation","webRequest","webRequestBlocking"],"origins":["http://*/*","https://*/*","https://*.facebook.com/*","http://*.facebook.com/*","https://*.messenger.com/*","http://*.messenger.com/*","*://*.facebookcorewwwi.onion/*","https://www.google.com/*","http://www.google.com/*","https://www.google.ad/*","http://www.google.ad/*","https://www.google.ae/*","http://www.google.ae/*","https://www.google.com.af/*","http://www.google.com.af/*","https://www.google.com.ag/*","http://www.google.com.ag/*","https://www.google.com.ai/*","http://www.google.com.ai/*","https://www.google.al/*","http://www.google.al/*","https://www.google.am/*","http://www.google.am/*","https://www.google.co.ao/*","http://www.google.co.ao/*","https://www.google.com.ar/*","http://www.google.com.ar/*","https://www.google.as/*","http://www.google.as/*","https://www.google.at/*","http://www.google.at/*","https://www.google.com.au/*","http://www.google.com.au/*","https://www.google.az/*","http://www.google.az/*","https://www.google.ba/*","http://www.google.ba/*","https://www.google.com.bd/*","http://www.google.com.bd/*","https://www.google.be/*","http://www.google.be/*","https://www.google.bf/*","http://www.google.bf/*","https://www.google.bg/*","http://www.google.bg/*","https://www.google.com.bh/*","http://www.google.com.bh/*","https://www.google.bi/*","http://www.google.bi/*","https://www.google.bj/*","http://www.google.bj/*","https://www.google.com.bn/*","http://www.google.com.bn/*","https://www.google.com.bo/*","http://www.google.com.bo/*","https://www.google.com.br/*","http://www.google.com.br/*","https://www.google.bs/*","http://www.google.bs/*","https://www.google.bt/*","http://www.google.bt/*","https://www.google.co.bw/*","http://www.google.co.bw/*","https://www.google.by/*","http://www.google.by/*","https://www.google.com.bz/*","http://www.google.com.bz/*","https://www.google.ca/*","http://www.google.ca/*","https://www.google.cd/*","http://www.google.cd/*","https://www.google.cf/*","http://www.google.cf/*","https://www.google.cg/*","http://www.google.cg/*","https://www.google.ch/*","http://www.google.ch/*","https://www.google.ci/*","http://www.google.ci/*","https://www.google.co.ck/*","http://www.google.co.ck/*","https://www.google.cl/*","http://www.google.cl/*","https://www.google.cm/*","http://www.google.cm/*","https://www.google.cn/*","http://www.google.cn/*","https://www.google.com.co/*","http://www.google.com.co/*","https://www.google.co.cr/*","http://www.google.co.cr/*","https://www.google.com.cu/*","http://www.google.com.cu/*","https://www.google.cv/*","http://www.google.cv/*","https://www.google.com.cy/*","http://www.google.com.cy/*","https://www.google.cz/*","http://www.google.cz/*","https://www.google.de/*","http://www.google.de/*","https://www.google.dj/*","http://www.google.dj/*","https://www.google.dk/*","http://www.google.dk/*","https://www.google.dm/*","http://www.google.dm/*","https://www.google.com.do/*","http://www.google.com.do/*","https://www.google.dz/*","http://www.google.dz/*","https://www.google.com.ec/*","http://www.google.com.ec/*","https://www.google.ee/*","http://www.google.ee/*","https://www.google.com.eg/*","http://www.google.com.eg/*","https://www.google.es/*","http://www.google.es/*","https://www.google.com.et/*","http://www.google.com.et/*","https://www.google.fi/*","http://www.google.fi/*","https://www.google.com.fj/*","http://www.google.com.fj/*","https://www.google.fm/*","http://www.google.fm/*","https://www.google.fr/*","http://www.google.fr/*","https://www.google.ga/*","http://www.google.ga/*","https://www.google.ge/*","http://www.google.ge/*","https://www.google.gg/*","http://www.google.gg/*","https://www.google.com.gh/*","http://www.google.com.gh/*","https://www.google.com.gi/*","http://www.google.com.gi/*","https://www.google.gl/*","http://www.google.gl/*","https://www.google.gm/*","http://www.google.gm/*","https://www.google.gr/*","http://www.google.gr/*","https://www.google.com.gt/*","http://www.google.com.gt/*","https://www.google.gy/*","http://www.google.gy/*","https://www.google.com.hk/*","http://www.google.com.hk/*","https://www.google.hn/*","http://www.google.hn/*","https://www.google.hr/*","http://www.google.hr/*","https://www.google.ht/*","http://www.google.ht/*","https://www.google.hu/*","http://www.google.hu/*","https://www.google.co.id/*","http://www.google.co.id/*","https://www.google.ie/*","http://www.google.ie/*","https://www.google.co.il/*","http://www.google.co.il/*","https://www.google.im/*","http://www.google.im/*","https://www.google.co.in/*","http://www.google.co.in/*","https://www.google.iq/*","http://www.google.iq/*","https://www.google.is/*","http://www.google.is/*","https://www.google.it/*","http://www.google.it/*","https://www.google.je/*","http://www.google.je/*","https://www.google.com.jm/*","http://www.google.com.jm/*","https://www.google.jo/*","http://www.google.jo/*","https://www.google.co.jp/*","http://www.google.co.jp/*","https://www.google.co.ke/*","http://www.google.co.ke/*","https://www.google.com.kh/*","http://www.google.com.kh/*","https://www.google.ki/*","http://www.google.ki/*","https://www.google.kg/*","http://www.google.kg/*","https://www.google.co.kr/*","http://www.google.co.kr/*","https://www.google.com.kw/*","http://www.google.com.kw/*","https://www.google.kz/*","http://www.google.kz/*","https://www.google.la/*","http://www.google.la/*","https://www.google.com.lb/*","http://www.google.com.lb/*","https://www.google.li/*","http://www.google.li/*","https://www.google.lk/*","http://www.google.lk/*","https://www.google.co.ls/*","http://www.google.co.ls/*","https://www.google.lt/*","http://www.google.lt/*","https://www.google.lu/*","http://www.google.lu/*","https://www.google.lv/*","http://www.google.lv/*","https://www.google.com.ly/*","http://www.google.com.ly/*","https://www.google.co.ma/*","http://www.google.co.ma/*","https://www.google.md/*","http://www.google.md/*","https://www.google.me/*","http://www.google.me/*","https://www.google.mg/*","http://www.google.mg/*","https://www.google.mk/*","http://www.google.mk/*","https://www.google.ml/*","http://www.google.ml/*","https://www.google.com.mm/*","http://www.google.com.mm/*","https://www.google.mn/*","http://www.google.mn/*","https://www.google.ms/*","http://www.google.ms/*","https://www.google.com.mt/*","http://www.google.com.mt/*","https://www.google.mu/*","http://www.google.mu/*","https://www.google.mv/*","http://www.google.mv/*","https://www.google.mw/*","http://www.google.mw/*","https://www.google.com.mx/*","http://www.google.com.mx/*","https://www.google.com.my/*","http://www.google.com.my/*","https://www.google.co.mz/*","http://www.google.co.mz/*","https://www.google.com.na/*","http://www.google.com.na/*","https://www.google.com.ng/*","http://www.google.com.ng/*","https://www.google.com.ni/*","http://www.google.com.ni/*","https://www.google.ne/*","http://www.google.ne/*","https://www.google.nl/*","http://www.google.nl/*","https://www.google.no/*","http://www.google.no/*","https://www.google.com.np/*","http://www.google.com.np/*","https://www.google.nr/*","http://www.google.nr/*","https://www.google.nu/*","http://www.google.nu/*","https://www.google.co.nz/*","http://www.google.co.nz/*","https://www.google.com.om/*","http://www.google.com.om/*","https://www.google.com.pa/*","http://www.google.com.pa/*","https://www.google.com.pe/*","http://www.google.com.pe/*","https://www.google.com.pg/*","http://www.google.com.pg/*","https://www.google.com.ph/*","http://www.google.com.ph/*","https://www.google.com.pk/*","http://www.google.com.pk/*","https://www.google.pl/*","http://www.google.pl/*","https://www.google.pn/*","http://www.google.pn/*","https://www.google.com.pr/*","http://www.google.com.pr/*","https://www.google.ps/*","http://www.google.ps/*","https://www.google.pt/*","http://www.google.pt/*","https://www.google.com.py/*","http://www.google.com.py/*","https://www.google.com.qa/*","http://www.google.com.qa/*","https://www.google.ro/*","http://www.google.ro/*","https://www.google.ru/*","http://www.google.ru/*","https://www.google.rw/*","http://www.google.rw/*","https://www.google.com.sa/*","http://www.google.com.sa/*","https://www.google.com.sb/*","http://www.google.com.sb/*","https://www.google.sc/*","http://www.google.sc/*","https://www.google.se/*","http://www.google.se/*","https://www.google.com.sg/*","http://www.google.com.sg/*","https://www.google.sh/*","http://www.google.sh/*","https://www.google.si/*","http://www.google.si/*","https://www.google.sk/*","http://www.google.sk/*","https://www.google.com.sl/*","http://www.google.com.sl/*","https://www.google.sn/*","http://www.google.sn/*","https://www.google.so/*","http://www.google.so/*","https://www.google.sm/*","http://www.google.sm/*","https://www.google.sr/*","http://www.google.sr/*","https://www.google.st/*","http://www.google.st/*","https://www.google.com.sv/*","http://www.google.com.sv/*","https://www.google.td/*","http://www.google.td/*","https://www.google.tg/*","http://www.google.tg/*","https://www.google.co.th/*","http://www.google.co.th/*","https://www.google.com.tj/*","http://www.google.com.tj/*","https://www.google.tl/*","http://www.google.tl/*","https://www.google.tm/*","http://www.google.tm/*","https://www.google.tn/*","http://www.google.tn/*","https://www.google.to/*","http://www.google.to/*","https://www.google.com.tr/*","http://www.google.com.tr/*","https://www.google.tt/*","http://www.google.tt/*","https://www.google.com.tw/*","http://www.google.com.tw/*","https://www.google.co.tz/*","http://www.google.co.tz/*","https://www.google.com.ua/*","http://www.google.com.ua/*","https://www.google.co.ug/*","http://www.google.co.ug/*","https://www.google.co.uk/*","http://www.google.co.uk/*","https://www.google.com.uy/*","http://www.google.com.uy/*","https://www.google.co.uz/*","http://www.google.co.uz/*","https://www.google.com.vc/*","http://www.google.com.vc/*","https://www.google.co.ve/*","http://www.google.co.ve/*","https://www.google.vg/*","http://www.google.vg/*","https://www.google.co.vi/*","http://www.google.co.vi/*","https://www.google.com.vn/*","http://www.google.com.vn/*","https://www.google.vu/*","http://www.google.vu/*","https://www.google.ws/*","http://www.google.ws/*","https://www.google.rs/*","http://www.google.rs/*","https://www.google.co.za/*","http://www.google.co.za/*","https://www.google.co.zm/*","http://www.google.co.zm/*","https://www.google.co.zw/*","http://www.google.co.zw/*","https://www.google.cat/*","http://www.google.cat/*","https://hangouts.google.com/*","http://hangouts.google.com/*","https://docs.google.com/*","http://docs.google.com/*",""]},"optionalPermissions":{"permissions":[],"origins":[]},"icons":{"16":"icons/badger-16.png","19":"icons/badger-19.png","38":"icons/badger-38.png","48":"icons/badger-48.png","64":"icons/badger-64.png","128":"icons/badger-128.png"},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":null,"hidden":false,"installTelemetryInfo":{"source":"about:addons","method":"install-from-file"},"recommendationState":{"validNotAfter":1845757078000,"validNotBefore":1687969078000,"states":["recommended-android","recommended"]},"rootURI":"jar:file:///home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/extensions/jid1-MnnxcxisBPnSXQ@jetpack.xpi!/","location":"app-profile"},{"id":"treestyletab@piro.sakura.ne.jp","syncGUID":"{3ae25418-674e-4a4e-bcff-d47bd754b4b3}","version":"3.9.15","type":"extension","loader":null,"updateURL":null,"installOrigins":null,"manifestVersion":2,"optionsURL":"/options/options.html","optionsType":5,"optionsBrowserStyle":false,"aboutURL":null,"defaultLocale":{"name":"Tree Style Tab","description":"Show tabs like a tree.","creator":"YUKI \"Piro\" Hiroshi","developers":null,"translators":null,"contributors":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"embedderDisabled":false,"installDate":1688876556351,"updateDate":1688876591381,"applyBackgroundUpdates":1,"path":"/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/extensions/treestyletab@piro.sakura.ne.jp.xpi","skinnable":false,"sourceURI":"file:///home/r0r5chach/Downloads/tree_style_tab.xpi","releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"strictCompatibility":true,"locales":[{"name":"Tree Style Tab","description":"Show tabs like a tree.","creator":"YUKI \"Piro\" Hiroshi","developers":null,"translators":null,"contributors":null,"locales":["en"]},{"name":"Tree Style Tab - ツリー型タブ","description":"タブをツリー状に表示します。","creator":"YUKI \"Piro\" Hiroshi","developers":null,"translators":null,"contributors":null,"locales":["ja"]},{"name":"Tree Style Tab","description":"Affiche les onglets sous forme d'arbre.","creator":"YUKI \"Piro\" Hiroshi","developers":null,"translators":null,"contributors":null,"locales":["fr"]},{"name":"Tree Style Tab","description":"Показує вкладки вертикальним деревовидним списком.","creator":"YUKI \"Piro\" Hiroshi","developers":null,"translators":null,"contributors":null,"locales":["uk"]},{"name":"Tree Style Tab - 트리 스타일 탭","description":"탭을 트리 모양으로 보여줍니다.","creator":"YUKI \"Piro\" Hiroshi","developers":null,"translators":null,"contributors":null,"locales":["ko"]},{"name":"Tree Style Tab","description":"Stellt Tabs in einer Baumstruktur dar.","creator":"YUKI \"Piro\" Hiroshi","developers":null,"translators":null,"contributors":null,"locales":["de"]},{"name":"Tree Style Tab - 树状标签页管理","description":"以树状结构显示标签页。","creator":"YUKI \"Piro\" Hiroshi","developers":null,"translators":null,"contributors":null,"locales":["zh-CN"]},{"name":"Tree Style Tab","description":"Показывает вкладки вертикальным древовидным списком.","creator":"YUKI \"Piro\" Hiroshi","developers":null,"translators":null,"contributors":null,"locales":["ru"]},{"name":"Tree Style Tab","description":"以樹狀結構表示分頁","creator":"YUKI \"Piro\" Hiroshi","developers":null,"translators":null,"contributors":null,"locales":["zh-TW"]}],"targetApplications":[{"id":"toolkit@mozilla.org","minVersion":"67.0","maxVersion":"*"}],"targetPlatforms":[],"signedState":2,"signedDate":1680254096000,"seen":true,"dependencies":[],"incognito":"spanning","userPermissions":{"permissions":["activeTab","contextualIdentities","cookies","menus","menus.overrideContext","notifications","search","sessions","storage","tabs","theme"],"origins":[]},"optionalPermissions":{"permissions":["bookmarks","tabHide"],"origins":[""]},"icons":{"16":"/resources/16x16.svg#default-bright","20":"/resources/20x20.svg#default-bright","24":"/resources/24x24.svg#default-bright","32":"/resources/32x32.svg#default-bright"},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":null,"hidden":false,"installTelemetryInfo":{"source":"about:addons","method":"install-from-file"},"recommendationState":{"validNotAfter":1838042096000,"validNotBefore":1680254096000,"states":["recommended"]},"rootURI":"jar:file:///home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/extensions/treestyletab@piro.sakura.ne.jp.xpi!/","location":"app-profile"},{"id":"{a6c4a591-f1b2-4f03-b3ff-767e5bedf4e7}","syncGUID":"{9f86937f-555e-47a2-b8b2-a3628ed343b9}","version":"0.5.0","type":"extension","loader":null,"updateURL":null,"installOrigins":null,"manifestVersion":2,"optionsURL":"data/options/index.html","optionsType":3,"optionsBrowserStyle":false,"aboutURL":null,"defaultLocale":{"name":"User-Agent Switcher and Manager","description":"Spoof websites trying to gather information about your web navigation to deliver distinct content you may not want","creator":null,"homepageURL":"https://add0n.com/useragent-switcher.html","developers":null,"translators":null,"contributors":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"embedderDisabled":false,"installDate":1688876519708,"updateDate":1688876593095,"applyBackgroundUpdates":1,"path":"/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/extensions/{a6c4a591-f1b2-4f03-b3ff-767e5bedf4e7}.xpi","skinnable":false,"sourceURI":"file:///home/r0r5chach/Downloads/user_agent_string_switcher.xpi","releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"strictCompatibility":true,"locales":[{"name":"User-Agent Switcher and Manager","description":"Spoof websites trying to gather information about your web navigation to deliver distinct content you may not want","creator":null,"homepageURL":"https://add0n.com/useragent-switcher.html","developers":null,"translators":null,"contributors":null,"locales":["en"]},{"name":"User-Agent Switcher and Manager","description":"Подменяет User-Agent на веб-сайтах, пытающихся собрать информацию о ваших путешествиях по сети и выдать не нужное вам содержимое","creator":null,"homepageURL":"https://add0n.com/useragent-switcher.html","developers":null,"translators":null,"contributors":null,"locales":["ru"]}],"targetApplications":[{"id":"toolkit@mozilla.org","minVersion":"48.0","maxVersion":"*"}],"targetPlatforms":[],"signedState":2,"signedDate":1682502683000,"seen":true,"dependencies":[],"incognito":"spanning","userPermissions":{"permissions":["contextMenus","storage","webNavigation","webRequest","webRequestBlocking"],"origins":["","*://*/*"]},"optionalPermissions":{"permissions":["cookies"],"origins":[]},"icons":{"16":"data/icons/active/16.png","18":"data/icons/active/18.png","19":"data/icons/active/19.png","32":"data/icons/active/32.png","36":"data/icons/active/36.png","38":"data/icons/active/38.png","48":"data/icons/active/48.png","64":"data/icons/active/64.png","128":"data/icons/active/128.png","256":"data/icons/active/256.png"},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":null,"hidden":false,"installTelemetryInfo":{"source":"about:addons","method":"install-from-file"},"recommendationState":{"validNotAfter":1840290683000,"validNotBefore":1682502683000,"states":["recommended"]},"rootURI":"jar:file:///home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/extensions/%7Ba6c4a591-f1b2-4f03-b3ff-767e5bedf4e7%7D.xpi!/","location":"app-profile"}]} \ No newline at end of file diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/extensions/addon@darkreader.org.xpi b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/extensions/addon@darkreader.org.xpi new file mode 100644 index 0000000..ae92722 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/extensions/addon@darkreader.org.xpi differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/extensions/addon@simplelogin.xpi b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/extensions/addon@simplelogin.xpi new file mode 100644 index 0000000..2a8ecfa Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/extensions/addon@simplelogin.xpi differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/extensions/adnauseam@rednoise.org.xpi b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/extensions/adnauseam@rednoise.org.xpi new file mode 100644 index 0000000..0fda318 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/extensions/adnauseam@rednoise.org.xpi differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/extensions/https-everywhere-eff@eff.org.xpi b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/extensions/https-everywhere-eff@eff.org.xpi new file mode 100644 index 0000000..9a6e228 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/extensions/https-everywhere-eff@eff.org.xpi differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/extensions/jid1-MnnxcxisBPnSXQ@jetpack.xpi b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/extensions/jid1-MnnxcxisBPnSXQ@jetpack.xpi new file mode 100644 index 0000000..10b3653 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/extensions/jid1-MnnxcxisBPnSXQ@jetpack.xpi differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/extensions/jid1-ZAdIEUB7XOzOJw@jetpack.xpi b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/extensions/jid1-ZAdIEUB7XOzOJw@jetpack.xpi new file mode 100644 index 0000000..c7f55a3 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/extensions/jid1-ZAdIEUB7XOzOJw@jetpack.xpi differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/extensions/support@lastpass.com.xpi b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/extensions/support@lastpass.com.xpi new file mode 100644 index 0000000..050aef7 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/extensions/support@lastpass.com.xpi differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/extensions/treestyletab@piro.sakura.ne.jp.xpi b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/extensions/treestyletab@piro.sakura.ne.jp.xpi new file mode 100644 index 0000000..5d8673c Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/extensions/treestyletab@piro.sakura.ne.jp.xpi differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/extensions/{60f82f00-9ad5-4de5-b31c-b16a47c51558}.xpi b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/extensions/{60f82f00-9ad5-4de5-b31c-b16a47c51558}.xpi new file mode 100644 index 0000000..75088d6 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/extensions/{60f82f00-9ad5-4de5-b31c-b16a47c51558}.xpi differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/extensions/{a6c4a591-f1b2-4f03-b3ff-767e5bedf4e7}.xpi b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/extensions/{a6c4a591-f1b2-4f03-b3ff-767e5bedf4e7}.xpi new file mode 100644 index 0000000..795c213 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/extensions/{a6c4a591-f1b2-4f03-b3ff-767e5bedf4e7}.xpi differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/favicons.sqlite b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/favicons.sqlite new file mode 100644 index 0000000..58ba527 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/favicons.sqlite differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/formhistory.sqlite b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/formhistory.sqlite new file mode 100644 index 0000000..105b96b Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/formhistory.sqlite differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/gmp-gmpopenh264/2.3.2/gmpopenh264.info b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/gmp-gmpopenh264/2.3.2/gmpopenh264.info new file mode 100755 index 0000000..d3d551c --- /dev/null +++ b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/gmp-gmpopenh264/2.3.2/gmpopenh264.info @@ -0,0 +1,4 @@ +Name: gmpopenh264 +Description: GMP Plugin for OpenH264. +Version: 2.3.2 +APIs: encode-video[h264], decode-video[h264] diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/gmp-gmpopenh264/2.3.2/libgmpopenh264.so b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/gmp-gmpopenh264/2.3.2/libgmpopenh264.so new file mode 100755 index 0000000..61e9c11 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/gmp-gmpopenh264/2.3.2/libgmpopenh264.so differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/handlers.json b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/handlers.json new file mode 100644 index 0000000..f25965b --- /dev/null +++ b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/handlers.json @@ -0,0 +1 @@ +{"defaultHandlersVersion":{},"mimeTypes":{"application/pdf":{"action":3,"extensions":["pdf"]},"image/webp":{"action":3,"extensions":["webp"]},"image/avif":{"action":3,"extensions":["avif"]}},"schemes":{"mailto":{"stubEntry":true,"handlers":[null,{"name":"Gmail","uriTemplate":"https://mail.google.com/mail/?extsrc=mailto&url=%s"}]},"ext+treestyletab":{"action":2,"handlers":[{"name":"Tree Style Tab","uriTemplate":"moz-extension://df1156d3-0c37-49fd-8615-433b46371972/resources/protocol-handler.html?%s"}]},"vscode":{"action":4}},"isDownloadsImprovementsAlreadyMigrated":true,"isSVGXMLAlreadyMigrated":true} \ No newline at end of file diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/key4.db b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/key4.db new file mode 100644 index 0000000..73955c0 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/key4.db differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/lock b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/lock new file mode 120000 index 0000000..4ca22e3 --- /dev/null +++ b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/lock @@ -0,0 +1 @@ +127.0.1.1:+700746 \ No newline at end of file diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/minidumps/05f482bd-4b5c-6b2f-177e-3432f050fd44.dmp b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/minidumps/05f482bd-4b5c-6b2f-177e-3432f050fd44.dmp new file mode 100644 index 0000000..42f3ec9 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/minidumps/05f482bd-4b5c-6b2f-177e-3432f050fd44.dmp differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/minidumps/05f482bd-4b5c-6b2f-177e-3432f050fd44.extra b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/minidumps/05f482bd-4b5c-6b2f-177e-3432f050fd44.extra new file mode 100644 index 0000000..235fb28 --- /dev/null +++ b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/minidumps/05f482bd-4b5c-6b2f-177e-3432f050fd44.extra @@ -0,0 +1 @@ +{"Add-ons":"","BackgroundTaskMode":"0","BuildID":"","DesktopEnvironment":"","EMCheckCompatibility":"\u0011/","GraphicsCriticalError":"","HeadlessMode":"0","InstallTime":"","IsWayland":"0","LastStartupWasCrash":"0","Notes":"FP(D00-L1000-W0000000-T010) Has dual GPUs.","ProductID":"","ProductName":" x\u001a/0\u0000","ReleaseChannel":" {\u001a/0\u0000","SafeMode":"0","ServerURL":"","StartupCacheValid":"1","StartupCrash":"1","StartupTime":"","TelemetrySessionId":"","Vendor":"P{\u001a/0\u0000","Version":"w\u001a/0\u0000","TotalPhysicalMemory":"16020480000","AvailablePhysicalMemory":"3040964608","AvailableVirtualMemory":"15023919104","AvailableSwapMemory":"0","AvailablePageFile":"7107375104","TotalPageFile":"16020480000","CrashTime":"1688888273","UptimeTS":".75378"} \ No newline at end of file diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/minidumps/6707512f-1966-be29-3ebb-b66744962259.dmp b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/minidumps/6707512f-1966-be29-3ebb-b66744962259.dmp new file mode 100644 index 0000000..1b1dd10 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/minidumps/6707512f-1966-be29-3ebb-b66744962259.dmp differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/minidumps/6707512f-1966-be29-3ebb-b66744962259.extra b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/minidumps/6707512f-1966-be29-3ebb-b66744962259.extra new file mode 100644 index 0000000..30e66c1 --- /dev/null +++ b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/minidumps/6707512f-1966-be29-3ebb-b66744962259.extra @@ -0,0 +1 @@ +{"Add-ons":"","BackgroundTaskMode":"0","BuildID":"","DesktopEnvironment":"","EMCheckCompatibility":"","GraphicsCriticalError":"","HeadlessMode":"0","InstallTime":"","IsWayland":"0","LastStartupWasCrash":"0","Notes":"FP(D00-L1000-W0000000-T010) Has dual GPUs.","ProductID":"","ProductName":"ً\u0000","ReleaseChannel":" ً\u0000","SafeMode":"0","ServerURL":"","StartupCacheValid":"1","StartupCrash":"1","StartupTime":"","TelemetrySessionId":"","Vendor":"ً\u0000","Version":"Pً\u0000","TotalPhysicalMemory":"16020480000","AvailablePhysicalMemory":"2909667328","AvailableVirtualMemory":"14928027648","AvailableSwapMemory":"0","AvailablePageFile":"6843289600","TotalPageFile":"16020480000","CrashTime":"1688889078","UptimeTS":".85115","SecondsSinceLastCrash":"805"} \ No newline at end of file diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/notificationstore.json b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/notificationstore.json new file mode 100644 index 0000000..1502ca2 --- /dev/null +++ b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/notificationstore.json @@ -0,0 +1 @@ +{"https://www.rapidtables.com":{"{18a36d57-0bb5-4b0f-912b-a49d1aa49566}":{"id":"{18a36d57-0bb5-4b0f-912b-a49d1aa49566}","title":"","dir":"auto","lang":"","body":"","tag":"","icon":"","alertName":"https://www.rapidtables.com#notag:{18a36d57-0bb5-4b0f-912b-a49d1aa49566}","timestamp":1688756718690,"origin":"https://www.rapidtables.com","data":"","mozbehavior":"{\"noclear\":false,\"noscreen\":false,\"showOnlyOnce\":false,\"soundFile\":\"\"}","serviceWorkerRegistrationScope":""}}} \ No newline at end of file diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/permissions.sqlite b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/permissions.sqlite new file mode 100644 index 0000000..736de06 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/permissions.sqlite differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/pkcs11.txt b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/pkcs11.txt new file mode 100644 index 0000000..caa896d --- /dev/null +++ b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/pkcs11.txt @@ -0,0 +1,5 @@ +library= +name=NSS Internal PKCS #11 Module +parameters=configdir='sql:/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release' certPrefix='' keyPrefix='' secmod='secmod.db' flags=optimizeSpace updatedir='' updateCertPrefix='' updateKeyPrefix='' updateid='' updateTokenDescription='' +NSS=Flags=internal,critical trustOrder=75 cipherOrder=100 slotParams=(1={slotFlags=[ECC,RSA,DSA,DH,RC2,RC4,DES,RANDOM,SHA1,MD5,MD2,SSL,TLS,AES,Camellia,SEED,SHA256,SHA512] askpw=any timeout=30}) + diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/places.sqlite b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/places.sqlite new file mode 100644 index 0000000..eb8c615 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/places.sqlite differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/prefs.js b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/prefs.js new file mode 100644 index 0000000..a059be7 --- /dev/null +++ b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/prefs.js @@ -0,0 +1,209 @@ +// Mozilla User Preferences + +// DO NOT EDIT THIS FILE. +// +// If you make changes to this file while the application is running, +// the changes will be overwritten when the application exits. +// +// To change a preference value, you can either: +// - modify it via the UI (e.g. via about:config in the browser); or +// - set it within a user.js file in your profile. + +user_pref("accessibility.typeaheadfind.flashBar", 0); +user_pref("app.normandy.first_run", false); +user_pref("app.normandy.migrationsApplied", 12); +user_pref("app.normandy.user_id", "0dff5c0a-d111-4521-a7c0-823125f94ed1"); +user_pref("app.shield.optoutstudies.enabled", false); +user_pref("app.update.lastUpdateTime.addon-background-update-timer", 1689007052); +user_pref("app.update.lastUpdateTime.browser-cleanup-thumbnails", 1689046194); +user_pref("app.update.lastUpdateTime.recipe-client-addon-run", 1689031327); +user_pref("app.update.lastUpdateTime.region-update-timer", 1688747240); +user_pref("app.update.lastUpdateTime.rs-experiment-loader-timer", 1688877329); +user_pref("app.update.lastUpdateTime.services-settings-poll-changes", 1689007052); +user_pref("app.update.lastUpdateTime.telemetry_modules_ping", 1688747270); +user_pref("app.update.lastUpdateTime.xpi-signature-verification", 1689007052); +user_pref("browser.bookmarks.addedImportButton", true); +user_pref("browser.bookmarks.defaultLocation", "GpkvUsgj2Zqr"); +user_pref("browser.bookmarks.editDialog.confirmationHintShowCount", 3); +user_pref("browser.bookmarks.restore_default_bookmarks", false); +user_pref("browser.contentblocking.category", "standard"); +user_pref("browser.contextual-services.contextId", "{d0c366e7-712f-4186-ab9b-74fbd6f11399}"); +user_pref("browser.download.lastDir", "/home/r0r5chach/Downloads"); +user_pref("browser.download.panel.shown", true); +user_pref("browser.download.viewableInternally.typeWasRegistered.avif", true); +user_pref("browser.download.viewableInternally.typeWasRegistered.webp", true); +user_pref("browser.engagement.downloads-button.has-used", true); +user_pref("browser.engagement.home-button.has-used", true); +user_pref("browser.laterrun.bookkeeping.profileCreationTime", 1688747209); +user_pref("browser.laterrun.bookkeeping.sessionCount", 51); +user_pref("browser.migration.version", 137); +user_pref("browser.newtabpage.activity-stream.discoverystream.rec.impressions", "{\"169237\":1688748478493,\"169256\":1688877052117,\"169495\":1688832072330,\"169632\":1688832072327,\"169799\":1688877052120,\"169828\":1688832072331,\"169856\":1688835444285,\"170144\":1688876902586,\"170146\":1688876902585,\"170147\":1688877052119,\"170349\":1688873672362,\"170352\":1688873672370,\"170380\":1688873672369,\"170385\":1688876902580}"); +user_pref("browser.newtabpage.activity-stream.discoverystream.spoc.impressions", "{\"385970958\":[1688875671025,1688876039748,1688876297871]}"); +user_pref("browser.newtabpage.activity-stream.feeds.section.topstories", false); +user_pref("browser.newtabpage.activity-stream.impressionId", "{87638c41-d3b8-4deb-9626-2fbb0b027008}"); +user_pref("browser.newtabpage.activity-stream.improvesearch.topSiteSearchShortcuts.havePinned", "amazon,google"); +user_pref("browser.newtabpage.activity-stream.showSponsoredTopSites", false); +user_pref("browser.newtabpage.pinned", "[{\"url\":\"https://google.com\",\"label\":\"@google\",\"searchTopSite\":true}]"); +user_pref("browser.newtabpage.storageVersion", 1); +user_pref("browser.pageActions.persistedActions", "{\"ids\":[\"bookmark\"],\"idsInUrlbar\":[\"bookmark\"],\"idsInUrlbarPreProton\":[],\"version\":1}"); +user_pref("browser.pagethumbnails.storage_version", 3); +user_pref("browser.proton.toolbar.version", 3); +user_pref("browser.region.update.updated", 1688747211); +user_pref("browser.rights.3.shown", true); +user_pref("browser.safebrowsing.provider.google4.lastupdatetime", "1689050029343"); +user_pref("browser.safebrowsing.provider.google4.nextupdatetime", "1689051857343"); +user_pref("browser.safebrowsing.provider.mozilla.lastupdatetime", "1689031299788"); +user_pref("browser.safebrowsing.provider.mozilla.nextupdatetime", "1689052899788"); +user_pref("browser.search.region", "GB"); +user_pref("browser.sessionstore.upgradeBackup.latestBuildID", "20230707173157"); +user_pref("browser.shell.mostRecentDateSetAsDefault", "1689050028"); +user_pref("browser.startup.couldRestoreSession.count", 2); +user_pref("browser.startup.homepage_override.buildID", "20230707173157"); +user_pref("browser.startup.homepage_override.mstone", "115.0.1"); +user_pref("browser.startup.lastColdStartupCheck", 1689050028); +user_pref("browser.startup.page", 3); +user_pref("browser.startup.upgradeDialog.version", 106); +user_pref("browser.tabs.inTitlebar", 1); +user_pref("browser.toolbars.bookmarks.visibility", "always"); +user_pref("browser.uiCustomization.state", "{\"placements\":{\"widget-overflow-fixed-list\":[],\"unified-extensions-area\":[\"adnauseam_rednoise_org-browser-action\",\"https-everywhere-eff_eff_org-browser-action\",\"support_lastpass_com-browser-action\",\"addon_simplelogin-browser-action\",\"_a6c4a591-f1b2-4f03-b3ff-767e5bedf4e7_-browser-action\",\"_60f82f00-9ad5-4de5-b31c-b16a47c51558_-browser-action\",\"jid1-zadieub7xozojw_jetpack-browser-action\",\"treestyletab_piro_sakura_ne_jp-browser-action\"],\"nav-bar\":[\"back-button\",\"forward-button\",\"stop-reload-button\",\"home-button\",\"customizableui-special-spring1\",\"urlbar-container\",\"customizableui-special-spring2\",\"save-to-pocket-button\",\"downloads-button\",\"fxa-toolbar-menu-button\",\"unified-extensions-button\",\"jid1-mnnxcxisbpnsxq_jetpack-browser-action\",\"addon_darkreader_org-browser-action\"],\"toolbar-menubar\":[\"menubar-items\"],\"TabsToolbar\":[\"firefox-view-button\",\"tabbrowser-tabs\",\"new-tab-button\",\"alltabs-button\"],\"PersonalToolbar\":[\"import-button\",\"personal-bookmarks\"]},\"seen\":[\"save-to-pocket-button\",\"developer-button\",\"adnauseam_rednoise_org-browser-action\",\"addon_darkreader_org-browser-action\",\"https-everywhere-eff_eff_org-browser-action\",\"support_lastpass_com-browser-action\",\"addon_simplelogin-browser-action\",\"_a6c4a591-f1b2-4f03-b3ff-767e5bedf4e7_-browser-action\",\"_60f82f00-9ad5-4de5-b31c-b16a47c51558_-browser-action\",\"jid1-zadieub7xozojw_jetpack-browser-action\",\"jid1-mnnxcxisbpnsxq_jetpack-browser-action\",\"treestyletab_piro_sakura_ne_jp-browser-action\"],\"dirtyAreaCache\":[\"nav-bar\",\"PersonalToolbar\",\"toolbar-menubar\",\"TabsToolbar\",\"unified-extensions-area\"],\"currentVersion\":19,\"newElementCount\":3}"); +user_pref("browser.urlbar.placeholderName", "DuckDuckGo"); +user_pref("browser.urlbar.placeholderName.private", "DuckDuckGo"); +user_pref("browser.urlbar.quicksuggest.migrationVersion", 2); +user_pref("browser.urlbar.quicksuggest.scenario", "history"); +user_pref("browser.urlbar.tipShownCount.searchTip_onboard", 4); +user_pref("browser.urlbar.tipShownCount.searchTip_redirect", 4); +user_pref("datareporting.healthreport.uploadEnabled", false); +user_pref("datareporting.policy.dataSubmissionPolicyAcceptedVersion", 2); +user_pref("datareporting.policy.dataSubmissionPolicyNotifiedTime", "1688747210968"); +user_pref("devtools.everOpened", true); +user_pref("devtools.netmonitor.columnsData", "[{\"name\":\"status\",\"minWidth\":30,\"width\":6.67},{\"name\":\"method\",\"minWidth\":30,\"width\":6.67},{\"name\":\"domain\",\"minWidth\":30,\"width\":13.33},{\"name\":\"file\",\"minWidth\":30,\"width\":33.32},{\"name\":\"url\",\"minWidth\":30,\"width\":25},{\"name\":\"initiator\",\"minWidth\":30,\"width\":13.33},{\"name\":\"type\",\"minWidth\":30,\"width\":6.67},{\"name\":\"transferred\",\"minWidth\":30,\"width\":13.33},{\"name\":\"contentSize\",\"minWidth\":30,\"width\":6.67},{\"name\":\"waterfall\",\"minWidth\":150,\"width\":14.29}]"); +user_pref("devtools.netmonitor.filters", "[\"xhr\"]"); +user_pref("devtools.netmonitor.msg.visibleColumns", "[\"data\",\"time\"]"); +user_pref("devtools.selfxss.count", 1); +user_pref("devtools.toolbox.footer.height", 763); +user_pref("devtools.toolbox.selectedTool", "webconsole"); +user_pref("devtools.toolsidebar-height.inspector", 350); +user_pref("devtools.toolsidebar-width.inspector", 322); +user_pref("devtools.toolsidebar-width.inspector.splitsidebar", 350); +user_pref("distribution.archlinux.bookmarksProcessed", true); +user_pref("distribution.iniFile.exists.appversion", "115.0.1"); +user_pref("distribution.iniFile.exists.value", true); +user_pref("doh-rollout.doneFirstRun", true); +user_pref("doh-rollout.home-region", "GB"); +user_pref("dom.forms.autocomplete.formautofill", true); +user_pref("dom.push.userAgentID", "f0f0a280d2b14e02802cddeeb10ca3cc"); +user_pref("dom.security.https_only_mode", true); +user_pref("dom.security.https_only_mode_ever_enabled", true); +user_pref("extensions.activeThemeID", "default-theme@mozilla.org"); +user_pref("extensions.blocklist.pingCountVersion", -1); +user_pref("extensions.databaseSchema", 35); +user_pref("extensions.formautofill.creditCards.enabled", false); +user_pref("extensions.getAddons.cache.lastUpdate", 1689007052); +user_pref("extensions.getAddons.databaseSchema", 6); +user_pref("extensions.lastAppBuildId", "20230707173157"); +user_pref("extensions.lastAppVersion", "115.0.1"); +user_pref("extensions.lastPlatformVersion", "115.0.1"); +user_pref("extensions.pendingOperations", false); +user_pref("extensions.pictureinpicture.enable_picture_in_picture_overrides", true); +user_pref("extensions.quarantinedDomains.list", "autoatendimento.bb.com.br,ibpf.sicredi.com.br,ibpj.sicredi.com.br,internetbanking.caixa.gov.br,www.ib12.bradesco.com.br,www2.bancobrasil.com.br"); +user_pref("extensions.systemAddonSet", "{\"schema\":1,\"addons\":{}}"); +user_pref("extensions.ui.dictionary.hidden", true); +user_pref("extensions.ui.extension.hidden", false); +user_pref("extensions.ui.lastCategory", "addons://list/extension"); +user_pref("extensions.ui.locale.hidden", true); +user_pref("extensions.ui.sitepermission.hidden", true); +user_pref("extensions.webcompat.enable_shims", true); +user_pref("extensions.webcompat.perform_injections", true); +user_pref("extensions.webcompat.perform_ua_overrides", true); +user_pref("extensions.webextensions.ExtensionStorageIDB.migrated.addon@darkreader.org", true); +user_pref("extensions.webextensions.ExtensionStorageIDB.migrated.addon@simplelogin", true); +user_pref("extensions.webextensions.ExtensionStorageIDB.migrated.adnauseam@rednoise.org", true); +user_pref("extensions.webextensions.ExtensionStorageIDB.migrated.https-everywhere-eff@eff.org", true); +user_pref("extensions.webextensions.ExtensionStorageIDB.migrated.jid1-MnnxcxisBPnSXQ@jetpack", true); +user_pref("extensions.webextensions.ExtensionStorageIDB.migrated.jid1-ZAdIEUB7XOzOJw@jetpack", true); +user_pref("extensions.webextensions.ExtensionStorageIDB.migrated.screenshots@mozilla.org", true); +user_pref("extensions.webextensions.ExtensionStorageIDB.migrated.support@lastpass.com", true); +user_pref("extensions.webextensions.ExtensionStorageIDB.migrated.treestyletab@piro.sakura.ne.jp", true); +user_pref("extensions.webextensions.ExtensionStorageIDB.migrated.{60f82f00-9ad5-4de5-b31c-b16a47c51558}", true); +user_pref("extensions.webextensions.ExtensionStorageIDB.migrated.{a6c4a591-f1b2-4f03-b3ff-767e5bedf4e7}", true); +user_pref("extensions.webextensions.uuids", "{\"formautofill@mozilla.org\":\"9a28604b-79e7-4733-b120-73dc91607933\",\"pictureinpicture@mozilla.org\":\"83e506ba-9dd4-421c-94f4-9447574ebe50\",\"screenshots@mozilla.org\":\"b8c8268e-b089-465b-bf6d-81973123d75b\",\"webcompat-reporter@mozilla.org\":\"10a446e5-611d-4d27-98e2-b6f10c72fb3d\",\"webcompat@mozilla.org\":\"30c4662e-570c-433a-a579-34f00a856f8c\",\"default-theme@mozilla.org\":\"c63e1f7d-c01d-462e-9943-11afcbdaf8c0\",\"addons-search-detection@mozilla.com\":\"8af57e71-ac05-4e0a-b257-cc107c16f8f5\",\"google@search.mozilla.org\":\"b3b376fb-c57c-479e-991a-1958f20fc0b7\",\"wikipedia@search.mozilla.org\":\"0281d5b1-e6c2-4201-ba0a-d3741a402f92\",\"bing@search.mozilla.org\":\"33329eff-023b-45be-8f84-294a2e8c1ebe\",\"ddg@search.mozilla.org\":\"2995b2e7-fb26-41f4-9079-917a0de3b598\",\"amazon@search.mozilla.org\":\"90d1af24-1b74-453c-9eb4-a1d1a327e289\",\"ebay@search.mozilla.org\":\"c40c1044-7e76-4054-b80f-b49ffbebd972\",\"ArchMan@archlinux.org\":\"5b9645de-7b49-4fd2-8613-3d983631d05f\",\"ArchWiki@archlinux.org\":\"395503be-44df-4bc4-b55c-513cc50fad09\",\"ArchForumK@archlinux.org\":\"c059cb60-bf5b-4945-8918-368ba3989f44\",\"ArchBugsT@archlinux.org\":\"a77e65ee-5f6a-4bc5-8f93-98bee879e546\",\"ArchBugsFs@archlinux.org\":\"9e99ff3c-a971-4773-8cb4-b048829ef987\",\"ArchPkgs@archlinux.org\":\"12b0f9b8-b3d2-4759-841e-8b773237386a\",\"ArchForumA@archlinux.org\":\"76a66fd9-f9f3-4a7b-9afe-e5e25a28a306\",\"ArchAur@archlinux.org\":\"6210ebb5-1175-4593-a29b-6b49ab78a575\",\"adnauseam@rednoise.org\":\"33f0bb34-57a1-49bf-bd82-e1ae48b49f89\",\"addon@darkreader.org\":\"c91d27ca-5ed9-4f02-a50b-fa79abff9e8d\",\"jid1-ZAdIEUB7XOzOJw@jetpack\":\"d0a68153-fa55-4029-8d23-ddcfc7eb6164\",\"https-everywhere-eff@eff.org\":\"6ddfbb4b-2163-4587-99ce-3e78223b9a9d\",\"support@lastpass.com\":\"e9637a6b-6a3e-4382-abfa-29c1ff55aa2c\",\"jid1-MnnxcxisBPnSXQ@jetpack\":\"58883547-f59f-4caa-bf14-82a8f4478eb3\",\"addon@simplelogin\":\"e7e69f57-3018-4356-8487-42df8995eda3\",\"treestyletab@piro.sakura.ne.jp\":\"df1156d3-0c37-49fd-8615-433b46371972\",\"{a6c4a591-f1b2-4f03-b3ff-767e5bedf4e7}\":\"23ef25c6-fc94-4759-bde4-a345c11191cc\",\"{60f82f00-9ad5-4de5-b31c-b16a47c51558}\":\"fcb9e288-9d49-42a0-a5e3-17d21f8da124\"}"); +user_pref("gecko.handlerService.defaultHandlersVersion", 1); +user_pref("idle.lastDailyNotification", 1689012699); +user_pref("media.gmp-gmpopenh264.abi", "x86_64-gcc3"); +user_pref("media.gmp-gmpopenh264.hashValue", "53a58bfb4c8124ad4f7655b99bfdea290033a085e0796b19245b33b91c0948fdac9f0c3e817130b352493a65d9a7a0fc8a7c1eedc618cdaa2b4580734a11cd9c"); +user_pref("media.gmp-gmpopenh264.lastDownload", 1688747240); +user_pref("media.gmp-gmpopenh264.lastInstallStart", 1688747240); +user_pref("media.gmp-gmpopenh264.lastUpdate", 1688747240); +user_pref("media.gmp-gmpopenh264.version", "2.3.2"); +user_pref("media.gmp-manager.buildID", "20230707173157"); +user_pref("media.gmp-manager.lastCheck", 1689006843); +user_pref("media.gmp-manager.lastEmptyCheck", 1689006843); +user_pref("media.gmp.storage.version.observed", 1); +user_pref("media.videocontrols.picture-in-picture.video-toggle.first-seen-secs", 1688768960); +user_pref("network.dns.disablePrefetch", true); +user_pref("network.http.speculative-parallel-limit", 0); +user_pref("network.predictor.enabled", false); +user_pref("network.prefetch-next", false); +user_pref("pdfjs.enabledCache.state", true); +user_pref("pdfjs.migrationVersion", 2); +user_pref("places.database.lastMaintenance", 1688761148); +user_pref("pref.browser.homepage.disable_button.bookmark_page", false); +user_pref("privacy.purge_trackers.date_in_cookie_database", "0"); +user_pref("privacy.purge_trackers.last_purge", "1689012700011"); +user_pref("privacy.sanitize.pending", "[]"); +user_pref("privacy.userContext.enabled", true); +user_pref("privacy.userContext.extension", "treestyletab@piro.sakura.ne.jp"); +user_pref("privacy.userContext.ui.enabled", true); +user_pref("security.sandbox.content.tempDirSuffix", "2c18b233-4e0d-4951-824e-ceb99db517b7"); +user_pref("services.settings.blocklists.addons-bloomfilters.last_check", 1689044885); +user_pref("services.settings.blocklists.gfx.last_check", 1689044885); +user_pref("services.settings.clock_skew_seconds", 14); +user_pref("services.settings.last_etag", "\"1689044276102\""); +user_pref("services.settings.last_update_seconds", 1689044885); +user_pref("services.settings.main.addons-manager-settings.last_check", 1689044885); +user_pref("services.settings.main.anti-tracking-url-decoration.last_check", 1689044885); +user_pref("services.settings.main.cfr.last_check", 1689044885); +user_pref("services.settings.main.cookie-banner-rules-list.last_check", 1689044885); +user_pref("services.settings.main.devtools-compatibility-browsers.last_check", 1689044885); +user_pref("services.settings.main.devtools-devices.last_check", 1689044885); +user_pref("services.settings.main.doh-config.last_check", 1689044885); +user_pref("services.settings.main.doh-providers.last_check", 1689044885); +user_pref("services.settings.main.fxmonitor-breaches.last_check", 1689044885); +user_pref("services.settings.main.hijack-blocklists.last_check", 1689044885); +user_pref("services.settings.main.language-dictionaries.last_check", 1689044885); +user_pref("services.settings.main.message-groups.last_check", 1689044885); +user_pref("services.settings.main.nimbus-desktop-experiments.last_check", 1689044885); +user_pref("services.settings.main.normandy-recipes-capabilities.last_check", 1689044885); +user_pref("services.settings.main.partitioning-exempt-urls.last_check", 1689044885); +user_pref("services.settings.main.password-recipes.last_check", 1689044885); +user_pref("services.settings.main.password-rules.last_check", 1689044885); +user_pref("services.settings.main.personality-provider-models.last_check", 1689044885); +user_pref("services.settings.main.personality-provider-recipe.last_check", 1689044885); +user_pref("services.settings.main.pioneer-study-addons-v1.last_check", 1689044885); +user_pref("services.settings.main.public-suffix-list.last_check", 1689044885); +user_pref("services.settings.main.search-config.last_check", 1689044885); +user_pref("services.settings.main.search-default-override-allowlist.last_check", 1689044885); +user_pref("services.settings.main.search-telemetry-v2.last_check", 1689044885); +user_pref("services.settings.main.sites-classification.last_check", 1689044885); +user_pref("services.settings.main.tippytop.last_check", 1689044885); +user_pref("services.settings.main.top-sites.last_check", 1689044885); +user_pref("services.settings.main.url-classifier-skip-urls.last_check", 1689044885); +user_pref("services.settings.main.websites-with-shared-credential-backends.last_check", 1689044885); +user_pref("services.settings.main.whats-new-panel.last_check", 1689044885); +user_pref("services.settings.security-state.cert-revocations.last_check", 1689007038); +user_pref("services.settings.security-state.intermediates.last_check", 1689007038); +user_pref("services.settings.security-state.onecrl.last_check", 1689007038); +user_pref("services.sync.clients.lastSync", "0"); +user_pref("services.sync.declinedEngines", ""); +user_pref("services.sync.globalScore", 0); +user_pref("services.sync.nextSync", 0); +user_pref("signon.rememberSignons", false); +user_pref("storage.vacuum.last.content-prefs.sqlite", 1688878545); +user_pref("storage.vacuum.last.index", 2); +user_pref("storage.vacuum.last.places.sqlite", 1688761148); +user_pref("toolkit.startup.last_success", 1689050027); +user_pref("toolkit.telemetry.cachedClientID", "c0ffeec0-ffee-c0ff-eec0-ffeec0ffeec0"); +user_pref("toolkit.telemetry.pioneer-new-studies-available", true); +user_pref("toolkit.telemetry.previousBuildID", "20230707173157"); +user_pref("toolkit.telemetry.reportingpolicy.firstRun", false); +user_pref("trailhead.firstrun.didSeeAboutWelcome", true); diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/protections.sqlite b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/protections.sqlite new file mode 100644 index 0000000..67686b5 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/protections.sqlite differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/search.json.mozlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/search.json.mozlz4 new file mode 100644 index 0000000..d8ced11 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/search.json.mozlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/security_state/data.safe.bin b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/security_state/data.safe.bin new file mode 100644 index 0000000..ec5c31c Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/security_state/data.safe.bin differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/serviceworker.txt b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/serviceworker.txt new file mode 100644 index 0000000..81b001a --- /dev/null +++ b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/serviceworker.txt @@ -0,0 +1,73 @@ +9 + +https://forum.garudalinux.org/ +https://forum.garudalinux.org/service-worker.js +true +{fb31ece6-483b-4e49-946a-55ecf9ff90ad} +0 +1688749781705273 +1688749781705837 +1688749781513713 +0 +true +# + +https://www.nvidia.com/ +https://www.nvidia.com/pushcrew-sw.js +false +{83df2d1c-9d5e-4b28-b69b-fde68ae3c315} +0 +1688752894446314 +1688752894447350 +1688752894372747 +0 +true +# + +https://www.youtube.com/ +https://www.youtube.com/sw.js +true +{a5f794b3-c21f-4d81-8aa7-9bb971d12974} +0 +1688832651585959 +1688832651663657 +1688832651027063 +1 +true +# + +https://www.mankier.com/ +https://www.mankier.com/sw-1.js +true +{0a2ae3ac-f1de-4547-af5c-662ed079b794} +0 +1688839381541117 +1688839381542173 +1688839381450857 +0 +true +# + +https://developer.android.com/ +https://developer.android.com/sw.js +true +{122c132b-93e8-467b-a9ac-a971a8615ca4} +0 +1688900821577958 +1688900821650882 +1688900821334494 +0 +true +# + +https://app.nofwl.com/ +https://app.nofwl.com/sw.js?params=%7B%22offlineMode%22%3Afalse%2C%22debug%22%3Afalse%7D +true +{3a068ee3-43f9-41f6-b32a-433d65a28438} +0 +1689010378439076 +1689010378440028 +1689010378423445 +0 +true +# diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/sessionCheckpoints.json b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/sessionCheckpoints.json new file mode 100644 index 0000000..928de6a --- /dev/null +++ b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/sessionCheckpoints.json @@ -0,0 +1 @@ +{"profile-after-change":true,"final-ui-startup":true,"sessionstore-windows-restored":true,"quit-application-granted":true,"quit-application":true,"sessionstore-final-state-write-complete":true,"profile-change-net-teardown":true,"profile-change-teardown":true,"profile-before-change":true} \ No newline at end of file diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/sessionstore-backups/previous.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/sessionstore-backups/previous.jsonlz4 new file mode 100644 index 0000000..677b481 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/sessionstore-backups/previous.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/sessionstore-backups/recovery.baklz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/sessionstore-backups/recovery.baklz4 new file mode 100644 index 0000000..555955a Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/sessionstore-backups/recovery.baklz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/sessionstore-backups/recovery.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/sessionstore-backups/recovery.jsonlz4 new file mode 100644 index 0000000..48e64b1 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/sessionstore-backups/recovery.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/sessionstore-backups/upgrade.jsonlz4-20230704152300 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/sessionstore-backups/upgrade.jsonlz4-20230704152300 new file mode 100644 index 0000000..a05983c Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/sessionstore-backups/upgrade.jsonlz4-20230704152300 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/sessionstore-backups/upgrade.jsonlz4-20230707173157 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/sessionstore-backups/upgrade.jsonlz4-20230707173157 new file mode 100644 index 0000000..f102a53 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/sessionstore-backups/upgrade.jsonlz4-20230707173157 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/sessionstore.jsonlz4 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/sessionstore.jsonlz4 new file mode 100644 index 0000000..26e64ba Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/sessionstore.jsonlz4 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/settings/data.safe.bin b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/settings/data.safe.bin new file mode 100644 index 0000000..e28344e Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/settings/data.safe.bin differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/shield-preference-experiments.json b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/shield-preference-experiments.json new file mode 100644 index 0000000..3759a90 --- /dev/null +++ b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/shield-preference-experiments.json @@ -0,0 +1 @@ +{"experiments":{}} \ No newline at end of file diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage-sync-v2.sqlite b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage-sync-v2.sqlite new file mode 100644 index 0000000..0ff295a Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage-sync-v2.sqlite differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage-sync-v2.sqlite-shm b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage-sync-v2.sqlite-shm new file mode 100644 index 0000000..75f11ef Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage-sync-v2.sqlite-shm differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage-sync-v2.sqlite-wal b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage-sync-v2.sqlite-wal new file mode 100644 index 0000000..8729d10 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage-sync-v2.sqlite-wal differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage.sqlite b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage.sqlite new file mode 100644 index 0000000..c2d7532 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage.sqlite differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++26d15cb402d025a6a9c112a602520aa1.safeframe.googlesyndication.com^partitionKey=%28https%2Cstackoverflow.com%29/.metadata-v2 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++26d15cb402d025a6a9c112a602520aa1.safeframe.googlesyndication.com^partitionKey=%28https%2Cstackoverflow.com%29/.metadata-v2 new file mode 100644 index 0000000..fc34496 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++26d15cb402d025a6a9c112a602520aa1.safeframe.googlesyndication.com^partitionKey=%28https%2Cstackoverflow.com%29/.metadata-v2 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++26d15cb402d025a6a9c112a602520aa1.safeframe.googlesyndication.com^partitionKey=%28https%2Cstackoverflow.com%29/idb/12183338011.sqlite b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++26d15cb402d025a6a9c112a602520aa1.safeframe.googlesyndication.com^partitionKey=%28https%2Cstackoverflow.com%29/idb/12183338011.sqlite new file mode 100644 index 0000000..1b00c45 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++26d15cb402d025a6a9c112a602520aa1.safeframe.googlesyndication.com^partitionKey=%28https%2Cstackoverflow.com%29/idb/12183338011.sqlite differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++28a3c8d5842d22e620cab9eb74930255.safeframe.googlesyndication.com^partitionKey=%28https%2Cstackoverflow.com%29/.metadata-v2 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++28a3c8d5842d22e620cab9eb74930255.safeframe.googlesyndication.com^partitionKey=%28https%2Cstackoverflow.com%29/.metadata-v2 new file mode 100644 index 0000000..7a0e6a1 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++28a3c8d5842d22e620cab9eb74930255.safeframe.googlesyndication.com^partitionKey=%28https%2Cstackoverflow.com%29/.metadata-v2 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++28a3c8d5842d22e620cab9eb74930255.safeframe.googlesyndication.com^partitionKey=%28https%2Cstackoverflow.com%29/idb/12183338011.sqlite b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++28a3c8d5842d22e620cab9eb74930255.safeframe.googlesyndication.com^partitionKey=%28https%2Cstackoverflow.com%29/idb/12183338011.sqlite new file mode 100644 index 0000000..e5ac405 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++28a3c8d5842d22e620cab9eb74930255.safeframe.googlesyndication.com^partitionKey=%28https%2Cstackoverflow.com%29/idb/12183338011.sqlite differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++3e60f97a9cd43008e1b44ca553fee27e.safeframe.googlesyndication.com^partitionKey=%28https%2Cstackoverflow.com%29/.metadata-v2 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++3e60f97a9cd43008e1b44ca553fee27e.safeframe.googlesyndication.com^partitionKey=%28https%2Cstackoverflow.com%29/.metadata-v2 new file mode 100644 index 0000000..1c97a58 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++3e60f97a9cd43008e1b44ca553fee27e.safeframe.googlesyndication.com^partitionKey=%28https%2Cstackoverflow.com%29/.metadata-v2 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++3e60f97a9cd43008e1b44ca553fee27e.safeframe.googlesyndication.com^partitionKey=%28https%2Cstackoverflow.com%29/idb/12183338011.sqlite b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++3e60f97a9cd43008e1b44ca553fee27e.safeframe.googlesyndication.com^partitionKey=%28https%2Cstackoverflow.com%29/idb/12183338011.sqlite new file mode 100644 index 0000000..942c119 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++3e60f97a9cd43008e1b44ca553fee27e.safeframe.googlesyndication.com^partitionKey=%28https%2Cstackoverflow.com%29/idb/12183338011.sqlite differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++5e8894ab3808cecb370f09981b14be61.safeframe.googlesyndication.com^partitionKey=%28https%2Ctecadmin.net%29/.metadata-v2 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++5e8894ab3808cecb370f09981b14be61.safeframe.googlesyndication.com^partitionKey=%28https%2Ctecadmin.net%29/.metadata-v2 new file mode 100644 index 0000000..74da028 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++5e8894ab3808cecb370f09981b14be61.safeframe.googlesyndication.com^partitionKey=%28https%2Ctecadmin.net%29/.metadata-v2 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++5e8894ab3808cecb370f09981b14be61.safeframe.googlesyndication.com^partitionKey=%28https%2Ctecadmin.net%29/idb/12183338011.sqlite b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++5e8894ab3808cecb370f09981b14be61.safeframe.googlesyndication.com^partitionKey=%28https%2Ctecadmin.net%29/idb/12183338011.sqlite new file mode 100644 index 0000000..7e1f232 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++5e8894ab3808cecb370f09981b14be61.safeframe.googlesyndication.com^partitionKey=%28https%2Ctecadmin.net%29/idb/12183338011.sqlite differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++90bf950342f10867ce9de455e2c8b131.safeframe.googlesyndication.com^partitionKey=%28https%2Cstackoverflow.com%29/.metadata-v2 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++90bf950342f10867ce9de455e2c8b131.safeframe.googlesyndication.com^partitionKey=%28https%2Cstackoverflow.com%29/.metadata-v2 new file mode 100644 index 0000000..4ba99c4 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++90bf950342f10867ce9de455e2c8b131.safeframe.googlesyndication.com^partitionKey=%28https%2Cstackoverflow.com%29/.metadata-v2 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++90bf950342f10867ce9de455e2c8b131.safeframe.googlesyndication.com^partitionKey=%28https%2Cstackoverflow.com%29/idb/12183338011.sqlite b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++90bf950342f10867ce9de455e2c8b131.safeframe.googlesyndication.com^partitionKey=%28https%2Cstackoverflow.com%29/idb/12183338011.sqlite new file mode 100644 index 0000000..b960497 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++90bf950342f10867ce9de455e2c8b131.safeframe.googlesyndication.com^partitionKey=%28https%2Cstackoverflow.com%29/idb/12183338011.sqlite differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++accounts.spotify.com/.metadata-v2 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++accounts.spotify.com/.metadata-v2 new file mode 100644 index 0000000..0386176 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++accounts.spotify.com/.metadata-v2 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++accounts.spotify.com/ls/data.sqlite b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++accounts.spotify.com/ls/data.sqlite new file mode 100644 index 0000000..0785214 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++accounts.spotify.com/ls/data.sqlite differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++accounts.spotify.com/ls/usage b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++accounts.spotify.com/ls/usage new file mode 100644 index 0000000..7a5422a Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++accounts.spotify.com/ls/usage differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++addons.mozilla.org/.metadata-v2 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++addons.mozilla.org/.metadata-v2 new file mode 100644 index 0000000..3ddc8ea Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++addons.mozilla.org/.metadata-v2 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++addons.mozilla.org/idb/1310459950addndeotnnso-rf.sqlite b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++addons.mozilla.org/idb/1310459950addndeotnnso-rf.sqlite new file mode 100644 index 0000000..5c0c829 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++addons.mozilla.org/idb/1310459950addndeotnnso-rf.sqlite differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++alternativeto.net/.metadata-v2 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++alternativeto.net/.metadata-v2 new file mode 100644 index 0000000..809a150 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++alternativeto.net/.metadata-v2 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++alternativeto.net/ls/data.sqlite b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++alternativeto.net/ls/data.sqlite new file mode 100644 index 0000000..24c8126 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++alternativeto.net/ls/data.sqlite differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++alternativeto.net/ls/usage b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++alternativeto.net/ls/usage new file mode 100644 index 0000000..af6e0c3 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++alternativeto.net/ls/usage differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++app.nofwl.com/.metadata-v2 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++app.nofwl.com/.metadata-v2 new file mode 100644 index 0000000..d630587 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++app.nofwl.com/.metadata-v2 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++app.nofwl.com/cache/.padding b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++app.nofwl.com/cache/.padding new file mode 100644 index 0000000..1b1cb4d Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++app.nofwl.com/cache/.padding differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++app.nofwl.com/cache/caches.sqlite b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++app.nofwl.com/cache/caches.sqlite new file mode 100644 index 0000000..a266923 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++app.nofwl.com/cache/caches.sqlite differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++app.nofwl.com/cache/morgue/120/{6cd4735f-5592-4ec5-9322-5266ea2a0878}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++app.nofwl.com/cache/morgue/120/{6cd4735f-5592-4ec5-9322-5266ea2a0878}.final new file mode 100644 index 0000000..0f8fb7f Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++app.nofwl.com/cache/morgue/120/{6cd4735f-5592-4ec5-9322-5266ea2a0878}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++arewewaylandyet.com/.metadata-v2 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++arewewaylandyet.com/.metadata-v2 new file mode 100644 index 0000000..fc70fb3 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++arewewaylandyet.com/.metadata-v2 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++arewewaylandyet.com/ls/data.sqlite b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++arewewaylandyet.com/ls/data.sqlite new file mode 100644 index 0000000..c82f494 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++arewewaylandyet.com/ls/data.sqlite differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++arewewaylandyet.com/ls/usage b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++arewewaylandyet.com/ls/usage new file mode 100644 index 0000000..877763a Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++arewewaylandyet.com/ls/usage differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++askubuntu.com/.metadata-v2 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++askubuntu.com/.metadata-v2 new file mode 100644 index 0000000..c85bd57 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++askubuntu.com/.metadata-v2 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++askubuntu.com/ls/data.sqlite b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++askubuntu.com/ls/data.sqlite new file mode 100644 index 0000000..974f20f Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++askubuntu.com/ls/data.sqlite differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++askubuntu.com/ls/usage b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++askubuntu.com/ls/usage new file mode 100644 index 0000000..56f9075 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++askubuntu.com/ls/usage differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++basic-doc-viewer.eu.api.blackboard.com^partitionKey=%28https%2Cnorthampton.ac.uk%29/.metadata-v2 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++basic-doc-viewer.eu.api.blackboard.com^partitionKey=%28https%2Cnorthampton.ac.uk%29/.metadata-v2 new file mode 100644 index 0000000..3555403 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++basic-doc-viewer.eu.api.blackboard.com^partitionKey=%28https%2Cnorthampton.ac.uk%29/.metadata-v2 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++basic-doc-viewer.eu.api.blackboard.com^partitionKey=%28https%2Cnorthampton.ac.uk%29/ls/data.sqlite b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++basic-doc-viewer.eu.api.blackboard.com^partitionKey=%28https%2Cnorthampton.ac.uk%29/ls/data.sqlite new file mode 100644 index 0000000..c99e9d6 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++basic-doc-viewer.eu.api.blackboard.com^partitionKey=%28https%2Cnorthampton.ac.uk%29/ls/data.sqlite differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++basic-doc-viewer.eu.api.blackboard.com^partitionKey=%28https%2Cnorthampton.ac.uk%29/ls/usage b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++basic-doc-viewer.eu.api.blackboard.com^partitionKey=%28https%2Cnorthampton.ac.uk%29/ls/usage new file mode 100644 index 0000000..275bda5 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++basic-doc-viewer.eu.api.blackboard.com^partitionKey=%28https%2Cnorthampton.ac.uk%29/ls/usage differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++codeberg.org/.metadata-v2 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++codeberg.org/.metadata-v2 new file mode 100644 index 0000000..d76ecf3 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++codeberg.org/.metadata-v2 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++codeberg.org/cache/.padding b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++codeberg.org/cache/.padding new file mode 100644 index 0000000..1b1cb4d Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++codeberg.org/cache/.padding differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++codeberg.org/cache/caches.sqlite b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++codeberg.org/cache/caches.sqlite new file mode 100644 index 0000000..0e40380 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++codeberg.org/cache/caches.sqlite differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++dash.cloudflare.com/.metadata-v2 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++dash.cloudflare.com/.metadata-v2 new file mode 100644 index 0000000..f31d0fe Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++dash.cloudflare.com/.metadata-v2 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++dash.cloudflare.com/ls/data.sqlite b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++dash.cloudflare.com/ls/data.sqlite new file mode 100644 index 0000000..39e9c13 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++dash.cloudflare.com/ls/data.sqlite differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++dash.cloudflare.com/ls/usage b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++dash.cloudflare.com/ls/usage new file mode 100644 index 0000000..38e3219 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++dash.cloudflare.com/ls/usage differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++de0e28e216a37b919cd97f7020eee2c0.safeframe.googlesyndication.com^partitionKey=%28https%2Cshellscript.sh%29/.metadata-v2 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++de0e28e216a37b919cd97f7020eee2c0.safeframe.googlesyndication.com^partitionKey=%28https%2Cshellscript.sh%29/.metadata-v2 new file mode 100644 index 0000000..e30c5de Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++de0e28e216a37b919cd97f7020eee2c0.safeframe.googlesyndication.com^partitionKey=%28https%2Cshellscript.sh%29/.metadata-v2 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++de0e28e216a37b919cd97f7020eee2c0.safeframe.googlesyndication.com^partitionKey=%28https%2Cshellscript.sh%29/idb/12183338011.sqlite b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++de0e28e216a37b919cd97f7020eee2c0.safeframe.googlesyndication.com^partitionKey=%28https%2Cshellscript.sh%29/idb/12183338011.sqlite new file mode 100644 index 0000000..969ecc6 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++de0e28e216a37b919cd97f7020eee2c0.safeframe.googlesyndication.com^partitionKey=%28https%2Cshellscript.sh%29/idb/12183338011.sqlite differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/.metadata-v2 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/.metadata-v2 new file mode 100644 index 0000000..7628efb Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/.metadata-v2 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/.padding b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/.padding new file mode 100644 index 0000000..5398e0e Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/.padding differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/caches.sqlite b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/caches.sqlite new file mode 100644 index 0000000..61287b3 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/caches.sqlite differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/101/{58a2eb0f-f010-4083-a5d6-8750714af865}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/101/{58a2eb0f-f010-4083-a5d6-8750714af865}.final new file mode 100644 index 0000000..cb9ca84 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/101/{58a2eb0f-f010-4083-a5d6-8750714af865}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/102/{7d113294-6b63-433f-9c54-af64329f9d66}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/102/{7d113294-6b63-433f-9c54-af64329f9d66}.final new file mode 100644 index 0000000..59631cf Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/102/{7d113294-6b63-433f-9c54-af64329f9d66}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/104/{be50852a-6a3a-4036-8a07-7146ca3c3768}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/104/{be50852a-6a3a-4036-8a07-7146ca3c3768}.final new file mode 100644 index 0000000..9e5984d Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/104/{be50852a-6a3a-4036-8a07-7146ca3c3768}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/105/{e99b6f36-2c68-427b-a5f6-3daf078eb269}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/105/{e99b6f36-2c68-427b-a5f6-3daf078eb269}.final new file mode 100644 index 0000000..43ac609 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/105/{e99b6f36-2c68-427b-a5f6-3daf078eb269}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/116/{c775bcb5-999a-468b-aaa4-adb415594174}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/116/{c775bcb5-999a-468b-aaa4-adb415594174}.final new file mode 100644 index 0000000..7b0cd31 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/116/{c775bcb5-999a-468b-aaa4-adb415594174}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/123/{370b157d-9da5-4039-9ce0-7019069f777b}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/123/{370b157d-9da5-4039-9ce0-7019069f777b}.final new file mode 100644 index 0000000..4abbd65 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/123/{370b157d-9da5-4039-9ce0-7019069f777b}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/123/{aa49fc82-7eca-434f-a135-71ed5443077b}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/123/{aa49fc82-7eca-434f-a135-71ed5443077b}.final new file mode 100644 index 0000000..11db8b8 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/123/{aa49fc82-7eca-434f-a135-71ed5443077b}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/124/{26a031b2-8386-47a5-9265-f8e6915b9c7c}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/124/{26a031b2-8386-47a5-9265-f8e6915b9c7c}.final new file mode 100644 index 0000000..fda4db4 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/124/{26a031b2-8386-47a5-9265-f8e6915b9c7c}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/129/{9c731d5a-cfae-4c6d-9a3c-9929e0c7a281}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/129/{9c731d5a-cfae-4c6d-9a3c-9929e0c7a281}.final new file mode 100644 index 0000000..30bb2fa Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/129/{9c731d5a-cfae-4c6d-9a3c-9929e0c7a281}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/14/{55afa072-9b8b-4dcd-a087-52d505d5820e}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/14/{55afa072-9b8b-4dcd-a087-52d505d5820e}.final new file mode 100644 index 0000000..3bc0e08 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/14/{55afa072-9b8b-4dcd-a087-52d505d5820e}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/142/{b1ef80b2-5529-4e0e-a1bd-60e16a225e8e}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/142/{b1ef80b2-5529-4e0e-a1bd-60e16a225e8e}.final new file mode 100644 index 0000000..6991252 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/142/{b1ef80b2-5529-4e0e-a1bd-60e16a225e8e}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/143/{300c6e69-7f75-4d0c-9717-17be8c77088f}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/143/{300c6e69-7f75-4d0c-9717-17be8c77088f}.final new file mode 100644 index 0000000..75e2fec Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/143/{300c6e69-7f75-4d0c-9717-17be8c77088f}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/148/{af46de18-bee9-4002-9c7a-ede9fca67b94}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/148/{af46de18-bee9-4002-9c7a-ede9fca67b94}.final new file mode 100644 index 0000000..4ea137a Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/148/{af46de18-bee9-4002-9c7a-ede9fca67b94}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/152/{6fef0307-dcce-4576-8a2a-f92756b3b698}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/152/{6fef0307-dcce-4576-8a2a-f92756b3b698}.final new file mode 100644 index 0000000..9e6af45 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/152/{6fef0307-dcce-4576-8a2a-f92756b3b698}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/154/{b7acc3e0-68e4-4f2c-acec-f5488a5ce59a}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/154/{b7acc3e0-68e4-4f2c-acec-f5488a5ce59a}.final new file mode 100644 index 0000000..7c79b42 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/154/{b7acc3e0-68e4-4f2c-acec-f5488a5ce59a}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/163/{64834477-1ce8-4741-86f9-d2f742a77da3}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/163/{64834477-1ce8-4741-86f9-d2f742a77da3}.final new file mode 100644 index 0000000..3331caf Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/163/{64834477-1ce8-4741-86f9-d2f742a77da3}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/164/{f55388d4-b39c-4af6-86d7-3961140964a4}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/164/{f55388d4-b39c-4af6-86d7-3961140964a4}.final new file mode 100644 index 0000000..d4dd584 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/164/{f55388d4-b39c-4af6-86d7-3961140964a4}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/180/{62d8836d-4978-45ff-a8df-df067c1f18b4}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/180/{62d8836d-4978-45ff-a8df-df067c1f18b4}.final new file mode 100644 index 0000000..35f5378 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/180/{62d8836d-4978-45ff-a8df-df067c1f18b4}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/181/{bd72c65f-4515-4b31-9e4f-0c3dd578c5b5}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/181/{bd72c65f-4515-4b31-9e4f-0c3dd578c5b5}.final new file mode 100644 index 0000000..d4dd584 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/181/{bd72c65f-4515-4b31-9e4f-0c3dd578c5b5}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/181/{ea17f530-8f0c-4cee-8bcd-2112dec2d9b5}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/181/{ea17f530-8f0c-4cee-8bcd-2112dec2d9b5}.final new file mode 100644 index 0000000..7e5ed23 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/181/{ea17f530-8f0c-4cee-8bcd-2112dec2d9b5}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/187/{d2ff902b-5e11-48b8-ba12-3cc018354bbb}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/187/{d2ff902b-5e11-48b8-ba12-3cc018354bbb}.final new file mode 100644 index 0000000..8959d00 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/187/{d2ff902b-5e11-48b8-ba12-3cc018354bbb}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/188/{83c53742-6cfc-4da0-a362-f4210ebd9abc}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/188/{83c53742-6cfc-4da0-a362-f4210ebd9abc}.final new file mode 100644 index 0000000..d7052d7 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/188/{83c53742-6cfc-4da0-a362-f4210ebd9abc}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/191/{5c7d1b04-7085-4788-aff5-ff1c7ef457bf}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/191/{5c7d1b04-7085-4788-aff5-ff1c7ef457bf}.final new file mode 100644 index 0000000..9f605de Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/191/{5c7d1b04-7085-4788-aff5-ff1c7ef457bf}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/191/{703befa8-8f5a-4dca-9d45-ac949dff46bf}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/191/{703befa8-8f5a-4dca-9d45-ac949dff46bf}.final new file mode 100644 index 0000000..0cfdca6 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/191/{703befa8-8f5a-4dca-9d45-ac949dff46bf}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/195/{e5a15502-3bec-400d-8e79-8e495efbcac3}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/195/{e5a15502-3bec-400d-8e79-8e495efbcac3}.final new file mode 100644 index 0000000..9c01f08 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/195/{e5a15502-3bec-400d-8e79-8e495efbcac3}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/20/{04804367-aa0d-482d-9b3e-4556763caf14}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/20/{04804367-aa0d-482d-9b3e-4556763caf14}.final new file mode 100644 index 0000000..7c334e4 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/20/{04804367-aa0d-482d-9b3e-4556763caf14}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/202/{0fd024e7-2ef2-4107-a80d-7f53c7b3c3ca}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/202/{0fd024e7-2ef2-4107-a80d-7f53c7b3c3ca}.final new file mode 100644 index 0000000..b3d5d9d Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/202/{0fd024e7-2ef2-4107-a80d-7f53c7b3c3ca}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/207/{d7b847a7-aadd-457c-8209-be93185171cf}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/207/{d7b847a7-aadd-457c-8209-be93185171cf}.final new file mode 100644 index 0000000..619a208 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/207/{d7b847a7-aadd-457c-8209-be93185171cf}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/209/{76064110-5a55-4272-86d0-c910531badd1}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/209/{76064110-5a55-4272-86d0-c910531badd1}.final new file mode 100644 index 0000000..b90ef29 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/209/{76064110-5a55-4272-86d0-c910531badd1}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/21/{b9456bd3-7fef-4179-b459-7ba5da28b615}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/21/{b9456bd3-7fef-4179-b459-7ba5da28b615}.final new file mode 100644 index 0000000..d1588c9 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/21/{b9456bd3-7fef-4179-b459-7ba5da28b615}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/211/{356b796c-5844-4415-a1c9-921ca55bf4d3}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/211/{356b796c-5844-4415-a1c9-921ca55bf4d3}.final new file mode 100644 index 0000000..49b259a Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/211/{356b796c-5844-4415-a1c9-921ca55bf4d3}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/212/{6d927b54-ee07-4a1f-bc11-a210622cc9d4}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/212/{6d927b54-ee07-4a1f-bc11-a210622cc9d4}.final new file mode 100644 index 0000000..bd0b01f Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/212/{6d927b54-ee07-4a1f-bc11-a210622cc9d4}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/214/{53caf984-357e-4998-b012-0e84d70888d6}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/214/{53caf984-357e-4998-b012-0e84d70888d6}.final new file mode 100644 index 0000000..3db19b3 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/214/{53caf984-357e-4998-b012-0e84d70888d6}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/217/{080d2ff8-baa5-4436-9c85-50befba5a9d9}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/217/{080d2ff8-baa5-4436-9c85-50befba5a9d9}.final new file mode 100644 index 0000000..1f376ab Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/217/{080d2ff8-baa5-4436-9c85-50befba5a9d9}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/220/{d8dbd025-5aae-4dde-b4fe-b8877c2700dc}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/220/{d8dbd025-5aae-4dde-b4fe-b8877c2700dc}.final new file mode 100644 index 0000000..a517b5d Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/220/{d8dbd025-5aae-4dde-b4fe-b8877c2700dc}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/222/{2b21316c-cfe5-4c87-ab37-66aba89378de}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/222/{2b21316c-cfe5-4c87-ab37-66aba89378de}.final new file mode 100644 index 0000000..d6be7c3 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/222/{2b21316c-cfe5-4c87-ab37-66aba89378de}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/228/{75c4609c-00ca-41ab-b848-c53d1f2c36e4}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/228/{75c4609c-00ca-41ab-b848-c53d1f2c36e4}.final new file mode 100644 index 0000000..bb7d923 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/228/{75c4609c-00ca-41ab-b848-c53d1f2c36e4}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/237/{18b563e2-9e81-458b-895b-ffa9222d94ed}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/237/{18b563e2-9e81-458b-895b-ffa9222d94ed}.final new file mode 100644 index 0000000..47f789b Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/237/{18b563e2-9e81-458b-895b-ffa9222d94ed}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/239/{2edf1125-7750-46f7-8f85-a1e30079f9ef}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/239/{2edf1125-7750-46f7-8f85-a1e30079f9ef}.final new file mode 100644 index 0000000..8e8db7f Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/239/{2edf1125-7750-46f7-8f85-a1e30079f9ef}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/24/{527358a5-bb11-4070-809b-594883a49e18}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/24/{527358a5-bb11-4070-809b-594883a49e18}.final new file mode 100644 index 0000000..fd4ed5f Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/24/{527358a5-bb11-4070-809b-594883a49e18}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/24/{744742b0-e9bc-49c0-b020-7072a2593218}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/24/{744742b0-e9bc-49c0-b020-7072a2593218}.final new file mode 100644 index 0000000..49a4a1b Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/24/{744742b0-e9bc-49c0-b020-7072a2593218}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/249/{1b8e7c66-97bc-4617-9863-4a491a9bf5f9}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/249/{1b8e7c66-97bc-4617-9863-4a491a9bf5f9}.final new file mode 100644 index 0000000..adcc320 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/249/{1b8e7c66-97bc-4617-9863-4a491a9bf5f9}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/25/{b0dfab8d-e6b9-4b5e-a18d-53d2d6394219}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/25/{b0dfab8d-e6b9-4b5e-a18d-53d2d6394219}.final new file mode 100644 index 0000000..dc818a7 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/25/{b0dfab8d-e6b9-4b5e-a18d-53d2d6394219}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/250/{8e1eee99-d701-40b0-bf04-e3646f27bdfa}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/250/{8e1eee99-d701-40b0-bf04-e3646f27bdfa}.final new file mode 100644 index 0000000..84b4263 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/250/{8e1eee99-d701-40b0-bf04-e3646f27bdfa}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/253/{844255af-59fe-4e8d-a3ef-4a209056f3fd}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/253/{844255af-59fe-4e8d-a3ef-4a209056f3fd}.final new file mode 100644 index 0000000..fba96c9 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/253/{844255af-59fe-4e8d-a3ef-4a209056f3fd}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/28/{ba7ee0a9-1b67-46bd-8b71-0cdaf676321c}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/28/{ba7ee0a9-1b67-46bd-8b71-0cdaf676321c}.final new file mode 100644 index 0000000..a0fdfa3 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/28/{ba7ee0a9-1b67-46bd-8b71-0cdaf676321c}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/3/{9f314291-e004-4e14-a307-c38c3383f103}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/3/{9f314291-e004-4e14-a307-c38c3383f103}.final new file mode 100644 index 0000000..ec838dd Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/3/{9f314291-e004-4e14-a307-c38c3383f103}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/3/{d8b012fc-4665-443e-a8b6-5e53bbdcbd03}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/3/{d8b012fc-4665-443e-a8b6-5e53bbdcbd03}.final new file mode 100644 index 0000000..216e5fa Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/3/{d8b012fc-4665-443e-a8b6-5e53bbdcbd03}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/37/{5d3e46b2-8891-4d42-afcc-c29542ce4025}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/37/{5d3e46b2-8891-4d42-afcc-c29542ce4025}.final new file mode 100644 index 0000000..6666955 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/37/{5d3e46b2-8891-4d42-afcc-c29542ce4025}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/51/{3c08289e-9ca2-45b7-b6d3-0bcd59af9133}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/51/{3c08289e-9ca2-45b7-b6d3-0bcd59af9133}.final new file mode 100644 index 0000000..b7363f2 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/51/{3c08289e-9ca2-45b7-b6d3-0bcd59af9133}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/51/{54331d97-6b80-4941-96bd-3587c1f11c33}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/51/{54331d97-6b80-4941-96bd-3587c1f11c33}.final new file mode 100644 index 0000000..9b0cb96 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/51/{54331d97-6b80-4941-96bd-3587c1f11c33}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/52/{8100c711-8a12-48db-90b3-5c146f97da34}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/52/{8100c711-8a12-48db-90b3-5c146f97da34}.final new file mode 100644 index 0000000..9b5b024 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/52/{8100c711-8a12-48db-90b3-5c146f97da34}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/53/{f63847ca-2410-4e25-9185-4dcfe5af6c35}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/53/{f63847ca-2410-4e25-9185-4dcfe5af6c35}.final new file mode 100644 index 0000000..20d35bc Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/53/{f63847ca-2410-4e25-9185-4dcfe5af6c35}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/58/{7a383a62-2420-464d-a706-eb949423cd3a}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/58/{7a383a62-2420-464d-a706-eb949423cd3a}.final new file mode 100644 index 0000000..c7e0566 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/58/{7a383a62-2420-464d-a706-eb949423cd3a}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/59/{3557f5c3-6277-4bdd-a6db-3c71e3fef93b}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/59/{3557f5c3-6277-4bdd-a6db-3c71e3fef93b}.final new file mode 100644 index 0000000..8813dea Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/59/{3557f5c3-6277-4bdd-a6db-3c71e3fef93b}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/61/{f76ad98f-6f9d-4f4f-b7bb-13088ca1473d}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/61/{f76ad98f-6f9d-4f4f-b7bb-13088ca1473d}.final new file mode 100644 index 0000000..4018589 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/61/{f76ad98f-6f9d-4f4f-b7bb-13088ca1473d}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/80/{e1745f22-5eaa-45ed-b80f-440225b5ed50}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/80/{e1745f22-5eaa-45ed-b80f-440225b5ed50}.final new file mode 100644 index 0000000..60adfbf Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/cache/morgue/80/{e1745f22-5eaa-45ed-b80f-440225b5ed50}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/idb/1120474735dbedv-sxietden-i.sqlite b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/idb/1120474735dbedv-sxietden-i.sqlite new file mode 100644 index 0000000..1ac8e95 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.android.com/idb/1120474735dbedv-sxietden-i.sqlite differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.mozilla.org/.metadata-v2 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.mozilla.org/.metadata-v2 new file mode 100644 index 0000000..29b8e8a Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.mozilla.org/.metadata-v2 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.mozilla.org/idb/216978974Gnlae.sqlite b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.mozilla.org/idb/216978974Gnlae.sqlite new file mode 100644 index 0000000..1d1e071 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++developer.mozilla.org/idb/216978974Gnlae.sqlite differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++discord.com/.metadata-v2 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++discord.com/.metadata-v2 new file mode 100644 index 0000000..1233adf Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++discord.com/.metadata-v2 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++discord.com/ls/data.sqlite b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++discord.com/ls/data.sqlite new file mode 100644 index 0000000..3e174d7 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++discord.com/ls/data.sqlite differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++discord.com/ls/usage b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++discord.com/ls/usage new file mode 100644 index 0000000..aeba822 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++discord.com/ls/usage differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++docs.rs/.metadata-v2 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++docs.rs/.metadata-v2 new file mode 100644 index 0000000..03f13f6 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++docs.rs/.metadata-v2 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++docs.rs/ls/data.sqlite b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++docs.rs/ls/data.sqlite new file mode 100644 index 0000000..3c98edc Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++docs.rs/ls/data.sqlite differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++docs.rs/ls/usage b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++docs.rs/ls/usage new file mode 100644 index 0000000..fd340e6 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++docs.rs/ls/usage differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++docs.spotifyd.rs/.metadata-v2 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++docs.spotifyd.rs/.metadata-v2 new file mode 100644 index 0000000..9a1e790 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++docs.spotifyd.rs/.metadata-v2 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++docs.spotifyd.rs/ls/data.sqlite b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++docs.spotifyd.rs/ls/data.sqlite new file mode 100644 index 0000000..e7378db Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++docs.spotifyd.rs/ls/data.sqlite differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++docs.spotifyd.rs/ls/usage b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++docs.spotifyd.rs/ls/usage new file mode 100644 index 0000000..2e1c966 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++docs.spotifyd.rs/ls/usage differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++docs.waydro.id/.metadata-v2 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++docs.waydro.id/.metadata-v2 new file mode 100644 index 0000000..bbb4477 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++docs.waydro.id/.metadata-v2 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++docs.waydro.id/idb/2076414780cearcohtes-efri.sqlite b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++docs.waydro.id/idb/2076414780cearcohtes-efri.sqlite new file mode 100644 index 0000000..3165e1f Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++docs.waydro.id/idb/2076414780cearcohtes-efri.sqlite differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++docs.waydro.id/idb/2926346687feisraebbaatsaed--hte.sqlite b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++docs.waydro.id/idb/2926346687feisraebbaatsaed--hte.sqlite new file mode 100644 index 0000000..100f372 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++docs.waydro.id/idb/2926346687feisraebbaatsaed--hte.sqlite differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++docs.waydro.id/idb/3547115956fbiDreegbaarsoetLSolc.sqlite b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++docs.waydro.id/idb/3547115956fbiDreegbaarsoetLSolc.sqlite new file mode 100644 index 0000000..9dcff36 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++docs.waydro.id/idb/3547115956fbiDreegbaarsoetLSolc.sqlite differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++docs.waydro.id/idb/3713173747_s_edmban.sqlite b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++docs.waydro.id/idb/3713173747_s_edmban.sqlite new file mode 100644 index 0000000..3ebf6e9 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++docs.waydro.id/idb/3713173747_s_edmban.sqlite differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++docs.waydro.id/ls/data.sqlite b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++docs.waydro.id/ls/data.sqlite new file mode 100644 index 0000000..f487b61 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++docs.waydro.id/ls/data.sqlite differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++docs.waydro.id/ls/usage b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++docs.waydro.id/ls/usage new file mode 100644 index 0000000..e6fc524 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++docs.waydro.id/ls/usage differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++elkowar.github.io/.metadata-v2 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++elkowar.github.io/.metadata-v2 new file mode 100644 index 0000000..a9589d0 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++elkowar.github.io/.metadata-v2 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++elkowar.github.io/ls/data.sqlite b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++elkowar.github.io/ls/data.sqlite new file mode 100644 index 0000000..6572dd3 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++elkowar.github.io/ls/data.sqlite differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++elkowar.github.io/ls/usage b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++elkowar.github.io/ls/usage new file mode 100644 index 0000000..2e1c966 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++elkowar.github.io/ls/usage differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++en.wikibooks.org/.metadata-v2 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++en.wikibooks.org/.metadata-v2 new file mode 100644 index 0000000..6caedeb Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++en.wikibooks.org/.metadata-v2 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++en.wikibooks.org/ls/data.sqlite b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++en.wikibooks.org/ls/data.sqlite new file mode 100644 index 0000000..cd68bc0 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++en.wikibooks.org/ls/data.sqlite differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++en.wikibooks.org/ls/usage b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++en.wikibooks.org/ls/usage new file mode 100644 index 0000000..4c9cca3 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++en.wikibooks.org/ls/usage differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++en.wikipedia.org/.metadata-v2 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++en.wikipedia.org/.metadata-v2 new file mode 100644 index 0000000..544c79c Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++en.wikipedia.org/.metadata-v2 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++en.wikipedia.org/ls/data.sqlite b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++en.wikipedia.org/ls/data.sqlite new file mode 100644 index 0000000..64d6119 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++en.wikipedia.org/ls/data.sqlite differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++en.wikipedia.org/ls/usage b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++en.wikipedia.org/ls/usage new file mode 100644 index 0000000..56f9075 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++en.wikipedia.org/ls/usage differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++f3a965e662e62df37d507b308eec03cf.safeframe.googlesyndication.com^partitionKey=%28https%2Cstackoverflow.com%29/.metadata-v2 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++f3a965e662e62df37d507b308eec03cf.safeframe.googlesyndication.com^partitionKey=%28https%2Cstackoverflow.com%29/.metadata-v2 new file mode 100644 index 0000000..8f1d939 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++f3a965e662e62df37d507b308eec03cf.safeframe.googlesyndication.com^partitionKey=%28https%2Cstackoverflow.com%29/.metadata-v2 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++f3a965e662e62df37d507b308eec03cf.safeframe.googlesyndication.com^partitionKey=%28https%2Cstackoverflow.com%29/idb/12183338011.sqlite b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++f3a965e662e62df37d507b308eec03cf.safeframe.googlesyndication.com^partitionKey=%28https%2Cstackoverflow.com%29/idb/12183338011.sqlite new file mode 100644 index 0000000..b9f4e9b Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++f3a965e662e62df37d507b308eec03cf.safeframe.googlesyndication.com^partitionKey=%28https%2Cstackoverflow.com%29/idb/12183338011.sqlite differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.endeavouros.com/.metadata-v2 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.endeavouros.com/.metadata-v2 new file mode 100644 index 0000000..1fe71b7 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.endeavouros.com/.metadata-v2 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.endeavouros.com/cache/.padding b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.endeavouros.com/cache/.padding new file mode 100644 index 0000000..1b1cb4d Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.endeavouros.com/cache/.padding differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.endeavouros.com/cache/caches.sqlite b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.endeavouros.com/cache/caches.sqlite new file mode 100644 index 0000000..5c32fa0 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.endeavouros.com/cache/caches.sqlite differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.endeavouros.com/ls/data.sqlite b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.endeavouros.com/ls/data.sqlite new file mode 100644 index 0000000..ef6972d Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.endeavouros.com/ls/data.sqlite differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.endeavouros.com/ls/usage b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.endeavouros.com/ls/usage new file mode 100644 index 0000000..76c6661 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.endeavouros.com/ls/usage differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/.metadata-v2 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/.metadata-v2 new file mode 100644 index 0000000..434cae5 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/.metadata-v2 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/.padding b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/.padding new file mode 100644 index 0000000..1b1cb4d Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/.padding differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/caches.sqlite b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/caches.sqlite new file mode 100644 index 0000000..1a21340 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/caches.sqlite differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/caches.sqlite-wal b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/caches.sqlite-wal new file mode 100644 index 0000000..418454d Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/caches.sqlite-wal differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/context_open.marker b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/context_open.marker new file mode 100644 index 0000000..e69de29 diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/0/{b0114739-e429-4e7c-b6a8-730aa7081500}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/0/{b0114739-e429-4e7c-b6a8-730aa7081500}.final new file mode 100644 index 0000000..587f039 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/0/{b0114739-e429-4e7c-b6a8-730aa7081500}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/104/{2f3845e7-8005-4cb7-8241-4b8e98ac0568}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/104/{2f3845e7-8005-4cb7-8241-4b8e98ac0568}.final new file mode 100644 index 0000000..d0153c6 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/104/{2f3845e7-8005-4cb7-8241-4b8e98ac0568}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/105/{b9c61aca-15ce-4c94-995c-bcf2d96e1b69}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/105/{b9c61aca-15ce-4c94-995c-bcf2d96e1b69}.final new file mode 100644 index 0000000..ce20876 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/105/{b9c61aca-15ce-4c94-995c-bcf2d96e1b69}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/111/{8ccb17ca-c1ec-4309-96e0-38ef67167f6f}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/111/{8ccb17ca-c1ec-4309-96e0-38ef67167f6f}.final new file mode 100644 index 0000000..6c6c694 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/111/{8ccb17ca-c1ec-4309-96e0-38ef67167f6f}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/111/{b858fa54-f478-488c-ba4a-e42567f3a96f}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/111/{b858fa54-f478-488c-ba4a-e42567f3a96f}.final new file mode 100644 index 0000000..1a8bcb7 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/111/{b858fa54-f478-488c-ba4a-e42567f3a96f}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/113/{28834614-a30d-4c9d-87d8-b92551670e71}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/113/{28834614-a30d-4c9d-87d8-b92551670e71}.final new file mode 100644 index 0000000..31c1ca9 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/113/{28834614-a30d-4c9d-87d8-b92551670e71}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/128/{04f54630-f811-44a9-8318-535b43c28380}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/128/{04f54630-f811-44a9-8318-535b43c28380}.final new file mode 100644 index 0000000..89a3173 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/128/{04f54630-f811-44a9-8318-535b43c28380}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/129/{0e180196-9ed4-40a0-824c-61d02a930381}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/129/{0e180196-9ed4-40a0-824c-61d02a930381}.final new file mode 100644 index 0000000..fe9b9bd Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/129/{0e180196-9ed4-40a0-824c-61d02a930381}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/129/{a37a9231-ae06-43ed-b2e5-b509caec6281}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/129/{a37a9231-ae06-43ed-b2e5-b509caec6281}.final new file mode 100644 index 0000000..fde2500 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/129/{a37a9231-ae06-43ed-b2e5-b509caec6281}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/130/{8fc46141-1d6c-4e0c-ae07-11a0e235e882}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/130/{8fc46141-1d6c-4e0c-ae07-11a0e235e882}.final new file mode 100644 index 0000000..3ba3807 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/130/{8fc46141-1d6c-4e0c-ae07-11a0e235e882}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/137/{5acc73dc-4ad2-4733-99f9-3a73ba412d89}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/137/{5acc73dc-4ad2-4733-99f9-3a73ba412d89}.final new file mode 100644 index 0000000..e106cf1 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/137/{5acc73dc-4ad2-4733-99f9-3a73ba412d89}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/137/{b5c3d0c0-1f47-45f9-bc06-8fbbca8c7989}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/137/{b5c3d0c0-1f47-45f9-bc06-8fbbca8c7989}.final new file mode 100644 index 0000000..9bde136 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/137/{b5c3d0c0-1f47-45f9-bc06-8fbbca8c7989}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/138/{5c9fb13e-3e45-490a-a8c7-3e113f3c088a}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/138/{5c9fb13e-3e45-490a-a8c7-3e113f3c088a}.final new file mode 100644 index 0000000..08d8655 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/138/{5c9fb13e-3e45-490a-a8c7-3e113f3c088a}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/14/{a938bdab-5174-425f-9a93-9643fa6b080e}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/14/{a938bdab-5174-425f-9a93-9643fa6b080e}.final new file mode 100644 index 0000000..0fe23da Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/14/{a938bdab-5174-425f-9a93-9643fa6b080e}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/149/{14a322fa-cd7c-4599-b763-6b15137bcd95}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/149/{14a322fa-cd7c-4599-b763-6b15137bcd95}.final new file mode 100644 index 0000000..9701474 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/149/{14a322fa-cd7c-4599-b763-6b15137bcd95}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/149/{58bc2e96-7632-4496-8fde-6f3db8f34595}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/149/{58bc2e96-7632-4496-8fde-6f3db8f34595}.final new file mode 100644 index 0000000..a8ebdfd Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/149/{58bc2e96-7632-4496-8fde-6f3db8f34595}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/155/{0be24318-9daf-4cae-b9ad-6f0fec062c9b}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/155/{0be24318-9daf-4cae-b9ad-6f0fec062c9b}.final new file mode 100644 index 0000000..b63ec84 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/155/{0be24318-9daf-4cae-b9ad-6f0fec062c9b}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/156/{99864328-8111-41ff-9cf4-b6fe0634849c}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/156/{99864328-8111-41ff-9cf4-b6fe0634849c}.final new file mode 100644 index 0000000..915616f Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/156/{99864328-8111-41ff-9cf4-b6fe0634849c}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/161/{6355165d-5ae6-43fa-83d6-fdc4af7d48a1}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/161/{6355165d-5ae6-43fa-83d6-fdc4af7d48a1}.final new file mode 100644 index 0000000..bbab0bc Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/161/{6355165d-5ae6-43fa-83d6-fdc4af7d48a1}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/162/{5b3d12f4-23bb-4fe6-bbe7-920907a6b9a2}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/162/{5b3d12f4-23bb-4fe6-bbe7-920907a6b9a2}.final new file mode 100644 index 0000000..39a01dc Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/162/{5b3d12f4-23bb-4fe6-bbe7-920907a6b9a2}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/175/{97c10687-b8d0-40fb-83be-18c692a02aaf}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/175/{97c10687-b8d0-40fb-83be-18c692a02aaf}.final new file mode 100644 index 0000000..a2070d0 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/175/{97c10687-b8d0-40fb-83be-18c692a02aaf}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/179/{26d377c3-f565-46f8-b5c0-0f2f767e18b3}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/179/{26d377c3-f565-46f8-b5c0-0f2f767e18b3}.final new file mode 100644 index 0000000..2ade81c Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/179/{26d377c3-f565-46f8-b5c0-0f2f767e18b3}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/181/{73bc6dae-01f9-43d8-814f-7c2a1965e2b5}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/181/{73bc6dae-01f9-43d8-814f-7c2a1965e2b5}.final new file mode 100644 index 0000000..337802a Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/181/{73bc6dae-01f9-43d8-814f-7c2a1965e2b5}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/187/{8e5fefc1-4aa2-4ccb-b74d-051f5cae9bbb}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/187/{8e5fefc1-4aa2-4ccb-b74d-051f5cae9bbb}.final new file mode 100644 index 0000000..cae5496 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/187/{8e5fefc1-4aa2-4ccb-b74d-051f5cae9bbb}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/198/{bc495ab0-c665-44fd-90b0-6130c5585dc6}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/198/{bc495ab0-c665-44fd-90b0-6130c5585dc6}.final new file mode 100644 index 0000000..e39f2b7 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/198/{bc495ab0-c665-44fd-90b0-6130c5585dc6}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/2/{12158b75-5f15-4a46-9443-0e4f572d3902}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/2/{12158b75-5f15-4a46-9443-0e4f572d3902}.final new file mode 100644 index 0000000..822e273 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/2/{12158b75-5f15-4a46-9443-0e4f572d3902}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/2/{61125937-d434-4809-8fa5-0d9f2d82c902}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/2/{61125937-d434-4809-8fa5-0d9f2d82c902}.final new file mode 100644 index 0000000..a44619b Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/2/{61125937-d434-4809-8fa5-0d9f2d82c902}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/2/{a0711dbb-b51c-420b-bfac-80ef69866f02}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/2/{a0711dbb-b51c-420b-bfac-80ef69866f02}.final new file mode 100644 index 0000000..8577d8c Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/2/{a0711dbb-b51c-420b-bfac-80ef69866f02}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/204/{0554dee8-861b-47ac-ab7b-d996225903cc}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/204/{0554dee8-861b-47ac-ab7b-d996225903cc}.final new file mode 100644 index 0000000..199ca81 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/204/{0554dee8-861b-47ac-ab7b-d996225903cc}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/205/{7f64800a-0edb-46c3-b835-a79ec5c80fcd}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/205/{7f64800a-0edb-46c3-b835-a79ec5c80fcd}.final new file mode 100644 index 0000000..bd154f7 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/205/{7f64800a-0edb-46c3-b835-a79ec5c80fcd}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/211/{7122e7b7-0812-41c9-b981-34d35ba1d5d3}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/211/{7122e7b7-0812-41c9-b981-34d35ba1d5d3}.final new file mode 100644 index 0000000..b86eef1 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/211/{7122e7b7-0812-41c9-b981-34d35ba1d5d3}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/214/{09ae81b1-1d7d-4e2d-9de8-2a9fef02b8d6}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/214/{09ae81b1-1d7d-4e2d-9de8-2a9fef02b8d6}.final new file mode 100644 index 0000000..9854014 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/214/{09ae81b1-1d7d-4e2d-9de8-2a9fef02b8d6}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/222/{560745ef-a99e-402e-8665-6894bc5516de}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/222/{560745ef-a99e-402e-8665-6894bc5516de}.final new file mode 100644 index 0000000..2faa44d Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/222/{560745ef-a99e-402e-8665-6894bc5516de}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/222/{990e2baf-67e9-4a48-8b48-386237e846de}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/222/{990e2baf-67e9-4a48-8b48-386237e846de}.final new file mode 100644 index 0000000..ecbbe19 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/222/{990e2baf-67e9-4a48-8b48-386237e846de}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/222/{be4153ba-f304-4a94-b3c4-6d5b5d0750de}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/222/{be4153ba-f304-4a94-b3c4-6d5b5d0750de}.final new file mode 100644 index 0000000..ff02680 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/222/{be4153ba-f304-4a94-b3c4-6d5b5d0750de}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/222/{deb12ddb-e7dc-4446-a0ef-108e42df39de}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/222/{deb12ddb-e7dc-4446-a0ef-108e42df39de}.final new file mode 100644 index 0000000..119973d Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/222/{deb12ddb-e7dc-4446-a0ef-108e42df39de}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/223/{e39be7e8-a7a6-42ac-b151-d4d4d14d5edf}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/223/{e39be7e8-a7a6-42ac-b151-d4d4d14d5edf}.final new file mode 100644 index 0000000..dfba0d4 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/223/{e39be7e8-a7a6-42ac-b151-d4d4d14d5edf}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/224/{05d03ceb-cd4c-45ba-83c5-386eaf4517e0}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/224/{05d03ceb-cd4c-45ba-83c5-386eaf4517e0}.final new file mode 100644 index 0000000..f05d2e7 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/224/{05d03ceb-cd4c-45ba-83c5-386eaf4517e0}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/225/{a9220bc1-aaed-4fe0-98c2-18f8cde07ae1}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/225/{a9220bc1-aaed-4fe0-98c2-18f8cde07ae1}.final new file mode 100644 index 0000000..e4d5bbc Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/225/{a9220bc1-aaed-4fe0-98c2-18f8cde07ae1}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/226/{ce6ec792-0c5c-453e-b333-5d7d848d5be2}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/226/{ce6ec792-0c5c-453e-b333-5d7d848d5be2}.final new file mode 100644 index 0000000..477adb5 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/226/{ce6ec792-0c5c-453e-b333-5d7d848d5be2}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/228/{12b3cca3-693a-49ed-b95c-418d4aaac2e4}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/228/{12b3cca3-693a-49ed-b95c-418d4aaac2e4}.final new file mode 100644 index 0000000..0094fe9 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/228/{12b3cca3-693a-49ed-b95c-418d4aaac2e4}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/229/{00b8f21a-1470-4ed0-9c5c-7c53484f57e5}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/229/{00b8f21a-1470-4ed0-9c5c-7c53484f57e5}.final new file mode 100644 index 0000000..9c5b049 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/229/{00b8f21a-1470-4ed0-9c5c-7c53484f57e5}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/232/{0b08cbee-ec2d-498a-949b-688af3e550e8}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/232/{0b08cbee-ec2d-498a-949b-688af3e550e8}.final new file mode 100644 index 0000000..9671e3f Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/232/{0b08cbee-ec2d-498a-949b-688af3e550e8}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/237/{598147b8-9058-45a4-9b6b-76a2313573ed}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/237/{598147b8-9058-45a4-9b6b-76a2313573ed}.final new file mode 100644 index 0000000..16bda49 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/237/{598147b8-9058-45a4-9b6b-76a2313573ed}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/238/{0eba951c-7bc6-494b-aedd-00b5a07872ee}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/238/{0eba951c-7bc6-494b-aedd-00b5a07872ee}.final new file mode 100644 index 0000000..09102e6 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/238/{0eba951c-7bc6-494b-aedd-00b5a07872ee}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/242/{92dccc0a-546b-4774-8ca1-8232ad855ff2}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/242/{92dccc0a-546b-4774-8ca1-8232ad855ff2}.final new file mode 100644 index 0000000..cf2bf29 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/242/{92dccc0a-546b-4774-8ca1-8232ad855ff2}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/246/{99a999e9-85c5-4c52-8420-eb10011ce8f6}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/246/{99a999e9-85c5-4c52-8420-eb10011ce8f6}.final new file mode 100644 index 0000000..0d9c70b Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/246/{99a999e9-85c5-4c52-8420-eb10011ce8f6}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/249/{2ff263dc-3943-44a6-987e-b9febaaa07f9}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/249/{2ff263dc-3943-44a6-987e-b9febaaa07f9}.final new file mode 100644 index 0000000..f0926b1 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/249/{2ff263dc-3943-44a6-987e-b9febaaa07f9}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/252/{491655d6-1cee-4cca-83ae-856da03749fc}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/252/{491655d6-1cee-4cca-83ae-856da03749fc}.final new file mode 100644 index 0000000..9eabdd6 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/252/{491655d6-1cee-4cca-83ae-856da03749fc}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/253/{30f60911-c495-4030-9ad3-c4b83c5f0cfd}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/253/{30f60911-c495-4030-9ad3-c4b83c5f0cfd}.final new file mode 100644 index 0000000..beb21e1 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/253/{30f60911-c495-4030-9ad3-c4b83c5f0cfd}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/26/{a5069ce1-9210-433d-a0b9-19bc1713d21a}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/26/{a5069ce1-9210-433d-a0b9-19bc1713d21a}.final new file mode 100644 index 0000000..d88a47d Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/26/{a5069ce1-9210-433d-a0b9-19bc1713d21a}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/27/{280b6e67-e668-4ee0-adf3-9bb8248b671b}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/27/{280b6e67-e668-4ee0-adf3-9bb8248b671b}.final new file mode 100644 index 0000000..3d62798 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/27/{280b6e67-e668-4ee0-adf3-9bb8248b671b}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/29/{bc558b14-fa38-4c21-9efc-f3e1230f851d}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/29/{bc558b14-fa38-4c21-9efc-f3e1230f851d}.final new file mode 100644 index 0000000..6a27876 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/29/{bc558b14-fa38-4c21-9efc-f3e1230f851d}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/31/{c2b7156d-f46c-4b56-874f-112b4f27a91f}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/31/{c2b7156d-f46c-4b56-874f-112b4f27a91f}.final new file mode 100644 index 0000000..f2ef5fe Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/31/{c2b7156d-f46c-4b56-874f-112b4f27a91f}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/34/{6c261b23-0a89-48da-a44d-c7fa0b40cf22}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/34/{6c261b23-0a89-48da-a44d-c7fa0b40cf22}.final new file mode 100644 index 0000000..3245113 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/34/{6c261b23-0a89-48da-a44d-c7fa0b40cf22}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/39/{0c3526a7-fb21-4531-ba8c-654763178b27}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/39/{0c3526a7-fb21-4531-ba8c-654763178b27}.final new file mode 100644 index 0000000..3c588dd Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/39/{0c3526a7-fb21-4531-ba8c-654763178b27}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/39/{abc98a1c-9f37-449b-b78e-aaf93a08ab27}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/39/{abc98a1c-9f37-449b-b78e-aaf93a08ab27}.final new file mode 100644 index 0000000..83d8ca7 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/39/{abc98a1c-9f37-449b-b78e-aaf93a08ab27}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/42/{39ae1dee-1992-4451-88b0-a42a87f1092a}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/42/{39ae1dee-1992-4451-88b0-a42a87f1092a}.final new file mode 100644 index 0000000..458f330 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/42/{39ae1dee-1992-4451-88b0-a42a87f1092a}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/42/{3bf8d779-e8e0-4cc9-b0c9-2af1d5dd9d2a}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/42/{3bf8d779-e8e0-4cc9-b0c9-2af1d5dd9d2a}.final new file mode 100644 index 0000000..7fd1edf Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/42/{3bf8d779-e8e0-4cc9-b0c9-2af1d5dd9d2a}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/45/{c1763a20-e254-4a3e-8394-8f06a785ce2d}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/45/{c1763a20-e254-4a3e-8394-8f06a785ce2d}.final new file mode 100644 index 0000000..6543d66 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/45/{c1763a20-e254-4a3e-8394-8f06a785ce2d}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/46/{5b1c0b44-363d-4aa8-9b2b-12d02e16f52e}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/46/{5b1c0b44-363d-4aa8-9b2b-12d02e16f52e}.final new file mode 100644 index 0000000..d80c0e1 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/46/{5b1c0b44-363d-4aa8-9b2b-12d02e16f52e}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/46/{bcea2c9c-c115-45e7-aac6-06ca871d4a2e}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/46/{bcea2c9c-c115-45e7-aac6-06ca871d4a2e}.final new file mode 100644 index 0000000..e985fd3 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/46/{bcea2c9c-c115-45e7-aac6-06ca871d4a2e}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/52/{34aedddb-882d-42d1-b841-711fa80b7c34}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/52/{34aedddb-882d-42d1-b841-711fa80b7c34}.final new file mode 100644 index 0000000..903875a Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/52/{34aedddb-882d-42d1-b841-711fa80b7c34}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/53/{a622faf0-ea3c-4cff-a39c-0467a6362f35}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/53/{a622faf0-ea3c-4cff-a39c-0467a6362f35}.final new file mode 100644 index 0000000..76db30b Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/53/{a622faf0-ea3c-4cff-a39c-0467a6362f35}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/57/{9e8fc699-b75f-4db1-9cb2-0f54d5bbf039}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/57/{9e8fc699-b75f-4db1-9cb2-0f54d5bbf039}.final new file mode 100644 index 0000000..1795b91 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/57/{9e8fc699-b75f-4db1-9cb2-0f54d5bbf039}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/57/{e6bd32d7-5c08-4409-a5ff-782d99619939}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/57/{e6bd32d7-5c08-4409-a5ff-782d99619939}.final new file mode 100644 index 0000000..0cb5610 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/57/{e6bd32d7-5c08-4409-a5ff-782d99619939}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/62/{0c233b75-631d-48ad-a7a0-c850f721213e}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/62/{0c233b75-631d-48ad-a7a0-c850f721213e}.final new file mode 100644 index 0000000..00a1baa Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/62/{0c233b75-631d-48ad-a7a0-c850f721213e}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/62/{a6fff79e-ebfe-463a-9004-355c241b4b3e}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/62/{a6fff79e-ebfe-463a-9004-355c241b4b3e}.final new file mode 100644 index 0000000..6c4dba2 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/62/{a6fff79e-ebfe-463a-9004-355c241b4b3e}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/63/{2bb29754-5a1a-4cb8-ba39-b804ffc0f33f}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/63/{2bb29754-5a1a-4cb8-ba39-b804ffc0f33f}.final new file mode 100644 index 0000000..a9d397a Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/63/{2bb29754-5a1a-4cb8-ba39-b804ffc0f33f}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/76/{7866068c-2780-4795-95ee-3e8bc1004f4c}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/76/{7866068c-2780-4795-95ee-3e8bc1004f4c}.final new file mode 100644 index 0000000..f3c1dec Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/76/{7866068c-2780-4795-95ee-3e8bc1004f4c}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/84/{b81ff1eb-8263-4ec7-b118-2365e13da654}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/84/{b81ff1eb-8263-4ec7-b118-2365e13da654}.final new file mode 100644 index 0000000..7fb7374 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/84/{b81ff1eb-8263-4ec7-b118-2365e13da654}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/90/{6aba4bc1-23ff-4fac-a3f9-18a8ec8df25a}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/90/{6aba4bc1-23ff-4fac-a3f9-18a8ec8df25a}.final new file mode 100644 index 0000000..f5579d1 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/90/{6aba4bc1-23ff-4fac-a3f9-18a8ec8df25a}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/96/{1c0584aa-0819-4937-8788-b7c32791aa60}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/96/{1c0584aa-0819-4937-8788-b7c32791aa60}.final new file mode 100644 index 0000000..4f36863 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/96/{1c0584aa-0819-4937-8788-b7c32791aa60}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/96/{eab13d2b-0c7b-4f6e-be35-873b58c61b60}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/96/{eab13d2b-0c7b-4f6e-be35-873b58c61b60}.final new file mode 100644 index 0000000..1c38a64 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/96/{eab13d2b-0c7b-4f6e-be35-873b58c61b60}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/99/{d268a06c-0dad-4f14-9a50-40ca01a7e763}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/99/{d268a06c-0dad-4f14-9a50-40ca01a7e763}.final new file mode 100644 index 0000000..931aa13 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/cache/morgue/99/{d268a06c-0dad-4f14-9a50-40ca01a7e763}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/idb/4197078560wnooriktbaorxi-pex.sqlite b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/idb/4197078560wnooriktbaorxi-pex.sqlite new file mode 100644 index 0000000..1166520 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/idb/4197078560wnooriktbaorxi-pex.sqlite differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/ls/data.sqlite b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/ls/data.sqlite new file mode 100644 index 0000000..e8eedc6 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/ls/data.sqlite differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/ls/usage b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/ls/usage new file mode 100644 index 0000000..8f0d6c3 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++forum.garudalinux.org/ls/usage differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++gist.github.com/.metadata-v2 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++gist.github.com/.metadata-v2 new file mode 100644 index 0000000..6770191 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++gist.github.com/.metadata-v2 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++gist.github.com/ls/data.sqlite b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++gist.github.com/ls/data.sqlite new file mode 100644 index 0000000..9073235 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++gist.github.com/ls/data.sqlite differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++gist.github.com/ls/usage b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++gist.github.com/ls/usage new file mode 100644 index 0000000..256b965 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++gist.github.com/ls/usage differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++git.r0r-5chach.xyz/.metadata-v2 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++git.r0r-5chach.xyz/.metadata-v2 new file mode 100644 index 0000000..d15a151 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++git.r0r-5chach.xyz/.metadata-v2 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++git.r0r-5chach.xyz/cache/.padding b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++git.r0r-5chach.xyz/cache/.padding new file mode 100644 index 0000000..1b1cb4d Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++git.r0r-5chach.xyz/cache/.padding differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++git.r0r-5chach.xyz/cache/caches.sqlite b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++git.r0r-5chach.xyz/cache/caches.sqlite new file mode 100644 index 0000000..4ad1250 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++git.r0r-5chach.xyz/cache/caches.sqlite differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++git.r0r-5chach.xyz/ls/data.sqlite b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++git.r0r-5chach.xyz/ls/data.sqlite new file mode 100644 index 0000000..8c7d460 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++git.r0r-5chach.xyz/ls/data.sqlite differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++git.r0r-5chach.xyz/ls/usage b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++git.r0r-5chach.xyz/ls/usage new file mode 100644 index 0000000..e33f8ee Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++git.r0r-5chach.xyz/ls/usage differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++github.com/.metadata-v2 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++github.com/.metadata-v2 new file mode 100644 index 0000000..03b968c Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++github.com/.metadata-v2 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++github.com/ls/data.sqlite b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++github.com/ls/data.sqlite new file mode 100644 index 0000000..f6793a4 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++github.com/ls/data.sqlite differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++github.com/ls/usage b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++github.com/ls/usage new file mode 100644 index 0000000..80a2a5e Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++github.com/ls/usage differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++icons8.com/.metadata-v2 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++icons8.com/.metadata-v2 new file mode 100644 index 0000000..be0051e Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++icons8.com/.metadata-v2 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++icons8.com/ls/data.sqlite b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++icons8.com/ls/data.sqlite new file mode 100644 index 0000000..a650705 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++icons8.com/ls/data.sqlite differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++icons8.com/ls/usage b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++icons8.com/ls/usage new file mode 100644 index 0000000..4308373 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++icons8.com/ls/usage differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++insider.razer.com/.metadata-v2 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++insider.razer.com/.metadata-v2 new file mode 100644 index 0000000..8ff3e1a Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++insider.razer.com/.metadata-v2 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++insider.razer.com/ls/data.sqlite b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++insider.razer.com/ls/data.sqlite new file mode 100644 index 0000000..e9b9f18 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++insider.razer.com/ls/data.sqlite differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++insider.razer.com/ls/usage b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++insider.razer.com/ls/usage new file mode 100644 index 0000000..4d73f5f Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++insider.razer.com/ls/usage differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++invent.kde.org/.metadata-v2 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++invent.kde.org/.metadata-v2 new file mode 100644 index 0000000..912ba67 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++invent.kde.org/.metadata-v2 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++invent.kde.org/ls/data.sqlite b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++invent.kde.org/ls/data.sqlite new file mode 100644 index 0000000..c1d7477 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++invent.kde.org/ls/data.sqlite differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++invent.kde.org/ls/usage b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++invent.kde.org/ls/usage new file mode 100644 index 0000000..3878c82 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++invent.kde.org/ls/usage differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++itsfoss.com/.metadata-v2 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++itsfoss.com/.metadata-v2 new file mode 100644 index 0000000..9cf8db8 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++itsfoss.com/.metadata-v2 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++itsfoss.com/ls/data.sqlite b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++itsfoss.com/ls/data.sqlite new file mode 100644 index 0000000..75abf41 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++itsfoss.com/ls/data.sqlite differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++itsfoss.com/ls/usage b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++itsfoss.com/ls/usage new file mode 100644 index 0000000..3f17c4b Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++itsfoss.com/ls/usage differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++lastpass.com/.metadata-v2 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++lastpass.com/.metadata-v2 new file mode 100644 index 0000000..b85fed9 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++lastpass.com/.metadata-v2 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++lastpass.com/idb/3619119340leogcaarlof.sqlite b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++lastpass.com/idb/3619119340leogcaarlof.sqlite new file mode 100644 index 0000000..2305b1c Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++lastpass.com/idb/3619119340leogcaarlof.sqlite differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++lastpass.com/idb/583651055lp.sqlite b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++lastpass.com/idb/583651055lp.sqlite new file mode 100644 index 0000000..b91e2e8 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++lastpass.com/idb/583651055lp.sqlite differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++lastpass.com/ls/data.sqlite b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++lastpass.com/ls/data.sqlite new file mode 100644 index 0000000..9bdd777 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++lastpass.com/ls/data.sqlite differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++lastpass.com/ls/usage b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++lastpass.com/ls/usage new file mode 100644 index 0000000..816faf3 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++lastpass.com/ls/usage differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++linuxhandbook.com/.metadata-v2 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++linuxhandbook.com/.metadata-v2 new file mode 100644 index 0000000..4a359e7 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++linuxhandbook.com/.metadata-v2 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++linuxhandbook.com/ls/data.sqlite b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++linuxhandbook.com/ls/data.sqlite new file mode 100644 index 0000000..24abd79 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++linuxhandbook.com/ls/data.sqlite differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++linuxhandbook.com/ls/usage b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++linuxhandbook.com/ls/usage new file mode 100644 index 0000000..23c3356 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++linuxhandbook.com/ls/usage differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++serverfault.com/.metadata-v2 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++serverfault.com/.metadata-v2 new file mode 100644 index 0000000..68c30ba Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++serverfault.com/.metadata-v2 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++serverfault.com/ls/data.sqlite b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++serverfault.com/ls/data.sqlite new file mode 100644 index 0000000..148f720 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++serverfault.com/ls/data.sqlite differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++serverfault.com/ls/usage b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++serverfault.com/ls/usage new file mode 100644 index 0000000..56f9075 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++serverfault.com/ls/usage differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++stackoverflow.com/.metadata-v2 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++stackoverflow.com/.metadata-v2 new file mode 100644 index 0000000..ef4a295 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++stackoverflow.com/.metadata-v2 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++stackoverflow.com/ls/data.sqlite b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++stackoverflow.com/ls/data.sqlite new file mode 100644 index 0000000..c0486eb Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++stackoverflow.com/ls/data.sqlite differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++stackoverflow.com/ls/usage b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++stackoverflow.com/ls/usage new file mode 100644 index 0000000..56f9075 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++stackoverflow.com/ls/usage differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++store.kde.org/.metadata-v2 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++store.kde.org/.metadata-v2 new file mode 100644 index 0000000..82a40f2 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++store.kde.org/.metadata-v2 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++store.kde.org/ls/data.sqlite b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++store.kde.org/ls/data.sqlite new file mode 100644 index 0000000..a04b34d Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++store.kde.org/ls/data.sqlite differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++store.kde.org/ls/usage b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++store.kde.org/ls/usage new file mode 100644 index 0000000..4c791ff Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++store.kde.org/ls/usage differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++superuser.com/.metadata-v2 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++superuser.com/.metadata-v2 new file mode 100644 index 0000000..2935e88 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++superuser.com/.metadata-v2 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++superuser.com/ls/data.sqlite b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++superuser.com/ls/data.sqlite new file mode 100644 index 0000000..bd1cae2 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++superuser.com/ls/data.sqlite differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++superuser.com/ls/usage b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++superuser.com/ls/usage new file mode 100644 index 0000000..56f9075 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++superuser.com/ls/usage differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++support.parsec.app/.metadata-v2 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++support.parsec.app/.metadata-v2 new file mode 100644 index 0000000..64acf46 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++support.parsec.app/.metadata-v2 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++support.parsec.app/ls/data.sqlite b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++support.parsec.app/ls/data.sqlite new file mode 100644 index 0000000..ddcb1f4 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++support.parsec.app/ls/data.sqlite differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++support.parsec.app/ls/usage b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++support.parsec.app/ls/usage new file mode 100644 index 0000000..932bcc7 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++support.parsec.app/ls/usage differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++tecadmin.net/.metadata-v2 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++tecadmin.net/.metadata-v2 new file mode 100644 index 0000000..546477c Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++tecadmin.net/.metadata-v2 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++tecadmin.net/ls/data.sqlite b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++tecadmin.net/ls/data.sqlite new file mode 100644 index 0000000..92c6b55 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++tecadmin.net/ls/data.sqlite differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++tecadmin.net/ls/usage b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++tecadmin.net/ls/usage new file mode 100644 index 0000000..75e6bff Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++tecadmin.net/ls/usage differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++trinket.io^partitionKey=%28https%2C101computing.net%29/.metadata-v2 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++trinket.io^partitionKey=%28https%2C101computing.net%29/.metadata-v2 new file mode 100644 index 0000000..b92a738 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++trinket.io^partitionKey=%28https%2C101computing.net%29/.metadata-v2 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++trinket.io^partitionKey=%28https%2C101computing.net%29/ls/data.sqlite b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++trinket.io^partitionKey=%28https%2C101computing.net%29/ls/data.sqlite new file mode 100644 index 0000000..8cf66d9 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++trinket.io^partitionKey=%28https%2C101computing.net%29/ls/data.sqlite differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++trinket.io^partitionKey=%28https%2C101computing.net%29/ls/usage b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++trinket.io^partitionKey=%28https%2C101computing.net%29/ls/usage new file mode 100644 index 0000000..d123b1a Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++trinket.io^partitionKey=%28https%2C101computing.net%29/ls/usage differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++unix.stackexchange.com/.metadata-v2 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++unix.stackexchange.com/.metadata-v2 new file mode 100644 index 0000000..09e2559 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++unix.stackexchange.com/.metadata-v2 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++unix.stackexchange.com/ls/data.sqlite b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++unix.stackexchange.com/ls/data.sqlite new file mode 100644 index 0000000..4ccf213 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++unix.stackexchange.com/ls/data.sqlite differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++unix.stackexchange.com/ls/usage b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++unix.stackexchange.com/ls/usage new file mode 100644 index 0000000..56f9075 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++unix.stackexchange.com/ls/usage differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++us.cstp.blackboard.com^partitionKey=%28https%2Cnorthampton.ac.uk%29/.metadata-v2 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++us.cstp.blackboard.com^partitionKey=%28https%2Cnorthampton.ac.uk%29/.metadata-v2 new file mode 100644 index 0000000..d04ab28 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++us.cstp.blackboard.com^partitionKey=%28https%2Cnorthampton.ac.uk%29/.metadata-v2 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++us.cstp.blackboard.com^partitionKey=%28https%2Cnorthampton.ac.uk%29/ls/data.sqlite b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++us.cstp.blackboard.com^partitionKey=%28https%2Cnorthampton.ac.uk%29/ls/data.sqlite new file mode 100644 index 0000000..f22ef3c Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++us.cstp.blackboard.com^partitionKey=%28https%2Cnorthampton.ac.uk%29/ls/data.sqlite differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++us.cstp.blackboard.com^partitionKey=%28https%2Cnorthampton.ac.uk%29/ls/usage b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++us.cstp.blackboard.com^partitionKey=%28https%2Cnorthampton.ac.uk%29/ls/usage new file mode 100644 index 0000000..e392ac0 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++us.cstp.blackboard.com^partitionKey=%28https%2Cnorthampton.ac.uk%29/ls/usage differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++wiki.archlinux.org/.metadata-v2 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++wiki.archlinux.org/.metadata-v2 new file mode 100644 index 0000000..8a14a3a Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++wiki.archlinux.org/.metadata-v2 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++wiki.archlinux.org/ls/data.sqlite b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++wiki.archlinux.org/ls/data.sqlite new file mode 100644 index 0000000..e059932 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++wiki.archlinux.org/ls/data.sqlite differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++wiki.archlinux.org/ls/usage b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++wiki.archlinux.org/ls/usage new file mode 100644 index 0000000..b0f052c Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++wiki.archlinux.org/ls/usage differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++wiki.hyprland.org/.metadata-v2 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++wiki.hyprland.org/.metadata-v2 new file mode 100644 index 0000000..f833472 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++wiki.hyprland.org/.metadata-v2 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++wiki.hyprland.org/ls/data.sqlite b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++wiki.hyprland.org/ls/data.sqlite new file mode 100644 index 0000000..2664897 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++wiki.hyprland.org/ls/data.sqlite differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++wiki.hyprland.org/ls/usage b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++wiki.hyprland.org/ls/usage new file mode 100644 index 0000000..69db903 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++wiki.hyprland.org/ls/usage differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++world.pages.gitlab.gnome.org/.metadata-v2 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++world.pages.gitlab.gnome.org/.metadata-v2 new file mode 100644 index 0000000..46b456a Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++world.pages.gitlab.gnome.org/.metadata-v2 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++world.pages.gitlab.gnome.org/ls/data.sqlite b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++world.pages.gitlab.gnome.org/ls/data.sqlite new file mode 100644 index 0000000..0546787 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++world.pages.gitlab.gnome.org/ls/data.sqlite differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++world.pages.gitlab.gnome.org/ls/usage b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++world.pages.gitlab.gnome.org/ls/usage new file mode 100644 index 0000000..fd340e6 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++world.pages.gitlab.gnome.org/ls/usage differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.appsloveworld.com/.metadata-v2 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.appsloveworld.com/.metadata-v2 new file mode 100644 index 0000000..93db0eb Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.appsloveworld.com/.metadata-v2 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.appsloveworld.com/ls/data.sqlite b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.appsloveworld.com/ls/data.sqlite new file mode 100644 index 0000000..793be12 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.appsloveworld.com/ls/data.sqlite differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.appsloveworld.com/ls/usage b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.appsloveworld.com/ls/usage new file mode 100644 index 0000000..bd578a2 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.appsloveworld.com/ls/usage differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.baeldung.com/.metadata-v2 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.baeldung.com/.metadata-v2 new file mode 100644 index 0000000..1a4c65a Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.baeldung.com/.metadata-v2 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.baeldung.com/idb/52296910_u_dna.sqlite b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.baeldung.com/idb/52296910_u_dna.sqlite new file mode 100644 index 0000000..00fec17 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.baeldung.com/idb/52296910_u_dna.sqlite differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.baeldung.com/ls/data.sqlite b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.baeldung.com/ls/data.sqlite new file mode 100644 index 0000000..3dcdb13 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.baeldung.com/ls/data.sqlite differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.baeldung.com/ls/usage b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.baeldung.com/ls/usage new file mode 100644 index 0000000..385b4c3 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.baeldung.com/ls/usage differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.copyandpastesymbols.net/.metadata-v2 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.copyandpastesymbols.net/.metadata-v2 new file mode 100644 index 0000000..5c0dd81 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.copyandpastesymbols.net/.metadata-v2 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.copyandpastesymbols.net/ls/data.sqlite b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.copyandpastesymbols.net/ls/data.sqlite new file mode 100644 index 0000000..f0d4bf4 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.copyandpastesymbols.net/ls/data.sqlite differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.copyandpastesymbols.net/ls/usage b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.copyandpastesymbols.net/ls/usage new file mode 100644 index 0000000..eb716f9 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.copyandpastesymbols.net/ls/usage differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.digitalocean.com/.metadata-v2 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.digitalocean.com/.metadata-v2 new file mode 100644 index 0000000..146285c Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.digitalocean.com/.metadata-v2 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.digitalocean.com/ls/data.sqlite b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.digitalocean.com/ls/data.sqlite new file mode 100644 index 0000000..03f46e3 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.digitalocean.com/ls/data.sqlite differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.digitalocean.com/ls/usage b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.digitalocean.com/ls/usage new file mode 100644 index 0000000..daecb3b Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.digitalocean.com/ls/usage differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.docker.com/.metadata-v2 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.docker.com/.metadata-v2 new file mode 100644 index 0000000..5008c23 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.docker.com/.metadata-v2 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.docker.com/ls/data.sqlite b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.docker.com/ls/data.sqlite new file mode 100644 index 0000000..ad57f7d Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.docker.com/ls/data.sqlite differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.docker.com/ls/usage b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.docker.com/ls/usage new file mode 100644 index 0000000..a1016c6 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.docker.com/ls/usage differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.freecodecamp.org/.metadata-v2 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.freecodecamp.org/.metadata-v2 new file mode 100644 index 0000000..0860333 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.freecodecamp.org/.metadata-v2 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.freecodecamp.org/ls/data.sqlite b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.freecodecamp.org/ls/data.sqlite new file mode 100644 index 0000000..b0c6eb3 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.freecodecamp.org/ls/data.sqlite differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.freecodecamp.org/ls/usage b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.freecodecamp.org/ls/usage new file mode 100644 index 0000000..026816c Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.freecodecamp.org/ls/usage differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.gnome-look.org/.metadata-v2 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.gnome-look.org/.metadata-v2 new file mode 100644 index 0000000..0cf8def Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.gnome-look.org/.metadata-v2 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.gnome-look.org/ls/data.sqlite b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.gnome-look.org/ls/data.sqlite new file mode 100644 index 0000000..e1190d5 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.gnome-look.org/ls/data.sqlite differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.gnome-look.org/ls/usage b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.gnome-look.org/ls/usage new file mode 100644 index 0000000..4c791ff Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.gnome-look.org/ls/usage differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.google.com/.metadata-v2 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.google.com/.metadata-v2 new file mode 100644 index 0000000..c1f6637 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.google.com/.metadata-v2 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.google.com/ls/data.sqlite b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.google.com/ls/data.sqlite new file mode 100644 index 0000000..9780639 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.google.com/ls/data.sqlite differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.google.com/ls/usage b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.google.com/ls/usage new file mode 100644 index 0000000..8ac3854 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.google.com/ls/usage differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.google.com^partitionKey=%28https%2Ctecadmin.net%29/.metadata-v2 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.google.com^partitionKey=%28https%2Ctecadmin.net%29/.metadata-v2 new file mode 100644 index 0000000..d83a2e2 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.google.com^partitionKey=%28https%2Ctecadmin.net%29/.metadata-v2 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.google.com^partitionKey=%28https%2Ctecadmin.net%29/ls/data.sqlite b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.google.com^partitionKey=%28https%2Ctecadmin.net%29/ls/data.sqlite new file mode 100644 index 0000000..0c91d86 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.google.com^partitionKey=%28https%2Ctecadmin.net%29/ls/data.sqlite differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.google.com^partitionKey=%28https%2Ctecadmin.net%29/ls/usage b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.google.com^partitionKey=%28https%2Ctecadmin.net%29/ls/usage new file mode 100644 index 0000000..dad6904 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.google.com^partitionKey=%28https%2Ctecadmin.net%29/ls/usage differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.howtogeek.com/.metadata-v2 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.howtogeek.com/.metadata-v2 new file mode 100644 index 0000000..a0167af Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.howtogeek.com/.metadata-v2 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.howtogeek.com/idb/12183338011.sqlite b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.howtogeek.com/idb/12183338011.sqlite new file mode 100644 index 0000000..1b397b5 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.howtogeek.com/idb/12183338011.sqlite differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.howtogeek.com/idb/261657945366049b37e2cec0fd-66d7.sqlite b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.howtogeek.com/idb/261657945366049b37e2cec0fd-66d7.sqlite new file mode 100644 index 0000000..380b3e3 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.howtogeek.com/idb/261657945366049b37e2cec0fd-66d7.sqlite differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.howtogeek.com/idb/52296910_u_dna.sqlite b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.howtogeek.com/idb/52296910_u_dna.sqlite new file mode 100644 index 0000000..0023fdf Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.howtogeek.com/idb/52296910_u_dna.sqlite differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.howtogeek.com/ls/data.sqlite b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.howtogeek.com/ls/data.sqlite new file mode 100644 index 0000000..3327d5e Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.howtogeek.com/ls/data.sqlite differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.howtogeek.com/ls/usage b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.howtogeek.com/ls/usage new file mode 100644 index 0000000..011dfe9 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.howtogeek.com/ls/usage differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.iconarchive.com/.metadata-v2 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.iconarchive.com/.metadata-v2 new file mode 100644 index 0000000..90ffc80 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.iconarchive.com/.metadata-v2 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.iconarchive.com/ls/data.sqlite b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.iconarchive.com/ls/data.sqlite new file mode 100644 index 0000000..1992c38 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.iconarchive.com/ls/data.sqlite differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.iconarchive.com/ls/usage b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.iconarchive.com/ls/usage new file mode 100644 index 0000000..5eda78a Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.iconarchive.com/ls/usage differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.lastpass.com/.metadata-v2 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.lastpass.com/.metadata-v2 new file mode 100644 index 0000000..f538a94 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.lastpass.com/.metadata-v2 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.lastpass.com/ls/data.sqlite b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.lastpass.com/ls/data.sqlite new file mode 100644 index 0000000..7cb1049 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.lastpass.com/ls/data.sqlite differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.lastpass.com/ls/usage b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.lastpass.com/ls/usage new file mode 100644 index 0000000..8505a71 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.lastpass.com/ls/usage differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.linuxtechi.com/.metadata-v2 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.linuxtechi.com/.metadata-v2 new file mode 100644 index 0000000..21f8fa7 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.linuxtechi.com/.metadata-v2 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.linuxtechi.com/ls/data.sqlite b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.linuxtechi.com/ls/data.sqlite new file mode 100644 index 0000000..6597b36 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.linuxtechi.com/ls/data.sqlite differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.linuxtechi.com/ls/usage b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.linuxtechi.com/ls/usage new file mode 100644 index 0000000..8a11355 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.linuxtechi.com/ls/usage differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.mankier.com/.metadata-v2 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.mankier.com/.metadata-v2 new file mode 100644 index 0000000..201d0b3 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.mankier.com/.metadata-v2 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.mankier.com/cache/.padding b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.mankier.com/cache/.padding new file mode 100644 index 0000000..1b1cb4d Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.mankier.com/cache/.padding differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.mankier.com/cache/caches.sqlite b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.mankier.com/cache/caches.sqlite new file mode 100644 index 0000000..b91e70c Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.mankier.com/cache/caches.sqlite differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.mankier.com/cache/morgue/116/{43bd59e7-3a19-4ad4-bd72-8bde23988874}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.mankier.com/cache/morgue/116/{43bd59e7-3a19-4ad4-bd72-8bde23988874}.final new file mode 100644 index 0000000..1c09094 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.mankier.com/cache/morgue/116/{43bd59e7-3a19-4ad4-bd72-8bde23988874}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.mankier.com/cache/morgue/119/{6260b0bb-5ab5-45bb-abf6-8d513eda5b77}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.mankier.com/cache/morgue/119/{6260b0bb-5ab5-45bb-abf6-8d513eda5b77}.final new file mode 100644 index 0000000..07a2697 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.mankier.com/cache/morgue/119/{6260b0bb-5ab5-45bb-abf6-8d513eda5b77}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.mankier.com/cache/morgue/127/{592ca335-affc-44c8-96e7-47a1479a6d7f}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.mankier.com/cache/morgue/127/{592ca335-affc-44c8-96e7-47a1479a6d7f}.final new file mode 100644 index 0000000..42aa3f3 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.mankier.com/cache/morgue/127/{592ca335-affc-44c8-96e7-47a1479a6d7f}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.mankier.com/cache/morgue/141/{d0b9f81d-9666-41e4-861a-61f0092c748d}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.mankier.com/cache/morgue/141/{d0b9f81d-9666-41e4-861a-61f0092c748d}.final new file mode 100644 index 0000000..6a4c571 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.mankier.com/cache/morgue/141/{d0b9f81d-9666-41e4-861a-61f0092c748d}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.mankier.com/cache/morgue/160/{c9875601-82d4-42d5-9985-0b21f4ccdda0}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.mankier.com/cache/morgue/160/{c9875601-82d4-42d5-9985-0b21f4ccdda0}.final new file mode 100644 index 0000000..9c7c59e Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.mankier.com/cache/morgue/160/{c9875601-82d4-42d5-9985-0b21f4ccdda0}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.mankier.com/cache/morgue/168/{94065d61-3869-487c-a432-98019b53d8a8}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.mankier.com/cache/morgue/168/{94065d61-3869-487c-a432-98019b53d8a8}.final new file mode 100644 index 0000000..de9b732 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.mankier.com/cache/morgue/168/{94065d61-3869-487c-a432-98019b53d8a8}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.mankier.com/cache/morgue/198/{e89cd41b-1fed-4f41-a129-9c559e663bc6}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.mankier.com/cache/morgue/198/{e89cd41b-1fed-4f41-a129-9c559e663bc6}.final new file mode 100644 index 0000000..82e29d2 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.mankier.com/cache/morgue/198/{e89cd41b-1fed-4f41-a129-9c559e663bc6}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.mankier.com/cache/morgue/200/{31e859ae-de8d-4f55-b660-2660fcd9c4c8}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.mankier.com/cache/morgue/200/{31e859ae-de8d-4f55-b660-2660fcd9c4c8}.final new file mode 100644 index 0000000..ee245bd Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.mankier.com/cache/morgue/200/{31e859ae-de8d-4f55-b660-2660fcd9c4c8}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.mankier.com/cache/morgue/204/{1c892405-e35d-4674-988a-8c03aab1c6cc}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.mankier.com/cache/morgue/204/{1c892405-e35d-4674-988a-8c03aab1c6cc}.final new file mode 100644 index 0000000..65c908f Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.mankier.com/cache/morgue/204/{1c892405-e35d-4674-988a-8c03aab1c6cc}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.mankier.com/cache/morgue/223/{4731b56b-b462-40c5-9e8f-2644c09ce4df}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.mankier.com/cache/morgue/223/{4731b56b-b462-40c5-9e8f-2644c09ce4df}.final new file mode 100644 index 0000000..fa13390 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.mankier.com/cache/morgue/223/{4731b56b-b462-40c5-9e8f-2644c09ce4df}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.mankier.com/cache/morgue/240/{6e542102-24a2-4cc8-8e37-9bd6b831fbf0}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.mankier.com/cache/morgue/240/{6e542102-24a2-4cc8-8e37-9bd6b831fbf0}.final new file mode 100644 index 0000000..45ea14f Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.mankier.com/cache/morgue/240/{6e542102-24a2-4cc8-8e37-9bd6b831fbf0}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.mankier.com/cache/morgue/250/{fff8f363-2f02-41db-9261-a866f01a19fa}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.mankier.com/cache/morgue/250/{fff8f363-2f02-41db-9261-a866f01a19fa}.final new file mode 100644 index 0000000..80f5a70 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.mankier.com/cache/morgue/250/{fff8f363-2f02-41db-9261-a866f01a19fa}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.mankier.com/cache/morgue/92/{0ac640ba-6ad8-435d-ae2f-ef707815b45c}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.mankier.com/cache/morgue/92/{0ac640ba-6ad8-435d-ae2f-ef707815b45c}.final new file mode 100644 index 0000000..e4e6bf5 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.mankier.com/cache/morgue/92/{0ac640ba-6ad8-435d-ae2f-ef707815b45c}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.mankier.com/ls/data.sqlite b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.mankier.com/ls/data.sqlite new file mode 100644 index 0000000..e59bf53 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.mankier.com/ls/data.sqlite differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.mankier.com/ls/usage b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.mankier.com/ls/usage new file mode 100644 index 0000000..3b6385c Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.mankier.com/ls/usage differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.nvidia.co.uk/.metadata-v2 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.nvidia.co.uk/.metadata-v2 new file mode 100644 index 0000000..40171ce Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.nvidia.co.uk/.metadata-v2 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.nvidia.co.uk/idb/2672389209aldlro.sqlite b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.nvidia.co.uk/idb/2672389209aldlro.sqlite new file mode 100644 index 0000000..669f707 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.nvidia.co.uk/idb/2672389209aldlro.sqlite differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.nvidia.co.uk/ls/data.sqlite b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.nvidia.co.uk/ls/data.sqlite new file mode 100644 index 0000000..1a75bf2 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.nvidia.co.uk/ls/data.sqlite differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.nvidia.co.uk/ls/usage b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.nvidia.co.uk/ls/usage new file mode 100644 index 0000000..0b617a4 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.nvidia.co.uk/ls/usage differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.nvidia.com/.metadata-v2 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.nvidia.com/.metadata-v2 new file mode 100644 index 0000000..e5b3b07 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.nvidia.com/.metadata-v2 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.nvidia.com/cache/.padding b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.nvidia.com/cache/.padding new file mode 100644 index 0000000..1b1cb4d Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.nvidia.com/cache/.padding differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.nvidia.com/cache/caches.sqlite b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.nvidia.com/cache/caches.sqlite new file mode 100644 index 0000000..1d74077 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.nvidia.com/cache/caches.sqlite differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.nvidia.com/cache/caches.sqlite-wal b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.nvidia.com/cache/caches.sqlite-wal new file mode 100644 index 0000000..7cf8838 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.nvidia.com/cache/caches.sqlite-wal differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.nvidia.com/cache/context_open.marker b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.nvidia.com/cache/context_open.marker new file mode 100644 index 0000000..e69de29 diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.nvidia.com/cache/morgue/197/{4b14439a-f0f5-434d-aaf4-bffc3a8ed7c5}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.nvidia.com/cache/morgue/197/{4b14439a-f0f5-434d-aaf4-bffc3a8ed7c5}.final new file mode 100644 index 0000000..655e93c Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.nvidia.com/cache/morgue/197/{4b14439a-f0f5-434d-aaf4-bffc3a8ed7c5}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.nvidia.com/cache/morgue/38/{94035a9d-8803-45f7-b45d-93c4a0387726}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.nvidia.com/cache/morgue/38/{94035a9d-8803-45f7-b45d-93c4a0387726}.final new file mode 100644 index 0000000..4c4a06a Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.nvidia.com/cache/morgue/38/{94035a9d-8803-45f7-b45d-93c4a0387726}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.nvidia.com/idb/2135660075ientParvi.sqlite b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.nvidia.com/idb/2135660075ientParvi.sqlite new file mode 100644 index 0000000..4166b8f Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.nvidia.com/idb/2135660075ientParvi.sqlite differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.nvidia.com/idb/2672389209aldlro.sqlite b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.nvidia.com/idb/2672389209aldlro.sqlite new file mode 100644 index 0000000..8ca3d9a Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.nvidia.com/idb/2672389209aldlro.sqlite differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.nvidia.com/ls/data.sqlite b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.nvidia.com/ls/data.sqlite new file mode 100644 index 0000000..9c39bb6 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.nvidia.com/ls/data.sqlite differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.nvidia.com/ls/usage b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.nvidia.com/ls/usage new file mode 100644 index 0000000..39a7b01 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.nvidia.com/ls/usage differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.protondb.com/.metadata-v2 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.protondb.com/.metadata-v2 new file mode 100644 index 0000000..490fd72 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.protondb.com/.metadata-v2 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.protondb.com/ls/data.sqlite b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.protondb.com/ls/data.sqlite new file mode 100644 index 0000000..5cbc36d Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.protondb.com/ls/data.sqlite differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.protondb.com/ls/usage b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.protondb.com/ls/usage new file mode 100644 index 0000000..f988468 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.protondb.com/ls/usage differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.rapidtables.com/.metadata-v2 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.rapidtables.com/.metadata-v2 new file mode 100644 index 0000000..21b06ce Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.rapidtables.com/.metadata-v2 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.rapidtables.com/ls/data.sqlite b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.rapidtables.com/ls/data.sqlite new file mode 100644 index 0000000..29e48f3 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.rapidtables.com/ls/data.sqlite differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.rapidtables.com/ls/usage b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.rapidtables.com/ls/usage new file mode 100644 index 0000000..6009f78 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.rapidtables.com/ls/usage differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.reddit.com/.metadata-v2 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.reddit.com/.metadata-v2 new file mode 100644 index 0000000..2566257 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.reddit.com/.metadata-v2 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.reddit.com/ls/data.sqlite b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.reddit.com/ls/data.sqlite new file mode 100644 index 0000000..b526906 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.reddit.com/ls/data.sqlite differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.reddit.com/ls/usage b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.reddit.com/ls/usage new file mode 100644 index 0000000..ba5a14d Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.reddit.com/ls/usage differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.redhat.com/.metadata-v2 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.redhat.com/.metadata-v2 new file mode 100644 index 0000000..388a5e0 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.redhat.com/.metadata-v2 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.redhat.com/ls/data.sqlite b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.redhat.com/ls/data.sqlite new file mode 100644 index 0000000..e550fac Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.redhat.com/ls/data.sqlite differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.redhat.com/ls/usage b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.redhat.com/ls/usage new file mode 100644 index 0000000..3ce4e62 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.redhat.com/ls/usage differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.shellscript.sh/.metadata-v2 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.shellscript.sh/.metadata-v2 new file mode 100644 index 0000000..debcdf5 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.shellscript.sh/.metadata-v2 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.shellscript.sh/ls/data.sqlite b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.shellscript.sh/ls/data.sqlite new file mode 100644 index 0000000..feff9aa Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.shellscript.sh/ls/data.sqlite differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.shellscript.sh/ls/usage b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.shellscript.sh/ls/usage new file mode 100644 index 0000000..192dc78 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.shellscript.sh/ls/usage differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.systutorials.com/.metadata-v2 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.systutorials.com/.metadata-v2 new file mode 100644 index 0000000..c6cdb52 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.systutorials.com/.metadata-v2 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.systutorials.com/ls/data.sqlite b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.systutorials.com/ls/data.sqlite new file mode 100644 index 0000000..bbd636d Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.systutorials.com/ls/data.sqlite differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.systutorials.com/ls/usage b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.systutorials.com/ls/usage new file mode 100644 index 0000000..b2a914d Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.systutorials.com/ls/usage differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.tutorialspoint.com/.metadata-v2 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.tutorialspoint.com/.metadata-v2 new file mode 100644 index 0000000..14b65a0 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.tutorialspoint.com/.metadata-v2 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.tutorialspoint.com/idb/4061665934UASTEARD__HNBO_IATUC.sqlite b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.tutorialspoint.com/idb/4061665934UASTEARD__HNBO_IATUC.sqlite new file mode 100644 index 0000000..ad75a47 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.tutorialspoint.com/idb/4061665934UASTEARD__HNBO_IATUC.sqlite differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.tutorialspoint.com/ls/data.sqlite b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.tutorialspoint.com/ls/data.sqlite new file mode 100644 index 0000000..890d4cf Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.tutorialspoint.com/ls/data.sqlite differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.tutorialspoint.com/ls/usage b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.tutorialspoint.com/ls/usage new file mode 100644 index 0000000..bb739ed Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.tutorialspoint.com/ls/usage differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.wikihow.com/.metadata-v2 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.wikihow.com/.metadata-v2 new file mode 100644 index 0000000..b74967a Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.wikihow.com/.metadata-v2 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.wikihow.com/ls/data.sqlite b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.wikihow.com/ls/data.sqlite new file mode 100644 index 0000000..f82defb Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.wikihow.com/ls/data.sqlite differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.wikihow.com/ls/usage b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.wikihow.com/ls/usage new file mode 100644 index 0000000..c433f7d Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.wikihow.com/ls/usage differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/.metadata-v2 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/.metadata-v2 new file mode 100644 index 0000000..bb9fc73 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/.metadata-v2 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/.padding b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/.padding new file mode 100644 index 0000000..1b1cb4d Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/.padding differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/caches.sqlite b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/caches.sqlite new file mode 100644 index 0000000..3bdac93 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/caches.sqlite differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/morgue/105/{884a5483-9aba-4e7c-b1d4-a7152dde2769}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/morgue/105/{884a5483-9aba-4e7c-b1d4-a7152dde2769}.final new file mode 100644 index 0000000..ee24365 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/morgue/105/{884a5483-9aba-4e7c-b1d4-a7152dde2769}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/morgue/111/{eaf2054b-39bf-4c40-a824-9fc2dca8c66f}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/morgue/111/{eaf2054b-39bf-4c40-a824-9fc2dca8c66f}.final new file mode 100644 index 0000000..8ce4e34 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/morgue/111/{eaf2054b-39bf-4c40-a824-9fc2dca8c66f}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/morgue/115/{22b1df95-e3f1-4db3-acc1-db0858cca373}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/morgue/115/{22b1df95-e3f1-4db3-acc1-db0858cca373}.final new file mode 100644 index 0000000..6581801 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/morgue/115/{22b1df95-e3f1-4db3-acc1-db0858cca373}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/morgue/123/{74e757df-a394-4c6b-b160-79c3b02a197b}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/morgue/123/{74e757df-a394-4c6b-b160-79c3b02a197b}.final new file mode 100644 index 0000000..d6fb170 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/morgue/123/{74e757df-a394-4c6b-b160-79c3b02a197b}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/morgue/129/{dffa29e6-4119-4738-9765-cce60f7c9d81}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/morgue/129/{dffa29e6-4119-4738-9765-cce60f7c9d81}.final new file mode 100644 index 0000000..c5575ef Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/morgue/129/{dffa29e6-4119-4738-9765-cce60f7c9d81}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/morgue/132/{42b2cc15-ee77-4551-a01e-d9cc876b8784}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/morgue/132/{42b2cc15-ee77-4551-a01e-d9cc876b8784}.final new file mode 100644 index 0000000..f46fe39 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/morgue/132/{42b2cc15-ee77-4551-a01e-d9cc876b8784}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/morgue/139/{d4a7b209-402e-4455-b9a1-d5c77ee61b8b}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/morgue/139/{d4a7b209-402e-4455-b9a1-d5c77ee61b8b}.final new file mode 100644 index 0000000..c46ffbb Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/morgue/139/{d4a7b209-402e-4455-b9a1-d5c77ee61b8b}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/morgue/141/{51dc4daf-71bc-45b5-a9f3-ac66b1c5d28d}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/morgue/141/{51dc4daf-71bc-45b5-a9f3-ac66b1c5d28d}.final new file mode 100644 index 0000000..80319d8 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/morgue/141/{51dc4daf-71bc-45b5-a9f3-ac66b1c5d28d}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/morgue/141/{9ed6c97b-e878-46ba-ae9f-2ec9ab47de8d}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/morgue/141/{9ed6c97b-e878-46ba-ae9f-2ec9ab47de8d}.final new file mode 100644 index 0000000..fa95e41 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/morgue/141/{9ed6c97b-e878-46ba-ae9f-2ec9ab47de8d}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/morgue/150/{a631cd2c-ecb6-4b89-9736-fab73785d396}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/morgue/150/{a631cd2c-ecb6-4b89-9736-fab73785d396}.final new file mode 100644 index 0000000..ca151bc Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/morgue/150/{a631cd2c-ecb6-4b89-9736-fab73785d396}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/morgue/158/{1fa693ba-1633-42db-881a-e9b88a27559e}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/morgue/158/{1fa693ba-1633-42db-881a-e9b88a27559e}.final new file mode 100644 index 0000000..433fff4 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/morgue/158/{1fa693ba-1633-42db-881a-e9b88a27559e}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/morgue/167/{143efb7c-067a-4446-b9aa-a93cc1ac1ea7}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/morgue/167/{143efb7c-067a-4446-b9aa-a93cc1ac1ea7}.final new file mode 100644 index 0000000..83eed83 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/morgue/167/{143efb7c-067a-4446-b9aa-a93cc1ac1ea7}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/morgue/167/{dea65a53-d3b4-496a-89fb-48af383f78a7}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/morgue/167/{dea65a53-d3b4-496a-89fb-48af383f78a7}.final new file mode 100644 index 0000000..40018bd Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/morgue/167/{dea65a53-d3b4-496a-89fb-48af383f78a7}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/morgue/169/{078cb891-2369-4d92-85c4-11e980fc18a9}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/morgue/169/{078cb891-2369-4d92-85c4-11e980fc18a9}.final new file mode 100644 index 0000000..62972cd Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/morgue/169/{078cb891-2369-4d92-85c4-11e980fc18a9}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/morgue/171/{0fc95cca-5d9f-4615-9002-6e7654ac4dab}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/morgue/171/{0fc95cca-5d9f-4615-9002-6e7654ac4dab}.final new file mode 100644 index 0000000..be775bf Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/morgue/171/{0fc95cca-5d9f-4615-9002-6e7654ac4dab}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/morgue/173/{0526cfa6-1e59-4421-be65-2ad34a07fbad}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/morgue/173/{0526cfa6-1e59-4421-be65-2ad34a07fbad}.final new file mode 100644 index 0000000..074e7f9 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/morgue/173/{0526cfa6-1e59-4421-be65-2ad34a07fbad}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/morgue/174/{c18372b0-5856-468b-abd3-c2814b71fcae}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/morgue/174/{c18372b0-5856-468b-abd3-c2814b71fcae}.final new file mode 100644 index 0000000..eb991e9 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/morgue/174/{c18372b0-5856-468b-abd3-c2814b71fcae}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/morgue/179/{8bd8c841-3cda-4877-b0f9-d273796da9b3}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/morgue/179/{8bd8c841-3cda-4877-b0f9-d273796da9b3}.final new file mode 100644 index 0000000..983268b Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/morgue/179/{8bd8c841-3cda-4877-b0f9-d273796da9b3}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/morgue/18/{2859f05c-bd2f-4572-baef-452859f87a12}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/morgue/18/{2859f05c-bd2f-4572-baef-452859f87a12}.final new file mode 100644 index 0000000..50826cc Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/morgue/18/{2859f05c-bd2f-4572-baef-452859f87a12}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/morgue/180/{092caa49-2099-4a85-b0f4-b30e83919ab4}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/morgue/180/{092caa49-2099-4a85-b0f4-b30e83919ab4}.final new file mode 100644 index 0000000..ced2764 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/morgue/180/{092caa49-2099-4a85-b0f4-b30e83919ab4}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/morgue/184/{10cefdf0-3ae3-48cb-9909-7faa338ef5b8}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/morgue/184/{10cefdf0-3ae3-48cb-9909-7faa338ef5b8}.final new file mode 100644 index 0000000..89f74d3 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/morgue/184/{10cefdf0-3ae3-48cb-9909-7faa338ef5b8}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/morgue/186/{82e66aff-4868-4fc3-940d-13deeba872ba}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/morgue/186/{82e66aff-4868-4fc3-940d-13deeba872ba}.final new file mode 100644 index 0000000..6f8aa23 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/morgue/186/{82e66aff-4868-4fc3-940d-13deeba872ba}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/morgue/208/{9f7027b4-f904-4a9d-9c86-912d60b2fed0}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/morgue/208/{9f7027b4-f904-4a9d-9c86-912d60b2fed0}.final new file mode 100644 index 0000000..420b59d Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/morgue/208/{9f7027b4-f904-4a9d-9c86-912d60b2fed0}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/morgue/210/{2bf5cdfd-1b2d-4936-bc0f-5e410b74dad2}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/morgue/210/{2bf5cdfd-1b2d-4936-bc0f-5e410b74dad2}.final new file mode 100644 index 0000000..591f8ca Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/morgue/210/{2bf5cdfd-1b2d-4936-bc0f-5e410b74dad2}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/morgue/211/{474dad0a-a2e9-4d44-b7ee-d1323c0e6bd3}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/morgue/211/{474dad0a-a2e9-4d44-b7ee-d1323c0e6bd3}.final new file mode 100644 index 0000000..ef76260 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/morgue/211/{474dad0a-a2e9-4d44-b7ee-d1323c0e6bd3}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/morgue/211/{b1a02a31-9845-457d-94c9-9dafabd127d3}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/morgue/211/{b1a02a31-9845-457d-94c9-9dafabd127d3}.final new file mode 100644 index 0000000..4b553fb Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/morgue/211/{b1a02a31-9845-457d-94c9-9dafabd127d3}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/morgue/227/{361f5a78-ba67-4fa9-95b7-ffd8a6ae6fe3}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/morgue/227/{361f5a78-ba67-4fa9-95b7-ffd8a6ae6fe3}.final new file mode 100644 index 0000000..df2f8d1 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/morgue/227/{361f5a78-ba67-4fa9-95b7-ffd8a6ae6fe3}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/morgue/227/{f30c61d8-d016-48f1-83cf-145848356ee3}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/morgue/227/{f30c61d8-d016-48f1-83cf-145848356ee3}.final new file mode 100644 index 0000000..7e84dd9 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/morgue/227/{f30c61d8-d016-48f1-83cf-145848356ee3}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/morgue/231/{3b6c5423-afa8-4fbe-86c0-5e5fc7c498e7}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/morgue/231/{3b6c5423-afa8-4fbe-86c0-5e5fc7c498e7}.final new file mode 100644 index 0000000..9ee6877 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/morgue/231/{3b6c5423-afa8-4fbe-86c0-5e5fc7c498e7}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/morgue/231/{54cc8d21-a51d-458e-9d86-5638e85998e7}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/morgue/231/{54cc8d21-a51d-458e-9d86-5638e85998e7}.final new file mode 100644 index 0000000..b57d467 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/morgue/231/{54cc8d21-a51d-458e-9d86-5638e85998e7}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/morgue/234/{3cb62e8c-4436-4f4a-b7ba-26b7c35fbbea}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/morgue/234/{3cb62e8c-4436-4f4a-b7ba-26b7c35fbbea}.final new file mode 100644 index 0000000..5b30b5a Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/morgue/234/{3cb62e8c-4436-4f4a-b7ba-26b7c35fbbea}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/morgue/235/{9ab3c7e2-b2ed-4180-a3ae-f00199213ceb}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/morgue/235/{9ab3c7e2-b2ed-4180-a3ae-f00199213ceb}.final new file mode 100644 index 0000000..6903fd5 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/morgue/235/{9ab3c7e2-b2ed-4180-a3ae-f00199213ceb}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/morgue/239/{2571065c-7371-4e0e-9b14-12935ef5e6ef}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/morgue/239/{2571065c-7371-4e0e-9b14-12935ef5e6ef}.final new file mode 100644 index 0000000..696f835 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/morgue/239/{2571065c-7371-4e0e-9b14-12935ef5e6ef}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/morgue/24/{b241254a-5fdc-43c3-8b1c-4f2e984a1218}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/morgue/24/{b241254a-5fdc-43c3-8b1c-4f2e984a1218}.final new file mode 100644 index 0000000..3d56deb Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/morgue/24/{b241254a-5fdc-43c3-8b1c-4f2e984a1218}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/morgue/242/{c083bd9f-4099-4ca8-9400-8742fc5f9ff2}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/morgue/242/{c083bd9f-4099-4ca8-9400-8742fc5f9ff2}.final new file mode 100644 index 0000000..45e4b1e Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/morgue/242/{c083bd9f-4099-4ca8-9400-8742fc5f9ff2}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/morgue/242/{fb98664e-7c84-442f-8d63-1cf52b7b48f2}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/morgue/242/{fb98664e-7c84-442f-8d63-1cf52b7b48f2}.final new file mode 100644 index 0000000..974d0a6 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/morgue/242/{fb98664e-7c84-442f-8d63-1cf52b7b48f2}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/morgue/243/{fc4656d7-d748-4dc8-b0a6-f4030cf069f3}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/morgue/243/{fc4656d7-d748-4dc8-b0a6-f4030cf069f3}.final new file mode 100644 index 0000000..5e9239b Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/morgue/243/{fc4656d7-d748-4dc8-b0a6-f4030cf069f3}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/morgue/245/{2ef7991d-c052-4f2a-908c-c11b5b5753f5}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/morgue/245/{2ef7991d-c052-4f2a-908c-c11b5b5753f5}.final new file mode 100644 index 0000000..2fa8a6e Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/morgue/245/{2ef7991d-c052-4f2a-908c-c11b5b5753f5}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/morgue/252/{1961f23b-0b64-4bd1-a3ce-0a85ae9681fc}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/morgue/252/{1961f23b-0b64-4bd1-a3ce-0a85ae9681fc}.final new file mode 100644 index 0000000..a938227 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/morgue/252/{1961f23b-0b64-4bd1-a3ce-0a85ae9681fc}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/morgue/254/{4e01db84-434c-40e9-a91f-673a788604fe}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/morgue/254/{4e01db84-434c-40e9-a91f-673a788604fe}.final new file mode 100644 index 0000000..f6ced5a Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/morgue/254/{4e01db84-434c-40e9-a91f-673a788604fe}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/morgue/26/{6a09d13c-0048-4e08-b42d-9ad8ed3aae1a}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/morgue/26/{6a09d13c-0048-4e08-b42d-9ad8ed3aae1a}.final new file mode 100644 index 0000000..b75f68c Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/morgue/26/{6a09d13c-0048-4e08-b42d-9ad8ed3aae1a}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/morgue/4/{0d8e82e5-f493-4b69-8a56-89ae0432f704}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/morgue/4/{0d8e82e5-f493-4b69-8a56-89ae0432f704}.final new file mode 100644 index 0000000..a86bd8d Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/morgue/4/{0d8e82e5-f493-4b69-8a56-89ae0432f704}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/morgue/42/{e4af0213-0542-4c73-91e3-8b933b76f62a}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/morgue/42/{e4af0213-0542-4c73-91e3-8b933b76f62a}.final new file mode 100644 index 0000000..a45dda9 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/morgue/42/{e4af0213-0542-4c73-91e3-8b933b76f62a}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/morgue/43/{d2020020-19df-4f4b-ae57-9fd336f6412b}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/morgue/43/{d2020020-19df-4f4b-ae57-9fd336f6412b}.final new file mode 100644 index 0000000..25dee4c Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/morgue/43/{d2020020-19df-4f4b-ae57-9fd336f6412b}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/morgue/67/{0a9d48b7-b5a3-4056-b118-bbb3c0f0db43}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/morgue/67/{0a9d48b7-b5a3-4056-b118-bbb3c0f0db43}.final new file mode 100644 index 0000000..66eb078 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/morgue/67/{0a9d48b7-b5a3-4056-b118-bbb3c0f0db43}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/morgue/70/{41ba5a62-1c11-42a0-8617-cb4b2c7e6046}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/morgue/70/{41ba5a62-1c11-42a0-8617-cb4b2c7e6046}.final new file mode 100644 index 0000000..73abfa8 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/morgue/70/{41ba5a62-1c11-42a0-8617-cb4b2c7e6046}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/morgue/71/{b93f3364-8b88-4b9b-b85c-f6aa52804447}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/morgue/71/{b93f3364-8b88-4b9b-b85c-f6aa52804447}.final new file mode 100644 index 0000000..5bb9b56 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/morgue/71/{b93f3364-8b88-4b9b-b85c-f6aa52804447}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/morgue/87/{604fdc38-f1d4-466e-a72b-64005b830e57}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/morgue/87/{604fdc38-f1d4-466e-a72b-64005b830e57}.final new file mode 100644 index 0000000..79a8719 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/morgue/87/{604fdc38-f1d4-466e-a72b-64005b830e57}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/morgue/90/{b88bba31-3ab6-4221-912a-35fb81f8a85a}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/morgue/90/{b88bba31-3ab6-4221-912a-35fb81f8a85a}.final new file mode 100644 index 0000000..18a0122 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/morgue/90/{b88bba31-3ab6-4221-912a-35fb81f8a85a}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/morgue/90/{d4be043e-5d5a-4776-b942-3dd1422cc55a}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/morgue/90/{d4be043e-5d5a-4776-b942-3dd1422cc55a}.final new file mode 100644 index 0000000..cbd3bb9 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/morgue/90/{d4be043e-5d5a-4776-b942-3dd1422cc55a}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/morgue/90/{ea51f233-f579-41e2-89ed-1b517fc1c65a}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/morgue/90/{ea51f233-f579-41e2-89ed-1b517fc1c65a}.final new file mode 100644 index 0000000..840edcc Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/morgue/90/{ea51f233-f579-41e2-89ed-1b517fc1c65a}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/morgue/93/{0b794657-2bb4-48b1-a474-54545b995d5d}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/morgue/93/{0b794657-2bb4-48b1-a474-54545b995d5d}.final new file mode 100644 index 0000000..a760deb Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/morgue/93/{0b794657-2bb4-48b1-a474-54545b995d5d}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/morgue/98/{cf6e29a4-02d6-4388-807c-45581d6bf262}.final b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/morgue/98/{cf6e29a4-02d6-4388-807c-45581d6bf262}.final new file mode 100644 index 0000000..b1a2d61 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/cache/morgue/98/{cf6e29a4-02d6-4388-807c-45581d6bf262}.final differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/idb/1050000777yCt7-%iCt7-%r5e9s8p9o.sqlite b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/idb/1050000777yCt7-%iCt7-%r5e9s8p9o.sqlite new file mode 100644 index 0000000..d2ef34b Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/idb/1050000777yCt7-%iCt7-%r5e9s8p9o.sqlite differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/idb/2057579554yatt-asdeartveimc-erw.sqlite b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/idb/2057579554yatt-asdeartveimc-erw.sqlite new file mode 100644 index 0000000..8df85e9 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/idb/2057579554yatt-asdeartveimc-erw.sqlite differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/idb/2171031483YattIedMb.sqlite b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/idb/2171031483YattIedMb.sqlite new file mode 100644 index 0000000..fff77dd Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/idb/2171031483YattIedMb.sqlite differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/idb/2232182701SeesravbiacteaWDosrgk.sqlite b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/idb/2232182701SeesravbiacteaWDosrgk.sqlite new file mode 100644 index 0000000..4812c63 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/idb/2232182701SeesravbiacteaWDosrgk.sqlite differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/idb/2992932671LCo7g%sCD7a%t5a9b8a9s.sqlite b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/idb/2992932671LCo7g%sCD7a%t5a9b8a9s.sqlite new file mode 100644 index 0000000..2e17f29 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/idb/2992932671LCo7g%sCD7a%t5a9b8a9s.sqlite differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/idb/3211250388sbwdpsunsohintoatciif.sqlite b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/idb/3211250388sbwdpsunsohintoatciif.sqlite new file mode 100644 index 0000000..105d77e Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/idb/3211250388sbwdpsunsohintoatciif.sqlite differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/idb/36010285yCt7-%iCd7b%-5p9r8e9f.sqlite b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/idb/36010285yCt7-%iCd7b%-5p9r8e9f.sqlite new file mode 100644 index 0000000..cba0d12 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/idb/36010285yCt7-%iCd7b%-5p9r8e9f.sqlite differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/idb/3651922462yCt7G%cCf7C%o5n9f8i9g.sqlite b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/idb/3651922462yCt7G%cCf7C%o5n9f8i9g.sqlite new file mode 100644 index 0000000..d976fbe Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/idb/3651922462yCt7G%cCf7C%o5n9f8i9g.sqlite differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/idb/3879978604yCt7-%pCl7a%y5e9r8-9l.sqlite b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/idb/3879978604yCt7-%pCl7a%y5e9r8-9l.sqlite new file mode 100644 index 0000000..509ff3b Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/idb/3879978604yCt7-%pCl7a%y5e9r8-9l.sqlite differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/idb/4058803209PCe7r%sCi7s%t5e9n8t9E.sqlite b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/idb/4058803209PCe7r%sCi7s%t5e9n8t9E.sqlite new file mode 100644 index 0000000..c1ed2b4 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/idb/4058803209PCe7r%sCi7s%t5e9n8t9E.sqlite differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/ls/data.sqlite b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/ls/data.sqlite new file mode 100644 index 0000000..5a37e63 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/ls/data.sqlite differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/ls/usage b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/ls/usage new file mode 100644 index 0000000..3ba1d86 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com/ls/usage differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com^partitionKey=%28https%2Cgoogle.com%29/.metadata-v2 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com^partitionKey=%28https%2Cgoogle.com%29/.metadata-v2 new file mode 100644 index 0000000..fb8e713 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com^partitionKey=%28https%2Cgoogle.com%29/.metadata-v2 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com^partitionKey=%28https%2Cgoogle.com%29/cache/.padding b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com^partitionKey=%28https%2Cgoogle.com%29/cache/.padding new file mode 100644 index 0000000..1b1cb4d Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com^partitionKey=%28https%2Cgoogle.com%29/cache/.padding differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com^partitionKey=%28https%2Cgoogle.com%29/cache/caches.sqlite b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com^partitionKey=%28https%2Cgoogle.com%29/cache/caches.sqlite new file mode 100644 index 0000000..b5a0dd2 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com^partitionKey=%28https%2Cgoogle.com%29/cache/caches.sqlite differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com^partitionKey=%28https%2Cgoogle.com%29/idb/2171031483YattIedMb.sqlite b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com^partitionKey=%28https%2Cgoogle.com%29/idb/2171031483YattIedMb.sqlite new file mode 100644 index 0000000..ddbcc48 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com^partitionKey=%28https%2Cgoogle.com%29/idb/2171031483YattIedMb.sqlite differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com^partitionKey=%28https%2Cgoogle.com%29/idb/2232182701SeesravbiacteaWDosrgk.sqlite b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com^partitionKey=%28https%2Cgoogle.com%29/idb/2232182701SeesravbiacteaWDosrgk.sqlite new file mode 100644 index 0000000..76988da Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com^partitionKey=%28https%2Cgoogle.com%29/idb/2232182701SeesravbiacteaWDosrgk.sqlite differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com^partitionKey=%28https%2Cgoogle.com%29/idb/453746218LCo7g%sCD7a%t3a6b7a0s.sqlite b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com^partitionKey=%28https%2Cgoogle.com%29/idb/453746218LCo7g%sCD7a%t3a6b7a0s.sqlite new file mode 100644 index 0000000..c2c5ce5 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com^partitionKey=%28https%2Cgoogle.com%29/idb/453746218LCo7g%sCD7a%t3a6b7a0s.sqlite differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com^partitionKey=%28https%2Cgoogle.com%29/ls/data.sqlite b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com^partitionKey=%28https%2Cgoogle.com%29/ls/data.sqlite new file mode 100644 index 0000000..04749aa Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com^partitionKey=%28https%2Cgoogle.com%29/ls/data.sqlite differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com^partitionKey=%28https%2Cgoogle.com%29/ls/usage b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com^partitionKey=%28https%2Cgoogle.com%29/ls/usage new file mode 100644 index 0000000..d3f5915 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com^partitionKey=%28https%2Cgoogle.com%29/ls/usage differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com^partitionKey=%28https%2Cmajorgeeks.com%29/.metadata-v2 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com^partitionKey=%28https%2Cmajorgeeks.com%29/.metadata-v2 new file mode 100644 index 0000000..706f69a Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com^partitionKey=%28https%2Cmajorgeeks.com%29/.metadata-v2 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com^partitionKey=%28https%2Cmajorgeeks.com%29/cache/.padding b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com^partitionKey=%28https%2Cmajorgeeks.com%29/cache/.padding new file mode 100644 index 0000000..1b1cb4d Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com^partitionKey=%28https%2Cmajorgeeks.com%29/cache/.padding differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com^partitionKey=%28https%2Cmajorgeeks.com%29/cache/caches.sqlite b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com^partitionKey=%28https%2Cmajorgeeks.com%29/cache/caches.sqlite new file mode 100644 index 0000000..4ef3fc6 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com^partitionKey=%28https%2Cmajorgeeks.com%29/cache/caches.sqlite differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com^partitionKey=%28https%2Cmajorgeeks.com%29/idb/2171031483YattIedMb.sqlite b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com^partitionKey=%28https%2Cmajorgeeks.com%29/idb/2171031483YattIedMb.sqlite new file mode 100644 index 0000000..9f4673a Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com^partitionKey=%28https%2Cmajorgeeks.com%29/idb/2171031483YattIedMb.sqlite differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com^partitionKey=%28https%2Cmajorgeeks.com%29/idb/2171031483YattIedMb.sqlite-wal b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com^partitionKey=%28https%2Cmajorgeeks.com%29/idb/2171031483YattIedMb.sqlite-wal new file mode 100644 index 0000000..e69de29 diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com^partitionKey=%28https%2Cmajorgeeks.com%29/idb/2904364895LCo7g%sCD7a%t3a1bcads.sqlite b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com^partitionKey=%28https%2Cmajorgeeks.com%29/idb/2904364895LCo7g%sCD7a%t3a1bcads.sqlite new file mode 100644 index 0000000..2247745 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com^partitionKey=%28https%2Cmajorgeeks.com%29/idb/2904364895LCo7g%sCD7a%t3a1bcads.sqlite differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com^partitionKey=%28https%2Cmajorgeeks.com%29/idb/2904364895LCo7g%sCD7a%t3a1bcads.sqlite-wal b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com^partitionKey=%28https%2Cmajorgeeks.com%29/idb/2904364895LCo7g%sCD7a%t3a1bcads.sqlite-wal new file mode 100644 index 0000000..e69de29 diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com^partitionKey=%28https%2Crazer.com%29/.metadata-v2 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com^partitionKey=%28https%2Crazer.com%29/.metadata-v2 new file mode 100644 index 0000000..2043a48 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com^partitionKey=%28https%2Crazer.com%29/.metadata-v2 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com^partitionKey=%28https%2Crazer.com%29/cache/.padding b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com^partitionKey=%28https%2Crazer.com%29/cache/.padding new file mode 100644 index 0000000..1b1cb4d Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com^partitionKey=%28https%2Crazer.com%29/cache/.padding differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com^partitionKey=%28https%2Crazer.com%29/cache/caches.sqlite b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com^partitionKey=%28https%2Crazer.com%29/cache/caches.sqlite new file mode 100644 index 0000000..4ef3fc6 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com^partitionKey=%28https%2Crazer.com%29/cache/caches.sqlite differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com^partitionKey=%28https%2Crazer.com%29/idb/2010386385LCo7g%sCD7a%tfa4b8aas.sqlite b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com^partitionKey=%28https%2Crazer.com%29/idb/2010386385LCo7g%sCD7a%tfa4b8aas.sqlite new file mode 100644 index 0000000..b89b9b7 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com^partitionKey=%28https%2Crazer.com%29/idb/2010386385LCo7g%sCD7a%tfa4b8aas.sqlite differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com^partitionKey=%28https%2Crazer.com%29/idb/2171031483YattIedMb.sqlite b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com^partitionKey=%28https%2Crazer.com%29/idb/2171031483YattIedMb.sqlite new file mode 100644 index 0000000..0e387d9 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com^partitionKey=%28https%2Crazer.com%29/idb/2171031483YattIedMb.sqlite differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com^partitionKey=%28https%2Crazer.com%29/ls/data.sqlite b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com^partitionKey=%28https%2Crazer.com%29/ls/data.sqlite new file mode 100644 index 0000000..6ee362c Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com^partitionKey=%28https%2Crazer.com%29/ls/data.sqlite differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com^partitionKey=%28https%2Crazer.com%29/ls/usage b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com^partitionKey=%28https%2Crazer.com%29/ls/usage new file mode 100644 index 0000000..d3f5915 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/https+++www.youtube.com^partitionKey=%28https%2Crazer.com%29/ls/usage differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++23ef25c6-fc94-4759-bde4-a345c11191cc^userContextId=4294967295/.metadata-v2 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++23ef25c6-fc94-4759-bde4-a345c11191cc^userContextId=4294967295/.metadata-v2 new file mode 100644 index 0000000..0f841bb Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++23ef25c6-fc94-4759-bde4-a345c11191cc^userContextId=4294967295/.metadata-v2 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++23ef25c6-fc94-4759-bde4-a345c11191cc^userContextId=4294967295/idb/3647222921wleabcEoxlt-eengsairo.sqlite b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++23ef25c6-fc94-4759-bde4-a345c11191cc^userContextId=4294967295/idb/3647222921wleabcEoxlt-eengsairo.sqlite new file mode 100644 index 0000000..cd40f74 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++23ef25c6-fc94-4759-bde4-a345c11191cc^userContextId=4294967295/idb/3647222921wleabcEoxlt-eengsairo.sqlite differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++33f0bb34-57a1-49bf-bd82-e1ae48b49f89/.metadata-v2 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++33f0bb34-57a1-49bf-bd82-e1ae48b49f89/.metadata-v2 new file mode 100644 index 0000000..9fd8492 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++33f0bb34-57a1-49bf-bd82-e1ae48b49f89/.metadata-v2 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++33f0bb34-57a1-49bf-bd82-e1ae48b49f89/idb/1671402671ueBglaorcokt0SCeahc.files/13 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++33f0bb34-57a1-49bf-bd82-e1ae48b49f89/idb/1671402671ueBglaorcokt0SCeahc.files/13 new file mode 100644 index 0000000..0f5b15b Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++33f0bb34-57a1-49bf-bd82-e1ae48b49f89/idb/1671402671ueBglaorcokt0SCeahc.files/13 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++33f0bb34-57a1-49bf-bd82-e1ae48b49f89/idb/1671402671ueBglaorcokt0SCeahc.files/14 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++33f0bb34-57a1-49bf-bd82-e1ae48b49f89/idb/1671402671ueBglaorcokt0SCeahc.files/14 new file mode 100644 index 0000000..c963606 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++33f0bb34-57a1-49bf-bd82-e1ae48b49f89/idb/1671402671ueBglaorcokt0SCeahc.files/14 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++33f0bb34-57a1-49bf-bd82-e1ae48b49f89/idb/1671402671ueBglaorcokt0SCeahc.files/15 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++33f0bb34-57a1-49bf-bd82-e1ae48b49f89/idb/1671402671ueBglaorcokt0SCeahc.files/15 new file mode 100644 index 0000000..0acf297 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++33f0bb34-57a1-49bf-bd82-e1ae48b49f89/idb/1671402671ueBglaorcokt0SCeahc.files/15 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++33f0bb34-57a1-49bf-bd82-e1ae48b49f89/idb/1671402671ueBglaorcokt0SCeahc.files/16 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++33f0bb34-57a1-49bf-bd82-e1ae48b49f89/idb/1671402671ueBglaorcokt0SCeahc.files/16 new file mode 100644 index 0000000..9017f02 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++33f0bb34-57a1-49bf-bd82-e1ae48b49f89/idb/1671402671ueBglaorcokt0SCeahc.files/16 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++33f0bb34-57a1-49bf-bd82-e1ae48b49f89/idb/1671402671ueBglaorcokt0SCeahc.files/17 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++33f0bb34-57a1-49bf-bd82-e1ae48b49f89/idb/1671402671ueBglaorcokt0SCeahc.files/17 new file mode 100644 index 0000000..f2495d3 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++33f0bb34-57a1-49bf-bd82-e1ae48b49f89/idb/1671402671ueBglaorcokt0SCeahc.files/17 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++33f0bb34-57a1-49bf-bd82-e1ae48b49f89/idb/1671402671ueBglaorcokt0SCeahc.files/18 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++33f0bb34-57a1-49bf-bd82-e1ae48b49f89/idb/1671402671ueBglaorcokt0SCeahc.files/18 new file mode 100644 index 0000000..42c0725 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++33f0bb34-57a1-49bf-bd82-e1ae48b49f89/idb/1671402671ueBglaorcokt0SCeahc.files/18 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++33f0bb34-57a1-49bf-bd82-e1ae48b49f89/idb/1671402671ueBglaorcokt0SCeahc.files/19 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++33f0bb34-57a1-49bf-bd82-e1ae48b49f89/idb/1671402671ueBglaorcokt0SCeahc.files/19 new file mode 100644 index 0000000..7102eec Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++33f0bb34-57a1-49bf-bd82-e1ae48b49f89/idb/1671402671ueBglaorcokt0SCeahc.files/19 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++33f0bb34-57a1-49bf-bd82-e1ae48b49f89/idb/1671402671ueBglaorcokt0SCeahc.files/2 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++33f0bb34-57a1-49bf-bd82-e1ae48b49f89/idb/1671402671ueBglaorcokt0SCeahc.files/2 new file mode 100644 index 0000000..3d1ad27 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++33f0bb34-57a1-49bf-bd82-e1ae48b49f89/idb/1671402671ueBglaorcokt0SCeahc.files/2 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++33f0bb34-57a1-49bf-bd82-e1ae48b49f89/idb/1671402671ueBglaorcokt0SCeahc.files/20 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++33f0bb34-57a1-49bf-bd82-e1ae48b49f89/idb/1671402671ueBglaorcokt0SCeahc.files/20 new file mode 100644 index 0000000..17445bb Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++33f0bb34-57a1-49bf-bd82-e1ae48b49f89/idb/1671402671ueBglaorcokt0SCeahc.files/20 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++33f0bb34-57a1-49bf-bd82-e1ae48b49f89/idb/1671402671ueBglaorcokt0SCeahc.files/21 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++33f0bb34-57a1-49bf-bd82-e1ae48b49f89/idb/1671402671ueBglaorcokt0SCeahc.files/21 new file mode 100644 index 0000000..19661f5 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++33f0bb34-57a1-49bf-bd82-e1ae48b49f89/idb/1671402671ueBglaorcokt0SCeahc.files/21 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++33f0bb34-57a1-49bf-bd82-e1ae48b49f89/idb/1671402671ueBglaorcokt0SCeahc.files/22 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++33f0bb34-57a1-49bf-bd82-e1ae48b49f89/idb/1671402671ueBglaorcokt0SCeahc.files/22 new file mode 100644 index 0000000..44e440c Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++33f0bb34-57a1-49bf-bd82-e1ae48b49f89/idb/1671402671ueBglaorcokt0SCeahc.files/22 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++33f0bb34-57a1-49bf-bd82-e1ae48b49f89/idb/1671402671ueBglaorcokt0SCeahc.files/23 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++33f0bb34-57a1-49bf-bd82-e1ae48b49f89/idb/1671402671ueBglaorcokt0SCeahc.files/23 new file mode 100644 index 0000000..058c17d Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++33f0bb34-57a1-49bf-bd82-e1ae48b49f89/idb/1671402671ueBglaorcokt0SCeahc.files/23 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++33f0bb34-57a1-49bf-bd82-e1ae48b49f89/idb/1671402671ueBglaorcokt0SCeahc.files/24 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++33f0bb34-57a1-49bf-bd82-e1ae48b49f89/idb/1671402671ueBglaorcokt0SCeahc.files/24 new file mode 100644 index 0000000..a9c29ba Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++33f0bb34-57a1-49bf-bd82-e1ae48b49f89/idb/1671402671ueBglaorcokt0SCeahc.files/24 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++33f0bb34-57a1-49bf-bd82-e1ae48b49f89/idb/1671402671ueBglaorcokt0SCeahc.files/25 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++33f0bb34-57a1-49bf-bd82-e1ae48b49f89/idb/1671402671ueBglaorcokt0SCeahc.files/25 new file mode 100644 index 0000000..5bc8d45 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++33f0bb34-57a1-49bf-bd82-e1ae48b49f89/idb/1671402671ueBglaorcokt0SCeahc.files/25 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++33f0bb34-57a1-49bf-bd82-e1ae48b49f89/idb/1671402671ueBglaorcokt0SCeahc.files/26 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++33f0bb34-57a1-49bf-bd82-e1ae48b49f89/idb/1671402671ueBglaorcokt0SCeahc.files/26 new file mode 100644 index 0000000..531c8c7 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++33f0bb34-57a1-49bf-bd82-e1ae48b49f89/idb/1671402671ueBglaorcokt0SCeahc.files/26 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++33f0bb34-57a1-49bf-bd82-e1ae48b49f89/idb/1671402671ueBglaorcokt0SCeahc.files/27 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++33f0bb34-57a1-49bf-bd82-e1ae48b49f89/idb/1671402671ueBglaorcokt0SCeahc.files/27 new file mode 100644 index 0000000..b628d71 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++33f0bb34-57a1-49bf-bd82-e1ae48b49f89/idb/1671402671ueBglaorcokt0SCeahc.files/27 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++33f0bb34-57a1-49bf-bd82-e1ae48b49f89/idb/1671402671ueBglaorcokt0SCeahc.files/28 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++33f0bb34-57a1-49bf-bd82-e1ae48b49f89/idb/1671402671ueBglaorcokt0SCeahc.files/28 new file mode 100644 index 0000000..7ad019b Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++33f0bb34-57a1-49bf-bd82-e1ae48b49f89/idb/1671402671ueBglaorcokt0SCeahc.files/28 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++33f0bb34-57a1-49bf-bd82-e1ae48b49f89/idb/1671402671ueBglaorcokt0SCeahc.files/29 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++33f0bb34-57a1-49bf-bd82-e1ae48b49f89/idb/1671402671ueBglaorcokt0SCeahc.files/29 new file mode 100644 index 0000000..83a0464 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++33f0bb34-57a1-49bf-bd82-e1ae48b49f89/idb/1671402671ueBglaorcokt0SCeahc.files/29 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++33f0bb34-57a1-49bf-bd82-e1ae48b49f89/idb/1671402671ueBglaorcokt0SCeahc.files/32 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++33f0bb34-57a1-49bf-bd82-e1ae48b49f89/idb/1671402671ueBglaorcokt0SCeahc.files/32 new file mode 100644 index 0000000..01a94fa Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++33f0bb34-57a1-49bf-bd82-e1ae48b49f89/idb/1671402671ueBglaorcokt0SCeahc.files/32 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++33f0bb34-57a1-49bf-bd82-e1ae48b49f89/idb/1671402671ueBglaorcokt0SCeahc.files/33 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++33f0bb34-57a1-49bf-bd82-e1ae48b49f89/idb/1671402671ueBglaorcokt0SCeahc.files/33 new file mode 100644 index 0000000..9583a97 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++33f0bb34-57a1-49bf-bd82-e1ae48b49f89/idb/1671402671ueBglaorcokt0SCeahc.files/33 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++33f0bb34-57a1-49bf-bd82-e1ae48b49f89/idb/1671402671ueBglaorcokt0SCeahc.files/34 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++33f0bb34-57a1-49bf-bd82-e1ae48b49f89/idb/1671402671ueBglaorcokt0SCeahc.files/34 new file mode 100644 index 0000000..be28f03 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++33f0bb34-57a1-49bf-bd82-e1ae48b49f89/idb/1671402671ueBglaorcokt0SCeahc.files/34 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++33f0bb34-57a1-49bf-bd82-e1ae48b49f89/idb/1671402671ueBglaorcokt0SCeahc.files/35 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++33f0bb34-57a1-49bf-bd82-e1ae48b49f89/idb/1671402671ueBglaorcokt0SCeahc.files/35 new file mode 100644 index 0000000..db3d464 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++33f0bb34-57a1-49bf-bd82-e1ae48b49f89/idb/1671402671ueBglaorcokt0SCeahc.files/35 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++33f0bb34-57a1-49bf-bd82-e1ae48b49f89/idb/1671402671ueBglaorcokt0SCeahc.files/46 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++33f0bb34-57a1-49bf-bd82-e1ae48b49f89/idb/1671402671ueBglaorcokt0SCeahc.files/46 new file mode 100644 index 0000000..906b3bb Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++33f0bb34-57a1-49bf-bd82-e1ae48b49f89/idb/1671402671ueBglaorcokt0SCeahc.files/46 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++33f0bb34-57a1-49bf-bd82-e1ae48b49f89/idb/1671402671ueBglaorcokt0SCeahc.files/47 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++33f0bb34-57a1-49bf-bd82-e1ae48b49f89/idb/1671402671ueBglaorcokt0SCeahc.files/47 new file mode 100644 index 0000000..7ed5d66 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++33f0bb34-57a1-49bf-bd82-e1ae48b49f89/idb/1671402671ueBglaorcokt0SCeahc.files/47 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++33f0bb34-57a1-49bf-bd82-e1ae48b49f89/idb/1671402671ueBglaorcokt0SCeahc.files/48 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++33f0bb34-57a1-49bf-bd82-e1ae48b49f89/idb/1671402671ueBglaorcokt0SCeahc.files/48 new file mode 100644 index 0000000..0658da3 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++33f0bb34-57a1-49bf-bd82-e1ae48b49f89/idb/1671402671ueBglaorcokt0SCeahc.files/48 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++33f0bb34-57a1-49bf-bd82-e1ae48b49f89/idb/1671402671ueBglaorcokt0SCeahc.files/49 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++33f0bb34-57a1-49bf-bd82-e1ae48b49f89/idb/1671402671ueBglaorcokt0SCeahc.files/49 new file mode 100644 index 0000000..5f7bc41 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++33f0bb34-57a1-49bf-bd82-e1ae48b49f89/idb/1671402671ueBglaorcokt0SCeahc.files/49 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++33f0bb34-57a1-49bf-bd82-e1ae48b49f89/idb/1671402671ueBglaorcokt0SCeahc.files/50 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++33f0bb34-57a1-49bf-bd82-e1ae48b49f89/idb/1671402671ueBglaorcokt0SCeahc.files/50 new file mode 100644 index 0000000..d81a5de Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++33f0bb34-57a1-49bf-bd82-e1ae48b49f89/idb/1671402671ueBglaorcokt0SCeahc.files/50 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++33f0bb34-57a1-49bf-bd82-e1ae48b49f89/idb/1671402671ueBglaorcokt0SCeahc.files/51 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++33f0bb34-57a1-49bf-bd82-e1ae48b49f89/idb/1671402671ueBglaorcokt0SCeahc.files/51 new file mode 100644 index 0000000..a169475 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++33f0bb34-57a1-49bf-bd82-e1ae48b49f89/idb/1671402671ueBglaorcokt0SCeahc.files/51 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++33f0bb34-57a1-49bf-bd82-e1ae48b49f89/idb/1671402671ueBglaorcokt0SCeahc.files/52 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++33f0bb34-57a1-49bf-bd82-e1ae48b49f89/idb/1671402671ueBglaorcokt0SCeahc.files/52 new file mode 100644 index 0000000..906fcef Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++33f0bb34-57a1-49bf-bd82-e1ae48b49f89/idb/1671402671ueBglaorcokt0SCeahc.files/52 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++33f0bb34-57a1-49bf-bd82-e1ae48b49f89/idb/1671402671ueBglaorcokt0SCeahc.files/53 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++33f0bb34-57a1-49bf-bd82-e1ae48b49f89/idb/1671402671ueBglaorcokt0SCeahc.files/53 new file mode 100644 index 0000000..82e5401 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++33f0bb34-57a1-49bf-bd82-e1ae48b49f89/idb/1671402671ueBglaorcokt0SCeahc.files/53 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++33f0bb34-57a1-49bf-bd82-e1ae48b49f89/idb/1671402671ueBglaorcokt0SCeahc.files/54 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++33f0bb34-57a1-49bf-bd82-e1ae48b49f89/idb/1671402671ueBglaorcokt0SCeahc.files/54 new file mode 100644 index 0000000..8f20d59 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++33f0bb34-57a1-49bf-bd82-e1ae48b49f89/idb/1671402671ueBglaorcokt0SCeahc.files/54 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++33f0bb34-57a1-49bf-bd82-e1ae48b49f89/idb/1671402671ueBglaorcokt0SCeahc.files/55 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++33f0bb34-57a1-49bf-bd82-e1ae48b49f89/idb/1671402671ueBglaorcokt0SCeahc.files/55 new file mode 100644 index 0000000..30fccdd Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++33f0bb34-57a1-49bf-bd82-e1ae48b49f89/idb/1671402671ueBglaorcokt0SCeahc.files/55 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++33f0bb34-57a1-49bf-bd82-e1ae48b49f89/idb/1671402671ueBglaorcokt0SCeahc.files/56 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++33f0bb34-57a1-49bf-bd82-e1ae48b49f89/idb/1671402671ueBglaorcokt0SCeahc.files/56 new file mode 100644 index 0000000..93bd1ba Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++33f0bb34-57a1-49bf-bd82-e1ae48b49f89/idb/1671402671ueBglaorcokt0SCeahc.files/56 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++33f0bb34-57a1-49bf-bd82-e1ae48b49f89/idb/1671402671ueBglaorcokt0SCeahc.files/57 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++33f0bb34-57a1-49bf-bd82-e1ae48b49f89/idb/1671402671ueBglaorcokt0SCeahc.files/57 new file mode 100644 index 0000000..627ed15 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++33f0bb34-57a1-49bf-bd82-e1ae48b49f89/idb/1671402671ueBglaorcokt0SCeahc.files/57 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++33f0bb34-57a1-49bf-bd82-e1ae48b49f89/idb/1671402671ueBglaorcokt0SCeahc.sqlite b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++33f0bb34-57a1-49bf-bd82-e1ae48b49f89/idb/1671402671ueBglaorcokt0SCeahc.sqlite new file mode 100644 index 0000000..b1db1b7 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++33f0bb34-57a1-49bf-bd82-e1ae48b49f89/idb/1671402671ueBglaorcokt0SCeahc.sqlite differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++33f0bb34-57a1-49bf-bd82-e1ae48b49f89^userContextId=4294967295/.metadata-v2 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++33f0bb34-57a1-49bf-bd82-e1ae48b49f89^userContextId=4294967295/.metadata-v2 new file mode 100644 index 0000000..2c31244 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++33f0bb34-57a1-49bf-bd82-e1ae48b49f89^userContextId=4294967295/.metadata-v2 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++33f0bb34-57a1-49bf-bd82-e1ae48b49f89^userContextId=4294967295/idb/3647222921wleabcEoxlt-eengsairo.sqlite b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++33f0bb34-57a1-49bf-bd82-e1ae48b49f89^userContextId=4294967295/idb/3647222921wleabcEoxlt-eengsairo.sqlite new file mode 100644 index 0000000..ca882e4 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++33f0bb34-57a1-49bf-bd82-e1ae48b49f89^userContextId=4294967295/idb/3647222921wleabcEoxlt-eengsairo.sqlite differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++58883547-f59f-4caa-bf14-82a8f4478eb3^userContextId=4294967295/.metadata-v2 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++58883547-f59f-4caa-bf14-82a8f4478eb3^userContextId=4294967295/.metadata-v2 new file mode 100644 index 0000000..fcc0462 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++58883547-f59f-4caa-bf14-82a8f4478eb3^userContextId=4294967295/.metadata-v2 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++58883547-f59f-4caa-bf14-82a8f4478eb3^userContextId=4294967295/idb/3647222921wleabcEoxlt-eengsairo.files/31 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++58883547-f59f-4caa-bf14-82a8f4478eb3^userContextId=4294967295/idb/3647222921wleabcEoxlt-eengsairo.files/31 new file mode 100644 index 0000000..5034276 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++58883547-f59f-4caa-bf14-82a8f4478eb3^userContextId=4294967295/idb/3647222921wleabcEoxlt-eengsairo.files/31 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++58883547-f59f-4caa-bf14-82a8f4478eb3^userContextId=4294967295/idb/3647222921wleabcEoxlt-eengsairo.sqlite b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++58883547-f59f-4caa-bf14-82a8f4478eb3^userContextId=4294967295/idb/3647222921wleabcEoxlt-eengsairo.sqlite new file mode 100644 index 0000000..adb58fe Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++58883547-f59f-4caa-bf14-82a8f4478eb3^userContextId=4294967295/idb/3647222921wleabcEoxlt-eengsairo.sqlite differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++6ddfbb4b-2163-4587-99ce-3e78223b9a9d^userContextId=4294967295/.metadata-v2 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++6ddfbb4b-2163-4587-99ce-3e78223b9a9d^userContextId=4294967295/.metadata-v2 new file mode 100644 index 0000000..637db30 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++6ddfbb4b-2163-4587-99ce-3e78223b9a9d^userContextId=4294967295/.metadata-v2 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++6ddfbb4b-2163-4587-99ce-3e78223b9a9d^userContextId=4294967295/idb/3647222921wleabcEoxlt-eengsairo.files/1 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++6ddfbb4b-2163-4587-99ce-3e78223b9a9d^userContextId=4294967295/idb/3647222921wleabcEoxlt-eengsairo.files/1 new file mode 100644 index 0000000..a4ea025 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++6ddfbb4b-2163-4587-99ce-3e78223b9a9d^userContextId=4294967295/idb/3647222921wleabcEoxlt-eengsairo.files/1 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++6ddfbb4b-2163-4587-99ce-3e78223b9a9d^userContextId=4294967295/idb/3647222921wleabcEoxlt-eengsairo.sqlite b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++6ddfbb4b-2163-4587-99ce-3e78223b9a9d^userContextId=4294967295/idb/3647222921wleabcEoxlt-eengsairo.sqlite new file mode 100644 index 0000000..d564044 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++6ddfbb4b-2163-4587-99ce-3e78223b9a9d^userContextId=4294967295/idb/3647222921wleabcEoxlt-eengsairo.sqlite differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++c91d27ca-5ed9-4f02-a50b-fa79abff9e8d^userContextId=4294967295/.metadata-v2 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++c91d27ca-5ed9-4f02-a50b-fa79abff9e8d^userContextId=4294967295/.metadata-v2 new file mode 100644 index 0000000..e76dd4e Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++c91d27ca-5ed9-4f02-a50b-fa79abff9e8d^userContextId=4294967295/.metadata-v2 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++c91d27ca-5ed9-4f02-a50b-fa79abff9e8d^userContextId=4294967295/idb/3647222921wleabcEoxlt-eengsairo.sqlite b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++c91d27ca-5ed9-4f02-a50b-fa79abff9e8d^userContextId=4294967295/idb/3647222921wleabcEoxlt-eengsairo.sqlite new file mode 100644 index 0000000..c3f7e6a Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++c91d27ca-5ed9-4f02-a50b-fa79abff9e8d^userContextId=4294967295/idb/3647222921wleabcEoxlt-eengsairo.sqlite differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++d0a68153-fa55-4029-8d23-ddcfc7eb6164/.metadata-v2 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++d0a68153-fa55-4029-8d23-ddcfc7eb6164/.metadata-v2 new file mode 100644 index 0000000..4b389ef Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++d0a68153-fa55-4029-8d23-ddcfc7eb6164/.metadata-v2 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++d0a68153-fa55-4029-8d23-ddcfc7eb6164/idb/2213423890hstpt.files/1 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++d0a68153-fa55-4029-8d23-ddcfc7eb6164/idb/2213423890hstpt.files/1 new file mode 100644 index 0000000..bf20b87 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++d0a68153-fa55-4029-8d23-ddcfc7eb6164/idb/2213423890hstpt.files/1 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++d0a68153-fa55-4029-8d23-ddcfc7eb6164/idb/2213423890hstpt.sqlite b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++d0a68153-fa55-4029-8d23-ddcfc7eb6164/idb/2213423890hstpt.sqlite new file mode 100644 index 0000000..f8817c1 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++d0a68153-fa55-4029-8d23-ddcfc7eb6164/idb/2213423890hstpt.sqlite differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++d0a68153-fa55-4029-8d23-ddcfc7eb6164/idb/3713173747_s_edmban.sqlite b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++d0a68153-fa55-4029-8d23-ddcfc7eb6164/idb/3713173747_s_edmban.sqlite new file mode 100644 index 0000000..5bf81d4 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++d0a68153-fa55-4029-8d23-ddcfc7eb6164/idb/3713173747_s_edmban.sqlite differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++d0a68153-fa55-4029-8d23-ddcfc7eb6164/idb/855779566tedgsaSrto.files/1 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++d0a68153-fa55-4029-8d23-ddcfc7eb6164/idb/855779566tedgsaSrto.files/1 new file mode 100644 index 0000000..4dc00f5 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++d0a68153-fa55-4029-8d23-ddcfc7eb6164/idb/855779566tedgsaSrto.files/1 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++d0a68153-fa55-4029-8d23-ddcfc7eb6164/idb/855779566tedgsaSrto.sqlite b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++d0a68153-fa55-4029-8d23-ddcfc7eb6164/idb/855779566tedgsaSrto.sqlite new file mode 100644 index 0000000..2c994f7 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++d0a68153-fa55-4029-8d23-ddcfc7eb6164/idb/855779566tedgsaSrto.sqlite differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++d0a68153-fa55-4029-8d23-ddcfc7eb6164^userContextId=4294967295/.metadata-v2 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++d0a68153-fa55-4029-8d23-ddcfc7eb6164^userContextId=4294967295/.metadata-v2 new file mode 100644 index 0000000..0ab0cf1 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++d0a68153-fa55-4029-8d23-ddcfc7eb6164^userContextId=4294967295/.metadata-v2 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++d0a68153-fa55-4029-8d23-ddcfc7eb6164^userContextId=4294967295/idb/3647222921wleabcEoxlt-eengsairo.sqlite b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++d0a68153-fa55-4029-8d23-ddcfc7eb6164^userContextId=4294967295/idb/3647222921wleabcEoxlt-eengsairo.sqlite new file mode 100644 index 0000000..5f0c8cd Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++d0a68153-fa55-4029-8d23-ddcfc7eb6164^userContextId=4294967295/idb/3647222921wleabcEoxlt-eengsairo.sqlite differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++df1156d3-0c37-49fd-8615-433b46371972^userContextId=4294967295/.metadata-v2 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++df1156d3-0c37-49fd-8615-433b46371972^userContextId=4294967295/.metadata-v2 new file mode 100644 index 0000000..b16f728 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++df1156d3-0c37-49fd-8615-433b46371972^userContextId=4294967295/.metadata-v2 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++df1156d3-0c37-49fd-8615-433b46371972^userContextId=4294967295/idb/3647222921wleabcEoxlt-eengsairo.sqlite b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++df1156d3-0c37-49fd-8615-433b46371972^userContextId=4294967295/idb/3647222921wleabcEoxlt-eengsairo.sqlite new file mode 100644 index 0000000..501b6c6 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++df1156d3-0c37-49fd-8615-433b46371972^userContextId=4294967295/idb/3647222921wleabcEoxlt-eengsairo.sqlite differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++e9637a6b-6a3e-4382-abfa-29c1ff55aa2c/.metadata-v2 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++e9637a6b-6a3e-4382-abfa-29c1ff55aa2c/.metadata-v2 new file mode 100644 index 0000000..0b79be3 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++e9637a6b-6a3e-4382-abfa-29c1ff55aa2c/.metadata-v2 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++e9637a6b-6a3e-4382-abfa-29c1ff55aa2c/idb/1332296301vtalu.sqlite b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++e9637a6b-6a3e-4382-abfa-29c1ff55aa2c/idb/1332296301vtalu.sqlite new file mode 100644 index 0000000..2a49af7 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++e9637a6b-6a3e-4382-abfa-29c1ff55aa2c/idb/1332296301vtalu.sqlite differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++e9637a6b-6a3e-4382-abfa-29c1ff55aa2c/idb/3619119340leogcaarlof.sqlite b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++e9637a6b-6a3e-4382-abfa-29c1ff55aa2c/idb/3619119340leogcaarlof.sqlite new file mode 100644 index 0000000..1f2a3c7 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++e9637a6b-6a3e-4382-abfa-29c1ff55aa2c/idb/3619119340leogcaarlof.sqlite differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++e9637a6b-6a3e-4382-abfa-29c1ff55aa2c/idb/583651055lp.sqlite b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++e9637a6b-6a3e-4382-abfa-29c1ff55aa2c/idb/583651055lp.sqlite new file mode 100644 index 0000000..3e0bfc8 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++e9637a6b-6a3e-4382-abfa-29c1ff55aa2c/idb/583651055lp.sqlite differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++e9637a6b-6a3e-4382-abfa-29c1ff55aa2c/idb/989918825eeft7a3tfse-0c31f856d.sqlite b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++e9637a6b-6a3e-4382-abfa-29c1ff55aa2c/idb/989918825eeft7a3tfse-0c31f856d.sqlite new file mode 100644 index 0000000..6a7cb73 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++e9637a6b-6a3e-4382-abfa-29c1ff55aa2c/idb/989918825eeft7a3tfse-0c31f856d.sqlite differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++e9637a6b-6a3e-4382-abfa-29c1ff55aa2c/ls/data.sqlite b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++e9637a6b-6a3e-4382-abfa-29c1ff55aa2c/ls/data.sqlite new file mode 100644 index 0000000..1bfbb81 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++e9637a6b-6a3e-4382-abfa-29c1ff55aa2c/ls/data.sqlite differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++e9637a6b-6a3e-4382-abfa-29c1ff55aa2c/ls/usage b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++e9637a6b-6a3e-4382-abfa-29c1ff55aa2c/ls/usage new file mode 100644 index 0000000..23c587b Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++e9637a6b-6a3e-4382-abfa-29c1ff55aa2c/ls/usage differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++fcb9e288-9d49-42a0-a5e3-17d21f8da124^userContextId=4294967295/.metadata-v2 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++fcb9e288-9d49-42a0-a5e3-17d21f8da124^userContextId=4294967295/.metadata-v2 new file mode 100644 index 0000000..855f6a6 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++fcb9e288-9d49-42a0-a5e3-17d21f8da124^userContextId=4294967295/.metadata-v2 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++fcb9e288-9d49-42a0-a5e3-17d21f8da124^userContextId=4294967295/idb/3647222921wleabcEoxlt-eengsairo.sqlite b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++fcb9e288-9d49-42a0-a5e3-17d21f8da124^userContextId=4294967295/idb/3647222921wleabcEoxlt-eengsairo.sqlite new file mode 100644 index 0000000..0fc40d3 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/default/moz-extension+++fcb9e288-9d49-42a0-a5e3-17d21f8da124^userContextId=4294967295/idb/3647222921wleabcEoxlt-eengsairo.sqlite differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/ls-archive.sqlite b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/ls-archive.sqlite new file mode 100644 index 0000000..8ce18de Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/ls-archive.sqlite differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/permanent/chrome/.metadata-v2 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/permanent/chrome/.metadata-v2 new file mode 100644 index 0000000..0636c5c Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/permanent/chrome/.metadata-v2 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/permanent/chrome/idb/1451318868ntouromlalnodry--epcr.sqlite b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/permanent/chrome/idb/1451318868ntouromlalnodry--epcr.sqlite new file mode 100644 index 0000000..1888777 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/permanent/chrome/idb/1451318868ntouromlalnodry--epcr.sqlite differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/permanent/chrome/idb/1657114595AmcateirvtiSty.sqlite b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/permanent/chrome/idb/1657114595AmcateirvtiSty.sqlite new file mode 100644 index 0000000..a20eb2c Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/permanent/chrome/idb/1657114595AmcateirvtiSty.sqlite differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/permanent/chrome/idb/2823318777ntouromlalnodry--naod.sqlite b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/permanent/chrome/idb/2823318777ntouromlalnodry--naod.sqlite new file mode 100644 index 0000000..775c76a Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/permanent/chrome/idb/2823318777ntouromlalnodry--naod.sqlite differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/permanent/chrome/idb/2918063365piupsah.sqlite b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/permanent/chrome/idb/2918063365piupsah.sqlite new file mode 100644 index 0000000..4b89909 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/permanent/chrome/idb/2918063365piupsah.sqlite differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/permanent/chrome/idb/3561288849sdhlie.sqlite b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/permanent/chrome/idb/3561288849sdhlie.sqlite new file mode 100644 index 0000000..f14127e Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/permanent/chrome/idb/3561288849sdhlie.sqlite differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/permanent/chrome/idb/3870112724rsegmnoittet-es.sqlite b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/permanent/chrome/idb/3870112724rsegmnoittet-es.sqlite new file mode 100644 index 0000000..dbd8126 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/permanent/chrome/idb/3870112724rsegmnoittet-es.sqlite differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/permanent/indexeddb+++fx-devtools/.metadata-v2 b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/permanent/indexeddb+++fx-devtools/.metadata-v2 new file mode 100644 index 0000000..2657913 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/permanent/indexeddb+++fx-devtools/.metadata-v2 differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/permanent/indexeddb+++fx-devtools/idb/478967115deegvatroootlss--cans.sqlite b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/permanent/indexeddb+++fx-devtools/idb/478967115deegvatroootlss--cans.sqlite new file mode 100644 index 0000000..1ad5518 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/storage/permanent/indexeddb+++fx-devtools/idb/478967115deegvatroootlss--cans.sqlite differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/times.json b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/times.json new file mode 100755 index 0000000..94b33f0 --- /dev/null +++ b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/times.json @@ -0,0 +1 @@ +{"created":1688747209702,"firstUse":1688747209930} \ No newline at end of file diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/webappsstore.sqlite b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/webappsstore.sqlite new file mode 100644 index 0000000..7cc9da0 Binary files /dev/null and b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/webappsstore.sqlite differ diff --git a/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/xulstore.json b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/xulstore.json new file mode 100644 index 0000000..71c8fc2 --- /dev/null +++ b/home/r0r5chach/.mozilla/firefox/wtc7ec9x.default-release/xulstore.json @@ -0,0 +1 @@ +{"chrome://browser/content/browser.xhtml":{"main-window":{"screenX":"30","screenY":"26","width":"1230","height":"980","sizemode":"normal"},"sidebar-box":{"sidebarcommand":"viewBookmarksSidebar","style":"order: 1;"},"sidebar-title":{"value":"Bookmarks"},"toolbar-menubar":{"autohide":"true"},"place:535X+ukSIOMV/Wdb9Ns7aw==":{"open":"true"}},"chrome://browser/content/places/places.xhtml":{"placesContentTags":{"ordinal":"3"},"placesContentUrl":{"ordinal":"5"},"placesContentDate":{"ordinal":"7"},"placesContentVisitCount":{"ordinal":"9"},"placesContentDateAdded":{"ordinal":"11"},"placesContentLastModified":{"ordinal":"13"},"places":{"sizemode":"normal","screenX":"0","screenY":"0","width":"800","height":"500"},"placesContentTitle":{"sortDirection":"ascending"}},"chrome://browser/content/places/historySidebar.xhtml":{"place:OTdY6WQPwfWrA8VzSgweKg==":{"open":"true"},"viewButton":{"selectedsort":"lastvisited"}},"chrome://browser/content/places/bookmarksSidebar.xhtml":{"place:j2VgE4ZJgwfA7wCCQy44lQ==":{"open":"true"},"place:OmHfAW8r3JtHUJDITYXmXg==":{"open":"true"},"place:CqewroxEONFH0b8ILWSXYA==":{"open":"true"},"place:JM5FOT/Ce1zcohlPGCbsLw==":{"open":"true"},"place:535X+ukSIOMV/Wdb9Ns7aw==":{"open":"true"},"place:5IMh/USwOD34G3P4eZBujw==":{"open":"true"}}} \ No newline at end of file diff --git a/home/r0r5chach/.zshrc b/home/r0r5chach/.zshrc index 36daf69..ad91d59 100644 --- a/home/r0r5chach/.zshrc +++ b/home/r0r5chach/.zshrc @@ -14,10 +14,14 @@ compinit # Aliases alias ls='ls --color=auto' alias grep='grep --color=auto' +alias diff='colordiff' +alias lzd='lazydocker' +alias lg='lazygit' +alias ping='gping' # Prompt Config SUCCESS="%F{blue}ʘ‿ʘ%f" # What to display upon Command success -FAIL="%F{red}⊙︿⊙%f" # What to display upon Command failure +FAIL="%F{red}⊙╭╮⊙%f" # What to display upon Command failure preexec() { preexec_called=1 diff --git a/usr/share/applications/code-url-handler.desktop b/usr/share/applications/code-url-handler.desktop new file mode 100644 index 0000000..5406fde --- /dev/null +++ b/usr/share/applications/code-url-handler.desktop @@ -0,0 +1,12 @@ +[Desktop Entry] +Name=Visual Studio Code - URL Handler +Comment=Code Editing. Redefined. +GenericName=Text Editor +Exec=/usr/bin/code --password-store="kde"--open-url %U +Icon=visual-studio-code +Type=Application +NoDisplay=true +StartupNotify=true +Categories=TextEditor;Development;IDE; +MimeType=x-scheme-handler/vscode; +Keywords=vscode; diff --git a/usr/share/applications/code.desktop b/usr/share/applications/code.desktop new file mode 100644 index 0000000..739e44c --- /dev/null +++ b/usr/share/applications/code.desktop @@ -0,0 +1,18 @@ +[Desktop Entry] +Name=Visual Studio Code +Comment=Code Editing. Refined. +GenericName=Text Editor +Exec=/usr/bin/code --unity-launch %F +Icon=visual-studio-code +Type=Application +StartupNotify=false +StartupWMClass=Code +Categories=TextEditor;Development;IDE; +MimeType=text/plain;inode/directory;application/x-code-workspace; +Actions=new-empty-window; +Keywords=vscode; + +[Desktop Action new-empty-window] +Name=New Empty Window +Exec=/usr/bin/code --password-store='kde' --new-window %F +Icon=visual-studio-code diff --git a/usr/share/applications/spotify.desktop b/usr/share/applications/spotify.desktop new file mode 100644 index 0000000..1fa9bf0 --- /dev/null +++ b/usr/share/applications/spotify.desktop @@ -0,0 +1,11 @@ +[Desktop Entry] +Type=Application +Name=Spotify +GenericName=Music Player +Icon=spotify-client +TryExec=spt +Exec=kitty sh -c "spt" +Terminal=false +MimeType=x-scheme-handler/spotify; +Categories=Audio;Music;Player;AudioVideo; +StartupWMClass=spotify