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

// Copyright 2015 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

package net

import (
	"io/fs"
	"os"
	"testing"
	"time"
)

type nssHostTest struct {
	host      string
	localhost string
	want      hostLookupOrder
}

func nssStr(t *testing.T, s string) *nssConf {
	f, err := os.CreateTemp(t.TempDir(), "nss")
	if err != nil {
		t.Fatal(err)
	}
	if _, err := f.WriteString(s); err != nil {
		t.Fatal(err)
	}
	if err := f.Close(); err != nil {
		t.Fatal(err)
	}
	return parseNSSConfFile(f.Name())
}

// represents a dnsConfig returned by parsing a nonexistent resolv.conf
var defaultResolvConf = &dnsConfig{
	servers:  defaultNS,
	ndots:    1,
	timeout:  5,
	attempts: 2,
	err:      fs.ErrNotExist,
}

func TestConfHostLookupOrder(t *testing.T) {
	// These tests are written for a system with cgo available,
	// without using the netgo tag.
	if netGoBuildTag {
		t.Skip("skipping test because net package built with netgo tag")
	}
	if !cgoAvailable {
		t.Skip("skipping test because cgo resolver not available")
	}

	tests := []struct {
		name      string
		c         *conf
		nss       *nssConf
		resolver  *Resolver
		resolv    *dnsConfig
		hostTests []nssHostTest
	}{
		{
			name: "force",
			c: &conf{
				preferCgo: true,
				netCgo:    true,
			},
			resolv: defaultResolvConf,
			nss:    nssStr(t, "foo: bar"),
			hostTests: []nssHostTest{
				{"foo.local", "myhostname", hostLookupCgo},
				{"google.com", "myhostname", hostLookupCgo},
			},
		},
		{
			name: "netgo_dns_before_files",
			c: &conf{
				netGo: true,
			},
			resolv: defaultResolvConf,
			nss:    nssStr(t, "hosts: dns files"),
			hostTests: []nssHostTest{
				{"x.com", "myhostname", hostLookupDNSFiles},
			},
		},
		{
			name: "netgo_fallback_on_cgo",
			c: &conf{
				netGo: true,
			},
			resolv: defaultResolvConf,
			nss:    nssStr(t, "hosts: dns files something_custom"),
			hostTests: []nssHostTest{
				{"x.com", "myhostname", hostLookupDNSFiles},
			},
		},
		{
			name: "ubuntu_trusty_avahi",
			c: &conf{
				mdnsTest: mdnsAssumeDoesNotExist,
			},
			resolv: defaultResolvConf,
			nss:    nssStr(t, "hosts: files mdns4_minimal [NOTFOUND=return] dns mdns4"),
			hostTests: []nssHostTest{
				{"foo.local", "myhostname", hostLookupCgo},
				{"foo.local.", "myhostname", hostLookupCgo},
				{"foo.LOCAL", "myhostname", hostLookupCgo},
				{"foo.LOCAL.", "myhostname", hostLookupCgo},
				{"google.com", "myhostname", hostLookupFilesDNS},
			},
		},
		{
			name: "freebsdlinux_no_resolv_conf",
			c: &conf{
				goos: "freebsd",
			},
			resolv:    defaultResolvConf,
			nss:       nssStr(t, "foo: bar"),
			hostTests: []nssHostTest{{"google.com", "myhostname", hostLookupFilesDNS}},
		},
		// On OpenBSD, no resolv.conf means no DNS.
		{
			name: "openbsd_no_resolv_conf",
			c: &conf{
				goos: "openbsd",
			},
			resolv:    defaultResolvConf,
			hostTests: []nssHostTest{{"google.com", "myhostname", hostLookupFiles}},
		},
		{
			name: "solaris_no_nsswitch",
			c: &conf{
				goos: "solaris",
			},
			resolv:    defaultResolvConf,
			nss:       &nssConf{err: fs.ErrNotExist},
			hostTests: []nssHostTest{{"google.com", "myhostname", hostLookupCgo}},
		},
		{
			name: "openbsd_lookup_bind_file",
			c: &conf{
				goos: "openbsd",
			},
			resolv: &dnsConfig{lookup: []string{"bind", "file"}},
			hostTests: []nssHostTest{
				{"google.com", "myhostname", hostLookupDNSFiles},
				{"foo.local", "myhostname", hostLookupDNSFiles},
			},
		},
		{
			name: "openbsd_lookup_file_bind",
			c: &conf{
				goos: "openbsd",
			},
			resolv:    &dnsConfig{lookup: []string{"file", "bind"}},
			hostTests: []nssHostTest{{"google.com", "myhostname", hostLookupFilesDNS}},
		},
		{
			name: "openbsd_lookup_bind",
			c: &conf{
				goos: "openbsd",
			},
			resolv:    &dnsConfig{lookup: []string{"bind"}},
			hostTests: []nssHostTest{{"google.com", "myhostname", hostLookupDNS}},
		},
		{
			name: "openbsd_lookup_file",
			c: &conf{
				goos: "openbsd",
			},
			resolv:    &dnsConfig{lookup: []string{"file"}},
			hostTests: []nssHostTest{{"google.com", "myhostname", hostLookupFiles}},
		},
		{
			name: "openbsd_lookup_yp",
			c: &conf{
				goos: "openbsd",
			},
			resolv:    &dnsConfig{lookup: []string{"file", "bind", "yp"}},
			hostTests: []nssHostTest{{"google.com", "myhostname", hostLookupCgo}},
		},
		{
			name: "openbsd_lookup_two",
			c: &conf{
				goos: "openbsd",
			},
			resolv:    &dnsConfig{lookup: []string{"file", "foo"}},
			hostTests: []nssHostTest{{"google.com", "myhostname", hostLookupCgo}},
		},
		{
			name: "openbsd_lookup_empty",
			c: &conf{
				goos: "openbsd",
			},
			resolv:    &dnsConfig{lookup: nil},
			hostTests: []nssHostTest{{"google.com", "myhostname", hostLookupDNSFiles}},
		},
		{
			name: "linux_no_nsswitch.conf",
			c: &conf{
				goos: "linux",
			},
			resolv:    defaultResolvConf,
			nss:       &nssConf{err: fs.ErrNotExist},
			hostTests: []nssHostTest{{"google.com", "myhostname", hostLookupFilesDNS}},
		},
		{
			name: "linux_empty_nsswitch.conf",
			c: &conf{
				goos: "linux",
			},
			resolv:    defaultResolvConf,
			nss:       nssStr(t, ""),
			hostTests: []nssHostTest{{"google.com", "myhostname", hostLookupFilesDNS}},
		},
		{
			name: "files_mdns_dns",
			c: &conf{
				mdnsTest: mdnsAssumeDoesNotExist,
			},
			resolv: defaultResolvConf,
			nss:    nssStr(t, "hosts: files mdns dns"),
			hostTests: []nssHostTest{
				{"x.com", "myhostname", hostLookupFilesDNS},
				{"x.local", "myhostname", hostLookupCgo},
			},
		},
		{
			name:   "dns_special_hostnames",
			c:      &conf{},
			resolv: defaultResolvConf,
			nss:    nssStr(t, "hosts: dns"),
			hostTests: []nssHostTest{
				{"x.com", "myhostname", hostLookupDNS},
				{"x\\.com", "myhostname", hostLookupCgo},     // punt on weird glibc escape
				{"foo.com%en0", "myhostname", hostLookupCgo}, // and IPv6 zones
			},
		},
		{
			name: "mdns_allow",
			c: &conf{
				mdnsTest: mdnsAssumeExists,
			},
			resolv: defaultResolvConf,
			nss:    nssStr(t, "hosts: files mdns dns"),
			hostTests: []nssHostTest{
				{"x.com", "myhostname", hostLookupCgo},
				{"x.local", "myhostname", hostLookupCgo},
			},
		},
		{
			name:   "files_dns",
			c:      &conf{},
			resolv: defaultResolvConf,
			nss:    nssStr(t, "hosts: files dns"),
			hostTests: []nssHostTest{
				{"x.com", "myhostname", hostLookupFilesDNS},
				{"x", "myhostname", hostLookupFilesDNS},
				{"x.local", "myhostname", hostLookupCgo},
			},
		},
		{
			name:   "dns_files",
			c:      &conf{},
			resolv: defaultResolvConf,
			nss:    nssStr(t, "hosts: dns files"),
			hostTests: []nssHostTest{
				{"x.com", "myhostname", hostLookupDNSFiles},
				{"x", "myhostname", hostLookupDNSFiles},
				{"x.local", "myhostname", hostLookupCgo},
			},
		},
		{
			name:   "something_custom",
			c:      &conf{},
			resolv: defaultResolvConf,
			nss:    nssStr(t, "hosts: dns files something_custom"),
			hostTests: []nssHostTest{
				{"x.com", "myhostname", hostLookupCgo},
			},
		},
		{
			name:   "myhostname",
			c:      &conf{},
			resolv: defaultResolvConf,
			nss:    nssStr(t, "hosts: files dns myhostname"),
			hostTests: []nssHostTest{
				{"x.com", "myhostname", hostLookupFilesDNS},
				{"myhostname", "myhostname", hostLookupCgo},
				{"myHostname", "myhostname", hostLookupCgo},
				{"myhostname.dot", "myhostname.dot", hostLookupCgo},
				{"myHostname.dot", "myhostname.dot", hostLookupCgo},
				{"_gateway", "myhostname", hostLookupCgo},
				{"_Gateway", "myhostname", hostLookupCgo},
				{"_outbound", "myhostname", hostLookupCgo},
				{"_Outbound", "myhostname", hostLookupCgo},
				{"localhost", "myhostname", hostLookupCgo},
				{"Localhost", "myhostname", hostLookupCgo},
				{"anything.localhost", "myhostname", hostLookupCgo},
				{"Anything.localhost", "myhostname", hostLookupCgo},
				{"localhost.localdomain", "myhostname", hostLookupCgo},
				{"Localhost.Localdomain", "myhostname", hostLookupCgo},
				{"anything.localhost.localdomain", "myhostname", hostLookupCgo},
				{"Anything.Localhost.Localdomain", "myhostname", hostLookupCgo},
				{"somehostname", "myhostname", hostLookupFilesDNS},
			},
		},
		{
			name: "ubuntu14.04.02",
			c: &conf{
				mdnsTest: mdnsAssumeDoesNotExist,
			},
			resolv: defaultResolvConf,
			nss:    nssStr(t, "hosts: files myhostname mdns4_minimal [NOTFOUND=return] dns mdns4"),
			hostTests: []nssHostTest{
				{"x.com", "myhostname", hostLookupFilesDNS},
				{"somehostname", "myhostname", hostLookupFilesDNS},
				{"myhostname", "myhostname", hostLookupCgo},
			},
		},
		// Debian Squeeze is just "dns,files", but lists all
		// the default criteria for dns, but then has a
		// non-standard but redundant notfound=return for the
		// files.
		{
			name:   "debian_squeeze",
			c:      &conf{},
			resolv: defaultResolvConf,
			nss:    nssStr(t, "hosts: dns [success=return notfound=continue unavail=continue tryagain=continue] files [notfound=return]"),
			hostTests: []nssHostTest{
				{"x.com", "myhostname", hostLookupDNSFiles},
				{"somehostname", "myhostname", hostLookupDNSFiles},
			},
		},
		{
			name:      "resolv.conf-unknown",
			c:         &conf{},
			resolv:    &dnsConfig{servers: defaultNS, ndots: 1, timeout: 5, attempts: 2, unknownOpt: true},
			nss:       nssStr(t, "foo: bar"),
			hostTests: []nssHostTest{{"google.com", "myhostname", hostLookupCgo}},
		},
		// Issue 24393: make sure "Resolver.PreferGo = true" acts like netgo.
		{
			name:     "resolver-prefergo",
			resolver: &Resolver{PreferGo: true},
			c: &conf{
				preferCgo: true,
				netCgo:    true,
			},
			resolv: defaultResolvConf,
			nss:    nssStr(t, ""),
			hostTests: []nssHostTest{
				{"localhost", "myhostname", hostLookupFilesDNS},
			},
		},
		{
			name:     "unknown-source",
			resolver: &Resolver{PreferGo: true},
			c:        &conf{},
			resolv:   defaultResolvConf,
			nss:      nssStr(t, "hosts: resolve files"),
			hostTests: []nssHostTest{
				{"x.com", "myhostname", hostLookupDNSFiles},
			},
		},
		{
			name:     "dns-among-unknown-sources",
			resolver: &Resolver{PreferGo: true},
			c:        &conf{},
			resolv:   defaultResolvConf,
			nss:      nssStr(t, "hosts: mymachines files dns"),
			hostTests: []nssHostTest{
				{"x.com", "myhostname", hostLookupFilesDNS},
			},
		},
		{
			name:     "dns-among-unknown-sources-2",
			resolver: &Resolver{PreferGo: true},
			c:        &conf{},
			resolv:   defaultResolvConf,
			nss:      nssStr(t, "hosts: dns mymachines files"),
			hostTests: []nssHostTest{
				{"x.com", "myhostname", hostLookupDNSFiles},
			},
		},
	}

	origGetHostname := getHostname
	defer func() { getHostname = origGetHostname }()
	defer setSystemNSS(getSystemNSS(), 0)
	conf, err := newResolvConfTest()
	if err != nil {
		t.Fatal(err)
	}
	defer conf.teardown()

	for _, tt := range tests {
		if !conf.forceUpdateConf(tt.resolv, time.Now().Add(time.Hour)) {
			t.Errorf("%s: failed to change resolv config", tt.name)
		}
		for _, ht := range tt.hostTests {
			getHostname = func() (string, error) { return ht.localhost, nil }
			setSystemNSS(tt.nss, time.Hour)

			gotOrder, _ := tt.c.hostLookupOrder(tt.resolver, ht.host)
			if gotOrder != ht.want {
				t.Errorf("%s: hostLookupOrder(%q) = %v; want %v", tt.name, ht.host, gotOrder, ht.want)
			}
		}
	}
}

