PNG  IHDR  8] PLTE S =tRNS   PNG  IHDR  8] PLTE S =tRNS   REDROOM
PHP 7.4.33
Preview: os_unix_test.go Size: 11.47 KB
/proc/thread-self/root/opt/golang/1.22.0/src/os/os_unix_test.go

// Copyright 2009 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

//go:build unix || (js && wasm) || wasip1

package os_test

import (
	"internal/testenv"
	"io"
	. "os"
	"path/filepath"
	"runtime"
	"strings"
	"syscall"
	"testing"
	"time"
)

func init() {
	isReadonlyError = func(err error) bool { return err == syscall.EROFS }
}

// For TestRawConnReadWrite.
type syscallDescriptor = int

func checkUidGid(t *testing.T, path string, uid, gid int) {
	dir, err := Lstat(path)
	if err != nil {
		t.Fatalf("Lstat %q (looking for uid/gid %d/%d): %s", path, uid, gid, err)
	}
	sys := dir.Sys().(*syscall.Stat_t)
	if int(sys.Uid) != uid {
		t.Errorf("Lstat %q: uid %d want %d", path, sys.Uid, uid)
	}
	if int(sys.Gid) != gid {
		t.Errorf("Lstat %q: gid %d want %d", path, sys.Gid, gid)
	}
}

func TestChown(t *testing.T) {
	if runtime.GOOS == "wasip1" {
		t.Skip("file ownership not supported on " + runtime.GOOS)
	}
	t.Parallel()

	// Use TempDir() to make sure we're on a local file system,
	// so that the group ids returned by Getgroups will be allowed
	// on the file. On NFS, the Getgroups groups are
	// basically useless.
	f := newFile("TestChown", t)
	defer Remove(f.Name())
	defer f.Close()
	dir, err := f.Stat()
	if err != nil {
		t.Fatalf("stat %s: %s", f.Name(), err)
	}

	// Can't change uid unless root, but can try
	// changing the group id. First try our current group.
	gid := Getgid()
	t.Log("gid:", gid)
	if err = Chown(f.Name(), -1, gid); err != nil {
		t.Fatalf("chown %s -1 %d: %s", f.Name(), gid, err)
	}
	sys := dir.Sys().(*syscall.Stat_t)
	checkUidGid(t, f.Name(), int(sys.Uid), gid)

	// Then try all the auxiliary groups.
	groups, err := Getgroups()
	if err != nil {
		t.Fatalf("getgroups: %s", err)
	}
	t.Log("groups: ", groups)
	for _, g := range groups {
		if err = Chown(f.Name(), -1, g); err != nil {
			if testenv.SyscallIsNotSupported(err) {
				t.Logf("chown %s -1 %d: %s (error ignored)", f.Name(), g, err)
				// Since the Chown call failed, the file should be unmodified.
				checkUidGid(t, f.Name(), int(sys.Uid), gid)
				continue
			}
			t.Fatalf("chown %s -1 %d: %s", f.Name(), g, err)
		}
		checkUidGid(t, f.Name(), int(sys.Uid), g)

		// change back to gid to test fd.Chown
		if err = f.Chown(-1, gid); err != nil {
			t.Fatalf("fchown %s -1 %d: %s", f.Name(), gid, err)
		}
		checkUidGid(t, f.Name(), int(sys.Uid), gid)
	}
}

