PHP 7.4.33
Preview: queryObserver.cjs Size: 17.24 KB
/var/www/gtechmarathon2026.bitkit.dk/httpdocs/node_modules/@tanstack/query-core/build/modern/queryObserver.cjs
"use strict";
var __defProp = Object.defineProperty;
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
var __getOwnPropNames = Object.getOwnPropertyNames;
var __hasOwnProp = Object.prototype.hasOwnProperty;
var __export = (target, all) => {
  for (var name in all)
    __defProp(target, name, { get: all[name], enumerable: true });
};
var __copyProps = (to, from, except, desc) => {
  if (from && typeof from === "object" || typeof from === "function") {
    for (let key of __getOwnPropNames(from))
      if (!__hasOwnProp.call(to, key) && key !== except)
        __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
  }
  return to;
};
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);

// src/queryObserver.ts
var queryObserver_exports = {};
__export(queryObserver_exports, {
  QueryObserver: () => QueryObserver
});
module.exports = __toCommonJS(queryObserver_exports);
var import_focusManager = require("./focusManager.cjs");
var import_notifyManager = require("./notifyManager.cjs");
var import_query = require("./query.cjs");
var import_subscribable = require("./subscribable.cjs");
var import_thenable = require("./thenable.cjs");
var import_utils = require("./utils.cjs");
var QueryObserver = class extends import_subscribable.Subscribable {
  constructor(client, options) {
    super();
    this.options = options;
    this.#client = client;
    this.#selectError = null;
    this.#currentThenable = (0, import_thenable.pendingThenable)();
    if (!this.options.experimental_prefetchInRender) {
      this.#currentThenable.reject(
        new Error("experimental_prefetchInRender feature flag is not enabled")
      );
    }
    this.bindMethods();
    this.setOptions(options);
  }
  #client;
  #currentQuery = void 0;
  #currentQueryInitialState = void 0;
  #currentResult = void 0;
  #currentResultState;
  #currentResultOptions;
  #currentThenable;
  #selectError;
  #selectFn;
  #selectResult;
  // This property keeps track of the last query with defined data.
  // It will be used to pass the previous data and query to the placeholder function between renders.
  #lastQueryWithDefinedData;
  #staleTimeoutId;
  #refetchIntervalId;
  #currentRefetchInterval;
  #trackedProps = /* @__PURE__ */ new Set();
  bindMethods() {
    this.refetch = this.refetch.bind(this);
  }
  onSubscribe() {
    if (this.listeners.size === 1) {
      this.#currentQuery.addObserver(this);
      if (shouldFetchOnMount(this.#currentQuery, this.options)) {
        this.#executeFetch();
      } else {
        this.updateResult();
      }
      this.#updateTimers();
    }
  }
  onUnsubscribe() {
    if (!this.hasListeners()) {
      this.destroy();
    }
  }
  shouldFetchOnReconnect() {
    return shouldFetchOn(
      this.#currentQuery,
      this.options,
      this.options.refetchOnReconnect
    );
  }
  shouldFetchOnWindowFocus() {
    return shouldFetchOn(
      this.#currentQuery,
      this.options,
      this.options.refetchOnWindowFocus
    );
  }
  destroy() {
    this.listeners = /* @__PURE__ */ new Set();
    this.#clearStaleTimeout();
    this.#clearRefetchInterval();
    this.#currentQuery.removeObserver(this);
  }
  setOptions(options) {
    const prevOptions = this.options;
    const prevQuery = this.#currentQuery;
    this.options = this.#client.defaultQueryOptions(options);
    if (this.options.enabled !== void 0 && typeof this.options.enabled !== "boolean" && typeof this.options.enabled !== "function" && typeof (0, import_utils.resolveEnabled)(this.options.enabled, this.#currentQuery) !== "boolean") {
      throw new Error(
        "Expected enabled to be a boolean or a callback that returns a boolean"
      );
    }
    this.#updateQuery();
    this.#currentQuery.setOptions(this.options);
    if (prevOptions._defaulted && !(0, import_utils.shallowEqualObjects)(this.options, prevOptions)) {
      this.#client.getQueryCache().notify({
        type: "observerOptionsUpdated",
        query: this.#currentQuery,
        observer: this
      });
    }
    const mounted = this.hasListeners();
    if (mounted && shouldFetchOptionally(
      this.#currentQuery,
      prevQuery,
      this.options,
      prevOptions
    )) {
      this.#executeFetch();
    }
    this.updateResult();
    if (mounted && (this.#currentQuery !== prevQuery || (0, import_utils.resolveEnabled)(this.options.enabled, this.#currentQuery) !== (0, import_utils.resolveEnabled)(prevOptions.enabled, this.#currentQuery) || (0, import_utils.resolveStaleTime)(this.options.staleTime, this.#currentQuery) !== (0, import_utils.resolveStaleTime)(prevOptions.staleTime, this.#currentQuery))) {
      this.#updateStaleTimeout();
    }
    const nextRefetchInterval = this.#computeRefetchInterval();
    if (mounted && (this.#currentQuery !== prevQuery || (0, import_utils.resolveEnabled)(this.options.enabled, this.#currentQuery) !== (0, import_utils.resolveEnabled)(prevOptions.enabled, this.#currentQuery) || nextRefetchInterval !== this.#currentRefetchInterval)) {
      this.#updateRefetchInterval(nextRefetchInterval);
    }
  }
  getOptimisticResult(options) {
    const query = this.#client.getQueryCache().build(this.#client, options);
    const result = this.createResult(query, options);
    if (shouldAssignObserverCurrentProperties(this, result)) {
      this.#currentResult = result;
      this.#currentResultOptions = this.options;
      this.#currentResultState = this.#currentQuery.state;
    }
    return result;
  }
  getCurrentResult() {
    return this.#currentResult;
  }
  trackResult(result, onPropTracked) {
    return new Proxy(result, {
      get: (target, key) => {
        this.trackProp(key);
        onPropTracked?.(key);
        return Reflect.get(target, key);
      }
    });
  }
  trackProp(key) {
    this.#trackedProps.add(key);
  }
  getCurrentQuery() {
    return this.#currentQuery;
  }
  refetch({ ...options } = {}) {
    return this.fetch({
      ...options
    });
  }
  fetchOptimistic(options) {
    const defaultedOptions = this.#client.defaultQueryOptions(options);
    const query = this.#client.getQueryCache().build(this.#client, defaultedOptions);
    return query.fetch().then(() => this.createResult(query, defaultedOptions));
  }
  fetch(fetchOptions) {
    return this.#executeFetch({
      ...fetchOptions,
      cancelRefetch: fetchOptions.cancelRefetch ?? true
    }).then(() => {
      this.updateResult();
      return this.#currentResult;
    });
  }
  #executeFetch(fetchOptions) {
    this.#updateQuery();
    let promise = this.#currentQuery.fetch(
      this.options,
      fetchOptions
    );
    if (!fetchOptions?.throwOnError) {
      promise = promise.catch(import_utils.noop);
    }
    return promise;
  }
  #updateStaleTimeout() {
    this.#clearStaleTimeout();
    const staleTime = (0, import_utils.resolveStaleTime)(
      this.options.staleTime,
      this.#currentQuery
    );
    if (import_utils.isServer || this.#currentResult.isStale || !(0, import_utils.isValidTimeout)(staleTime)) {
      return;
    }
    const time = (0, import_utils.timeUntilStale)(this.#currentResult.dataUpdatedAt, staleTime);
    const timeout = time + 1;
    this.#staleTimeoutId = setTimeout(() => {
      if (!this.#currentResult.isStale) {
        this.updateResult();
      }
    }, timeout);
  }
  #computeRefetchInterval() {
    return (typeof this.options.refetchInterval === "function" ? this.options.refetchInterval(this.#currentQuery) : this.options.refetchInterval) ?? false;
  }
  #updateRefetchInterval(nextInterval) {
    this.#clearRefetchInterval();
    this.#currentRefetchInterval = nextInterval;
    if (import_utils.isServer || (0, import_utils.resolveEnabled)(this.options.enabled, this.#currentQuery) === false || !(0, import_utils.isValidTimeout)(this.#currentRefetchInterval) || this.#currentRefetchInterval === 0) {
      return;
    }
    this.#refetchIntervalId = setInterval(() => {
      if (this.options.refetchIntervalInBackground || import_focusManager.focusManager.isFocused()) {
        this.#executeFetch();
      }
    }, this.#currentRefetchInterval);
  }
  #updateTimers() {
    this.#updateStaleTimeout();
    this.#updateRefetchInterval(this.#computeRefetchInterval());
  }
  #clearStaleTimeout() {
    if (this.#staleTimeoutId) {
      clearTimeout(this.#staleTimeoutId);
      this.#staleTimeoutId = void 0;
    }
  }
  #clearRefetchInterval() {
    if (this.#refetchIntervalId) {
      clearInterval(this.#refetchIntervalId);
      this.#refetchIntervalId = void 0;
    }
  }
  createResult(query, options) {
    const prevQuery = this.#currentQuery;
    const prevOptions = this.options;
    const prevResult = this.#currentResult;
    const prevResultState = this.#currentResultState;
    const prevResultOptions = this.#currentResultOptions;
    const queryChange = query !== prevQuery;
    const queryInitialState = queryChange ? query.state : this.#currentQueryInitialState;
    const { state } = query;
    let newState = { ...state };
    let isPlaceholderData = false;
    let data;
    if (options._optimisticResults) {
      const mounted = this.hasListeners();
      const fetchOnMount = !mounted && shouldFetchOnMount(query, options);
      const fetchOptionally = mounted && shouldFetchOptionally(query, prevQuery, options, prevOptions);
      if (fetchOnMount || fetchOptionally) {
        newState = {
          ...newState,
          ...(0, import_query.fetchState)(state.data, query.options)
        };
      }
      if (options._optimisticResults === "isRestoring") {
        newState.fetchStatus = "idle";
      }
    }
    let { error, errorUpdatedAt, status } = newState;
    data = newState.data;
    let skipSelect = false;
    if (options.placeholderData !== void 0 && data === void 0 && status === "pending") {
      let placeholderData;
      if (prevResult?.isPlaceholderData && options.placeholderData === prevResultOptions?.placeholderData) {
        placeholderData = prevResult.data;
        skipSelect = true;
      } else {
        placeholderData = typeof options.placeholderData === "function" ? options.placeholderData(
          this.#lastQueryWithDefinedData?.state.data,
          this.#lastQueryWithDefinedData
        ) : options.placeholderData;
      }
      if (placeholderData !== void 0) {
        status = "success";
        data = (0, import_utils.replaceData)(
          prevResult?.data,
          placeholderData,
          options
        );
        isPlaceholderData = true;
      }
    }
    if (options.select && data !== void 0 && !skipSelect) {
      if (prevResult && data === prevResultState?.data && options.select === this.#selectFn) {
        data = this.#selectResult;
      } else {
        try {
          this.#selectFn = options.select;
          data = options.select(data);
          data = (0, import_utils.replaceData)(prevResult?.data, data, options);
          this.#selectResult = data;
          this.#selectError = null;
        } catch (selectError) {
          this.#selectError = selectError;
        }
      }
    }
    if (this.#selectError) {
      error = this.#selectError;
      data = this.#selectResult;
      errorUpdatedAt = Date.now();
      status = "error";
    }
    const isFetching = newState.fetchStatus === "fetching";
    const isPending = status === "pending";
    const isError = status === "error";
    const isLoading = isPending && isFetching;
    const hasData = data !== void 0;
    const result = {
      status,
      fetchStatus: newState.fetchStatus,
      isPending,
      isSuccess: status === "success",
      isError,
      isInitialLoading: isLoading,
      isLoading,
      data,
      dataUpdatedAt: newState.dataUpdatedAt,
      error,
      errorUpdatedAt,
      failureCount: newState.fetchFailureCount,
      failureReason: newState.fetchFailureReason,
      errorUpdateCount: newState.errorUpdateCount,
      isFetched: newState.dataUpdateCount > 0 || newState.errorUpdateCount > 0,
      isFetchedAfterMount: newState.dataUpdateCount > queryInitialState.dataUpdateCount || newState.errorUpdateCount > queryInitialState.errorUpdateCount,
      isFetching,
      isRefetching: isFetching && !isPending,
      isLoadingError: isError && !hasData,
      isPaused: newState.fetchStatus === "paused",
      isPlaceholderData,
      isRefetchError: isError && hasData,
      isStale: isStale(query, options),
      refetch: this.refetch,
      promise: this.#currentThenable,
      isEnabled: (0, import_utils.resolveEnabled)(options.enabled, query) !== false
    };
    const nextResult = result;
    if (this.options.experimental_prefetchInRender) {
      const finalizeThenableIfPossible = (thenable) => {
        if (nextResult.status === "error") {
          thenable.reject(nextResult.error);
        } else if (nextResult.data !== void 0) {
          thenable.resolve(nextResult.data);
        }
      };
      const recreateThenable = () => {
        const pending = this.#currentThenable = nextResult.promise = (0, import_thenable.pendingThenable)();
        finalizeThenableIfPossible(pending);
      };
      const prevThenable = this.#currentThenable;
      switch (prevThenable.status) {
        case "pending":
          if (query.queryHash === prevQuery.queryHash) {
            finalizeThenableIfPossible(prevThenable);
          }
          break;
        case "fulfilled":
          if (nextResult.status === "error" || nextResult.data !== prevThenable.value) {
            recreateThenable();
          }
          break;
        case "rejected":
          if (nextResult.status !== "error" || nextResult.error !== prevThenable.reason) {
            recreateThenable();
          }
          break;
      }
    }
    return nextResult;
  }
  updateResult() {
    const prevResult = this.#currentResult;
    const nextResult = this.createResult(this.#currentQuery, this.options);
    this.#currentResultState = this.#currentQuery.state;
    this.#currentResultOptions = this.options;
    if (this.#currentResultState.data !== void 0) {
      this.#lastQueryWithDefinedData = this.#currentQuery;
    }
    if ((0, import_utils.shallowEqualObjects)(nextResult, prevResult)) {
      return;
    }
    this.#currentResult = nextResult;
    const shouldNotifyListeners = () => {
      if (!prevResult) {
        return true;
      }
      const { notifyOnChangeProps } = this.options;
      const notifyOnChangePropsValue = typeof notifyOnChangeProps === "function" ? notifyOnChangeProps() : notifyOnChangeProps;
      if (notifyOnChangePropsValue === "all" || !notifyOnChangePropsValue && !this.#trackedProps.size) {
        return true;
      }
      const includedProps = new Set(
        notifyOnChangePropsValue ?? this.#trackedProps
      );
      if (this.options.throwOnError) {
        includedProps.add("error");
      }
      return Object.keys(this.#currentResult).some((key) => {
        const typedKey = key;
        const changed = this.#currentResult[typedKey] !== prevResult[typedKey];
        return changed && includedProps.has(typedKey);
      });
    };
    this.#notify({ listeners: shouldNotifyListeners() });
  }
  #updateQuery() {
    const query = this.#client.getQueryCache().build(this.#client, this.options);
    if (query === this.#currentQuery) {
      return;
    }
    const prevQuery = this.#currentQuery;
    this.#currentQuery = query;
    this.#currentQueryInitialState = query.state;
    if (this.hasListeners()) {
      prevQuery?.removeObserver(this);
      query.addObserver(this);
    }
  }
  onQueryUpdate() {
    this.updateResult();
    if (this.hasListeners()) {
      this.#updateTimers();
    }
  }
  #notify(notifyOptions) {
    import_notifyManager.notifyManager.batch(() => {
      if (notifyOptions.listeners) {
        this.listeners.forEach((listener) => {
          listener(this.#currentResult);
        });
      }
      this.#client.getQueryCache().notify({
        query: this.#currentQuery,
        type: "observerResultsUpdated"
      });
    });
  }
};
function shouldLoadOnMount(query, options) {
  return (0, import_utils.resolveEnabled)(options.enabled, query) !== false && query.state.data === void 0 && !(query.state.status === "error" && options.retryOnMount === false);
}
function shouldFetchOnMount(query, options) {
  return shouldLoadOnMount(query, options) || query.state.data !== void 0 && shouldFetchOn(query, options, options.refetchOnMount);
}
function shouldFetchOn(query, options, field) {
  if ((0, import_utils.resolveEnabled)(options.enabled, query) !== false && (0, import_utils.resolveStaleTime)(options.staleTime, query) !== "static") {
    const value = typeof field === "function" ? field(query) : field;
    return value === "always" || value !== false && isStale(query, options);
  }
  return false;
}
function shouldFetchOptionally(query, prevQuery, options, prevOptions) {
  return (query !== prevQuery || (0, import_utils.resolveEnabled)(prevOptions.enabled, query) === false) && (!options.suspense || query.state.status !== "error") && isStale(query, options);
}
function isStale(query, options) {
  return (0, import_utils.resolveEnabled)(options.enabled, query) !== false && query.isStaleByTime((0, import_utils.resolveStaleTime)(options.staleTime, query));
}
function shouldAssignObserverCurrentProperties(observer, optimisticResult) {
  if (!(0, import_utils.shallowEqualObjects)(observer.getCurrentResult(), optimisticResult)) {
    return true;
  }
  return false;
}
// Annotate the CommonJS export names for ESM import in node:
0 && (module.exports = {
  QueryObserver
});
//# sourceMappingURL=queryObserver.cjs.map