func TestAddrLookupOrder(t *testing.T) {
	// This test is written for a system with cgo available,
	// without using the netgo tag.
	if netGoBuildTag {
		t.Skip("skipping test because net package built with netgo tag")
	}
	if !cgoAvailable {
		t.Skip("skipping test because cgo resolver not available")
	}

	defer setSystemNSS(getSystemNSS(), 0)
	c, err := newResolvConfTest()
	if err != nil {
		t.Fatal(err)
	}
	defer c.teardown()

	if !c.forceUpdateConf(defaultResolvConf, time.Now().Add(time.Hour)) {
		t.Fatal("failed to change resolv config")
	}

	setSystemNSS(nssStr(t, "hosts: files myhostname dns"), time.Hour)
	cnf := &conf{}
	order, _ := cnf.addrLookupOrder(nil, "192.0.2.1")
	if order != hostLookupCgo {
		t.Errorf("addrLookupOrder returned: %v, want cgo", order)
	}

	setSystemNSS(nssStr(t, "hosts: files mdns4 dns"), time.Hour)
	order, _ = cnf.addrLookupOrder(nil, "192.0.2.1")
	if order != hostLookupCgo {
		t.Errorf("addrLookupOrder returned: %v, want cgo", order)
	}

}

func setSystemNSS(nss *nssConf, addDur time.Duration) {
	nssConfig.mu.Lock()
	nssConfig.nssConf = nss
	nssConfig.mu.Unlock()
	nssConfig.acquireSema()
	nssConfig.lastChecked = time.Now().Add(addDur)
	nssConfig.releaseSema()
}