func TestFileChown(t *testing.T) {
	if runtime.GOOS == "wasip1" {
		t.Skip("file ownership not supported on " + runtime.GOOS)
	}
	t.Parallel()

	// Use TempDir() to make sure we're on a local file system,
	// so that the group ids returned by Getgroups will be allowed
	// on the file. On NFS, the Getgroups groups are
	// basically useless.
	f := newFile("TestFileChown", t)
	defer Remove(f.Name())
	defer f.Close()
	dir, err := f.Stat()
	if err != nil {
		t.Fatalf("stat %s: %s", f.Name(), err)
	}

	// Can't change uid unless root, but can try
	// changing the group id. First try our current group.
	gid := Getgid()
	t.Log("gid:", gid)
	if err = f.Chown(-1, gid); err != nil {
		t.Fatalf("fchown %s -1 %d: %s", f.Name(), gid, err)
	}
	sys := dir.Sys().(*syscall.Stat_t)
	checkUidGid(t, f.Name(), int(sys.Uid), gid)

	// Then try all the auxiliary groups.
	groups, err := Getgroups()
	if err != nil {
		t.Fatalf("getgroups: %s", err)
	}
	t.Log("groups: ", groups)
	for _, g := range groups {
		if err = f.Chown(-1, g); err != nil {
			if testenv.SyscallIsNotSupported(err) {
				t.Logf("chown %s -1 %d: %s (error ignored)", f.Name(), g, err)
				// Since the Chown call failed, the file should be unmodified.
				checkUidGid(t, f.Name(), int(sys.Uid), gid)
				continue
			}
			t.Fatalf("fchown %s -1 %d: %s", f.Name(), g, err)
		}
		checkUidGid(t, f.Name(), int(sys.Uid), g)

		// change back to gid to test fd.Chown
		if err = f.Chown(-1, gid); err != nil {
			t.Fatalf("fchown %s -1 %d: %s", f.Name(), gid, err)
		}
		checkUidGid(t, f.Name(), int(sys.Uid), gid)
	}
}

func TestLchown(t *testing.T) {
	testenv.MustHaveSymlink(t)
	t.Parallel()

	// Use TempDir() to make sure we're on a local file system,
	// so that the group ids returned by Getgroups will be allowed
	// on the file. On NFS, the Getgroups groups are
	// basically useless.
	f := newFile("TestLchown", t)
	defer Remove(f.Name())
	defer f.Close()
	dir, err := f.Stat()
	if err != nil {
		t.Fatalf("stat %s: %s", f.Name(), err)
	}

	linkname := f.Name() + "2"
	if err := Symlink(f.Name(), linkname); err != nil {
		if runtime.GOOS == "android" && IsPermission(err) {
			t.Skip("skipping test on Android; permission error creating symlink")
		}
		t.Fatalf("link %s -> %s: %v", f.Name(), linkname, err)
	}
	defer Remove(linkname)

	// Can't change uid unless root, but can try
	// changing the group id. First try our current group.
	gid := Getgid()
	t.Log("gid:", gid)
	if err = Lchown(linkname, -1, gid); err != nil {
		if err, ok := err.(*PathError); ok && err.Err == syscall.ENOSYS {
			t.Skip("lchown is unavailable")
		}
		t.Fatalf("lchown %s -1 %d: %s", linkname, gid, err)
	}
	sys := dir.Sys().(*syscall.Stat_t)
	checkUidGid(t, linkname, int(sys.Uid), gid)

	// Then try all the auxiliary groups.
	groups, err := Getgroups()
	if err != nil {
		t.Fatalf("getgroups: %s", err)
	}
	t.Log("groups: ", groups)
	for _, g := range groups {
		if err = Lchown(linkname, -1, g); err != nil {
			if testenv.SyscallIsNotSupported(err) {
				t.Logf("lchown %s -1 %d: %s (error ignored)", f.Name(), g, err)
				// Since the Lchown call failed, the file should be unmodified.
				checkUidGid(t, f.Name(), int(sys.Uid), gid)
				continue
			}
			t.Fatalf("lchown %s -1 %d: %s", linkname, g, err)
		}
		checkUidGid(t, linkname, int(sys.Uid), g)

		// Check that link target's gid is unchanged.
		checkUidGid(t, f.Name(), int(sys.Uid), int(sys.Gid))

		if err = Lchown(linkname, -1, gid); err != nil {
			t.Fatalf("lchown %s -1 %d: %s", f.Name(), gid, err)
		}
	}
}