Directory Contents

Dirs: 0 × Files: 134
Name Size Perms Modified Actions
2.65 KB lrw-r--r-- 2025-07-14 06:33:17
Edit Download
3.35 KB lrw-r--r-- 2025-07-14 06:33:17
Edit Download
563 B lrw-r--r-- 2025-07-14 06:33:17
Edit Download
562 B lrw-r--r-- 2025-07-14 06:33:17
Edit Download
1.56 KB lrw-r--r-- 2025-07-14 06:33:17
Edit Download
3.31 KB lrw-r--r-- 2025-07-14 06:33:17
Edit Download
70.04 KB lrw-r--r-- 2025-07-14 06:33:17
Edit Download
70.04 KB lrw-r--r-- 2025-07-14 06:33:17
Edit Download
6.44 KB lrw-r--r-- 2025-07-14 06:33:17
Edit Download
11.47 KB lrw-r--r-- 2025-07-14 06:33:17
Edit Download
265 B lrw-r--r-- 2025-07-14 06:33:17
Edit Download
262 B lrw-r--r-- 2025-07-14 06:33:17
Edit Download
5.26 KB lrw-r--r-- 2025-07-14 06:33:17
Edit Download
11.42 KB lrw-r--r-- 2025-07-14 06:33:17
Edit Download
4.33 KB lrw-r--r-- 2025-07-14 06:33:17
Edit Download
2.10 KB lrw-r--r-- 2025-07-14 06:33:17
Edit Download
3.67 KB lrw-r--r-- 2025-07-14 06:33:17
Edit Download
3.67 KB lrw-r--r-- 2025-07-14 06:33:17
Edit Download
1.68 KB lrw-r--r-- 2025-07-14 06:33:17
Edit Download
2.11 KB lrw-r--r-- 2025-07-14 06:33:17
Edit Download
5.33 KB lrw-r--r-- 2025-07-14 06:33:17
Edit Download
8.04 KB lrw-r--r-- 2025-07-14 06:33:17
Edit Download
744 B lrw-r--r-- 2025-07-14 06:33:17
Edit Download
741 B lrw-r--r-- 2025-07-14 06:33:17
Edit Download
4.18 KB lrw-r--r-- 2025-07-14 06:33:17
Edit Download
8.00 KB lrw-r--r-- 2025-07-14 06:33:17
Edit Download
3.39 KB lrw-r--r-- 2025-07-14 06:33:17
Edit Download
6.28 KB lrw-r--r-- 2025-07-14 06:33:17
Edit Download
2.31 KB lrw-r--r-- 2025-07-14 06:33:17
Edit Download
2.31 KB lrw-r--r-- 2025-07-14 06:33:17
Edit Download
2.21 KB lrw-r--r-- 2025-07-14 06:33:17
Edit Download
6.27 KB lrw-r--r-- 2025-07-14 06:33:17
Edit Download
7.19 KB lrw-r--r-- 2025-07-14 06:33:17
Edit Download
13.51 KB lrw-r--r-- 2025-07-14 06:33:17
Edit Download
170 B lrw-r--r-- 2025-07-14 06:33:17
Edit Download
167 B lrw-r--r-- 2025-07-14 06:33:17
Edit Download
6.09 KB lrw-r--r-- 2025-07-14 06:33:17
Edit Download
13.48 KB lrw-r--r-- 2025-07-14 06:33:17
Edit Download
4.66 KB lrw-r--r-- 2025-07-14 06:33:17
Edit Download
9.78 KB lrw-r--r-- 2025-07-14 06:33:17
Edit Download
149 B lrw-r--r-- 2025-07-14 06:33:17
Edit Download
146 B lrw-r--r-- 2025-07-14 06:33:17
Edit Download
3.48 KB lrw-r--r-- 2025-07-14 06:33:17
Edit Download
9.75 KB lrw-r--r-- 2025-07-14 06:33:17
Edit Download
4.30 KB lrw-r--r-- 2025-07-14 06:33:17
Edit Download
7.07 KB lrw-r--r-- 2025-07-14 06:33:17
Edit Download
121 B lrw-r--r-- 2025-07-14 06:33:17
Edit Download
118 B lrw-r--r-- 2025-07-14 06:33:17
Edit Download
3.16 KB lrw-r--r-- 2025-07-14 06:33:17
Edit Download
7.05 KB lrw-r--r-- 2025-07-14 06:33:17
Edit Download
3.04 KB lrw-r--r-- 2025-07-14 06:33:17
Edit Download
3.70 KB lrw-r--r-- 2025-07-14 06:33:17
Edit Download
2.15 KB lrw-r--r-- 2025-07-14 06:33:17
Edit Download
2.15 KB lrw-r--r-- 2025-07-14 06:33:17
Edit Download
1.93 KB lrw-r--r-- 2025-07-14 06:33:17
Edit Download
3.65 KB lrw-r--r-- 2025-07-14 06:33:17
Edit Download
2.54 KB lrw-r--r-- 2025-07-14 06:33:17
Edit Download
2.93 KB lrw-r--r-- 2025-07-14 06:33:17
Edit Download
522 B lrw-r--r-- 2025-07-14 06:33:17
Edit Download
521 B lrw-r--r-- 2025-07-14 06:33:17
Edit Download
1.45 KB lrw-r--r-- 2025-07-14 06:33:17
Edit Download
2.89 KB lrw-r--r-- 2025-07-14 06:33:17
Edit Download
6.83 KB lrw-r--r-- 2025-07-14 06:33:17
Edit Download
11.77 KB lrw-r--r-- 2025-07-14 06:33:17
Edit Download
1.55 KB lrw-r--r-- 2025-07-14 06:33:17
Edit Download
1.55 KB lrw-r--r-- 2025-07-14 06:33:17
Edit Download
5.69 KB lrw-r--r-- 2025-07-14 06:33:17
Edit Download
11.75 KB lrw-r--r-- 2025-07-14 06:33:17
Edit Download
12.71 KB lrw-r--r-- 2025-07-14 06:33:17
Edit Download
27.12 KB lrw-r--r-- 2025-07-14 06:33:17
Edit Download
282 B lrw-r--r-- 2025-07-14 06:33:17
Edit Download
279 B lrw-r--r-- 2025-07-14 06:33:17
Edit Download
11.55 KB lrw-r--r-- 2025-07-14 06:33:17
Edit Download
27.16 KB lrw-r--r-- 2025-07-14 06:33:17
Edit Download
3.53 KB lrw-r--r-- 2025-07-14 06:33:17
Edit Download
7.75 KB lrw-r--r-- 2025-07-14 06:33:17
Edit Download
161 B lrw-r--r-- 2025-07-14 06:33:17
Edit Download
158 B lrw-r--r-- 2025-07-14 06:33:17
Edit Download
2.36 KB lrw-r--r-- 2025-07-14 06:33:17
Edit Download
7.73 KB lrw-r--r-- 2025-07-14 06:33:17
Edit Download
10.82 KB lrw-r--r-- 2025-07-14 06:33:17
Edit Download
23.29 KB lrw-r--r-- 2025-07-14 06:33:17
Edit Download
116 B lrw-r--r-- 2025-07-14 06:33:17
Edit Download
113 B lrw-r--r-- 2025-07-14 06:33:17
Edit Download
9.33 KB lrw-r--r-- 2025-07-14 06:33:17
Edit Download
23.33 KB lrw-r--r-- 2025-07-14 06:33:17
Edit Download
17.24 KB lrw-r--r-- 2025-07-14 06:33:17
Edit Download
33.24 KB lrw-r--r-- 2025-07-14 06:33:17
Edit Download
118 B lrw-r--r-- 2025-07-14 06:33:17
Edit Download
115 B lrw-r--r-- 2025-07-14 06:33:17
Edit Download
15.74 KB lrw-r--r-- 2025-07-14 06:33:17
Edit Download
33.28 KB lrw-r--r-- 2025-07-14 06:33:17
Edit Download
1.69 KB lrw-r--r-- 2025-07-14 06:33:17
Edit Download
1.46 KB lrw-r--r-- 2025-07-14 06:33:17
Edit Download
299 B lrw-r--r-- 2025-07-14 06:33:17
Edit Download
299 B lrw-r--r-- 2025-07-14 06:33:17
Edit Download
686 B lrw-r--r-- 2025-07-14 06:33:17
Edit Download
1.42 KB lrw-r--r-- 2025-07-14 06:33:17
Edit Download
4.79 KB lrw-r--r-- 2025-07-14 06:33:17
Edit Download
8.18 KB lrw-r--r-- 2025-07-14 06:33:17
Edit Download
235 B lrw-r--r-- 2025-07-14 06:33:17
Edit Download
232 B lrw-r--r-- 2025-07-14 06:33:17
Edit Download
3.56 KB lrw-r--r-- 2025-07-14 06:33:17
Edit Download
8.14 KB lrw-r--r-- 2025-07-14 06:33:17
Edit Download
2.28 KB lrw-r--r-- 2025-07-14 06:33:17
Edit Download
3.72 KB lrw-r--r-- 2025-07-14 06:33:17
Edit Download
1.54 KB lrw-r--r-- 2025-07-14 06:33:17
Edit Download
1.53 KB lrw-r--r-- 2025-07-14 06:33:17
Edit Download
1.22 KB lrw-r--r-- 2025-07-14 06:33:17
Edit Download
3.68 KB lrw-r--r-- 2025-07-14 06:33:17
Edit Download
1.52 KB lrw-r--r-- 2025-07-14 06:33:17
Edit Download
1.07 KB lrw-r--r-- 2025-07-14 06:33:17
Edit Download
294 B lrw-r--r-- 2025-07-14 06:33:17
Edit Download
294 B lrw-r--r-- 2025-07-14 06:33:17
Edit Download
522 B lrw-r--r-- 2025-07-14 06:33:17
Edit Download
1.03 KB lrw-r--r-- 2025-07-14 06:33:17
Edit Download
2.02 KB lrw-r--r-- 2025-07-14 06:33:17
Edit Download
3.77 KB lrw-r--r-- 2025-07-14 06:33:17
Edit Download
1.79 KB lrw-r--r-- 2025-07-14 06:33:17
Edit Download
1.79 KB lrw-r--r-- 2025-07-14 06:33:17
Edit Download
961 B lrw-r--r-- 2025-07-14 06:33:17
Edit Download
3.72 KB lrw-r--r-- 2025-07-14 06:33:17
Edit Download
1.32 KB lrw-r--r-- 2025-07-14 06:33:17
Edit Download
40.32 KB lrw-r--r-- 2025-07-14 06:33:17
Edit Download
2.61 KB lrw-r--r-- 2025-07-14 06:33:17
Edit Download
2.60 KB lrw-r--r-- 2025-07-14 06:33:17
Edit Download
255 B lrw-r--r-- 2025-07-14 06:33:17
Edit Download
40.26 KB lrw-r--r-- 2025-07-14 06:33:17
Edit Download
8.54 KB lrw-r--r-- 2025-07-14 06:33:17
Edit Download
16.51 KB lrw-r--r-- 2025-07-14 06:33:17
Edit Download
674 B lrw-r--r-- 2025-07-14 06:33:17
Edit Download
671 B lrw-r--r-- 2025-07-14 06:33:17
Edit Download
6.71 KB lrw-r--r-- 2025-07-14 06:33:17
Edit Download
16.35 KB lrw-r--r-- 2025-07-14 06:33:17
Edit Download
If ZipArchive is unavailable, a .tar will be created (no compression).