tramp-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

tramp (HEAD/b20b7910b413c13352213d37cac8e948ad554dc3); CR-LF woes again


From: Dominique Quatravaux
Subject: tramp (HEAD/b20b7910b413c13352213d37cac8e948ad554dc3); CR-LF woes again — PATCH ATTACHED
Date: Tue, 21 Nov 2023 21:17:06 +0100

When accessing some file over the /kubernetes: Tramp connection type, browsing goes sideways the instant I am done typing in the “hostname” (i.e. in this case, the pod name). It appears that for some reason or other, the CR/LF situation is being handled poorly. The result is as follows in
buffer *Messages*:

let: ‘echo \"`uname -sr`\"’ does not return a valid Lisp _expression_: ‘"Linux 5.14.0-284.32.1.el9_2.x86_64"^M

(where ^M stands for an actual CR character; expanded here in the e-mail for
obvious reasons)

The exact same issue happened with stock (2.7.0-pre) Tramp (hence the reason why I tried out the Git version).

The stack trace for this circumstance (after M-x toggle-debug-on-error) is as follows:

Debugger entered--Lisp error: (file-error "‘echo \\\"`uname -sr`\\\"’ does not return a valid Lis...")
  signal(file-error ("‘echo \\\"`uname -sr`\\\"’ does not return a valid Lis..."))
  (let (signal-hook-function) (tramp-backtrace vec-or-proc) (if arguments nil (progn (setq arguments (list fmt-string)) (setq fmt-string "%s"))) (tramp-message vec-or-proc 1 "%s" (error-message-string (list signal (get signal 'error-message) (apply #'format-message fmt-string arguments)))) (signal signal (list (substring-no-properties (apply #'format-message fmt-string arguments)))))
  tramp-error(nil file-error "‘echo \\\"`uname -sr`\\\"’ does not return a valid Lis...")
  (let ((inhibit-message t)) (tramp-error (car tramp-current-connection) error-symbol (mapconcat #'(lambda (x) (format "%s" x)) data " ")))
  (if (eq error-symbol 'void-variable) nil (let ((inhibit-message t)) (tramp-error (car tramp-current-connection) error-symbol (mapconcat #'(lambda (x) (format "%s" x)) data " "))))
  tramp-signal-hook-function(file-error ("‘echo \\\"`uname -sr`\\\"’ does not return a valid Lis..."))
  signal(file-error ("‘echo \\\"`uname -sr`\\\"’ does not return a valid Lis..."))
  (condition-case err (if (process-live-p p) nil (if (or noninteractive inhibit-message) (progn (catch 'uname-changed (if (and p (processp p)) (progn (delete-process p))) (setenv "TERM" tramp-terminal-type) (setenv "LC_ALL" (tramp-get-local-locale vec)) (if (stringp tramp-histfile-override) (setenv "HISTFILE" tramp-histfile-override) (if tramp-histfile-override (progn ... ... ...))) (setenv "PROMPT_COMMAND") (setenv "PS1" tramp-initial-end-of-output) (if (stringp tramp-encoding-shell) nil (tramp-error vec 'file-error "`tramp-encoding-shell' not set")) (let* ((current-host tramp-system-name) (target-alist ...) (previous-hop tramp-null-hop) (options ...) (process-connection-type tramp-process-connection-type) (process-adaptive-read-buffering nil) (process-coding-system-alist nil) (coding-system-for-read nil) (extra-args ...) (p ...)) (set-process-sentinel p #'tramp-process-sentinel) (tramp-post-process-creation p vec) (setq tramp-current-connection (cons vec ...)) (tramp-set-connection-local-variables vec) (tramp-barf-if-no-shell-prompt p 10 "Couldn't find local shell prompt for %s" tramp-encoding-shell) (while target-alist (let* ... ... ... ... ... ... ... ... ... ... ...)) (if (tramp-get-connection-property p "session-timeout") (progn ...)) (tramp-open-connection-setup-interactive-shell p vec) (tramp-set-connection-property p "connected" t)))) (tramp-message vec 3 "%s..." (if (tramp-string-empty-or-nil-p (let* (...) (progn ... ...))) (format "Opening connection %s for %s using %s" process-name (let* (...) (progn ... ...)) (let* (...) (progn ... ...))) (format "Opening connection %s for %s@%s using %s" process-name (let* (...) (progn ... ...)) (let* (...) (progn ... ...)) (let* (...) (progn ... ...))))) (let ((cookie "failed") (tm (let* (...) (if pr ... nil)))) (unwind-protect (prog1 (let (...) (catch ... ... ... ... ... ... ... ... ...)) (setq cookie "done")) (if tm (cancel-timer tm)) (tramp-message vec 3 "%s...%s" (if (tramp-string-empty-or-nil-p ...) (format "Opening connection %s for %s using %s" process-name ... ...) (format "Opening connection %s for %s@%s using %s" process-name ... ... ...)) cookie))))) ((error quit) (tramp-cleanup-connection vec t) (signal (car err) (cdr err))))
  (let ((p (tramp-get-connection-process vec)) (process-name (tramp-get-connection-property vec "process-name")) (process-environment (copy-sequence process-environment)) (pos (save-current-buffer (set-buffer (tramp-get-connection-buffer vec)) (point)))) (if (or (process-live-p p) (and (processp p) (not non-essential)) (not (tramp-file-name-equal-p vec (car tramp-current-connection))) (time-less-p (time-since (cdr tramp-current-connection)) (or tramp-connection-min-time-diff 0))) nil (throw 'suppress 'suppress)) (condition-case nil (if (and (time-less-p 60 (time-since (tramp-get-connection-property p "last-cmd-time" 0))) (process-live-p p)) (progn (tramp-send-command vec "echo are you awake" t t) (if (and (process-live-p p) (tramp-wait-for-output p 10)) nil (tramp-error vec 'file-error "Awake did fail")))) (file-error (tramp-cleanup-connection vec t) (setq p nil))) (condition-case err (if (process-live-p p) nil (if (or noninteractive inhibit-message) (progn (catch 'uname-changed (if (and p ...) (progn ...)) (setenv "TERM" tramp-terminal-type) (setenv "LC_ALL" (tramp-get-local-locale vec)) (if (stringp tramp-histfile-override) (setenv "HISTFILE" tramp-histfile-override) (if tramp-histfile-override ...)) (setenv "PROMPT_COMMAND") (setenv "PS1" tramp-initial-end-of-output) (if (stringp tramp-encoding-shell) nil (tramp-error vec ... "`tramp-encoding-shell' not set")) (let* (... ... ... ... ... ... ... ... ... ...) (set-process-sentinel p ...) (tramp-post-process-creation p vec) (setq tramp-current-connection ...) (tramp-set-connection-local-variables vec) (tramp-barf-if-no-shell-prompt p 10 "Couldn't find local shell prompt for %s" tramp-encoding-shell) (while target-alist ...) (if ... ...) (tramp-open-connection-setup-interactive-shell p vec) (tramp-set-connection-property p "connected" t)))) (tramp-message vec 3 "%s..." (if (tramp-string-empty-or-nil-p (let* ... ...)) (format "Opening connection %s for %s using %s" process-name (let* ... ...) (let* ... ...)) (format "Opening connection %s for %s@%s using %s" process-name (let* ... ...) (let* ... ...) (let* ... ...)))) (let ((cookie "failed") (tm (let* ... ...))) (unwind-protect (prog1 (let ... ...) (setq cookie "done")) (if tm (cancel-timer tm)) (tramp-message vec 3 "%s...%s" (if ... ... ...) cookie))))) ((error quit) (tramp-cleanup-connection vec t) (signal (car err) (cdr err)))))
  (if tramp-debug-command-messages (let ((saved-match-data (match-data))) (unwind-protect (progn (let ((tramp-debug-nesting (concat tramp-debug-nesting "#")) (buf (tramp-get-debug-buffer vec)) beg end result) (save-current-buffer (set-buffer buf) (setq beg (point)) (tramp-debug-message vec "(4) %s %s ..." tramp-debug-nesting "Opening connection") (setq end (point))) (unwind-protect (progn (setq tramp-debug-message-fnh-function nil) (setq result ...)) (save-current-buffer (set-buffer buf) (if ... ... ... ... ... ...))))) (set-match-data saved-match-data t))) (let ((p (tramp-get-connection-process vec)) (process-name (tramp-get-connection-property vec "process-name")) (process-environment (copy-sequence process-environment)) (pos (save-current-buffer (set-buffer (tramp-get-connection-buffer vec)) (point)))) (if (or (process-live-p p) (and (processp p) (not non-essential)) (not (tramp-file-name-equal-p vec (car tramp-current-connection))) (time-less-p (time-since (cdr tramp-current-connection)) (or tramp-connection-min-time-diff 0))) nil (throw 'suppress 'suppress)) (condition-case nil (if (and (time-less-p 60 (time-since (tramp-get-connection-property p "last-cmd-time" 0))) (process-live-p p)) (progn (tramp-send-command vec "echo are you awake" t t) (if (and (process-live-p p) (tramp-wait-for-output p 10)) nil (tramp-error vec 'file-error "Awake did fail")))) (file-error (tramp-cleanup-connection vec t) (setq p nil))) (condition-case err (if (process-live-p p) nil (if (or noninteractive inhibit-message) (progn (catch 'uname-changed (if ... ...) (setenv "TERM" tramp-terminal-type) (setenv "LC_ALL" ...) (if ... ... ...) (setenv "PROMPT_COMMAND") (setenv "PS1" tramp-initial-end-of-output) (if ... nil ...) (let* ... ... ... ... ... ... ... ... ... ...))) (tramp-message vec 3 "%s..." (if (tramp-string-empty-or-nil-p ...) (format "Opening connection %s for %s using %s" process-name ... ...) (format "Opening connection %s for %s@%s using %s" process-name ... ... ...))) (let ((cookie "failed") (tm ...)) (unwind-protect (prog1 ... ...) (if tm ...) (tramp-message vec 3 "%s...%s" ... cookie))))) ((error quit) (tramp-cleanup-connection vec t) (signal (car err) (cdr err))))))
  tramp-maybe-open-connection((tramp-file-name "kubernetes" nil nil "clair-app.si-registry-clair-app-7769c4ccfb-2jntz" nil "" nil))
  (if neveropen nil (tramp-maybe-open-connection vec))
  tramp-send-command((tramp-file-name "kubernetes" nil nil "clair-app.si-registry-clair-app-7769c4ccfb-2jntz" nil "" nil) "echo ~ 2>/dev/null; echo tramp_exit_status $?")
  (let (cmd data) (if (and (stringp command) (string-match (concat ".*<<'" (regexp-quote tramp-end-of-heredoc) "'.*") command)) (progn (setq cmd (match-string 0 command)) (setq data (substring command (match-end 0)))) (setq cmd command)) (tramp-send-command vec (concat (if subshell "( " "") cmd (if cmd (if dont-suppress-err "; " (format " 2>%s; " (tramp-get-remote-null-device vec))) "") "echo tramp_exit_status $?" (if subshell " )" "") data)))
  tramp-send-command-and-check((tramp-file-name "kubernetes" nil nil "clair-app.si-registry-clair-app-7769c4ccfb-2jntz" nil "" nil) "echo ~")
  (if (tramp-send-command-and-check vec (format "echo %s" (tramp-shell-quote-argument (concat "~" (or user (let* (...) (progn ... ...))))))) (progn (save-current-buffer (set-buffer (tramp-get-buffer vec)) (goto-char (point-min)) (buffer-substring (point) (line-end-position)))))
  tramp-sh-handle-get-home-directory((tramp-file-name "kubernetes" nil nil "clair-app.si-registry-clair-app-7769c4ccfb-2jntz" nil "" nil) "")
  apply(tramp-sh-handle-get-home-directory ((tramp-file-name "kubernetes" nil nil "clair-app.si-registry-clair-app-7769c4ccfb-2jntz" nil "" nil) ""))
  (progn (apply (cdr fn) args))
  (unwind-protect (progn (apply (cdr fn) args)) (set-match-data saved-match-data t))
  (let ((saved-match-data (match-data))) (unwind-protect (progn (apply (cdr fn) args)) (set-match-data saved-match-data t)))
  (prog1 (let ((saved-match-data (match-data))) (unwind-protect (progn (apply (cdr fn) args)) (set-match-data saved-match-data t))) (setq tramp-debug-message-fnh-function (cdr fn)))
  (if fn (prog1 (let ((saved-match-data (match-data))) (unwind-protect (progn (apply (cdr fn) args)) (set-match-data saved-match-data t))) (setq tramp-debug-message-fnh-function (cdr fn))) (prog1 (tramp-run-real-handler operation args) (setq tramp-debug-message-fnh-function operation)))
  (let* ((fn (and t (assoc operation tramp-sh-file-name-handler-alist)))) (if fn (prog1 (let ((saved-match-data (match-data))) (unwind-protect (progn (apply (cdr fn) args)) (set-match-data saved-match-data t))) (setq tramp-debug-message-fnh-function (cdr fn))) (prog1 (tramp-run-real-handler operation args) (setq tramp-debug-message-fnh-function operation))))
  tramp-sh-file-name-handler(tramp-get-home-directory (tramp-file-name "kubernetes" nil nil "clair-app.si-registry-clair-app-7769c4ccfb-2jntz" nil "" nil) "")
  apply(tramp-sh-file-name-handler tramp-get-home-directory ((tramp-file-name "kubernetes" nil nil "clair-app.si-registry-clair-app-7769c4ccfb-2jntz" nil "" nil) ""))
  (catch 'suppress (apply foreign operation args))
  (catch 'non-essential (catch 'suppress (apply foreign operation args)))
  (setq result (catch 'non-essential (catch 'suppress (apply foreign operation args))))
  (if tramp-debug-command-messages (let ((saved-match-data (match-data))) (unwind-protect (progn (let ((tramp-debug-nesting (concat tramp-debug-nesting "#")) (buf (tramp-get-debug-buffer v)) beg end result) (save-current-buffer (set-buffer buf) (setq beg (point)) (tramp-debug-message v "(4) %s %s ..." tramp-debug-nesting (format "Running `%S'" ...)) (setq end (point))) (unwind-protect (progn (setq tramp-debug-message-fnh-function nil) (setq result ...)) (save-current-buffer (set-buffer buf) (if ... ... ... ... ... ...))))) (set-match-data saved-match-data t))) (setq result (catch 'non-essential (catch 'suppress (apply foreign operation args)))))
  (let ((sf (symbol-function foreign))) (if (autoloadp sf) (progn (let ((default-directory tramp-compat-temporary-file-directory) file-name-handler-alist) (autoload-do-load sf foreign)))) (if tramp-debug-command-messages (let ((saved-match-data (match-data))) (unwind-protect (progn (let ((tramp-debug-nesting ...) (buf ...) beg end result) (save-current-buffer (set-buffer buf) (setq beg ...) (tramp-debug-message v "(4) %s %s ..." tramp-debug-nesting ...) (setq end ...)) (unwind-protect (progn ... ...) (save-current-buffer ... ...)))) (set-match-data saved-match-data t))) (setq result (catch 'non-essential (catch 'suppress (apply foreign operation args))))) (cond ((eq result 'non-essential) (tramp-message v 5 "Non-essential received in operation %s" (cons operation args)) (let ((tramp-verbose 10)) (tramp-backtrace v)) (tramp-run-real-handler operation args)) ((eq result 'suppress) (let ((inhibit-message t)) (tramp-message v 1 "Suppress received in operation %s" (cons operation args)) (tramp-cleanup-connection v t) (tramp-run-real-handler operation args))) (t result)))
  (if foreign (let ((sf (symbol-function foreign))) (if (autoloadp sf) (progn (let ((default-directory tramp-compat-temporary-file-directory) file-name-handler-alist) (autoload-do-load sf foreign)))) (if tramp-debug-command-messages (let ((saved-match-data (match-data))) (unwind-protect (progn (let (... ... beg end result) (save-current-buffer ... ... ... ...) (unwind-protect ... ...))) (set-match-data saved-match-data t))) (setq result (catch 'non-essential (catch 'suppress (apply foreign operation args))))) (cond ((eq result 'non-essential) (tramp-message v 5 "Non-essential received in operation %s" (cons operation args)) (let ((tramp-verbose 10)) (tramp-backtrace v)) (tramp-run-real-handler operation args)) ((eq result 'suppress) (let ((inhibit-message t)) (tramp-message v 1 "Suppress received in operation %s" (cons operation args)) (tramp-cleanup-connection v t) (tramp-run-real-handler operation args))) (t result))) (setq result (tramp-run-real-handler operation args)) (if (stringp result) (tramp-drop-volume-letter result) result))
  (unwind-protect (if foreign (let ((sf (symbol-function foreign))) (if (autoloadp sf) (progn (let ((default-directory tramp-compat-temporary-file-directory) file-name-handler-alist) (autoload-do-load sf foreign)))) (if tramp-debug-command-messages (let ((saved-match-data (match-data))) (unwind-protect (progn (let ... ... ...)) (set-match-data saved-match-data t))) (setq result (catch 'non-essential (catch 'suppress (apply foreign operation args))))) (cond ((eq result 'non-essential) (tramp-message v 5 "Non-essential received in operation %s" (cons operation args)) (let ((tramp-verbose 10)) (tramp-backtrace v)) (tramp-run-real-handler operation args)) ((eq result 'suppress) (let ((inhibit-message t)) (tramp-message v 1 "Suppress received in operation %s" (cons operation args)) (tramp-cleanup-connection v t) (tramp-run-real-handler operation args))) (t result))) (setq result (tramp-run-real-handler operation args)) (if (stringp result) (tramp-drop-volume-letter result) result)) (if (tramp-file-name-equal-p (car current-connection) (car tramp-current-connection)) nil (setq tramp-current-connection current-connection)))
  (let ((current-connection tramp-current-connection) (foreign (tramp-find-foreign-file-name-handler v operation)) (signal-hook-function #'tramp-signal-hook-function) result) (if (tramp-file-name-equal-p v (car tramp-current-connection)) nil (setq tramp-current-connection (list v))) (unwind-protect (if foreign (let ((sf (symbol-function foreign))) (if (autoloadp sf) (progn (let (... file-name-handler-alist) (autoload-do-load sf foreign)))) (if tramp-debug-command-messages (let ((saved-match-data ...)) (unwind-protect (progn ...) (set-match-data saved-match-data t))) (setq result (catch 'non-essential (catch ... ...)))) (cond ((eq result 'non-essential) (tramp-message v 5 "Non-essential received in operation %s" (cons operation args)) (let (...) (tramp-backtrace v)) (tramp-run-real-handler operation args)) ((eq result 'suppress) (let (...) (tramp-message v 1 "Suppress received in operation %s" ...) (tramp-cleanup-connection v t) (tramp-run-real-handler operation args))) (t result))) (setq result (tramp-run-real-handler operation args)) (if (stringp result) (tramp-drop-volume-letter result) result)) (if (tramp-file-name-equal-p (car current-connection) (car tramp-current-connection)) nil (setq tramp-current-connection current-connection))))
  (let* ((v (tramp-dissect-file-name filename)) (method (let* ((cl-x v)) (progn (or (let* (...) (progn ...)) (signal 'wrong-type-argument (list ... cl-x))) (nth 1 cl-x)))) (user (let* ((cl-x v)) (progn (or (let* (...) (progn ...)) (signal 'wrong-type-argument (list ... cl-x))) (nth 2 cl-x)))) (domain (let* ((cl-x v)) (progn (or (let* (...) (progn ...)) (signal 'wrong-type-argument (list ... cl-x))) (nth 3 cl-x)))) (host (let* ((cl-x v)) (progn (or (let* (...) (progn ...)) (signal 'wrong-type-argument (list ... cl-x))) (nth 4 cl-x)))) (port (let* ((cl-x v)) (progn (or (let* (...) (progn ...)) (signal 'wrong-type-argument (list ... cl-x))) (nth 5 cl-x)))) (localname (let* ((cl-x v)) (progn (or (let* (...) (progn ...)) (signal 'wrong-type-argument (list ... cl-x))) (nth 6 cl-x)))) (hop (let* ((cl-x v)) (progn (or (let* (...) (progn ...)) (signal 'wrong-type-argument (list ... cl-x))) (nth 7 cl-x))))) (ignore method user domain host port localname hop) (let ((current-connection tramp-current-connection) (foreign (tramp-find-foreign-file-name-handler v operation)) (signal-hook-function #'tramp-signal-hook-function) result) (if (tramp-file-name-equal-p v (car tramp-current-connection)) nil (setq tramp-current-connection (list v))) (unwind-protect (if foreign (let ((sf (symbol-function foreign))) (if (autoloadp sf) (progn (let ... ...))) (if tramp-debug-command-messages (let (...) (unwind-protect ... ...)) (setq result (catch ... ...))) (cond ((eq result ...) (tramp-message v 5 "Non-essential received in operation %s" ...) (let ... ...) (tramp-run-real-handler operation args)) ((eq result ...) (let ... ... ... ...)) (t result))) (setq result (tramp-run-real-handler operation args)) (if (stringp result) (tramp-drop-volume-letter result) result)) (if (tramp-file-name-equal-p (car current-connection) (car tramp-current-connection)) nil (setq tramp-current-connection current-connection)))))
  (progn (setq filename (tramp-replace-environment-variables filename)) (let* ((v (tramp-dissect-file-name filename)) (method (let* ((cl-x v)) (progn (or (let* ... ...) (signal ... ...)) (nth 1 cl-x)))) (user (let* ((cl-x v)) (progn (or (let* ... ...) (signal ... ...)) (nth 2 cl-x)))) (domain (let* ((cl-x v)) (progn (or (let* ... ...) (signal ... ...)) (nth 3 cl-x)))) (host (let* ((cl-x v)) (progn (or (let* ... ...) (signal ... ...)) (nth 4 cl-x)))) (port (let* ((cl-x v)) (progn (or (let* ... ...) (signal ... ...)) (nth 5 cl-x)))) (localname (let* ((cl-x v)) (progn (or (let* ... ...) (signal ... ...)) (nth 6 cl-x)))) (hop (let* ((cl-x v)) (progn (or (let* ... ...) (signal ... ...)) (nth 7 cl-x))))) (ignore method user domain host port localname hop) (let ((current-connection tramp-current-connection) (foreign (tramp-find-foreign-file-name-handler v operation)) (signal-hook-function #'tramp-signal-hook-function) result) (if (tramp-file-name-equal-p v (car tramp-current-connection)) nil (setq tramp-current-connection (list v))) (unwind-protect (if foreign (let ((sf ...)) (if (autoloadp sf) (progn ...)) (if tramp-debug-command-messages (let ... ...) (setq result ...)) (cond (... ... ... ...) (... ...) (t result))) (setq result (tramp-run-real-handler operation args)) (if (stringp result) (tramp-drop-volume-letter result) result)) (if (tramp-file-name-equal-p (car current-connection) (car tramp-current-connection)) nil (setq tramp-current-connection current-connection))))))
  (unwind-protect (progn (setq filename (tramp-replace-environment-variables filename)) (let* ((v (tramp-dissect-file-name filename)) (method (let* ((cl-x v)) (progn (or ... ...) (nth 1 cl-x)))) (user (let* ((cl-x v)) (progn (or ... ...) (nth 2 cl-x)))) (domain (let* ((cl-x v)) (progn (or ... ...) (nth 3 cl-x)))) (host (let* ((cl-x v)) (progn (or ... ...) (nth 4 cl-x)))) (port (let* ((cl-x v)) (progn (or ... ...) (nth 5 cl-x)))) (localname (let* ((cl-x v)) (progn (or ... ...) (nth 6 cl-x)))) (hop (let* ((cl-x v)) (progn (or ... ...) (nth 7 cl-x))))) (ignore method user domain host port localname hop) (let ((current-connection tramp-current-connection) (foreign (tramp-find-foreign-file-name-handler v operation)) (signal-hook-function #'tramp-signal-hook-function) result) (if (tramp-file-name-equal-p v (car tramp-current-connection)) nil (setq tramp-current-connection (list v))) (unwind-protect (if foreign (let (...) (if ... ...) (if tramp-debug-command-messages ... ...) (cond ... ... ...)) (setq result (tramp-run-real-handler operation args)) (if (stringp result) (tramp-drop-volume-letter result) result)) (if (tramp-file-name-equal-p (car current-connection) (car tramp-current-connection)) nil (setq tramp-current-connection current-connection)))))) (set-match-data saved-match-data t))
  (let ((saved-match-data (match-data))) (unwind-protect (progn (setq filename (tramp-replace-environment-variables filename)) (let* ((v (tramp-dissect-file-name filename)) (method (let* (...) (progn ... ...))) (user (let* (...) (progn ... ...))) (domain (let* (...) (progn ... ...))) (host (let* (...) (progn ... ...))) (port (let* (...) (progn ... ...))) (localname (let* (...) (progn ... ...))) (hop (let* (...) (progn ... ...)))) (ignore method user domain host port localname hop) (let ((current-connection tramp-current-connection) (foreign (tramp-find-foreign-file-name-handler v operation)) (signal-hook-function #'tramp-signal-hook-function) result) (if (tramp-file-name-equal-p v (car tramp-current-connection)) nil (setq tramp-current-connection (list v))) (unwind-protect (if foreign (let ... ... ... ...) (setq result ...) (if ... ... result)) (if (tramp-file-name-equal-p ... ...) nil (setq tramp-current-connection current-connection)))))) (set-match-data saved-match-data t)))
  (if (tramp-tramp-file-p filename) (let ((saved-match-data (match-data))) (unwind-protect (progn (setq filename (tramp-replace-environment-variables filename)) (let* ((v (tramp-dissect-file-name filename)) (method (let* ... ...)) (user (let* ... ...)) (domain (let* ... ...)) (host (let* ... ...)) (port (let* ... ...)) (localname (let* ... ...)) (hop (let* ... ...))) (ignore method user domain host port localname hop) (let ((current-connection tramp-current-connection) (foreign ...) (signal-hook-function ...) result) (if (tramp-file-name-equal-p v ...) nil (setq tramp-current-connection ...)) (unwind-protect (if foreign ... ... ...) (if ... nil ...))))) (set-match-data saved-match-data t))) (tramp-run-real-handler operation args))
  (let ((filename (apply #'tramp-file-name-for-operation operation args)) (non-essential (or non-essential (eq operation 'file-remote-p)))) (if (tramp-tramp-file-p filename) (let ((saved-match-data (match-data))) (unwind-protect (progn (setq filename (tramp-replace-environment-variables filename)) (let* ((v ...) (method ...) (user ...) (domain ...) (host ...) (port ...) (localname ...) (hop ...)) (ignore method user domain host port localname hop) (let (... ... ... result) (if ... nil ...) (unwind-protect ... ...)))) (set-match-data saved-match-data t))) (tramp-run-real-handler operation args)))
  tramp-file-name-handler(tramp-get-home-directory (tramp-file-name "kubernetes" nil nil "clair-app.si-registry-clair-app-7769c4ccfb-2jntz" nil "" nil) "")
  (progn (tramp-file-name-handler #'tramp-get-home-directory vec user))
  (setq value (progn (tramp-file-name-handler #'tramp-get-home-directory vec user)))
  (progn (setq value (progn (tramp-file-name-handler #'tramp-get-home-directory vec user))) (tramp-set-connection-property vec (concat "~" user) value))
  (if (eq value tramp-cache-undefined) (progn (setq value (progn (tramp-file-name-handler #'tramp-get-home-directory vec user))) (tramp-set-connection-property vec (concat "~" user) value)))
  (let ((value (tramp-get-connection-property vec (concat "~" user) tramp-cache-undefined))) (if (eq value tramp-cache-undefined) (progn (setq value (progn (tramp-file-name-handler #'tramp-get-home-directory vec user))) (tramp-set-connection-property vec (concat "~" user) value))) value)
  (and (let* ((cl-x vec)) (progn (and (memq (car-safe cl-x) cl-struct-tramp-file-name-tags) t))) (let ((value (tramp-get-connection-property vec (concat "~" user) tramp-cache-undefined))) (if (eq value tramp-cache-undefined) (progn (setq value (progn (tramp-file-name-handler #'tramp-get-home-directory vec user))) (tramp-set-connection-property vec (concat "~" user) value))) value))
  tramp-get-home-directory((tramp-file-name "kubernetes" nil nil "clair-app.si-registry-clair-app-7769c4ccfb-2jntz" nil "" nil) "")
  (setq hname (tramp-get-home-directory v uname))
  (if (setq hname (tramp-get-home-directory v uname)) (progn (setq localname (concat hname fname))))
  (let ((uname (match-string 1 localname)) (fname (match-string 2 localname)) hname) (if (and (tramp-string-empty-or-nil-p uname) (string-match-p "\\`\\(?:doas\\|ksu\\|su\\(?:do\\)?\\)\\'" method)) (progn (setq uname user))) (if (setq hname (tramp-get-home-directory v uname)) (progn (setq localname (concat hname fname)))))
  (progn (let ((uname (match-string 1 localname)) (fname (match-string 2 localname)) hname) (if (and (tramp-string-empty-or-nil-p uname) (string-match-p "\\`\\(?:doas\\|ksu\\|su\\(?:do\\)?\\)\\'" method)) (progn (setq uname user))) (if (setq hname (tramp-get-home-directory v uname)) (progn (setq localname (concat hname fname))))))
  (if (string-match "\\`~\\([^/]*\\)\\(.*\\)\\'" localname) (progn (let ((uname (match-string 1 localname)) (fname (match-string 2 localname)) hname) (if (and (tramp-string-empty-or-nil-p uname) (string-match-p "\\`\\(?:doas\\|ksu\\|su\\(?:do\\)?\\)\\'" method)) (progn (setq uname user))) (if (setq hname (tramp-get-home-directory v uname)) (progn (setq localname (concat hname fname)))))))
  (if (not (tramp-connectable-p v)) (tramp-drop-volume-letter (tramp-run-real-handler #'expand-file-name (list name))) (if (tramp-run-real-handler #'file-name-absolute-p (list localname)) nil (setq localname (concat "~/" localname))) (if (string-prefix-p "~" (file-name-unquote localname)) (progn (setq localname (file-name-unquote localname)))) (if (string-match "\\`~\\([^/]*\\)\\(.*\\)\\'" localname) (progn (let ((uname (match-string 1 localname)) (fname (match-string 2 localname)) hname) (if (and (tramp-string-empty-or-nil-p uname) (string-match-p "\\`\\(?:doas\\|ksu\\|su\\(?:do\\)?\\)\\'" method)) (progn (setq uname user))) (if (setq hname (tramp-get-home-directory v uname)) (progn (setq localname (concat hname fname))))))) (while (string-match "//" localname) (setq localname (replace-match "/" t t localname))) (if (string-match-p "\\`/\\.\\{1,2\\}\\'" localname) (progn (setq localname "/"))) (let ((default-directory tramp-compat-temporary-file-directory)) (tramp-make-tramp-file-name v (tramp-drop-volume-letter (if (string-prefix-p "~" localname) localname (tramp-run-real-handler #'expand-file-name (list localname)))))))
  (let* ((v (tramp-dissect-file-name name)) (method (let* ((cl-x v)) (progn (or (let* (...) (progn ...)) (signal 'wrong-type-argument (list ... cl-x))) (nth 1 cl-x)))) (user (let* ((cl-x v)) (progn (or (let* (...) (progn ...)) (signal 'wrong-type-argument (list ... cl-x))) (nth 2 cl-x)))) (domain (let* ((cl-x v)) (progn (or (let* (...) (progn ...)) (signal 'wrong-type-argument (list ... cl-x))) (nth 3 cl-x)))) (host (let* ((cl-x v)) (progn (or (let* (...) (progn ...)) (signal 'wrong-type-argument (list ... cl-x))) (nth 4 cl-x)))) (port (let* ((cl-x v)) (progn (or (let* (...) (progn ...)) (signal 'wrong-type-argument (list ... cl-x))) (nth 5 cl-x)))) (localname (let* ((cl-x v)) (progn (or (let* (...) (progn ...)) (signal 'wrong-type-argument (list ... cl-x))) (nth 6 cl-x)))) (hop (let* ((cl-x v)) (progn (or (let* (...) (progn ...)) (signal 'wrong-type-argument (list ... cl-x))) (nth 7 cl-x))))) (ignore method user domain host port localname hop) (if (not (tramp-connectable-p v)) (tramp-drop-volume-letter (tramp-run-real-handler #'expand-file-name (list name))) (if (tramp-run-real-handler #'file-name-absolute-p (list localname)) nil (setq localname (concat "~/" localname))) (if (string-prefix-p "~" (file-name-unquote localname)) (progn (setq localname (file-name-unquote localname)))) (if (string-match "\\`~\\([^/]*\\)\\(.*\\)\\'" localname) (progn (let ((uname (match-string 1 localname)) (fname (match-string 2 localname)) hname) (if (and (tramp-string-empty-or-nil-p uname) (string-match-p "\\`\\(?:doas\\|ksu\\|su\\(?:do\\)?\\)\\'" method)) (progn (setq uname user))) (if (setq hname (tramp-get-home-directory v uname)) (progn (setq localname ...)))))) (while (string-match "//" localname) (setq localname (replace-match "/" t t localname))) (if (string-match-p "\\`/\\.\\{1,2\\}\\'" localname) (progn (setq localname "/"))) (let ((default-directory tramp-compat-temporary-file-directory)) (tramp-make-tramp-file-name v (tramp-drop-volume-letter (if (string-prefix-p "~" localname) localname (tramp-run-real-handler #'expand-file-name (list localname))))))))
  (if (or (and (eq system-type 'windows-nt) (string-match-p (concat "^\\(?:[[:alpha:]]:\\|" (regexp-quote (or null-device "")) "$\\)") name)) (and (not (tramp-tramp-file-p name)) (not (tramp-tramp-file-p dir)))) (tramp-run-real-handler #'expand-file-name (list name dir)) (if (file-name-absolute-p name) nil (setq name (tramp-compat-file-name-concat dir name))) (let* ((v (tramp-dissect-file-name name)) (method (let* ((cl-x v)) (progn (or (let* ... ...) (signal ... ...)) (nth 1 cl-x)))) (user (let* ((cl-x v)) (progn (or (let* ... ...) (signal ... ...)) (nth 2 cl-x)))) (domain (let* ((cl-x v)) (progn (or (let* ... ...) (signal ... ...)) (nth 3 cl-x)))) (host (let* ((cl-x v)) (progn (or (let* ... ...) (signal ... ...)) (nth 4 cl-x)))) (port (let* ((cl-x v)) (progn (or (let* ... ...) (signal ... ...)) (nth 5 cl-x)))) (localname (let* ((cl-x v)) (progn (or (let* ... ...) (signal ... ...)) (nth 6 cl-x)))) (hop (let* ((cl-x v)) (progn (or (let* ... ...) (signal ... ...)) (nth 7 cl-x))))) (ignore method user domain host port localname hop) (if (not (tramp-connectable-p v)) (tramp-drop-volume-letter (tramp-run-real-handler #'expand-file-name (list name))) (if (tramp-run-real-handler #'file-name-absolute-p (list localname)) nil (setq localname (concat "~/" localname))) (if (string-prefix-p "~" (file-name-unquote localname)) (progn (setq localname (file-name-unquote localname)))) (if (string-match "\\`~\\([^/]*\\)\\(.*\\)\\'" localname) (progn (let ((uname ...) (fname ...) hname) (if (and ... ...) (progn ...)) (if (setq hname ...) (progn ...))))) (while (string-match "//" localname) (setq localname (replace-match "/" t t localname))) (if (string-match-p "\\`/\\.\\{1,2\\}\\'" localname) (progn (setq localname "/"))) (let ((default-directory tramp-compat-temporary-file-directory)) (tramp-make-tramp-file-name v (tramp-drop-volume-letter (if (string-prefix-p "~" localname) localname (tramp-run-real-handler ... ...))))))))
  tramp-sh-handle-expand-file-name("/kubernetes:clair-app.si-registry-clair-app-7769c4..." nil)
  apply(tramp-sh-handle-expand-file-name ("/kubernetes:clair-app.si-registry-clair-app-7769c4..." nil))
  (progn (apply (cdr fn) args))
  (unwind-protect (progn (apply (cdr fn) args)) (set-match-data saved-match-data t))
  (let ((saved-match-data (match-data))) (unwind-protect (progn (apply (cdr fn) args)) (set-match-data saved-match-data t)))
  (prog1 (let ((saved-match-data (match-data))) (unwind-protect (progn (apply (cdr fn) args)) (set-match-data saved-match-data t))) (setq tramp-debug-message-fnh-function (cdr fn)))
  (if fn (prog1 (let ((saved-match-data (match-data))) (unwind-protect (progn (apply (cdr fn) args)) (set-match-data saved-match-data t))) (setq tramp-debug-message-fnh-function (cdr fn))) (prog1 (tramp-run-real-handler operation args) (setq tramp-debug-message-fnh-function operation)))
  (let* ((fn (and t (assoc operation tramp-sh-file-name-handler-alist)))) (if fn (prog1 (let ((saved-match-data (match-data))) (unwind-protect (progn (apply (cdr fn) args)) (set-match-data saved-match-data t))) (setq tramp-debug-message-fnh-function (cdr fn))) (prog1 (tramp-run-real-handler operation args) (setq tramp-debug-message-fnh-function operation))))
  tramp-sh-file-name-handler(expand-file-name "/kubernetes:clair-app.si-registry-clair-app-7769c4..." nil)
  apply(tramp-sh-file-name-handler expand-file-name ("/kubernetes:clair-app.si-registry-clair-app-7769c4..." nil))
  (catch 'suppress (apply foreign operation args))
  (catch 'non-essential (catch 'suppress (apply foreign operation args)))
  (setq result (catch 'non-essential (catch 'suppress (apply foreign operation args))))
  (if tramp-debug-command-messages (let ((saved-match-data (match-data))) (unwind-protect (progn (let ((tramp-debug-nesting (concat tramp-debug-nesting "#")) (buf (tramp-get-debug-buffer v)) beg end result) (save-current-buffer (set-buffer buf) (setq beg (point)) (tramp-debug-message v "(4) %s %s ..." tramp-debug-nesting (format "Running `%S'" ...)) (setq end (point))) (unwind-protect (progn (setq tramp-debug-message-fnh-function nil) (setq result ...)) (save-current-buffer (set-buffer buf) (if ... ... ... ... ... ...))))) (set-match-data saved-match-data t))) (setq result (catch 'non-essential (catch 'suppress (apply foreign operation args)))))
  (let ((sf (symbol-function foreign))) (if (autoloadp sf) (progn (let ((default-directory tramp-compat-temporary-file-directory) file-name-handler-alist) (autoload-do-load sf foreign)))) (if tramp-debug-command-messages (let ((saved-match-data (match-data))) (unwind-protect (progn (let ((tramp-debug-nesting ...) (buf ...) beg end result) (save-current-buffer (set-buffer buf) (setq beg ...) (tramp-debug-message v "(4) %s %s ..." tramp-debug-nesting ...) (setq end ...)) (unwind-protect (progn ... ...) (save-current-buffer ... ...)))) (set-match-data saved-match-data t))) (setq result (catch 'non-essential (catch 'suppress (apply foreign operation args))))) (cond ((eq result 'non-essential) (tramp-message v 5 "Non-essential received in operation %s" (cons operation args)) (let ((tramp-verbose 10)) (tramp-backtrace v)) (tramp-run-real-handler operation args)) ((eq result 'suppress) (let ((inhibit-message t)) (tramp-message v 1 "Suppress received in operation %s" (cons operation args)) (tramp-cleanup-connection v t) (tramp-run-real-handler operation args))) (t result)))
  (if foreign (let ((sf (symbol-function foreign))) (if (autoloadp sf) (progn (let ((default-directory tramp-compat-temporary-file-directory) file-name-handler-alist) (autoload-do-load sf foreign)))) (if tramp-debug-command-messages (let ((saved-match-data (match-data))) (unwind-protect (progn (let (... ... beg end result) (save-current-buffer ... ... ... ...) (unwind-protect ... ...))) (set-match-data saved-match-data t))) (setq result (catch 'non-essential (catch 'suppress (apply foreign operation args))))) (cond ((eq result 'non-essential) (tramp-message v 5 "Non-essential received in operation %s" (cons operation args)) (let ((tramp-verbose 10)) (tramp-backtrace v)) (tramp-run-real-handler operation args)) ((eq result 'suppress) (let ((inhibit-message t)) (tramp-message v 1 "Suppress received in operation %s" (cons operation args)) (tramp-cleanup-connection v t) (tramp-run-real-handler operation args))) (t result))) (setq result (tramp-run-real-handler operation args)) (if (stringp result) (tramp-drop-volume-letter result) result))
  (unwind-protect (if foreign (let ((sf (symbol-function foreign))) (if (autoloadp sf) (progn (let ((default-directory tramp-compat-temporary-file-directory) file-name-handler-alist) (autoload-do-load sf foreign)))) (if tramp-debug-command-messages (let ((saved-match-data (match-data))) (unwind-protect (progn (let ... ... ...)) (set-match-data saved-match-data t))) (setq result (catch 'non-essential (catch 'suppress (apply foreign operation args))))) (cond ((eq result 'non-essential) (tramp-message v 5 "Non-essential received in operation %s" (cons operation args)) (let ((tramp-verbose 10)) (tramp-backtrace v)) (tramp-run-real-handler operation args)) ((eq result 'suppress) (let ((inhibit-message t)) (tramp-message v 1 "Suppress received in operation %s" (cons operation args)) (tramp-cleanup-connection v t) (tramp-run-real-handler operation args))) (t result))) (setq result (tramp-run-real-handler operation args)) (if (stringp result) (tramp-drop-volume-letter result) result)) (if (tramp-file-name-equal-p (car current-connection) (car tramp-current-connection)) nil (setq tramp-current-connection current-connection)))
  (let ((current-connection tramp-current-connection) (foreign (tramp-find-foreign-file-name-handler v operation)) (signal-hook-function #'tramp-signal-hook-function) result) (if (tramp-file-name-equal-p v (car tramp-current-connection)) nil (setq tramp-current-connection (list v))) (unwind-protect (if foreign (let ((sf (symbol-function foreign))) (if (autoloadp sf) (progn (let (... file-name-handler-alist) (autoload-do-load sf foreign)))) (if tramp-debug-command-messages (let ((saved-match-data ...)) (unwind-protect (progn ...) (set-match-data saved-match-data t))) (setq result (catch 'non-essential (catch ... ...)))) (cond ((eq result 'non-essential) (tramp-message v 5 "Non-essential received in operation %s" (cons operation args)) (let (...) (tramp-backtrace v)) (tramp-run-real-handler operation args)) ((eq result 'suppress) (let (...) (tramp-message v 1 "Suppress received in operation %s" ...) (tramp-cleanup-connection v t) (tramp-run-real-handler operation args))) (t result))) (setq result (tramp-run-real-handler operation args)) (if (stringp result) (tramp-drop-volume-letter result) result)) (if (tramp-file-name-equal-p (car current-connection) (car tramp-current-connection)) nil (setq tramp-current-connection current-connection))))
  (let* ((v (tramp-dissect-file-name filename)) (method (let* ((cl-x v)) (progn (or (let* (...) (progn ...)) (signal 'wrong-type-argument (list ... cl-x))) (nth 1 cl-x)))) (user (let* ((cl-x v)) (progn (or (let* (...) (progn ...)) (signal 'wrong-type-argument (list ... cl-x))) (nth 2 cl-x)))) (domain (let* ((cl-x v)) (progn (or (let* (...) (progn ...)) (signal 'wrong-type-argument (list ... cl-x))) (nth 3 cl-x)))) (host (let* ((cl-x v)) (progn (or (let* (...) (progn ...)) (signal 'wrong-type-argument (list ... cl-x))) (nth 4 cl-x)))) (port (let* ((cl-x v)) (progn (or (let* (...) (progn ...)) (signal 'wrong-type-argument (list ... cl-x))) (nth 5 cl-x)))) (localname (let* ((cl-x v)) (progn (or (let* (...) (progn ...)) (signal 'wrong-type-argument (list ... cl-x))) (nth 6 cl-x)))) (hop (let* ((cl-x v)) (progn (or (let* (...) (progn ...)) (signal 'wrong-type-argument (list ... cl-x))) (nth 7 cl-x))))) (ignore method user domain host port localname hop) (let ((current-connection tramp-current-connection) (foreign (tramp-find-foreign-file-name-handler v operation)) (signal-hook-function #'tramp-signal-hook-function) result) (if (tramp-file-name-equal-p v (car tramp-current-connection)) nil (setq tramp-current-connection (list v))) (unwind-protect (if foreign (let ((sf (symbol-function foreign))) (if (autoloadp sf) (progn (let ... ...))) (if tramp-debug-command-messages (let (...) (unwind-protect ... ...)) (setq result (catch ... ...))) (cond ((eq result ...) (tramp-message v 5 "Non-essential received in operation %s" ...) (let ... ...) (tramp-run-real-handler operation args)) ((eq result ...) (let ... ... ... ...)) (t result))) (setq result (tramp-run-real-handler operation args)) (if (stringp result) (tramp-drop-volume-letter result) result)) (if (tramp-file-name-equal-p (car current-connection) (car tramp-current-connection)) nil (setq tramp-current-connection current-connection)))))
  (progn (setq filename (tramp-replace-environment-variables filename)) (let* ((v (tramp-dissect-file-name filename)) (method (let* ((cl-x v)) (progn (or (let* ... ...) (signal ... ...)) (nth 1 cl-x)))) (user (let* ((cl-x v)) (progn (or (let* ... ...) (signal ... ...)) (nth 2 cl-x)))) (domain (let* ((cl-x v)) (progn (or (let* ... ...) (signal ... ...)) (nth 3 cl-x)))) (host (let* ((cl-x v)) (progn (or (let* ... ...) (signal ... ...)) (nth 4 cl-x)))) (port (let* ((cl-x v)) (progn (or (let* ... ...) (signal ... ...)) (nth 5 cl-x)))) (localname (let* ((cl-x v)) (progn (or (let* ... ...) (signal ... ...)) (nth 6 cl-x)))) (hop (let* ((cl-x v)) (progn (or (let* ... ...) (signal ... ...)) (nth 7 cl-x))))) (ignore method user domain host port localname hop) (let ((current-connection tramp-current-connection) (foreign (tramp-find-foreign-file-name-handler v operation)) (signal-hook-function #'tramp-signal-hook-function) result) (if (tramp-file-name-equal-p v (car tramp-current-connection)) nil (setq tramp-current-connection (list v))) (unwind-protect (if foreign (let ((sf ...)) (if (autoloadp sf) (progn ...)) (if tramp-debug-command-messages (let ... ...) (setq result ...)) (cond (... ... ... ...) (... ...) (t result))) (setq result (tramp-run-real-handler operation args)) (if (stringp result) (tramp-drop-volume-letter result) result)) (if (tramp-file-name-equal-p (car current-connection) (car tramp-current-connection)) nil (setq tramp-current-connection current-connection))))))
  (unwind-protect (progn (setq filename (tramp-replace-environment-variables filename)) (let* ((v (tramp-dissect-file-name filename)) (method (let* ((cl-x v)) (progn (or ... ...) (nth 1 cl-x)))) (user (let* ((cl-x v)) (progn (or ... ...) (nth 2 cl-x)))) (domain (let* ((cl-x v)) (progn (or ... ...) (nth 3 cl-x)))) (host (let* ((cl-x v)) (progn (or ... ...) (nth 4 cl-x)))) (port (let* ((cl-x v)) (progn (or ... ...) (nth 5 cl-x)))) (localname (let* ((cl-x v)) (progn (or ... ...) (nth 6 cl-x)))) (hop (let* ((cl-x v)) (progn (or ... ...) (nth 7 cl-x))))) (ignore method user domain host port localname hop) (let ((current-connection tramp-current-connection) (foreign (tramp-find-foreign-file-name-handler v operation)) (signal-hook-function #'tramp-signal-hook-function) result) (if (tramp-file-name-equal-p v (car tramp-current-connection)) nil (setq tramp-current-connection (list v))) (unwind-protect (if foreign (let (...) (if ... ...) (if tramp-debug-command-messages ... ...) (cond ... ... ...)) (setq result (tramp-run-real-handler operation args)) (if (stringp result) (tramp-drop-volume-letter result) result)) (if (tramp-file-name-equal-p (car current-connection) (car tramp-current-connection)) nil (setq tramp-current-connection current-connection)))))) (set-match-data saved-match-data t))
  (let ((saved-match-data (match-data))) (unwind-protect (progn (setq filename (tramp-replace-environment-variables filename)) (let* ((v (tramp-dissect-file-name filename)) (method (let* (...) (progn ... ...))) (user (let* (...) (progn ... ...))) (domain (let* (...) (progn ... ...))) (host (let* (...) (progn ... ...))) (port (let* (...) (progn ... ...))) (localname (let* (...) (progn ... ...))) (hop (let* (...) (progn ... ...)))) (ignore method user domain host port localname hop) (let ((current-connection tramp-current-connection) (foreign (tramp-find-foreign-file-name-handler v operation)) (signal-hook-function #'tramp-signal-hook-function) result) (if (tramp-file-name-equal-p v (car tramp-current-connection)) nil (setq tramp-current-connection (list v))) (unwind-protect (if foreign (let ... ... ... ...) (setq result ...) (if ... ... result)) (if (tramp-file-name-equal-p ... ...) nil (setq tramp-current-connection current-connection)))))) (set-match-data saved-match-data t)))
  (if (tramp-tramp-file-p filename) (let ((saved-match-data (match-data))) (unwind-protect (progn (setq filename (tramp-replace-environment-variables filename)) (let* ((v (tramp-dissect-file-name filename)) (method (let* ... ...)) (user (let* ... ...)) (domain (let* ... ...)) (host (let* ... ...)) (port (let* ... ...)) (localname (let* ... ...)) (hop (let* ... ...))) (ignore method user domain host port localname hop) (let ((current-connection tramp-current-connection) (foreign ...) (signal-hook-function ...) result) (if (tramp-file-name-equal-p v ...) nil (setq tramp-current-connection ...)) (unwind-protect (if foreign ... ... ...) (if ... nil ...))))) (set-match-data saved-match-data t))) (tramp-run-real-handler operation args))
  (let ((filename (apply #'tramp-file-name-for-operation operation args)) (non-essential (or non-essential (eq operation 'file-remote-p)))) (if (tramp-tramp-file-p filename) (let ((saved-match-data (match-data))) (unwind-protect (progn (setq filename (tramp-replace-environment-variables filename)) (let* ((v ...) (method ...) (user ...) (domain ...) (host ...) (port ...) (localname ...) (hop ...)) (ignore method user domain host port localname hop) (let (... ... ... result) (if ... nil ...) (unwind-protect ... ...)))) (set-match-data saved-match-data t))) (tramp-run-real-handler operation args)))
  tramp-file-name-handler(expand-file-name "/kubernetes:clair-app.si-registry-clair-app-7769c4..." nil)
  file-name-case-insensitive-p("/kubernetes:clair-app.si-registry-clair-app-7769c4...")
  (let* ((case-fold-search (file-name-case-insensitive-p filename)) (vec (tramp-dissect-file-name filename)) (tramp-tolerate-tilde t) (home-dir (if (let ((non-essential t)) (tramp-connectable-p vec)) (tramp-get-home-directory vec) (tramp-get-connection-property vec "~")))) (if home-dir (progn (setq home-dir (if (functionp 'directory-abbrev-apply) (progn (with-no-warnings (funcall ... ...))))))) (setq filename (if (functionp 'directory-abbrev-apply) (progn (with-no-warnings (funcall 'directory-abbrev-apply filename))))) (if (and home-dir (string-match (if (functionp 'directory-abbrev-make-regexp) (progn (with-no-warnings (funcall ... home-dir)))) filename)) (tramp-make-tramp-file-name vec (concat "~" (substring filename (match-beginning 1)))) (tramp-make-tramp-file-name (tramp-dissect-file-name filename))))
  tramp-handle-abbreviate-file-name("/kubernetes:clair-app.si-registry-clair-app-7769c4...")
  apply(tramp-handle-abbreviate-file-name "/kubernetes:clair-app.si-registry-clair-app-7769c4...")
  (progn (apply (cdr fn) args))
  (unwind-protect (progn (apply (cdr fn) args)) (set-match-data saved-match-data t))
  (let ((saved-match-data (match-data))) (unwind-protect (progn (apply (cdr fn) args)) (set-match-data saved-match-data t)))
  (prog1 (let ((saved-match-data (match-data))) (unwind-protect (progn (apply (cdr fn) args)) (set-match-data saved-match-data t))) (setq tramp-debug-message-fnh-function (cdr fn)))
  (if fn (prog1 (let ((saved-match-data (match-data))) (unwind-protect (progn (apply (cdr fn) args)) (set-match-data saved-match-data t))) (setq tramp-debug-message-fnh-function (cdr fn))) (prog1 (tramp-run-real-handler operation args) (setq tramp-debug-message-fnh-function operation)))
  (let* ((fn (and t (assoc operation tramp-sh-file-name-handler-alist)))) (if fn (prog1 (let ((saved-match-data (match-data))) (unwind-protect (progn (apply (cdr fn) args)) (set-match-data saved-match-data t))) (setq tramp-debug-message-fnh-function (cdr fn))) (prog1 (tramp-run-real-handler operation args) (setq tramp-debug-message-fnh-function operation))))
  tramp-sh-file-name-handler(abbreviate-file-name "/kubernetes:clair-app.si-registry-clair-app-7769c4...")
  apply(tramp-sh-file-name-handler abbreviate-file-name "/kubernetes:clair-app.si-registry-clair-app-7769c4...")
  (catch 'suppress (apply foreign operation args))
  (catch 'non-essential (catch 'suppress (apply foreign operation args)))
  (setq result (catch 'non-essential (catch 'suppress (apply foreign operation args))))
  (if tramp-debug-command-messages (let ((saved-match-data (match-data))) (unwind-protect (progn (let ((tramp-debug-nesting (concat tramp-debug-nesting "#")) (buf (tramp-get-debug-buffer v)) beg end result) (save-current-buffer (set-buffer buf) (setq beg (point)) (tramp-debug-message v "(4) %s %s ..." tramp-debug-nesting (format "Running `%S'" ...)) (setq end (point))) (unwind-protect (progn (setq tramp-debug-message-fnh-function nil) (setq result ...)) (save-current-buffer (set-buffer buf) (if ... ... ... ... ... ...))))) (set-match-data saved-match-data t))) (setq result (catch 'non-essential (catch 'suppress (apply foreign operation args)))))
  (let ((sf (symbol-function foreign))) (if (autoloadp sf) (progn (let ((default-directory tramp-compat-temporary-file-directory) file-name-handler-alist) (autoload-do-load sf foreign)))) (if tramp-debug-command-messages (let ((saved-match-data (match-data))) (unwind-protect (progn (let ((tramp-debug-nesting ...) (buf ...) beg end result) (save-current-buffer (set-buffer buf) (setq beg ...) (tramp-debug-message v "(4) %s %s ..." tramp-debug-nesting ...) (setq end ...)) (unwind-protect (progn ... ...) (save-current-buffer ... ...)))) (set-match-data saved-match-data t))) (setq result (catch 'non-essential (catch 'suppress (apply foreign operation args))))) (cond ((eq result 'non-essential) (tramp-message v 5 "Non-essential received in operation %s" (cons operation args)) (let ((tramp-verbose 10)) (tramp-backtrace v)) (tramp-run-real-handler operation args)) ((eq result 'suppress) (let ((inhibit-message t)) (tramp-message v 1 "Suppress received in operation %s" (cons operation args)) (tramp-cleanup-connection v t) (tramp-run-real-handler operation args))) (t result)))
  (if foreign (let ((sf (symbol-function foreign))) (if (autoloadp sf) (progn (let ((default-directory tramp-compat-temporary-file-directory) file-name-handler-alist) (autoload-do-load sf foreign)))) (if tramp-debug-command-messages (let ((saved-match-data (match-data))) (unwind-protect (progn (let (... ... beg end result) (save-current-buffer ... ... ... ...) (unwind-protect ... ...))) (set-match-data saved-match-data t))) (setq result (catch 'non-essential (catch 'suppress (apply foreign operation args))))) (cond ((eq result 'non-essential) (tramp-message v 5 "Non-essential received in operation %s" (cons operation args)) (let ((tramp-verbose 10)) (tramp-backtrace v)) (tramp-run-real-handler operation args)) ((eq result 'suppress) (let ((inhibit-message t)) (tramp-message v 1 "Suppress received in operation %s" (cons operation args)) (tramp-cleanup-connection v t) (tramp-run-real-handler operation args))) (t result))) (setq result (tramp-run-real-handler operation args)) (if (stringp result) (tramp-drop-volume-letter result) result))
  (unwind-protect (if foreign (let ((sf (symbol-function foreign))) (if (autoloadp sf) (progn (let ((default-directory tramp-compat-temporary-file-directory) file-name-handler-alist) (autoload-do-load sf foreign)))) (if tramp-debug-command-messages (let ((saved-match-data (match-data))) (unwind-protect (progn (let ... ... ...)) (set-match-data saved-match-data t))) (setq result (catch 'non-essential (catch 'suppress (apply foreign operation args))))) (cond ((eq result 'non-essential) (tramp-message v 5 "Non-essential received in operation %s" (cons operation args)) (let ((tramp-verbose 10)) (tramp-backtrace v)) (tramp-run-real-handler operation args)) ((eq result 'suppress) (let ((inhibit-message t)) (tramp-message v 1 "Suppress received in operation %s" (cons operation args)) (tramp-cleanup-connection v t) (tramp-run-real-handler operation args))) (t result))) (setq result (tramp-run-real-handler operation args)) (if (stringp result) (tramp-drop-volume-letter result) result)) (if (tramp-file-name-equal-p (car current-connection) (car tramp-current-connection)) nil (setq tramp-current-connection current-connection)))
  (let ((current-connection tramp-current-connection) (foreign (tramp-find-foreign-file-name-handler v operation)) (signal-hook-function #'tramp-signal-hook-function) result) (if (tramp-file-name-equal-p v (car tramp-current-connection)) nil (setq tramp-current-connection (list v))) (unwind-protect (if foreign (let ((sf (symbol-function foreign))) (if (autoloadp sf) (progn (let (... file-name-handler-alist) (autoload-do-load sf foreign)))) (if tramp-debug-command-messages (let ((saved-match-data ...)) (unwind-protect (progn ...) (set-match-data saved-match-data t))) (setq result (catch 'non-essential (catch ... ...)))) (cond ((eq result 'non-essential) (tramp-message v 5 "Non-essential received in operation %s" (cons operation args)) (let (...) (tramp-backtrace v)) (tramp-run-real-handler operation args)) ((eq result 'suppress) (let (...) (tramp-message v 1 "Suppress received in operation %s" ...) (tramp-cleanup-connection v t) (tramp-run-real-handler operation args))) (t result))) (setq result (tramp-run-real-handler operation args)) (if (stringp result) (tramp-drop-volume-letter result) result)) (if (tramp-file-name-equal-p (car current-connection) (car tramp-current-connection)) nil (setq tramp-current-connection current-connection))))
  (let* ((v (tramp-dissect-file-name filename)) (method (let* ((cl-x v)) (progn (or (let* (...) (progn ...)) (signal 'wrong-type-argument (list ... cl-x))) (nth 1 cl-x)))) (user (let* ((cl-x v)) (progn (or (let* (...) (progn ...)) (signal 'wrong-type-argument (list ... cl-x))) (nth 2 cl-x)))) (domain (let* ((cl-x v)) (progn (or (let* (...) (progn ...)) (signal 'wrong-type-argument (list ... cl-x))) (nth 3 cl-x)))) (host (let* ((cl-x v)) (progn (or (let* (...) (progn ...)) (signal 'wrong-type-argument (list ... cl-x))) (nth 4 cl-x)))) (port (let* ((cl-x v)) (progn (or (let* (...) (progn ...)) (signal 'wrong-type-argument (list ... cl-x))) (nth 5 cl-x)))) (localname (let* ((cl-x v)) (progn (or (let* (...) (progn ...)) (signal 'wrong-type-argument (list ... cl-x))) (nth 6 cl-x)))) (hop (let* ((cl-x v)) (progn (or (let* (...) (progn ...)) (signal 'wrong-type-argument (list ... cl-x))) (nth 7 cl-x))))) (ignore method user domain host port localname hop) (let ((current-connection tramp-current-connection) (foreign (tramp-find-foreign-file-name-handler v operation)) (signal-hook-function #'tramp-signal-hook-function) result) (if (tramp-file-name-equal-p v (car tramp-current-connection)) nil (setq tramp-current-connection (list v))) (unwind-protect (if foreign (let ((sf (symbol-function foreign))) (if (autoloadp sf) (progn (let ... ...))) (if tramp-debug-command-messages (let (...) (unwind-protect ... ...)) (setq result (catch ... ...))) (cond ((eq result ...) (tramp-message v 5 "Non-essential received in operation %s" ...) (let ... ...) (tramp-run-real-handler operation args)) ((eq result ...) (let ... ... ... ...)) (t result))) (setq result (tramp-run-real-handler operation args)) (if (stringp result) (tramp-drop-volume-letter result) result)) (if (tramp-file-name-equal-p (car current-connection) (car tramp-current-connection)) nil (setq tramp-current-connection current-connection)))))
  (progn (setq filename (tramp-replace-environment-variables filename)) (let* ((v (tramp-dissect-file-name filename)) (method (let* ((cl-x v)) (progn (or (let* ... ...) (signal ... ...)) (nth 1 cl-x)))) (user (let* ((cl-x v)) (progn (or (let* ... ...) (signal ... ...)) (nth 2 cl-x)))) (domain (let* ((cl-x v)) (progn (or (let* ... ...) (signal ... ...)) (nth 3 cl-x)))) (host (let* ((cl-x v)) (progn (or (let* ... ...) (signal ... ...)) (nth 4 cl-x)))) (port (let* ((cl-x v)) (progn (or (let* ... ...) (signal ... ...)) (nth 5 cl-x)))) (localname (let* ((cl-x v)) (progn (or (let* ... ...) (signal ... ...)) (nth 6 cl-x)))) (hop (let* ((cl-x v)) (progn (or (let* ... ...) (signal ... ...)) (nth 7 cl-x))))) (ignore method user domain host port localname hop) (let ((current-connection tramp-current-connection) (foreign (tramp-find-foreign-file-name-handler v operation)) (signal-hook-function #'tramp-signal-hook-function) result) (if (tramp-file-name-equal-p v (car tramp-current-connection)) nil (setq tramp-current-connection (list v))) (unwind-protect (if foreign (let ((sf ...)) (if (autoloadp sf) (progn ...)) (if tramp-debug-command-messages (let ... ...) (setq result ...)) (cond (... ... ... ...) (... ...) (t result))) (setq result (tramp-run-real-handler operation args)) (if (stringp result) (tramp-drop-volume-letter result) result)) (if (tramp-file-name-equal-p (car current-connection) (car tramp-current-connection)) nil (setq tramp-current-connection current-connection))))))
  (unwind-protect (progn (setq filename (tramp-replace-environment-variables filename)) (let* ((v (tramp-dissect-file-name filename)) (method (let* ((cl-x v)) (progn (or ... ...) (nth 1 cl-x)))) (user (let* ((cl-x v)) (progn (or ... ...) (nth 2 cl-x)))) (domain (let* ((cl-x v)) (progn (or ... ...) (nth 3 cl-x)))) (host (let* ((cl-x v)) (progn (or ... ...) (nth 4 cl-x)))) (port (let* ((cl-x v)) (progn (or ... ...) (nth 5 cl-x)))) (localname (let* ((cl-x v)) (progn (or ... ...) (nth 6 cl-x)))) (hop (let* ((cl-x v)) (progn (or ... ...) (nth 7 cl-x))))) (ignore method user domain host port localname hop) (let ((current-connection tramp-current-connection) (foreign (tramp-find-foreign-file-name-handler v operation)) (signal-hook-function #'tramp-signal-hook-function) result) (if (tramp-file-name-equal-p v (car tramp-current-connection)) nil (setq tramp-current-connection (list v))) (unwind-protect (if foreign (let (...) (if ... ...) (if tramp-debug-command-messages ... ...) (cond ... ... ...)) (setq result (tramp-run-real-handler operation args)) (if (stringp result) (tramp-drop-volume-letter result) result)) (if (tramp-file-name-equal-p (car current-connection) (car tramp-current-connection)) nil (setq tramp-current-connection current-connection)))))) (set-match-data saved-match-data t))
  (let ((saved-match-data (match-data))) (unwind-protect (progn (setq filename (tramp-replace-environment-variables filename)) (let* ((v (tramp-dissect-file-name filename)) (method (let* (...) (progn ... ...))) (user (let* (...) (progn ... ...))) (domain (let* (...) (progn ... ...))) (host (let* (...) (progn ... ...))) (port (let* (...) (progn ... ...))) (localname (let* (...) (progn ... ...))) (hop (let* (...) (progn ... ...)))) (ignore method user domain host port localname hop) (let ((current-connection tramp-current-connection) (foreign (tramp-find-foreign-file-name-handler v operation)) (signal-hook-function #'tramp-signal-hook-function) result) (if (tramp-file-name-equal-p v (car tramp-current-connection)) nil (setq tramp-current-connection (list v))) (unwind-protect (if foreign (let ... ... ... ...) (setq result ...) (if ... ... result)) (if (tramp-file-name-equal-p ... ...) nil (setq tramp-current-connection current-connection)))))) (set-match-data saved-match-data t)))
  (if (tramp-tramp-file-p filename) (let ((saved-match-data (match-data))) (unwind-protect (progn (setq filename (tramp-replace-environment-variables filename)) (let* ((v (tramp-dissect-file-name filename)) (method (let* ... ...)) (user (let* ... ...)) (domain (let* ... ...)) (host (let* ... ...)) (port (let* ... ...)) (localname (let* ... ...)) (hop (let* ... ...))) (ignore method user domain host port localname hop) (let ((current-connection tramp-current-connection) (foreign ...) (signal-hook-function ...) result) (if (tramp-file-name-equal-p v ...) nil (setq tramp-current-connection ...)) (unwind-protect (if foreign ... ... ...) (if ... nil ...))))) (set-match-data saved-match-data t))) (tramp-run-real-handler operation args))
  (let ((filename (apply #'tramp-file-name-for-operation operation args)) (non-essential (or non-essential (eq operation 'file-remote-p)))) (if (tramp-tramp-file-p filename) (let ((saved-match-data (match-data))) (unwind-protect (progn (setq filename (tramp-replace-environment-variables filename)) (let* ((v ...) (method ...) (user ...) (domain ...) (host ...) (port ...) (localname ...) (hop ...)) (ignore method user domain host port localname hop) (let (... ... ... result) (if ... nil ...) (unwind-protect ... ...)))) (set-match-data saved-match-data t))) (tramp-run-real-handler operation args)))
  tramp-file-name-handler(abbreviate-file-name "/kubernetes:clair-app.si-registry-clair-app-7769c4...")
  abbreviate-file-name("/kubernetes:clair-app.si-registry-clair-app-7769c4...")
  ido-make-prompt(file "Find file: ")
  ido-read-internal(file "Find file: " ido-file-history nil confirm-after-completion nil)
  ido-file-internal(selected-window)
  ido-find-file()
  funcall-interactively(ido-find-file)
  #<subr call-interactively>(ido-find-file nil nil)
  call-interactively@ido-cr+-record-current-command(#<subr call-interactively> ido-find-file nil nil)
  apply(call-interactively@ido-cr+-record-current-command #<subr call-interactively> (ido-find-file nil nil))
  call-interactively(ido-find-file nil nil)
  command-execute(ido-find-file)

Attached is a patch that fixes the issue.

Emacs  : GNU Emacs 30.0.50 (build 1, x86_64-apple-darwin22.5.0, NS appkit-2299.60 Version 13.4.1 (c) (Build 22F770820d))
 of 2023-09-06
Package: tramp (HEAD/b20b7910b413c13352213d37cac8e948ad554dc3)

current state:
==============
(setq
 backup-by-copying-when-mismatch t
 backup-by-copying-when-privileged-mismatch 200
 backup-directory-alist '(("." . "~/.emacs.d//var/backups"))
 connection-local-criteria-alist '(((:application eshell) eshell-connection-default-profile)
                                   ((:machine "localhost") localhost-vars)
                                   ((:application tramp :protocol "kubernetes")
                                    tramp-kubernetes-connection-local-default-profile)
                                   ((:machine "bastion-ocp-t") bastion-ocp-t-vars)
                                   ((:machine "reservations") reservations-vars)
                                   ((:application tramp :protocol "adb")
                                    tramp-adb-connection-local-default-shell-profile
                                    tramp-adb-connection-local-default-ps-profile)
                                   ((:machine "dsps03") dsps03-vars)
                                   ((:application tramp :protocol "flatpak")
                                    tramp-container-connection-local-default-flatpak-profile tramp-flatpak-connection-local-default-profile)
                                   ((:application tramp :machine "localhost")
                                    tramp-connection-local-darwin-ps-profile)
                                   ((:application tramp :machine "SCXMACQUATRAVAUXD")
                                    tramp-connection-local-darwin-ps-profile)
                                   ((:application tramp)
                                    tramp-connection-local-default-system-profile
                                    tramp-connection-local-default-shell-profile)
                                   )
 connection-local-profile-alist '((eshell-connection-default-profile (eshell-path-env-list))
                                  (localhost-vars
                                   (company-gtags--executable-connection .
                                    "/usr/local/bin/global")
                                   )
                                  (tramp-flatpak-connection-local-default-profile
                                   (tramp-remote-path "/app/bin" tramp-own-remote-path
                                    tramp-default-remote-path "/bin" "/usr/bin" "/sbin"
                                    "/usr/sbin" "/usr/local/bin" "/usr/local/sbin"
                                    "/local/bin" "/local/freeware/bin" "/local/gnu/bin"
                                    "/usr/freeware/bin" "/usr/pkg/bin" "/usr/contrib/bin"
                                    "/opt/bin" "/opt/sbin" "/opt/local/bin")
                                   )
                                  (tramp-kubernetes-connection-local-default-profile
                                   (tramp-config-check .
                                    tramp-kubernetes--current-context-data)
                                   (tramp-extra-expand-args 97
                                    (tramp-kubernetes--container
                                     (car tramp-current-connection))
                                    104
                                    (tramp-kubernetes--pod (car tramp-current-connection))
                                    120
                                    (tramp-kubernetes--context-namespace
                                     (car tramp-current-connection))
                                    )
                                   )
                                  (bastion-ocp-t-vars
                                   (company-gtags--executable-connection))
                                  (reservations-vars
                                   (company-gtags--executable-connection .
                                    "/usr/local/bin/global")
                                   )
                                  (tramp-adb-connection-local-default-ps-profile
                                   (tramp-process-attributes-ps-args)
                                   (tramp-process-attributes-ps-format (user . string)
                                    (pid . number) (ppid . number) (vsize . number)
                                    (rss . number) (wchan . string) (pc . string)
                                    (state . string) (args))
                                   )
                                  (tramp-adb-connection-local-default-shell-profile
                                   (shell-file-name . "/system/bin/sh")
                                   (shell-command-switch . "-c"))
                                  (dsps03-vars (company-gtags--executable-connection))
                                  (tramp-container-connection-local-default-flatpak-profile
                                   (tramp-remote-path "/app/bin" tramp-default-remote-path
                                    "/bin" "/usr/bin" "/sbin" "/usr/sbin" "/usr/local/bin"
                                    "/usr/local/sbin" "/local/bin" "/local/freeware/bin"
                                    "/local/gnu/bin" "/usr/freeware/bin" "/usr/pkg/bin"
                                    "/usr/contrib/bin" "/opt/bin" "/opt/sbin"
                                    "/opt/local/bin")
                                   )
                                  (tramp-connection-local-darwin-ps-profile
                                   (tramp-process-attributes-ps-args "-acxww" "-o"
                                    "pid,uid,user,gid,comm=abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ" "-o" "state=abcde" "-o" "ppid,pgid,sess,tty,tpgid,minflt,majflt,time,pri,nice,vsz,rss,etime,pcpu,pmem,args")
                                   (tramp-process-attributes-ps-format (pid . number)
                                    (euid . number) (user . string) (egid . number)
                                    (comm . 52) (state . 5) (ppid . number) (pgrp . number)
                                    (sess . number) (ttname . string) (tpgid . number)
                                    (minflt . number) (majflt . number)
                                    (time . tramp-ps-time) (pri . number) (nice . number)
                                    (vsize . number) (rss . number) (etime . tramp-ps-time)
                                    (pcpu . number) (pmem . number) (args))
                                   )
                                  (tramp-connection-local-busybox-ps-profile
                                   (tramp-process-attributes-ps-args "-o"
                                    "pid,user,group,comm=abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ" "-o" "stat=abcde" "-o" "ppid,pgid,tty,time,nice,etime,args")
                                   (tramp-process-attributes-ps-format (pid . number)
                                    (user . string) (group . string) (comm . 52)
                                    (state . 5) (ppid . number) (pgrp . number)
                                    (ttname . string) (time . tramp-ps-time)
                                    (nice . number) (etime . tramp-ps-time) (args))
                                   )
                                  (tramp-connection-local-bsd-ps-profile
                                   (tramp-process-attributes-ps-args "-acxww" "-o"
                                    "pid,euid,user,egid,egroup,comm=abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ" "-o" "state,ppid,pgid,sid,tty,tpgid,minflt,majflt,time,pri,nice,vsz,rss,etimes,pcpu,pmem,args")
                                   (tramp-process-attributes-ps-format (pid . number)
                                    (euid . number) (user . string) (egid . number)
                                    (group . string) (comm . 52) (state . string)
                                    (ppid . number) (pgrp . number) (sess . number)
                                    (ttname . string) (tpgid . number) (minflt . number)
                                    (majflt . number) (time . tramp-ps-time) (pri . number)
                                    (nice . number) (vsize . number) (rss . number)
                                    (etime . number) (pcpu . number) (pmem . number) (args))
                                   )
                                  (tramp-connection-local-default-shell-profile
                                   (shell-file-name . "/bin/sh")
                                   (shell-command-switch . "-c"))
                                  (tramp-connection-local-default-system-profile
                                   (path-separator . ":") (null-device . "/dev/null"))
                                  )
 file-name-handler-alist '(("\\(?:\\.tzst\\|\\.zst\\|\\.dz\\|\\.txz\\|\\.xz\\|\\.lzma\\|\\.lz\\|\\.g?z\\|\\.\\(?:tgz\\|svgz\\|sifz\\)\\|\\.tbz2?\\|\\.bz2\\|\\.Z\\)\\(?:~\\|\\.~[-[:alnum:]:#@^._]+\\(?:~[[:digit:]]+\\)?~\\)?\\'" . jka-compr-handler)
                           ("\\.gpg\\(~\\|\\.~[0-9]+~\\)?\\'" . epa-file-handler)
                           ("\\`\\(?:\\)?/\\(?:\\(?:\\(-\\|[[:alnum:]]\\{2,\\}\\)\\(?::\\)\\(?:\\([^/:|[:blank:]]+\\)\\(?:@\\)\\)?\\(\\(?:[%._[:alnum:]-]+\\|\\(?:\\[\\)\\(?:\\(?:[[:alnum:]]*:\\)+[.[:alnum:]]*\\)?\\(?:]\\)\\)\\(?:\\(?:#\\)\\(?:[[:digit:]]+\\)\\)?\\)?\\)\\(?:|\\)\\)*\\(?:\\(?:-\\|[[:alnum:]]+\\)\\(?:\\(?::\\)\\(?:\\(?:[^/:|[:blank:]]+\\)\\(?:@\\)\\)?\\(?:[%._[:alnum:]-]+\\|\\(?:\\[\\)\\(?:\\(?:\\(?:[[:alnum:]]*:\\)+[.[:alnum:]]*\\)\\(?:]\\)?\\)?\\)?\\)?\\)?\\'" . tramp-completion-file-name-handler)
                           ("\\(?:^/\\)\\(\\(?:\\(?:\\(-\\|[[:alnum:]]\\{2,\\}\\)\\(?::\\)\\(?:\\([^/:|[:blank:]]+\\)\\(?:@\\)\\)?\\(\\(?:[%._[:alnum:]-]+\\|\\(?:\\[\\)\\(?:\\(?:[[:alnum:]]*:\\)+[.[:alnum:]]*\\)?\\(?:]\\)\\)\\(?:\\(?:#\\)\\(?:[[:digit:]]+\\)\\)?\\)?\\)\\(?:|\\)\\)+\\)?\\(?:\\(-\\|[[:alnum:]]\\{2,\\}\\)\\(?::\\)\\(?:\\([^/:|[:blank:]]+\\)\\(?:@\\)\\)?\\(\\(?:[%._[:alnum:]-]+\\|\\(?:\\[\\)\\(?:\\(?:[[:alnum:]]*:\\)+[.[:alnum:]]*\\)?\\(?:]\\)\\)\\(?:\\(?:#\\)\\(?:[[:digit:]]+\\)\\)?\\)?\\)\\(?::\\)\\([^\n
]*\\'\\)" . tramp-file-name-handler)
                           ("\\`/:" . file-name-non-special))
 password-cache t
 password-cache-expiry 16
 remote-file-name-inhibit-cache 10
 shell-prompt-pattern "^[^#$%>\n]*[#$%>] *"
 tramp-actions-before-shell '((tramp-login-prompt-regexp tramp-action-login)
                              (tramp-password-prompt-regexp tramp-action-password)
                              (tramp-otp-password-prompt-regexp tramp-action-otp-password)
                              (tramp-wrong-passwd-regexp tramp-action-permission-denied)
                              (shell-prompt-pattern tramp-action-succeed)
                              (tramp-shell-prompt-pattern tramp-action-succeed)
                              (tramp-yesno-prompt-regexp tramp-action-yesno)
                              (tramp-yn-prompt-regexp tramp-action-yn)
                              (tramp-terminal-prompt-regexp tramp-action-terminal)
                              (tramp-antispoof-regexp tramp-action-confirm-message)
                              (tramp-security-key-confirm-regexp
                               tramp-action-show-and-confirm-message)
                              (tramp-process-alive-regexp tramp-action-process-alive))
 tramp-actions-copy-out-of-band '((tramp-password-prompt-regexp tramp-action-password)
                                  (tramp-otp-password-prompt-regexp
                                   tramp-action-otp-password)
                                  (tramp-wrong-passwd-regexp tramp-action-permission-denied)
                                  (tramp-copy-failed-regexp tramp-action-permission-denied)
                                  (tramp-security-key-confirm-regexp
                                   tramp-action-show-and-confirm-message)
                                  (tramp-process-alive-regexp tramp-action-out-of-band))
 tramp-adb-file-name-handler-alist '((access-file . tramp-handle-access-file)
                                     (add-name-to-file . tramp-handle-add-name-to-file)
                                     (copy-directory . tramp-handle-copy-directory)
                                     (copy-file . tramp-adb-handle-copy-file)
                                     (delete-directory . tramp-adb-handle-delete-directory)
                                     (delete-file . tramp-adb-handle-delete-file)
                                     (directory-file-name .
                                      tramp-handle-directory-file-name)
                                     (directory-files . tramp-handle-directory-files)
                                     (directory-files-and-attributes .
                                      tramp-adb-handle-directory-files-and-attributes)
                                     (dired-compress-file . ignore)
                                     (dired-uncache . tramp-handle-dired-uncache)
                                     (exec-path . tramp-adb-handle-exec-path)
                                     (expand-file-name . tramp-handle-expand-file-name)
                                     (file-accessible-directory-p .
                                      tramp-handle-file-accessible-directory-p)
                                     (file-acl . ignore)
                                     (file-attributes . tramp-adb-handle-file-attributes)
                                     (file-directory-p . tramp-handle-file-directory-p)
                                     (file-equal-p . tramp-handle-file-equal-p)
                                     (file-executable-p .
                                      tramp-adb-handle-file-executable-p)
                                     (file-exists-p . tramp-adb-handle-file-exists-p)
                                     (file-group-gid . tramp-handle-file-group-gid)
                                     (file-in-directory-p .
                                      tramp-handle-file-in-directory-p)
                                     (file-local-copy . tramp-adb-handle-file-local-copy)
                                     (file-locked-p . tramp-handle-file-locked-p)
                                     (file-modes . tramp-handle-file-modes)
                                     (file-name-all-completions .
                                      tramp-adb-handle-file-name-all-completions)
                                     (file-name-as-directory .
                                      tramp-handle-file-name-as-directory)
                                     (file-name-case-insensitive-p .
                                      tramp-handle-file-name-case-insensitive-p)
                                     (file-name-completion .
                                      tramp-handle-file-name-completion)
                                     (file-name-directory .
                                      tramp-handle-file-name-directory)
                                     (file-name-nondirectory .
                                      tramp-handle-file-name-nondirectory)
                                     (file-newer-than-file-p .
                                      tramp-handle-file-newer-than-file-p)
                                     (file-notify-add-watch .
                                      tramp-handle-file-notify-add-watch)
                                     (file-notify-rm-watch .
                                      tramp-handle-file-notify-rm-watch)
                                     (file-notify-valid-p .
                                      tramp-handle-file-notify-valid-p)
                                     (file-ownership-preserved-p . ignore)
                                     (file-readable-p . tramp-adb-handle-file-readable-p)
                                     (file-regular-p . tramp-handle-file-regular-p)
                                     (file-remote-p . tramp-handle-file-remote-p)
                                     (file-selinux-context .
                                      tramp-handle-file-selinux-context)
                                     (file-symlink-p . tramp-handle-file-symlink-p)
                                     (file-system-info . tramp-adb-handle-file-system-info)
                                     (file-truename . tramp-handle-file-truename)
                                     (file-user-uid . tramp-handle-file-user-uid)
                                     (file-writable-p . tramp-adb-handle-file-writable-p)
                                     (find-backup-file-name .
                                      tramp-handle-find-backup-file-name)
                                     (insert-directory . tramp-handle-insert-directory)
                                     (insert-file-contents .
                                      tramp-handle-insert-file-contents)
                                     (list-system-processes .
                                      tramp-handle-list-system-processes)
                                     (load . tramp-handle-load)
                                     (lock-file . tramp-handle-lock-file)
                                     (make-auto-save-file-name .
                                      tramp-handle-make-auto-save-file-name)
                                     (make-directory . tramp-adb-handle-make-directory)
                                     (make-directory-internal . ignore)
                                     (make-lock-file-name .
                                      tramp-handle-make-lock-file-name)
                                     (make-nearby-temp-file .
                                      tramp-handle-make-nearby-temp-file)
                                     (make-process . tramp-adb-handle-make-process)
                                     (make-symbolic-link . tramp-handle-make-symbolic-link)
                                     (memory-info . tramp-handle-memory-info)
                                     (process-attributes . tramp-handle-process-attributes)
                                     (process-file . tramp-adb-handle-process-file)
                                     (rename-file . tramp-adb-handle-rename-file)
                                     (set-file-acl . ignore)
                                     (set-file-modes . tramp-adb-handle-set-file-modes)
                                     (set-file-selinux-context . ignore)
                                     (set-file-times . tramp-adb-handle-set-file-times)
                                     (set-visited-file-modtime .
                                      tramp-handle-set-visited-file-modtime)
                                     (shell-command . tramp-handle-shell-command)
                                     (start-file-process . tramp-handle-start-file-process)
                                     (substitute-in-file-name .
                                      tramp-handle-substitute-in-file-name)
                                     (temporary-file-directory .
                                      tramp-handle-temporary-file-directory)
                                     (tramp-get-home-directory . ignore)
                                     (tramp-get-remote-gid .
                                      tramp-adb-handle-get-remote-gid)
                                     (tramp-get-remote-groups .
                                      tramp-adb-handle-get-remote-groups)
                                     (tramp-get-remote-uid .
                                      tramp-adb-handle-get-remote-uid)
                                     (tramp-set-file-uid-gid . ignore)
                                     (unhandled-file-name-directory . ignore)
                                     (unlock-file . tramp-handle-unlock-file)
                                     (vc-registered . ignore)
                                     (verify-visited-file-modtime .
                                      tramp-handle-verify-visited-file-modtime)
                                     (write-region . tramp-adb-handle-write-region))
 tramp-adb-method "adb"
 tramp-adb-program "adb"
 tramp-allow-unsafe-temporary-files t
 tramp-antispoof-regexp "Access granted\\. Press Return to begin session\\. "
 tramp-archive-compression-suffixes '("bz2" "gz" "lrz" "lz" "lz4" "lzma" "lzo" "uu" "xz"
                                      "Z" "zst")
 tramp-archive-file-name-handler-alist '((access-file . tramp-archive-handle-access-file)
                                         (add-name-to-file .
                                          tramp-archive-handle-not-implemented)
                                         (copy-file . tramp-archive-handle-copy-file)
                                         (delete-directory .
                                          tramp-archive-handle-not-implemented)
                                         (delete-file .
                                          tramp-archive-handle-not-implemented)
                                         (directory-file-name .
                                          tramp-archive-handle-directory-file-name)
                                         (directory-files .
                                          tramp-archive-handle-directory-files)
                                         (directory-files-and-attributes .
                                          tramp-handle-directory-files-and-attributes)
                                         (dired-compress-file .
                                          tramp-archive-handle-not-implemented)
                                         (dired-uncache .
                                          tramp-archive-handle-dired-uncache)
                                         (exec-path . ignore)
                                         (file-accessible-directory-p .
                                          tramp-handle-file-accessible-directory-p)
                                         (file-acl . ignore)
                                         (file-attributes .
                                          tramp-archive-handle-file-attributes)
                                         (file-directory-p . tramp-handle-file-directory-p)
                                         (file-equal-p . tramp-handle-file-equal-p)
                                         (file-executable-p .
                                          tramp-archive-handle-file-executable-p)
                                         (file-exists-p .
                                          tramp-archive-handle-file-exists-p)
                                         (file-group-gid .
                                          tramp-archive-handle-file-group-gid)
                                         (file-in-directory-p .
                                          tramp-handle-file-in-directory-p)
                                         (file-local-copy .
                                          tramp-archive-handle-file-local-copy)
                                         (file-locked-p . ignore)
                                         (file-modes . tramp-handle-file-modes)
                                         (file-name-all-completions .
                                          tramp-archive-handle-file-name-all-completions)
                                         (file-name-case-insensitive-p . ignore)
                                         (file-name-completion .
                                          tramp-handle-file-name-completion)
                                         (file-newer-than-file-p .
                                          tramp-handle-file-newer-than-file-p)
                                         (file-notify-add-watch . ignore)
                                         (file-notify-rm-watch . ignore)
                                         (file-notify-valid-p . ignore)
                                         (file-ownership-preserved-p . ignore)
                                         (file-readable-p .
                                          tramp-archive-handle-file-readable-p)
                                         (file-regular-p . tramp-handle-file-regular-p)
                                         (file-selinux-context .
                                          tramp-handle-file-selinux-context)
                                         (file-symlink-p .
                                          tramp-archive-handle-file-symlink-p)
                                         (file-system-info .
                                          tramp-archive-handle-file-system-info)
                                         (file-truename .
                                          tramp-archive-handle-file-truename)
                                         (file-user-uid .
                                          tramp-archive-handle-file-user-uid)
                                         (file-writable-p . ignore)
                                         (find-backup-file-name . ignore)
                                         (insert-directory .
                                          tramp-archive-handle-insert-directory)
                                         (insert-file-contents .
                                          tramp-archive-handle-insert-file-contents)
                                         (list-system-processes . ignore)
                                         (load . tramp-archive-handle-load)
                                         (lock-file . ignore)
                                         (make-auto-save-file-name . ignore)
                                         (make-directory .
                                          tramp-archive-handle-not-implemented)
                                         (make-directory-internal . ignore)
                                         (make-lock-file-name . ignore)
                                         (make-nearby-temp-file .
                                          tramp-handle-make-nearby-temp-file)
                                         (make-process . ignore)
                                         (make-symbolic-link .
                                          tramp-archive-handle-not-implemented)
                                         (memory-info . ignore)
                                         (process-attributes . ignore)
                                         (process-file . ignore)
                                         (rename-file .
                                          tramp-archive-handle-not-implemented)
                                         (set-file-acl . ignore)
                                         (set-file-modes .
                                          tramp-archive-handle-not-implemented)
                                         (set-file-selinux-context . ignore)
                                         (set-file-times .
                                          tramp-archive-handle-not-implemented)
                                         (set-visited-file-modtime .
                                          tramp-handle-set-visited-file-modtime)
                                         (shell-command .
                                          tramp-archive-handle-not-implemented)
                                         (start-file-process .
                                          tramp-archive-handle-not-implemented)
                                         (temporary-file-directory .
                                          tramp-archive-handle-temporary-file-directory)
                                         (tramp-get-home-directory . ignore)
                                         (tramp-get-remote-gid . ignore)
                                         (tramp-get-remote-groups . ignore)
                                         (tramp-get-remote-uid . ignore)
                                         (tramp-set-file-uid-gid . ignore)
                                         (unhandled-file-name-directory . ignore)
                                         (unlock-file . ignore) (vc-registered . ignore)
                                         (verify-visited-file-modtime .
                                          tramp-handle-verify-visited-file-modtime)
                                         (write-region .
                                          tramp-archive-handle-not-implemented)
                                         )
 tramp-archive-file-name-regexp "\\`\\(.+\\.\\(?:7z\\|CAB\\|LZH\\|MSU\\|ZIP\\|a\\(?:pk\\|r\\)\\|c\\(?:ab\\|pio\\|rate\\)\\|de\\(?:b\\|pot\\)\\|e\\(?:pub\\|xe\\)\\|iso\\|jar\\|lzh\\|m\\(?:su\\|tree\\)\\|od[bfgpst]\\|pax\\|r\\(?:ar\\|pm\\)\\|shar\\|t\\(?:ar\\|bz\\|gz\\|lz\\|xz\\|zst\\)\\|warc\\|x\\(?:ar\\|p[is]\\)\\|zip\\)\\(?:\\.\\(?:Z\\|bz2\\|gz\\|l\\(?:rz\\|z\\(?:ma\\|[4o]\\)?\\)\\|uu\\|xz\\|zst\\)\\)?\\)\\(/.*\\)\\'"
 tramp-archive-method "archive"
 tramp-archive-suffixes '("7z" "apk" "ar" "cab" "CAB" "cpio" "crate" "deb" "depot" "epub"
                          "exe" "iso" "jar" "lzh" "LZH" "msu" "MSU" "mtree" "odb" "odf"
                          "odg" "odp" "ods" "odt" "pax" "rar" "rpm" "shar" "tar" "tbz"
                          "tgz" "tlz" "txz" "tzst" "warc" "xar" "xpi" "xps" "zip" "ZIP")
 tramp-archive-unload-hook '((closure (t) nil
                              (remove-hook 'after-init-hook
                               #'tramp-register-archive-autoload-file-name-handler)
                              )
                             #[0 "\300\301\302\"\207"
                               [remove-hook after-init-hook
                                tramp-register-archive-autoload-file-name-handler]
                               3]
                             )
 tramp-autoload-file-name-regexp "\\`/\\(?:-\\|[^/:|]\\{2,\\}\\):"
 tramp-awk-decode "%a '\\\nBEGIN {\n  b64 = \"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/\"\n}\n{\n  for (i=1; i<=length($0); i++) {\n    c=index(b64, substr($0,i,1))\n    if(c--) {\n      for(b=0; b<6; b++) {\n        o=o*2+int(c/32); c=(c*2)%%64\n        if(++obc==8) {\n          if (o) {\n            printf \"%%c\", o\n          } else {\n            system(\"dd if=/dev/zero bs=1 count=1 %n\")\n          }\n          obc=0; o=0\n        }\n      }\n    }\n  }\n}'"
 tramp-awk-encode "%a '\\\nBEGIN {\n  b64 = \"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/\"\n  b16 = \"0123456789abcdef\"\n}\n{\n  for (c=1; c<=length($0); c++) {\n    d=index(b16, substr($0,c,1))\n    if (d--) {\n      for (b=1; b<=4; b++) {\n        o=o*2+int(d/8); d=(d*2)%%16\n        if (++obc==6) {\n          printf substr(b64,o+1,1)\n          if (++rc>75) { printf \"\\n\"; rc=0 }\n          obc=0; o=0\n        }\n      }\n    }\n  }\n}\nEND {\n  if (obc) {\n    tail=(obc==2) ? \"==\\n\" : \"=\\n\"\n    while (obc++<6) { o=o*2 }\n    printf \"%%c\", substr(b64,o+1,1)\n  } else {\n    tail=\"\\n\"\n  }\n  printf tail\n}'"
 tramp-bsd-process-attributes-ps-args '("-acxww" "-o"
                                        "pid,euid,user,egid,egroup,comm=abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ" "-o" "state,ppid,pgid,sid,tty,tpgid,minflt,majflt,time,pri,nice,vsz,rss,etimes,pcpu,pmem,args")
 tramp-bsd-process-attributes-ps-format '((pid . number) (euid . number) (user . string)
                                          (egid . number) (group . string) (comm . 52)
                                          (state . string) (ppid . number) (pgrp . number)
                                          (sess . number) (ttname . string)
                                          (tpgid . number) (minflt . number)
                                          (majflt . number) (time . tramp-ps-time)
                                          (pri . number) (nice . number) (vsize . number)
                                          (rss . number) (etime . number) (pcpu . number)
                                          (pmem . number) (args))
 tramp-bsd-unames "\\(?:BSD\\|D\\(?:arwin\\|ragonFly\\)\\)"
 tramp-bug-report-address "tramp-devel@gnu.org"
 tramp-bundle-read-file-names "echo \"(\"\nwhile read file; do\n    quoted=`echo \"$file\" | sed -e \"s/\\\"/\\\\\\\\\\\\\\\\\\\"/\"`\n    printf \"(%%b\" \"\\\"$quoted\\\"\"\n    if %s \"$file\"; then printf \" %%b\" t; else printf \" %%b\" nil; fi\n    if %s \"$file\"; then printf \" %%b\" t; else printf \" %%b\" nil; fi\n    if %s \"$file\"; then printf \" %%b)\n\" t; else printf \" %%b)\n\" nil; fi\ndone\necho \")\""
 tramp-busybox-process-attributes-ps-args '("-o"
                                            "pid,user,group,comm=abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ" "-o" "stat=abcde" "-o" "ppid,pgid,tty,time,nice,etime,args")
 tramp-busybox-process-attributes-ps-format '((pid . number) (user . string)
                                              (group . string) (comm . 52) (state . 5)
                                              (ppid . number) (pgrp . number)
                                              (ttname . string) (time . tramp-ps-time)
                                              (nice . number) (etime . tramp-ps-time)
                                              (args))
 tramp-cache-data '(((tramp-file-name "cache" nil nil nil nil nil nil)
                     ("tramp-version" "2.7.0-pre"))
                    ((tramp-file-name "kubernetes" nil nil nil nil nil nil) nil)
                    ((tramp-file-name "kubernetes" nil nil "satosa-559b5f8d5c-vsb2l" nil
                      "/" nil)
                     ("file-directory-p" ((25949 3032 658552 0) . t))
                     ("file-name-all-completions"
                      ((25949 3032 400648 0) "./" "../" "bin/" "boot/" "dev/" "etc/"
                       "home/" "lib/" "lib64/" "media/" "mnt/" "opt/" "proc/" "root/"
                       "run/" "sbin/" "srv/" "sys/" "tmp/" "usr/" "var/" "config/"
                       "custom-entrypoint.sh" "proxy_conf.yaml" "site-python/"
                       "attributemaps/" "data/")
                      )
                     ("directory-files"
                      ((25949 3032 400695 0) "data/" "attributemaps/" "site-python/"
                       "proxy_conf.yaml" "custom-entrypoint.sh" "config/" "var/" "usr/"
                       "tmp/" "sys/" "srv/" "sbin/" "run/" "root/" "proc/" "opt/" "mnt/"
                       "media/" "lib64/" "lib/" "home/" "etc/" "dev/" "boot/" "bin/" "../"
                       "./")
                      )
                     ("file-exists-p" ((25949 3032 420325 0) . t)))
                    ("#<process *tramp/kubernetes satosa-559b5f8d5c-vsb2l*>"
                     ("temp-file" "/Users/quatrava/.cache/emacs/tramp.R6vJzi")
                     ("password-vector"
                      (tramp-file-name "kubernetes" nil nil "satosa-559b5f8d5c-vsb2l" nil
                       nil nil)
                      )
                     ("last-cmd-time" (25949 3354 750156 0)) ("remote-shell" "/bin/sh")
                     ("chunksize" 0)
                     ("scripts"
                      ("tramp_stat_file_attributes" "tramp_perl_file_name_all_completions"
                       "tramp_bundle_read_file_names")
                      )
                     ("remote-path"
                      ("/usr/local/bin" "/usr/bin" "/bin" "/usr/local/games" "/usr/games"
                       "/sbin" "/usr/sbin" "/usr/local/sbin")
                      )
                     ("remote-tty" "/dev/pts/15") ("connected" t) ("selinux-p" nil)
                     ("device" (-1 . 1)) ("local-encoding" base64-encode-region)
                     ("local-decoding" base64-decode-region) ("remote-encoding" "base64")
                     ("remote-decoding" "base64 -d -i")
                     ("inline-compress" "env GZIP= gzip")
                     ("inline-decompress" "env GZIP= gzip -d"))
                    ((tramp-file-name "local" "quatrava" nil "SCXMACQUATRAVAUXD" nil nil
                      nil)
                     ("locale" "en_US.UTF-8") ("uid-integer" 502) ("gid-integer" 20))
                    ((tramp-file-name "kubernetes" nil nil "satosa-559b5f8d5c-vsb2l" nil
                      nil nil)
                     ("null-device" "/dev/null") ("process-buffer" nil)
                     ("first-password-request" "")
                     ("uname" "Linux 5.14.0-284.32.1.el9_2.x86_64")
                     ("config-check-data"
                      "'{\"context\":{\"cluster\":\"api-mgmt-ocp-test-epfl-ch:6443\",\"namespace\":\"redhat-quay\",\"user\":\"kube:admin/api-mgmt-ocp-test-epfl-ch:6443\"},\"name\":\"redhat-quay/api-mgmt-ocp-test-epfl-ch:6443/kube:admin\"}'")
                     ("locale" "LC_ALL=C.UTF-8") ("test" "test") ("file-exists" "test -e")
                     ("pipe-buf" 4096) ("remote-shell" "/bin/sh") ("~" "/home/satosa")
                     ("perl-file-spec" t) ("perl-cwd-realpath" t) ("perl" "\\perl")
                     ("case-insensitive" nil) ("readlink" "\\readlink")
                     ("stat" "env QUOTING_STYLE=locale \\stat") ("id" "/usr/bin/id")
                     ("uid-integer" 1000) ("uid-string" "satosa") ("gid-integer" 1000)
                     ("gid-string" "satosa") ("groups-integer" (1000))
                     ("groups-string" ("satosa")) ("/usr/local/bin/bzr" nil) ("git" nil)
                     ("hg" nil))
                    ((tramp-file-name "kubernetes" nil nil "satosa-559b5f8d5c-vsb2l" nil
                      "/usr/local/bin/DESCRIPTION" nil)
                     ("file-exists-p" ((25949 3031 784737 0))))
                    ((tramp-file-name "kubernetes" nil nil "satosa-559b5f8d5c-vsb2l" nil
                      "/usr/local/bin" nil)
                     ("file-directory-p" ((25949 3032 594931 0) . t))
                     ("file-name-all-completions"
                      ((25949 3032 11465 0) "./" "../" "docker-entrypoint.sh"
                       "__pycache__/" "chevron" "dotenv" "futurize" "gen_symkey.py"
                       "gunicorn" "jwdecrypt.py" "jwenc.py" "jwk_create.py" "jwk_export.py"
                       "jwkutil.py" "make_metadata" "mako-render" "mdexport"
                       "merge_metadata" "normalizer" "oic-client-management" "parse_xsd2"
                       "pasteurize" "peek.py" "satosa-saml-metadata" "xmlschema-json2xml"
                       "xmlschema-validate" "xmlschema-xml2json"
                       "activate-global-python-argcomplete"
                       "python-argcomplete-check-easy-install-script"
                       "register-python-argcomplete" "tomlq" "xq" "yq" "pip" "pip3"
                       "pip3.11" "wheel" "idle" "pydoc" "python" "python-config" "2to3"
                       "2to3-3.11" "idle3" "idle3.11" "pydoc3" "pydoc3.11" "python3"
                       "python3-config" "python3.11" "python3.11-config")
                      )
                     ("directory-files"
                      ((25949 3032 11530 0) "python3.11-config" "python3.11"
                       "python3-config" "python3" "pydoc3.11" "pydoc3" "idle3.11" "idle3"
                       "2to3-3.11" "2to3" "python-config" "python" "pydoc" "idle" "wheel"
                       "pip3.11" "pip3" "pip" "yq" "xq" "tomlq"
                       "register-python-argcomplete"
                       "python-argcomplete-check-easy-install-script"
                       "activate-global-python-argcomplete" "xmlschema-xml2json"
                       "xmlschema-validate" "xmlschema-json2xml" "satosa-saml-metadata"
                       "peek.py" "pasteurize" "parse_xsd2" "oic-client-management"
                       "normalizer" "merge_metadata" "mdexport" "mako-render"
                       "make_metadata" "jwkutil.py" "jwk_export.py" "jwk_create.py"
                       "jwenc.py" "jwdecrypt.py" "gunicorn" "gen_symkey.py" "futurize"
                       "dotenv" "chevron" "__pycache__/" "docker-entrypoint.sh" "../" "./")
                      )
                     ("file-exists-p" ((25949 3032 168331 0) . t))
                     ("file-readable-p" ((25949 3032 168344 0) . t)))
                    ((tramp-file-name "kubernetes" nil nil "satosa-559b5f8d5c-vsb2l" nil
                      "/usr/local/bin/." nil)
                     ("file-directory-p" ((25949 3032 8537 0) . t))
                     ("file-exists-p" ((25949 3032 8557 0) . t))
                     ("file-readable-p" ((25949 3032 8572 0) . t)))
                    ((tramp-file-name "kubernetes" nil nil "satosa-559b5f8d5c-vsb2l" nil
                      "/usr/local/bin/.." nil)
                     ("file-directory-p" ((25949 3032 8610 0) . t))
                     ("file-exists-p" ((25949 3032 8627 0) . t))
                     ("file-readable-p" ((25949 3032 8642 0) . t)))
                    ((tramp-file-name "kubernetes" nil nil "satosa-559b5f8d5c-vsb2l" nil
                      "/usr/local/bin/docker-entrypoint.sh" nil)
                     ("file-directory-p" ((25949 3032 470695 0)))
                     ("file-exists-p" ((25949 3032 8692 0) . t))
                     ("file-readable-p" ((25949 3032 8706 0) . t))
                     ("file-attributes"
                      ((25949 3032 441375 0) nil 1 ("root" . 0) ("root" . 0)
                       (25883 38812 0 0) (25883 38812 0 0) (25884 9755 0 0) 5084
                       "-rwxrwxr-x" t 115373457 (-1 . 1))
                      )
                     ("file-attributes-integer"
                      ((25949 3032 441395 0) nil 1 0 0 (25883 38812 0 0) (25883 38812 0 0)
                       (25884 9755 0 0) 5084 "-rwxrwxr-x" t 115373457 (-1 . 1))
                      )
                     )
                    ((tramp-file-name "kubernetes" nil nil "satosa-559b5f8d5c-vsb2l" nil
                      "/usr/local/bin/__pycache__" nil)
                     ("file-directory-p" ((25949 3032 8737 0) . t))
                     ("file-exists-p" ((25949 3032 8751 0) . t))
                     ("file-readable-p" ((25949 3032 8764 0) . t)))
                    ((tramp-file-name "kubernetes" nil nil "satosa-559b5f8d5c-vsb2l" nil
                      "/usr/local/bin/chevron" nil)
                     ("file-directory-p" ((25949 3032 8794 0)))
                     ("file-exists-p" ((25949 3032 8807 0) . t))
                     ("file-readable-p" ((25949 3032 8820 0) . t)))
                    ((tramp-file-name "kubernetes" nil nil "satosa-559b5f8d5c-vsb2l" nil
                      "/usr/local/bin/dotenv" nil)
                     ("file-directory-p" ((25949 3032 8850 0)))
                     ("file-exists-p" ((25949 3032 8863 0) . t))
                     ("file-readable-p" ((25949 3032 8875 0) . t)))
                    ((tramp-file-name "kubernetes" nil nil "satosa-559b5f8d5c-vsb2l" nil
                      "/usr/local/bin/futurize" nil)
                     ("file-directory-p" ((25949 3032 8906 0)))
                     ("file-exists-p" ((25949 3032 8919 0) . t))
                     ("file-readable-p" ((25949 3032 8932 0) . t)))
                    ((tramp-file-name "kubernetes" nil nil "satosa-559b5f8d5c-vsb2l" nil
                      "/usr/local/bin/gen_symkey.py" nil)
                     ("file-directory-p" ((25949 3032 8964 0)))
                     ("file-exists-p" ((25949 3032 8979 0) . t))
                     ("file-readable-p" ((25949 3032 8993 0) . t)))
                    ((tramp-file-name "kubernetes" nil nil "satosa-559b5f8d5c-vsb2l" nil
                      "/usr/local/bin/gunicorn" nil)
                     ("file-directory-p" ((25949 3032 9023 0)))
                     ("file-exists-p" ((25949 3032 9036 0) . t))
                     ("file-readable-p" ((25949 3032 9049 0) . t)))
                    ((tramp-file-name "kubernetes" nil nil "satosa-559b5f8d5c-vsb2l" nil
                      "/usr/local/bin/jwdecrypt.py" nil)
                     ("file-directory-p" ((25949 3032 9081 0)))
                     ("file-exists-p" ((25949 3032 9095 0) . t))
                     ("file-readable-p" ((25949 3032 9110 0) . t)))
                    ((tramp-file-name "kubernetes" nil nil "satosa-559b5f8d5c-vsb2l" nil
                      "/usr/local/bin/jwenc.py" nil)
                     ("file-directory-p" ((25949 3032 9141 0)))
                     ("file-exists-p" ((25949 3032 9156 0) . t))
                     ("file-readable-p" ((25949 3032 9170 0) . t)))
                    ((tramp-file-name "kubernetes" nil nil "satosa-559b5f8d5c-vsb2l" nil
                      "/usr/local/bin/jwk_create.py" nil)
                     ("file-directory-p" ((25949 3032 9202 0)))
                     ("file-exists-p" ((25949 3032 9217 0) . t))
                     ("file-readable-p" ((25949 3032 9231 0) . t)))
                    ((tramp-file-name "kubernetes" nil nil "satosa-559b5f8d5c-vsb2l" nil
                      "/usr/local/bin/jwk_export.py" nil)
                     ("file-directory-p" ((25949 3032 9262 0)))
                     ("file-exists-p" ((25949 3032 9277 0) . t))
                     ("file-readable-p" ((25949 3032 9291 0) . t)))
                    ((tramp-file-name "kubernetes" nil nil "satosa-559b5f8d5c-vsb2l" nil
                      "/usr/local/bin/jwkutil.py" nil)
                     ("file-directory-p" ((25949 3032 9323 0)))
                     ("file-exists-p" ((25949 3032 9338 0) . t))
                     ("file-readable-p" ((25949 3032 9352 0) . t)))
                    ((tramp-file-name "kubernetes" nil nil "satosa-559b5f8d5c-vsb2l" nil
                      "/usr/local/bin/make_metadata" nil)
                     ("file-directory-p" ((25949 3032 9382 0)))
                     ("file-exists-p" ((25949 3032 9395 0) . t))
                     ("file-readable-p" ((25949 3032 9408 0) . t)))
                    ((tramp-file-name "kubernetes" nil nil "satosa-559b5f8d5c-vsb2l" nil
                      "/usr/local/bin/mako-render" nil)
                     ("file-directory-p" ((25949 3032 9438 0)))
                     ("file-exists-p" ((25949 3032 9451 0) . t))
                     ("file-readable-p" ((25949 3032 9464 0) . t)))
                    ((tramp-file-name "kubernetes" nil nil "satosa-559b5f8d5c-vsb2l" nil
                      "/usr/local/bin/mdexport" nil)
                     ("file-directory-p" ((25949 3032 9494 0)))
                     ("file-exists-p" ((25949 3032 9507 0) . t))
                     ("file-readable-p" ((25949 3032 9519 0) . t)))
                    ((tramp-file-name "kubernetes" nil nil "satosa-559b5f8d5c-vsb2l" nil
                      "/usr/local/bin/merge_metadata" nil)
                     ("file-directory-p" ((25949 3032 9549 0)))
                     ("file-exists-p" ((25949 3032 9562 0) . t))
                     ("file-readable-p" ((25949 3032 9575 0) . t)))
                    ((tramp-file-name "kubernetes" nil nil "satosa-559b5f8d5c-vsb2l" nil
                      "/usr/local/bin/normalizer" nil)
                     ("file-directory-p" ((25949 3032 9604 0)))
                     ("file-exists-p" ((25949 3032 9617 0) . t))
                     ("file-readable-p" ((25949 3032 9630 0) . t)))
                    ((tramp-file-name "kubernetes" nil nil "satosa-559b5f8d5c-vsb2l" nil
                      "/usr/local/bin/oic-client-management" nil)
                     ("file-directory-p" ((25949 3032 9660 0)))
                     ("file-exists-p" ((25949 3032 9673 0) . t))
                     ("file-readable-p" ((25949 3032 9686 0) . t)))
                    ((tramp-file-name "kubernetes" nil nil "satosa-559b5f8d5c-vsb2l" nil
                      "/usr/local/bin/parse_xsd2" nil)
                     ("file-directory-p" ((25949 3032 9716 0)))
                     ("file-exists-p" ((25949 3032 9729 0) . t))
                     ("file-readable-p" ((25949 3032 9742 0) . t)))
                    ((tramp-file-name "kubernetes" nil nil "satosa-559b5f8d5c-vsb2l" nil
                      "/usr/local/bin/pasteurize" nil)
                     ("file-directory-p" ((25949 3032 9772 0)))
                     ("file-exists-p" ((25949 3032 9785 0) . t))
                     ("file-readable-p" ((25949 3032 9797 0) . t)))
                    ((tramp-file-name "kubernetes" nil nil "satosa-559b5f8d5c-vsb2l" nil
                      "/usr/local/bin/peek.py" nil)
                     ("file-directory-p" ((25949 3032 9829 0)))
                     ("file-exists-p" ((25949 3032 9843 0) . t))
                     ("file-readable-p" ((25949 3032 9857 0) . t)))
                    ((tramp-file-name "kubernetes" nil nil "satosa-559b5f8d5c-vsb2l" nil
                      "/usr/local/bin/satosa-saml-metadata" nil)
                     ("file-directory-p" ((25949 3032 9887 0)))
                     ("file-exists-p" ((25949 3032 9901 0) . t))
                     ("file-readable-p" ((25949 3032 9913 0) . t)))
                    ((tramp-file-name "kubernetes" nil nil "satosa-559b5f8d5c-vsb2l" nil
                      "/usr/local/bin/xmlschema-json2xml" nil)
                     ("file-directory-p" ((25949 3032 9943 0)))
                     ("file-exists-p" ((25949 3032 9956 0) . t))
                     ("file-readable-p" ((25949 3032 9969 0) . t)))
                    ((tramp-file-name "kubernetes" nil nil "satosa-559b5f8d5c-vsb2l" nil
                      "/usr/local/bin/xmlschema-validate" nil)
                     ("file-directory-p" ((25949 3032 9998 0)))
                     ("file-exists-p" ((25949 3032 10012 0) . t))
                     ("file-readable-p" ((25949 3032 10024 0) . t)))
                    ((tramp-file-name "kubernetes" nil nil "satosa-559b5f8d5c-vsb2l" nil
                      "/usr/local/bin/xmlschema-xml2json" nil)
                     ("file-directory-p" ((25949 3032 10054 0)))
                     ("file-exists-p" ((25949 3032 10067 0) . t))
                     ("file-readable-p" ((25949 3032 10080 0) . t)))
                    ((tramp-file-name "kubernetes" nil nil "satosa-559b5f8d5c-vsb2l" nil
                      "/usr/local/bin/activate-global-python-argcomplete" nil)
                     ("file-directory-p" ((25949 3032 10110 0)))
                     ("file-exists-p" ((25949 3032 10123 0) . t))
                     ("file-readable-p" ((25949 3032 10136 0) . t)))
                    ((tramp-file-name "kubernetes" nil nil "satosa-559b5f8d5c-vsb2l" nil
                      "/usr/local/bin/python-argcomplete-check-easy-install-script" nil)
                     ("file-directory-p" ((25949 3032 10166 0)))
                     ("file-exists-p" ((25949 3032 10180 0) . t))
                     ("file-readable-p" ((25949 3032 10193 0) . t)))
                    ((tramp-file-name "kubernetes" nil nil "satosa-559b5f8d5c-vsb2l" nil
                      "/usr/local/bin/register-python-argcomplete" nil)
                     ("file-directory-p" ((25949 3032 10223 0)))
                     ("file-exists-p" ((25949 3032 10236 0) . t))
                     ("file-readable-p" ((25949 3032 10249 0) . t)))
                    ((tramp-file-name "kubernetes" nil nil "satosa-559b5f8d5c-vsb2l" nil
                      "/usr/local/bin/tomlq" nil)
                     ("file-directory-p" ((25949 3032 10279 0)))
                     ("file-exists-p" ((25949 3032 10292 0) . t))
                     ("file-readable-p" ((25949 3032 10304 0) . t)))
                    ((tramp-file-name "kubernetes" nil nil "satosa-559b5f8d5c-vsb2l" nil
                      "/usr/local/bin/xq" nil)
                     ("file-directory-p" ((25949 3032 10334 0)))
                     ("file-exists-p" ((25949 3032 10347 0) . t))
                     ("file-readable-p" ((25949 3032 10360 0) . t)))
                    ((tramp-file-name "kubernetes" nil nil "satosa-559b5f8d5c-vsb2l" nil
                      "/usr/local/bin/yq" nil)
                     ("file-directory-p" ((25949 3032 10389 0)))
                     ("file-exists-p" ((25949 3032 10402 0) . t))
                     ("file-readable-p" ((25949 3032 10415 0) . t)))
                    ((tramp-file-name "kubernetes" nil nil "satosa-559b5f8d5c-vsb2l" nil
                      "/usr/local/bin/pip" nil)
                     ("file-directory-p" ((25949 3032 10444 0)))
                     ("file-exists-p" ((25949 3032 10457 0) . t))
                     ("file-readable-p" ((25949 3032 10470 0) . t)))
                    ((tramp-file-name "kubernetes" nil nil "satosa-559b5f8d5c-vsb2l" nil
                      "/usr/local/bin/pip3" nil)
                     ("file-directory-p" ((25949 3032 10500 0)))
                     ("file-exists-p" ((25949 3032 10512 0) . t))
                     ("file-readable-p" ((25949 3032 10525 0) . t)))
                    ((tramp-file-name "kubernetes" nil nil "satosa-559b5f8d5c-vsb2l" nil
                      "/usr/local/bin/pip3.11" nil)
                     ("file-directory-p" ((25949 3032 10557 0)))
                     ("file-exists-p" ((25949 3032 10571 0) . t))
                     ("file-readable-p" ((25949 3032 10585 0) . t)))
                    ((tramp-file-name "kubernetes" nil nil "satosa-559b5f8d5c-vsb2l" nil
                      "/usr/local/bin/wheel" nil)
                     ("file-directory-p" ((25949 3032 10615 0)))
                     ("file-exists-p" ((25949 3032 10628 0) . t))
                     ("file-readable-p" ((25949 3032 10641 0) . t)))
                    ((tramp-file-name "kubernetes" nil nil "satosa-559b5f8d5c-vsb2l" nil
                      "/usr/local/bin/idle" nil)
                     ("file-directory-p" ((25949 3032 10670 0)))
                     ("file-exists-p" ((25949 3032 10683 0) . t))
                     ("file-readable-p" ((25949 3032 10696 0) . t)))
                    ((tramp-file-name "kubernetes" nil nil "satosa-559b5f8d5c-vsb2l" nil
                      "/usr/local/bin/pydoc" nil)
                     ("file-directory-p" ((25949 3032 10725 0)))
                     ("file-exists-p" ((25949 3032 10738 0) . t))
                     ("file-readable-p" ((25949 3032 10751 0) . t)))
                    ((tramp-file-name "kubernetes" nil nil "satosa-559b5f8d5c-vsb2l" nil
                      "/usr/local/bin/python" nil)
                     ("file-directory-p" ((25949 3032 10784 0)))
                     ("file-exists-p" ((25949 3032 10797 0) . t))
                     ("file-readable-p" ((25949 3032 10809 0) . t)))
                    ((tramp-file-name "kubernetes" nil nil "satosa-559b5f8d5c-vsb2l" nil
                      "/usr/local/bin/python-config" nil)
                     ("file-directory-p" ((25949 3032 10839 0)))
                     ("file-exists-p" ((25949 3032 10852 0) . t))
                     ("file-readable-p" ((25949 3032 10865 0) . t)))
                    ((tramp-file-name "kubernetes" nil nil "satosa-559b5f8d5c-vsb2l" nil
                      "/usr/local/bin/2to3" nil)
                     ("file-directory-p" ((25949 3032 10895 0)))
                     ("file-exists-p" ((25949 3032 10908 0) . t))
                     ("file-readable-p" ((25949 3032 10920 0) . t)))
                    ((tramp-file-name "kubernetes" nil nil "satosa-559b5f8d5c-vsb2l" nil
                      "/usr/local/bin/2to3-3.11" nil)
                     ("file-directory-p" ((25949 3032 10952 0)))
                     ("file-exists-p" ((25949 3032 10967 0) . t))
                     ("file-readable-p" ((25949 3032 10981 0) . t)))
                    ((tramp-file-name "kubernetes" nil nil "satosa-559b5f8d5c-vsb2l" nil
                      "/usr/local/bin/idle3" nil)
                     ("file-directory-p" ((25949 3032 11011 0)))
                     ("file-exists-p" ((25949 3032 11024 0) . t))
                     ("file-readable-p" ((25949 3032 11037 0) . t)))
                    ((tramp-file-name "kubernetes" nil nil "satosa-559b5f8d5c-vsb2l" nil
                      "/usr/local/bin/idle3.11" nil)
                     ("file-directory-p" ((25949 3032 11069 0)))
                     ("file-exists-p" ((25949 3032 11083 0) . t))
                     ("file-readable-p" ((25949 3032 11097 0) . t)))
                    ((tramp-file-name "kubernetes" nil nil "satosa-559b5f8d5c-vsb2l" nil
                      "/usr/local/bin/pydoc3" nil)
                     ("file-directory-p" ((25949 3032 11127 0)))
                     ("file-exists-p" ((25949 3032 11140 0) . t))
                     ("file-readable-p" ((25949 3032 11152 0) . t)))
                    ((tramp-file-name "kubernetes" nil nil "satosa-559b5f8d5c-vsb2l" nil
                      "/usr/local/bin/pydoc3.11" nil)
                     ("file-directory-p" ((25949 3032 11184 0)))
                     ("file-exists-p" ((25949 3032 11198 0) . t))
                     ("file-readable-p" ((25949 3032 11212 0) . t)))
                    ((tramp-file-name "kubernetes" nil nil "satosa-559b5f8d5c-vsb2l" nil
                      "/usr/local/bin/python3" nil)
                     ("file-directory-p" ((25949 3032 11242 0)))
                     ("file-exists-p" ((25949 3032 11255 0) . t))
                     ("file-readable-p" ((25949 3032 11268 0) . t)))
                    ((tramp-file-name "kubernetes" nil nil "satosa-559b5f8d5c-vsb2l" nil
                      "/usr/local/bin/python3-config" nil)
                     ("file-directory-p" ((25949 3032 11298 0)))
                     ("file-exists-p" ((25949 3032 11311 0) . t))
                     ("file-readable-p" ((25949 3032 11324 0) . t)))
                    ((tramp-file-name "kubernetes" nil nil "satosa-559b5f8d5c-vsb2l" nil
                      "/usr/local/bin/python3.11" nil)
                     ("file-directory-p" ((25949 3032 11356 0)))
                     ("file-exists-p" ((25949 3032 11371 0) . t))
                     ("file-readable-p" ((25949 3032 11385 0) . t)))
                    ((tramp-file-name "kubernetes" nil nil "satosa-559b5f8d5c-vsb2l" nil
                      "/usr/local/bin/python3.11-config" nil)
                     ("file-directory-p" ((25949 3032 11416 0)))
                     ("file-exists-p" ((25949 3032 11431 0) . t))
                     ("file-readable-p" ((25949 3032 11445 0) . t)))
                    ((tramp-file-name "kubernetes" nil nil "satosa-559b5f8d5c-vsb2l" nil
                      "/usr/local" nil)
                     ("file-directory-p" ((25949 3032 620922 0) . t))
                     ("file-name-all-completions"
                      ((25949 3032 168823 0) "./" "../" "bin/" "etc/" "games/" "include/"
                       "lib/" "man/" "sbin/" "share/" "src/")
                      )
                     ("directory-files"
                      ((25949 3032 168866 0) "src/" "share/" "sbin/" "man/" "lib/"
                       "include/" "games/" "etc/" "bin/" "../" "./")
                      )
                     ("file-exists-p" ((25949 3032 231342 0) . t))
                     ("file-readable-p" ((25949 3032 231355 0) . t)))
                    ((tramp-file-name "kubernetes" nil nil "satosa-559b5f8d5c-vsb2l" nil
                      "/usr/local/." nil)
                     ("file-directory-p" ((25949 3032 168192 0) . t))
                     ("file-exists-p" ((25949 3032 168213 0) . t))
                     ("file-readable-p" ((25949 3032 168230 0) . t)))
                    ((tramp-file-name "kubernetes" nil nil "satosa-559b5f8d5c-vsb2l" nil
                      "/usr/local/.." nil)
                     ("file-directory-p" ((25949 3032 168268 0) . t))
                     ("file-exists-p" ((25949 3032 168286 0) . t))
                     ("file-readable-p" ((25949 3032 168303 0) . t)))
                    ((tramp-file-name "kubernetes" nil nil "satosa-559b5f8d5c-vsb2l" nil
                      "/usr/local/etc" nil)
                     ("file-directory-p" ((25949 3032 168376 0) . t))
                     ("file-exists-p" ((25949 3032 168390 0) . t))
                     ("file-readable-p" ((25949 3032 168403 0) . t)))
                    ((tramp-file-name "kubernetes" nil nil "satosa-559b5f8d5c-vsb2l" nil
                      "/usr/local/games" nil)
                     ("file-directory-p" ((25949 3032 168435 0) . t))
                     ("file-exists-p" ((25949 3032 168449 0) . t))
                     ("file-readable-p" ((25949 3032 168462 0) . t)))
                    ((tramp-file-name "kubernetes" nil nil "satosa-559b5f8d5c-vsb2l" nil
                      "/usr/local/include" nil)
                     ("file-directory-p" ((25949 3032 168493 0) . t))
                     ("file-exists-p" ((25949 3032 168507 0) . t))
                     ("file-readable-p" ((25949 3032 168520 0) . t)))
                    ((tramp-file-name "kubernetes" nil nil "satosa-559b5f8d5c-vsb2l" nil
                      "/usr/local/lib" nil)
                     ("file-directory-p" ((25949 3032 168551 0) . t))
                     ("file-exists-p" ((25949 3032 168564 0) . t))
                     ("file-readable-p" ((25949 3032 168577 0) . t)))
                    ((tramp-file-name "kubernetes" nil nil "satosa-559b5f8d5c-vsb2l" nil
                      "/usr/local/man" nil)
                     ("file-directory-p" ((25949 3032 168609 0) . t))
                     ("file-exists-p" ((25949 3032 168622 0) . t))
                     ("file-readable-p" ((25949 3032 168635 0) . t)))
                    ((tramp-file-name "kubernetes" nil nil "satosa-559b5f8d5c-vsb2l" nil
                      "/usr/local/sbin" nil)
                     ("file-directory-p" ((25949 3032 168666 0) . t))
                     ("file-exists-p" ((25949 3032 168679 0) . t))
                     ("file-readable-p" ((25949 3032 168692 0) . t)))
                    ((tramp-file-name "kubernetes" nil nil "satosa-559b5f8d5c-vsb2l" nil
                      "/usr/local/share" nil)
                     ("file-directory-p" ((25949 3032 168722 0) . t))
                     ("file-exists-p" ((25949 3032 168736 0) . t))
                     ("file-readable-p" ((25949 3032 168749 0) . t)))
                    ((tramp-file-name "kubernetes" nil nil "satosa-559b5f8d5c-vsb2l" nil
                      "/usr/local/src" nil)
                     ("file-directory-p" ((25949 3032 168779 0) . t))
                     ("file-exists-p" ((25949 3032 168792 0) . t))
                     ("file-readable-p" ((25949 3032 168805 0) . t)))
                    ((tramp-file-name "kubernetes" nil nil "satosa-559b5f8d5c-vsb2l" nil
                      "/usr" nil)
                     ("file-directory-p" ((25949 3032 638003 0) . t))
                     ("file-name-all-completions"
                      ((25949 3032 231513 0) "./" "../" "bin/" "games/" "include/" "lib/"
                       "libexec/" "local/" "sbin/" "share/" "src/")
                      )
                     ("directory-files"
                      ((25949 3032 231552 0) "src/" "share/" "sbin/" "local/" "libexec/"
                       "lib/" "include/" "games/" "bin/" "../" "./")
                      )
                     ("file-exists-p" ((25949 3032 250214 0) . t)))
                    ((tramp-file-name "kubernetes" nil nil "satosa-559b5f8d5c-vsb2l" nil
                      "/usr/." nil)
                     ("file-directory-p" ((25949 3032 230983 0) . t))
                     ("file-exists-p" ((25949 3032 231000 0) . t))
                     ("file-readable-p" ((25949 3032 231013 0) . t)))
                    ((tramp-file-name "kubernetes" nil nil "satosa-559b5f8d5c-vsb2l" nil
                      "/usr/.." nil)
                     ("file-directory-p" ((25949 3032 231045 0) . t))
                     ("file-exists-p" ((25949 3032 231060 0) . t))
                     ("file-readable-p" ((25949 3032 231073 0) . t)))
                    ((tramp-file-name "kubernetes" nil nil "satosa-559b5f8d5c-vsb2l" nil
                      "/usr/bin" nil)
                     ("file-directory-p" ((25949 3032 231101 0) . t))
                     ("file-exists-p" ((25949 3032 231112 0) . t))
                     ("file-readable-p" ((25949 3032 231123 0) . t)))
                    ((tramp-file-name "kubernetes" nil nil "satosa-559b5f8d5c-vsb2l" nil
                      "/usr/games" nil)
                     ("file-directory-p" ((25949 3032 231150 0) . t))
                     ("file-exists-p" ((25949 3032 231161 0) . t))
                     ("file-readable-p" ((25949 3032 231172 0) . t)))
                    ((tramp-file-name "kubernetes" nil nil "satosa-559b5f8d5c-vsb2l" nil
                      "/usr/include" nil)
                     ("file-directory-p" ((25949 3032 231198 0) . t))
                     ("file-exists-p" ((25949 3032 231209 0) . t))
                     ("file-readable-p" ((25949 3032 231220 0) . t)))
                    ((tramp-file-name "kubernetes" nil nil "satosa-559b5f8d5c-vsb2l" nil
                      "/usr/lib" nil)
                     ("file-directory-p" ((25949 3032 231246 0) . t))
                     ("file-exists-p" ((25949 3032 231257 0) . t))
                     ("file-readable-p" ((25949 3032 231268 0) . t)))
                    ((tramp-file-name "kubernetes" nil nil "satosa-559b5f8d5c-vsb2l" nil
                      "/usr/libexec" nil)
                     ("file-directory-p" ((25949 3032 231297 0) . t))
                     ("file-exists-p" ((25949 3032 231309 0) . t))
                     ("file-readable-p" ((25949 3032 231319 0) . t)))
                    ((tramp-file-name "kubernetes" nil nil "satosa-559b5f8d5c-vsb2l" nil
                      "/usr/sbin" nil)
                     ("file-directory-p" ((25949 3032 231381 0) . t))
                     ("file-exists-p" ((25949 3032 231393 0) . t))
                     ("file-readable-p" ((25949 3032 231403 0) . t)))
                    ((tramp-file-name "kubernetes" nil nil "satosa-559b5f8d5c-vsb2l" nil
                      "/usr/share" nil)
                     ("file-directory-p" ((25949 3032 231429 0) . t))
                     ("file-exists-p" ((25949 3032 231440 0) . t))
                     ("file-readable-p" ((25949 3032 231451 0) . t)))
                    ((tramp-file-name "kubernetes" nil nil "satosa-559b5f8d5c-vsb2l" nil
                      "/usr/src" nil)
                     ("file-directory-p" ((25949 3032 231476 0) . t))
                     ("file-exists-p" ((25949 3032 231487 0) . t))
                     ("file-readable-p" ((25949 3032 231498 0) . t)))
                    ((tramp-file-name "kubernetes" nil nil "satosa-559b5f8d5c-vsb2l" nil
                      "//." nil)
                     ("file-directory-p" ((25949 3032 399266 0) . t))
                     ("file-exists-p" ((25949 3032 399284 0) . t))
                     ("file-readable-p" ((25949 3032 399298 0) . t)))
                    ((tramp-file-name "kubernetes" nil nil "satosa-559b5f8d5c-vsb2l" nil
                      "//.." nil)
                     ("file-directory-p" ((25949 3032 399333 0) . t))
                     ("file-exists-p" ((25949 3032 399349 0) . t))
                     ("file-readable-p" ((25949 3032 399363 0) . t)))
                    ((tramp-file-name "kubernetes" nil nil "satosa-559b5f8d5c-vsb2l" nil
                      "//bin" nil)
                     ("file-directory-p" ((25949 3032 399393 0) . t))
                     ("file-exists-p" ((25949 3032 399404 0) . t))
                     ("file-readable-p" ((25949 3032 399415 0) . t)))
                    ((tramp-file-name "kubernetes" nil nil "satosa-559b5f8d5c-vsb2l" nil
                      "//boot" nil)
                     ("file-directory-p" ((25949 3032 399444 0) . t))
                     ("file-exists-p" ((25949 3032 399457 0) . t))
                     ("file-readable-p" ((25949 3032 399468 0) . t)))
                    ((tramp-file-name "kubernetes" nil nil "satosa-559b5f8d5c-vsb2l" nil
                      "//dev" nil)
                     ("file-directory-p" ((25949 3032 399497 0) . t))
                     ("file-exists-p" ((25949 3032 399508 0) . t))
                     ("file-readable-p" ((25949 3032 399519 0) . t)))
                    ((tramp-file-name "kubernetes" nil nil "satosa-559b5f8d5c-vsb2l" nil
                      "//etc" nil)
                     ("file-directory-p" ((25949 3032 399547 0) . t))
                     ("file-exists-p" ((25949 3032 399558 0) . t))
                     ("file-readable-p" ((25949 3032 399569 0) . t)))
                    ((tramp-file-name "kubernetes" nil nil "satosa-559b5f8d5c-vsb2l" nil
                      "//home" nil)
                     ("file-directory-p" ((25949 3032 399597 0) . t))
                     ("file-exists-p" ((25949 3032 399608 0) . t))
                     ("file-readable-p" ((25949 3032 399619 0) . t)))
                    ((tramp-file-name "kubernetes" nil nil "satosa-559b5f8d5c-vsb2l" nil
                      "//lib" nil)
                     ("file-directory-p" ((25949 3032 399647 0) . t))
                     ("file-exists-p" ((25949 3032 399658 0) . t))
                     ("file-readable-p" ((25949 3032 399669 0) . t)))
                    ((tramp-file-name "kubernetes" nil nil "satosa-559b5f8d5c-vsb2l" nil
                      "//lib64" nil)
                     ("file-directory-p" ((25949 3032 399698 0) . t))
                     ("file-exists-p" ((25949 3032 399709 0) . t))
                     ("file-readable-p" ((25949 3032 399719 0) . t)))
                    ((tramp-file-name "kubernetes" nil nil "satosa-559b5f8d5c-vsb2l" nil
                      "//media" nil)
                     ("file-directory-p" ((25949 3032 399747 0) . t))
                     ("file-exists-p" ((25949 3032 399758 0) . t))
                     ("file-readable-p" ((25949 3032 399769 0) . t)))
                    ((tramp-file-name "kubernetes" nil nil "satosa-559b5f8d5c-vsb2l" nil
                      "//mnt" nil)
                     ("file-directory-p" ((25949 3032 399797 0) . t))
                     ("file-exists-p" ((25949 3032 399808 0) . t))
                     ("file-readable-p" ((25949 3032 399818 0) . t)))
                    ((tramp-file-name "kubernetes" nil nil "satosa-559b5f8d5c-vsb2l" nil
                      "//opt" nil)
                     ("file-directory-p" ((25949 3032 399847 0) . t))
                     ("file-exists-p" ((25949 3032 399859 0) . t))
                     ("file-readable-p" ((25949 3032 399869 0) . t)))
                    ((tramp-file-name "kubernetes" nil nil "satosa-559b5f8d5c-vsb2l" nil
                      "//proc" nil)
                     ("file-directory-p" ((25949 3032 399898 0) . t))
                     ("file-exists-p" ((25949 3032 399909 0) . t))
                     ("file-readable-p" ((25949 3032 399920 0) . t)))
                    ((tramp-file-name "kubernetes" nil nil "satosa-559b5f8d5c-vsb2l" nil
                      "//root" nil)
                     ("file-directory-p" ((25949 3032 399948 0) . t))
                     ("file-exists-p" ((25949 3032 399959 0) . t))
                     ("file-readable-p" ((25949 3032 399970 0))))
                    ((tramp-file-name "kubernetes" nil nil "satosa-559b5f8d5c-vsb2l" nil
                      "//run" nil)
                     ("file-directory-p" ((25949 3032 399998 0) . t))
                     ("file-exists-p" ((25949 3032 400009 0) . t))
                     ("file-readable-p" ((25949 3032 400020 0) . t)))
                    ((tramp-file-name "kubernetes" nil nil "satosa-559b5f8d5c-vsb2l" nil
                      "//sbin" nil)
                     ("file-directory-p" ((25949 3032 400048 0) . t))
                     ("file-exists-p" ((25949 3032 400059 0) . t))
                     ("file-readable-p" ((25949 3032 400070 0) . t)))
                    ((tramp-file-name "kubernetes" nil nil "satosa-559b5f8d5c-vsb2l" nil
                      "//srv" nil)
                     ("file-directory-p" ((25949 3032 400098 0) . t))
                     ("file-exists-p" ((25949 3032 400109 0) . t))
                     ("file-readable-p" ((25949 3032 400120 0) . t)))
                    ((tramp-file-name "kubernetes" nil nil "satosa-559b5f8d5c-vsb2l" nil
                      "//sys" nil)
                     ("file-directory-p" ((25949 3032 400148 0) . t))
                     ("file-exists-p" ((25949 3032 400159 0) . t))
                     ("file-readable-p" ((25949 3032 400170 0) . t)))
                    ((tramp-file-name "kubernetes" nil nil "satosa-559b5f8d5c-vsb2l" nil
                      "//tmp" nil)
                     ("file-directory-p" ((25949 3032 400198 0) . t))
                     ("file-exists-p" ((25949 3032 400209 0) . t))
                     ("file-readable-p" ((25949 3032 400220 0) . t)))
                    ((tramp-file-name "kubernetes" nil nil "satosa-559b5f8d5c-vsb2l" nil
                      "//usr" nil)
                     ("file-directory-p" ((25949 3032 400248 0) . t))
                     ("file-exists-p" ((25949 3032 400259 0) . t))
                     ("file-readable-p" ((25949 3032 400270 0) . t)))
                    ((tramp-file-name "kubernetes" nil nil "satosa-559b5f8d5c-vsb2l" nil
                      "//var" nil)
                     ("file-directory-p" ((25949 3032 400299 0) . t))
                     ("file-exists-p" ((25949 3032 400310 0) . t))
                     ("file-readable-p" ((25949 3032 400320 0) . t)))
                    ((tramp-file-name "kubernetes" nil nil "satosa-559b5f8d5c-vsb2l" nil
                      "//config" nil)
                     ("file-directory-p" ((25949 3032 400348 0) . t))
                     ("file-exists-p" ((25949 3032 400360 0) . t))
                     ("file-readable-p" ((25949 3032 400370 0) . t)))
                    ((tramp-file-name "kubernetes" nil nil "satosa-559b5f8d5c-vsb2l" nil
                      "//custom-entrypoint.sh" nil)
                     ("file-directory-p" ((25949 3032 400401 0)))
                     ("file-exists-p" ((25949 3032 400415 0) . t))
                     ("file-readable-p" ((25949 3032 400427 0) . t)))
                    ((tramp-file-name "kubernetes" nil nil "satosa-559b5f8d5c-vsb2l" nil
                      "//proxy_conf.yaml" nil)
                     ("file-directory-p" ((25949 3032 400458 0)))
                     ("file-exists-p" ((25949 3032 400471 0) . t))
                     ("file-readable-p" ((25949 3032 400483 0) . t)))
                    ((tramp-file-name "kubernetes" nil nil "satosa-559b5f8d5c-vsb2l" nil
                      "//site-python" nil)
                     ("file-directory-p" ((25949 3032 400511 0) . t))
                     ("file-exists-p" ((25949 3032 400523 0) . t))
                     ("file-readable-p" ((25949 3032 400533 0) . t)))
                    ((tramp-file-name "kubernetes" nil nil "satosa-559b5f8d5c-vsb2l" nil
                      "//attributemaps" nil)
                     ("file-directory-p" ((25949 3032 400561 0) . t))
                     ("file-exists-p" ((25949 3032 400573 0) . t))
                     ("file-readable-p" ((25949 3032 400584 0) . t)))
                    ((tramp-file-name "kubernetes" nil nil "satosa-559b5f8d5c-vsb2l" nil
                      "//data" nil)
                     ("file-directory-p" ((25949 3032 400612 0) . t))
                     ("file-exists-p" ((25949 3032 400623 0) . t))
                     ("file-readable-p" ((25949 3032 400633 0) . t)))
                    ((tramp-file-name "kubernetes" nil nil "satosa-559b5f8d5c-vsb2l" nil
                      "/usr/local/bin/.git" nil)
                     ("file-exists-p" ((25949 3032 801568 0)))
                     ("file-readable-p" ((25949 3032 801583 0)))
                     ("file-directory-p" ((25949 3032 801593 0))))
                    ((tramp-file-name "kubernetes" nil nil "satosa-559b5f8d5c-vsb2l" nil
                      "/usr/local/.git" nil)
                     ("file-exists-p" ((25949 3032 801624 0)))
                     ("file-readable-p" ((25949 3032 801634 0)))
                     ("file-directory-p" ((25949 3032 801643 0))))
                    ((tramp-file-name "kubernetes" nil nil "satosa-559b5f8d5c-vsb2l" nil
                      "/usr/.git" nil)
                     ("file-exists-p" ((25949 3032 801671 0)))
                     ("file-readable-p" ((25949 3032 801680 0)))
                     ("file-directory-p" ((25949 3032 801689 0))))
                    ((tramp-file-name "kubernetes" nil nil "satosa-559b5f8d5c-vsb2l" nil
                      "/.git" nil)
                     ("file-exists-p" ((25949 3032 801746 0)))
                     ("file-readable-p" ((25949 3032 801764 0)))
                     ("file-directory-p" ((25949 3032 801774 0))))
                    ((tramp-file-name "kubernetes" nil nil "satosa-559b5f8d5c-vsb2l" nil
                      "/usr/local/bin/RCS/docker-entrypoint.sh,v" nil)
                     ("file-exists-p" ((25949 3032 801808 0)))
                     ("file-readable-p" ((25949 3032 801819 0)))
                     ("file-directory-p" ((25949 3032 801829 0))))
                    ((tramp-file-name "kubernetes" nil nil "satosa-559b5f8d5c-vsb2l" nil
                      "/usr/local/bin/docker-entrypoint.sh,v" nil)
                     ("file-exists-p" ((25949 3032 801857 0)))
                     ("file-readable-p" ((25949 3032 801867 0)))
                     ("file-directory-p" ((25949 3032 801877 0))))
                    ((tramp-file-name "kubernetes" nil nil "satosa-559b5f8d5c-vsb2l" nil
                      "/usr/local/bin/RCS/docker-entrypoint.sh" nil)
                     ("file-exists-p" ((25949 3032 801904 0)))
                     ("file-readable-p" ((25949 3032 801914 0)))
                     ("file-directory-p" ((25949 3032 801923 0))))
                    ((tramp-file-name "kubernetes" nil nil "satosa-559b5f8d5c-vsb2l" nil
                      "/usr/local/bin/.hg" nil)
                     ("file-exists-p" ((25949 3032 801950 0)))
                     ("file-readable-p" ((25949 3032 801960 0)))
                     ("file-directory-p" ((25949 3032 801969 0))))
                    ((tramp-file-name "kubernetes" nil nil "satosa-559b5f8d5c-vsb2l" nil
                      "/usr/local/.hg" nil)
                     ("file-exists-p" ((25949 3032 801995 0)))
                     ("file-readable-p" ((25949 3032 802005 0)))
                     ("file-directory-p" ((25949 3032 802014 0))))
                    ((tramp-file-name "kubernetes" nil nil "satosa-559b5f8d5c-vsb2l" nil
                      "/usr/.hg" nil)
                     ("file-exists-p" ((25949 3032 802041 0)))
                     ("file-readable-p" ((25949 3032 802050 0)))
                     ("file-directory-p" ((25949 3032 802059 0))))
                    ((tramp-file-name "kubernetes" nil nil "satosa-559b5f8d5c-vsb2l" nil
                      "/.hg" nil)
                     ("file-exists-p" ((25949 3032 802085 0)))
                     ("file-readable-p" ((25949 3032 802094 0)))
                     ("file-directory-p" ((25949 3032 802102 0))))
                    ((tramp-file-name "kubernetes" nil nil "satosa-559b5f8d5c-vsb2l" nil
                      "/usr/local/bin/.bzr/checkout/format" nil)
                     ("file-exists-p" ((25949 3032 802129 0)))
                     ("file-readable-p" ((25949 3032 802139 0)))
                     ("file-directory-p" ((25949 3032 802148 0))))
                    ((tramp-file-name "kubernetes" nil nil "satosa-559b5f8d5c-vsb2l" nil
                      "/usr/local/.bzr/checkout/format" nil)
                     ("file-exists-p" ((25949 3032 802175 0)))
                     ("file-readable-p" ((25949 3032 802184 0)))
                     ("file-directory-p" ((25949 3032 802193 0))))
                    ((tramp-file-name "kubernetes" nil nil "satosa-559b5f8d5c-vsb2l" nil
                      "/usr/.bzr/checkout/format" nil)
                     ("file-exists-p" ((25949 3032 802220 0)))
                     ("file-readable-p" ((25949 3032 802229 0)))
                     ("file-directory-p" ((25949 3032 802239 0))))
                    ((tramp-file-name "kubernetes" nil nil "satosa-559b5f8d5c-vsb2l" nil
                      "/.bzr/checkout/format" nil)
                     ("file-exists-p" ((25949 3032 802265 0)))
                     ("file-readable-p" ((25949 3032 802274 0)))
                     ("file-directory-p" ((25949 3032 802282 0))))
                    ((tramp-file-name "kubernetes" nil nil "satosa-559b5f8d5c-vsb2l" nil
                      "/usr/local/bin/.svn" nil)
                     ("file-exists-p" ((25949 3032 802311 0)))
                     ("file-readable-p" ((25949 3032 802320 0)))
                     ("file-directory-p" ((25949 3032 802329 0))))
                    ((tramp-file-name "kubernetes" nil nil "satosa-559b5f8d5c-vsb2l" nil
                      "/usr/local/.svn" nil)
                     ("file-exists-p" ((25949 3032 802356 0)))
                     ("file-readable-p" ((25949 3032 802365 0)))
                     ("file-directory-p" ((25949 3032 802374 0))))
                    ((tramp-file-name "kubernetes" nil nil "satosa-559b5f8d5c-vsb2l" nil
                      "/usr/.svn" nil)
                     ("file-exists-p" ((25949 3032 802401 0)))
                     ("file-readable-p" ((25949 3032 802410 0)))
                     ("file-directory-p" ((25949 3032 802419 0))))
                    ((tramp-file-name "kubernetes" nil nil "satosa-559b5f8d5c-vsb2l" nil
                      "/.svn" nil)
                     ("file-exists-p" ((25949 3032 802445 0)))
                     ("file-readable-p" ((25949 3032 802454 0)))
                     ("file-directory-p" ((25949 3032 802462 0))))
                    ((tramp-file-name "kubernetes" nil nil "satosa-559b5f8d5c-vsb2l" nil
                      "/usr/local/bin/CVS/Entries" nil)
                     ("file-exists-p" ((25949 3032 802489 0)))
                     ("file-readable-p" ((25949 3032 802499 0)))
                     ("file-directory-p" ((25949 3032 802508 0))))
                    ((tramp-file-name "kubernetes" nil nil "satosa-559b5f8d5c-vsb2l" nil
                      "/home/satosa/fix/fix/[tramp-bug] More CR" nil)
                     ("file-directory-p" ((25949 3339 936486 0))))
                    ((tramp-file-name "kubernetes" nil nil "satosa-559b5f8d5c-vsb2l" nil
                      "/DESCRIPTION" nil)
                     ("file-exists-p" ((25949 3354 900642 0))))
                    )
 tramp-cache-data-changed t
 tramp-cache-read-persistent-data ""
 tramp-cache-undefined 'undef
 tramp-cache-unload-hook '((closure (t) nil
                            (remove-hook 'kill-emacs-hook
                             #'tramp-dump-connection-properties)
                            )
                           (closure (t) nil
                            (remove-hook 'before-revert-hook #'tramp-flush-file-function)
                            (remove-hook 'eshell-pre-command-hook
                             #'tramp-flush-file-function)
                            (remove-hook 'kill-buffer-hook #'tramp-flush-file-function))
                           (closure (t) nil
                            (let
                             ((tail (all-completions "tramp-cache-set-count-" obarray)))
                             (while tail
                              (let ((var (car tail))) (unintern var obarray)
                               (setq tail (cdr tail)))
                              )
                             )
                            )
                           (closure (t) nil
                            (let
                             ((tail (all-completions "tramp-cache-get-count-" obarray)))
                             (while tail
                              (let ((var (car tail))) (unintern var obarray)
                               (setq tail (cdr tail)))
                              )
                             )
                            )
                           )
 tramp-cache-version '(tramp-file-name "cache" nil nil nil nil nil nil)
 tramp-cleanup-all-connections-hook '(tramp-recentf-cleanup-all)
 tramp-cleanup-connection-hook '(tramp-recentf-cleanup)
 tramp-cleanup-some-buffers-hook '(tramp-remote-process-p tramp-dired-buffer-p
                                   buffer-file-name)
 tramp-compat-emacs-compiled-version "30.0.50"
 tramp-compat-password-colon-equivalents '(58 65306 65109 65043 6102)
 tramp-compat-temporary-file-directory "/Users/quatrava/.cache/emacs/"
 tramp-completion-file-name-handler-alist '((expand-file-name .
                                             tramp-completion-handle-expand-file-name)
                                            (file-directory-p .
                                             tramp-completion-handle-file-directory-p)
                                            (file-exists-p .
                                             tramp-completion-handle-file-exists-p)
                                            (file-name-all-completions .
                                             tramp-completion-handle-file-name-all-completions)
                                            (file-name-completion .
                                             tramp-completion-handle-file-name-completion)
                                            (file-name-directory .
                                             tramp-completion-handle-file-name-directory)
                                            (file-name-nondirectory .
                                             tramp-completion-handle-file-name-nondirectory)
                                            )
 tramp-completion-file-name-regexp "\\`\\(?:\\)?/\\(?:\\(?:\\(-\\|[[:alnum:]]\\{2,\\}\\)\\(?::\\)\\(?:\\([^/:|[:blank:]]+\\)\\(?:@\\)\\)?\\(\\(?:[%._[:alnum:]-]+\\|\\(?:\\[\\)\\(?:\\(?:[[:alnum:]]*:\\)+[.[:alnum:]]*\\)?\\(?:]\\)\\)\\(?:\\(?:#\\)\\(?:[[:digit:]]+\\)\\)?\\)?\\)\\(?:|\\)\\)*\\(?:\\(?:-\\|[[:alnum:]]+\\)\\(?:\\(?::\\)\\(?:\\(?:[^/:|[:blank:]]+\\)\\(?:@\\)\\)?\\(?:[%._[:alnum:]-]+\\|\\(?:\\[\\)\\(?:\\(?:\\(?:[[:alnum:]]*:\\)+[.[:alnum:]]*\\)\\(?:]\\)?\\)?\\)?\\)?\\)?\\'"
 tramp-completion-function-alist '(("adb" (tramp-adb-parse-device-names ""))
                                   ("flatpak"
                                    (tramp-flatpak--completion-function "flatpak"))
                                   ("toolbox"
                                    (tramp-toolbox--completion-function "toolbox"))
                                   ("kubernetes"
                                    (tramp-kubernetes--completion-function "kubernetes"))
                                   ("podman"
                                    (tramp-container--completion-function "podman"))
                                   ("docker"
                                    (tramp-container--completion-function "docker"))
                                   ("ftp" (tramp-parse-netrc "~/.netrc"))
                                   ("rclone" (tramp-rclone-parse-device-names ""))
                                   ("fcp" (tramp-parse-rhosts "/etc/hosts.equiv")
                                    (tramp-parse-sconfig "/etc/ssh/ssh_config")
                                    (tramp-parse-shosts "/Users/quatrava/.ssh/known_hosts")
                                    (tramp-parse-sconfig "/Users/quatrava/.ssh/config"))
                                   ("psftp" (tramp-parse-rhosts "/etc/hosts.equiv")
                                    (tramp-parse-sconfig "/etc/ssh/ssh_config")
                                    (tramp-parse-shosts "/Users/quatrava/.ssh/known_hosts")
                                    (tramp-parse-sconfig "/Users/quatrava/.ssh/config"))
                                   ("pscp" (tramp-parse-rhosts "/etc/hosts.equiv")
                                    (tramp-parse-sconfig "/etc/ssh/ssh_config")
                                    (tramp-parse-shosts "/Users/quatrava/.ssh/known_hosts")
                                    (tramp-parse-sconfig "/Users/quatrava/.ssh/config"))
                                   ("plink" (tramp-parse-rhosts "/etc/hosts.equiv")
                                    (tramp-parse-sconfig "/etc/ssh/ssh_config")
                                    (tramp-parse-shosts "/Users/quatrava/.ssh/known_hosts")
                                    (tramp-parse-sconfig "/Users/quatrava/.ssh/config"))
                                   ("krlogin" (tramp-parse-rhosts "/etc/hosts.equiv"))
                                   ("sg" (tramp-parse-etc-group "/etc/group"))
                                   ("ksu" (tramp-parse-passwd "/etc/passwd"))
                                   ("doas" (tramp-parse-passwd "/etc/passwd"))
                                   ("sudo" (tramp-parse-passwd "/etc/passwd"))
                                   ("su" (tramp-parse-passwd "/etc/passwd"))
                                   ("nc" (tramp-parse-hosts "/etc/hosts"))
                                   ("telnet" (tramp-parse-hosts "/etc/hosts"))
                                   ("sshx" (tramp-parse-rhosts "/etc/hosts.equiv")
                                    (tramp-parse-sconfig "/etc/ssh/ssh_config")
                                    (tramp-parse-shosts "/Users/quatrava/.ssh/known_hosts")
                                    (tramp-parse-sconfig "/Users/quatrava/.ssh/config"))
                                   ("ssh" (tramp-parse-rhosts "/etc/hosts.equiv")
                                    (tramp-parse-sconfig "/etc/ssh/ssh_config")
                                    (tramp-parse-shosts "/Users/quatrava/.ssh/known_hosts")
                                    (tramp-parse-sconfig "/Users/quatrava/.ssh/config"))
                                   ("remsh" (tramp-parse-rhosts "/etc/hosts.equiv"))
                                   ("rsh" (tramp-parse-rhosts "/etc/hosts.equiv"))
                                   ("rsync" (tramp-parse-rhosts "/etc/hosts.equiv")
                                    (tramp-parse-sconfig "/etc/ssh/ssh_config")
                                    (tramp-parse-shosts "/Users/quatrava/.ssh/known_hosts")
                                    (tramp-parse-sconfig "/Users/quatrava/.ssh/config"))
                                   ("scpx" (tramp-parse-rhosts "/etc/hosts.equiv")
                                    (tramp-parse-sconfig "/etc/ssh/ssh_config")
                                    (tramp-parse-shosts "/Users/quatrava/.ssh/known_hosts")
                                    (tramp-parse-sconfig "/Users/quatrava/.ssh/config"))
                                   ("scp" (tramp-parse-rhosts "/etc/hosts.equiv")
                                    (tramp-parse-sconfig "/etc/ssh/ssh_config")
                                    (tramp-parse-shosts "/Users/quatrava/.ssh/known_hosts")
                                    (tramp-parse-sconfig "/Users/quatrava/.ssh/config"))
                                   ("remcp" (tramp-parse-rhosts "/etc/hosts.equiv"))
                                   ("rcp" (tramp-parse-rhosts "/etc/hosts.equiv"))
                                   ("smb" (tramp-parse-netrc "~/.netrc"))
                                   ("sshfs" (tramp-parse-rhosts "/etc/hosts.equiv")
                                    (tramp-parse-sconfig "/etc/ssh/ssh_config")
                                    (tramp-parse-shosts "/Users/quatrava/.ssh/known_hosts")
                                    (tramp-parse-sconfig "/Users/quatrava/.ssh/config"))
                                   ("sudoedit" (tramp-parse-passwd "/etc/passwd")))
 tramp-completion-function-alist-putty '((tramp-parse-putty "~/.putty/sessions"))
 tramp-completion-function-alist-rsh '((tramp-parse-rhosts "/etc/hosts.equiv")
                                       (tramp-parse-rhosts "~/.rhosts"))
 tramp-completion-function-alist-sg '((tramp-parse-etc-group "/etc/group"))
 tramp-completion-function-alist-ssh '((tramp-parse-rhosts "/etc/hosts.equiv")
                                       (tramp-parse-rhosts "/etc/shosts.equiv")
                                       (tramp-parse-shosts "/etc/ssh/ssh_known_hosts")
                                       (tramp-parse-sconfig "/etc/ssh/ssh_config")
                                       (tramp-parse-shostkeys "/etc/ssh2/hostkeys")
                                       (tramp-parse-sknownhosts "/etc/ssh2/knownhosts")
                                       (tramp-parse-rhosts "~/.rhosts")
                                       (tramp-parse-rhosts "~/.shosts")
                                       (tramp-parse-shosts
                                        "/Users/quatrava/.ssh/known_hosts")
                                       (tramp-parse-sconfig "/Users/quatrava/.ssh/config")
                                       (tramp-parse-shostkeys "~/.ssh2/hostkeys")
                                       (tramp-parse-sknownhosts "~/.ssh2/knownhosts"))
 tramp-completion-function-alist-su '((tramp-parse-passwd "/etc/passwd"))
 tramp-completion-function-alist-telnet '((tramp-parse-hosts "/etc/hosts"))
 tramp-completion-method-regexp "-\\|[[:alnum:]]+"
 tramp-completion-method-regexp-alist '((default . "-\\|[[:alnum:]]+") (simplified . "")
                                        (separate . "-\\|[[:alnum:]]*"))
 tramp-completion-multi-hop-methods '("flatpak" "toolbox" "kubernetes" "podman" "docker")
 tramp-completion-use-auth-sources t
 tramp-completion-use-cache t
 tramp-confirm-rename-file-names t
 tramp-connection-local-bsd-ps-variables '((tramp-process-attributes-ps-args "-acxww" "-o"
                                            "pid,euid,user,egid,egroup,comm=abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ" "-o" "state,ppid,pgid,sid,tty,tpgid,minflt,majflt,time,pri,nice,vsz,rss,etimes,pcpu,pmem,args")
                                           (tramp-process-attributes-ps-format
                                            (pid . number) (euid . number) (user . string)
                                            (egid . number) (group . string) (comm . 52)
                                            (state . string) (ppid . number)
                                            (pgrp . number) (sess . number)
                                            (ttname . string) (tpgid . number)
                                            (minflt . number) (majflt . number)
                                            (time . tramp-ps-time) (pri . number)
                                            (nice . number) (vsize . number) (rss . number)
                                            (etime . number) (pcpu . number)
                                            (pmem . number) (args))
                                           )
 tramp-connection-local-busybox-ps-variables '((tramp-process-attributes-ps-args "-o"
                                                "pid,user,group,comm=abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ" "-o" "stat=abcde" "-o" "ppid,pgid,tty,time,nice,etime,args")
                                               (tramp-process-attributes-ps-format
                                                (pid . number) (user . string)
                                                (group . string) (comm . 52) (state . 5)
                                                (ppid . number) (pgrp . number)
                                                (ttname . string) (time . tramp-ps-time)
                                                (nice . number) (etime . tramp-ps-time)
                                                (args))
                                               )
 tramp-connection-local-darwin-ps-variables '((tramp-process-attributes-ps-args "-acxww"
                                               "-o"
                                               "pid,uid,user,gid,comm=abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ" "-o" "state=abcde" "-o" "ppid,pgid,sess,tty,tpgid,minflt,majflt,time,pri,nice,vsz,rss,etime,pcpu,pmem,args")
                                              (tramp-process-attributes-ps-format
                                               (pid . number) (euid . number)
                                               (user . string) (egid . number) (comm . 52)
                                               (state . 5) (ppid . number) (pgrp . number)
                                               (sess . number) (ttname . string)
                                               (tpgid . number) (minflt . number)
                                               (majflt . number) (time . tramp-ps-time)
                                               (pri . number) (nice . number)
                                               (vsize . number) (rss . number)
                                               (etime . tramp-ps-time) (pcpu . number)
                                               (pmem . number) (args))
                                              )
 tramp-connection-local-default-shell-variables '((shell-file-name . "/bin/sh")
                                                  (shell-command-switch . "-c"))
 tramp-connection-local-default-system-variables '((path-separator . ":")
                                                   (null-device . "/dev/null"))
 tramp-connection-min-time-diff 5
 tramp-connection-properties '(("/sshfs:" "direct-async-process" t))
 tramp-connection-timeout 60
 tramp-copy-failed-regexp ".+: \\(?:No such file or directory\\|Permission denied\\|is a directory\\|not a regular file\\)[[:blank:]]*"
 tramp-copy-size-limit 10240
 tramp-crypt-encfs-config ".encfs6.xml"
 tramp-crypt-file-name-handler-alist '((access-file . tramp-crypt-handle-access-file)
                                       (add-name-to-file . tramp-handle-add-name-to-file)
                                       (copy-directory . tramp-handle-copy-directory)
                                       (copy-file . tramp-crypt-handle-copy-file)
                                       (delete-directory .
                                        tramp-crypt-handle-delete-directory)
                                       (delete-file . tramp-crypt-handle-delete-file)
                                       (directory-files .
                                        tramp-crypt-handle-directory-files)
                                       (directory-files-and-attributes .
                                        tramp-handle-directory-files-and-attributes)
                                       (dired-compress-file . ignore)
                                       (dired-uncache . tramp-handle-dired-uncache)
                                       (exec-path . ignore)
                                       (file-accessible-directory-p .
                                        tramp-handle-file-accessible-directory-p)
                                       (file-acl . ignore)
                                       (file-attributes .
                                        tramp-crypt-handle-file-attributes)
                                       (file-directory-p . tramp-handle-file-directory-p)
                                       (file-equal-p . tramp-handle-file-equal-p)
                                       (file-executable-p .
                                        tramp-crypt-handle-file-executable-p)
                                       (file-exists-p . tramp-crypt-handle-file-exists-p)
                                       (file-in-directory-p .
                                        tramp-handle-file-in-directory-p)
                                       (file-local-copy . tramp-handle-file-local-copy)
                                       (file-locked-p . tramp-crypt-handle-file-locked-p)
                                       (file-modes . tramp-handle-file-modes)
                                       (file-name-all-completions .
                                        tramp-crypt-handle-file-name-all-completions)
                                       (file-name-case-insensitive-p . ignore)
                                       (file-name-completion .
                                        tramp-handle-file-name-completion)
                                       (file-newer-than-file-p .
                                        tramp-handle-file-newer-than-file-p)
                                       (file-notify-add-watch .
                                        tramp-handle-file-notify-add-watch)
                                       (file-notify-rm-watch .
                                        tramp-handle-file-notify-rm-watch)
                                       (file-notify-valid-p .
                                        tramp-handle-file-notify-valid-p)
                                       (file-ownership-preserved-p .
                                        tramp-crypt-handle-file-ownership-preserved-p)
                                       (file-readable-p .
                                        tramp-crypt-handle-file-readable-p)
                                       (file-regular-p . tramp-handle-file-regular-p)
                                       (file-selinux-context . ignore)
                                       (file-symlink-p . tramp-handle-file-symlink-p)
                                       (file-system-info .
                                        tramp-crypt-handle-file-system-info)
                                       (file-writable-p .
                                        tramp-crypt-handle-file-writable-p)
                                       (find-backup-file-name .
                                        tramp-handle-find-backup-file-name)
                                       (insert-directory .
                                        tramp-crypt-handle-insert-directory)
                                       (insert-file-contents .
                                        tramp-handle-insert-file-contents)
                                       (list-system-processes . ignore)
                                       (load . tramp-handle-load)
                                       (lock-file . tramp-crypt-handle-lock-file)
                                       (make-auto-save-file-name .
                                        tramp-handle-make-auto-save-file-name)
                                       (make-directory . tramp-crypt-handle-make-directory)
                                       (make-directory-internal . ignore)
                                       (make-lock-file-name .
                                        tramp-handle-make-lock-file-name)
                                       (make-nearby-temp-file .
                                        tramp-handle-make-nearby-temp-file)
                                       (make-process . ignore)
                                       (make-symbolic-link .
                                        tramp-handle-make-symbolic-link)
                                       (memory-info . ignore) (process-attributes . ignore)
                                       (process-file . ignore)
                                       (rename-file . tramp-crypt-handle-rename-file)
                                       (set-file-acl . ignore)
                                       (set-file-modes . tramp-crypt-handle-set-file-modes)
                                       (set-file-selinux-context . ignore)
                                       (set-file-times . tramp-crypt-handle-set-file-times)
                                       (set-visited-file-modtime .
                                        tramp-handle-set-visited-file-modtime)
                                       (shell-command . ignore)
                                       (start-file-process . ignore)
                                       (temporary-file-directory .
                                        tramp-handle-temporary-file-directory)
                                       (tramp-set-file-uid-gid .
                                        tramp-crypt-handle-set-file-uid-gid)
                                       (unhandled-file-name-directory . ignore)
                                       (unlock-file . tramp-crypt-handle-unlock-file)
                                       (vc-registered . ignore)
                                       (verify-visited-file-modtime .
                                        tramp-handle-verify-visited-file-modtime)
                                       (write-region . tramp-handle-write-region))
 tramp-darwin-process-attributes-ps-args '("-acxww" "-o"
                                           "pid,uid,user,gid,comm=abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ" "-o" "state=abcde" "-o" "ppid,pgid,sess,tty,tpgid,minflt,majflt,time,pri,nice,vsz,rss,etime,pcpu,pmem,args")
 tramp-darwin-process-attributes-ps-format '((pid . number) (euid . number) (user . string)
                                             (egid . number) (comm . 52) (state . 5)
                                             (ppid . number) (pgrp . number)
                                             (sess . number) (ttname . string)
                                             (tpgid . number) (minflt . number)
                                             (majflt . number) (time . tramp-ps-time)
                                             (pri . number) (nice . number)
                                             (vsize . number) (rss . number)
                                             (etime . tramp-ps-time) (pcpu . number)
                                             (pmem . number) (args))
 tramp-debug-font-lock-keywords '(list
                                  (rx bol (regexp tramp-debug-outline-regexp) (+ nonl))
                                  '(1 font-lock-warning-face t t)
                                  '(0 (outline-font-lock-face) keep t))
 tramp-debug-message-fnh-function 'tramp-handle-file-remote-p
 tramp-debug-nesting ""
 tramp-debug-outline-regexp "[[:digit:]]+:[[:digit:]]+:[[:digit:]]+\\.[[:digit:]]+[[:blank:]]\\(?:\\(#<thread .+>\\)[[:blank:]]\\)?\\([[:alnum:]-]+\\) (\\([[:digit:]]+\\)) #"
 tramp-default-host "SCXMACQUATRAVAUXD"
 tramp-default-host-alist '(("adb" nil "") ("toolbox" nil "") ("rclone" nil ""))
 tramp-default-method "scp"
 tramp-default-method-alist '((nil "\\`\\(?:anonymous\\|ftp\\)\\'" "ftp")
                              ("\\`ftp\\." nil "ftp")
                              ("\\`\\(?:SCXMACQUATRAVAUXD\\|\\(?:127\\.0\\.0\\.1\\|::1\\|localhost[46]?\\)\\)\\'" "\\`root\\'" "su")
                              )
 tramp-default-method-marker "-"
 tramp-default-remote-shell "/bin/sh"
 tramp-default-user-alist '(("\\`\\(?:fcp\\|krlogin\\|nc\\|r\\(?:cp\\|emcp\\|sh\\)\\|telnet\\)\\'" nil "quatrava")
                            ("\\`\\(?:doas\\|ksu\\|su\\(?:do\\)?\\)\\'" nil "root")
                            ("\\`smb\\'" nil nil) ("\\`sudoedit\\'" nil "root"))
 tramp-devices 1
 tramp-dns-sd-service-regexp "^_[[:alnum:]-]+\\._tcp$"
 tramp-docker-method "docker"
 tramp-docker-program "docker"
 tramp-domain-regexp "[._[:alnum:]-]+"
 tramp-echo-mark "_echo "
 tramp-echo-mark-marker "_echo"
 tramp-echo-mark-marker-length 5
 tramp-echoed-echo-mark-regexp "\\(?:_echo\\(?: \\(?: \\)?\\)\\{5\\}\\)"
 tramp-encoding-command-interactive "-i"
 tramp-encoding-command-switch "-c"
 tramp-encoding-shell "/bin/sh"
 tramp-end-of-heredoc "efcbfaa4986a519aa1645cde94176c24"
 tramp-end-of-output "///cbdafc7059b0eaf394ac31b6fcd4024e#$"
 tramp-error-show-message-timeout 30
 tramp-file-mode-type-map '((0 . "-") (1 . "p") (2 . "c") (3 . "m") (4 . "d") (5 . "?")
                            (6 . "b") (7 . "?") (8 . "-") (9 . "n") (10 . "l") (11 . "?")
                            (12 . "s") (13 . "D") (14 . "w"))
 tramp-file-name-regexp (decode-coding-string
                          (base64-decode-string
                           "XCg/Ol4vXClcKFwoPzpcKD86XCgtXHxbWzphbG51bTpdXVx7MixcfVwpXCg/OjpcKVwoPzpcKFte\nLzp8WzpibGFuazpdXStcKVwoPzpAXClcKT9cKFwoPzpbJS5fWzphbG51bTpdLV0rXHxcKD86XFtc\nKVwoPzpcKD86W1s6YWxudW06XV0qOlwpK1suWzphbG51bTpdXSpcKT9cKD86XVwpXClcKD86XCg/\nOiNcKVwoPzpbWzpkaWdpdDpdXStcKVwpP1wpP1wpXCg/OnxcKVwpK1wpP1woPzpcKC1cfFtbOmFs\nbnVtOl1dXHsyLFx9XClcKD86OlwpXCg/OlwoW14vOnxbOmJsYW5rOl1dK1wpXCg/OkBcKVwpP1wo\nXCg/OlslLl9bOmFsbnVtOl0tXStcfFwoPzpcW1wpXCg/OlwoPzpbWzphbG51bTpdXSo6XCkrWy5b\nOmFsbnVtOl1dKlwpP1woPzpdXClcKVwoPzpcKD86I1wpXCg/OltbOmRpZ2l0Ol1dK1wpXCk/XCk/\nXClcKD86OlwpXChbXgoNXSpcJ1wp")
                          'raw-text)
 tramp-file-name-structure '("\\(?:^/\\)\\(\\(?:\\(?:\\(-\\|[[:alnum:]]\\{2,\\}\\)\\(?::\\)\\(?:\\([^/:|[:blank:]]+\\)\\(?:@\\)\\)?\\(\\(?:[%._[:alnum:]-]+\\|\\(?:\\[\\)\\(?:\\(?:[[:alnum:]]*:\\)+[.[:alnum:]]*\\)?\\(?:]\\)\\)\\(?:\\(?:#\\)\\(?:[[:digit:]]+\\)\\)?\\)?\\)\\(?:|\\)\\)+\\)?\\(?:\\(-\\|[[:alnum:]]\\{2,\\}\\)\\(?::\\)\\(?:\\([^/:|[:blank:]]+\\)\\(?:@\\)\\)?\\(\\(?:[%._[:alnum:]-]+\\|\\(?:\\[\\)\\(?:\\(?:[[:alnum:]]*:\\)+[.[:alnum:]]*\\)?\\(?:]\\)\\)\\(?:\\(?:#\\)\\(?:[[:digit:]]+\\)\\)?\\)?\\)\\(?::\\)\\([^\n
]*\\'\\)" 5 6 7 8 1)
 tramp-file-name-with-method "sudo"
 tramp-flatpak-connection-local-default-variables '((tramp-remote-path "/app/bin"
                                                     tramp-default-remote-path "/bin"
                                                     "/usr/bin" "/sbin" "/usr/sbin"
                                                     "/usr/local/bin" "/usr/local/sbin"
                                                     "/local/bin" "/local/freeware/bin"
                                                     "/local/gnu/bin" "/usr/freeware/bin"
                                                     "/usr/pkg/bin" "/usr/contrib/bin"
                                                     "/opt/bin" "/opt/sbin"
                                                     "/opt/local/bin")
                                                    )
 tramp-flatpak-method "flatpak"
 tramp-flatpak-program "flatpak"
 tramp-foreign-file-name-handler-alist '((tramp-adb-file-name-p .
                                          tramp-adb-file-name-handler)
                                         (tramp-ftp-file-name-p .
                                          tramp-ftp-file-name-handler)
                                         (tramp-rclone-file-name-p .
                                          tramp-rclone-file-name-handler)
                                         (tramp-smb-file-name-p .
                                          tramp-smb-file-name-handler)
                                         (tramp-sshfs-file-name-p .
                                          tramp-sshfs-file-name-handler)
                                         (tramp-sudoedit-file-name-p .
                                          tramp-sudoedit-file-name-handler)
                                         (identity . tramp-sh-file-name-handler))
 tramp-ftp-method "ftp"
 tramp-gio-events '("attribute-changed" "changed" "changes-done-hint" "created" "deleted"
                    "moved" "pre-unmount" "unmounted")
 tramp-goa-methods '("gdrive" "nextcloud")
 tramp-goa-service "org.gnome.OnlineAccounts"
 tramp-gvfs-file-name-handler-alist '((abbreviate-file-name .
                                       tramp-handle-abbreviate-file-name)
                                      (access-file . tramp-handle-access-file)
                                      (add-name-to-file . tramp-handle-add-name-to-file)
                                      (copy-directory . tramp-handle-copy-directory)
                                      (copy-file . tramp-gvfs-handle-copy-file)
                                      (delete-directory .
                                       tramp-gvfs-handle-delete-directory)
                                      (delete-file . tramp-gvfs-handle-delete-file)
                                      (directory-file-name .
                                       tramp-handle-directory-file-name)
                                      (directory-files . tramp-handle-directory-files)
                                      (directory-files-and-attributes .
                                       tramp-handle-directory-files-and-attributes)
                                      (dired-compress-file . ignore)
                                      (dired-uncache . tramp-handle-dired-uncache)
                                      (exec-path . ignore)
                                      (expand-file-name .
                                       tramp-gvfs-handle-expand-file-name)
                                      (file-accessible-directory-p .
                                       tramp-handle-file-accessible-directory-p)
                                      (file-acl . ignore)
                                      (file-attributes . tramp-gvfs-handle-file-attributes)
                                      (file-directory-p . tramp-handle-file-directory-p)
                                      (file-equal-p . tramp-handle-file-equal-p)
                                      (file-executable-p .
                                       tramp-gvfs-handle-file-executable-p)
                                      (file-exists-p . tramp-handle-file-exists-p)
                                      (file-group-gid . tramp-handle-file-group-gid)
                                      (file-in-directory-p .
                                       tramp-handle-file-in-directory-p)
                                      (file-local-copy . tramp-handle-file-local-copy)
                                      (file-locked-p . tramp-handle-file-locked-p)
                                      (file-modes . tramp-handle-file-modes)
                                      (file-name-all-completions .
                                       tramp-gvfs-handle-file-name-all-completions)
                                      (file-name-as-directory .
                                       tramp-handle-file-name-as-directory)
                                      (file-name-case-insensitive-p .
                                       tramp-handle-file-name-case-insensitive-p)
                                      (file-name-completion .
                                       tramp-handle-file-name-completion)
                                      (file-name-directory .
                                       tramp-handle-file-name-directory)
                                      (file-name-nondirectory .
                                       tramp-handle-file-name-nondirectory)
                                      (file-newer-than-file-p .
                                       tramp-handle-file-newer-than-file-p)
                                      (file-notify-add-watch .
                                       tramp-gvfs-handle-file-notify-add-watch)
                                      (file-notify-rm-watch .
                                       tramp-handle-file-notify-rm-watch)
                                      (file-notify-valid-p .
                                       tramp-handle-file-notify-valid-p)
                                      (file-ownership-preserved-p . ignore)
                                      (file-readable-p . tramp-handle-file-readable-p)
                                      (file-regular-p . tramp-handle-file-regular-p)
                                      (file-remote-p . tramp-handle-file-remote-p)
                                      (file-selinux-context .
                                       tramp-handle-file-selinux-context)
                                      (file-symlink-p . tramp-handle-file-symlink-p)
                                      (file-system-info .
                                       tramp-gvfs-handle-file-system-info)
                                      (file-truename . tramp-handle-file-truename)
                                      (file-user-uid . tramp-handle-file-user-uid)
                                      (file-writable-p . tramp-handle-file-writable-p)
                                      (find-backup-file-name .
                                       tramp-handle-find-backup-file-name)
                                      (insert-directory . tramp-handle-insert-directory)
                                      (insert-file-contents .
                                       tramp-handle-insert-file-contents)
                                      (list-system-processes . ignore)
                                      (load . tramp-handle-load)
                                      (lock-file . tramp-handle-lock-file)
                                      (make-auto-save-file-name .
                                       tramp-handle-make-auto-save-file-name)
                                      (make-directory . tramp-gvfs-handle-make-directory)
                                      (make-directory-internal . ignore)
                                      (make-lock-file-name .
                                       tramp-handle-make-lock-file-name)
                                      (make-nearby-temp-file .
                                       tramp-handle-make-nearby-temp-file)
                                      (make-process . ignore)
                                      (make-symbolic-link . tramp-handle-make-symbolic-link)
                                      (memory-info . ignore) (process-attributes . ignore)
                                      (process-file . ignore)
                                      (rename-file . tramp-gvfs-handle-rename-file)
                                      (set-file-acl . ignore)
                                      (set-file-modes . tramp-gvfs-handle-set-file-modes)
                                      (set-file-selinux-context . ignore)
                                      (set-file-times . tramp-gvfs-handle-set-file-times)
                                      (set-visited-file-modtime .
                                       tramp-handle-set-visited-file-modtime)
                                      (shell-command . ignore)
                                      (start-file-process . ignore)
                                      (substitute-in-file-name .
                                       tramp-handle-substitute-in-file-name)
                                      (temporary-file-directory .
                                       tramp-handle-temporary-file-directory)
                                      (tramp-get-home-directory .
                                       tramp-gvfs-handle-get-home-directory)
                                      (tramp-get-remote-gid .
                                       tramp-gvfs-handle-get-remote-gid)
                                      (tramp-get-remote-groups . ignore)
                                      (tramp-get-remote-uid .
                                       tramp-gvfs-handle-get-remote-uid)
                                      (tramp-set-file-uid-gid .
                                       tramp-gvfs-handle-set-file-uid-gid)
                                      (unhandled-file-name-directory . ignore)
                                      (unlock-file . tramp-handle-unlock-file)
                                      (vc-registered . ignore)
                                      (verify-visited-file-modtime .
                                       tramp-handle-verify-visited-file-modtime)
                                      (write-region . tramp-handle-write-region))
 tramp-gvfs-methods '("afp" "dav" "davs" "gdrive" "mtp" "nextcloud" "sftp")
 tramp-gvfs-service-afc-volumemonitor "org.gtk.vfs.AfcVolumeMonitor"
 tramp-gvfs-service-gphoto2-volumemonitor "org.gtk.vfs.GPhoto2VolumeMonitor"
 tramp-gvfs-service-mtp-volumemonitor "org.gtk.vfs.MTPVolumeMonitor"
 tramp-hexdump-awk-encode "%h -v -e '16/1 \" %%02x\" \"\\n\"' | %a '\\\nBEGIN {\n  b64 = \"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/\"\n  b16 = \"0123456789abcdef\"\n}\n{\n  for (c=1; c<=length($0); c++) {\n    d=index(b16, substr($0,c,1))\n    if (d--) {\n      for (b=1; b<=4; b++) {\n        o=o*2+int(d/8); d=(d*2)%%16\n        if (++obc==6) {\n          printf substr(b64,o+1,1)\n          if (++rc>75) { printf \"\\n\"; rc=0 }\n          obc=0; o=0\n        }\n      }\n    }\n  }\n}\nEND {\n  if (obc) {\n    tail=(obc==2) ? \"==\\n\" : \"=\\n\"\n    while (obc++<6) { o=o*2 }\n    printf \"%%c\", substr(b64,o+1,1)\n  } else {\n    tail=\"\\n\"\n  }\n  printf tail\n}'"
 tramp-hexdump-encode "%h -v -e '16/1 \" %%02x\" \"\\n\"'"
 tramp-histfile-override "/dev/null"
 tramp-host-regexp "[%._[:alnum:]-]+"
 tramp-host-with-port-regexp "\\([%._[:alnum:]-]+\\)\\(?:#\\)\\([[:digit:]]+\\)"
 tramp-initial-end-of-output "#$ "
 tramp-initial-file-name-regexp "\\`/[^/:]+:[^/:]*:"
 tramp-inline-compress-commands '(("env GZIP= gzip" "env GZIP= gzip -d")
                                  ("bzip2" "bzip2 -d") ("xz" "xz -d")
                                  ("zstd --rm" "zstd -d --rm") ("compress" "compress -d"))
 tramp-inline-compress-start-size 4096
 tramp-inodes 0
 tramp-integration-unload-hook '((closure
                                  (tramp-rfn-eshadow-overlay tramp-use-connection-share
                                   tramp-postfix-host-format recentf-exclude
                                   ivy-completing-read-handlers-alist info-lookup-alist
                                   ido-read-file-name-non-ido eshell-path-env t)
                                  nil
                                  (let ((glist (assq 'file shortdoc--groups)))
                                   (while
                                    (and (consp glist)
                                     (not
                                      (and (stringp (car (cdr glist)))
                                       (string-equal (car (cdr glist)) "Remote Files"))
                                      )
                                     )
                                    (setq glist (cdr glist)))
                                   (if (consp glist) (progn (setcdr glist nil))))
                                  )
                                 (closure
                                  (tramp-rfn-eshadow-overlay tramp-use-connection-share
                                   tramp-postfix-host-format recentf-exclude
                                   ivy-completing-read-handlers-alist info-lookup-alist
                                   ido-read-file-name-non-ido eshell-path-env t)
                                  nil
                                  (remove-hook 'tramp-cleanup-connection-hook
                                   #'tramp-recentf-cleanup)
                                  (remove-hook 'tramp-cleanup-all-connections-hook
                                   #'tramp-recentf-cleanup-all)
                                  )
                                 (closure
                                  (tramp-rfn-eshadow-overlay tramp-use-connection-share
                                   tramp-postfix-host-format recentf-exclude
                                   ivy-completing-read-handlers-alist info-lookup-alist
                                   ido-read-file-name-non-ido eshell-path-env t)
                                  nil
                                  (remove-hook 'compilation-mode-hook
                                   #'tramp-compile-disable-ssh-controlmaster-options)
                                  )
                                 (closure
                                  (tramp-rfn-eshadow-overlay tramp-use-connection-share
                                   tramp-postfix-host-format recentf-exclude
                                   ivy-completing-read-handlers-alist info-lookup-alist
                                   ido-read-file-name-non-ido eshell-path-env t)
                                  nil
                                  (progn
                                   (setq ido-read-file-name-non-ido
                                    (delq #'tramp-rename-these-files
                                     ido-read-file-name-non-ido)
                                    )
                                   (setq ido-read-file-name-non-ido
                                    (delq #'tramp-rename-files ido-read-file-name-non-ido))
                                   )
                                  )
                                 )
 tramp-ipv6-regexp "\\(?:[[:alnum:]]*:\\)+[.[:alnum:]]*"
 tramp-kubernetes--host-name-regexp "\\(?:\\([%._[:alnum:]-]+\\)\\.\\)?\\([%._[:alnum:]-]+\\)"
 tramp-kubernetes-connection-local-default-variables '((tramp-config-check .
                                                        tramp-kubernetes--current-context-data)
                                                       (tramp-extra-expand-args 97
                                                        (tramp-kubernetes--container
                                                         (car tramp-current-connection))
                                                        104
                                                        (tramp-kubernetes--pod
                                                         (car tramp-current-connection))
                                                        120
                                                        (tramp-kubernetes--context-namespace
                                                         (car tramp-current-connection))
                                                        )
                                                       )
 tramp-kubernetes-method "kubernetes"
 tramp-kubernetes-program "kubectl"
 tramp-local-coding-commands '((b64 base64-encode-region base64-decode-region)
                               (uu tramp-uuencode-region uudecode-decode-region)
                               (pack
                                "%p -e 'binmode STDIN; binmode STDOUT; print pack(q{u*}, join q{}, <>)' %n" "%p -e 'binmode STDIN; binmode STDOUT; print unpack(q{u*}, join q{}, <>)' %n")
                               )
 tramp-local-end-of-line "\n"
 tramp-local-host-regexp "\\`\\(?:SCXMACQUATRAVAUXD\\|\\(?:127\\.0\\.0\\.1\\|::1\\|localhost[46]?\\)\\)\\'"
 tramp-localname-regexp (decode-coding-string (base64-decode-string "W14KDV0qXCc=")
                          'raw-text)
 tramp-lock-file-info-regexp "\\`\\(.+\\)@\\(.+\\)\\.\\([[:digit:]]+\\)\\(?::[[:digit:]]+\\)?\\'"
 tramp-login-prompt-regexp ".*\\(?:login\\|user\\)\\(?:[[:blank:]].*\\)?:[[:blank:]]*"
 tramp-ls-file-attributes "%s -ild %s \"$1\" || return\n%s -lnd%s %s \"$1\""
 tramp-media-methods '("afc" "gphoto2" "mtp")
 tramp-method-regexp "-\\|[[:alnum:]]\\{2,\\}"
 tramp-method-regexp-alist '((default . "-\\|[[:alnum:]]\\{2,\\}") (simplified . "")
                             (separate . "\\(?:-\\|[[:alnum:]]\\{2,\\}\\)?"))
 tramp-methods '(("adb" (tramp-login-program "adb")
                  (tramp-login-args (("-s" "%d") ("shell"))) (tramp-direct-async t)
                  (tramp-tmpdir "/data/local/tmp") (tramp-default-port 5555))
                 ("flatpak" (tramp-login-program "flatpak")
                  (tramp-login-args (("enter") ("%h") ("%l")))
                  (tramp-direct-async ("/bin/sh" "-c")) (tramp-remote-shell "/bin/sh")
                  (tramp-remote-shell-login ("-l")) (tramp-remote-shell-args ("-c")))
                 ("toolbox" (tramp-login-program "toolbox")
                  (tramp-login-args (("run") ("-c" "%h") ("%l")))
                  (tramp-direct-async ("/bin/sh" "-c")) (tramp-remote-shell "/bin/sh")
                  (tramp-remote-shell-login ("-l")) (tramp-remote-shell-args ("-c")))
                 ("kubernetes" (tramp-login-program "kubectl")
                  (tramp-login-args
                   (("%x") ("exec") ("-c" "%a") ("%h") ("-it") ("--") ("%l")))
                  (tramp-direct-async ("/bin/sh" "-c")) (tramp-remote-shell "/bin/sh")
                  (tramp-remote-shell-login ("-l")) (tramp-remote-shell-args ("-i" "-c")))
                 ("podman" (tramp-login-program "podman")
                  (tramp-login-args (("exec") ("-it") ("-u" "%u") ("%h") ("%l")))
                  (tramp-direct-async ("/bin/sh" "-c")) (tramp-remote-shell "/bin/sh")
                  (tramp-remote-shell-login ("-l")) (tramp-remote-shell-args ("-i" "-c")))
                 ("docker" (tramp-login-program "docker")
                  (tramp-login-args (("exec") ("-it") ("-u" "%u") ("%h") ("%l")))
                  (tramp-direct-async ("/bin/sh" "-c")) (tramp-remote-shell "/bin/sh")
                  (tramp-remote-shell-login ("-l")) (tramp-remote-shell-args ("-i" "-c")))
                 ("ftp")
                 ("rclone"
                  (tramp-mount-args ("--no-unicode-normalization" "--dir-cache-time" "0s"))
                  (tramp-copyto-args nil) (tramp-moveto-args nil)
                  (tramp-about-args ("--full")))
                 ("fcp" (tramp-login-program "fsh")
                  (tramp-login-args (("%h") ("-l" "%u") ("sh" "-i")))
                  (tramp-remote-shell "/bin/sh") (tramp-remote-shell-login ("-l"))
                  (tramp-remote-shell-args ("-i") ("-c")) (tramp-copy-program "fcp")
                  (tramp-copy-args (("-p" "%k"))) (tramp-copy-keep-date t))
                 ("psftp" (tramp-login-program "plink")
                  (tramp-login-args
                   (("-l" "%u") ("-P" "%p") ("-ssh") ("%c") ("-t") ("%h") ("\"")
                    ("env 'TERM=dumb' 'PROMPT_COMMAND=' 'PS1=#$ '") ("%l") ("\""))
                   )
                  (tramp-remote-shell "/bin/sh") (tramp-remote-shell-login ("-l"))
                  (tramp-remote-shell-args ("-c")) (tramp-copy-program "pscp")
                  (tramp-copy-args (("-l" "%u") ("-P" "%p") ("-sftp") ("-p" "%k")))
                  (tramp-copy-keep-date t))
                 ("pscp" (tramp-login-program "plink")
                  (tramp-login-args
                   (("-l" "%u") ("-P" "%p") ("-ssh") ("%c") ("-t") ("%h") ("\"")
                    ("env 'TERM=dumb' 'PROMPT_COMMAND=' 'PS1=#$ '") ("%l") ("\""))
                   )
                  (tramp-remote-shell "/bin/sh") (tramp-remote-shell-login ("-l"))
                  (tramp-remote-shell-args ("-c")) (tramp-copy-program "pscp")
                  (tramp-copy-args
                   (("-l" "%u") ("-P" "%p") ("-scp") ("-p" "%k") ("-q") ("-r")))
                  (tramp-copy-keep-date t) (tramp-copy-recursive t))
                 ("plinkx" (tramp-login-program "plink")
                  (tramp-login-args
                   (("-load") ("%h") ("%c") ("-t") ("\"")
                    ("env 'TERM=dumb' 'PROMPT_COMMAND=' 'PS1=#$ '") ("%l") ("\""))
                   )
                  (tramp-remote-shell "/bin/sh") (tramp-remote-shell-login ("-l"))
                  (tramp-remote-shell-args ("-c")))
                 ("plink" (tramp-login-program "plink")
                  (tramp-login-args
                   (("-l" "%u") ("-P" "%p") ("-ssh") ("%c") ("-t") ("%h") ("\"")
                    ("env 'TERM=dumb' 'PROMPT_COMMAND=' 'PS1=#$ '") ("%l") ("\""))
                   )
                  (tramp-remote-shell "/bin/sh") (tramp-remote-shell-login ("-l"))
                  (tramp-remote-shell-args ("-c")))
                 ("krlogin" (tramp-login-program "krlogin")
                  (tramp-login-args (("%h") ("-l" "%u") ("-x")))
                  (tramp-remote-shell "/bin/sh") (tramp-remote-shell-login ("-l"))
                  (tramp-remote-shell-args ("-c")))
                 ("ksu" (tramp-login-program "ksu") (tramp-login-args (("%u") ("-q")))
                  (tramp-remote-shell "/bin/sh") (tramp-remote-shell-login ("-l"))
                  (tramp-remote-shell-args ("-c")) (tramp-connection-timeout 10))
                 ("doas" (tramp-login-program "doas")
                  (tramp-login-args (("-u" "%u") ("-s"))) (tramp-remote-shell "/bin/sh")
                  (tramp-remote-shell-args ("-c")) (tramp-connection-timeout 10)
                  (tramp-session-timeout 300) (tramp-password-previous-hop t))
                 ("sudo" (tramp-login-program "env")
                  (tramp-login-args
                   (("SUDO_PROMPT=P\"\"a\"\"s\"\"s\"\"w\"\"o\"\"r\"\"d\"\":") ("sudo")
                    ("-u" "%u") ("-s") ("-H") ("%l"))
                   )
                  (tramp-remote-shell "/bin/sh") (tramp-remote-shell-login ("-l"))
                  (tramp-remote-shell-args ("-c")) (tramp-connection-timeout 10)
                  (tramp-session-timeout 300) (tramp-password-previous-hop t))
                 ("sg" (tramp-login-program "sg") (tramp-login-args (("-") ("%u")))
                  (tramp-remote-shell "/bin/sh") (tramp-remote-shell-args ("-c"))
                  (tramp-connection-timeout 10))
                 ("su" (tramp-login-program "su") (tramp-login-args (("-") ("%u")))
                  (tramp-remote-shell "/bin/sh") (tramp-remote-shell-login ("-l"))
                  (tramp-remote-shell-args ("-c")) (tramp-connection-timeout 10))
                 ("nc" (tramp-login-program "telnet")
                  (tramp-login-args (("%h") ("%p") ("%n"))) (tramp-remote-shell "/bin/sh")
                  (tramp-remote-shell-login ("-l")) (tramp-remote-shell-args ("-c"))
                  (tramp-copy-program "nc")
                  (tramp-copy-args (("-w" "1") ("-v") ("%h") ("%r")))
                  (tramp-remote-copy-program "nc")
                  (tramp-remote-copy-args (("-l") ("-p" "%r") ("%n"))))
                 ("telnet" (tramp-login-program "telnet")
                  (tramp-login-args (("%h") ("%p") ("%n"))) (tramp-remote-shell "/bin/sh")
                  (tramp-remote-shell-login ("-l")) (tramp-remote-shell-args ("-c")))
                 ("sshx" (tramp-login-program "ssh")
                  (tramp-login-args
                   (("-l" "%u") ("-p" "%p") ("%c") ("-e" "none") ("-t" "-t")
                    ("-o" "RemoteCommand=\"%l\"") ("%h"))
                   )
                  (tramp-async-args (("-q"))) (tramp-remote-shell "/bin/sh")
                  (tramp-remote-shell-login ("-l")) (tramp-remote-shell-args ("-c")))
                 ("ssh" (tramp-login-program "ssh")
                  (tramp-login-args (("-l" "%u") ("-p" "%p") ("%c") ("-e" "none") ("%h")))
                  (tramp-async-args (("-q"))) (tramp-direct-async t)
                  (tramp-remote-shell "/bin/sh") (tramp-remote-shell-login ("-l"))
                  (tramp-remote-shell-args ("-c")))
                 ("remsh" (tramp-login-program "remsh")
                  (tramp-login-args (("%h") ("-l" "%u"))) (tramp-remote-shell "/bin/sh")
                  (tramp-remote-shell-login ("-l")) (tramp-remote-shell-args ("-c")))
                 ("rsh" (tramp-login-program "rsh") (tramp-login-args (("%h") ("-l" "%u")))
                  (tramp-remote-shell "/bin/sh") (tramp-remote-shell-login ("-l"))
                  (tramp-remote-shell-args ("-c")))
                 ("rsync" (tramp-login-program "ssh")
                  (tramp-login-args (("-l" "%u") ("-p" "%p") ("%c") ("-e" "none") ("%h")))
                  (tramp-async-args (("-q"))) (tramp-direct-async t)
                  (tramp-remote-shell "/bin/sh") (tramp-remote-shell-login ("-l"))
                  (tramp-remote-shell-args ("-c")) (tramp-copy-program "rsync")
                  (tramp-copy-args (("-t" "%k") ("-p") ("-r") ("-s") ("-c")))
                  (tramp-copy-env (("RSYNC_RSH") ("ssh") ("%c"))) (tramp-copy-keep-date t)
                  (tramp-copy-keep-tmpfile t) (tramp-copy-recursive t))
                 ("scpx" (tramp-login-program "ssh")
                  (tramp-login-args
                   (("-l" "%u") ("-p" "%p") ("%c") ("-e" "none") ("-t" "-t")
                    ("-o" "RemoteCommand=\"%l\"") ("%h"))
                   )
                  (tramp-async-args (("-q"))) (tramp-remote-shell "/bin/sh")
                  (tramp-remote-shell-login ("-l")) (tramp-remote-shell-args ("-c"))
                  (tramp-copy-program "scp")
                  (tramp-copy-args
                   (("-P" "%p") ("-p" "%k") ("%x") ("%y") ("%z") ("-q") ("-r") ("%c")))
                  (tramp-copy-keep-date t) (tramp-copy-recursive t))
                 ("scp" (tramp-login-program "ssh")
                  (tramp-login-args (("-l" "%u") ("-p" "%p") ("%c") ("-e" "none") ("%h")))
                  (tramp-async-args (("-q"))) (tramp-direct-async t)
                  (tramp-remote-shell "/bin/sh") (tramp-remote-shell-login ("-l"))
                  (tramp-remote-shell-args ("-c")) (tramp-copy-program "scp")
                  (tramp-copy-args
                   (("-P" "%p") ("-p" "%k") ("%x") ("%y") ("%z") ("-q") ("-r") ("%c")))
                  (tramp-copy-keep-date t) (tramp-copy-recursive t))
                 ("remcp" (tramp-login-program "remsh")
                  (tramp-login-args (("%h") ("-l" "%u"))) (tramp-remote-shell "/bin/sh")
                  (tramp-remote-shell-login ("-l")) (tramp-remote-shell-args ("-c"))
                  (tramp-copy-program "rcp") (tramp-copy-args (("-p" "%k")))
                  (tramp-copy-keep-date t))
                 ("rcp" (tramp-login-program "rsh") (tramp-login-args (("%h") ("-l" "%u")))
                  (tramp-remote-shell "/bin/sh") (tramp-remote-shell-login ("-l"))
                  (tramp-remote-shell-args ("-c")) (tramp-copy-program "rcp")
                  (tramp-copy-args (("-p" "%k") ("-r"))) (tramp-copy-keep-date t)
                  (tramp-copy-recursive t))
                 ("smb" (tramp-tmpdir "/C$/Temp") (tramp-case-insensitive t))
                 ("sshfs"
                  (tramp-mount-args
                   (("-C") ("-p" "%p") ("-o" "dir_cache=no") ("-o" "transform_symlinks")
                    ("-o" "idmap=user,reconnect"))
                   )
                  (tramp-login-program "ssh")
                  (tramp-login-args
                   (("-q") ("-l" "%u") ("-p" "%p") ("-e" "none") ("%a" "%a") ("%h") ("%l")))
                  (tramp-direct-async t) (tramp-remote-shell "/bin/sh")
                  (tramp-remote-shell-login ("-l")) (tramp-remote-shell-args ("-c")))
                 ("sudoedit"
                  (tramp-sudo-login
                   (("sudo") ("-u" "%u") ("-S") ("-H") ("-p" "Password:") ("--")))
                  (tramp-password-previous-hop t))
                 ("-"))
 tramp-mode t
 tramp-null-hop '(tramp-file-name "local" "quatrava" nil "SCXMACQUATRAVAUXD" nil nil nil)
 tramp-od-awk-encode "%o -v -t x1 -A n | %a '\\\nBEGIN {\n  b64 = \"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/\"\n  b16 = \"0123456789abcdef\"\n}\n{\n  for (c=1; c<=length($0); c++) {\n    d=index(b16, substr($0,c,1))\n    if (d--) {\n      for (b=1; b<=4; b++) {\n        o=o*2+int(d/8); d=(d*2)%%16\n        if (++obc==6) {\n          printf substr(b64,o+1,1)\n          if (++rc>75) { printf \"\\n\"; rc=0 }\n          obc=0; o=0\n        }\n      }\n    }\n  }\n}\nEND {\n  if (obc) {\n    tail=(obc==2) ? \"==\\n\" : \"=\\n\"\n    while (obc++<6) { o=o*2 }\n    printf \"%%c\", substr(b64,o+1,1)\n  } else {\n    tail=\"\\n\"\n  }\n  printf tail\n}'"
 tramp-od-encode "%o -v -t x1 -A n"
 tramp-operation-not-permitted-regexp "\\(?:preserving times.*\\|set mode\\):[[:blank:]]*Operation not permitted"
 tramp-otp-password-prompt-regexp (decode-coding-string
                                    (base64-decode-string
                                     "XCg/Ol4uKlwoVmVyaWZpY2F0aW9uIGNvZGVcKS4qWzrhn5bvuJPvuZXvvJpdW1s6Ymxhbms6XV0q\nXCk=")
                                    'raw-text)
 tramp-password-prompt-regexp (decode-coding-string
                                (base64-decode-string
                                 "XCg/Ol4uKlwoXCg/OmFkZ2FuZ3Nrb2RlXHxjb250cmFzZVwoPzpcKD86bnlcfMOxXClhXClcfGRl\nY3J5cHRpb24ga2V5XHxlbmNyeXB0aW9uIGtleVx8Z2VzbG9cfGhcKD86XCg/OmFzxYJcfGVzbFwp\nb1wpXHxpcGhhc2l3ZWRpXHxqZWxzesOzXHxsXCg/Om96aW5rYVx8w7ZzZW5vcmRcKVx8bVwoPzpv\ndCBkZSBwYXNzZVx84bqtdCBraOG6qXVcKVx8cFwoPzphXCg/OnJvbGFcfHNcKD86YWhpdHphXHxz\nXCg/OiBwaHJhc2VcfGNvZGVcfG9yZFx8cGhyYXNlXHx3b3JbZHRdXClcfHZvcnRvXClcKVx8aW5c\nKVx8c1woPzphbGFzYW5hXHxlbmhhXHxsYXB0YcW+b2Rpc1wpXHx3YWNodHdvb3JkXHzQu9C+0LfQ\nuNC90LrQsFx80L/QsNGA0L7Qu9GMXHzXodeh157XlFx82YPZhNmF2Kkg2KfZhNiz2LFcfOCkl+Cl\ngeCkquCljeCkpOCktuCkrOCljeCkplx84KS24KSs4KWN4KSm4KSV4KWC4KSfXHzgppfgp4Hgpqrg\np43gpqTgprbgpqzgp43gpqZcfOCmquCmvuCmuOCmk+Cnn+CmvuCmsOCnjeCmoVx84Kiq4Ki+4Ki4\n4Ki14Kiw4KihXHzgqqrgqr7gqrjgqrXgqrDgq43gqqFcfOCsquCtjeCssOCsrOCth+CstiDgrLjg\nrJngrY3grJXgrYfgrKRcfOCuleCun+CuteCvgeCumuCvjeCumuCviuCusuCvjVx84LC44LCC4LCV\n4LGH4LCk4LCq4LCm4LCu4LGBXHzgspfgs4Hgsqrgs43gsqTgsqrgsqZcfOC0heC0n+C0r+C0vuC0\ns+C0teC0vuC0leC1jeC0leC1jVx84La74LeE4LeD4LeK4La04Lav4La6XHzhnpbhnrbhnoDhn5Lh\nnpnhnp/hnpjhn5LhnoThnrbhno/hn4tcfOODkeOCueODr+ODvOODiVx85a+GW+eggeeivF1cfOyV\nlO2YuFwpXCkuKls64Z+W77iT77mV77yaXQA/W1s6Ymxhbms6XV0qXCk=")
                                'raw-text)
 tramp-perl-decode "%p -e '\n# This script contributed by Juanma Barranquero <lektu@terra.es>.\nuse strict;\n\nmy %%trans = do {\n    my $i = 0;\n    map {($_, substr(unpack(q(B8), chr $i++), 2, 6))}\n      split //, q(ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/)\n};\n\nmy %%bytes = map {(unpack(q(B8), chr $_), chr $_)} 0 .. 255;\n\nbinmode(\\*STDOUT);\n\n# We are going to accumulate into $pending to accept any line length\n# (we do not check they are <= 76 chars as the RFC says)\nmy $pending = q();\n\nwhile (my $data = "" {\n    chomp $data;\n\n    # If we find one or two =, we have reached the end and\n    # any following data is to be discarded\n    my $finished = $data =~ s/(==?).*/$1/;\n    $pending .= $data;\n\n    my $len = length($pending);\n    my $chunk = substr($pending, 0, $len & ~3);\n    $pending = substr($pending, $len & ~3 + 1);\n\n    # Easy method: translate from chars to (pregenerated) six-bit packets, join,\n    # split in 8-bit chunks and convert back to char.\n    print join q(),\n      map $bytes{$_},\n        ((join q(), map {$trans{$_} || q()} split //, $chunk) =~ /......../g);\n\n    last if $finished;\n}' %n"
 tramp-perl-decode-with-module "%p -MMIME::Base64 -0777 -ne 'print decode_base64($_)' %n"
 tramp-perl-directory-files-and-attributes "%p -e '\nchdir($ARGV[0]) or printf(\"\\\"Cannot change to $ARGV[0]: $''!''\\\"\\n\"), exit();\nopendir(DIR,\".\") or printf(\"\\\"Cannot open directory $ARGV[0]: $''!''\\\"\\n\"), exit();\n@list = readdir(DIR);\nclosedir(DIR);\n$n = scalar(@list);\nprintf(\"(\\n\");\nfor($i = 0; $i < $n; $i++)\n{\n    $filename = $list[$i];\n    @stat = lstat($filename);\n    if (($stat[2] & 0170000) == 0120000)\n    {\n        $type = readlink($filename);\n        $type =~ s/\"/\\\\\"/g;\n        $type = \"\\\"$type\\\"\";\n    }\n    elsif (($stat[2] & 0170000) == 040000)\n    {\n        $type = \"t\";\n    }\n    else\n    {\n        $type = \"nil\"\n    };\n    $filename =~ s/\"/\\\\\"/g;\n    printf(\n        \"(\\\"%%s\\\" %%s %%u (%%s . %%u) (%%s . %%u) (%%u %%u) (%%u %%u) (%%u %%u) %%u %%u t %%u -1)\\n\",\n        $filename,\n        $type,\n        $stat[3],\n        \"\\\"\" . getpwuid($stat[4]) . \"\\\"\",\n        $stat[4],\n        \"\\\"\" . getgrgid($stat[5]) . \"\\\"\",\n        $stat[5],\n        $stat[8] >> 16 & 0xffff,\n        $stat[8] & 0xffff,\n        $stat[9] >> 16 & 0xffff,\n        $stat[9] & 0xffff,\n        $stat[10] >> 16 & 0xffff,\n        $stat[10] & 0xffff,\n        $stat[7],\n        $stat[2],\n        $stat[1]);\n}\nprintf(\")\\n\");' \"$1\" %n"
 tramp-perl-encode "%p -e '\n# This script contributed by Juanma Barranquero <lektu@terra.es>.\nuse strict;\n\nmy %%trans = do {\n    my $i = 0;\n    map {(substr(unpack(q(B8), chr $i++), 2, 6), $_)}\n      split //, q(ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/);\n};\nmy $data;\n\n# We read in chunks of 54 bytes, to generate output lines\n# of 72 chars (plus end of line)\nwhile (read STDIN, $data, 54) {\n    my $pad = q();\n\n    # Only for the last chunk, and only if did not fill the last\n    # three-byte packet\n    if (eof) {\n        my $mod = length($data) %% 3;\n        $pad = q(=) x (3 - $mod) if $mod;\n    }\n\n    # Not the fastest method, but it is simple: unpack to binary string, split\n    # by groups of 6 bits and convert back from binary to byte; then map into\n    # the translation table\n    print\n      join q(),\n        map($trans{$_},\n            (substr(unpack(q(B*), $data) . q(00000), 0, 432) =~ /....../g)),\n              $pad,\n                qq(\\n);\n}' %n"
 tramp-perl-encode-with-module "%p -MMIME::Base64 -0777 -ne 'print encode_base64($_)' %n"
 tramp-perl-file-attributes "%p -e '\n@stat = lstat($ARGV[0]);\nif (!@stat) {\n    print \"nil\\n\";\n    exit 0;\n}\nif (($stat[2] & 0170000) == 0120000)\n{\n    $type = readlink($ARGV[0]);\n    $type =~ s/\"/\\\\\"/g;\n    $type = \"\\\"$type\\\"\";\n}\nelsif (($stat[2] & 0170000) == 040000)\n{\n    $type = \"t\";\n}\nelse\n{\n    $type = \"nil\"\n};\nprintf(\n    \"(%%s %%u (%%s . %%u) (%%s . %%u) (%%u %%u) (%%u %%u) (%%u %%u) %%u %%u t %%u -1)\\n\",\n    $type,\n    $stat[3],\n    \"\\\"\" . getpwuid($stat[4]) . \"\\\"\",\n    $stat[4],\n    \"\\\"\" . getgrgid($stat[5]) . \"\\\"\",\n    $stat[5],\n    $stat[8] >> 16 & 0xffff,\n    $stat[8] & 0xffff,\n    $stat[9] >> 16 & 0xffff,\n    $stat[9] & 0xffff,\n    $stat[10] >> 16 & 0xffff,\n    $stat[10] & 0xffff,\n    $stat[7],\n    $stat[2],\n    $stat[1]\n);' \"$1\" %n"
 tramp-perl-file-name-all-completions "%p -e '\n$dir = $ARGV[0];\nif ($dir ne \"/\") {\n  $dir =~ s#/+$##;\n}\nopendir(d, $dir) || die(\"$dir: $!\\nfail\\n\");\n@files = readdir(d); closedir(d);\nprint \"(\\n\";\nforeach $f (@files) {\n  ($p = $f) =~ s/\\\"/\\\\\\\"/g;\n  ($q = \"$dir/$f\") =~ s/\\\"/\\\\\\\"/g;\n  print \"(\",\n    ((-d \"$q\") ? \"\\\"$p/\\\" \\\"$q\\\" t\" : \"\\\"$p\\\" \\\"$q\\\" nil\"),\n    ((-e \"$q\") ? \" t\" : \" nil\"),\n    ((-r \"$q\") ? \" t\" : \" nil\"),\n    \")\\n\";\n}\nprint \")\\n\";\n' \"$1\" %n"
 tramp-perl-file-truename "%p -e '\nuse File::Spec;\nuse Cwd \"realpath\";\n\nsub myrealpath {\n    my ($file) = @_;\n    return realpath($file) if (-e $file || -l $file);\n}\n\nsub recursive {\n    my ($volume, @dirs) = @_;\n    my $real = myrealpath(File::Spec->catpath(\n                   $volume, File::Spec->catdir(@dirs), \"\"));\n    if ($real) {\n        my ($vol, $dir) = File::Spec->splitpath($real, 1);\n        return ($vol, File::Spec->splitdir($dir));\n    }\n    else {\n        my $last = pop(@dirs);\n        ($volume, @dirs) = recursive($volume, @dirs);\n        push(@dirs, $last);\n        return ($volume, @dirs);\n    }\n}\n\n$result = myrealpath($ARGV[0]);\nif (!$result) {\n    my ($vol, $dir) = File::Spec->splitpath($ARGV[0], 1);\n    ($vol, @dirs) = recursive($vol, File::Spec->splitdir($dir));\n\n    $result = File::Spec->catpath($vol, File::Spec->catdir(@dirs), \"\");\n}\n\nif (-l $ARGV[0]) {\n    print \"t\\n\";\n    }\nelse {\n    print \"nil\\n\";\n    }\n\n$result =~ s/\"/\\\\\"/g;\nprint \"\\\"$result\\\"\\n\";\n' \"$1\" %n"
 tramp-perl-id "%p -e '\nuse strict;\nuse warnings;\nuse POSIX qw(getgroups);\n\nmy ( $uid, $user ) = ( $>, scalar getpwuid $> );\nmy ( $gid, $group ) = ( $), scalar getgrgid $) );\nmy @groups = map { $_ . \"(\" . getgrgid ($_) . \")\" } getgroups ();\n\nprintf \"uid=%%d(%%s) gid=%%d(%%s) groups=%%s\\n\",\n  $uid, $user, $gid, $group, join \",\", @groups;' %n"
 tramp-perl-pack "%p -e 'binmode STDIN; binmode STDOUT; print pack(q{u*}, join q{}, <>)' %n"
 tramp-perl-unpack "%p -e 'binmode STDIN; binmode STDOUT; print unpack(q{u*}, join q{}, <>)' %n"
 tramp-permission-denied 'permission-denied
 tramp-persistency-file-name "~/.emacs.d/tramp"
 tramp-podman-method "podman"
 tramp-podman-program "podman"
 tramp-port-regexp "[[:digit:]]+"
 tramp-postfix-hop-format "|"
 tramp-postfix-hop-regexp "|"
 tramp-postfix-host-format ":"
 tramp-postfix-host-format-alist '((default . ":") (simplified . ":") (separate . "]"))
 tramp-postfix-host-regexp ":"
 tramp-postfix-ipv6-format "]"
 tramp-postfix-ipv6-format-alist '((default . "]") (simplified . "]") (separate . ""))
 tramp-postfix-ipv6-regexp "]"
 tramp-postfix-method-format ":"
 tramp-postfix-method-format-alist '((default . ":") (simplified . "") (separate . "/"))
 tramp-postfix-method-regexp ":"
 tramp-postfix-user-format "@"
 tramp-postfix-user-regexp "@"
 tramp-prefix-domain-format "%"
 tramp-prefix-domain-regexp "%"
 tramp-prefix-format "/"
 tramp-prefix-format-alist '((default . "/") (simplified . "/") (separate . "/["))
 tramp-prefix-ipv6-format "["
 tramp-prefix-ipv6-format-alist '((default . "[") (simplified . "[") (separate . ""))
 tramp-prefix-ipv6-regexp "\\["
 tramp-prefix-port-format "#"
 tramp-prefix-port-regexp "#"
 tramp-prefix-regexp "^/"
 tramp-process-alive-regexp ""
 tramp-process-attributes-ps-args '("-eww" "-o"
                                    "pid,euid,euser,egid,egroup,comm:80,state,ppid,pgrp,sess,tname,tpgid,min_flt,maj_flt,times,pri,nice,thcount,vsize,rss,etimes,pcpu,pmem,args")
 tramp-process-attributes-ps-format '((pid . number) (euid . number) (user . string)
                                      (egid . number) (group . string) (comm . 80)
                                      (state . string) (ppid . number) (pgrp . number)
                                      (sess . number) (ttname . string) (tpgid . number)
                                      (minflt . number) (majflt . number) (time . number)
                                      (pri . number) (nice . number) (thcount . number)
                                      (vsize . number) (rss . number) (etime . number)
                                      (pcpu . number) (pmem . number) (args))
 tramp-process-connection-type t
 tramp-python-id "%y -c '\nimport os, pwd, grp;\n\ndef idform(id):\n  return \"{:d}({:s})\".format(id, grp.getgrgid(id)[0]);\n\nuid = os.getuid();\nuser = pwd.getpwuid(uid)[0];\ngid = os.getgid();\ngroup = grp.getgrgid(gid)[0]\ngroups = map(idform, os.getgrouplist(user, gid));\n\nprint(\"uid={:d}({:s}) gid={:d}({:s}) groups={:s}\"\n      .format(uid, user, gid, group, \",\".join(groups)));' %n"
 tramp-rclone-file-name-handler-alist '((access-file . tramp-handle-access-file)
                                        (add-name-to-file . tramp-handle-add-name-to-file)
                                        (copy-directory . tramp-handle-copy-directory)
                                        (copy-file . tramp-rclone-handle-copy-file)
                                        (delete-directory .
                                         tramp-fuse-handle-delete-directory)
                                        (delete-file . tramp-fuse-handle-delete-file)
                                        (directory-file-name .
                                         tramp-handle-directory-file-name)
                                        (directory-files .
                                         tramp-fuse-handle-directory-files)
                                        (directory-files-and-attributes .
                                         tramp-handle-directory-files-and-attributes)
                                        (dired-compress-file . ignore)
                                        (dired-uncache . tramp-handle-dired-uncache)
                                        (exec-path . ignore)
                                        (expand-file-name . tramp-handle-expand-file-name)
                                        (file-accessible-directory-p .
                                         tramp-handle-file-accessible-directory-p)
                                        (file-acl . ignore)
                                        (file-attributes .
                                         tramp-fuse-handle-file-attributes)
                                        (file-directory-p . tramp-handle-file-directory-p)
                                        (file-equal-p . tramp-handle-file-equal-p)
                                        (file-executable-p .
                                         tramp-fuse-handle-file-executable-p)
                                        (file-exists-p . tramp-handle-file-exists-p)
                                        (file-group-gid . tramp-handle-file-group-gid)
                                        (file-in-directory-p .
                                         tramp-handle-file-in-directory-p)
                                        (file-local-copy . tramp-handle-file-local-copy)
                                        (file-locked-p . tramp-handle-file-locked-p)
                                        (file-modes . tramp-handle-file-modes)
                                        (file-name-all-completions .
                                         tramp-fuse-handle-file-name-all-completions)
                                        (file-name-as-directory .
                                         tramp-handle-file-name-as-directory)
                                        (file-name-case-insensitive-p .
                                         tramp-handle-file-name-case-insensitive-p)
                                        (file-name-completion .
                                         tramp-handle-file-name-completion)
                                        (file-name-directory .
                                         tramp-handle-file-name-directory)
                                        (file-name-nondirectory .
                                         tramp-handle-file-name-nondirectory)
                                        (file-newer-than-file-p .
                                         tramp-handle-file-newer-than-file-p)
                                        (file-notify-add-watch .
                                         tramp-handle-file-notify-add-watch)
                                        (file-notify-rm-watch .
                                         tramp-handle-file-notify-rm-watch)
                                        (file-notify-valid-p .
                                         tramp-handle-file-notify-valid-p)
                                        (file-ownership-preserved-p . ignore)
                                        (file-readable-p .
                                         tramp-rclone-handle-file-readable-p)
                                        (file-regular-p . tramp-handle-file-regular-p)
                                        (file-remote-p . tramp-handle-file-remote-p)
                                        (file-selinux-context .
                                         tramp-handle-file-selinux-context)
                                        (file-symlink-p . tramp-handle-file-symlink-p)
                                        (file-system-info .
                                         tramp-rclone-handle-file-system-info)
                                        (file-truename . tramp-handle-file-truename)
                                        (file-user-uid . tramp-handle-file-user-uid)
                                        (file-writable-p . tramp-handle-file-writable-p)
                                        (find-backup-file-name .
                                         tramp-handle-find-backup-file-name)
                                        (insert-directory . tramp-handle-insert-directory)
                                        (insert-file-contents .
                                         tramp-handle-insert-file-contents)
                                        (list-system-processes . ignore)
                                        (load . tramp-handle-load)
                                        (lock-file . tramp-handle-lock-file)
                                        (make-auto-save-file-name .
                                         tramp-handle-make-auto-save-file-name)
                                        (make-directory . tramp-fuse-handle-make-directory)
                                        (make-directory-internal . ignore)
                                        (make-lock-file-name .
                                         tramp-handle-make-lock-file-name)
                                        (make-nearby-temp-file .
                                         tramp-handle-make-nearby-temp-file)
                                        (make-process . ignore)
                                        (make-symbolic-link .
                                         tramp-handle-make-symbolic-link)
                                        (memory-info . ignore)
                                        (process-attributes . ignore)
                                        (process-file . ignore)
                                        (rename-file . tramp-rclone-handle-rename-file)
                                        (set-file-acl . ignore) (set-file-modes . ignore)
                                        (set-file-selinux-context . ignore)
                                        (set-file-times . ignore)
                                        (set-visited-file-modtime .
                                         tramp-handle-set-visited-file-modtime)
                                        (shell-command . ignore)
                                        (start-file-process . ignore)
                                        (substitute-in-file-name .
                                         tramp-handle-substitute-in-file-name)
                                        (temporary-file-directory .
                                         tramp-handle-temporary-file-directory)
                                        (tramp-get-home-directory . ignore)
                                        (tramp-get-remote-gid . ignore)
                                        (tramp-get-remote-groups . ignore)
                                        (tramp-get-remote-uid . ignore)
                                        (tramp-set-file-uid-gid . ignore)
                                        (unhandled-file-name-directory . ignore)
                                        (unlock-file . tramp-handle-unlock-file)
                                        (vc-registered . ignore)
                                        (verify-visited-file-modtime .
                                         tramp-handle-verify-visited-file-modtime)
                                        (write-region . tramp-handle-write-region))
 tramp-rclone-method "rclone"
 tramp-remote-coding-commands '((b64 "base64" "base64 -d -i") (b64 "base64" "base64 -d")
                                (b64 "openssl enc -base64" "openssl enc -d -base64")
                                (b64 "mimencode -b" "mimencode -u -b")
                                (b64 "mmencode -b" "mmencode -u -b")
                                (b64 "recode data..base64" "recode base64..data")
                                (b64 tramp-perl-encode-with-module
                                 tramp-perl-decode-with-module)
                                (b64 tramp-perl-encode tramp-perl-decode)
                                (b64 tramp-hexdump-awk-encode tramp-awk-decode)
                                (b64 tramp-od-awk-encode tramp-awk-decode)
                                (uu "uuencode xxx" "uudecode -o /dev/stdout"
                                 "test -c /dev/stdout")
                                (uu "uuencode xxx" "uudecode -o -")
                                (uu "uuencode xxx" "uudecode -p")
                                (uu "uuencode xxx" tramp-uudecode)
                                (pack tramp-perl-pack tramp-perl-unpack))
 tramp-remote-file-name-spec-regexp "\\(-\\|[[:alnum:]]\\{2,\\}\\)\\(?::\\)\\(?:\\([^/:|[:blank:]]+\\)\\(?:@\\)\\)?\\(\\(?:[%._[:alnum:]-]+\\|\\(?:\\[\\)\\(?:\\(?:[[:alnum:]]*:\\)+[.[:alnum:]]*\\)?\\(?:]\\)\\)\\(?:\\(?:#\\)\\(?:[[:digit:]]+\\)\\)?\\)?"
 tramp-remote-path '(tramp-own-remote-path tramp-default-remote-path "/bin" "/usr/bin"
                     "/sbin" "/usr/sbin" "/usr/local/bin" "/usr/local/sbin" "/local/bin"
                     "/local/freeware/bin" "/local/gnu/bin" "/usr/freeware/bin"
                     "/usr/pkg/bin" "/usr/contrib/bin" "/opt/bin" "/opt/sbin"
                     "/opt/local/bin")
 tramp-remote-process-environment '("GIT_COMMITTER_EMAIL=dominique.quatravaux@epfl.ch"
                                    "GIT_AUTHOR_EMAIL=dominique.quatravaux@epfl.ch"
                                    "GIT_AUTHOR_NAME=Dominique Quatravaux" "ENV=''"
                                    "TMOUT=0" "LC_CTYPE=''" "CDPATH=" "HISTORY=" "MAIL="
                                    "MAILCHECK=" "MAILPATH=" "PAGER=cat" "autocorrect="
                                    "correct=")
 tramp-repository-branch "HEAD"
 tramp-repository-version "b20b7910b413c13352213d37cac8e948ad554dc3"
 tramp-root-id-integer 0
 tramp-root-id-string "root"
 tramp-rsh-end-of-line "\n"
 tramp-security-key-confirm-regexp (decode-coding-string
                                     (base64-decode-string
                                      "Xg0qQ29uZmlybSB1c2VyIHByZXNlbmNlIGZvciBrZXkgLipbCg1dKg==")
                                     'raw-text)
 tramp-security-key-confirmed-regexp (decode-coding-string
                                       (base64-decode-string
                                        "Xg0qVXNlciBwcmVzZW5jZSBjb25maXJtZWRbCg1dKg==")
                                       'raw-text)
 tramp-security-key-timeout-regexp (decode-coding-string
                                     (base64-decode-string
                                      "Xg0qc2lnbl9hbmRfc2VuZF9wdWJrZXk6IHNpZ25pbmcgZmFpbGVkIGZvciAuKlsKDV0q")
                                     'raw-text)
 tramp-sh-extra-args '(("/bash\\'" . "-noediting -norc -noprofile")
                       ("/zsh\\'" . "-f +Z -V"))
 tramp-sh-file-name-handler-alist '((abbreviate-file-name .
                                     tramp-handle-abbreviate-file-name)
                                    (access-file . tramp-handle-access-file)
                                    (add-name-to-file . tramp-sh-handle-add-name-to-file)
                                    (copy-directory . tramp-sh-handle-copy-directory)
                                    (copy-file . tramp-sh-handle-copy-file)
                                    (delete-directory . tramp-sh-handle-delete-directory)
                                    (delete-file . tramp-sh-handle-delete-file)
                                    (directory-file-name . tramp-handle-directory-file-name)
                                    (directory-files . tramp-handle-directory-files)
                                    (directory-files-and-attributes .
                                     tramp-sh-handle-directory-files-and-attributes)
                                    (dired-compress-file .
                                     tramp-sh-handle-dired-compress-file)
                                    (dired-uncache . tramp-handle-dired-uncache)
                                    (exec-path . tramp-sh-handle-exec-path)
                                    (expand-file-name . tramp-sh-handle-expand-file-name)
                                    (file-accessible-directory-p .
                                     tramp-handle-file-accessible-directory-p)
                                    (file-acl . tramp-sh-handle-file-acl)
                                    (file-attributes . tramp-sh-handle-file-attributes)
                                    (file-directory-p . tramp-sh-handle-file-directory-p)
                                    (file-equal-p . tramp-handle-file-equal-p)
                                    (file-executable-p . tramp-sh-handle-file-executable-p)
                                    (file-exists-p . tramp-sh-handle-file-exists-p)
                                    (file-group-gid . tramp-handle-file-group-gid)
                                    (file-in-directory-p . tramp-handle-file-in-directory-p)
                                    (file-local-copy . tramp-sh-handle-file-local-copy)
                                    (file-locked-p . tramp-handle-file-locked-p)
                                    (file-modes . tramp-handle-file-modes)
                                    (file-name-all-completions .
                                     tramp-sh-handle-file-name-all-completions)
                                    (file-name-as-directory .
                                     tramp-handle-file-name-as-directory)
                                    (file-name-case-insensitive-p .
                                     tramp-handle-file-name-case-insensitive-p)
                                    (file-name-completion .
                                     tramp-handle-file-name-completion)
                                    (file-name-directory . tramp-handle-file-name-directory)
                                    (file-name-nondirectory .
                                     tramp-handle-file-name-nondirectory)
                                    (file-newer-than-file-p .
                                     tramp-handle-file-newer-than-file-p)
                                    (file-notify-add-watch .
                                     tramp-sh-handle-file-notify-add-watch)
                                    (file-notify-rm-watch .
                                     tramp-handle-file-notify-rm-watch)
                                    (file-notify-valid-p . tramp-handle-file-notify-valid-p)
                                    (file-ownership-preserved-p .
                                     tramp-sh-handle-file-ownership-preserved-p)
                                    (file-readable-p . tramp-sh-handle-file-readable-p)
                                    (file-regular-p . tramp-handle-file-regular-p)
                                    (file-remote-p . tramp-handle-file-remote-p)
                                    (file-selinux-context .
                                     tramp-sh-handle-file-selinux-context)
                                    (file-symlink-p . tramp-handle-file-symlink-p)
                                    (file-system-info . tramp-sh-handle-file-system-info)
                                    (file-truename . tramp-sh-handle-file-truename)
                                    (file-user-uid . tramp-handle-file-user-uid)
                                    (file-writable-p . tramp-sh-handle-file-writable-p)
                                    (find-backup-file-name .
                                     tramp-handle-find-backup-file-name)
                                    (insert-directory . tramp-sh-handle-insert-directory)
                                    (insert-file-contents .
                                     tramp-handle-insert-file-contents)
                                    (list-system-processes .
                                     tramp-handle-list-system-processes)
                                    (load . tramp-handle-load)
                                    (lock-file . tramp-handle-lock-file)
                                    (make-auto-save-file-name .
                                     tramp-handle-make-auto-save-file-name)
                                    (make-directory . tramp-sh-handle-make-directory)
                                    (make-lock-file-name . tramp-handle-make-lock-file-name)
                                    (make-nearby-temp-file .
                                     tramp-handle-make-nearby-temp-file)
                                    (make-process . tramp-sh-handle-make-process)
                                    (make-symbolic-link .
                                     tramp-sh-handle-make-symbolic-link)
                                    (memory-info . tramp-handle-memory-info)
                                    (process-attributes . tramp-handle-process-attributes)
                                    (process-file . tramp-sh-handle-process-file)
                                    (rename-file . tramp-sh-handle-rename-file)
                                    (set-file-acl . tramp-sh-handle-set-file-acl)
                                    (set-file-modes . tramp-sh-handle-set-file-modes)
                                    (set-file-selinux-context .
                                     tramp-sh-handle-set-file-selinux-context)
                                    (set-file-times . tramp-sh-handle-set-file-times)
                                    (set-visited-file-modtime .
                                     tramp-sh-handle-set-visited-file-modtime)
                                    (shell-command . tramp-handle-shell-command)
                                    (start-file-process . tramp-handle-start-file-process)
                                    (substitute-in-file-name .
                                     tramp-handle-substitute-in-file-name)
                                    (temporary-file-directory .
                                     tramp-handle-temporary-file-directory)
                                    (tramp-get-home-directory .
                                     tramp-sh-handle-get-home-directory)
                                    (tramp-get-remote-gid . tramp-sh-handle-get-remote-gid)
                                    (tramp-get-remote-groups .
                                     tramp-sh-handle-get-remote-groups)
                                    (tramp-get-remote-uid . tramp-sh-handle-get-remote-uid)
                                    (tramp-set-file-uid-gid .
                                     tramp-sh-handle-set-file-uid-gid)
                                    (unhandled-file-name-directory . ignore)
                                    (unlock-file . tramp-handle-unlock-file)
                                    (vc-registered . tramp-sh-handle-vc-registered)
                                    (verify-visited-file-modtime .
                                     tramp-sh-handle-verify-visited-file-modtime)
                                    (write-region . tramp-sh-handle-write-region))
 tramp-shell-prompt-pattern (decode-coding-string
                              (base64-decode-string
                               "XCg/Ol5cfA1cKVteXQojLSU+XSojP1tdIy0lPl1bWzpibGFuazpdXSo=")
                              'raw-text)
 tramp-smb-file-name-handler-alist '((abbreviate-file-name .
                                      tramp-handle-abbreviate-file-name)
                                     (access-file . tramp-handle-access-file)
                                     (add-name-to-file . tramp-smb-handle-add-name-to-file)
                                     (copy-directory . tramp-smb-handle-copy-directory)
                                     (copy-file . tramp-smb-handle-copy-file)
                                     (delete-directory . tramp-smb-handle-delete-directory)
                                     (delete-file . tramp-smb-handle-delete-file)
                                     (directory-file-name .
                                      tramp-handle-directory-file-name)
                                     (directory-files . tramp-handle-directory-files)
                                     (directory-files-and-attributes .
                                      tramp-handle-directory-files-and-attributes)
                                     (dired-compress-file . ignore)
                                     (dired-uncache . tramp-handle-dired-uncache)
                                     (exec-path . ignore)
                                     (expand-file-name . tramp-smb-handle-expand-file-name)
                                     (file-accessible-directory-p .
                                      tramp-handle-file-accessible-directory-p)
                                     (file-acl . tramp-smb-handle-file-acl)
                                     (file-attributes . tramp-smb-handle-file-attributes)
                                     (file-directory-p . tramp-handle-file-directory-p)
                                     (file-file-equal-p . tramp-handle-file-equal-p)
                                     (file-executable-p . tramp-handle-file-exists-p)
                                     (file-exists-p . tramp-handle-file-exists-p)
                                     (file-group-gid . tramp-handle-file-group-gid)
                                     (file-in-directory-p .
                                      tramp-handle-file-in-directory-p)
                                     (file-local-copy . tramp-smb-handle-file-local-copy)
                                     (file-locked-p . tramp-handle-file-locked-p)
                                     (file-modes . tramp-handle-file-modes)
                                     (file-name-all-completions .
                                      tramp-smb-handle-file-name-all-completions)
                                     (file-name-as-directory .
                                      tramp-handle-file-name-as-directory)
                                     (file-name-case-insensitive-p .
                                      tramp-handle-file-name-case-insensitive-p)
                                     (file-name-completion .
                                      tramp-handle-file-name-completion)
                                     (file-name-directory .
                                      tramp-handle-file-name-directory)
                                     (file-name-nondirectory .
                                      tramp-handle-file-name-nondirectory)
                                     (file-newer-than-file-p .
                                      tramp-handle-file-newer-than-file-p)
                                     (file-notify-add-watch .
                                      tramp-handle-file-notify-add-watch)
                                     (file-notify-rm-watch .
                                      tramp-handle-file-notify-rm-watch)
                                     (file-notify-valid-p .
                                      tramp-handle-file-notify-valid-p)
                                     (file-ownership-preserved-p . ignore)
                                     (file-readable-p . tramp-handle-file-exists-p)
                                     (file-regular-p . tramp-handle-file-regular-p)
                                     (file-remote-p . tramp-handle-file-remote-p)
                                     (file-selinux-context .
                                      tramp-handle-file-selinux-context)
                                     (file-symlink-p . tramp-handle-file-symlink-p)
                                     (file-system-info . tramp-smb-handle-file-system-info)
                                     (file-truename . tramp-handle-file-truename)
                                     (file-user-uid . tramp-handle-file-user-uid)
                                     (file-writable-p . tramp-smb-handle-file-writable-p)
                                     (find-backup-file-name .
                                      tramp-handle-find-backup-file-name)
                                     (insert-directory . tramp-smb-handle-insert-directory)
                                     (insert-file-contents .
                                      tramp-handle-insert-file-contents)
                                     (list-system-processes . ignore)
                                     (load . tramp-handle-load)
                                     (lock-file . tramp-handle-lock-file)
                                     (make-auto-save-file-name .
                                      tramp-handle-make-auto-save-file-name)
                                     (make-directory . tramp-smb-handle-make-directory)
                                     (make-directory-internal . ignore)
                                     (make-lock-file-name .
                                      tramp-handle-make-lock-file-name)
                                     (make-nearby-temp-file .
                                      tramp-handle-make-nearby-temp-file)
                                     (make-process . ignore)
                                     (make-symbolic-link .
                                      tramp-smb-handle-make-symbolic-link)
                                     (memory-info . ignore) (process-attributes . ignore)
                                     (process-file . tramp-smb-handle-process-file)
                                     (rename-file . tramp-smb-handle-rename-file)
                                     (set-file-acl . tramp-smb-handle-set-file-acl)
                                     (set-file-modes . tramp-smb-handle-set-file-modes)
                                     (set-file-selinux-context . ignore)
                                     (set-file-times . ignore)
                                     (set-visited-file-modtime .
                                      tramp-handle-set-visited-file-modtime)
                                     (shell-command . tramp-handle-shell-command)
                                     (start-file-process .
                                      tramp-smb-handle-start-file-process)
                                     (substitute-in-file-name .
                                      tramp-smb-handle-substitute-in-file-name)
                                     (temporary-file-directory .
                                      tramp-handle-temporary-file-directory)
                                     (tramp-get-home-directory .
                                      tramp-smb-handle-get-home-directory)
                                     (tramp-get-remote-gid . ignore)
                                     (tramp-get-remote-groups . ignore)
                                     (tramp-get-remote-uid . ignore)
                                     (tramp-set-file-uid-gid . ignore)
                                     (unhandled-file-name-directory . ignore)
                                     (unlock-file . tramp-handle-unlock-file)
                                     (vc-registered . ignore)
                                     (verify-visited-file-modtime .
                                      tramp-handle-verify-visited-file-modtime)
                                     (write-region . tramp-smb-handle-write-region))
 tramp-smb-method "smb"
 tramp-sshfs-file-name-handler-alist '((access-file . tramp-handle-access-file)
                                       (add-name-to-file . tramp-handle-add-name-to-file)
                                       (copy-directory . tramp-handle-copy-directory)
                                       (copy-file . tramp-sshfs-handle-copy-file)
                                       (delete-directory .
                                        tramp-fuse-handle-delete-directory)
                                       (delete-file . tramp-fuse-handle-delete-file)
                                       (directory-file-name .
                                        tramp-handle-directory-file-name)
                                       (directory-files . tramp-fuse-handle-directory-files)
                                       (directory-files-and-attributes .
                                        tramp-handle-directory-files-and-attributes)
                                       (dired-compress-file . ignore)
                                       (dired-uncache . tramp-handle-dired-uncache)
                                       (exec-path . tramp-sshfs-handle-exec-path)
                                       (expand-file-name . tramp-handle-expand-file-name)
                                       (file-accessible-directory-p .
                                        tramp-handle-file-accessible-directory-p)
                                       (file-acl . ignore)
                                       (file-attributes . tramp-fuse-handle-file-attributes)
                                       (file-directory-p . tramp-handle-file-directory-p)
                                       (file-equal-p . tramp-handle-file-equal-p)
                                       (file-executable-p .
                                        tramp-fuse-handle-file-executable-p)
                                       (file-exists-p . tramp-fuse-handle-file-exists-p)
                                       (file-group-gid . tramp-handle-file-group-gid)
                                       (file-in-directory-p .
                                        tramp-handle-file-in-directory-p)
                                       (file-local-copy . tramp-handle-file-local-copy)
                                       (file-locked-p . tramp-handle-file-locked-p)
                                       (file-modes . tramp-handle-file-modes)
                                       (file-name-all-completions .
                                        tramp-fuse-handle-file-name-all-completions)
                                       (file-name-as-directory .
                                        tramp-handle-file-name-as-directory)
                                       (file-name-case-insensitive-p .
                                        tramp-handle-file-name-case-insensitive-p)
                                       (file-name-completion .
                                        tramp-handle-file-name-completion)
                                       (file-name-directory .
                                        tramp-handle-file-name-directory)
                                       (file-name-nondirectory .
                                        tramp-handle-file-name-nondirectory)
                                       (file-newer-than-file-p .
                                        tramp-handle-file-newer-than-file-p)
                                       (file-notify-add-watch .
                                        tramp-handle-file-notify-add-watch)
                                       (file-notify-rm-watch .
                                        tramp-handle-file-notify-rm-watch)
                                       (file-notify-valid-p .
                                        tramp-handle-file-notify-valid-p)
                                       (file-ownership-preserved-p . ignore)
                                       (file-readable-p . tramp-handle-file-readable-p)
                                       (file-regular-p . tramp-handle-file-regular-p)
                                       (file-remote-p . tramp-handle-file-remote-p)
                                       (file-selinux-context .
                                        tramp-handle-file-selinux-context)
                                       (file-symlink-p . tramp-handle-file-symlink-p)
                                       (file-system-info .
                                        tramp-sshfs-handle-file-system-info)
                                       (file-truename . tramp-handle-file-truename)
                                       (file-user-uid . tramp-handle-file-user-uid)
                                       (file-writable-p .
                                        tramp-sshfs-handle-file-writable-p)
                                       (find-backup-file-name .
                                        tramp-handle-find-backup-file-name)
                                       (insert-directory . tramp-handle-insert-directory)
                                       (insert-file-contents .
                                        tramp-sshfs-handle-insert-file-contents)
                                       (list-system-processes .
                                        tramp-handle-list-system-processes)
                                       (load . tramp-handle-load)
                                       (lock-file . tramp-handle-lock-file)
                                       (make-auto-save-file-name .
                                        tramp-handle-make-auto-save-file-name)
                                       (make-directory . tramp-fuse-handle-make-directory)
                                       (make-directory-internal . ignore)
                                       (make-lock-file-name .
                                        tramp-handle-make-lock-file-name)
                                       (make-nearby-temp-file .
                                        tramp-handle-make-nearby-temp-file)
                                       (make-process . tramp-handle-make-process)
                                       (make-symbolic-link .
                                        tramp-handle-make-symbolic-link)
                                       (memory-info . tramp-handle-memory-info)
                                       (process-attributes .
                                        tramp-handle-process-attributes)
                                       (process-file . tramp-sshfs-handle-process-file)
                                       (rename-file . tramp-sshfs-handle-rename-file)
                                       (set-file-acl . ignore)
                                       (set-file-modes . tramp-sshfs-handle-set-file-modes)
                                       (set-file-selinux-context . ignore)
                                       (set-file-times . tramp-sshfs-handle-set-file-times)
                                       (set-visited-file-modtime .
                                        tramp-handle-set-visited-file-modtime)
                                       (shell-command . tramp-handle-shell-command)
                                       (start-file-process .
                                        tramp-handle-start-file-process)
                                       (substitute-in-file-name .
                                        tramp-handle-substitute-in-file-name)
                                       (temporary-file-directory .
                                        tramp-handle-temporary-file-directory)
                                       (tramp-get-home-directory . ignore)
                                       (tramp-get-remote-gid . ignore)
                                       (tramp-get-remote-groups . ignore)
                                       (tramp-get-remote-uid . ignore)
                                       (tramp-set-file-uid-gid . ignore)
                                       (unhandled-file-name-directory . ignore)
                                       (unlock-file . tramp-handle-unlock-file)
                                       (vc-registered . ignore)
                                       (verify-visited-file-modtime .
                                        tramp-handle-verify-visited-file-modtime)
                                       (write-region . tramp-sshfs-handle-write-region))
 tramp-sshfs-method "sshfs"
 tramp-stat-directory-files-and-attributes "cd \"$1\" && echo \"(\"; (%l -a | tr '\\n\\r' '\\000\\000' | xargs -0 %s -c '(/////%%n///// (/////%%N/////) %%h (/////%%U///// . %%u) (/////%%G///// . %%g) %%X %%Y %%Z %%s /////%%A///// t %%i -1)' -- %n | sed -e 's/\"/\\\\\"/g' -e 's/\\/\\/\\/\\/\\//\"/g'); echo \")\""
 tramp-stat-directory-files-and-attributes-with-selinux "cd \"$1\" && echo \"(\"; (%l -a | tr '\\n\\r' '\\000\\000' | xargs -0 %s -c '(/////%%n///// (/////%%N/////) %%h (/////%%U///// . %%u) (/////%%G///// . %%g) %%X %%Y %%Z %%s /////%%A///// t %%i -1 /////%%C/////)' -- %n | sed -e 's/\"/\\\\\"/g' -e 's/\\/\\/\\/\\/\\//\"/g'); echo \")\""
 tramp-stat-file-attributes "(%s -c '((/////%%N/////) %%h (/////%%U///// . %%u) (/////%%G///// . %%g) %%X %%Y %%Z %%s /////%%A///// t %%i -1)' \"$1\" %n || echo nil) | sed -e 's/\"/\\\\\"/g' -e 's/\\/\\/\\/\\/\\//\"/g'"
 tramp-stat-file-attributes-with-selinux "(%s -c '((/////%%N/////) %%h (/////%%U///// . %%u) (/////%%G///// . %%g) %%X %%Y %%Z %%s /////%%A///// t %%i -1 /////%%C/////)' \"$1\" %n || echo nil) | sed -e 's/\"/\\\\\"/g' -e 's/\\/\\/\\/\\/\\//\"/g'"
 tramp-stat-marker "/////"
 tramp-stat-quoted-marker "\\/\\/\\/\\/\\/"
 tramp-sudoedit-file-name-handler-alist '((abbreviate-file-name .
                                           tramp-handle-abbreviate-file-name)
                                          (access-file . tramp-handle-access-file)
                                          (add-name-to-file .
                                           tramp-sudoedit-handle-add-name-to-file)
                                          (byte-compiler-base-file-name . ignore)
                                          (copy-directory . tramp-handle-copy-directory)
                                          (copy-file . tramp-sudoedit-handle-copy-file)
                                          (delete-directory .
                                           tramp-sudoedit-handle-delete-directory)
                                          (delete-file . tramp-sudoedit-handle-delete-file)
                                          (diff-latest-backup-file . ignore)
                                          (directory-files . tramp-handle-directory-files)
                                          (directory-files-and-attributes .
                                           tramp-handle-directory-files-and-attributes)
                                          (dired-compress-file . ignore)
                                          (dired-uncache . tramp-handle-dired-uncache)
                                          (exec-path . ignore)
                                          (expand-file-name .
                                           tramp-sudoedit-handle-expand-file-name)
                                          (file-accessible-directory-p .
                                           tramp-handle-file-accessible-directory-p)
                                          (file-acl . tramp-sudoedit-handle-file-acl)
                                          (file-attributes .
                                           tramp-sudoedit-handle-file-attributes)
                                          (file-directory-p . tramp-handle-file-directory-p)
                                          (file-equal-p . tramp-handle-file-equal-p)
                                          (file-executable-p .
                                           tramp-sudoedit-handle-file-executable-p)
                                          (file-exists-p .
                                           tramp-sudoedit-handle-file-exists-p)
                                          (file-group-gid . tramp-handle-file-group-gid)
                                          (file-in-directory-p .
                                           tramp-handle-file-in-directory-p)
                                          (file-local-copy . tramp-handle-file-local-copy)
                                          (file-locked-p . tramp-handle-file-locked-p)
                                          (file-modes . tramp-handle-file-modes)
                                          (file-name-all-completions .
                                           tramp-sudoedit-handle-file-name-all-completions)
                                          (file-name-as-directory .
                                           tramp-handle-file-name-as-directory)
                                          (file-name-case-insensitive-p .
                                           tramp-handle-file-name-case-insensitive-p)
                                          (file-name-completion .
                                           tramp-handle-file-name-completion)
                                          (file-name-directory .
                                           tramp-handle-file-name-directory)
                                          (file-name-nondirectory .
                                           tramp-handle-file-name-nondirectory)
                                          (file-newer-than-file-p .
                                           tramp-handle-file-newer-than-file-p)
                                          (file-notify-add-watch .
                                           tramp-handle-file-notify-add-watch)
                                          (file-notify-rm-watch .
                                           tramp-handle-file-notify-rm-watch)
                                          (file-notify-valid-p .
                                           tramp-handle-file-notify-valid-p)
                                          (file-ownership-preserved-p . ignore)
                                          (file-readable-p .
                                           tramp-sudoedit-handle-file-readable-p)
                                          (file-regular-p . tramp-handle-file-regular-p)
                                          (file-remote-p . tramp-handle-file-remote-p)
                                          (file-selinux-context .
                                           tramp-sudoedit-handle-file-selinux-context)
                                          (file-symlink-p . tramp-handle-file-symlink-p)
                                          (file-system-info .
                                           tramp-sudoedit-handle-file-system-info)
                                          (file-truename .
                                           tramp-sudoedit-handle-file-truename)
                                          (file-user-uid . tramp-handle-file-user-uid)
                                          (file-writable-p .
                                           tramp-sudoedit-handle-file-writable-p)
                                          (find-backup-file-name .
                                           tramp-handle-find-backup-file-name)
                                          (insert-directory . tramp-handle-insert-directory)
                                          (insert-file-contents .
                                           tramp-handle-insert-file-contents)
                                          (list-system-processes . ignore)
                                          (load . tramp-handle-load)
                                          (lock-file . tramp-handle-lock-file)
                                          (make-auto-save-file-name .
                                           tramp-handle-make-auto-save-file-name)
                                          (make-directory .
                                           tramp-sudoedit-handle-make-directory)
                                          (make-directory-internal . ignore)
                                          (make-lock-file-name .
                                           tramp-handle-make-lock-file-name)
                                          (make-nearby-temp-file .
                                           tramp-handle-make-nearby-temp-file)
                                          (make-process . ignore)
                                          (make-symbolic-link .
                                           tramp-sudoedit-handle-make-symbolic-link)
                                          (memory-info . ignore)
                                          (process-attributes . ignore)
                                          (process-file . ignore)
                                          (rename-file . tramp-sudoedit-handle-rename-file)
                                          (set-file-acl .
                                           tramp-sudoedit-handle-set-file-acl)
                                          (set-file-modes .
                                           tramp-sudoedit-handle-set-file-modes)
                                          (set-file-selinux-context .
                                           tramp-sudoedit-handle-set-file-selinux-context)
                                          (set-file-times .
                                           tramp-sudoedit-handle-set-file-times)
                                          (set-visited-file-modtime .
                                           tramp-handle-set-visited-file-modtime)
                                          (shell-command . ignore)
                                          (start-file-process . ignore)
                                          (substitute-in-file-name .
                                           tramp-handle-substitute-in-file-name)
                                          (temporary-file-directory .
                                           tramp-handle-temporary-file-directory)
                                          (tramp-get-home-directory .
                                           tramp-sudoedit-handle-get-home-directory)
                                          (tramp-get-remote-gid .
                                           tramp-sudoedit-handle-get-remote-gid)
                                          (tramp-get-remote-groups .
                                           tramp-sudoedit-handle-get-remote-groups)
                                          (tramp-get-remote-uid .
                                           tramp-sudoedit-handle-get-remote-uid)
                                          (tramp-set-file-uid-gid .
                                           tramp-sudoedit-handle-set-file-uid-gid)
                                          (unhandled-file-name-directory . ignore)
                                          (unlock-file . tramp-handle-unlock-file)
                                          (vc-registered . ignore)
                                          (verify-visited-file-modtime .
                                           tramp-handle-verify-visited-file-modtime)
                                          (write-region . tramp-handle-write-region))
 tramp-sudoedit-method "sudoedit"
 tramp-sunos-unames "\\(?:SunOS 5\\.1[01]\\)"
 tramp-syntax 'default
 tramp-system-name "SCXMACQUATRAVAUXD"
 tramp-tainted-remote-process-buffers '(#<buffer *tramp/kubernetes
                                        satosa-559b5f8d5c-vsb2l*>)
 tramp-temp-buffer-name " *tramp temp*"
 tramp-temp-name-prefix "tramp."
 tramp-terminal-prompt-regexp "\\(?:TERM = (.*)\\|Terminal type\\? \\[.*]\\)[[:blank:]]*"
 tramp-terminal-type "dumb"
 tramp-time-doesnt-exist '(-1 65535)
 tramp-time-dont-know '(0 0 0 1000)
 tramp-toolbox-method "toolbox"
 tramp-toolbox-program "toolbox"
 tramp-unknown-id-integer -1
 tramp-unknown-id-string "UNKNOWN"
 tramp-unload-hook '((closure (reporter-prompt-for-summary-p reporter-eval-buffer t) nil
                      (unload-feature 'tramp-cmds 'force))
                     (closure (reporter-prompt-for-summary-p reporter-eval-buffer t) nil
                      (remove-hook 'kill-buffer-hook
                       #'tramp-delete-tainted-remote-process-buffer-function)
                      )
                     (closure (t) nil (unload-feature 'tramp-container 'force))
                     (closure
                      (vc-hg-program vc-git-program vc-bzr-program
                       ls-lisp-use-insert-directory-program dired-compress-file-suffixes t)
                      nil (unload-feature 'tramp-sh 'force))
                     (closure
                      (cl-struct-tramp-file-name-tags tramp-completion-file-name-regexp
                       tramp-completion-method-regexp tramp-file-name-structure
                       tramp-remote-file-name-spec-regexp tramp-postfix-host-regexp
                       tramp-postfix-host-format tramp-postfix-ipv6-regexp
                       tramp-postfix-ipv6-format tramp-prefix-ipv6-regexp
                       tramp-prefix-ipv6-format tramp-postfix-method-regexp
                       tramp-postfix-method-format tramp-method-regexp tramp-prefix-regexp
                       tramp-prefix-format ls-lisp-verbosity
                       ls-lisp-use-insert-directory-program ls-lisp-ignore-case
                       ls-lisp-emulation ls-lisp-dirs-first t)
                      nil (remove-hook 'signal-process-functions #'tramp-signal-process))
                     (closure
                      (cl-struct-tramp-file-name-tags tramp-completion-file-name-regexp
                       tramp-completion-method-regexp tramp-file-name-structure
                       tramp-remote-file-name-spec-regexp tramp-postfix-host-regexp
                       tramp-postfix-host-format tramp-postfix-ipv6-regexp
                       tramp-postfix-ipv6-format tramp-prefix-ipv6-regexp
                       tramp-prefix-ipv6-format tramp-postfix-method-regexp
                       tramp-postfix-method-format tramp-method-regexp tramp-prefix-regexp
                       tramp-prefix-format ls-lisp-verbosity
                       ls-lisp-use-insert-directory-program ls-lisp-ignore-case
                       ls-lisp-emulation ls-lisp-dirs-first t)
                      nil
                      (remove-hook 'interrupt-process-functions #'tramp-interrupt-process))
                     (closure
                      (cl-struct-tramp-file-name-tags tramp-completion-file-name-regexp
                       tramp-completion-method-regexp tramp-file-name-structure
                       tramp-remote-file-name-spec-regexp tramp-postfix-host-regexp
                       tramp-postfix-host-format tramp-postfix-ipv6-regexp
                       tramp-postfix-ipv6-format tramp-prefix-ipv6-regexp
                       tramp-prefix-ipv6-format tramp-postfix-method-regexp
                       tramp-postfix-method-format tramp-method-regexp tramp-prefix-regexp
                       tramp-prefix-format ls-lisp-verbosity
                       ls-lisp-use-insert-directory-program ls-lisp-ignore-case
                       ls-lisp-emulation ls-lisp-dirs-first t)
                      nil (remove-hook 'kill-buffer-hook #'tramp-delete-temp-file-function))
                     (closure (t) nil (unload-feature 'tramp-cache 'force))
                     tramp-unload-file-name-handlers
                     #[0 "\300\301\302\"\207" [unload-feature trampver force] 3]
                     (closure
                      (tramp-rfn-eshadow-overlay tramp-use-connection-share
                       tramp-postfix-host-format recentf-exclude
                       ivy-completing-read-handlers-alist info-lookup-alist
                       ido-read-file-name-non-ido eshell-path-env t)
                      nil (unload-feature 'tramp-integration 'force))
                     (closure
                      (tramp-rfn-eshadow-overlay tramp-use-connection-share
                       tramp-postfix-host-format recentf-exclude
                       ivy-completing-read-handlers-alist info-lookup-alist
                       ido-read-file-name-non-ido eshell-path-env t)
                      nil
                      (remove-hook 'find-file-hook
                       #'tramp-set-connection-local-variables-for-buffer)
                      )
                     (closure
                      (tramp-rfn-eshadow-overlay tramp-use-connection-share
                       tramp-postfix-host-format recentf-exclude
                       ivy-completing-read-handlers-alist info-lookup-alist
                       ido-read-file-name-non-ido eshell-path-env t)
                      nil
                      (remove-hook 'rfn-eshadow-update-overlay-hook
                       #'tramp-rfn-eshadow-update-overlay)
                      )
                     (closure
                      (tramp-rfn-eshadow-overlay tramp-use-connection-share
                       tramp-postfix-host-format recentf-exclude
                       ivy-completing-read-handlers-alist info-lookup-alist
                       ido-read-file-name-non-ido eshell-path-env t)
                      nil
                      (remove-hook 'rfn-eshadow-setup-minibuffer-hook
                       #'tramp-rfn-eshadow-setup-minibuffer)
                      )
                     (closure (t) nil (unload-feature 'tramp-message 'force))
                     (closure (tramp-temp-name-prefix t) nil
                      (unload-feature 'tramp-loaddefs 'force)
                      (unload-feature 'tramp-compat 'force))
                     )
 tramp-use-connection-share t
 tramp-use-ssh-controlmaster-options t
 tramp-user-regexp "[^/:|[:blank:]]+"
 tramp-user-with-domain-regexp "\\([^/:|[:blank:]]+\\)\\(?:%\\)\\([._[:alnum:]-]+\\)"
 tramp-uudecode "(echo begin 600 %t; tail -n +2) | uudecode\ncat %t\nrm -f %t"
 tramp-verbose 3
 tramp-version "2.7.0-pre"
 tramp-volume-letter-regexp ""
 tramp-wrong-passwd-regexp "^.*\\(?:Permission denied\\|Timeout, server not responding\\.\\|Sorry, try again\\.\\|Name or service not known\\|Host key verification failed\\.\\|Authentication failed\\|No supported authentication methods left to try!\\|Login \\(?:[Ii]ncorrect\\)\\|Connection \\(?:\\(?:clo\\|refu\\)sed\\)\\|Received signal [[:digit:]]+\\).*"
 tramp-yesno-prompt-regexp "Are you sure you want to continue connecting (yes/no\\(?:/\\[fingerprint]\\)?)\\?[[:blank:]]*"
 tramp-yn-prompt-regexp "\\(?:Store key in cache\\? (y/n.*)\\|Update cached key\\? (y/n, Return cancels connection)\\)[[:blank:]]*"
 )

local variables:
================
;; *tramp/kubernetes satosa-559b5f8d5c-vsb2l*
(setq-local
 tramp-config-check 'tramp-kubernetes--current-context-data
 tramp-config-check 'tramp-kubernetes--current-context-data
 tramp-extra-expand-args '(97 (tramp-kubernetes--container (car tramp-current-connection))
                           104 (tramp-kubernetes--pod (car tramp-current-connection)) 120
                           (tramp-kubernetes--context-namespace
                            (car tramp-current-connection))
                           )
 tramp-extra-expand-args '(97 (tramp-kubernetes--container (car tramp-current-connection))
                           104 (tramp-kubernetes--pod (car tramp-current-connection)) 120
                           (tramp-kubernetes--context-namespace
                            (car tramp-current-connection))
                           )
 )

load-path shadows:
==================
/Users/quatrava/.emacs.d/quelpa-30.0.50/build/tramp/lisp/tramp-smb hides /Users/quatrava/.emacs.d/elpa-30.0.50/tramp-20231118.124854/tramp-smb
/Users/quatrava/.emacs.d/quelpa-30.0.50/build/tramp/lisp/tramp-crypt hides /Users/quatrava/.emacs.d/elpa-30.0.50/tramp-20231118.124854/tramp-crypt
/Users/quatrava/.emacs.d/quelpa-30.0.50/build/tramp/lisp/tramp-sudoedit hides /Users/quatrava/.emacs.d/elpa-30.0.50/tramp-20231118.124854/tramp-sudoedit
/Users/quatrava/.emacs.d/quelpa-30.0.50/build/tramp/lisp/tramp-fuse hides /Users/quatrava/.emacs.d/elpa-30.0.50/tramp-20231118.124854/tramp-fuse
/Users/quatrava/.emacs.d/quelpa-30.0.50/build/tramp/lisp/tramp-adb hides /Users/quatrava/.emacs.d/elpa-30.0.50/tramp-20231118.124854/tramp-adb
/Users/quatrava/.emacs.d/quelpa-30.0.50/build/tramp/lisp/tramp-message hides /Users/quatrava/.emacs.d/elpa-30.0.50/tramp-20231118.124854/tramp-message
/Users/quatrava/.emacs.d/quelpa-30.0.50/build/tramp/lisp/tramp-sshfs hides /Users/quatrava/.emacs.d/elpa-30.0.50/tramp-20231118.124854/tramp-sshfs
/Users/quatrava/.emacs.d/quelpa-30.0.50/build/tramp/lisp/tramp-gvfs hides /Users/quatrava/.emacs.d/elpa-30.0.50/tramp-20231118.124854/tramp-gvfs
/Users/quatrava/.emacs.d/quelpa-30.0.50/build/tramp/lisp/tramp-compat hides /Users/quatrava/.emacs.d/elpa-30.0.50/tramp-20231118.124854/tramp-compat
/Users/quatrava/.emacs.d/quelpa-30.0.50/build/tramp/lisp/tramp-cmds hides /Users/quatrava/.emacs.d/elpa-30.0.50/tramp-20231118.124854/tramp-cmds
/Users/quatrava/.emacs.d/quelpa-30.0.50/build/tramp/lisp/tramp-integration hides /Users/quatrava/.emacs.d/elpa-30.0.50/tramp-20231118.124854/tramp-integration
/Users/quatrava/.emacs.d/quelpa-30.0.50/build/tramp/lisp/tramp-uu hides /Users/quatrava/.emacs.d/elpa-30.0.50/tramp-20231118.124854/tramp-uu
/Users/quatrava/.emacs.d/quelpa-30.0.50/build/tramp/lisp/tramp-cache hides /Users/quatrava/.emacs.d/elpa-30.0.50/tramp-20231118.124854/tramp-cache
/Users/quatrava/.emacs.d/quelpa-30.0.50/build/tramp/lisp/tramp-archive hides /Users/quatrava/.emacs.d/elpa-30.0.50/tramp-20231118.124854/tramp-archive
/Users/quatrava/.emacs.d/quelpa-30.0.50/build/tramp/lisp/tramp hides /Users/quatrava/.emacs.d/elpa-30.0.50/tramp-20231118.124854/tramp
/Users/quatrava/.emacs.d/quelpa-30.0.50/build/tramp/lisp/tramp-sh hides /Users/quatrava/.emacs.d/elpa-30.0.50/tramp-20231118.124854/tramp-sh
/Users/quatrava/.emacs.d/quelpa-30.0.50/build/tramp/lisp/tramp-rclone hides /Users/quatrava/.emacs.d/elpa-30.0.50/tramp-20231118.124854/tramp-rclone
/Users/quatrava/.emacs.d/quelpa-30.0.50/build/tramp/lisp/tramp-ftp hides /Users/quatrava/.emacs.d/elpa-30.0.50/tramp-20231118.124854/tramp-ftp
/Users/quatrava/.emacs.d/quelpa-30.0.50/build/tramp/lisp/tramp-container hides /Users/quatrava/.emacs.d/elpa-30.0.50/tramp-20231118.124854/tramp-container
/Users/quatrava/.emacs.d/quelpa-30.0.50/build/tramp/lisp/tramp-smb hides /usr/local/Cellar/emacs-plus@30/30.0.50/share/emacs/30.0.50/lisp/net/tramp-smb
/Users/quatrava/.emacs.d/quelpa-30.0.50/build/tramp/lisp/tramp-crypt hides /usr/local/Cellar/emacs-plus@30/30.0.50/share/emacs/30.0.50/lisp/net/tramp-crypt
/Users/quatrava/.emacs.d/quelpa-30.0.50/build/tramp/lisp/tramp-sudoedit hides /usr/local/Cellar/emacs-plus@30/30.0.50/share/emacs/30.0.50/lisp/net/tramp-sudoedit
/Users/quatrava/.emacs.d/quelpa-30.0.50/build/tramp/lisp/tramp-fuse hides /usr/local/Cellar/emacs-plus@30/30.0.50/share/emacs/30.0.50/lisp/net/tramp-fuse
/Users/quatrava/.emacs.d/quelpa-30.0.50/build/tramp/lisp/tramp-adb hides /usr/local/Cellar/emacs-plus@30/30.0.50/share/emacs/30.0.50/lisp/net/tramp-adb
/Users/quatrava/.emacs.d/elpa-30.0.50/tramp-20231118.124854/tramp-loaddefs hides /usr/local/Cellar/emacs-plus@30/30.0.50/share/emacs/30.0.50/lisp/net/tramp-loaddefs
/Users/quatrava/.emacs.d/quelpa-30.0.50/build/tramp/lisp/tramp-message hides /usr/local/Cellar/emacs-plus@30/30.0.50/share/emacs/30.0.50/lisp/net/tramp-message
/Users/quatrava/.emacs.d/quelpa-30.0.50/build/tramp/lisp/tramp-sshfs hides /usr/local/Cellar/emacs-plus@30/30.0.50/share/emacs/30.0.50/lisp/net/tramp-sshfs
/Users/quatrava/.emacs.d/quelpa-30.0.50/build/tramp/lisp/tramp-gvfs hides /usr/local/Cellar/emacs-plus@30/30.0.50/share/emacs/30.0.50/lisp/net/tramp-gvfs
/Users/quatrava/.emacs.d/quelpa-30.0.50/build/tramp/lisp/tramp-compat hides /usr/local/Cellar/emacs-plus@30/30.0.50/share/emacs/30.0.50/lisp/net/tramp-compat
/Users/quatrava/.emacs.d/quelpa-30.0.50/build/tramp/lisp/tramp-cmds hides /usr/local/Cellar/emacs-plus@30/30.0.50/share/emacs/30.0.50/lisp/net/tramp-cmds
/Users/quatrava/.emacs.d/quelpa-30.0.50/build/tramp/lisp/tramp-integration hides /usr/local/Cellar/emacs-plus@30/30.0.50/share/emacs/30.0.50/lisp/net/tramp-integration
/Users/quatrava/.emacs.d/quelpa-30.0.50/build/tramp/lisp/tramp-uu hides /usr/local/Cellar/emacs-plus@30/30.0.50/share/emacs/30.0.50/lisp/net/tramp-uu
/Users/quatrava/.emacs.d/quelpa-30.0.50/build/tramp/lisp/tramp-cache hides /usr/local/Cellar/emacs-plus@30/30.0.50/share/emacs/30.0.50/lisp/net/tramp-cache
/Users/quatrava/.emacs.d/quelpa-30.0.50/build/tramp/lisp/tramp-archive hides /usr/local/Cellar/emacs-plus@30/30.0.50/share/emacs/30.0.50/lisp/net/tramp-archive
/Users/quatrava/.emacs.d/quelpa-30.0.50/build/tramp/lisp/tramp hides /usr/local/Cellar/emacs-plus@30/30.0.50/share/emacs/30.0.50/lisp/net/tramp
/Users/quatrava/.emacs.d/quelpa-30.0.50/build/tramp/lisp/tramp-sh hides /usr/local/Cellar/emacs-plus@30/30.0.50/share/emacs/30.0.50/lisp/net/tramp-sh
/Users/quatrava/.emacs.d/quelpa-30.0.50/build/tramp/lisp/tramp-rclone hides /usr/local/Cellar/emacs-plus@30/30.0.50/share/emacs/30.0.50/lisp/net/tramp-rclone
/Users/quatrava/.emacs.d/quelpa-30.0.50/build/tramp/lisp/tramp-ftp hides /usr/local/Cellar/emacs-plus@30/30.0.50/share/emacs/30.0.50/lisp/net/tramp-ftp
/Users/quatrava/.emacs.d/quelpa-30.0.50/build/tramp/lisp/tramp-container hides /usr/local/Cellar/emacs-plus@30/30.0.50/share/emacs/30.0.50/lisp/net/tramp-container
--
 Dominique Quatravaux
 dominique@quatravaux.org

Attachment: tramp-cr-lf-woes.patch
Description: Binary data


reply via email to

[Prev in Thread] Current Thread [Next in Thread]