func TestSystemConf(t *testing.T) {
	systemConf()
}

Directory Contents

Dirs: 9 × Files: 214

Name Size Perms Modified Actions
http DIR
- drwxr-xr-x 2024-02-02 18:09:55
Edit Download
internal DIR
- drwxr-xr-x 2024-02-02 18:09:55
Edit Download
mail DIR
- drwxr-xr-x 2024-02-02 18:09:55
Edit Download
netip DIR
- drwxr-xr-x 2024-02-02 18:09:55
Edit Download
rpc DIR
- drwxr-xr-x 2024-02-02 18:09:55
Edit Download
smtp 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
textproto DIR
- drwxr-xr-x 2024-02-02 18:09:55
Edit Download
url DIR
- drwxr-xr-x 2024-02-02 18:09:55
Edit Download
9.69 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
8.50 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
582 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
272 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
343 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
298 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
642 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
276 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
276 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
580 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
579 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
753 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
842 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
343 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
1.33 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
11.35 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
2.24 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
461 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
911 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
998 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
2.99 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
1.44 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
15.63 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
12.28 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
1.82 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
25.68 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
30.14 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
2.77 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
5.65 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
1.51 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
24.26 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
69.13 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
1.73 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
4.16 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
7.07 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
1.60 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
1.96 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
224 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
437 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
543 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
981 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
20.32 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
382 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
723 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
355 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
757 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
8.45 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
4.05 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
3.79 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
627 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
3.56 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
4.29 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
5.43 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
6.14 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
1.69 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
2.72 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
481 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
6.43 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
2.50 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
2.07 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
2.20 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
3.76 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
521 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
894 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
211 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
658 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
720 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
3.48 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
5.60 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
7.26 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
4.46 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
2.82 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
718 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
1.44 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
1.29 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
1.29 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
6.96 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
3.65 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
4.71 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
2.13 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
814 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
9.76 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
4.85 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
5.43 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
13.88 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
7.11 KB 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.89 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
5.98 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
9.05 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
7.48 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
645 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
7.86 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
6.81 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
25.60 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
20.50 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
29.04 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
9.94 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
40.62 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
3.35 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
13.80 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
8.93 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
1.88 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
3.26 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
693 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
1.39 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
467 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
392 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
1.37 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
7.53 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
1.19 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
284 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
1.00 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
10.77 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
3.96 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
4.06 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
542 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
24.56 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
222 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
220 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
453 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
220 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
218 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
26.36 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
14.00 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
16.28 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
5.48 KB 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
3.02 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
6.04 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
1.55 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
5.43 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
1.20 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
4.33 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
1.46 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
1.34 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
1.24 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
7.44 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
2.70 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
631 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
4.33 KB 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
3.12 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
8.25 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
346 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
1.10 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
1.12 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
1.93 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
344 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
8.25 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
2.04 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
1.02 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
11.67 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
1.45 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
867 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
735 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
1.38 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
769 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
786 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
1.43 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
2.21 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
955 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
1.25 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
2.13 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
1.25 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
1.51 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
918 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
1.38 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
575 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
262 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
6.29 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
390 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
802 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
1.69 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
376 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
13.48 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
962 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
11.75 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
770 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
698 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
365 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
525 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
442 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
399 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
722 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
741 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
2.18 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
6.16 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
17.68 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
2.34 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
29.11 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
11.83 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
4.64 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
1.31 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
7.53 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
17.24 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
10.12 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
2.29 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
1.24 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
6.64 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
654 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
332 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
275 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
2.51 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
10.64 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
2.03 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
5.03 KB lrw-r--r-- 2024-02-02 18:09:55
Edit Download
666 B lrw-r--r-- 2024-02-02 18:09:55
Edit Download
1.61 KB 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`