// Issue 16919: Readdir must return a non-empty slice or an error.
func TestReaddirRemoveRace(t *testing.T) {
	oldStat := *LstatP
	defer func() { *LstatP = oldStat }()
	*LstatP = func(name string) (FileInfo, error) {
		if strings.HasSuffix(name, "some-file") {
			// Act like it's been deleted.
			return nil, ErrNotExist
		}
		return oldStat(name)
	}
	dir := newDir("TestReaddirRemoveRace", t)
	defer RemoveAll(dir)
	if err := WriteFile(filepath.Join(dir, "some-file"), []byte("hello"), 0644); err != nil {
		t.Fatal(err)
	}
	d, err := Open(dir)
	if err != nil {
		t.Fatal(err)
	}
	defer d.Close()
	fis, err := d.Readdir(2) // notably, greater than zero
	if len(fis) == 0 && err == nil {
		// This is what used to happen (Issue 16919)
		t.Fatal("Readdir = empty slice & err == nil")
	}
	if len(fis) != 0 || err != io.EOF {
		t.Errorf("Readdir = %d entries: %v; want 0, io.EOF", len(fis), err)
		for i, fi := range fis {
			t.Errorf("  entry[%d]: %q, %v", i, fi.Name(), fi.Mode())
		}
		t.FailNow()
	}
}

// Issue 23120: respect umask when doing Mkdir with the sticky bit
func TestMkdirStickyUmask(t *testing.T) {
	if runtime.GOOS == "wasip1" {
		t.Skip("file permissions not supported on " + runtime.GOOS)
	}
	t.Parallel()

	const umask = 0077
	dir := newDir("TestMkdirStickyUmask", t)
	defer RemoveAll(dir)

	oldUmask := syscall.Umask(umask)
	defer syscall.Umask(oldUmask)

	// We have set a umask, but if the parent directory happens to have a default
	// ACL, the umask may be ignored. To prevent spurious failures from an ACL,
	// we create a non-sticky directory as a “control case” to compare against our
	// sticky-bit “experiment”.
	control := filepath.Join(dir, "control")
	if err := Mkdir(control, 0755); err != nil {
		t.Fatal(err)
	}
	cfi, err := Stat(control)
	if err != nil {
		t.Fatal(err)
	}

	p := filepath.Join(dir, "dir1")
	if err := Mkdir(p, ModeSticky|0755); err != nil {
		t.Fatal(err)
	}
	fi, err := Stat(p)
	if err != nil {
		t.Fatal(err)
	}

	got := fi.Mode()
	want := cfi.Mode() | ModeSticky
	if got != want {
		t.Errorf("Mkdir(_, ModeSticky|0755) created dir with mode %v; want %v", got, want)
	}
}

// See also issues: 22939, 24331
func newFileTest(t *testing.T, blocking bool) {
	if runtime.GOOS == "js" || runtime.GOOS == "wasip1" {
		t.Skipf("syscall.Pipe is not available on %s.", runtime.GOOS)
	}

	p := make([]int, 2)
	if err := syscall.Pipe(p); err != nil {
		t.Fatalf("pipe: %v", err)
	}
	defer syscall.Close(p[1])

	// Set the read-side to non-blocking.
	if !blocking {
		if err := syscall.SetNonblock(p[0], true); err != nil {
			syscall.Close(p[0])
			t.Fatalf("SetNonblock: %v", err)
		}
	}
	// Convert it to a file.
	file := NewFile(uintptr(p[0]), "notapipe")
	if file == nil {
		syscall.Close(p[0])
		t.Fatalf("failed to convert fd to file!")
	}
	defer file.Close()

	timeToWrite := 100 * time.Millisecond
	timeToDeadline := 1 * time.Millisecond
	if !blocking {
		// Use a longer time to avoid flakes.
		// We won't be waiting this long anyhow.
		timeToWrite = 1 * time.Second
	}

	// Try to read with deadline (but don't block forever).
	b := make([]byte, 1)
	timer := time.AfterFunc(timeToWrite, func() { syscall.Write(p[1], []byte("a")) })
	defer timer.Stop()
	file.SetReadDeadline(time.Now().Add(timeToDeadline))
	_, err := file.Read(b)
	if !blocking {
		// We want it to fail with a timeout.
		if !isDeadlineExceeded(err) {
			t.Fatalf("No timeout reading from file: %v", err)
		}
	} else {
		// We want it to succeed after 100ms
		if err != nil {
			t.Fatalf("Error reading from file: %v", err)
		}
	}
}

func TestNewFileBlock(t *testing.T) {
	t.Parallel()
	newFileTest(t, true)
}

func TestNewFileNonBlock(t *testing.T) {
	t.Parallel()
	newFileTest(t, false)
}

func TestNewFileInvalid(t *testing.T) {
	t.Parallel()
	const negOne = ^uintptr(0)
	if f := NewFile(negOne, "invalid"); f != nil {
		t.Errorf("NewFile(-1) got %v want nil", f)
	}
}

func TestSplitPath(t *testing.T) {
	t.Parallel()
	for _, tt := range []struct{ path, wantDir, wantBase string }{
		{"a", ".", "a"},
		{"a/", ".", "a"},
		{"a//", ".", "a"},
		{"a/b", "a", "b"},
		{"a/b/", "a", "b"},
		{"a/b/c", "a/b", "c"},
		{"/a", "/", "a"},
		{"/a/", "/", "a"},
		{"/a/b", "/a", "b"},
		{"/a/b/", "/a", "b"},
		{"/a/b/c", "/a/b", "c"},
		{"//a", "/", "a"},
		{"//a/", "/", "a"},
		{"///a", "/", "a"},
		{"///a/", "/", "a"},
	} {
		if dir, base := SplitPath(tt.path); dir != tt.wantDir || base != tt.wantBase {
			t.Errorf("splitPath(%q) = %q, %q, want %q, %q", tt.path, dir, base, tt.wantDir, tt.wantBase)
		}
	}
}

// Test that copying to files opened with O_APPEND works and
// the copy_file_range syscall isn't used on Linux.
//
// Regression test for go.dev/issue/60181
func TestIssue60181(t *testing.T) {
	defer chtmpdir(t)()

	want := "hello gopher"

	a, err := CreateTemp("", "a")
	if err != nil {
		t.Fatal(err)
	}
	a.WriteString(want[:5])
	a.Close()

	b, err := CreateTemp("", "b")
	if err != nil {
		t.Fatal(err)
	}
	b.WriteString(want[5:])
	b.Close()

	afd, err := syscall.Open(a.Name(), syscall.O_RDWR|syscall.O_APPEND, 0)
	if err != nil {
		t.Fatal(err)
	}

	bfd, err := syscall.Open(b.Name(), syscall.O_RDONLY, 0)
	if err != nil {
		t.Fatal(err)
	}

	aa := NewFile(uintptr(afd), a.Name())
	defer aa.Close()
	bb := NewFile(uintptr(bfd), b.Name())
	defer bb.Close()

	// This would fail on Linux in case the copy_file_range syscall was used because it doesn't
	// support destination files opened with O_APPEND, see
	// https://man7.org/linux/man-pages/man2/copy_file_range.2.html#ERRORS
	_, err = io.Copy(aa, bb)
	if err != nil {
		t.Fatal(err)
	}

	buf, err := ReadFile(aa.Name())
	if err != nil {
		t.Fatal(err)
	}

	if got := string(buf); got != want {
		t.Errorf("files not concatenated: got %q, want %q", got, want)
	}
}

Directory Contents

Dirs: 4 × Files: 127

Name Size Perms Modified Actions
exec DIR
- drwxr-xr-x 2024-02-02 18:09:55
Edit Download
signal DIR
- drwxr-xr-x 2024-02-02 18:09:55
Edit Download
testdata DIR
- drwxr-xr-x 2024-02-02 18:09:55
Edit Download
user DIR
- drwxr-xr-x 2024-02-02 18:09:55
Edit Download
4.40 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
759 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
1.28 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
1.16 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
678 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
1.18 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
1.16 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
1.16 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
759 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
1.36 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
3.34 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
2.10 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
5.24 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
7.17 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
244 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
304 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
3.85 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
5.04 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
1.22 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
4.76 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
247 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
234 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
538 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
4.92 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
1.49 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
1.72 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
8.39 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
6.01 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
774 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
613 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
293 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
292 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
2.31 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
427 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
904 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
695 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
891 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
3.40 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
333 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
641 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
3.27 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
3.44 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
2.09 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
999 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
4.57 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
1.78 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
337 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
433 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
241 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
395 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
4.62 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
24.91 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
1.81 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
397 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
818 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
15.99 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
7.10 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
14.05 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
633 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
12.65 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
2.52 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
77.07 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
11.47 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
41.83 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
2.27 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
492 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
2.96 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
1.56 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
5.66 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
4.03 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
640 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
12.41 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
760 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
488 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
2.27 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
993 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
1.15 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
20.30 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
3.20 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
4.91 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
3.13 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
11.96 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
965 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
1.18 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
1.09 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
1.06 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
1.07 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
1.11 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
1.06 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
1.07 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
1.06 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
2.37 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
1.30 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
6.46 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
1.23 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
956 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
4.93 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
425 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
320 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
294 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
682 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
466 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
313 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
1.04 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
453 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
265 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
493 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
309 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
874 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
3.80 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
5.49 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
17.09 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
2.79 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
797 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
776 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
10.01 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
496 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
547 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
544 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
549 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
534 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
831 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
781 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
1.32 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
4.21 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
4.38 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
406 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).
 !"#$%&'(()*+,-./00123456789 t\ wIDATx ]ys  47Y ƒ -  "  Rv  < f{Ɛ $k l L > L  ~h^ 1  [  r G t& h  l F z3O Y ! p A(_g̷ E8 )S 8 c  Kb"z ~ 5 J xAL WU <  *  5 m;W a pB h ~P J 2 3 6 ҙ .Ƹ P i  4g F R L P ΪK/D  M v (a3 k J Œ4N5* SH ` SdJ z  O J Xՠ V>u ߱ BE&L b2 ?2` tX+  c CB A$ i b C ĀMB E : /  # Dx &l =q Ty  0 \p I ( L Ǎ { e 4k ;`u^ヲ eP!( d {  )T A 8 O;Ě n >;s6 !  :Nx `[S D HU ~ q›J F} a g*D 49 / pn k h (t 8NxƐF _!r չ7 ZR R׷ q/5") Ӎ NY 0 x sZ!   o  fu  ,  K"$ ? pg  㕣=  1» {h " fh7    y  } € +7  $ y " X —ą - G P u 4 m >J 5 L =V ' ^@I p ?MS xЌ XV P ! h "C NS9B8̢ ]!K  e   zA , ӏkbY  !< XQ ٿyS| *" f { w  4@[S <  # 0 ! js [m  =,~ o "ݎ DHf Wo $ g ! Vԅ t mB /y Wf V4񺍸 c+@x?  B ~u " xUN e 0 BĂ) ~J pz! 7y6]l Ԥ@ P a< O /DHC `≻  N m"$  0ObB }{ x AO FCG D R ^ "B  { WDH  UR l@ T #  +"d T ; 0 i  D}. 7 ` ' ] w rE &S i ƕiTD EL P _ u h $ Ա FG wVD G L R Zf ' .!] J /ZR oGЍs Mr Ĥ ʬ 3 Q [3 cL ` ^ p + ( F;# B 5 '  2Y f [  ϶R0e }  E 7 6M aۮ H <& n % L] E}Up x紉, Uw' Q  Ǯշo k ވۙ 0N94 VX5 xEDE l D #֤ } C o )W :  ^ s 9  bRf iX5u ཱི 4 :[  T 1. | [E 2ؽ Iy\ : o x K G 5 ylP ' uK E ftb/i[3 .g _  [3M n G, #NwQ5~  ؚ) | n =Ц"x qg gB ` 듘 ~ x w ? ? R~  _ u. &VQ K˻   H C ( TN˄+ `C dA nB׭ D 3"Z G ê ^k H_ /- ~ " R_  .8 Z_ 6@ o  xg  uP ? 3լ @7AM!  E7^ - =V L  x  g-D0  CtmW 7  O  G _ WD0 g C  w1 r d w : a | \  *" f nֳ ^ H# f L ` Z ۽hV  }S F r0Ù Bć5r] @! NL iQ]{s^=4 d  WD  "  "   M; t" 8 5 e dL| "-*st" ) SWD ?R[S e ooF  20.D ? bo =) A i o d ģ ZҰaO @E =) i D a &ܟa CϞ y6 ,<%{^x%{f8? `iw^ ?/ M * IEND B`